@wix/auto_sdk_data-extension-schema_schemas 1.0.45 → 1.0.46

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.
@@ -4489,10 +4489,11 @@ declare enum Tag {
4489
4489
  ECOM_DELIVERY_PROFILES = "ECOM_DELIVERY_PROFILES",
4490
4490
  ADD_TO_CATEGORY = "ADD_TO_CATEGORY",
4491
4491
  MY_BUSINESS = "MY_BUSINESS",
4492
- PIPELINE_LINKED_ENTITY = "PIPELINE_LINKED_ENTITY"
4492
+ PIPELINE_LINKED_ENTITY = "PIPELINE_LINKED_ENTITY",
4493
+ GET_PAID = "GET_PAID"
4493
4494
  }
4494
4495
  /** @enumType */
4495
- type TagWithLiterals = Tag | 'UNKNOWN_TAG' | 'EMBEDDABLE' | 'ECOM_EDIT_ORDER' | 'ECOM_CREATE_ORDER' | 'INBOX' | 'ECOM_CREATE_PAY_LINK' | 'ECOM_DELIVERY_PROFILES' | 'ADD_TO_CATEGORY' | 'MY_BUSINESS' | 'PIPELINE_LINKED_ENTITY';
4496
+ type TagWithLiterals = Tag | 'UNKNOWN_TAG' | 'EMBEDDABLE' | 'ECOM_EDIT_ORDER' | 'ECOM_CREATE_ORDER' | 'INBOX' | 'ECOM_CREATE_PAY_LINK' | 'ECOM_DELIVERY_PROFILES' | 'ADD_TO_CATEGORY' | 'MY_BUSINESS' | 'PIPELINE_LINKED_ENTITY' | 'GET_PAID';
4496
4497
  declare enum FilterSelectionType {
4497
4498
  UNKNOWN_SELECTION = "UNKNOWN_SELECTION",
4498
4499
  /** Allow to select only a single item */
@@ -6916,6 +6917,11 @@ interface HeadlessOAuth {
6916
6917
  * @maxSize 10
6917
6918
  */
6918
6919
  wixPagesDomainsMappings?: WixPagesDomainMapping[];
6920
+ /**
6921
+ * Redirect url for Wix-hosted pages.
6922
+ * @maxLength 1024
6923
+ */
6924
+ redirectUrlWixPages?: string | null;
6919
6925
  }
6920
6926
  /** Types of OAuth application. */
6921
6927
  declare enum OAuthAppType {
@@ -1004,6 +1004,7 @@ var Tag = /* @__PURE__ */ ((Tag2) => {
1004
1004
  Tag2["ADD_TO_CATEGORY"] = "ADD_TO_CATEGORY";
1005
1005
  Tag2["MY_BUSINESS"] = "MY_BUSINESS";
1006
1006
  Tag2["PIPELINE_LINKED_ENTITY"] = "PIPELINE_LINKED_ENTITY";
1007
+ Tag2["GET_PAID"] = "GET_PAID";
1007
1008
  return Tag2;
1008
1009
  })(Tag || {});
1009
1010
  var FilterSelectionType = /* @__PURE__ */ ((FilterSelectionType2) => {