@wix/app-extensions 1.0.89 → 1.0.90
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.d.ts +34 -1
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +34 -1
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +5 -8
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +5 -8
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1056,8 +1056,7 @@ interface ComponentData extends ComponentDataDataOneOf {
|
|
|
1056
1056
|
wixelBinding?: BindingsSPIConfig;
|
|
1057
1057
|
/**
|
|
1058
1058
|
* Integrate your supplier or fulfillment platform's product catalog with Suppliers Hub Marketplace.
|
|
1059
|
-
* Learn
|
|
1060
|
-
* @internal
|
|
1059
|
+
* Learn More: https://dev.wix.com/docs/api-reference/business-solutions/suppliers-hub/marketplace-provider-service-plugin/introduction
|
|
1061
1060
|
*/
|
|
1062
1061
|
shubMarketplaceProvider?: MarketplaceProviderConfig;
|
|
1063
1062
|
/**
|
|
@@ -2227,8 +2226,7 @@ interface ComponentDataDataOneOf {
|
|
|
2227
2226
|
wixelBinding?: BindingsSPIConfig;
|
|
2228
2227
|
/**
|
|
2229
2228
|
* Integrate your supplier or fulfillment platform's product catalog with Suppliers Hub Marketplace.
|
|
2230
|
-
* Learn
|
|
2231
|
-
* @internal
|
|
2229
|
+
* Learn More: https://dev.wix.com/docs/api-reference/business-solutions/suppliers-hub/marketplace-provider-service-plugin/introduction
|
|
2232
2230
|
*/
|
|
2233
2231
|
shubMarketplaceProvider?: MarketplaceProviderConfig;
|
|
2234
2232
|
/**
|
|
@@ -19819,7 +19817,8 @@ interface StateContextItem extends StateContextItemValueOneOf {
|
|
|
19819
19817
|
*/
|
|
19820
19818
|
enumValue?: string | null;
|
|
19821
19819
|
/**
|
|
19822
|
-
* Key of the context.items entry this value applies to. Must reference an existing item whose
|
|
19820
|
+
* Key of the context.items entry this value applies to. Must reference an existing item whose
|
|
19821
|
+
* data_type is booleanValue or textEnum
|
|
19823
19822
|
* @maxLength 100
|
|
19824
19823
|
*/
|
|
19825
19824
|
itemKey?: string | null;
|
|
@@ -24748,7 +24747,6 @@ interface BindingsSPIConfig {
|
|
|
24748
24747
|
/** URI where the SPI implementation is deployed and accessible. */
|
|
24749
24748
|
deploymentUri?: SpiBaseUri;
|
|
24750
24749
|
}
|
|
24751
|
-
/** @internal */
|
|
24752
24750
|
interface MarketplaceProviderConfig {
|
|
24753
24751
|
/** URI where the service plugin implementer is deployed. */
|
|
24754
24752
|
deploymentUri?: SpiBaseUri;
|
|
@@ -28973,12 +28971,11 @@ declare function wixelBinding({ id, data, name, }: {
|
|
|
28973
28971
|
}): ExtensionData;
|
|
28974
28972
|
/**
|
|
28975
28973
|
* Integrate your supplier or fulfillment platform's product catalog with Suppliers Hub Marketplace.
|
|
28976
|
-
* Learn
|
|
28974
|
+
* Learn More: https://dev.wix.com/docs/api-reference/business-solutions/suppliers-hub/marketplace-provider-service-plugin/introduction
|
|
28977
28975
|
* @param id - A unique identifier for the extension
|
|
28978
28976
|
* @param name - Optional - A human readable name for the extension
|
|
28979
28977
|
* @returns A general form of extensions
|
|
28980
28978
|
*/
|
|
28981
|
-
/** @internal */
|
|
28982
28979
|
declare function shubMarketplaceProvider({ id, data, name, }: {
|
|
28983
28980
|
id: string;
|
|
28984
28981
|
data: MarketplaceProviderConfig;
|