@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +12 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +12 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +12 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +12 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +12 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +12 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +12 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +12 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -14418,6 +14418,8 @@ interface FunctionParameter extends FunctionParameterSelectedDataTypeOneOf {
|
|
|
14418
14418
|
data?: FunctionParameterItems;
|
|
14419
14419
|
/** In case of a function */
|
|
14420
14420
|
function?: EditorFunction;
|
|
14421
|
+
/** In case of a text enum */
|
|
14422
|
+
textEnum?: TextEnum;
|
|
14421
14423
|
/** The type of the Parameter, does not include containers */
|
|
14422
14424
|
dataType?: DataTypeWithLiterals;
|
|
14423
14425
|
/** Whether the Parameter is optional, limitations of Javascript apply, only the last parameters can be optional */
|
|
@@ -14438,6 +14440,8 @@ interface FunctionParameterSelectedDataTypeOneOf {
|
|
|
14438
14440
|
data?: FunctionParameterItems;
|
|
14439
14441
|
/** In case of a function */
|
|
14440
14442
|
function?: EditorFunction;
|
|
14443
|
+
/** In case of a text enum */
|
|
14444
|
+
textEnum?: TextEnum;
|
|
14441
14445
|
}
|
|
14442
14446
|
/** An array of data items or complex data types */
|
|
14443
14447
|
interface FunctionParameterArrayItems extends FunctionParameterArrayItemsArrayDataOneOf {
|
|
@@ -14461,6 +14465,8 @@ interface FunctionReturnType extends FunctionReturnTypeSelectedDataTypeOneOf {
|
|
|
14461
14465
|
arrayItems?: FunctionParameterArrayItems;
|
|
14462
14466
|
/** In case of a complex object */
|
|
14463
14467
|
data?: FunctionParameterItems;
|
|
14468
|
+
/** In case of a text enum */
|
|
14469
|
+
textEnum?: TextEnum;
|
|
14464
14470
|
/** The type of the return value, does not include containers */
|
|
14465
14471
|
dataType?: DataTypeWithLiterals;
|
|
14466
14472
|
/**
|
|
@@ -14480,6 +14486,8 @@ interface FunctionReturnTypeSelectedDataTypeOneOf {
|
|
|
14480
14486
|
arrayItems?: FunctionParameterArrayItems;
|
|
14481
14487
|
/** In case of a complex object */
|
|
14482
14488
|
data?: FunctionParameterItems;
|
|
14489
|
+
/** In case of a text enum */
|
|
14490
|
+
textEnum?: TextEnum;
|
|
14483
14491
|
}
|
|
14484
14492
|
interface ElementItem extends ElementItemSelectedElementTypeOneOf {
|
|
14485
14493
|
/** An new element definition */
|
|
@@ -18503,6 +18511,8 @@ interface ContextItem extends ContextItemSelectedDataTypeOneOf {
|
|
|
18503
18511
|
data?: ContextDataItems;
|
|
18504
18512
|
/** For functions, the function definition is defined here */
|
|
18505
18513
|
function?: EditorFunction;
|
|
18514
|
+
/** For text enums, the enum options are defined here */
|
|
18515
|
+
textEnum?: TextEnum;
|
|
18506
18516
|
/** The type exposed by the context item (can't be "container") */
|
|
18507
18517
|
dataType?: DataTypeWithLiterals;
|
|
18508
18518
|
/**
|
|
@@ -18521,6 +18531,8 @@ interface ContextItemSelectedDataTypeOneOf {
|
|
|
18521
18531
|
data?: ContextDataItems;
|
|
18522
18532
|
/** For functions, the function definition is defined here */
|
|
18523
18533
|
function?: EditorFunction;
|
|
18534
|
+
/** For text enums, the enum options are defined here */
|
|
18535
|
+
textEnum?: TextEnum;
|
|
18524
18536
|
}
|
|
18525
18537
|
interface ContextImplementor {
|
|
18526
18538
|
/**
|