squarefi-bff-api-module 1.24.14 → 1.24.15
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.
|
@@ -1235,6 +1235,8 @@ export interface components {
|
|
|
1235
1235
|
from_created_at?: string;
|
|
1236
1236
|
/** Format: date-time */
|
|
1237
1237
|
to_created_at?: string;
|
|
1238
|
+
/** @default false */
|
|
1239
|
+
show_low_balance: boolean;
|
|
1238
1240
|
};
|
|
1239
1241
|
ChainDto: {
|
|
1240
1242
|
id: number;
|
|
@@ -2761,7 +2763,9 @@ export interface operations {
|
|
|
2761
2763
|
};
|
|
2762
2764
|
WalletsController_view: {
|
|
2763
2765
|
parameters: {
|
|
2764
|
-
query?:
|
|
2766
|
+
query?: {
|
|
2767
|
+
show_low_balance?: boolean;
|
|
2768
|
+
};
|
|
2765
2769
|
header?: never;
|
|
2766
2770
|
path: {
|
|
2767
2771
|
wallet_id: string;
|
|
@@ -2057,8 +2057,23 @@ export declare namespace API {
|
|
|
2057
2057
|
bankName: string;
|
|
2058
2058
|
bankAddress: string;
|
|
2059
2059
|
beneficiary: API.VirtualAccounts.VirtualAccount.Beneficiary;
|
|
2060
|
-
|
|
2061
|
-
|
|
2060
|
+
swiftCode: string;
|
|
2061
|
+
ach?: {
|
|
2062
|
+
accountNumber: string;
|
|
2063
|
+
routingNumber: string;
|
|
2064
|
+
};
|
|
2065
|
+
rtp?: {
|
|
2066
|
+
accountNumber: string;
|
|
2067
|
+
routingNumber: string;
|
|
2068
|
+
};
|
|
2069
|
+
wire?: {
|
|
2070
|
+
accountNumber: string;
|
|
2071
|
+
routingNumber: string;
|
|
2072
|
+
};
|
|
2073
|
+
swift?: {
|
|
2074
|
+
accountNumber: string;
|
|
2075
|
+
routingNumber: string;
|
|
2076
|
+
};
|
|
2062
2077
|
}
|
|
2063
2078
|
interface PaymentRail {
|
|
2064
2079
|
currency: string;
|
package/package.json
CHANGED
|
@@ -1236,6 +1236,8 @@ export interface components {
|
|
|
1236
1236
|
from_created_at?: string;
|
|
1237
1237
|
/** Format: date-time */
|
|
1238
1238
|
to_created_at?: string;
|
|
1239
|
+
/** @default false */
|
|
1240
|
+
show_low_balance: boolean;
|
|
1239
1241
|
};
|
|
1240
1242
|
ChainDto: {
|
|
1241
1243
|
id: number;
|
|
@@ -2762,7 +2764,9 @@ export interface operations {
|
|
|
2762
2764
|
};
|
|
2763
2765
|
WalletsController_view: {
|
|
2764
2766
|
parameters: {
|
|
2765
|
-
query?:
|
|
2767
|
+
query?: {
|
|
2768
|
+
show_low_balance?: boolean;
|
|
2769
|
+
};
|
|
2766
2770
|
header?: never;
|
|
2767
2771
|
path: {
|
|
2768
2772
|
wallet_id: string;
|
package/src/api/types/types.ts
CHANGED
|
@@ -2418,8 +2418,23 @@ export namespace API {
|
|
|
2418
2418
|
bankName: string;
|
|
2419
2419
|
bankAddress: string;
|
|
2420
2420
|
beneficiary: API.VirtualAccounts.VirtualAccount.Beneficiary;
|
|
2421
|
-
|
|
2422
|
-
|
|
2421
|
+
swiftCode: string;
|
|
2422
|
+
ach?: {
|
|
2423
|
+
accountNumber: string;
|
|
2424
|
+
routingNumber: string;
|
|
2425
|
+
};
|
|
2426
|
+
rtp?: {
|
|
2427
|
+
accountNumber: string;
|
|
2428
|
+
routingNumber: string;
|
|
2429
|
+
};
|
|
2430
|
+
wire?: {
|
|
2431
|
+
accountNumber: string;
|
|
2432
|
+
routingNumber: string;
|
|
2433
|
+
};
|
|
2434
|
+
swift?: {
|
|
2435
|
+
accountNumber: string;
|
|
2436
|
+
routingNumber: string;
|
|
2437
|
+
};
|
|
2423
2438
|
}
|
|
2424
2439
|
|
|
2425
2440
|
export interface PaymentRail {
|