@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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +8 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.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 +8 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.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 +8 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.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 +8 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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 {
|
|
@@ -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) => {
|