@wix/app-extensions 1.0.51 → 1.0.52
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.
|
@@ -18262,6 +18262,11 @@ interface EditorElement {
|
|
|
18262
18262
|
cssCustomProperties?: Record<string, CssCustomPropertyItem>;
|
|
18263
18263
|
/** A reference to a help article for this element */
|
|
18264
18264
|
helpArticle?: HelpArticle;
|
|
18265
|
+
/**
|
|
18266
|
+
* A description of the editor element
|
|
18267
|
+
* @maxLength 300
|
|
18268
|
+
*/
|
|
18269
|
+
description?: string | null;
|
|
18265
18270
|
}
|
|
18266
18271
|
/** @internal */
|
|
18267
18272
|
interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
@@ -18317,6 +18322,11 @@ interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
|
18317
18322
|
spec?: string | null;
|
|
18318
18323
|
/** Disables the ability to delete this data-item value in the Editor UI */
|
|
18319
18324
|
disableDeletion?: boolean | null;
|
|
18325
|
+
/**
|
|
18326
|
+
* A description of this data item
|
|
18327
|
+
* @maxLength 300
|
|
18328
|
+
*/
|
|
18329
|
+
description?: string | null;
|
|
18320
18330
|
}
|
|
18321
18331
|
/** @oneof */
|
|
18322
18332
|
/** @internal */
|
|
@@ -18459,6 +18469,11 @@ interface Option {
|
|
|
18459
18469
|
* @maxLength 100
|
|
18460
18470
|
*/
|
|
18461
18471
|
displayName?: string;
|
|
18472
|
+
/**
|
|
18473
|
+
* A description of this text item
|
|
18474
|
+
* @maxLength 300
|
|
18475
|
+
*/
|
|
18476
|
+
description?: string | null;
|
|
18462
18477
|
}
|
|
18463
18478
|
/** @internal */
|
|
18464
18479
|
interface _Number {
|
|
@@ -18676,6 +18691,11 @@ interface ReactElementContainer extends ReactElementContainerSelectedContainerTy
|
|
|
18676
18691
|
* @maxLength 50
|
|
18677
18692
|
*/
|
|
18678
18693
|
displayName?: string | null;
|
|
18694
|
+
/**
|
|
18695
|
+
* An optional override of the description of the container
|
|
18696
|
+
* @maxLength 300
|
|
18697
|
+
*/
|
|
18698
|
+
description?: string | null;
|
|
18679
18699
|
}
|
|
18680
18700
|
/** @oneof */
|
|
18681
18701
|
/** @internal */
|
|
@@ -19185,6 +19205,11 @@ interface InlineFilterItem {
|
|
|
19185
19205
|
* @maxSize 10
|
|
19186
19206
|
*/
|
|
19187
19207
|
customOperators?: CustomFilterOperator[];
|
|
19208
|
+
/**
|
|
19209
|
+
* A description of this filter field
|
|
19210
|
+
* @maxLength 300
|
|
19211
|
+
*/
|
|
19212
|
+
description?: string | null;
|
|
19188
19213
|
}
|
|
19189
19214
|
/** @internal */
|
|
19190
19215
|
declare enum FilterOperator {
|
|
@@ -19236,6 +19261,11 @@ interface CustomFilterOperator {
|
|
|
19236
19261
|
* @maxLength 100
|
|
19237
19262
|
*/
|
|
19238
19263
|
displayName?: string | null;
|
|
19264
|
+
/**
|
|
19265
|
+
* A description of this custom filter operator
|
|
19266
|
+
* @maxLength 300
|
|
19267
|
+
*/
|
|
19268
|
+
description?: string | null;
|
|
19239
19269
|
}
|
|
19240
19270
|
/** A filter item referencing an existing item (e.g. DataItem or ContextItem) */
|
|
19241
19271
|
/** @internal */
|
|
@@ -19283,6 +19313,11 @@ interface InlineSortItem {
|
|
|
19283
19313
|
* @maxLength 100
|
|
19284
19314
|
*/
|
|
19285
19315
|
descendingDisplayName?: string | null;
|
|
19316
|
+
/**
|
|
19317
|
+
* A description of this sort field
|
|
19318
|
+
* @maxLength 300
|
|
19319
|
+
*/
|
|
19320
|
+
description?: string | null;
|
|
19286
19321
|
}
|
|
19287
19322
|
/**
|
|
19288
19323
|
* A sort item referencing an existing item (e.g. DataItem or ContextItem),
|
|
@@ -19338,6 +19373,11 @@ interface ContextItem extends ContextItemSelectedDataTypeOneOf {
|
|
|
19338
19373
|
* @maxLength 42
|
|
19339
19374
|
*/
|
|
19340
19375
|
spec?: string | null;
|
|
19376
|
+
/**
|
|
19377
|
+
* A description of the context item for user facing and AI usage
|
|
19378
|
+
* @maxLength 300
|
|
19379
|
+
*/
|
|
19380
|
+
description?: string | null;
|
|
19341
19381
|
}
|
|
19342
19382
|
/** @oneof */
|
|
19343
19383
|
/** @internal */
|
|
@@ -19469,6 +19509,11 @@ interface InlineElement {
|
|
|
19469
19509
|
cssCustomProperties?: Record<string, CssCustomPropertyItem>;
|
|
19470
19510
|
/** A reference to a help article for this element */
|
|
19471
19511
|
helpArticle?: HelpArticle;
|
|
19512
|
+
/**
|
|
19513
|
+
* A description of this inline element
|
|
19514
|
+
* @maxLength 300
|
|
19515
|
+
*/
|
|
19516
|
+
description?: string | null;
|
|
19472
19517
|
}
|
|
19473
19518
|
/** DEPRECATED: This message is deprecated and will be removed in the future, add new types and definitions in css_properties.proto */
|
|
19474
19519
|
/** @internal */
|
|
@@ -20117,6 +20162,11 @@ interface Action {
|
|
|
20117
20162
|
displayName?: string;
|
|
20118
20163
|
/** A model definition for declaring a concrete instructions action will perform */
|
|
20119
20164
|
execution?: Execution;
|
|
20165
|
+
/**
|
|
20166
|
+
* A description of this action
|
|
20167
|
+
* @maxLength 300
|
|
20168
|
+
*/
|
|
20169
|
+
description?: string | null;
|
|
20120
20170
|
}
|
|
20121
20171
|
/** @internal */
|
|
20122
20172
|
interface Execution extends ExecutionActionExecuteOneOf {
|
|
@@ -20362,6 +20412,11 @@ interface DashboardAction {
|
|
|
20362
20412
|
dashboardPageId?: string;
|
|
20363
20413
|
/** A model definition for declaring a concrete instructions action will perform */
|
|
20364
20414
|
execution?: Execution;
|
|
20415
|
+
/**
|
|
20416
|
+
* A description of this dashboard action
|
|
20417
|
+
* @maxLength 300
|
|
20418
|
+
*/
|
|
20419
|
+
description?: string | null;
|
|
20365
20420
|
}
|
|
20366
20421
|
/** @internal */
|
|
20367
20422
|
interface PresetItem {
|
|
@@ -20401,6 +20456,11 @@ interface PresetItem {
|
|
|
20401
20456
|
* @maxLength 42
|
|
20402
20457
|
*/
|
|
20403
20458
|
spec?: string | null;
|
|
20459
|
+
/**
|
|
20460
|
+
* A description of this preset
|
|
20461
|
+
* @maxLength 300
|
|
20462
|
+
*/
|
|
20463
|
+
description?: string | null;
|
|
20404
20464
|
}
|
|
20405
20465
|
/** @internal */
|
|
20406
20466
|
interface ComponentInitialSize {
|
|
@@ -20514,6 +20574,11 @@ interface PresetElementDefaults {
|
|
|
20514
20574
|
* The Preset is the second in line to affect the display, Element is before and State is after it
|
|
20515
20575
|
*/
|
|
20516
20576
|
displayFilters?: DisplayFilters;
|
|
20577
|
+
/**
|
|
20578
|
+
* A description of the element when this preset is selected
|
|
20579
|
+
* @maxLength 300
|
|
20580
|
+
*/
|
|
20581
|
+
description?: string | null;
|
|
20517
20582
|
}
|
|
20518
20583
|
/** @internal */
|
|
20519
20584
|
interface CssPropertyItemDefaults {
|
|
@@ -20678,6 +20743,11 @@ interface ElementState {
|
|
|
20678
20743
|
displayFilters?: DisplayFilters;
|
|
20679
20744
|
/** The element that needs to be targeted when this state is applied */
|
|
20680
20745
|
target?: TargetElement;
|
|
20746
|
+
/**
|
|
20747
|
+
* A description of this state
|
|
20748
|
+
* @maxLength 300
|
|
20749
|
+
*/
|
|
20750
|
+
description?: string | null;
|
|
20681
20751
|
}
|
|
20682
20752
|
/** @internal */
|
|
20683
20753
|
declare enum NativeStateType {
|
|
@@ -20779,6 +20849,11 @@ interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
|
|
|
20779
20849
|
displayName?: string | null;
|
|
20780
20850
|
/** The type of the group, used to determine the group that will be displayed in the editor */
|
|
20781
20851
|
groupType?: GroupTypeWithLiterals;
|
|
20852
|
+
/**
|
|
20853
|
+
* A description of this Group
|
|
20854
|
+
* @maxLength 300
|
|
20855
|
+
*/
|
|
20856
|
+
description?: string | null;
|
|
20782
20857
|
}
|
|
20783
20858
|
/** @oneof */
|
|
20784
20859
|
/** @internal */
|
|
@@ -21244,6 +21319,11 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
21244
21319
|
* @internal
|
|
21245
21320
|
*/
|
|
21246
21321
|
deprecated?: boolean | null;
|
|
21322
|
+
/**
|
|
21323
|
+
* A description of this css-property-item
|
|
21324
|
+
* @maxLength 300
|
|
21325
|
+
*/
|
|
21326
|
+
description?: string | null;
|
|
21247
21327
|
/**
|
|
21248
21328
|
* Internal experiment spec definition to define if this message is not deleted, used by centralized conduction, limited to 5 per component. If the experiment value will be false, whole node is deleted. Applied in Editor and AI flows only. Spec names must begin with the scope prefix sp.erc. (e.g. sp.erc.{yourExperimentName}).
|
|
21249
21329
|
* @internal
|
|
@@ -21346,6 +21426,11 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
21346
21426
|
defaultValue?: any;
|
|
21347
21427
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
21348
21428
|
statesDefaultValues?: Record<string, any>;
|
|
21429
|
+
/**
|
|
21430
|
+
* A description of this css-custom-property-item
|
|
21431
|
+
* @maxLength 300
|
|
21432
|
+
*/
|
|
21433
|
+
description?: string | null;
|
|
21349
21434
|
/**
|
|
21350
21435
|
* Internal experiment spec definition to define if this message is not deleted, used by centralized conduction, limited to 5 per component. If the experiment value will be false, whole node is deleted. Applied in Editor and AI flows only. Spec names must begin with the scope prefix sp.erc. (e.g. sp.erc.{yourExperimentName}).
|
|
21351
21436
|
* @internal
|
|
@@ -21555,6 +21640,11 @@ interface CustomPropertyEnumOption {
|
|
|
21555
21640
|
* @maxSize 100
|
|
21556
21641
|
*/
|
|
21557
21642
|
appliedStyles?: CustomPropertyEnumOptionStyle[];
|
|
21643
|
+
/**
|
|
21644
|
+
* A description of this enum option
|
|
21645
|
+
* @maxLength 300
|
|
21646
|
+
*/
|
|
21647
|
+
description?: string | null;
|
|
21558
21648
|
}
|
|
21559
21649
|
/** @internal */
|
|
21560
21650
|
interface CustomPropertyEnumOptionStyle {
|
|
@@ -21650,6 +21740,11 @@ interface RefElement {
|
|
|
21650
21740
|
cssCustomProperties?: Record<string, CssPropertyItemDefinitionOverrides>;
|
|
21651
21741
|
/** A reference to a help article for this element */
|
|
21652
21742
|
helpArticle?: HelpArticle;
|
|
21743
|
+
/**
|
|
21744
|
+
* The override of the used element description
|
|
21745
|
+
* @maxLength 300
|
|
21746
|
+
*/
|
|
21747
|
+
description?: string | null;
|
|
21653
21748
|
}
|
|
21654
21749
|
/** @internal */
|
|
21655
21750
|
interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
|
|
@@ -21670,6 +21765,11 @@ interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
|
|
|
21670
21765
|
displayName?: string | null;
|
|
21671
21766
|
/** Overrides the ability to delete this data-item value in the Editor UI */
|
|
21672
21767
|
disableDeletion?: boolean | null;
|
|
21768
|
+
/**
|
|
21769
|
+
* Overrides the description of this data-item
|
|
21770
|
+
* @maxLength 300
|
|
21771
|
+
*/
|
|
21772
|
+
description?: string | null;
|
|
21673
21773
|
}
|
|
21674
21774
|
/** @oneof */
|
|
21675
21775
|
/** @internal */
|
|
@@ -21720,6 +21820,11 @@ interface CssPropertyItemDefinitionOverrides {
|
|
|
21720
21820
|
defaultValue?: any;
|
|
21721
21821
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
21722
21822
|
statesDefaultValues?: Record<string, any>;
|
|
21823
|
+
/**
|
|
21824
|
+
* A description of this css-property-item
|
|
21825
|
+
* @maxLength 300
|
|
21826
|
+
*/
|
|
21827
|
+
description?: string | null;
|
|
21723
21828
|
}
|
|
21724
21829
|
/** @internal */
|
|
21725
21830
|
interface Interactions {
|