@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.
@@ -15518,10 +15518,12 @@ interface FunctionReturnTypeSelectedDataTypeOneOf {
15518
15518
  declare enum FunctionRole {
15519
15519
  UNKNOWN_FUNCTION_ROLE = "UNKNOWN_FUNCTION_ROLE",
15520
15520
  /** The function converts between two data types, mostly useful for context providers and function libraries */
15521
- data_type_conversion = "data_type_conversion"
15521
+ data_type_conversion = "data_type_conversion",
15522
+ /** The function handles loading more items in a paginated list */
15523
+ pagination_load_next_page = "pagination_load_next_page"
15522
15524
  }
15523
15525
  /** @enumType */
15524
- type FunctionRoleWithLiterals = FunctionRole | 'UNKNOWN_FUNCTION_ROLE' | 'data_type_conversion';
15526
+ type FunctionRoleWithLiterals = FunctionRole | 'UNKNOWN_FUNCTION_ROLE' | 'data_type_conversion' | 'pagination_load_next_page';
15525
15527
  /** Filter type - declares which items are filterable and which operators each item supports */
15526
15528
  interface FilterDefinition {
15527
15529
  /** Fully described inline filter items */
@@ -19933,6 +19935,8 @@ interface WixelSPIConfig {
19933
19935
  exposeCreateAssetByFile?: boolean;
19934
19936
  /** Whether handle project duplicated handling is enabled for this SPI implementation. */
19935
19937
  exposeHandleProjectDuplicated?: boolean;
19938
+ /** Whether get export config is enabled for this SPI implementation */
19939
+ exposeGetExportConfig?: boolean;
19936
19940
  /** Which file media type is supported by this SPI implementation when creating assets by file. */
19937
19941
  fileMediaType?: FileMediaTypeWithLiterals;
19938
19942
  }
@@ -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) => {