@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.
@@ -4506,10 +4506,11 @@ declare enum Tag {
4506
4506
  ECOM_DELIVERY_PROFILES = "ECOM_DELIVERY_PROFILES",
4507
4507
  ADD_TO_CATEGORY = "ADD_TO_CATEGORY",
4508
4508
  MY_BUSINESS = "MY_BUSINESS",
4509
- PIPELINE_LINKED_ENTITY = "PIPELINE_LINKED_ENTITY"
4509
+ PIPELINE_LINKED_ENTITY = "PIPELINE_LINKED_ENTITY",
4510
+ GET_PAID = "GET_PAID"
4510
4511
  }
4511
4512
  /** @enumType */
4512
- 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';
4513
+ 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';
4513
4514
  declare enum FilterSelectionType {
4514
4515
  UNKNOWN_SELECTION = "UNKNOWN_SELECTION",
4515
4516
  /** Allow to select only a single item */
@@ -6933,6 +6934,11 @@ interface HeadlessOAuth {
6933
6934
  * @maxSize 10
6934
6935
  */
6935
6936
  wixPagesDomainsMappings?: WixPagesDomainMapping[];
6937
+ /**
6938
+ * Redirect url for Wix-hosted pages.
6939
+ * @maxLength 1024
6940
+ */
6941
+ redirectUrlWixPages?: string | null;
6936
6942
  }
6937
6943
  /** Types of OAuth application. */
6938
6944
  declare enum OAuthAppType {
@@ -762,6 +762,7 @@ var Tag = /* @__PURE__ */ ((Tag2) => {
762
762
  Tag2["ADD_TO_CATEGORY"] = "ADD_TO_CATEGORY";
763
763
  Tag2["MY_BUSINESS"] = "MY_BUSINESS";
764
764
  Tag2["PIPELINE_LINKED_ENTITY"] = "PIPELINE_LINKED_ENTITY";
765
+ Tag2["GET_PAID"] = "GET_PAID";
765
766
  return Tag2;
766
767
  })(Tag || {});
767
768
  var FilterSelectionType = /* @__PURE__ */ ((FilterSelectionType2) => {