rebilly-js-sdk 62.141.1 → 62.142.0

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/CHANGELOG.md CHANGED
@@ -1 +1,6 @@
1
- ## [62.141.1](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v62.141.0...rebilly-js-sdk-v62.141.1) (2026-07-10)
1
+ ## [62.142.0](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v62.141.1...rebilly-js-sdk-v62.142.0) (2026-07-10)
2
+
3
+
4
+ ### Features
5
+
6
+ * **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#23471](https://github.com/Rebilly/rebilly/issues/23471)) ([adee1ff](https://github.com/Rebilly/rebilly/commit/adee1ff2d30478c923fc8fed19aefb5a3a0ebabe))
@@ -22563,7 +22563,13 @@ export interface coreComponents {
22563
22563
  | "canceled"
22564
22564
  | "split"
22565
22565
  | "merged";
22566
- /** Specifies whether the payout request is blocked or unblocked. */
22566
+ /**
22567
+ * Specifies whether the payout request is blocked or unblocked.
22568
+ *
22569
+ * When blocked, the payout request cannot transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
22570
+ * Allocation creation, allocation processing, and cancellation of pending allocations are also prevented.
22571
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
22572
+ */
22567
22573
  blocked?: boolean;
22568
22574
  blockReason?: coreComponents["schemas"]["PayoutRequestBlockReason"] | null;
22569
22575
  splitReason?: coreComponents["schemas"]["PayoutRequestSplitReason"] | null;
@@ -28490,10 +28496,12 @@ export interface coreComponents {
28490
28496
  * `pending`, `ready`, `approved`, or `in-progress`.
28491
28497
  *
28492
28498
  * When a payout request is blocked, it cannot:
28493
- * - Move to the next status in the workflow.
28494
- * For example: `pending` → `ready` → `approved` → `in-progress`.
28499
+ * - Transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
28495
28500
  * - Have allocations created.
28496
- * - Have allocations processed.
28501
+ * - Start allocation processing.
28502
+ * - Cancel pending allocations.
28503
+ *
28504
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
28497
28505
  */
28498
28506
  blocked?: boolean;
28499
28507
  blockReason?:
@@ -61104,7 +61112,13 @@ export interface storefrontComponents {
61104
61112
  | "canceled"
61105
61113
  | "split"
61106
61114
  | "merged";
61107
- /** Specifies whether the payout request is blocked or unblocked. */
61115
+ /**
61116
+ * Specifies whether the payout request is blocked or unblocked.
61117
+ *
61118
+ * When blocked, the payout request cannot transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
61119
+ * Allocation creation, allocation processing, and cancellation of pending allocations are also prevented.
61120
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
61121
+ */
61108
61122
  blocked?: boolean;
61109
61123
  blockReason?: storefrontComponents["schemas"]["PayoutRequestBlockReason"] | null;
61110
61124
  splitReason?: storefrontComponents["schemas"]["PayoutRequestSplitReason"] | null;
@@ -67031,10 +67045,12 @@ export interface storefrontComponents {
67031
67045
  * `pending`, `ready`, `approved`, or `in-progress`.
67032
67046
  *
67033
67047
  * When a payout request is blocked, it cannot:
67034
- * - Move to the next status in the workflow.
67035
- * For example: `pending` → `ready` → `approved` → `in-progress`.
67048
+ * - Transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
67036
67049
  * - Have allocations created.
67037
- * - Have allocations processed.
67050
+ * - Start allocation processing.
67051
+ * - Cancel pending allocations.
67052
+ *
67053
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
67038
67054
  */
67039
67055
  blocked?: boolean;
67040
67056
  blockReason?:
@@ -87080,7 +87096,13 @@ export interface reportsComponents {
87080
87096
  | "canceled"
87081
87097
  | "split"
87082
87098
  | "merged";
87083
- /** Specifies whether the payout request is blocked or unblocked. */
87099
+ /**
87100
+ * Specifies whether the payout request is blocked or unblocked.
87101
+ *
87102
+ * When blocked, the payout request cannot transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
87103
+ * Allocation creation, allocation processing, and cancellation of pending allocations are also prevented.
87104
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
87105
+ */
87084
87106
  blocked?: boolean;
87085
87107
  blockReason?: reportsComponents["schemas"]["PayoutRequestBlockReason"] | null;
87086
87108
  splitReason?: reportsComponents["schemas"]["PayoutRequestSplitReason"] | null;
@@ -93007,10 +93029,12 @@ export interface reportsComponents {
93007
93029
  * `pending`, `ready`, `approved`, or `in-progress`.
93008
93030
  *
93009
93031
  * When a payout request is blocked, it cannot:
93010
- * - Move to the next status in the workflow.
93011
- * For example: `pending` → `ready` → `approved` → `in-progress`.
93032
+ * - Transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
93012
93033
  * - Have allocations created.
93013
- * - Have allocations processed.
93034
+ * - Start allocation processing.
93035
+ * - Cancel pending allocations.
93036
+ *
93037
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
93014
93038
  */
93015
93039
  blocked?: boolean;
93016
93040
  blockReason?:
@@ -98563,7 +98587,7 @@ declare module "resources/customers-resource" {
98563
98587
  }): rebilly.GetCustomerCreditBalanceResponsePromise;
98564
98588
  downloadComplianceScreeningReport({ id }: {
98565
98589
  id: any;
98566
- }): rebilly.GetCustomerComplianceScreeningReportResponsePromise;
98590
+ }): any;
98567
98591
  };
98568
98592
  }
98569
98593
  declare module "resources/deposit-custom-property-sets-resource" {
@@ -100496,7 +100520,7 @@ declare module "resources/api-instance" {
100496
100520
  }): rebilly.GetCustomerCreditBalanceResponsePromise;
100497
100521
  downloadComplianceScreeningReport({ id }: {
100498
100522
  id: any;
100499
- }): rebilly.GetCustomerComplianceScreeningReportResponsePromise;
100523
+ }): any;
100500
100524
  };
