@wix/auto_sdk_data-extension-schema_schemas 1.0.219 → 1.0.220
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 +105 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +105 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +105 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +105 -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 +105 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +105 -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 +105 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +105 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -14547,6 +14547,11 @@ interface EditorElement {
|
|
|
14547
14547
|
cssCustomProperties?: Record<string, CssCustomPropertyItem>;
|
|
14548
14548
|
/** A reference to a help article for this element */
|
|
14549
14549
|
helpArticle?: HelpArticle;
|
|
14550
|
+
/**
|
|
14551
|
+
* A description of the editor element
|
|
14552
|
+
* @maxLength 300
|
|
14553
|
+
*/
|
|
14554
|
+
description?: string | null;
|
|
14550
14555
|
}
|
|
14551
14556
|
interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
14552
14557
|
/** An optional object to define limitations on the text input */
|
|
@@ -14590,6 +14595,11 @@ interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
|
14590
14595
|
defaultValue?: any;
|
|
14591
14596
|
/** Disables the ability to delete this data-item value in the Editor UI */
|
|
14592
14597
|
disableDeletion?: boolean | null;
|
|
14598
|
+
/**
|
|
14599
|
+
* A description of this data item
|
|
14600
|
+
* @maxLength 300
|
|
14601
|
+
*/
|
|
14602
|
+
description?: string | null;
|
|
14593
14603
|
}
|
|
14594
14604
|
/** @oneof */
|
|
14595
14605
|
interface DataItemSelectedDataTypeOneOf {
|
|
@@ -14726,6 +14736,11 @@ interface Option {
|
|
|
14726
14736
|
* @maxLength 100
|
|
14727
14737
|
*/
|
|
14728
14738
|
displayName?: string;
|
|
14739
|
+
/**
|
|
14740
|
+
* A description of this text item
|
|
14741
|
+
* @maxLength 300
|
|
14742
|
+
*/
|
|
14743
|
+
description?: string | null;
|
|
14729
14744
|
}
|
|
14730
14745
|
interface _Number {
|
|
14731
14746
|
/**
|
|
@@ -14932,6 +14947,11 @@ interface ReactElementContainer extends ReactElementContainerSelectedContainerTy
|
|
|
14932
14947
|
* @maxLength 50
|
|
14933
14948
|
*/
|
|
14934
14949
|
displayName?: string | null;
|
|
14950
|
+
/**
|
|
14951
|
+
* An optional override of the description of the container
|
|
14952
|
+
* @maxLength 300
|
|
14953
|
+
*/
|
|
14954
|
+
description?: string | null;
|
|
14935
14955
|
}
|
|
14936
14956
|
/** @oneof */
|
|
14937
14957
|
interface ReactElementContainerSelectedContainerTypeOneOf {
|
|
@@ -15381,6 +15401,11 @@ interface InlineFilterItem {
|
|
|
15381
15401
|
* @maxSize 10
|
|
15382
15402
|
*/
|
|
15383
15403
|
customOperators?: CustomFilterOperator[];
|
|
15404
|
+
/**
|
|
15405
|
+
* A description of this filter field
|
|
15406
|
+
* @maxLength 300
|
|
15407
|
+
*/
|
|
15408
|
+
description?: string | null;
|
|
15384
15409
|
}
|
|
15385
15410
|
declare enum FilterOperator {
|
|
15386
15411
|
UNKNOWN_FilterOperator = "UNKNOWN_FilterOperator",
|
|
@@ -15429,6 +15454,11 @@ interface CustomFilterOperator {
|
|
|
15429
15454
|
* @maxLength 100
|
|
15430
15455
|
*/
|
|
15431
15456
|
displayName?: string | null;
|
|
15457
|
+
/**
|
|
15458
|
+
* A description of this custom filter operator
|
|
15459
|
+
* @maxLength 300
|
|
15460
|
+
*/
|
|
15461
|
+
description?: string | null;
|
|
15432
15462
|
}
|
|
15433
15463
|
/** A filter item referencing an existing item (e.g. DataItem or ContextItem) */
|
|
15434
15464
|
interface FilterItem {
|
|
@@ -15473,6 +15503,11 @@ interface InlineSortItem {
|
|
|
15473
15503
|
* @maxLength 100
|
|
15474
15504
|
*/
|
|
15475
15505
|
descendingDisplayName?: string | null;
|
|
15506
|
+
/**
|
|
15507
|
+
* A description of this sort field
|
|
15508
|
+
* @maxLength 300
|
|
15509
|
+
*/
|
|
15510
|
+
description?: string | null;
|
|
15476
15511
|
}
|
|
15477
15512
|
/**
|
|
15478
15513
|
* A sort item referencing an existing item (e.g. DataItem or ContextItem),
|
|
@@ -15514,6 +15549,11 @@ interface ContextItem extends ContextItemSelectedDataTypeOneOf {
|
|
|
15514
15549
|
displayName?: string | null;
|
|
15515
15550
|
/** For sub types that implement parts of context, points to a context provider component type */
|
|
15516
15551
|
contextImplementor?: ContextImplementor;
|
|
15552
|
+
/**
|
|
15553
|
+
* A description of the context item for user facing and AI usage
|
|
15554
|
+
* @maxLength 300
|
|
15555
|
+
*/
|
|
15556
|
+
description?: string | null;
|
|
15517
15557
|
}
|
|
15518
15558
|
/** @oneof */
|
|
15519
15559
|
interface ContextItemSelectedDataTypeOneOf {
|
|
@@ -15624,6 +15664,11 @@ interface InlineElement {
|
|
|
15624
15664
|
cssCustomProperties?: Record<string, CssCustomPropertyItem>;
|
|
15625
15665
|
/** A reference to a help article for this element */
|
|
15626
15666
|
helpArticle?: HelpArticle;
|
|
15667
|
+
/**
|
|
15668
|
+
* A description of this inline element
|
|
15669
|
+
* @maxLength 300
|
|
15670
|
+
*/
|
|
15671
|
+
description?: string | null;
|
|
15627
15672
|
}
|
|
15628
15673
|
/** DEPRECATED: This message is deprecated and will be removed in the future, add new types and definitions in css_properties.proto */
|
|
15629
15674
|
interface StyleItem extends StyleItemSelectedItemTypeOneOf, StyleItemSelectedCssPropertyTypeOneOf, StyleItemSelectedCssVariableTypeOneOf {
|
|
@@ -16223,6 +16268,11 @@ interface Action {
|
|
|
16223
16268
|
displayName?: string;
|
|
16224
16269
|
/** A model definition for declaring a concrete instructions action will perform */
|
|
16225
16270
|
execution?: Execution;
|
|
16271
|
+
/**
|
|
16272
|
+
* A description of this action
|
|
16273
|
+
* @maxLength 300
|
|
16274
|
+
*/
|
|
16275
|
+
description?: string | null;
|
|
16226
16276
|
}
|
|
16227
16277
|
interface Execution extends ExecutionActionExecuteOneOf {
|
|
16228
16278
|
/** Executes an action that manipulates component's data */
|
|
@@ -16438,6 +16488,11 @@ interface DashboardAction {
|
|
|
16438
16488
|
dashboardPageId?: string;
|
|
16439
16489
|
/** A model definition for declaring a concrete instructions action will perform */
|
|
16440
16490
|
execution?: Execution;
|
|
16491
|
+
/**
|
|
16492
|
+
* A description of this dashboard action
|
|
16493
|
+
* @maxLength 300
|
|
16494
|
+
*/
|
|
16495
|
+
description?: string | null;
|
|
16441
16496
|
}
|
|
16442
16497
|
interface PresetItem {
|
|
16443
16498
|
/**
|
|
@@ -16470,6 +16525,11 @@ interface PresetItem {
|
|
|
16470
16525
|
presetCssUrl?: string | null;
|
|
16471
16526
|
/** All the default values that needs to be set when the preset is selected */
|
|
16472
16527
|
presetDefaults?: PresetElementDefaults;
|
|
16528
|
+
/**
|
|
16529
|
+
* A description of this preset
|
|
16530
|
+
* @maxLength 300
|
|
16531
|
+
*/
|
|
16532
|
+
description?: string | null;
|
|
16473
16533
|
}
|
|
16474
16534
|
interface ComponentInitialSize {
|
|
16475
16535
|
/** The component initial width setting */
|
|
@@ -16571,6 +16631,11 @@ interface PresetElementDefaults {
|
|
|
16571
16631
|
* The Preset is the second in line to affect the display, Element is before and State is after it
|
|
16572
16632
|
*/
|
|
16573
16633
|
displayFilters?: DisplayFilters;
|
|
16634
|
+
/**
|
|
16635
|
+
* A description of the element when this preset is selected
|
|
16636
|
+
* @maxLength 300
|
|
16637
|
+
*/
|
|
16638
|
+
description?: string | null;
|
|
16574
16639
|
}
|
|
16575
16640
|
interface CssPropertyItemDefaults {
|
|
16576
16641
|
/** The default value of this css-property-item */
|
|
@@ -16726,6 +16791,11 @@ interface ElementState {
|
|
|
16726
16791
|
displayFilters?: DisplayFilters;
|
|
16727
16792
|
/** The element that needs to be targeted when this state is applied */
|
|
16728
16793
|
target?: TargetElement;
|
|
16794
|
+
/**
|
|
16795
|
+
* A description of this state
|
|
16796
|
+
* @maxLength 300
|
|
16797
|
+
*/
|
|
16798
|
+
description?: string | null;
|
|
16729
16799
|
}
|
|
16730
16800
|
declare enum NativeStateType {
|
|
16731
16801
|
UNKNOWN_NativeStateType = "UNKNOWN_NativeStateType",
|
|
@@ -16822,6 +16892,11 @@ interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
|
|
|
16822
16892
|
displayName?: string | null;
|
|
16823
16893
|
/** The type of the group, used to determine the group that will be displayed in the editor */
|
|
16824
16894
|
groupType?: GroupTypeWithLiterals;
|
|
16895
|
+
/**
|
|
16896
|
+
* A description of this Group
|
|
16897
|
+
* @maxLength 300
|
|
16898
|
+
*/
|
|
16899
|
+
description?: string | null;
|
|
16825
16900
|
}
|
|
16826
16901
|
/** @oneof */
|
|
16827
16902
|
interface DisplayGroupItemSelectedGroupTypeOneOf {
|
|
@@ -17267,6 +17342,11 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
17267
17342
|
defaultValue?: any;
|
|
17268
17343
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17269
17344
|
statesDefaultValues?: Record<string, any>;
|
|
17345
|
+
/**
|
|
17346
|
+
* A description of this css-property-item
|
|
17347
|
+
* @maxLength 300
|
|
17348
|
+
*/
|
|
17349
|
+
description?: string | null;
|
|
17270
17350
|
}
|
|
17271
17351
|
/** @oneof */
|
|
17272
17352
|
interface CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
@@ -17352,6 +17432,11 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
17352
17432
|
defaultValue?: any;
|
|
17353
17433
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17354
17434
|
statesDefaultValues?: Record<string, any>;
|
|
17435
|
+
/**
|
|
17436
|
+
* A description of this css-custom-property-item
|
|
17437
|
+
* @maxLength 300
|
|
17438
|
+
*/
|
|
17439
|
+
description?: string | null;
|
|
17355
17440
|
}
|
|
17356
17441
|
/** @oneof */
|
|
17357
17442
|
interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
|
|
@@ -17544,6 +17629,11 @@ interface CustomPropertyEnumOption {
|
|
|
17544
17629
|
* @maxLength 100
|
|
17545
17630
|
*/
|
|
17546
17631
|
displayName?: string | null;
|
|
17632
|
+
/**
|
|
17633
|
+
* A description of this enum option
|
|
17634
|
+
* @maxLength 300
|
|
17635
|
+
*/
|
|
17636
|
+
description?: string | null;
|
|
17547
17637
|
}
|
|
17548
17638
|
interface CustomPropertyEnumOptionStyle {
|
|
17549
17639
|
/**
|
|
@@ -17618,6 +17708,11 @@ interface RefElement {
|
|
|
17618
17708
|
cssCustomProperties?: Record<string, CssPropertyItemDefinitionOverrides>;
|
|
17619
17709
|
/** A reference to a help article for this element */
|
|
17620
17710
|
helpArticle?: HelpArticle;
|
|
17711
|
+
/**
|
|
17712
|
+
* The override of the used element description
|
|
17713
|
+
* @maxLength 300
|
|
17714
|
+
*/
|
|
17715
|
+
description?: string | null;
|
|
17621
17716
|
}
|
|
17622
17717
|
interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
|
|
17623
17718
|
/** Overrides the definition of what images should be supported */
|
|
@@ -17637,6 +17732,11 @@ interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
|
|
|
17637
17732
|
displayName?: string | null;
|
|
17638
17733
|
/** Overrides the ability to delete this data-item value in the Editor UI */
|
|
17639
17734
|
disableDeletion?: boolean | null;
|
|
17735
|
+
/**
|
|
17736
|
+
* Overrides the description of this data-item
|
|
17737
|
+
* @maxLength 300
|
|
17738
|
+
*/
|
|
17739
|
+
description?: string | null;
|
|
17640
17740
|
}
|
|
17641
17741
|
/** @oneof */
|
|
17642
17742
|
interface DataItemOverridesSelectedDataTypeOneOf {
|
|
@@ -17681,6 +17781,11 @@ interface CssPropertyItemDefinitionOverrides {
|
|
|
17681
17781
|
defaultValue?: any;
|
|
17682
17782
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17683
17783
|
statesDefaultValues?: Record<string, any>;
|
|
17784
|
+
/**
|
|
17785
|
+
* A description of this css-property-item
|
|
17786
|
+
* @maxLength 300
|
|
17787
|
+
*/
|
|
17788
|
+
description?: string | null;
|
|
17684
17789
|
}
|
|
17685
17790
|
interface Interactions {
|
|
17686
17791
|
/** @maxSize 7 */
|