squarefi-bff-api-module 1.32.34 → 1.32.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2229,6 +2229,15 @@ export declare namespace API {
|
|
|
2229
2229
|
type Response = string;
|
|
2230
2230
|
}
|
|
2231
2231
|
}
|
|
2232
|
+
namespace StatementPdf {
|
|
2233
|
+
type Request = {
|
|
2234
|
+
wallet_uuid: string;
|
|
2235
|
+
from_date?: string;
|
|
2236
|
+
to_date?: string;
|
|
2237
|
+
crypto_id?: string;
|
|
2238
|
+
};
|
|
2239
|
+
type Response = string;
|
|
2240
|
+
}
|
|
2232
2241
|
}
|
|
2233
2242
|
}
|
|
2234
2243
|
namespace Storage {
|
package/dist/api/wallets.d.ts
CHANGED
|
@@ -19,5 +19,13 @@ export declare const wallets: {
|
|
|
19
19
|
csv: {
|
|
20
20
|
getByWalletUuid: ({ wallet_uuid, ...params }: API.Wallets.WalletTransactions.TransactionList.ExportCsv.Request) => Promise<API.Wallets.WalletTransactions.TransactionList.ExportCsv.Response>;
|
|
21
21
|
};
|
|
22
|
+
statement: {
|
|
23
|
+
pdf: {
|
|
24
|
+
getByWalletUuid: ({ wallet_uuid, ...params }: API.Wallets.WalletTransactions.StatementPdf.Request) => Promise<API.Wallets.WalletTransactions.StatementPdf.Response>;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
statementPdf: {
|
|
29
|
+
getByWalletUuid: ({ wallet_uuid, ...params }: API.Wallets.WalletTransactions.StatementPdf.Request) => Promise<API.Wallets.WalletTransactions.StatementPdf.Response>;
|
|
22
30
|
};
|
|
23
31
|
};
|
package/dist/api/wallets.js
CHANGED
|
@@ -26,5 +26,13 @@ export const wallets = {
|
|
|
26
26
|
csv: {
|
|
27
27
|
getByWalletUuid: ({ wallet_uuid, ...params }) => apiClientV2.getRequest(`/wallets/${wallet_uuid}/transactions/export/csv`, { params }),
|
|
28
28
|
},
|
|
29
|
+
statement: {
|
|
30
|
+
pdf: {
|
|
31
|
+
getByWalletUuid: ({ wallet_uuid, ...params }) => apiClientV2.getRequest(`/wallets/${wallet_uuid}/transactions/statement/pdf`, { params }),
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
statementPdf: {
|
|
36
|
+
getByWalletUuid: ({ wallet_uuid, ...params }) => apiClientV2.getRequest(`/wallets/transactions/${wallet_uuid}/statement-pdf`, { params }),
|
|
29
37
|
},
|
|
30
38
|
};
|