100501
100525
  depositCustomPropertySets: {
100502
100526
  getAll({ limit, offset, filter, sort }?: rebilly.GetDepositCustomPropertySetCollectionRequest): rebilly.GetDepositCustomPropertySetCollectionResponsePromise;
@@ -22563,7 +22563,13 @@ export interface coreComponents {
22563
22563
  | "canceled"
22564
22564
  | "split"
22565
22565
  | "merged";
22566
- /** Specifies whether the payout request is blocked or unblocked. */
22566
+ /**
22567
+ * Specifies whether the payout request is blocked or unblocked.
22568
+ *
22569
+ * When blocked, the payout request cannot transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
22570
+ * Allocation creation, allocation processing, and cancellation of pending allocations are also prevented.
22571
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
22572
+ */
22567
22573
  blocked?: boolean;
22568
22574
  blockReason?: coreComponents["schemas"]["PayoutRequestBlockReason"] | null;
22569
22575
  splitReason?: coreComponents["schemas"]["PayoutRequestSplitReason"] | null;
@@ -28490,10 +28496,12 @@ export interface coreComponents {
28490
28496
  * `pending`, `ready`, `approved`, or `in-progress`.
28491
28497
  *
28492
28498
  * When a payout request is blocked, it cannot:
28493
- * - Move to the next status in the workflow.
28494
- * For example: `pending` → `ready` → `approved` → `in-progress`.
28499
+ * - Transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
28495
28500
  * - Have allocations created.
28496
- * - Have allocations processed.
28501
+ * - Start allocation processing.
28502
+ * - Cancel pending allocations.
28503
+ *
28504
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
28497
28505
  */
28498
28506
  blocked?: boolean;
28499
28507
  blockReason?:
@@ -61104,7 +61112,13 @@ export interface storefrontComponents {
61104
61112
  | "canceled"
61105
61113
  | "split"
61106
61114
  | "merged";
61107
- /** Specifies whether the payout request is blocked or unblocked. */
61115
+ /**
61116
+ * Specifies whether the payout request is blocked or unblocked.
61117
+ *
61118
+ * When blocked, the payout request cannot transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
61119
+ * Allocation creation, allocation processing, and cancellation of pending allocations are also prevented.
61120
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
61121
+ */
61108
61122
  blocked?: boolean;
61109
61123
  blockReason?: storefrontComponents["schemas"]["PayoutRequestBlockReason"] | null;
61110
61124
  splitReason?: storefrontComponents["schemas"]["PayoutRequestSplitReason"] | null;
@@ -67031,10 +67045,12 @@ export interface storefrontComponents {
67031
67045
  * `pending`, `ready`, `approved`, or `in-progress`.
67032
67046
  *
67033
67047
  * When a payout request is blocked, it cannot:
67034
- * - Move to the next status in the workflow.
67035
- * For example: `pending` → `ready` → `approved` → `in-progress`.
67048
+ * - Transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
67036
67049
  * - Have allocations created.
67037
- * - Have allocations processed.
67050
+ * - Start allocation processing.
67051
+ * - Cancel pending allocations.
67052
+ *
67053
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
67038
67054
  */
67039
67055
  blocked?: boolean;
67040
67056
  blockReason?:
@@ -87080,7 +87096,13 @@ export interface reportsComponents {
87080
87096
  | "canceled"
87081
87097
  | "split"
87082
87098
  | "merged";
87083
- /** Specifies whether the payout request is blocked or unblocked. */
87099
+ /**
87100
+ * Specifies whether the payout request is blocked or unblocked.
87101
+ *
87102
+ * When blocked, the payout request cannot transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
87103
+ * Allocation creation, allocation processing, and cancellation of pending allocations are also prevented.
87104
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
87105
+ */
87084
87106
  blocked?: boolean;
87085
87107
  blockReason?: reportsComponents["schemas"]["PayoutRequestBlockReason"] | null;
87086
87108
  splitReason?: reportsComponents["schemas"]["PayoutRequestSplitReason"] | null;
@@ -93007,10 +93029,12 @@ export interface reportsComponents {
93007
93029
  * `pending`, `ready`, `approved`, or `in-progress`.
93008
93030
  *
93009
93031
  * When a payout request is blocked, it cannot:
93010
- * - Move to the next status in the workflow.
93011
- * For example: `pending` → `ready` → `approved` → `in-progress`.
93032
+ * - Transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
93012
93033
  * - Have allocations created.
93013
- * - Have allocations processed.
93034
+ * - Start allocation processing.
93035
+ * - Cancel pending allocations.
93036
+ *
93037
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
93014
93038
  */
93015
93039
  blocked?: boolean;
93016
93040
  blockReason?:
@@ -98563,7 +98587,7 @@ declare module "resources/customers-resource" {
98563
98587
  }): rebilly.GetCustomerCreditBalanceResponsePromise;
98564
98588
  downloadComplianceScreeningReport({ id }: {
98565
98589
  id: any;
98566
- }): rebilly.GetCustomerComplianceScreeningReportResponsePromise;
98590
+ }): any;
98567
98591
  };
98568
98592
  }
98569
98593
  declare module "resources/deposit-custom-property-sets-resource" {
@@ -100496,7 +100520,7 @@ declare module "resources/api-instance" {
100496
100520
  }): rebilly.GetCustomerCreditBalanceResponsePromise;
100497
100521
  downloadComplianceScreeningReport({ id }: {
100498
100522
  id: any;
100499
- }): rebilly.GetCustomerComplianceScreeningReportResponsePromise;
100523
+ }): any;
100500
100524
  };
