@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.
@@ -14435,6 +14435,8 @@ interface FunctionParameter extends FunctionParameterSelectedDataTypeOneOf {
14435
14435
  data?: FunctionParameterItems;
14436
14436
  /** In case of a function */
14437
14437
  function?: EditorFunction;
14438
+ /** In case of a text enum */
14439
+ textEnum?: TextEnum;
14438
14440
  /** The type of the Parameter, does not include containers */
14439
14441
  dataType?: DataTypeWithLiterals;
14440
14442
  /** Whether the Parameter is optional, limitations of Javascript apply, only the last parameters can be optional */
@@ -14455,6 +14457,8 @@ interface FunctionParameterSelectedDataTypeOneOf {
14455
14457
  data?: FunctionParameterItems;
14456
14458
  /** In case of a function */
14457
14459
  function?: EditorFunction;
14460
+ /** In case of a text enum */
14461
+ textEnum?: TextEnum;
14458
14462
  }
14459
14463
  /** An array of data items or complex data types */
14460
14464
  interface FunctionParameterArrayItems extends FunctionParameterArrayItemsArrayDataOneOf {
@@ -14478,6 +14482,8 @@ interface FunctionReturnType extends FunctionReturnTypeSelectedDataTypeOneOf {
14478
14482
  arrayItems?: FunctionParameterArrayItems;
14479
14483
  /** In case of a complex object */
14480
14484
  data?: FunctionParameterItems;
14485
+ /** In case of a text enum */
14486
+ textEnum?: TextEnum;
14481
14487
  /** The type of the return value, does not include containers */
14482
14488
  dataType?: DataTypeWithLiterals;
14483
14489
  /**
@@ -14497,6 +14503,8 @@ interface FunctionReturnTypeSelectedDataTypeOneOf {
14497
14503
  arrayItems?: FunctionParameterArrayItems;
14498
14504
  /** In case of a complex object */
14499
14505
  data?: FunctionParameterItems;
14506
+ /** In case of a text enum */
14507
+ textEnum?: TextEnum;
14500
14508
  }
14501
14509
  interface ElementItem extends ElementItemSelectedElementTypeOneOf {
14502
14510
  /** An new element definition */
@@ -18520,6 +18528,8 @@ interface ContextItem extends ContextItemSelectedDataTypeOneOf {
18520
18528
  data?: ContextDataItems;
18521
18529
  /** For functions, the function definition is defined here */
18522
18530
  function?: EditorFunction;
18531
+ /** For text enums, the enum options are defined here */
18532
+ textEnum?: TextEnum;
18523
18533
  /** The type exposed by the context item (can't be "container") */
18524
18534
  dataType?: DataTypeWithLiterals;
18525
18535
  /**
@@ -18538,6 +18548,8 @@ interface ContextItemSelectedDataTypeOneOf {
18538
18548
  data?: ContextDataItems;
18539
18549
  /** For functions, the function definition is defined here */
18540
18550
  function?: EditorFunction;
18551
+ /** For text enums, the enum options are defined here */
18552
+ textEnum?: TextEnum;
18541
18553
  }
18542
18554
  interface ContextImplementor {
18543
18555
  /**