@bigcommerce/checkout-sdk 1.740.0 → 1.741.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/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +7 -1
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +1 -1
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/dist/hosted-form-v2-iframe-host.js +1 -1
- package/dist/hosted-form-v2-iframe-host.umd.js +1 -1
- package/docs/README.md +1 -0
- package/docs/enums/ExtensionType.md +22 -0
- package/docs/interfaces/Extension.md +1 -1
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -2939,6 +2939,7 @@ declare class CheckoutService {
|
|
|
2939
2939
|
private _subscriptionsActionCreator;
|
|
2940
2940
|
private _formFieldsActionCreator;
|
|
2941
2941
|
private _extensionActionCreator;
|
|
2942
|
+
private _workerExtensionMessenger;
|
|
2942
2943
|
private _errorTransformer;
|
|
2943
2944
|
/**
|
|
2944
2945
|
* Returns a snapshot of the current checkout state.
|
|
@@ -5597,7 +5598,7 @@ declare interface Extension {
|
|
|
5597
5598
|
name: string;
|
|
5598
5599
|
region: ExtensionRegion;
|
|
5599
5600
|
url: string;
|
|
5600
|
-
type
|
|
5601
|
+
type: ExtensionType;
|
|
5601
5602
|
}
|
|
5602
5603
|
|
|
5603
5604
|
declare interface ExtensionCommandMap {
|
|
@@ -5650,6 +5651,11 @@ declare interface ExtensionSelector {
|
|
|
5650
5651
|
isLoading(): boolean;
|
|
5651
5652
|
}
|
|
5652
5653
|
|
|
5654
|
+
declare const enum ExtensionType {
|
|
5655
|
+
Iframe = "iframe",
|
|
5656
|
+
Worker = "worker"
|
|
5657
|
+
}
|
|
5658
|
+
|
|
5653
5659
|
declare interface Fee {
|
|
5654
5660
|
id: string;
|
|
5655
5661
|
type: string;
|