100501
100525
  depositCustomPropertySets: {
100502
100526
  getAll({ limit, offset, filter, sort }?: rebilly.GetDepositCustomPropertySetCollectionRequest): rebilly.GetDepositCustomPropertySetCollectionResponsePromise;
@@ -22563,7 +22563,13 @@ export interface coreComponents {
22563
22563
  | "canceled"
22564
22564
  | "split"
22565
22565
  | "merged";
22566
- /** Specifies whether the payout request is blocked or unblocked. */
22566
+ /**
22567
+ * Specifies whether the payout request is blocked or unblocked.
22568
+ *
22569
+ * When blocked, the payout request cannot transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
22570
+ * Allocation creation, allocation processing, and cancellation of pending allocations are also prevented.
22571
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
22572
+ */
22567
22573
  blocked?: boolean;
22568
22574
  blockReason?: coreComponents["schemas"]["PayoutRequestBlockReason"] | null;
22569
22575
  splitReason?: coreComponents["schemas"]["PayoutRequestSplitReason"] | null;
@@ -28490,10 +28496,12 @@ export interface coreComponents {
28490
28496
  * `pending`, `ready`, `approved`, or `in-progress`.
28491
28497
  *
28492
28498
  * When a payout request is blocked, it cannot:
28493
- * - Move to the next status in the workflow.
28494
- * For example: `pending` → `ready` → `approved` → `in-progress`.
28499
+ * - Transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
28495
28500
  * - Have allocations created.
28496
- * - Have allocations processed.
28501
+ * - Start allocation processing.
28502
+ * - Cancel pending allocations.
28503
+ *
28504
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
28497
28505
  */
28498
28506
  blocked?: boolean;
28499
28507
  blockReason?:
@@ -61104,7 +61112,13 @@ export interface storefrontComponents {
61104
61112
  | "canceled"
61105
61113
  | "split"
61106
61114
  | "merged";
61107
- /** Specifies whether the payout request is blocked or unblocked. */
61115
+ /**
61116
+ * Specifies whether the payout request is blocked or unblocked.
61117
+ *
61118
+ * When blocked, the payout request cannot transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
61119
+ * Allocation creation, allocation processing, and cancellation of pending allocations are also prevented.
61120
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
61121
+ */
61108
61122
  blocked?: boolean;
61109
61123
  blockReason?: storefrontComponents["schemas"]["PayoutRequestBlockReason"] | null;
61110
61124
  splitReason?: storefrontComponents["schemas"]["PayoutRequestSplitReason"] | null;
@@ -67031,10 +67045,12 @@ export interface storefrontComponents {
67031
67045
  * `pending`, `ready`, `approved`, or `in-progress`.
67032
67046
  *
67033
67047
  * When a payout request is blocked, it cannot:
67034
- * - Move to the next status in the workflow.
67035
- * For example: `pending` → `ready` → `approved` → `in-progress`.
67048
+ * - Transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
67036
67049
  * - Have allocations created.
67037
- * - Have allocations processed.
67050
+ * - Start allocation processing.
67051
+ * - Cancel pending allocations.
67052
+ *
67053
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
67038
67054
  */
67039
67055
  blocked?: boolean;
67040
67056
  blockReason?:
@@ -87080,7 +87096,13 @@ export interface reportsComponents {
87080
87096
  | "canceled"
87081
87097
  | "split"
87082
87098
  | "merged";
87083
- /** Specifies whether the payout request is blocked or unblocked. */
87099
+ /**
87100
+ * Specifies whether the payout request is blocked or unblocked.
87101
+ *
87102
+ * When blocked, the payout request cannot transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
87103
+ * Allocation creation, allocation processing, and cancellation of pending allocations are also prevented.
87104
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
87105
+ */
87084
87106
  blocked?: boolean;
87085
87107
  blockReason?: reportsComponents["schemas"]["PayoutRequestBlockReason"] | null;
87086
87108
  splitReason?: reportsComponents["schemas"]["PayoutRequestSplitReason"] | null;
@@ -93007,10 +93029,12 @@ export interface reportsComponents {
93007
93029
  * `pending`, `ready`, `approved`, or `in-progress`.
93008
93030
  *
93009
93031
  * When a payout request is blocked, it cannot:
93010
- * - Move to the next status in the workflow.
93011
- * For example: `pending` → `ready` → `approved` → `in-progress`.
93032
+ * - Transition to `ready`, `approved`, `in-progress`, `merged`, `split`, or `canceled`.
93012
93033
  * - Have allocations created.
93013
- * - Have allocations processed.
93034
+ * - Start allocation processing.
93035
+ * - Cancel pending allocations.
93036
+ *
93037
+ * A blocked payout request can still transition to the `fulfilled` status if allocation processing starts before the payout request is blocked.
93014
93038
  */
93015
93039
  blocked?: boolean;
93016
93040
  blockReason?:
@@ -98563,7 +98587,7 @@ declare module "resources/customers-resource" {
98563
98587
  }): rebilly.GetCustomerCreditBalanceResponsePromise;
98564
98588
  downloadComplianceScreeningReport({ id }: {
98565
98589
  id: any;
98566
- }): rebilly.GetCustomerComplianceScreeningReportResponsePromise;
98590
+ }): any;
98567
98591
  };
98568
98592
  }
98569
98593
  declare module "resources/deposit-custom-property-sets-resource" {
@@ -100496,7 +100520,7 @@ declare module "resources/api-instance" {
100496
100520
  }): rebilly.GetCustomerCreditBalanceResponsePromise;
100497
100521
  downloadComplianceScreeningReport({ id }: {
100498
100522
  id: any;
100499
- }): rebilly.GetCustomerComplianceScreeningReportResponsePromise;
100523
+ }): any;
100500
100524
  };
100501
100525
  depositCustomPropertySets: {
100502
100526
  getAll({ limit, offset, filter, sort }?: rebilly.GetDepositCustomPropertySetCollectionRequest): rebilly.GetDepositCustomPropertySetCollectionResponsePromise;