@wix/app-extensions 1.0.51 → 1.0.53

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.
@@ -5776,11 +5776,13 @@ declare enum BackOfficeHostingPlatforms {
5776
5776
  /** Payments by Wix Back Office */
5777
5777
  PAYMENTS_BO = "PAYMENTS_BO",
5778
5778
  /** Symphony Giza host */
5779
- SYMPHONY = "SYMPHONY"
5779
+ SYMPHONY = "SYMPHONY",
5780
+ /** BMR Giza host */
5781
+ BMR = "BMR"
5780
5782
  }
5781
5783
  /** @enumType */
5782
5784
  /** @internal */
5783
- type BackOfficeHostingPlatformsWithLiterals = BackOfficeHostingPlatforms | 'NO_HOSTING_PLATFORM' | 'BUSINESS_MANAGER' | 'ACCOUNT_MANAGER' | 'DEV_CENTER' | 'ENTERPRISE' | 'PARTNERS_DASHBOARD' | 'FINANCIALS_INTERNAL_BO' | 'FED_GUILD_POC' | 'STUDIO_DASHBOARD' | 'CHANNELS' | 'DATA_TOOLS' | 'PSP_BACKOFFICE' | 'RISE_PLATFORM_ACCOUNT_DASHBOARD' | 'DEMO_DASHBOARD_ENTERPRISE' | 'AI_SCHEDULING_ASSISTANT_DASHBOARD' | 'GETTING_PAID' | 'DATA' | 'LITE_DASHBOARD' | 'PICASSO_EDITOR' | 'BASE44_DASHBOARD_POC' | 'WIXEL_EDITOR' | 'BASE44_PLATFORM' | 'PAYMENTS_BO' | 'SYMPHONY';
5785
+ type BackOfficeHostingPlatformsWithLiterals = BackOfficeHostingPlatforms | 'NO_HOSTING_PLATFORM' | 'BUSINESS_MANAGER' | 'ACCOUNT_MANAGER' | 'DEV_CENTER' | 'ENTERPRISE' | 'PARTNERS_DASHBOARD' | 'FINANCIALS_INTERNAL_BO' | 'FED_GUILD_POC' | 'STUDIO_DASHBOARD' | 'CHANNELS' | 'DATA_TOOLS' | 'PSP_BACKOFFICE' | 'RISE_PLATFORM_ACCOUNT_DASHBOARD' | 'DEMO_DASHBOARD_ENTERPRISE' | 'AI_SCHEDULING_ASSISTANT_DASHBOARD' | 'GETTING_PAID' | 'DATA' | 'LITE_DASHBOARD' | 'PICASSO_EDITOR' | 'BASE44_DASHBOARD_POC' | 'WIXEL_EDITOR' | 'BASE44_PLATFORM' | 'PAYMENTS_BO' | 'SYMPHONY' | 'BMR';
5784
5786
  /** Definitions of common slots properties */
5785
5787
  /** @internal */
