@wix/auto_sdk_data-extension-schema_schemas 1.0.151 → 1.0.152

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.
@@ -14444,6 +14444,8 @@ interface FunctionParameter extends FunctionParameterSelectedDataTypeOneOf {
14444
14444
  data?: FunctionParameterItems;
14445
14445
  /** In case of a function */
14446
14446
  function?: EditorFunction;
14447
+ /** In case of a text enum */
14448
+ textEnum?: TextEnum;
14447
14449
  /** The type of the Parameter, does not include containers */
14448
14450
  dataType?: DataTypeWithLiterals;
14449
14451
  /** Whether the Parameter is optional, limitations of Javascript apply, only the last parameters can be optional */
@@ -14464,6 +14466,8 @@ interface FunctionParameterSelectedDataTypeOneOf {
14464
14466
  data?: FunctionParameterItems;
14465
14467
  /** In case of a function */
14466
14468
  function?: EditorFunction;
14469
+ /** In case of a text enum */
14470
+ textEnum?: TextEnum;
14467
14471
  }
14468
14472
  /** An array of data items or complex data types */
14469
14473
  interface FunctionParameterArrayItems extends FunctionParameterArrayItemsArrayDataOneOf {
@@ -14487,6 +14491,8 @@ interface FunctionReturnType extends FunctionReturnTypeSelectedDataTypeOneOf {
14487
14491
  arrayItems?: FunctionParameterArrayItems;
14488
14492
  /** In case of a complex object */
14489
14493
  data?: FunctionParameterItems;
14494
+ /** In case of a text enum */
14495
+ textEnum?: TextEnum;
14490
14496
  /** The type of the return value, does not include containers */
14491
14497
  dataType?: DataTypeWithLiterals;
14492
14498
  /**
@@ -14506,6 +14512,8 @@ interface FunctionReturnTypeSelectedDataTypeOneOf {
14506
14512
  arrayItems?: FunctionParameterArrayItems;
14507
14513
  /** In case of a complex object */
14508
14514
  data?: FunctionParameterItems;
14515
+ /** In case of a text enum */
14516
+ textEnum?: TextEnum;
14509
14517
  }
14510
14518
  interface ElementItem extends ElementItemSelectedElementTypeOneOf {
14511
14519
  /** An new element definition */
@@ -18529,6 +18537,8 @@ interface ContextItem extends ContextItemSelectedDataTypeOneOf {
18529
18537
  data?: ContextDataItems;
18530
18538
  /** For functions, the function definition is defined here */
18531
18539
  function?: EditorFunction;
18540
+ /** For text enums, the enum options are defined here */
18541
+ textEnum?: TextEnum;
18532
18542
  /** The type exposed by the context item (can't be "container") */
18533
18543
  dataType?: DataTypeWithLiterals;
18534
18544
  /**
@@ -18547,6 +18557,8 @@ interface ContextItemSelectedDataTypeOneOf {
18547
18557
  data?: ContextDataItems;
18548
18558
  /** For functions, the function definition is defined here */
18549
18559
  function?: EditorFunction;
18560
+ /** For text enums, the enum options are defined here */
18561
+ textEnum?: TextEnum;
18550
18562
  }
18551
18563
  interface ContextImplementor {
18552
18564
  /**