@wix/auto_sdk_data-extension-schema_schemas 1.0.147 → 1.0.149
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +14 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +14 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +14 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +14 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +14 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +14 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +14 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +14 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -679,6 +679,11 @@ interface ComponentData extends ComponentDataDataOneOf {
|
|
|
679
679
|
* Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-widgets/about-site-widget-extensions
|
|
680
680
|
*/
|
|
681
681
|
customElementWidget?: CustomElementWidget;
|
|
682
|
+
/**
|
|
683
|
+
* Integrate any external inventory with the Wix eCommerce platform.
|
|
684
|
+
* Learn More: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/catalogs/inventory-service-plugin/introduction
|
|
685
|
+
*/
|
|
686
|
+
ecomInventory?: InventorySpiConfig;
|
|
682
687
|
/**
|
|
683
688
|
* Restriction service plugin for editing products managed by third-party fulfillment apps, such as dropshipping or print-on-demand services
|
|
684
689
|
* Learn More: https://dev.wix.com/docs/rest/business-solutions/stores/service-plugins/product-restrictions-v3/introduction
|
|
@@ -689,6 +694,8 @@ interface ComponentData extends ComponentDataDataOneOf {
|
|
|
689
694
|
* @internal
|
|
690
695
|
*/
|
|
691
696
|
sdkExports?: SDKExports;
|
|
697
|
+
/** Bookings Staff Sorting Provider SPI */
|
|
698
|
+
staffSortingProvider?: StaffSortingProviderConfig;
|
|
692
699
|
}
|
|
693
700
|
/** @oneof */
|
|
694
701
|
interface ComponentDataDataOneOf {
|
|
@@ -795,6 +802,11 @@ interface ComponentDataDataOneOf {
|
|
|
795
802
|
* Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-widgets/about-site-widget-extensions
|
|
796
803
|
*/
|
|
797
804
|
customElementWidget?: CustomElementWidget;
|
|
805
|
+
/**
|
|
806
|
+
* Integrate any external inventory with the Wix eCommerce platform.
|
|
807
|
+
* Learn More: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/catalogs/inventory-service-plugin/introduction
|
|
808
|
+
*/
|
|
809
|
+
ecomInventory?: InventorySpiConfig;
|
|
798
810
|
/**
|
|
799
811
|
* Restriction service plugin for editing products managed by third-party fulfillment apps, such as dropshipping or print-on-demand services
|
|
800
812
|
* Learn More: https://dev.wix.com/docs/rest/business-solutions/stores/service-plugins/product-restrictions-v3/introduction
|
|
@@ -805,6 +817,8 @@ interface ComponentDataDataOneOf {
|
|
|
805
817
|
* @internal
|
|
806
818
|
*/
|
|
807
819
|
sdkExports?: SDKExports;
|
|
820
|
+
/** Bookings Staff Sorting Provider SPI */
|
|
821
|
+
staffSortingProvider?: StaffSortingProviderConfig;
|
|
808
822
|
}
|
|
809
823
|
/** An iframe to be displayed on the user’s site */
|
|
810
824
|
interface WidgetComponentData {
|