@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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -14566,6 +14566,11 @@ interface EditorElement {
|
|
|
14566
14566
|
cssCustomProperties?: Record<string, CssCustomPropertyItem>;
|
|
14567
14567
|
/** A reference to a help article for this element */
|
|
14568
14568
|
helpArticle?: HelpArticle;
|
|
14569
|
+
/**
|
|
14570
|
+
* A description of the editor element
|
|
14571
|
+
* @maxLength 300
|
|
14572
|
+
*/
|
|
14573
|
+
description?: string | null;
|
|
14569
14574
|
}
|
|
14570
14575
|
interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
14571
14576
|
/** An optional object to define limitations on the text input */
|
|
@@ -14609,6 +14614,11 @@ interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
|
14609
14614
|
defaultValue?: any;
|
|
14610
14615
|
/** Disables the ability to delete this data-item value in the Editor UI */
|
|
14611
14616
|
disableDeletion?: boolean | null;
|
|
14617
|
+
/**
|
|
14618
|
+
* A description of this data item
|
|
14619
|
+
* @maxLength 300
|
|
14620
|
+
*/
|
|
14621
|
+
description?: string | null;
|
|
14612
14622
|
}
|
|
14613
14623
|
/** @oneof */
|
|
14614
14624
|
interface DataItemSelectedDataTypeOneOf {
|
|
@@ -14745,6 +14755,11 @@ interface Option {
|
|
|
14745
14755
|
* @maxLength 100
|
|
14746
14756
|
*/
|
|
14747
14757
|
displayName?: string;
|
|
14758
|
+
/**
|
|
14759
|
+
* A description of this text item
|
|
14760
|
+
* @maxLength 300
|
|
14761
|
+
*/
|
|
14762
|
+
description?: string | null;
|
|
14748
14763
|
}
|
|
14749
14764
|
interface _Number {
|
|
14750
14765
|
/**
|
|
@@ -14951,6 +14966,11 @@ interface ReactElementContainer extends ReactElementContainerSelectedContainerTy
|
|
|
14951
14966
|
* @maxLength 50
|
|
14952
14967
|
*/
|
|
14953
14968
|
displayName?: string | null;
|
|
14969
|
+
/**
|
|
14970
|
+
* An optional override of the description of the container
|
|
14971
|
+
* @maxLength 300
|
|
14972
|
+
*/
|
|
14973
|
+
description?: string | null;
|
|
14954
14974
|
}
|
|
14955
14975
|
/** @oneof */
|
|
14956
14976
|
interface ReactElementContainerSelectedContainerTypeOneOf {
|
|
@@ -15400,6 +15420,11 @@ interface InlineFilterItem {
|
|
|
15400
15420
|
* @maxSize 10
|
|
15401
15421
|
*/
|
|
15402
15422
|
customOperators?: CustomFilterOperator[];
|
|
15423
|
+
/**
|
|
15424
|
+
* A description of this filter field
|
|
15425
|
+
* @maxLength 300
|
|
15426
|
+
*/
|
|
15427
|
+
description?: string | null;
|
|
15403
15428
|
}
|
|
15404
15429
|
declare enum FilterOperator {
|
|
15405
15430
|
UNKNOWN_FilterOperator = "UNKNOWN_FilterOperator",
|
|
@@ -15448,6 +15473,11 @@ interface CustomFilterOperator {
|
|
|
15448
15473
|
* @maxLength 100
|
|
15449
15474
|
*/
|
|
15450
15475
|
displayName?: string | null;
|
|
15476
|
+
/**
|
|
15477
|
+
* A description of this custom filter operator
|
|
15478
|
+
* @maxLength 300
|
|
15479
|
+
*/
|
|
15480
|
+
description?: string | null;
|
|
15451
15481
|
}
|
|
15452
15482
|
/** A filter item referencing an existing item (e.g. DataItem or ContextItem) */
|
|
15453
15483
|
interface FilterItem {
|
|
@@ -15492,6 +15522,11 @@ interface InlineSortItem {
|
|
|
15492
15522
|
* @maxLength 100
|
|
15493
15523
|
*/
|
|
15494
15524
|
descendingDisplayName?: string | null;
|
|
15525
|
+
/**
|
|
15526
|
+
* A description of this sort field
|
|
15527
|
+
* @maxLength 300
|
|
15528
|
+
*/
|
|
15529
|
+
description?: string | null;
|
|
15495
15530
|
}
|
|
15496
15531
|
/**
|
|
15497
15532
|
* A sort item referencing an existing item (e.g. DataItem or ContextItem),
|
|
@@ -15533,6 +15568,11 @@ interface ContextItem extends ContextItemSelectedDataTypeOneOf {
|
|
|
15533
15568
|
displayName?: string | null;
|
|
15534
15569
|
/** For sub types that implement parts of context, points to a context provider component type */
|
|
15535
15570
|
contextImplementor?: ContextImplementor;
|
|
15571
|
+
/**
|
|
15572
|
+
* A description of the context item for user facing and AI usage
|
|
15573
|
+
* @maxLength 300
|
|
15574
|
+
*/
|
|
15575
|
+
description?: string | null;
|
|
15536
15576
|
}
|
|
15537
15577
|
/** @oneof */
|
|
15538
15578
|
interface ContextItemSelectedDataTypeOneOf {
|
|
@@ -15643,6 +15683,11 @@ interface InlineElement {
|
|
|
15643
15683
|
cssCustomProperties?: Record<string, CssCustomPropertyItem>;
|
|
15644
15684
|
/** A reference to a help article for this element */
|
|
15645
15685
|
helpArticle?: HelpArticle;
|
|
15686
|
+
/**
|
|
15687
|
+
* A description of this inline element
|
|
15688
|
+
* @maxLength 300
|
|
15689
|
+
*/
|
|
15690
|
+
description?: string | null;
|
|
15646
15691
|
}
|
|
15647
15692
|
/** DEPRECATED: This message is deprecated and will be removed in the future, add new types and definitions in css_properties.proto */
|
|
15648
15693
|
interface StyleItem extends StyleItemSelectedItemTypeOneOf, StyleItemSelectedCssPropertyTypeOneOf, StyleItemSelectedCssVariableTypeOneOf {
|
|
@@ -16242,6 +16287,11 @@ interface Action {
|
|
|
16242
16287
|
displayName?: string;
|
|
16243
16288
|
/** A model definition for declaring a concrete instructions action will perform */
|
|
16244
16289
|
execution?: Execution;
|
|
16290
|
+
/**
|
|
16291
|
+
* A description of this action
|
|
16292
|
+
* @maxLength 300
|
|
16293
|
+
*/
|
|
16294
|
+
description?: string | null;
|
|
16245
16295
|
}
|
|
16246
16296
|
interface Execution extends ExecutionActionExecuteOneOf {
|
|
16247
16297
|
/** Executes an action that manipulates component's data */
|
|
@@ -16457,6 +16507,11 @@ interface DashboardAction {
|
|
|
16457
16507
|
dashboardPageId?: string;
|
|
16458
16508
|
/** A model definition for declaring a concrete instructions action will perform */
|
|
16459
16509
|
execution?: Execution;
|
|
16510
|
+
/**
|
|
16511
|
+
* A description of this dashboard action
|
|
16512
|
+
* @maxLength 300
|
|
16513
|
+
*/
|
|
16514
|
+
description?: string | null;
|
|
16460
16515
|
}
|
|
16461
16516
|
interface PresetItem {
|
|
16462
16517
|
/**
|
|
@@ -16489,6 +16544,11 @@ interface PresetItem {
|
|
|
16489
16544
|
presetCssUrl?: string | null;
|
|
16490
16545
|
/** All the default values that needs to be set when the preset is selected */
|
|
16491
16546
|
presetDefaults?: PresetElementDefaults;
|
|
16547
|
+
/**
|
|
16548
|
+
* A description of this preset
|
|
16549
|
+
* @maxLength 300
|
|
16550
|
+
*/
|
|
16551
|
+
description?: string | null;
|
|
16492
16552
|
}
|
|
16493
16553
|
interface ComponentInitialSize {
|
|
16494
16554
|
/** The component initial width setting */
|
|
@@ -16590,6 +16650,11 @@ interface PresetElementDefaults {
|
|
|
16590
16650
|
* The Preset is the second in line to affect the display, Element is before and State is after it
|
|
16591
16651
|
*/
|
|
16592
16652
|
displayFilters?: DisplayFilters;
|
|
16653
|
+
/**
|
|
16654
|
+
* A description of the element when this preset is selected
|
|
16655
|
+
* @maxLength 300
|
|
16656
|
+
*/
|
|
16657
|
+
description?: string | null;
|
|
16593
16658
|
}
|
|
16594
16659
|
interface CssPropertyItemDefaults {
|
|
16595
16660
|
/** The default value of this css-property-item */
|
|
@@ -16745,6 +16810,11 @@ interface ElementState {
|
|
|
16745
16810
|
displayFilters?: DisplayFilters;
|
|
16746
16811
|
/** The element that needs to be targeted when this state is applied */
|
|
16747
16812
|
target?: TargetElement;
|
|
16813
|
+
/**
|
|
16814
|
+
* A description of this state
|
|
16815
|
+
* @maxLength 300
|
|
16816
|
+
*/
|
|
16817
|
+
description?: string | null;
|
|
16748
16818
|
}
|
|
16749
16819
|
declare enum NativeStateType {
|
|
16750
16820
|
UNKNOWN_NativeStateType = "UNKNOWN_NativeStateType",
|
|
@@ -16841,6 +16911,11 @@ interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
|
|
|
16841
16911
|
displayName?: string | null;
|
|
16842
16912
|
/** The type of the group, used to determine the group that will be displayed in the editor */
|
|
16843
16913
|
groupType?: GroupTypeWithLiterals;
|
|
16914
|
+
/**
|
|
16915
|
+
* A description of this Group
|
|
16916
|
+
* @maxLength 300
|
|
16917
|
+
*/
|
|
16918
|
+
description?: string | null;
|
|
16844
16919
|
}
|
|
16845
16920
|
/** @oneof */
|
|
16846
16921
|
interface DisplayGroupItemSelectedGroupTypeOneOf {
|
|
@@ -17286,6 +17361,11 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
17286
17361
|
defaultValue?: any;
|
|
17287
17362
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17288
17363
|
statesDefaultValues?: Record<string, any>;
|
|
17364
|
+
/**
|
|
17365
|
+
* A description of this css-property-item
|
|
17366
|
+
* @maxLength 300
|
|
17367
|
+
*/
|
|
17368
|
+
description?: string | null;
|
|
17289
17369
|
}
|
|
17290
17370
|
/** @oneof */
|
|
17291
17371
|
interface CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
@@ -17371,6 +17451,11 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
17371
17451
|
defaultValue?: any;
|
|
17372
17452
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17373
17453
|
statesDefaultValues?: Record<string, any>;
|
|
17454
|
+
/**
|
|
17455
|
+
* A description of this css-custom-property-item
|
|
17456
|
+
* @maxLength 300
|
|
17457
|
+
*/
|
|
17458
|
+
description?: string | null;
|
|
17374
17459
|
}
|
|
17375
17460
|
/** @oneof */
|
|
17376
17461
|
interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
|
|
@@ -17563,6 +17648,11 @@ interface CustomPropertyEnumOption {
|
|
|
17563
17648
|
* @maxLength 100
|
|
17564
17649
|
*/
|
|
17565
17650
|
displayName?: string | null;
|
|
17651
|
+
/**
|
|
17652
|
+
* A description of this enum option
|
|
17653
|
+
* @maxLength 300
|
|
17654
|
+
*/
|
|
17655
|
+
description?: string | null;
|
|
17566
17656
|
}
|
|
17567
17657
|
interface CustomPropertyEnumOptionStyle {
|
|
17568
17658
|
/**
|
|
@@ -17637,6 +17727,11 @@ interface RefElement {
|
|
|
17637
17727
|
cssCustomProperties?: Record<string, CssPropertyItemDefinitionOverrides>;
|
|
17638
17728
|
/** A reference to a help article for this element */
|
|
17639
17729
|
helpArticle?: HelpArticle;
|
|
17730
|
+
/**
|
|
17731
|
+
* The override of the used element description
|
|
17732
|
+
* @maxLength 300
|
|
17733
|
+
*/
|
|
17734
|
+
description?: string | null;
|
|
17640
17735
|
}
|
|
17641
17736
|
interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
|
|
17642
17737
|
/** Overrides the definition of what images should be supported */
|
|
@@ -17656,6 +17751,11 @@ interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
|
|
|
17656
17751
|
displayName?: string | null;
|
|
17657
17752
|
/** Overrides the ability to delete this data-item value in the Editor UI */
|
|
17658
17753
|
disableDeletion?: boolean | null;
|
|
17754
|
+
/**
|
|
17755
|
+
* Overrides the description of this data-item
|
|
17756
|
+
* @maxLength 300
|
|
17757
|
+
*/
|
|
17758
|
+
description?: string | null;
|
|
17659
17759
|
}
|
|
17660
17760
|
/** @oneof */
|
|
17661
17761
|
interface DataItemOverridesSelectedDataTypeOneOf {
|
|
@@ -17700,6 +17800,11 @@ interface CssPropertyItemDefinitionOverrides {
|
|
|
17700
17800
|
defaultValue?: any;
|
|
17701
17801
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17702
17802
|
statesDefaultValues?: Record<string, any>;
|
|
17803
|
+
/**
|
|
17804
|
+
* A description of this css-property-item
|
|
17805
|
+
* @maxLength 300
|
|
17806
|
+
*/
|
|
17807
|
+
description?: string | null;
|
|
17703
17808
|
}
|
|
17704
17809
|
interface Interactions {
|
|
17705
17810
|
/** @maxSize 7 */
|