Skip to content

Commit

Permalink
fixed api
Browse files Browse the repository at this point in the history
  • Loading branch information
Egge21M committed Dec 10, 2024
1 parent c9d299c commit 70b8105
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
3 changes: 0 additions & 3 deletions etc/cashu-ts.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -582,9 +582,6 @@ export type SwapResponse = {
signatures: Array<SerializedBlindedSignature>;
} & ApiError;

// @public (undocumented)
export const test = "123";

// @public
export type Token = {
mint: string;
Expand Down
9 changes: 8 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@ import { CashuMint } from './CashuMint.js';
import { CashuWallet } from './CashuWallet.js';
import { PaymentRequest } from './model/PaymentRequest.js';
import { setGlobalRequestOptions } from './request.js';
import { getEncodedToken, getDecodedToken, deriveKeysetId, decodePaymentRequest } from './utils.js';
import {
getEncodedToken,
getEncodedTokenV4,
getDecodedToken,
deriveKeysetId,
decodePaymentRequest
} from './utils.js';

export * from './model/types/index.js';

Expand All @@ -12,6 +18,7 @@ export {
PaymentRequest,
getDecodedToken,
getEncodedToken,
getEncodedTokenV4,
decodePaymentRequest,
deriveKeysetId,
setGlobalRequestOptions
Expand Down

0 comments on commit 70b8105

Please sign in to comment.