@wix/auto_sdk_data-extension-schema_schemas 1.0.213 → 1.0.215
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 +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +14 -11
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +14 -11
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +14 -11
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +14 -11
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +14 -11
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +14 -11
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +14 -11
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +14 -11
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3385,30 +3385,31 @@ interface ShippingProviderConfig {
|
|
|
3385
3385
|
/** Cost of making a shipment */
|
|
3386
3386
|
shippingPrice?: number;
|
|
3387
3387
|
}
|
|
3388
|
+
/** Base URI configuration for a service plugin. Wix uses these URIs to call your service plugin methods. */
|
|
3388
3389
|
interface SpiBaseUri {
|
|
3389
3390
|
/**
|
|
3390
|
-
* Base URI
|
|
3391
|
-
*
|
|
3391
|
+
* Base URI for your service plugin. Wix appends each method's path to this URI.
|
|
3392
|
+
*
|
|
3393
|
+
* For example, to receive requests at `https://my-app.com/v1/my-method`, set this field to `https://my-app.com/`.
|
|
3392
3394
|
* @minLength 6
|
|
3393
3395
|
* @maxLength 2048
|
|
3394
3396
|
*/
|
|
3395
3397
|
baseUri?: string;
|
|
3396
|
-
/**
|
|
3398
|
+
/** Alternative URIs for specific methods. Use these to override the default URI for individual methods. */
|
|
3397
3399
|
alternativeUris?: AlternativeUri[];
|
|
3398
3400
|
}
|
|
3401
|
+
/** Custom URI for the specified service plugin method. */
|
|
3399
3402
|
interface AlternativeUri {
|
|
3400
3403
|
/**
|
|
3401
|
-
* Name of the method to
|
|
3402
|
-
*
|
|
3403
|
-
* For `methodName`, use the name of the method in PascalCase.
|
|
3404
|
-
* For example, for Get Shipping Rates use `GetShippingRates`.
|
|
3404
|
+
* Name of the method to call at the absolute URI, in PascalCase. For example, to call [Get Shipping Rates](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/extensions/shipping-rates/shipping-rates-integration-service-plugin/get-shipping-rates) on an alternative URI, specify `GetShippingRates`.
|
|
3405
3405
|
* @minLength 3
|
|
3406
3406
|
* @maxLength 128
|
|
3407
3407
|
*/
|
|
3408
3408
|
methodName?: string;
|
|
3409
3409
|
/**
|
|
3410
|
-
*
|
|
3411
|
-
*
|
|
3410
|
+
* Absolute URI that Wix calls for this method. Wix doesn't append any path to this URI.
|
|
3411
|
+
*
|
|
3412
|
+
* The URI must begin with `https://`, such as `https://my-app.com/v1/my-custom-method`.
|
|
3412
3413
|
* @minLength 6
|
|
3413
3414
|
* @maxLength 2048
|
|
3414
3415
|
*/
|
|
@@ -3817,10 +3818,12 @@ declare enum BackOfficeHostingPlatforms {
|
|
|
3817
3818
|
/** Base44 Platform */
|
|
3818
3819
|
BASE44_PLATFORM = "BASE44_PLATFORM",
|
|
3819
3820
|
/** Payments by Wix Back Office */
|
|
3820
|
-
PAYMENTS_BO = "PAYMENTS_BO"
|
|
3821
|
+
PAYMENTS_BO = "PAYMENTS_BO",
|
|
3822
|
+
/** Symphony Giza host */
|
|
3823
|
+
SYMPHONY = "SYMPHONY"
|
|
3821
3824
|
}
|
|
3822
3825
|
/** @enumType */
|
|
3823
|
-
type BackOfficeHostingPlatformsWithLiterals = BackOfficeHostingPlatforms | 'NO_HOSTING_PLATFORM' | 'BUSINESS_MANAGER' | 'ACCOUNT_MANAGER' | 'DEV_CENTER' | 'ENTERPRISE' | 'PARTNERS_DASHBOARD' | 'FINANCIALS_INTERNAL_BO' | 'FED_GUILD_POC' | 'STUDIO_DASHBOARD' | 'CHANNELS' | 'DATA_TOOLS' | 'PSP_BACKOFFICE' | 'RISE_PLATFORM_ACCOUNT_DASHBOARD' | 'DEMO_DASHBOARD_ENTERPRISE' | 'AI_SCHEDULING_ASSISTANT_DASHBOARD' | 'GETTING_PAID' | 'DATA' | 'LITE_DASHBOARD' | 'PICASSO_EDITOR' | 'BASE44_DASHBOARD_POC' | 'WIXEL_EDITOR' | 'BASE44_PLATFORM' | 'PAYMENTS_BO';
|
|
3826
|
+
type BackOfficeHostingPlatformsWithLiterals = BackOfficeHostingPlatforms | 'NO_HOSTING_PLATFORM' | 'BUSINESS_MANAGER' | 'ACCOUNT_MANAGER' | 'DEV_CENTER' | 'ENTERPRISE' | 'PARTNERS_DASHBOARD' | 'FINANCIALS_INTERNAL_BO' | 'FED_GUILD_POC' | 'STUDIO_DASHBOARD' | 'CHANNELS' | 'DATA_TOOLS' | 'PSP_BACKOFFICE' | 'RISE_PLATFORM_ACCOUNT_DASHBOARD' | 'DEMO_DASHBOARD_ENTERPRISE' | 'AI_SCHEDULING_ASSISTANT_DASHBOARD' | 'GETTING_PAID' | 'DATA' | 'LITE_DASHBOARD' | 'PICASSO_EDITOR' | 'BASE44_DASHBOARD_POC' | 'WIXEL_EDITOR' | 'BASE44_PLATFORM' | 'PAYMENTS_BO' | 'SYMPHONY';
|
|
3824
3827
|
/** Definitions of common slots properties */
|
|
3825
3828
|
interface SlotData extends SlotDataSlotTypeOneOf {
|
|
3826
3829
|
/** Widget-specific slot. */
|
|
@@ -1108,6 +1108,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
|
|
|
1108
1108
|
BackOfficeHostingPlatforms2["WIXEL_EDITOR"] = "WIXEL_EDITOR";
|
|
1109
1109
|
BackOfficeHostingPlatforms2["BASE44_PLATFORM"] = "BASE44_PLATFORM";
|
|
1110
1110
|
BackOfficeHostingPlatforms2["PAYMENTS_BO"] = "PAYMENTS_BO";
|
|
1111
|
+
BackOfficeHostingPlatforms2["SYMPHONY"] = "SYMPHONY";
|
|
1111
1112
|
return BackOfficeHostingPlatforms2;
|
|
1112
1113
|
})(BackOfficeHostingPlatforms || {});
|
|
1113
1114
|
var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {
|