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.
@@ -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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.36.0",
3
+ "version": "1.36.2",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",