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