@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.
@@ -3359,30 +3359,31 @@ interface ShippingProviderConfig {
3359
3359
  /** Cost of making a shipment */
3360
3360
  shippingPrice?: number;
3361
3361
  }
3362
+ /** Base URI configuration for a service plugin. Wix uses these URIs to call your service plugin methods. */
3362
3363
  interface SpiBaseUri {
3363
3364
  /**
3364
- * Base URI where the methods are called. Wix appends the path to the `baseUri`.
3365
- * For example, to call the Get Shipping Rates method at `https://my-shipping-provider.com/v1/getRates`, the base URI you provide here is `https://my-shipping-provider.com/`.
3365
+ * Base URI for your service plugin. Wix appends each method's path to this URI.
3366
+ *
3367
+ * For example, to receive requests at `https://my-app.com/v1/my-method`, set this field to `https://my-app.com/`.
3366
3368
  * @minLength 6
3367
3369
  * @maxLength 2048
3368
3370
  */
3369
3371
  baseUri?: string;
3370
- /** Alternate, custom URIs to replace the default URIs for specific service plugin methods. */
3372
+ /** Alternative URIs for specific methods. Use these to override the default URI for individual methods. */
3371
3373
  alternativeUris?: AlternativeUri[];
3372
3374
  }
3375
+ /** Custom URI for the specified service plugin method. */
3373
3376
  interface AlternativeUri {
3374
3377
  /**
3375
- * Name of the method to create a custom URI for.
3376
- *
3377
- * For `methodName`, use the name of the method in PascalCase.
3378
- * For example, for Get Shipping Rates use `GetShippingRates`.
3378
+ * 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`.
3379
3379
  * @minLength 3
3380
3380
  * @maxLength 128
3381
3381
  */
3382
3382
  methodName?: string;
3383
3383
  /**
3384
- * Custom URI that Wix uses to call your server for this method. The path-suffix documented in the method will not be appended to this URI.
3385
- * Must be a secured endpoint beginning with `https://`. For example, `https://www.my-shipping-provider.com/my-shipping-rates`.
3384
+ * Absolute URI that Wix calls for this method. Wix doesn't append any path to this URI.
3385
+ *
3386
+ * The URI must begin with `https://`, such as `https://my-app.com/v1/my-custom-method`.
3386
3387
  * @minLength 6
3387
3388
  * @maxLength 2048
3388
3389
  */
@@ -3791,10 +3792,12 @@ declare enum BackOfficeHostingPlatforms {
3791
3792
  /** Base44 Platform */
3792
3793
  BASE44_PLATFORM = "BASE44_PLATFORM",
3793
3794
  /** Payments by Wix Back Office */
3794
- PAYMENTS_BO = "PAYMENTS_BO"
3795
+ PAYMENTS_BO = "PAYMENTS_BO",
3796
+ /** Symphony Giza host */
3797
+ SYMPHONY = "SYMPHONY"
3795
3798
  }
3796
3799
  /** @enumType */
3797
- 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';
3800
+ 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';
3798
3801
  /** Definitions of common slots properties */
3799
3802
  interface SlotData extends SlotDataSlotTypeOneOf {
3800
3803
  /** Widget-specific slot. */
@@ -1112,6 +1112,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
1112
1112
  BackOfficeHostingPlatforms2["WIXEL_EDITOR"] = "WIXEL_EDITOR";
1113
1113
  BackOfficeHostingPlatforms2["BASE44_PLATFORM"] = "BASE44_PLATFORM";
1114
1114
  BackOfficeHostingPlatforms2["PAYMENTS_BO"] = "PAYMENTS_BO";
1115
+ BackOfficeHostingPlatforms2["SYMPHONY"] = "SYMPHONY";
1115
1116
  return BackOfficeHostingPlatforms2;
1116
1117
  })(BackOfficeHostingPlatforms || {});
1117
1118
  var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {