rebilly-js-sdk 62.116.2 → 62.118.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,6 +1,6 @@
1
- ## [62.116.2](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v62.116.1...rebilly-js-sdk-v62.116.2) (2026-06-09)
1
+ ## [62.118.0](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v62.117.0...rebilly-js-sdk-v62.118.0) (2026-06-11)
2
2
 
3
3
 
4
- ### Bug Fixes
4
+ ### Features
5
5
 
6
- * **recomm,rebilly-js-sdk:** use SDK for registration settings ([#22135](https://github.com/Rebilly/rebilly/issues/22135)) ([22e3881](https://github.com/Rebilly/rebilly/commit/22e38815903221000d494ecdd4737a49fe51123c))
6
+ * **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#22539](https://github.com/Rebilly/rebilly/issues/22539)) ([8ebc3c3](https://github.com/Rebilly/rebilly/commit/8ebc3c33c7cb5706836c40c4d73cfe36f500c191))
@@ -5388,13 +5388,14 @@ export interface corePaths {
5388
5388
  };
5389
5389
  "/payout-requests/{id}/split": {
5390
5390
  /**
5391
- * Splits a pending payout request into two or more separate requests.
5391
+ * Splits a payout request that is in `pending`, `ready`, or `approved` status into two or more separate requests.
5392
5392
  *
5393
5393
  * Use this operation when the full amount cannot be processed due to amount restrictions, but a smaller amount can be processed.
5394
5394
  * For example, if a payout request for `$4,000` cannot be processed, but `$3,000` can be processed, split the request into two. This allows you to approve and process `$3,000` instead of blocking the entire request.
5395
5395
  *
5396
5396
  * Provide an array of at least two amounts; one new payout request is created per amount.
5397
5397
  * The sum of the amounts must equal the original payout request amount.
5398
+ * Each new payout request is created in `pending` status.
5398
5399
  * The original request transitions to the `split` status.
5399
5400
  * This operation returns the newly created payout requests.
5400
5401
  */
@@ -8627,6 +8628,7 @@ export interface coreComponents {
8627
8628
  | "iCheque"
8628
8629
  | "iDebit"
8629
8630
  | "Ilixium"
8631
+ | "IMerchant"
8630
8632
  | "Ingenico"
8631
8633
  | "INOVAPAY"
8632
8634
  | "Inovio"
@@ -10319,6 +10321,7 @@ export interface coreComponents {
10319
10321
  | "subtype-missing"
10320
10322
  | "dob-mismatch"
10321
10323
  | "name-mismatch"
10324
+ | "name-and-dob-mismatch"
10322
10325
  | "critical-info-missing"
10323
10326
  | "old-address-on-id"
10324
10327
  | "tampered-document"
@@ -14002,6 +14005,11 @@ export interface coreComponents {
14002
14005
  automaticReadinessEnabled?: boolean;
14003
14006
  /** Number of hours a payout request stays pending before the automatic readiness job can set it to ready. */
14004
14007
  pendingPeriodHours?: number;
14008
+ /**
14009
+ * Time of day when the automatic readiness job processes eligible pending payout requests.
14010
+ * Use extended ISO-8601 time format (`HH:MM:SS`) with an optional timezone offset.
14011
+ */
14012
+ automaticReadinessTime?: coreComponents["schemas"]["TimeIso8601Extended"];
14005
14013
  };
14006
14014
  };
14007
14015
  /** ID of the linked file object. */
@@ -19412,6 +19420,15 @@ export interface coreComponents {
19412
19420
  name?: "Ilixium3dsServer";
19413
19421
  };
19414
19422
  };
19423
+ /** IMerchant gateway configuration. */
19424
+ IMerchant: coreComponents["schemas"]["GatewayAccount"] & {
19425
+ /** Credentials of the IMerchant gateway. */
19426
+ credentials: {
19427
+ /** IMerchant API key. */
19428
+ apiKey: string;
19429
+ };
19430
+ threeDSecureServer?: coreComponents["schemas"]["ThreeDSecureIO3dsServer"];
19431
+ };
19415
19432
  /** Ingenico gateway configuration. */
19416
19433
  Ingenico: coreComponents["schemas"]["GatewayAccount"] & {
19417
19434
  credentials: {
@@ -19990,6 +20007,8 @@ export interface coreComponents {
19990
20007
  apiKey: string;
19991
20008
  /** NuaPay API key for reconciliation. */
19992
20009
  nuaPayApiKey?: string;
20010
+ /** Secret for checksum verification for SEPA Instant Instant Notification (SIIN). */
20011
+ isxSiinSecret?: string;
19993
20012
  /** NuaPay account ID for reconciliation. */
19994
20013
  nuaPayAccountId?: string;
19995
20014
  };
@@ -41316,13 +41335,14 @@ export interface operations {
41316
41335
  };
41317
41336
  };
41318
41337
  /**
41319
- * Splits a pending payout request into two or more separate requests.
41338
+ * Splits a payout request that is in `pending`, `ready`, or `approved` status into two or more separate requests.
41320
41339
  *
41321
41340
  * Use this operation when the full amount cannot be processed due to amount restrictions, but a smaller amount can be processed.
41322
41341
  * For example, if a payout request for `$4,000` cannot be processed, but `$3,000` can be processed, split the request into two. This allows you to approve and process `$3,000` instead of blocking the entire request.
41323
41342
  *
41324
41343
  * Provide an array of at least two amounts; one new payout request is created per amount.
41325
41344
  * The sum of the amounts must equal the original payout request amount.
41345
+ * Each new payout request is created in `pending` status.
41326
41346
  * The original request transitions to the `split` status.
41327
41347
  * This operation returns the newly created payout requests.
41328
41348
  */
@@ -46764,6 +46784,7 @@ export interface storefrontComponents {
46764
46784
  | "iCheque"
46765
46785
  | "iDebit"
46766
46786
  | "Ilixium"
46787
+ | "IMerchant"
46767
46788
  | "Ingenico"
46768
46789
  | "INOVAPAY"
46769
46790
  | "Inovio"
@@ -48456,6 +48477,7 @@ export interface storefrontComponents {
48456
48477
  | "subtype-missing"
48457
48478
  | "dob-mismatch"
48458
48479
  | "name-mismatch"
48480
+ | "name-and-dob-mismatch"
48459
48481
  | "critical-info-missing"
48460
48482
  | "old-address-on-id"
48461
48483
  | "tampered-document"
@@ -52139,6 +52161,11 @@ export interface storefrontComponents {
52139
52161
  automaticReadinessEnabled?: boolean;
52140
52162
  /** Number of hours a payout request stays pending before the automatic readiness job can set it to ready. */
52141
52163
  pendingPeriodHours?: number;
52164
+ /**
52165
+ * Time of day when the automatic readiness job processes eligible pending payout requests.
52166
+ * Use extended ISO-8601 time format (`HH:MM:SS`) with an optional timezone offset.
52167
+ */
52168
+ automaticReadinessTime?: storefrontComponents["schemas"]["TimeIso8601Extended"];
52142
52169
  };
52143
52170
  };
52144
52171
  /** ID of the linked file object. */
@@ -57549,6 +57576,15 @@ export interface storefrontComponents {
57549
57576
  name?: "Ilixium3dsServer";
57550
57577
  };
57551
57578
  };
57579
+ /** IMerchant gateway configuration. */
57580
+ IMerchant: storefrontComponents["schemas"]["GatewayAccount"] & {
57581
+ /** Credentials of the IMerchant gateway. */
57582
+ credentials: {
57583
+ /** IMerchant API key. */
57584
+ apiKey: string;
57585
+ };
57586
+ threeDSecureServer?: storefrontComponents["schemas"]["ThreeDSecureIO3dsServer"];
57587
+ };
57552
57588
  /** Ingenico gateway configuration. */
57553
57589
  Ingenico: storefrontComponents["schemas"]["GatewayAccount"] & {
57554
57590
  credentials: {
@@ -58127,6 +58163,8 @@ export interface storefrontComponents {
58127
58163
  apiKey: string;
58128
58164
  /** NuaPay API key for reconciliation. */
58129
58165
  nuaPayApiKey?: string;
58166
+ /** Secret for checksum verification for SEPA Instant Instant Notification (SIIN). */
58167
+ isxSiinSecret?: string;
58130
58168
  /** NuaPay account ID for reconciliation. */
58131
58169
  nuaPayAccountId?: string;
58132
58170
  };
@@ -72379,6 +72417,7 @@ export interface reportsComponents {
72379
72417
  | "iCheque"
72380
72418
  | "iDebit"
72381
72419
  | "Ilixium"
72420
+ | "IMerchant"
72382
72421
  | "Ingenico"
72383
72422
  | "INOVAPAY"
72384
72423
  | "Inovio"
@@ -74071,6 +74110,7 @@ export interface reportsComponents {
74071
74110
  | "subtype-missing"
74072
74111
  | "dob-mismatch"
74073
74112
  | "name-mismatch"
74113
+ | "name-and-dob-mismatch"
74074
74114
  | "critical-info-missing"
74075
74115
  | "old-address-on-id"
74076
74116
  | "tampered-document"
@@ -77754,6 +77794,11 @@ export interface reportsComponents {
77754
77794
  automaticReadinessEnabled?: boolean;
77755
77795
  /** Number of hours a payout request stays pending before the automatic readiness job can set it to ready. */
77756
77796
  pendingPeriodHours?: number;
77797
+ /**
77798
+ * Time of day when the automatic readiness job processes eligible pending payout requests.
77799
+ * Use extended ISO-8601 time format (`HH:MM:SS`) with an optional timezone offset.
77800
+ */
77801
+ automaticReadinessTime?: reportsComponents["schemas"]["TimeIso8601Extended"];
77757
77802
  };
77758
77803
  };
77759
77804
  /** ID of the linked file object. */
@@ -83164,6 +83209,15 @@ export interface reportsComponents {
83164
83209
  name?: "Ilixium3dsServer";
83165
83210
  };
83166
83211
  };
83212
+ /** IMerchant gateway configuration. */
83213
+ IMerchant: reportsComponents["schemas"]["GatewayAccount"] & {
83214
+ /** Credentials of the IMerchant gateway. */
83215
+ credentials: {
83216
+ /** IMerchant API key. */
83217
+ apiKey: string;
83218
+ };
83219
+ threeDSecureServer?: reportsComponents["schemas"]["ThreeDSecureIO3dsServer"];
83220
+ };
83167
83221
  /** Ingenico gateway configuration. */
83168
83222
  Ingenico: reportsComponents["schemas"]["GatewayAccount"] & {
83169
83223
  credentials: {
@@ -83742,6 +83796,8 @@ export interface reportsComponents {
83742
83796
  apiKey: string;
83743
83797
  /** NuaPay API key for reconciliation. */
83744
83798
  nuaPayApiKey?: string;
83799
+ /** Secret for checksum verification for SEPA Instant Instant Notification (SIIN). */
83800
+ isxSiinSecret?: string;
83745
83801
  /** NuaPay account ID for reconciliation. */
83746
83802
  nuaPayAccountId?: string;
83747
83803
  };