rebilly-js-sdk 58.22.1 → 58.23.1
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 +1 -1
- package/dist/rebilly-js-sdk.d.ts +42 -6
- package/dist/rebilly-js-sdk.es.mjs +1617 -1617
- package/dist/rebilly-js-sdk.umd.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
## [58.
|
|
1
|
+
## [58.23.1](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v58.23.0...rebilly-js-sdk-v58.23.1) (2025-02-03)
|
package/dist/rebilly-js-sdk.d.ts
CHANGED
|
@@ -16362,15 +16362,27 @@ export interface coreComponents {
|
|
|
16362
16362
|
CheckoutCom: coreComponents["schemas"]["GatewayAccount"] & {
|
|
16363
16363
|
/** Checkout.com credentials object. */
|
|
16364
16364
|
credentials: {
|
|
16365
|
-
/**
|
|
16365
|
+
/**
|
|
16366
|
+
* Checkout.com secret API key.
|
|
16367
|
+
* Generate this key in the Checkout.com dashboard under Developers->API keys section.
|
|
16368
|
+
*/
|
|
16366
16369
|
secretKey: string;
|
|
16370
|
+
/**
|
|
16371
|
+
* Checkout.com webhook signature key.
|
|
16372
|
+
* Generate this key in the Checkout.com dashboard under Developers->Webhooks section.
|
|
16373
|
+
*/
|
|
16374
|
+
signatureKey?: string;
|
|
16367
16375
|
};
|
|
16368
16376
|
settings?: {
|
|
16369
16377
|
/** Specifies whether to mark pending payouts as 'waiting-gateway/unknown' instead of 'approved'. */
|
|
16370
16378
|
markAsWaitingGatewayOnPendingPayout?: boolean;
|
|
16371
16379
|
/** Name of the website custom field that contains the sub-entity ID. */
|
|
16372
16380
|
subEntityIdWebsiteCustomField?: string;
|
|
16373
|
-
/**
|
|
16381
|
+
/**
|
|
16382
|
+
* Checkout.com processing channel ID.
|
|
16383
|
+
* Checkout.com secret API key can be configured with a default processing channel ID.
|
|
16384
|
+
* Otherwise the processing channel ID needs to be set.
|
|
16385
|
+
*/
|
|
16374
16386
|
processingChannelId?: string;
|
|
16375
16387
|
};
|
|
16376
16388
|
threeDSecureServer?: coreComponents["schemas"]["ThreeDSecureIO3dsServer"];
|
|
@@ -49917,15 +49929,27 @@ export interface storefrontComponents {
|
|
|
49917
49929
|
CheckoutCom: storefrontComponents["schemas"]["GatewayAccount"] & {
|
|
49918
49930
|
/** Checkout.com credentials object. */
|
|
49919
49931
|
credentials: {
|
|
49920
|
-
/**
|
|
49932
|
+
/**
|
|
49933
|
+
* Checkout.com secret API key.
|
|
49934
|
+
* Generate this key in the Checkout.com dashboard under Developers->API keys section.
|
|
49935
|
+
*/
|
|
49921
49936
|
secretKey: string;
|
|
49937
|
+
/**
|
|
49938
|
+
* Checkout.com webhook signature key.
|
|
49939
|
+
* Generate this key in the Checkout.com dashboard under Developers->Webhooks section.
|
|
49940
|
+
*/
|
|
49941
|
+
signatureKey?: string;
|
|
49922
49942
|
};
|
|
49923
49943
|
settings?: {
|
|
49924
49944
|
/** Specifies whether to mark pending payouts as 'waiting-gateway/unknown' instead of 'approved'. */
|
|
49925
49945
|
markAsWaitingGatewayOnPendingPayout?: boolean;
|
|
49926
49946
|
/** Name of the website custom field that contains the sub-entity ID. */
|
|
49927
49947
|
subEntityIdWebsiteCustomField?: string;
|
|
49928
|
-
/**
|
|
49948
|
+
/**
|
|
49949
|
+
* Checkout.com processing channel ID.
|
|
49950
|
+
* Checkout.com secret API key can be configured with a default processing channel ID.
|
|
49951
|
+
* Otherwise the processing channel ID needs to be set.
|
|
49952
|
+
*/
|
|
49929
49953
|
processingChannelId?: string;
|
|
49930
49954
|
};
|
|
49931
49955
|
threeDSecureServer?: storefrontComponents["schemas"]["ThreeDSecureIO3dsServer"];
|
|
@@ -72360,15 +72384,27 @@ export interface reportsComponents {
|
|
|
72360
72384
|
CheckoutCom: reportsComponents["schemas"]["GatewayAccount"] & {
|
|
72361
72385
|
/** Checkout.com credentials object. */
|
|
72362
72386
|
credentials: {
|
|
72363
|
-
/**
|
|
72387
|
+
/**
|
|
72388
|
+
* Checkout.com secret API key.
|
|
72389
|
+
* Generate this key in the Checkout.com dashboard under Developers->API keys section.
|
|
72390
|
+
*/
|
|
72364
72391
|
secretKey: string;
|
|
72392
|
+
/**
|
|
72393
|
+
* Checkout.com webhook signature key.
|
|
72394
|
+
* Generate this key in the Checkout.com dashboard under Developers->Webhooks section.
|
|
72395
|
+
*/
|
|
72396
|
+
signatureKey?: string;
|
|
72365
72397
|
};
|
|
72366
72398
|
settings?: {
|
|
72367
72399
|
/** Specifies whether to mark pending payouts as 'waiting-gateway/unknown' instead of 'approved'. */
|
|
72368
72400
|
markAsWaitingGatewayOnPendingPayout?: boolean;
|
|
72369
72401
|
/** Name of the website custom field that contains the sub-entity ID. */
|
|
72370
72402
|
subEntityIdWebsiteCustomField?: string;
|
|
72371
|
-
/**
|
|
72403
|
+
/**
|
|
72404
|
+
* Checkout.com processing channel ID.
|
|
72405
|
+
* Checkout.com secret API key can be configured with a default processing channel ID.
|
|
72406
|
+
* Otherwise the processing channel ID needs to be set.
|
|
72407
|
+
*/
|
|
72372
72408
|
processingChannelId?: string;
|
|
72373
72409
|
};
|
|
72374
72410
|
threeDSecureServer?: reportsComponents["schemas"]["ThreeDSecureIO3dsServer"];
|