@wix/auto_sdk_data-extension-schema_schemas 1.0.240 → 1.0.241
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 +6 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +6 -2
- 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 +6 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +6 -2
- 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 +6 -2
- 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 +6 -2
- 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 +6 -2
- 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 +6 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -15511,10 +15511,12 @@ interface FunctionReturnTypeSelectedDataTypeOneOf {
|
|
|
15511
15511
|
declare enum FunctionRole {
|
|
15512
15512
|
UNKNOWN_FUNCTION_ROLE = "UNKNOWN_FUNCTION_ROLE",
|
|
15513
15513
|
/** The function converts between two data types, mostly useful for context providers and function libraries */
|
|
15514
|
-
data_type_conversion = "data_type_conversion"
|
|
15514
|
+
data_type_conversion = "data_type_conversion",
|
|
15515
|
+
/** The function handles loading more items in a paginated list */
|
|
15516
|
+
pagination_load_next_page = "pagination_load_next_page"
|
|
15515
15517
|
}
|
|
15516
15518
|
/** @enumType */
|
|
15517
|
-
type FunctionRoleWithLiterals = FunctionRole | 'UNKNOWN_FUNCTION_ROLE' | 'data_type_conversion';
|
|
15519
|
+
type FunctionRoleWithLiterals = FunctionRole | 'UNKNOWN_FUNCTION_ROLE' | 'data_type_conversion' | 'pagination_load_next_page';
|
|
15518
15520
|
/** Filter type - declares which items are filterable and which operators each item supports */
|
|
15519
15521
|
interface FilterDefinition {
|
|
15520
15522
|
/** Fully described inline filter items */
|
|
@@ -19926,6 +19928,8 @@ interface WixelSPIConfig {
|
|
|
19926
19928
|
exposeCreateAssetByFile?: boolean;
|
|
19927
19929
|
/** Whether handle project duplicated handling is enabled for this SPI implementation. */
|
|
19928
19930
|
exposeHandleProjectDuplicated?: boolean;
|
|
19931
|
+
/** Whether get export config is enabled for this SPI implementation */
|
|
19932
|
+
exposeGetExportConfig?: boolean;
|
|
19929
19933
|
/** Which file media type is supported by this SPI implementation when creating assets by file. */
|
|
19930
19934
|
fileMediaType?: FileMediaTypeWithLiterals;
|
|
19931
19935
|
}
|
|
@@ -2224,6 +2224,7 @@ var InputType = /* @__PURE__ */ ((InputType2) => {
|
|
|
2224
2224
|
var FunctionRole = /* @__PURE__ */ ((FunctionRole2) => {
|
|
2225
2225
|
FunctionRole2["UNKNOWN_FUNCTION_ROLE"] = "UNKNOWN_FUNCTION_ROLE";
|
|
2226
2226
|
FunctionRole2["data_type_conversion"] = "data_type_conversion";
|
|
2227
|
+
FunctionRole2["pagination_load_next_page"] = "pagination_load_next_page";
|
|
2227
2228
|
return FunctionRole2;
|
|
2228
2229
|
})(FunctionRole || {});
|
|
2229
2230
|
var FilterOperator = /* @__PURE__ */ ((FilterOperator2) => {
|