squarefi-bff-api-module 1.25.3 → 1.25.4
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.
|
@@ -2287,7 +2287,7 @@ export declare namespace API {
|
|
|
2287
2287
|
wallet_uuid: string;
|
|
2288
2288
|
limit: number;
|
|
2289
2289
|
offset: number;
|
|
2290
|
-
filter?: components['schemas']['TransactionsFilter']
|
|
2290
|
+
filter?: Partial<components['schemas']['TransactionsFilter']>;
|
|
2291
2291
|
};
|
|
2292
2292
|
type Response = {
|
|
2293
2293
|
total: number;
|
|
@@ -2296,7 +2296,7 @@ export declare namespace API {
|
|
|
2296
2296
|
namespace ExportCsv {
|
|
2297
2297
|
type Request = {
|
|
2298
2298
|
wallet_uuid: string;
|
|
2299
|
-
filter?: components['schemas']['TransactionsFilter']
|
|
2299
|
+
filter?: Partial<components['schemas']['TransactionsFilter']>;
|
|
2300
2300
|
};
|
|
2301
2301
|
type Response = string;
|
|
2302
2302
|
}
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -2822,7 +2822,7 @@ export namespace API {
|
|
|
2822
2822
|
wallet_uuid: string;
|
|
2823
2823
|
limit: number;
|
|
2824
2824
|
offset: number;
|
|
2825
|
-
filter?: components['schemas']['TransactionsFilter']
|
|
2825
|
+
filter?: Partial<components['schemas']['TransactionsFilter']>;
|
|
2826
2826
|
};
|
|
2827
2827
|
export type Response = {
|
|
2828
2828
|
total: number;
|
|
@@ -2832,7 +2832,7 @@ export namespace API {
|
|
|
2832
2832
|
export namespace ExportCsv {
|
|
2833
2833
|
export type Request = {
|
|
2834
2834
|
wallet_uuid: string;
|
|
2835
|
-
filter?: components['schemas']['TransactionsFilter']
|
|
2835
|
+
filter?: Partial<components['schemas']['TransactionsFilter']>;
|
|
2836
2836
|
};
|
|
2837
2837
|
export type Response = string;
|
|
2838
2838
|
}
|