@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
|
@@ -14540,6 +14540,11 @@ interface EditorElement {
|
|
|
14540
14540
|
cssCustomProperties?: Record<string, CssCustomPropertyItem>;
|
|
14541
14541
|
/** A reference to a help article for this element */
|
|
14542
14542
|
helpArticle?: HelpArticle;
|
|
14543
|
+
/**
|
|
14544
|
+
* A description of the editor element
|
|
14545
|
+
* @maxLength 300
|
|
14546
|
+
*/
|
|
14547
|
+
description?: string | null;
|
|
14543
14548
|
}
|
|
14544
14549
|
interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
14545
14550
|
/** An optional object to define limitations on the text input */
|
|
@@ -14583,6 +14588,11 @@ interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
|
14583
14588
|
defaultValue?: any;
|
|
14584
14589
|
/** Disables the ability to delete this data-item value in the Editor UI */
|
|
14585
14590
|
disableDeletion?: boolean | null;
|
|
14591
|
+
/**
|
|
14592
|
+
* A description of this data item
|
|
14593
|
+
* @maxLength 300
|
|
14594
|
+
*/
|
|
14595
|
+
description?: string | null;
|
|
14586
14596
|
}
|
|
14587
14597
|
/** @oneof */
|
|
14588
14598
|
interface DataItemSelectedDataTypeOneOf {
|
|
@@ -14719,6 +14729,11 @@ interface Option {
|
|
|
14719
14729
|
* @maxLength 100
|
|
14720
14730
|
*/
|
|
14721
14731
|
displayName?: string;
|
|
14732
|
+
/**
|
|
14733
|
+
* A description of this text item
|
|
14734
|
+
* @maxLength 300
|
|
14735
|
+
*/
|
|
14736
|
+
description?: string | null;
|
|
14722
14737
|
}
|
|
14723
14738
|
interface _Number {
|
|
14724
14739
|
/**
|
|
@@ -14925,6 +14940,11 @@ interface ReactElementContainer extends ReactElementContainerSelectedContainerTy
|
|
|
14925
14940
|
* @maxLength 50
|
|
14926
14941
|
*/
|
|
14927
14942
|
displayName?: string | null;
|
|
14943
|
+
/**
|
|
14944
|
+
* An optional override of the description of the container
|
|
14945
|
+
* @maxLength 300
|
|
14946
|
+
*/
|
|
14947
|
+
description?: string | null;
|
|
14928
14948
|
}
|
|
14929
14949
|
/** @oneof */
|
|
14930
14950
|
interface ReactElementContainerSelectedContainerTypeOneOf {
|
|
@@ -15374,6 +15394,11 @@ interface InlineFilterItem {
|
|
|
15374
15394
|
* @maxSize 10
|
|
15375
15395
|
*/
|
|
15376
15396
|
customOperators?: CustomFilterOperator[];
|
|
15397
|
+
/**
|
|
15398
|
+
* A description of this filter field
|
|
15399
|
+
* @maxLength 300
|
|
15400
|
+
*/
|
|
15401
|
+
description?: string | null;
|
|
15377
15402
|
}
|
|
15378
15403
|
declare enum FilterOperator {
|
|
15379
15404
|
UNKNOWN_FilterOperator = "UNKNOWN_FilterOperator",
|
|
@@ -15422,6 +15447,11 @@ interface CustomFilterOperator {
|
|
|
15422
15447
|
* @maxLength 100
|
|
15423
15448
|
*/
|
|
15424
15449
|
displayName?: string | null;
|
|
15450
|
+
/**
|
|
15451
|
+
* A description of this custom filter operator
|
|
15452
|
+
* @maxLength 300
|
|
15453
|
+
*/
|
|
15454
|
+
description?: string | null;
|
|
15425
15455
|
}
|
|
15426
15456
|
/** A filter item referencing an existing item (e.g. DataItem or ContextItem) */
|
|
15427
15457
|
interface FilterItem {
|
|
@@ -15466,6 +15496,11 @@ interface InlineSortItem {
|
|
|
15466
15496
|
* @maxLength 100
|
|
15467
15497
|
*/
|
|
15468
15498
|
descendingDisplayName?: string | null;
|
|
15499
|
+
/**
|
|
15500
|
+
* A description of this sort field
|
|
15501
|
+
* @maxLength 300
|
|
15502
|
+
*/
|
|
15503
|
+
description?: string | null;
|
|
15469
15504
|
}
|
|
15470
15505
|
/**
|
|
15471
15506
|
* A sort item referencing an existing item (e.g. DataItem or ContextItem),
|
|
@@ -15507,6 +15542,11 @@ interface ContextItem extends ContextItemSelectedDataTypeOneOf {
|
|
|
15507
15542
|
displayName?: string | null;
|
|
15508
15543
|
/** For sub types that implement parts of context, points to a context provider component type */
|
|
15509
15544
|
contextImplementor?: ContextImplementor;
|
|
15545
|
+
/**
|
|
15546
|
+
* A description of the context item for user facing and AI usage
|
|
15547
|
+
* @maxLength 300
|
|
15548
|
+
*/
|
|
15549
|
+
description?: string | null;
|
|
15510
15550
|
}
|
|
15511
15551
|
/** @oneof */
|
|
15512
15552
|
interface ContextItemSelectedDataTypeOneOf {
|
|
@@ -15617,6 +15657,11 @@ interface InlineElement {
|
|
|
15617
15657
|
cssCustomProperties?: Record<string, CssCustomPropertyItem>;
|
|
15618
15658
|
/** A reference to a help article for this element */
|
|
15619
15659
|
helpArticle?: HelpArticle;
|
|
15660
|
+
/**
|
|
15661
|
+
* A description of this inline element
|
|
15662
|
+
* @maxLength 300
|
|
15663
|
+
*/
|
|
15664
|
+
description?: string | null;
|
|
15620
15665
|
}
|
|
15621
15666
|
/** DEPRECATED: This message is deprecated and will be removed in the future, add new types and definitions in css_properties.proto */
|
|
15622
15667
|
interface StyleItem extends StyleItemSelectedItemTypeOneOf, StyleItemSelectedCssPropertyTypeOneOf, StyleItemSelectedCssVariableTypeOneOf {
|
|
@@ -16216,6 +16261,11 @@ interface Action {
|
|
|
16216
16261
|
displayName?: string;
|
|
16217
16262
|
/** A model definition for declaring a concrete instructions action will perform */
|
|
16218
16263
|
execution?: Execution;
|
|
16264
|
+
/**
|
|
16265
|
+
* A description of this action
|
|
16266
|
+
* @maxLength 300
|
|
16267
|
+
*/
|
|
16268
|
+
description?: string | null;
|
|
16219
16269
|
}
|
|
16220
16270
|
interface Execution extends ExecutionActionExecuteOneOf {
|
|
16221
16271
|
/** Executes an action that manipulates component's data */
|
|
@@ -16431,6 +16481,11 @@ interface DashboardAction {
|
|
|
16431
16481
|
dashboardPageId?: string;
|
|
16432
16482
|
/** A model definition for declaring a concrete instructions action will perform */
|
|
16433
16483
|
execution?: Execution;
|
|
16484
|
+
/**
|
|
16485
|
+
* A description of this dashboard action
|
|
16486
|
+
* @maxLength 300
|
|
16487
|
+
*/
|
|
16488
|
+
description?: string | null;
|
|
16434
16489
|
}
|
|
16435
16490
|
interface PresetItem {
|
|
16436
16491
|
/**
|
|
@@ -16463,6 +16518,11 @@ interface PresetItem {
|
|
|
16463
16518
|
presetCssUrl?: string | null;
|
|
16464
16519
|
/** All the default values that needs to be set when the preset is selected */
|
|
16465
16520
|
presetDefaults?: PresetElementDefaults;
|
|
16521
|
+
/**
|
|
16522
|
+
* A description of this preset
|
|
16523
|
+
* @maxLength 300
|
|
16524
|
+
*/
|
|
16525
|
+
description?: string | null;
|
|
16466
16526
|
}
|
|
16467
16527
|
interface ComponentInitialSize {
|
|
16468
16528
|
/** The component initial width setting */
|
|
@@ -16564,6 +16624,11 @@ interface PresetElementDefaults {
|
|
|
16564
16624
|
* The Preset is the second in line to affect the display, Element is before and State is after it
|
|
16565
16625
|
*/
|
|
16566
16626
|
displayFilters?: DisplayFilters;
|
|
16627
|
+
/**
|
|
16628
|
+
* A description of the element when this preset is selected
|
|
16629
|
+
* @maxLength 300
|
|
16630
|
+
*/
|
|
16631
|
+
description?: string | null;
|
|
16567
16632
|
}
|
|
16568
16633
|
interface CssPropertyItemDefaults {
|
|
16569
16634
|
/** The default value of this css-property-item */
|
|
@@ -16719,6 +16784,11 @@ interface ElementState {
|
|
|
16719
16784
|
displayFilters?: DisplayFilters;
|
|
16720
16785
|
/** The element that needs to be targeted when this state is applied */
|
|
16721
16786
|
target?: TargetElement;
|
|
16787
|
+
/**
|
|
16788
|
+
* A description of this state
|
|
16789
|
+
* @maxLength 300
|
|
16790
|
+
*/
|
|
16791
|
+
description?: string | null;
|
|
16722
16792
|
}
|
|
16723
16793
|
declare enum NativeStateType {
|
|
16724
16794
|
UNKNOWN_NativeStateType = "UNKNOWN_NativeStateType",
|
|
@@ -16815,6 +16885,11 @@ interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
|
|
|
16815
16885
|
displayName?: string | null;
|
|
16816
16886
|
/** The type of the group, used to determine the group that will be displayed in the editor */
|
|
16817
16887
|
groupType?: GroupTypeWithLiterals;
|
|
16888
|
+
/**
|
|
16889
|
+
* A description of this Group
|
|
16890
|
+
* @maxLength 300
|
|
16891
|
+
*/
|
|
16892
|
+
description?: string | null;
|
|
16818
16893
|
}
|
|
16819
16894
|
/** @oneof */
|
|
16820
16895
|
interface DisplayGroupItemSelectedGroupTypeOneOf {
|
|
@@ -17260,6 +17335,11 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
17260
17335
|
defaultValue?: any;
|
|
17261
17336
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17262
17337
|
statesDefaultValues?: Record<string, any>;
|
|
17338
|
+
/**
|
|
17339
|
+
* A description of this css-property-item
|
|
17340
|
+
* @maxLength 300
|
|
17341
|
+
*/
|
|
17342
|
+
description?: string | null;
|
|
17263
17343
|
}
|
|
17264
17344
|
/** @oneof */
|
|
17265
17345
|
interface CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
@@ -17345,6 +17425,11 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
17345
17425
|
defaultValue?: any;
|
|
17346
17426
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17347
17427
|
statesDefaultValues?: Record<string, any>;
|
|
17428
|
+
/**
|
|
17429
|
+
* A description of this css-custom-property-item
|
|
17430
|
+
* @maxLength 300
|
|
17431
|
+
*/
|
|
17432
|
+
description?: string | null;
|
|
17348
17433
|
}
|
|
17349
17434
|
/** @oneof */
|
|
17350
17435
|
interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
|
|
@@ -17537,6 +17622,11 @@ interface CustomPropertyEnumOption {
|
|
|
17537
17622
|
* @maxLength 100
|
|
17538
17623
|
*/
|
|
17539
17624
|
displayName?: string | null;
|
|
17625
|
+
/**
|
|
17626
|
+
* A description of this enum option
|
|
17627
|
+
* @maxLength 300
|
|
17628
|
+
*/
|
|
17629
|
+
description?: string | null;
|
|
17540
17630
|
}
|
|
17541
17631
|
interface CustomPropertyEnumOptionStyle {
|
|
17542
17632
|
/**
|
|
@@ -17611,6 +17701,11 @@ interface RefElement {
|
|
|
17611
17701
|
cssCustomProperties?: Record<string, CssPropertyItemDefinitionOverrides>;
|
|
17612
17702
|
/** A reference to a help article for this element */
|
|
17613
17703
|
helpArticle?: HelpArticle;
|
|
17704
|
+
/**
|
|
17705
|
+
* The override of the used element description
|
|
17706
|
+
* @maxLength 300
|
|
17707
|
+
*/
|
|
17708
|
+
description?: string | null;
|
|
17614
17709
|
}
|
|
17615
17710
|
interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
|
|
17616
17711
|
/** Overrides the definition of what images should be supported */
|
|
@@ -17630,6 +17725,11 @@ interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
|
|
|
17630
17725
|
displayName?: string | null;
|
|
17631
17726
|
/** Overrides the ability to delete this data-item value in the Editor UI */
|
|
17632
17727
|
disableDeletion?: boolean | null;
|
|
17728
|
+
/**
|
|
17729
|
+
* Overrides the description of this data-item
|
|
17730
|
+
* @maxLength 300
|
|
17731
|
+
*/
|
|
17732
|
+
description?: string | null;
|
|
17633
17733
|
}
|
|
17634
17734
|
/** @oneof */
|
|
17635
17735
|
interface DataItemOverridesSelectedDataTypeOneOf {
|
|
@@ -17674,6 +17774,11 @@ interface CssPropertyItemDefinitionOverrides {
|
|
|
17674
17774
|
defaultValue?: any;
|
|
17675
17775
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17676
17776
|
statesDefaultValues?: Record<string, any>;
|
|
17777
|
+
/**
|
|
17778
|
+
* A description of this css-property-item
|
|
17779
|
+
* @maxLength 300
|
|
17780
|
+
*/
|
|
17781
|
+
description?: string | null;
|
|
17677
17782
|
}
|
|
17678
17783
|
interface Interactions {
|
|
17679
17784
|
/** @maxSize 7 */
|