@wix/auto_sdk_data-extension-schema_schemas 1.0.219 → 1.0.221
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 +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +109 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +109 -2
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +109 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +109 -2
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +109 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +109 -2
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +109 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +109 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3794,10 +3794,12 @@ declare enum BackOfficeHostingPlatforms {
|
|
|
3794
3794
|
/** Payments by Wix Back Office */
|
|
3795
3795
|
PAYMENTS_BO = "PAYMENTS_BO",
|
|
3796
3796
|
/** Symphony Giza host */
|
|
3797
|
-
SYMPHONY = "SYMPHONY"
|
|
3797
|
+
SYMPHONY = "SYMPHONY",
|
|
3798
|
+
/** BMR Giza host */
|
|
3799
|
+
BMR = "BMR"
|
|
3798
3800
|
}
|
|
3799
3801
|
/** @enumType */
|
|
3800
|
-
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';
|
|
3802
|
+
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';
|
|
3801
3803
|
/** Definitions of common slots properties */
|
|
3802
3804
|
interface SlotData extends SlotDataSlotTypeOneOf {
|
|
3803
3805
|
/** Widget-specific slot. */
|
|
@@ -14540,6 +14542,11 @@ interface EditorElement {
|
|
|
14540
14542
|
cssCustomProperties?: Record<string, CssCustomPropertyItem>;
|
|
14541
14543
|
/** A reference to a help article for this element */
|
|
14542
14544
|
helpArticle?: HelpArticle;
|
|
14545
|
+
/**
|
|
14546
|
+
* A description of the editor element
|
|
14547
|
+
* @maxLength 300
|
|
14548
|
+
*/
|
|
14549
|
+
description?: string | null;
|
|
14543
14550
|
}
|
|
14544
14551
|
interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
14545
14552
|
/** An optional object to define limitations on the text input */
|
|
@@ -14583,6 +14590,11 @@ interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
|
14583
14590
|
defaultValue?: any;
|
|
14584
14591
|
/** Disables the ability to delete this data-item value in the Editor UI */
|
|
14585
14592
|
disableDeletion?: boolean | null;
|
|
14593
|
+
/**
|
|
14594
|
+
* A description of this data item
|
|
14595
|
+
* @maxLength 300
|
|
14596
|
+
*/
|
|
14597
|
+
description?: string | null;
|
|
14586
14598
|
}
|
|
14587
14599
|
/** @oneof */
|
|
14588
14600
|
interface DataItemSelectedDataTypeOneOf {
|
|
@@ -14719,6 +14731,11 @@ interface Option {
|
|
|
14719
14731
|
* @maxLength 100
|
|
14720
14732
|
*/
|
|
14721
14733
|
displayName?: string;
|
|
14734
|
+
/**
|
|
14735
|
+
* A description of this text item
|
|
14736
|
+
* @maxLength 300
|
|
14737
|
+
*/
|
|
14738
|
+
description?: string | null;
|
|
14722
14739
|
}
|
|
14723
14740
|
interface _Number {
|
|
14724
14741
|
/**
|
|
@@ -14925,6 +14942,11 @@ interface ReactElementContainer extends ReactElementContainerSelectedContainerTy
|
|
|
14925
14942
|
* @maxLength 50
|
|
14926
14943
|
*/
|
|
14927
14944
|
displayName?: string | null;
|
|
14945
|
+
/**
|
|
14946
|
+
* An optional override of the description of the container
|
|
14947
|
+
* @maxLength 300
|
|
14948
|
+
*/
|
|
14949
|
+
description?: string | null;
|
|
14928
14950
|
}
|
|
14929
14951
|
/** @oneof */
|
|
14930
14952
|
interface ReactElementContainerSelectedContainerTypeOneOf {
|
|
@@ -15374,6 +15396,11 @@ interface InlineFilterItem {
|
|
|
15374
15396
|
* @maxSize 10
|
|
15375
15397
|
*/
|
|
15376
15398
|
customOperators?: CustomFilterOperator[];
|
|
15399
|
+
/**
|
|
15400
|
+
* A description of this filter field
|
|
15401
|
+
* @maxLength 300
|
|
15402
|
+
*/
|
|
15403
|
+
description?: string | null;
|
|
15377
15404
|
}
|
|
15378
15405
|
declare enum FilterOperator {
|
|
15379
15406
|
UNKNOWN_FilterOperator = "UNKNOWN_FilterOperator",
|
|
@@ -15422,6 +15449,11 @@ interface CustomFilterOperator {
|
|
|
15422
15449
|
* @maxLength 100
|
|
15423
15450
|
*/
|
|
15424
15451
|
displayName?: string | null;
|
|
15452
|
+
/**
|
|
15453
|
+
* A description of this custom filter operator
|
|
15454
|
+
* @maxLength 300
|
|
15455
|
+
*/
|
|
15456
|
+
description?: string | null;
|
|
15425
15457
|
}
|
|
15426
15458
|
/** A filter item referencing an existing item (e.g. DataItem or ContextItem) */
|
|
15427
15459
|
interface FilterItem {
|
|
@@ -15466,6 +15498,11 @@ interface InlineSortItem {
|
|
|
15466
15498
|
* @maxLength 100
|
|
15467
15499
|
*/
|
|
15468
15500
|
descendingDisplayName?: string | null;
|
|
15501
|
+
/**
|
|
15502
|
+
* A description of this sort field
|
|
15503
|
+
* @maxLength 300
|
|
15504
|
+
*/
|
|
15505
|
+
description?: string | null;
|
|
15469
15506
|
}
|
|
15470
15507
|
/**
|
|
15471
15508
|
* A sort item referencing an existing item (e.g. DataItem or ContextItem),
|
|
@@ -15507,6 +15544,11 @@ interface ContextItem extends ContextItemSelectedDataTypeOneOf {
|
|
|
15507
15544
|
displayName?: string | null;
|
|
15508
15545
|
/** For sub types that implement parts of context, points to a context provider component type */
|
|
15509
15546
|
contextImplementor?: ContextImplementor;
|
|
15547
|
+
/**
|
|
15548
|
+
* A description of the context item for user facing and AI usage
|
|
15549
|
+
* @maxLength 300
|
|
15550
|
+
*/
|
|
15551
|
+
description?: string | null;
|
|
15510
15552
|
}
|
|
15511
15553
|
/** @oneof */
|
|
15512
15554
|
interface ContextItemSelectedDataTypeOneOf {
|
|
@@ -15617,6 +15659,11 @@ interface InlineElement {
|
|
|
15617
15659
|
cssCustomProperties?: Record<string, CssCustomPropertyItem>;
|
|
15618
15660
|
/** A reference to a help article for this element */
|
|
15619
15661
|
helpArticle?: HelpArticle;
|
|
15662
|
+
/**
|
|
15663
|
+
* A description of this inline element
|
|
15664
|
+
* @maxLength 300
|
|
15665
|
+
*/
|
|
15666
|
+
description?: string | null;
|
|
15620
15667
|
}
|
|
15621
15668
|
/** DEPRECATED: This message is deprecated and will be removed in the future, add new types and definitions in css_properties.proto */
|
|
15622
15669
|
interface StyleItem extends StyleItemSelectedItemTypeOneOf, StyleItemSelectedCssPropertyTypeOneOf, StyleItemSelectedCssVariableTypeOneOf {
|
|
@@ -16216,6 +16263,11 @@ interface Action {
|
|
|
16216
16263
|
displayName?: string;
|
|
16217
16264
|
/** A model definition for declaring a concrete instructions action will perform */
|
|
16218
16265
|
execution?: Execution;
|
|
16266
|
+
/**
|
|
16267
|
+
* A description of this action
|
|
16268
|
+
* @maxLength 300
|
|
16269
|
+
*/
|
|
16270
|
+
description?: string | null;
|
|
16219
16271
|
}
|
|
16220
16272
|
interface Execution extends ExecutionActionExecuteOneOf {
|
|
16221
16273
|
/** Executes an action that manipulates component's data */
|
|
@@ -16431,6 +16483,11 @@ interface DashboardAction {
|
|
|
16431
16483
|
dashboardPageId?: string;
|
|
16432
16484
|
/** A model definition for declaring a concrete instructions action will perform */
|
|
16433
16485
|
execution?: Execution;
|
|
16486
|
+
/**
|
|
16487
|
+
* A description of this dashboard action
|
|
16488
|
+
* @maxLength 300
|
|
16489
|
+
*/
|
|
16490
|
+
description?: string | null;
|
|
16434
16491
|
}
|
|
16435
16492
|
interface PresetItem {
|
|
16436
16493
|
/**
|
|
@@ -16463,6 +16520,11 @@ interface PresetItem {
|
|
|
16463
16520
|
presetCssUrl?: string | null;
|
|
16464
16521
|
/** All the default values that needs to be set when the preset is selected */
|
|
16465
16522
|
presetDefaults?: PresetElementDefaults;
|
|
16523
|
+
/**
|
|
16524
|
+
* A description of this preset
|
|
16525
|
+
* @maxLength 300
|
|
16526
|
+
*/
|
|
16527
|
+
description?: string | null;
|
|
16466
16528
|
}
|
|
16467
16529
|
interface ComponentInitialSize {
|
|
16468
16530
|
/** The component initial width setting */
|
|
@@ -16564,6 +16626,11 @@ interface PresetElementDefaults {
|
|
|
16564
16626
|
* The Preset is the second in line to affect the display, Element is before and State is after it
|
|
16565
16627
|
*/
|
|
16566
16628
|
displayFilters?: DisplayFilters;
|
|
16629
|
+
/**
|
|
16630
|
+
* A description of the element when this preset is selected
|
|
16631
|
+
* @maxLength 300
|
|
16632
|
+
*/
|
|
16633
|
+
description?: string | null;
|
|
16567
16634
|
}
|
|
16568
16635
|
interface CssPropertyItemDefaults {
|
|
16569
16636
|
/** The default value of this css-property-item */
|
|
@@ -16719,6 +16786,11 @@ interface ElementState {
|
|
|
16719
16786
|
displayFilters?: DisplayFilters;
|
|
16720
16787
|
/** The element that needs to be targeted when this state is applied */
|
|
16721
16788
|
target?: TargetElement;
|
|
16789
|
+
/**
|
|
16790
|
+
* A description of this state
|
|
16791
|
+
* @maxLength 300
|
|
16792
|
+
*/
|
|
16793
|
+
description?: string | null;
|
|
16722
16794
|
}
|
|
16723
16795
|
declare enum NativeStateType {
|
|
16724
16796
|
UNKNOWN_NativeStateType = "UNKNOWN_NativeStateType",
|
|
@@ -16815,6 +16887,11 @@ interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
|
|
|
16815
16887
|
displayName?: string | null;
|
|
16816
16888
|
/** The type of the group, used to determine the group that will be displayed in the editor */
|
|
16817
16889
|
groupType?: GroupTypeWithLiterals;
|
|
16890
|
+
/**
|
|
16891
|
+
* A description of this Group
|
|
16892
|
+
* @maxLength 300
|
|
16893
|
+
*/
|
|
16894
|
+
description?: string | null;
|
|
16818
16895
|
}
|
|
16819
16896
|
/** @oneof */
|
|
16820
16897
|
interface DisplayGroupItemSelectedGroupTypeOneOf {
|
|
@@ -17260,6 +17337,11 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
17260
17337
|
defaultValue?: any;
|
|
17261
17338
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17262
17339
|
statesDefaultValues?: Record<string, any>;
|
|
17340
|
+
/**
|
|
17341
|
+
* A description of this css-property-item
|
|
17342
|
+
* @maxLength 300
|
|
17343
|
+
*/
|
|
17344
|
+
description?: string | null;
|
|
17263
17345
|
}
|
|
17264
17346
|
/** @oneof */
|
|
17265
17347
|
interface CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
@@ -17345,6 +17427,11 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
17345
17427
|
defaultValue?: any;
|
|
17346
17428
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17347
17429
|
statesDefaultValues?: Record<string, any>;
|
|
17430
|
+
/**
|
|
17431
|
+
* A description of this css-custom-property-item
|
|
17432
|
+
* @maxLength 300
|
|
17433
|
+
*/
|
|
17434
|
+
description?: string | null;
|
|
17348
17435
|
}
|
|
17349
17436
|
/** @oneof */
|
|
17350
17437
|
interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
|
|
@@ -17537,6 +17624,11 @@ interface CustomPropertyEnumOption {
|
|
|
17537
17624
|
* @maxLength 100
|
|
17538
17625
|
*/
|
|
17539
17626
|
displayName?: string | null;
|
|
17627
|
+
/**
|
|
17628
|
+
* A description of this enum option
|
|
17629
|
+
* @maxLength 300
|
|
17630
|
+
*/
|
|
17631
|
+
description?: string | null;
|
|
17540
17632
|
}
|
|
17541
17633
|
interface CustomPropertyEnumOptionStyle {
|
|
17542
17634
|
/**
|
|
@@ -17611,6 +17703,11 @@ interface RefElement {
|
|
|
17611
17703
|
cssCustomProperties?: Record<string, CssPropertyItemDefinitionOverrides>;
|
|
17612
17704
|
/** A reference to a help article for this element */
|
|
17613
17705
|
helpArticle?: HelpArticle;
|
|
17706
|
+
/**
|
|
17707
|
+
* The override of the used element description
|
|
17708
|
+
* @maxLength 300
|
|
17709
|
+
*/
|
|
17710
|
+
description?: string | null;
|
|
17614
17711
|
}
|
|
17615
17712
|
interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
|
|
17616
17713
|
/** Overrides the definition of what images should be supported */
|
|
@@ -17630,6 +17727,11 @@ interface DataItemOverrides extends DataItemOverridesSelectedDataTypeOneOf {
|
|
|
17630
17727
|
displayName?: string | null;
|
|
17631
17728
|
/** Overrides the ability to delete this data-item value in the Editor UI */
|
|
17632
17729
|
disableDeletion?: boolean | null;
|
|
17730
|
+
/**
|
|
17731
|
+
* Overrides the description of this data-item
|
|
17732
|
+
* @maxLength 300
|
|
17733
|
+
*/
|
|
17734
|
+
description?: string | null;
|
|
17633
17735
|
}
|
|
17634
17736
|
/** @oneof */
|
|
17635
17737
|
interface DataItemOverridesSelectedDataTypeOneOf {
|
|
@@ -17674,6 +17776,11 @@ interface CssPropertyItemDefinitionOverrides {
|
|
|
17674
17776
|
defaultValue?: any;
|
|
17675
17777
|
/** The default values for the css-property-item when the component is in one of the defined states */
|
|
17676
17778
|
statesDefaultValues?: Record<string, any>;
|
|
17779
|
+
/**
|
|
17780
|
+
* A description of this css-property-item
|
|
17781
|
+
* @maxLength 300
|
|
17782
|
+
*/
|
|
17783
|
+
description?: string | null;
|
|
17677
17784
|
}
|
|
17678
17785
|
interface Interactions {
|
|
17679
17786
|
/** @maxSize 7 */
|
|
@@ -805,6 +805,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
|
|
|
805
805
|
BackOfficeHostingPlatforms2["BASE44_PLATFORM"] = "BASE44_PLATFORM";
|
|
806
806
|
BackOfficeHostingPlatforms2["PAYMENTS_BO"] = "PAYMENTS_BO";
|
|
807
807
|
BackOfficeHostingPlatforms2["SYMPHONY"] = "SYMPHONY";
|
|
808
|
+
BackOfficeHostingPlatforms2["BMR"] = "BMR";
|
|
808
809
|
return BackOfficeHostingPlatforms2;
|
|
809
810
|
})(BackOfficeHostingPlatforms || {});
|
|
810
811
|
var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {
|