@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
|
@@ -15537,10 +15537,12 @@ interface FunctionReturnTypeSelectedDataTypeOneOf {
|
|
|
15537
15537
|
declare enum FunctionRole {
|
|
15538
15538
|
UNKNOWN_FUNCTION_ROLE = "UNKNOWN_FUNCTION_ROLE",
|
|
15539
15539
|
/** The function converts between two data types, mostly useful for context providers and function libraries */
|
|
15540
|
-
data_type_conversion = "data_type_conversion"
|
|
15540
|
+
data_type_conversion = "data_type_conversion",
|
|
15541
|
+
/** The function handles loading more items in a paginated list */
|
|
15542
|
+
pagination_load_next_page = "pagination_load_next_page"
|
|
15541
15543
|
}
|
|
15542
15544
|
/** @enumType */
|
|
15543
|
-
type FunctionRoleWithLiterals = FunctionRole | 'UNKNOWN_FUNCTION_ROLE' | 'data_type_conversion';
|
|
15545
|
+
type FunctionRoleWithLiterals = FunctionRole | 'UNKNOWN_FUNCTION_ROLE' | 'data_type_conversion' | 'pagination_load_next_page';
|
|
15544
15546
|
/** Filter type - declares which items are filterable and which operators each item supports */
|
|
15545
15547
|
interface FilterDefinition {
|
|
15546
15548
|
/** Fully described inline filter items */
|
|
@@ -19952,6 +19954,8 @@ interface WixelSPIConfig {
|
|
|
19952
19954
|
exposeCreateAssetByFile?: boolean;
|
|
19953
19955
|
/** Whether handle project duplicated handling is enabled for this SPI implementation. */
|
|
19954
19956
|
exposeHandleProjectDuplicated?: boolean;
|
|
19957
|
+
/** Whether get export config is enabled for this SPI implementation */
|
|
19958
|
+
exposeGetExportConfig?: boolean;
|
|
19955
19959
|
/** Which file media type is supported by this SPI implementation when creating assets by file. */
|
|
19956
19960
|
fileMediaType?: FileMediaTypeWithLiterals;
|
|
19957
19961
|
}
|
|
@@ -2217,6 +2217,7 @@ var InputType = /* @__PURE__ */ ((InputType2) => {
|
|
|
2217
2217
|
var FunctionRole = /* @__PURE__ */ ((FunctionRole2) => {
|
|
2218
2218
|
FunctionRole2["UNKNOWN_FUNCTION_ROLE"] = "UNKNOWN_FUNCTION_ROLE";
|
|
2219
2219
|
FunctionRole2["data_type_conversion"] = "data_type_conversion";
|
|
2220
|
+
FunctionRole2["pagination_load_next_page"] = "pagination_load_next_page";
|
|
2220
2221
|
return FunctionRole2;
|
|
2221
2222
|
})(FunctionRole || {});
|
|
2222
2223
|
var FilterOperator = /* @__PURE__ */ ((FilterOperator2) => {
|