squarefi-bff-api-module 1.36.0 → 1.36.2
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.
- package/dist/api/types/autogen/apiV1External.types.d.ts +21 -4
- package/dist/api/types/autogen/apiV1Frontend.types.d.ts +199 -25
- package/dist/api/types/autogen/apiV1Legacy.types.d.ts +74 -109
- package/dist/api/types/autogen/apiV1Tenant.types.d.ts +19 -1
- package/dist/api/types/autogen/apiV2.types.d.ts +139 -341
- package/dist/api/types/types.d.ts +12 -0
- package/package.json +1 -1
|
@@ -1182,6 +1182,12 @@ export declare namespace API {
|
|
|
1182
1182
|
is_internal: boolean;
|
|
1183
1183
|
order_types_kyc_rails: OrderTypeKycRail[];
|
|
1184
1184
|
payment_method: API.Orders.V2.OrderTypes.PaymentMethod;
|
|
1185
|
+
/** Optional minimum amount the product should allow for this order type */
|
|
1186
|
+
min_amount: number | null;
|
|
1187
|
+
/** Optional maximum amount the product should allow for this order type */
|
|
1188
|
+
max_amount: number | null;
|
|
1189
|
+
/** Whether payouts for this order type are limited to the wallet owner's own account */
|
|
1190
|
+
first_party_only: boolean;
|
|
1185
1191
|
}
|
|
1186
1192
|
namespace List {
|
|
1187
1193
|
type Response = OrderInfo[];
|
|
@@ -1481,6 +1487,12 @@ export declare namespace API {
|
|
|
1481
1487
|
is_internal: boolean;
|
|
1482
1488
|
payment_method: PaymentMethod;
|
|
1483
1489
|
is_trusted: boolean;
|
|
1490
|
+
/** Optional minimum amount the product should allow for this order type */
|
|
1491
|
+
min_amount: number | null;
|
|
1492
|
+
/** Optional maximum amount the product should allow for this order type */
|
|
1493
|
+
max_amount: number | null;
|
|
1494
|
+
/** Whether payouts for this order type are limited to the wallet owner's own account */
|
|
1495
|
+
first_party_only: boolean;
|
|
1484
1496
|
order_types_kyc_rails: OrderTypeKycRail[];
|
|
1485
1497
|
}
|
|
1486
1498
|
namespace List {
|