5786
5788
  interface SlotData extends SlotDataSlotTypeOneOf {
@@ -18262,6 +18264,11 @@ interface EditorElement {
18262
18264
  cssCustomProperties?: Record<string, CssCustomPropertyItem>;
18263
18265
  /** A reference to a help article for this element */
18264
18266
  helpArticle?: HelpArticle;
18267
+ /**
18268
+ * A description of the editor element
18269
+ * @maxLength 300
18270
+ */
18271
+ description?: string | null;
18265
18272
  }
18266
18273
  /** @internal */
18267
18274
  interface DataItem extends DataItemSelectedDataTypeOneOf {
@@ -18317,6 +18324,11 @@ interface DataItem extends DataItemSelectedDataTypeOneOf {
18317
18324
  spec?: string | null;
18318
18325
  /** Disables the ability to delete this data-item value in the Editor UI */
18319
18326
  disableDeletion?: boolean | null;
18327
+ /**
18328
+ * A description of this data item
18329
+ * @maxLength 300
18330
+ */
18331
+ description?: string | null;
18320
18332
  }
18321
18333
  /** @oneof */
18322
18334
  /** @internal */
@@ -18459,6 +18471,11 @@ interface Option {
18459
18471
  * @maxLength 100
18460
18472
  */
18461
18473
  displayName?: string;
18474
+ /**
18475
+ * A description of this text item
18476
+ * @maxLength 300
18477
+ */
18478
+ description?: string | null;
18462
18479
  }
18463
18480
  /** @internal */
18464
18481
  interface _Number {
@@ -18676,6 +18693,11 @@ interface ReactElementContainer extends ReactElementContainerSelectedContainerTy
18676
18693
  * @maxLength 50
18677
18694
  */
18678
18695
  displayName?: string | null;
18696
+ /**
18697
+ * An optional override of the description of the container
18698
+ * @maxLength 300
18699
+ */
18700
+ description?: string | null;
18679
18701
  }
18680
18702
  /** @oneof */
18681
18703
  /** @internal */
@@ -19185,6 +19207,11 @@ interface InlineFilterItem {
19185
19207
  * @maxSize 10
19186
19208
  */
19187
19209
  customOperators?: CustomFilterOperator[];
19210
+ /**
19211
+ * A description of this filter field
19212
+ * @maxLength 300
19213
+ */
19214
+ description?: string | null;
19188
19215
  }
19189
19216
  /** @internal */
19190
19217
  declare enum FilterOperator {
@@ -19236,6 +19263,11 @@ interface CustomFilterOperator {
19236
19263
  * @maxLength 100
19237
19264
  */
19238
19265
  displayName?: string | null;
19266
+ /**
19267
+ * A description of this custom filter operator
19268
+ * @maxLength 300
19269
+ */
19270
+ description?: string | null;
19239
19271
  }
19240
19272
  /** A filter item referencing an existing item (e.g. DataItem or ContextItem) */
19241
19273
  /** @internal */
@@ -19283,6 +19315,11 @@ interface InlineSortItem {
19283
19315
  * @maxLength 100
19284
19316
  */
19285
19317
  descendingDisplayName?: string | null;
19318
+ /**
19319
+ * A description of this sort field
19320
+ * @maxLength 300
19321
+ */
19322
+ description?: string | null;
19286
19323
  }
19287
19324
  /**
19288
19325
  * A sort item referencing an existing item (e.g. DataItem or ContextItem),
@@ -19338,6 +19375,11 @@ interface ContextItem extends ContextItemSelectedDataTypeOneOf {
19338
19375
  * @maxLength 42
19339
19376
  */
19340
19377
  spec?: string | null;
19378
+ /**
19379
+ * A description of the context item for user facing and AI usage
19380
+ * @maxLength 300
19381
+ */
19382
+ description?: string | null;
19341
19383
  }
19342
19384
  /** @oneof */
19343
19385
  /** @internal */
@@ -19469,6 +19511,11 @@ interface InlineElement {
19469
19511
  cssCustomProperties?: Record<string, CssCustomPropertyItem>;
19470
19512
  /** A reference to a help article for this element */
19471
19513
  helpArticle?: HelpArticle;
19514
+ /**
19515
+ * A description of this inline element
19516
+ * @maxLength 300
19517
+ */
19518
+ description?: string | null;
19472
19519
  }
19473
19520
  /** DEPRECATED: This message is deprecated and will be removed in the future, add new types and definitions in css_properties.proto */
19474
19521
  /** @internal */
@@ -20117,6 +20164,11 @@ interface Action {
20117
20164
  displayName?: string;
20118
20165
  /** A model definition for declaring a concrete instructions action will perform */
20119
20166
  execution?: Execution;
20167
+ /**
20168
+ * A description of this action
20169
+ * @maxLength 300
20170
+ */
20171
+ description?: string | null;
20120
20172
  }
20121
20173
  /** @internal */
20122
20174
  interface Execution extends ExecutionActionExecuteOneOf {
@@ -20362,6 +20414,11 @@ interface DashboardAction {
20362
20414
  dashboardPageId?: string;
20363
20415
  /** A model definition for declaring a concrete instructions action will perform */
20364
20416
  execution?: Execution;
20417
+ /**
20418
+ * A description of this dashboard action
20419
+ * @maxLength 300
20420
+ */
20421
+ description?: string | null;
20365
20422
  }
20366
20423
  /** @internal */
20367
20424
  interface PresetItem {
@@ -20401,6 +20458,11 @@ interface PresetItem {
20401
20458
  * @maxLength 42
20402
20459
  */
20403
20460
  spec?: string | null;
20461
+ /**
20462
+ * A description of this preset
20463
+ * @maxLength 300
20464
+ */
20465
+ description?: string | null;
20404
20466
  }
20405
20467
  /** @internal */
20406
20468
  interface ComponentInitialSize {
@@ -20514,6 +20576,11 @@ interface PresetElementDefaults {
20514
20576
  * The Preset is the second in line to affect the display, Element is before and State is after it
20515
20577
  */
20516
20578
  displayFilters?: DisplayFilters;
20579
+ /**
20580
+ * A description of the element when this preset is selected
20581
+ * @maxLength 300
20582
+ */
20583
+ description?: string | null;
20517
20584
  }
20518
20585
  /** @internal */
20519
20586
  interface CssPropertyItemDefaults {
@@ -20678,6 +20745,11 @@ interface ElementState {
20678
20745
  displayFilters?: DisplayFilters;
20679
20746
  /** The element that needs to be targeted when this state is applied */
20680
20747
  target?: TargetElement;
20748
+ /**
20749
+ * A description of this state
20750
+ * @maxLength 300
20751
+ */
20752
+ description?: string | null;
20681
20753
  }
20682
20754
  /** @internal */
20683
20755
  declare enum NativeStateType {
@@ -20779,6 +20851,11 @@ interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
20779
20851
  displayName?: string | null;
20780
20852
  /** The type of the group, used to determine the group that will be displayed in the editor */
20781
20853
  groupType?: GroupTypeWithLiterals;
20854
+ /**
20855
+ * A description of this Group
20856
+ * @maxLength 300
20857
+ */
20858
+ description?: string | null;
20782
20859
  }
20783
20860
  /** @oneof */
20784
20861
  /** @internal */
@@ -21244,6 +21321,11 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
21244
21321
  * @internal
21245
21322
  */
21246
21323
  deprecated?: boolean | null;
21324
+ /**
21325
+ * A description of this css-property-item
21326
+ * @maxLength 300
21327
+ */
21328
+ description?: string | null;
21247
21329
  /**
21248
21330
  * 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
21331
  * @internal
@@ -21346,6 +21428,11 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
21346
21428
  defaultValue?: any;
21347
21429
  /** The default values for the css-property-item when the component is in one of the defined states */
21348
21430
  statesDefaultValues?: Record<string, any>;
21431
+ /**
21432
+ * A description of this css-custom-property-item
21433
+ * @maxLength 300
21434
+ */
21435
+ description?: string | null;
21349
21436
  /**
21350
21437
  * 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
21438
  * @internal
@@ -21555,6 +21642,11 @@ interface CustomPropertyEnumOption {
21555
21642
  * @maxSize 100
21556
21643
  */
21557
21644
  appliedStyles?: CustomPropertyEnumOptionStyle[];
21645
+ /**
21646
+ * A description of this enum option
21647
+ * @maxLength 300
21648
+ */
21649
+ description?: string | null;
21558
21650
  }
21559
21651
  /** @internal */
21560
21652
  interface CustomPropertyEnumOptionStyle {
@@ -21650,6 +21742,11 @@ interface RefElement {
21650
21742
  cssCustomProperties?: Record<string, CssPropertyItemDefinitionOverrides>;
21651
21743
  /** A reference to a help article for this element */
21652
21744
  helpArticle?: HelpArticle;
21745
+ /**
21746
+ * The override of the used element description
21747
+ * @maxLength 300
21748
+ */
21749
+ description?: string | null;
21653
21750
  }
21654
21751
  /** @internal */
21655
21752
  interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
@@ -21670,6 +21767,11 @@ interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
21670
21767
  displayName?: string | null;
21671
21768
  /** Overrides the ability to delete this data-item value in the Editor UI */
21672
21769
  disableDeletion?: boolean | null;
21770
+ /**
21771
+ * Overrides the description of this data-item
21772
+ * @maxLength 300
21773
+ */
21774
+ description?: string | null;
21673
21775
  }
21674
21776
  /** @oneof */
21675
21777
  /** @internal */
@@ -21720,6 +21822,11 @@ interface CssPropertyItemDefinitionOverrides {
21720
21822
  defaultValue?: any;
21721
21823
  /** The default values for the css-property-item when the component is in one of the defined states */
21722
21824
  statesDefaultValues?: Record<string, any>;
21825
+ /**
21826
+ * A description of this css-property-item
21827
+ * @maxLength 300
21828
+ */
21829
+ description?: string | null;
21723
21830
  }
21724
21831
  /** @internal */
21725
21832
  interface Interactions {
@@ -362,6 +362,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
362
362
  BackOfficeHostingPlatforms2["BASE44_PLATFORM"] = "BASE44_PLATFORM";
363
363
  BackOfficeHostingPlatforms2["PAYMENTS_BO"] = "PAYMENTS_BO";
364
364
  BackOfficeHostingPlatforms2["SYMPHONY"] = "SYMPHONY";
365
+ BackOfficeHostingPlatforms2["BMR"] = "BMR";
365
366
  return BackOfficeHostingPlatforms2;
366
367
  })(BackOfficeHostingPlatforms || {});
367
368
  var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {