@bigcommerce/checkout-sdk 1.734.0 → 1.735.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 +3 -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/enums/ExtensionRegion.md +7 -0
- package/docs/interfaces/Extension.md +7 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -5478,6 +5478,7 @@ declare interface Extension {
|
|
|
5478
5478
|
name: string;
|
|
5479
5479
|
region: ExtensionRegion;
|
|
5480
5480
|
url: string;
|
|
5481
|
+
type?: 'iframe' | 'worker';
|
|
5481
5482
|
}
|
|
5482
5483
|
|
|
5483
5484
|
declare interface ExtensionCommandMap {
|
|
@@ -5519,7 +5520,8 @@ declare const enum ExtensionRegion {
|
|
|
5519
5520
|
ShippingShippingAddressFormAfter = "shipping.shippingAddressForm.after",
|
|
5520
5521
|
ShippingSelectedShippingMethod = "shipping.selectedShippingMethod",
|
|
5521
5522
|
SummaryAfter = "summary.after",
|
|
5522
|
-
SummaryLastItemAfter = "summary.lastItem.after"
|
|
5523
|
+
SummaryLastItemAfter = "summary.lastItem.after",
|
|
5524
|
+
GlobalWebWorker = "global"
|
|
5523
5525
|
}
|
|
5524
5526
|
|
|
5525
5527
|
declare interface ExtensionSelector {
|