@wix/auto_sdk_data-extension-schema_schemas 1.0.143 → 1.0.144
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 +1 -29
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -29
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -29
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -29
- 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 +1 -29
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -29
- 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 +1 -29
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -29
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../index.ts","../../src/data-extensions-v1-data-extension-schema-schemas.public.ts","../../src/data-extensions-v1-data-extension-schema-schemas.universal.ts","../../src/data-extensions-v1-data-extension-schema-schemas.http.ts","../../src/data-extensions-v1-data-extension-schema-schemas.context.ts"],"sourcesContent":["export * from './src/data-extensions-v1-data-extension-schema-schemas.context.js';\n","import { renameKeysFromRESTResponseToSDKResponse } from '@wix/sdk-runtime/rename-all-nested-keys';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { EventDefinition, HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport {\n DataExtensionSchema,\n DataExtensionSchemaCreatedEnvelope,\n DataExtensionSchemaDeletedEnvelope,\n DataExtensionSchemaUpdatedEnvelope,\n DeleteByWhiteListedMetaSiteResponse,\n DeleteUserDefinedFieldsOptions,\n DeleteUserDefinedFieldsResponse,\n ListDataExtensionSchemasOptions,\n ListDataExtensionSchemasResponse,\n UpdateDataExtensionSchemaResponse,\n createDataExtensionSchema as universalCreateDataExtensionSchema,\n deleteByWhiteListedMetaSite as universalDeleteByWhiteListedMetaSite,\n deleteUserDefinedFields as universalDeleteUserDefinedFields,\n listDataExtensionSchemas as universalListDataExtensionSchemas,\n updateDataExtensionSchema as universalUpdateDataExtensionSchema,\n} from './data-extensions-v1-data-extension-schema-schemas.universal.js';\n\nexport const __metadata = { PACKAGE_NAME: '@wix/data-extension-schema' };\n\nexport function createDataExtensionSchema(\n httpClient: HttpClient\n): CreateDataExtensionSchemaSignature {\n return (\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `fqdn` | `jsonSchema` | `namespace`,\n 2\n >\n ) =>\n universalCreateDataExtensionSchema(\n dataExtensionSchema,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface CreateDataExtensionSchemaSignature {\n /**\n * Creates a user-defined data extension schema.\n * @param - Schema to create.\n * @returns Created schema.\n */\n (\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `fqdn` | `jsonSchema` | `namespace`,\n 2\n >\n ): Promise<DataExtensionSchema>;\n}\n\nexport function updateDataExtensionSchema(\n httpClient: HttpClient\n): UpdateDataExtensionSchemaSignature {\n return (\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `_id` | `jsonSchema` | `revision`,\n 2\n >\n ) =>\n universalUpdateDataExtensionSchema(\n dataExtensionSchema,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface UpdateDataExtensionSchemaSignature {\n /**\n * Updates a user-defined data extension schema, overriding the existing data.\n * @param - Schema to update.\n * @param - Field options. The following fields **must** be passed: `_id`, `jsonSchema`, `revision`.\n */\n (\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `_id` | `jsonSchema` | `revision`,\n 2\n >\n ): Promise<UpdateDataExtensionSchemaResponse>;\n}\n\nexport function listDataExtensionSchemas(\n httpClient: HttpClient\n): ListDataExtensionSchemasSignature {\n return (fqdn: string, options?: ListDataExtensionSchemasOptions) =>\n universalListDataExtensionSchemas(\n fqdn,\n options,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface ListDataExtensionSchemasSignature {\n /**\n * Retrieves a list of global and user-defined data extension schemas for a given FQDN.\n * @param - [Fully qualified domain name](https://dev.wix.com/docs/rest/articles/getting-started/fqdns).\n */\n (fqdn: string, options?: ListDataExtensionSchemasOptions): Promise<\n NonNullablePaths<\n ListDataExtensionSchemasResponse,\n `dataExtensionSchemas`,\n 2\n >\n >;\n}\n\nexport function deleteByWhiteListedMetaSite(\n httpClient: HttpClient\n): DeleteByWhiteListedMetaSiteSignature {\n return (metaSiteId: string) =>\n universalDeleteByWhiteListedMetaSite(\n metaSiteId,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface DeleteByWhiteListedMetaSiteSignature {\n /**\n * Deletes schemas of whitelisted metasite ids\n * @param - Meta site id\n */\n (metaSiteId: string): Promise<\n NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`, 2>\n >;\n}\n\nexport function deleteUserDefinedFields(\n httpClient: HttpClient\n): DeleteUserDefinedFieldsSignature {\n return (\n dataExtensionSchemaId: string,\n options: NonNullablePaths<\n DeleteUserDefinedFieldsOptions,\n `fieldsToDelete`,\n 2\n >\n ) =>\n universalDeleteUserDefinedFields(\n dataExtensionSchemaId,\n options,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface DeleteUserDefinedFieldsSignature {\n /**\n * Deletes a user defined field from the specified data extension schema.\n * @param - Schema ID.\n */\n (\n dataExtensionSchemaId: string,\n options: NonNullablePaths<\n DeleteUserDefinedFieldsOptions,\n `fieldsToDelete`,\n 2\n >\n ): Promise<DeleteUserDefinedFieldsResponse>;\n}\n\nexport const onDataExtensionSchemaCreated = EventDefinition(\n 'wix.data_extensions.v1.data_extension_schema_created',\n true,\n (event: DataExtensionSchemaCreatedEnvelope) =>\n renameKeysFromRESTResponseToSDKResponse(\n transformPaths(event, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'entity.updatedDate' },\n { path: 'entity.createdDate' },\n { path: 'metadata.eventTime' },\n ],\n },\n ])\n )\n)<DataExtensionSchemaCreatedEnvelope>();\nexport const onDataExtensionSchemaDeleted = EventDefinition(\n 'wix.data_extensions.v1.data_extension_schema_deleted',\n true,\n (event: DataExtensionSchemaDeletedEnvelope) =>\n renameKeysFromRESTResponseToSDKResponse(\n transformPaths(event, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'undefined.updatedDate' },\n { path: 'undefined.createdDate' },\n { path: 'metadata.eventTime' },\n ],\n },\n ])\n )\n)<DataExtensionSchemaDeletedEnvelope>();\nexport const onDataExtensionSchemaUpdated = EventDefinition(\n 'wix.data_extensions.v1.data_extension_schema_updated',\n true,\n (event: DataExtensionSchemaUpdatedEnvelope) =>\n renameKeysFromRESTResponseToSDKResponse(\n transformPaths(event, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'entity.updatedDate' },\n { path: 'entity.createdDate' },\n { path: 'metadata.eventTime' },\n { path: 'modifiedFields.updatedDate' },\n { path: 'modifiedFields.createdDate' },\n ],\n },\n ])\n )\n)<DataExtensionSchemaUpdatedEnvelope>();\n\nexport {\n A11y,\n A11yAttributes,\n AcceptedDirectMessageType,\n AcceptedMessageTypesAcceptedDirectMessageType,\n AcceptedMessageTypesAcceptedSmsMessageType,\n AcceptedSmsMessageType,\n AccessLevel,\n Action,\n ActionCondition,\n ActionEvent,\n ActionName,\n ActionProviderSPIConfig,\n ActionSPIConfig,\n ActionSPIConfigImplementedMethods,\n ActionSPIConfigInterfaceConfiguration,\n ActionSPIConfigInterfaceConfigurationOptionsOneOf,\n ActionSPIConfigInterfaceConfigurationType,\n ActionSpiConfig,\n ActionType,\n Actions,\n AdaptiveComponentProviderConfig,\n AddCustomFields,\n AdditionalFeesSPIConfig,\n AdditionalStepInfo,\n AdditionalTaxGroup,\n AddonMarketData,\n Address,\n AddressComponentType,\n AddressComponentTypeOptionsOneOf,\n AddressInfo,\n AddressInfoTag,\n AddressLine2,\n AdminConfigurableTextInput,\n AlertEnricherSpiConfiguration,\n AlgorithmConfig,\n AlgorithmType,\n Alignment,\n AllowedValuesOptions,\n AlternativeUri,\n AnchorData,\n AnchorMetaData,\n AndCondition,\n AndroidMobilePushConfig,\n AndroidStyle,\n ApiContext,\n ApiSlot,\n ApiWidth,\n AppConfig,\n AppConfiguration,\n AppData,\n AppDeploymentProviderConfig,\n AppEmbedData,\n AppEmbedDataAppDataOneOf,\n AppEnvironmentProviderConfig,\n AppPreviewProviderConfig,\n AppRuntimeDataCacheEntity,\n AppRuntimeDataEvent,\n AppType,\n ApplicationAutomationComponent,\n ApplicationProfile,\n ApplicationProfileProviderConfig,\n Appointment,\n AppointmentFormat,\n AppointmentFormatInfoOneOf,\n Archetype,\n ArrayComponentType,\n ArrayItems,\n ArrayItemsArrayDataOneOf,\n ArrayOptions,\n ArrayOptionsElementTypeOptionsOneOf,\n ArrayType,\n ArrayTypeArrayItems,\n ArrayTypeArrayItemsItemTypeOptionsOneOf,\n AspectRatio,\n AssetType,\n AssistantSpiConfig,\n AudienceProviderConfig,\n AudioData,\n AuthenticatorConfig,\n AutomationMetadata,\n AutomationTrigger,\n AutomationsConfig,\n AvailabilityTimeSlotsProviderConfig,\n AvatarConfig,\n AvatarShape,\n BackOfficeCustomization,\n BackOfficeCustomizationSidebarEntity,\n BackOfficeCustomizationSidebarEntityItemOneOf,\n BackOfficeExtension,\n BackOfficeExtensionContainer,\n BackOfficeExtensionExtensionOneOf,\n BackOfficeExtensionMenuItem,\n BackOfficeExtensionWidget,\n BackOfficeExtensionWidgetAssetOneOf,\n BackOfficeExternalUrl,\n BackOfficeHostingPlatforms,\n BackOfficeModal,\n BackOfficeModalContentOneOf,\n BackOfficePage,\n BackOfficePageAssetOneOf,\n BackOfficeRestrictedCustomization,\n BackOfficeScriptAsset,\n BackOfficeScriptAssetType,\n BackOfficeSidebarCategory,\n BackOfficeWidget,\n BackOfficeWidgetContentOneOf,\n BackdropFilter,\n BackendWorker,\n Background,\n BackgroundBackgroundMediaModeOneOf,\n BackgroundImage,\n BackgroundModeEnum,\n BackgroundType,\n BackofficeActionDeeplink,\n BarAlignment,\n BarAlignmentSelected,\n BaseEventMetadata,\n BaseInfo,\n BaseInstallation,\n Behaviors,\n BillingSettingsConfig,\n BlockType,\n BlockquoteData,\n BlocksData,\n BlogPaywallProviderConfig,\n BookingAutomationsConfig,\n BookingData,\n BookingPermissionOverrides,\n BookingPolicyProviderConfig,\n BookingsPlatformConfig,\n BookingsPricingProviderConfig,\n BookingsResourceType,\n BookingsResourceTypesProviderConfig,\n BoolListOptions,\n BooleanComponentType,\n BooleanExperimentExposureRule,\n BooleanType,\n Border,\n BorderColors,\n BorderWidths,\n BrandIcons,\n BreakPoint,\n BreakPointSection,\n Breakpoint,\n BreakpointEnumBreakpoint,\n BreakpointPresetStyleOverrides,\n Breakpoints,\n BroadcastList,\n BrowserPushChannel,\n BrowserPushContentKeys,\n BrowserStorage,\n BuilderSpi,\n BulletedListData,\n Bundle,\n BusinessManagerPage,\n ButtonData,\n ButtonDataType,\n ButtonStyles,\n CalendarType,\n CaptionData,\n CardStyles,\n CardStylesAlignment,\n CardStylesType,\n CatalogSPIConfig,\n CatalogSyncConfiguration,\n Category,\n CellStyle,\n ChangeableProperty,\n ChannelBrandIcons,\n ChannelBranding,\n ChannelChannelBranding,\n ChannelChannelConfiguration,\n ChannelChannelConfigurationMessagingConfigOneOf,\n ChannelConfiguration,\n ChannelConfigurationChannelType,\n ChannelConfigurationMessagingConfigOneOf,\n ChannelIcon,\n ChannelImplementedMethods,\n ChannelMediaCapabilities,\n ChannelType,\n Checkbox,\n CheckboxConfiguration,\n CheckboxField,\n CheckboxGroup,\n CheckboxGroupOption,\n CheckoutContentSPIConfig,\n ClientResources,\n ClientSideService,\n CodeBlockData,\n CodePackageComponentData,\n CodePanel,\n CollapsibleListData,\n Collection,\n Color,\n ColorData,\n ColorDefinition,\n ColorSelectLabeled,\n ColorSelectLabeledDataOneOf,\n Colors,\n CommentFilterProviderConfig,\n CommentModerationProviderConfig,\n CommentsContextProviderConfig,\n CommonImage,\n CommunicationChannelConfiguration,\n ComponentData,\n ComponentDataDataOneOf,\n ComponentEnricherConfig,\n ComponentInitialSize,\n ComponentMetaData,\n ComponentModel,\n ComponentReferenceDataConfig,\n ComponentTranslationAdditionalFieldsConfig,\n ComponentType,\n ComponentsValidatorConfig,\n Condition,\n ConditionBlock,\n ConditionNode,\n ConditionNodeNodeOneOf,\n Conditions,\n Configuration,\n ConfirmationLevel,\n ConnectMethod,\n ConsentCategory,\n Consequence,\n ConstOrDynamicParam,\n ConstOrDynamicParamValueOneOf,\n Constraint,\n ContactData,\n ContactField,\n ContactLabelsComponentData,\n ContactNotification,\n ContactsData,\n ContactsNotificationData,\n Container,\n ContainerBehaviors,\n ContainerDataOneOf,\n ContainerLayout,\n ContainerStyleOverrides,\n ContainerType,\n ContentData,\n ContentDataOverrides,\n ContentFill,\n ContentProviderConfig,\n ContentResizeDirection,\n Context,\n ContextArrayItems,\n ContextArrayItemsArrayDataOneOf,\n ContextDataItems,\n ContextImplementor,\n ContextItem,\n ContextItemSelectedDataTypeOneOf,\n ContextSpecifier,\n ConversationLimitations,\n Coordinates,\n CoreApps,\n Corners,\n CoverImageConfiguration,\n CreateDataExtensionSchemaRequest,\n CreateDataExtensionSchemaResponse,\n CreateNewItemInfo,\n CreatedByCacheEntity,\n Crop,\n CrossSellConfig,\n CssCustomPropertyAction,\n CssCustomPropertyItem,\n CssCustomPropertyItemSelectedCssPropertyTypeOneOf,\n CssDataType,\n CssNumber,\n CssPropertyAction,\n CssPropertyItem,\n CssPropertyItemDefaults,\n CssPropertyItemDefinitionOverrides,\n CssPropertyItemSelectedCssPropertyTypeOneOf,\n CssPropertyType,\n CssPropertyTypeEnumCssPropertyType,\n CssVariableTypeEnumCssDataType,\n CurrencyCodeListOptions,\n CustomAction,\n CustomActionActionExecuteOneOf,\n CustomChargesConfig,\n CustomElement,\n CustomElementConsentCategoryOneOf,\n CustomElementScriptType,\n CustomElementWidget,\n CustomEnum,\n CustomEnumOption,\n CustomEnumOptionCssProperty,\n CustomExperimentExposureRule,\n CustomFieldInfo,\n CustomFieldsType,\n CustomInitialPreset,\n CustomOption,\n CustomPermission,\n CustomPropertyEnum,\n CustomPropertyEnumOption,\n CustomPropertyEnumOptionStyle,\n CustomRefData,\n CustomReservationsApprovalConfig,\n CustomRewardProviderConfig,\n CustomScopeConfig,\n CustomTriggerConfig,\n DCConfigData,\n Dashboard,\n DashboardAction,\n DashboardApplicationData,\n DashboardButton,\n DashboardComponentData,\n DashboardItem,\n DashboardPlatfromComponentData,\n DataAction,\n DataComponent,\n DataExtensionSchema,\n DataExtensionSchemaCreatedEnvelope,\n DataExtensionSchemaDeletedEnvelope,\n DataExtensionSchemaState,\n DataExtensionSchemaUpdatedEnvelope,\n DataExtensionsComponentData,\n DataGroupsArrayItems,\n DataItem,\n DataItemOverrides,\n DataItemOverridesSelectedDataTypeOneOf,\n DataItemSelectedDataTypeOneOf,\n DataItems,\n DataPermissions,\n DataType,\n DateInput,\n DatePicker,\n DateTimeConstraints,\n DateTimeInput,\n Debounce,\n DecimalListOptions,\n Decoration,\n DecorationDataOneOf,\n DecorationType,\n Deeplink,\n DeeplinkOfOneOf,\n Default,\n DefaultCountryConfig,\n DefaultCountryConfigOptionsOneOf,\n DefaultCountryConfigType,\n DefaultPresets,\n DefaultTaxGroupProviderConfig,\n DefaultTextStyle,\n Definition,\n Delay,\n DelayTypeOneOf,\n DeleteByWhiteListedMetaSiteRequest,\n DeleteByWhiteListedMetaSiteResponse,\n DeleteDemoDataExtensionSchemaRequest,\n DeleteDemoDataExtensionSchemaResponse,\n DeleteGlobalExtensionSchemaRequest,\n DeleteGlobalExtensionSchemaResponse,\n DeleteTemplateFields,\n DeleteUserDefinedFieldsOptions,\n DeleteUserDefinedFieldsRequest,\n DeleteUserDefinedFieldsResponse,\n DeploymentPipelineProviderConfig,\n Description,\n Design,\n DesignTarget,\n DevCenterTestingComponentData,\n DevCenterTestingComponentDataTranslatableOneOfOneOf,\n Dimension,\n Dimensions,\n DirectMessageConfig,\n Direction,\n DiscountConfig,\n DiscountsSPIConfig,\n DiscoveryMetaData,\n Display,\n DisplayField,\n DisplayFieldDisplayFieldTypeOptionsOneOf,\n DisplayFieldType,\n DisplayFilter,\n DisplayFilters,\n DisplayGroupAction,\n DisplayGroupItem,\n DisplayGroupItemSelectedGroupTypeOneOf,\n DisplayProperties,\n DisplayValue,\n DisplayValueEnumDisplayValue,\n DisputeServicePluginConfig,\n DividerData,\n DividerDataAlignment,\n DividerDataWidth,\n DmDirectMessageConfig,\n Docking,\n DockingProperties,\n DocumentStyle,\n Domain,\n DomainEvent,\n DomainEventBodyOneOf,\n DonationInput,\n DonationInputOption,\n DrillInListItem,\n DrillItem,\n DrillItemDataOneOf,\n DropDownLabeled,\n Dropdown,\n DropdownField,\n DropdownFieldOption,\n DropdownOption,\n DropshippingProviderSPIConfig,\n DtsContent,\n DtsDefinitionReference,\n DtsDefinitionReferenceDtsDefinitionOneOf,\n DtsDefinitionType,\n DtsHttpLink,\n DurationInputConfiguration,\n DurationInputConfigurationDurationRenameOptions,\n DurationRenameOptions,\n DynamicPriceOptions,\n DynamicSiteStructureProviderConfig,\n EditableFields,\n EditableProperties,\n EditorAddon,\n EditorBehaviors,\n EditorContextProvider,\n EditorContextProviderResources,\n EditorDependencies,\n EditorElement,\n EditorElementLayout,\n EditorFunction,\n EditorFunctionLibrary,\n EditorPresence,\n EditorReactComponent,\n EffectGroup,\n ElementDisplayOption,\n ElementItem,\n ElementItemSelectedElementTypeOneOf,\n ElementState,\n ElementStyleDefaults,\n ElementStyleOverrides,\n ElementType,\n EmailChannel,\n EmailEmailMessageConfig,\n EmailInfo,\n EmailInfoTag,\n EmailMessageConfig,\n EmailTemplateConfig,\n EmailTemplateConfigProviderOneOf,\n EmbedCategory,\n EmbedData,\n EmbeddedScriptComponentData,\n EmbeddedScriptPages,\n EmbeddedScriptPlacement,\n Empty,\n EntityCreatedEvent,\n EntityDeletedEvent,\n EntityUpdatedEvent,\n Environment,\n ErrorReporting,\n ErrorReportingArtifact,\n Escalation,\n EventAction,\n EventBadgesSpiConfig,\n EventData,\n EventMetadata,\n EventTimeSlotsProviderConfig,\n EventTypeProviderConfig,\n EventValidationProviderConfig,\n Execution,\n ExecutionActionExecuteOneOf,\n ExecutionType,\n ExemptRegions,\n ExpectedInputs,\n ExperimentGroupWrapper,\n ExportMetadata,\n Exposure,\n ExposureRule,\n ExposureRuleRuleOneOf,\n ExposureRuleType,\n Extendable,\n ExtendingComponentType,\n ExtensionData,\n ExtensionDetails,\n ExtensionExposure,\n ExtensionType,\n ExternalDatabaseSpiConfig,\n ExternalFilterProviderConfig,\n FactorConfig,\n FactorType,\n FeedAggregation,\n FeedChannels,\n FeedChannelsConfig,\n FeesSPIConfig,\n Field,\n FieldFieldType,\n FieldGroup,\n FieldManagementConfig,\n FieldOverride,\n FieldOverrides,\n FieldType,\n FieldTypeOptionsOneOf,\n FieldsOverrides,\n FieldsSettings,\n FileData,\n FileSource,\n FileSourceDataOneOf,\n FileType,\n FileUpload,\n Filter,\n FilterFunction,\n FilterInfo,\n FilterInfoOptionsOneOf,\n FilterOptionsType,\n FilterSelectionType,\n FilterValueDefinitionMode,\n FilteringCapability,\n FirstDayOfWeek,\n FirstLevelCategory,\n FixedPayment,\n FixedPositionOptions,\n FixedPriceOptions,\n FocalPoint,\n Font,\n FontDefinition,\n FontFamilyData,\n FontFamilyWithColorPicker,\n FontSizeData,\n FontType,\n FormFieldContactInfo,\n FormFieldContactInfoAdditionalInfoOneOf,\n FormLayout,\n FormOverride,\n FormOverrideEntityTypeOptionsOneOf,\n FormOverrideFieldOverride,\n FormOverrideFieldOverridePropertyTypeOptionsOneOf,\n FormSchemaDynamicValuesSpiConfig,\n FormSchemaSpiConfig,\n FormSpamSubmissionReportPermissions,\n FormSpamSubmissionReportSpiConfig,\n FormSpamSubmissionReportsNamespaceConfig,\n FormSpamSubmissionSpiConfig,\n FormSpiExtensionConfig,\n FormSubmissionModerationSpiConfig,\n FormSubmissionModerationSpiNamespaceConfig,\n FormSubmissionSpiConfig,\n FormSubmissionSpiExtensionConfig,\n FormTemplate,\n FormTemplateTemplateTypeOptionsOneOf,\n Format,\n FormsConfig,\n FormsPermissions,\n FormsSPIConfig,\n FormsSchemaNamespaceConfig,\n FormsSpamSubmissionsNamespaceConfig,\n FormsSubmissionsExtensionNamespaceConfig,\n FormsSubmissionsNamespaceConfig,\n ForwardAction,\n ForwardActionActionOneOf,\n FreeOptionConfiguration,\n FreePricingTypeConfiguration,\n FreeTrialConfiguration,\n FunctionAssistantToolProviderConfig,\n FunctionDefinition,\n FunctionEcomDiscountTriggerEligibilityProviderConfig,\n FunctionParameter,\n FunctionParameterArrayItems,\n FunctionParameterArrayItemsArrayDataOneOf,\n FunctionParameterItems,\n FunctionParameterSelectedDataTypeOneOf,\n FunctionRecipe,\n FunctionResources,\n FunctionReturnType,\n FunctionReturnTypeSelectedDataTypeOneOf,\n FunctionsShopPriceSpiConfig,\n GIF,\n GIFData,\n GIFType,\n GalleryData,\n GalleryOptions,\n GalleryOptionsLayout,\n GalleryOptionsThumbnails,\n Gap,\n GbpFeatureConfig,\n GenericHookConfig,\n GenericHooksConfig,\n GenericOptions,\n GiftCardProviderConfig,\n Gradient,\n GradualDeleteCacheEntity,\n GradualRolloutCacheEntity,\n GradualUpdateCacheEntity,\n GridAppFilesTransformerConfig,\n Group,\n GroupType,\n GroupedContent,\n HTMLData,\n HTMLDataDataOneOf,\n HTMLDataSource,\n HTTPMethod,\n Header,\n HeaderConfig,\n HeaderConfigHeaderConfigOneOf,\n HeaderConfigOneOf,\n HeaderWidgetConfig,\n HeadingData,\n HeadlessOAuth,\n Height,\n HeightMode,\n HelpArticle,\n HelpArticleArticleTypeOneOf,\n HelpResources,\n HiddenOptions,\n HookType,\n HorizontalDocking,\n HostContainerId,\n HostedComponent,\n HostedPage,\n IDPConnectionConfig,\n Icon,\n IconDataOneOf,\n IconType,\n IdentificationData,\n IdentificationDataIdOneOf,\n Illustration,\n IllustrationIllustrationOneOf,\n Image,\n ImageCategoryTypes,\n ImageConfig,\n ImageData,\n ImageDataStyles,\n ImageDataStylesBorder,\n ImageFit,\n ImageOverrides,\n ImagePosition,\n ImageShape,\n ImageStyles,\n ImageStylesPosition,\n ImageType,\n Implementation,\n ImplementedMethods,\n ImportanceLevel,\n InPersonOptions,\n Index,\n IndexField,\n InitDirection,\n InitialExpandedItems,\n InitialPosition,\n InitialSizeSetting,\n InitialSizeSettingSelectedSizingTypeOneOf,\n Initiator,\n InitiatorDataOneOf,\n InitiatorType,\n InlineElement,\n Input,\n InputConfiguration,\n InputField,\n InputFieldInputTypeOptionsOneOf,\n InputField_Number,\n InputField_NumberComponentTypeOptionsOneOf,\n InputType,\n InputWithPlaceholder,\n InstallPage,\n InstallationInfo,\n InstallationInfoTargetContainerOneOf,\n InstallationSettings,\n InstallationSettingsOptionsOneOf,\n IntListOptions,\n IntegerType,\n IntegrationOptions,\n IntegrationType,\n Intent,\n Interactions,\n InterfaceConfiguration,\n InterfaceConfigurationOfTypeOneOf,\n InterfaceConfigurationType,\n InternalComponentMetadata,\n InventorySpiConfig,\n InvoicesActionsComponentData,\n InvoicesConfig,\n IsStretched,\n Item,\n ItemDataOneOf,\n ItemImage,\n ItemLayout,\n ItemLayoutItemOneOf,\n ItemSelection,\n ItemSelectionOptions,\n ItemStyle,\n ItemThumbnail,\n ItemThumbnailOptionsOneOf,\n ItemType,\n ItemVideo,\n ItemsGroup,\n ItemsSelectionProviderConfig,\n KeepAlivePage,\n Keywords,\n LanguageTagListOptions,\n Layout,\n LayoutCellData,\n LayoutData,\n LayoutDataBackgroundImage,\n LayoutDataImagePosition,\n LayoutMode,\n LayoutType,\n LearnMore,\n LeftPanel,\n LeftPanelWidgetConfig,\n LegacyBackOfficeExtensionWidget,\n LegacyBackOfficeExtensionWidgetAssetOneOf,\n LegacyBackOfficeMenuItem,\n LegacyBackOfficeMenuItemAction,\n LegendsSpiConfig,\n Level,\n LightboxCloseOptions,\n LightboxContent,\n LightboxEditorSettings,\n LightboxOptions,\n LimiterField,\n LineItemsEnricherConfig,\n LineStyle,\n Link,\n LinkData,\n LinkPreviewData,\n LinkPreviewDataStyles,\n LinkSuffix,\n LinkTarget,\n LinkType,\n ListDataExtensionSchemasOptions,\n ListDataExtensionSchemasRequest,\n ListDataExtensionSchemasResponse,\n ListEventFromCalendars,\n ListItem,\n ListValue,\n LiveSiteActionDeeplink,\n LocalDeliveryComponentData,\n Location,\n LocationLocationInfoOneOf,\n LockableOperation,\n Logo,\n Logos,\n Main,\n MainPresets,\n MainPropsData,\n ManagedMenuEntities,\n MandatoryField,\n MapData,\n MapSettings,\n MapType,\n Margin,\n Margins,\n MarketplaceSPIConfig,\n Maturity,\n MeasurementSystem,\n Media,\n MediaCapabilities,\n MediaItem,\n MediaItemMediaOneOf,\n MediaMimeType,\n MediaSettings,\n MembershipsSPIConfig,\n MentionData,\n MenuAction,\n MenuActionActionOneOf,\n MenuDropdown,\n MenuLink,\n MenuSlot,\n MessageContainingTranslatables,\n MessageEnvelope,\n Metadata,\n Method,\n MinMaxRange,\n MobileApplication,\n MobileFeedChannel,\n MobileFeedContentKeys,\n MobilePushChannel,\n MobilePushChannelConfig,\n MobilePushContentKeys,\n ModalParams,\n Monitoring,\n MonitoringOptionsOneOf,\n MonitoringType,\n MpaNavigation,\n MultiReferenceOptions,\n MultiServiceBookingPolicyProviderConfig,\n MultilineAddress,\n MultilineAddressValidation,\n MultilingualTranslationSchema,\n MultipleDashboardsComponentData,\n Namespace,\n NamespaceConfig,\n NamespaceConfigV2,\n NativeStateType,\n NavigateToPageAction,\n NavigationType,\n NestedWidgets,\n Node,\n NodeDataOneOf,\n NodeStyle,\n NodeType,\n NotificationChannels,\n NotificationContent,\n NotificationPreferencesFilterConfig,\n NotificationTopic,\n NotificationTopicState,\n NotificationTopicType,\n Npm,\n NullValue,\n NumberComponentType,\n NumberInput,\n NumberOfColumns,\n NumberType,\n OAuthAppType,\n OAuthTechnologies,\n ObjectField,\n ObjectFieldTypeOptionsOneOf,\n ObjectOptions,\n ObjectType,\n Oembed,\n Offset,\n OffsetValueOneOf,\n OneTimeOptionConfiguration,\n OneTimePricingTypeConfiguration,\n OpenComponent,\n OpenModalAction,\n OperationExecutorConfig,\n Operator,\n OperatorConfiguration,\n OperatorEnumOperator,\n Option,\n OptionDesign,\n OptionLayout,\n OrCondition,\n Order,\n OrderValue,\n OrderedListData,\n Orientation,\n OriginInfo,\n OutOfIframeData,\n Output,\n OverrideEntityType,\n OverrideTemplateFields,\n PDFSettings,\n PDFSettingsViewMode,\n PackageDimension,\n PackageType,\n Padding,\n Page,\n PageAnchor,\n PageComponentData,\n PageContent,\n PageDashboardApplicationComponent,\n PageEditorSettings,\n PageInstallation,\n PageInstallationSettings,\n PageNavigationOptions,\n PageOptions,\n PageOutOfIframeComponentData,\n PageReplace,\n PageReplaceOptions,\n PageReplaceOptionsOptionsOneOf,\n PageWidgetAsContent,\n PaginationMode,\n Panel,\n PanelAction,\n PanelActionSelectedPanelTypeOneOf,\n PanelContentType,\n PanelMode,\n PanelSelectedContentTypeOneOf,\n PanelSize,\n PanelType,\n PanoramaOptions,\n ParagraphData,\n Param,\n Parameter,\n ParameterType,\n ParameterValueDefinitionDetailsOneOf,\n PartialPaymentRestriction,\n PartialUpdateCacheEntity,\n ParticipantType,\n Password,\n PatternsWizard,\n Payment,\n PaymentComponentType,\n PaymentComponentTypeOptionsOneOf,\n PaymentDateModification,\n PaymentInput,\n PaymentMethod,\n PaymentMethodMethodOneOf,\n PaymentServiceProviderConfig,\n PaymentServiceProviderCredentialsField,\n PaymentServiceProviderCredentialsFieldFieldOneOf,\n PaymentSettingsSPIConfig,\n PaymentType,\n PaymentsGatewayComponentData,\n PayoutsProviderConfig,\n PerkValues,\n PerksConfiguration,\n PermissionOverrides,\n Permissions,\n PhoneConstraints,\n PhoneInfo,\n PhoneInfoTag,\n PhoneInput,\n PhoneOptions,\n PingNotificationComponentData,\n PingSettingsGroupComponentData,\n PingSettingsGroupComponentDataState,\n PlaceHolder,\n Placement,\n PlanDuration,\n PlanFormBenefitsSection,\n PlanFormCustomPricingRulesSection,\n PlanFormCustomSection,\n PlanFormDefaultSection,\n PlanFormDurationSection,\n PlanFormInfoSection,\n PlanFormInitialValue,\n PlanFormPagePermissionsSection,\n PlanFormPlanSettingsSection,\n PlanFormPreviewSection,\n PlanFormPricingAndDurationSection,\n PlanFormPricingAndDurationSectionDurationInputConfiguration,\n PlanFormPricingAndDurationSectionInputConfiguration,\n PlanFormPricingOption,\n PlanFormPricingSection,\n PlanFormPricingSectionInputConfiguration,\n PlanFormPricingSectionSetupFeeConfiguration,\n PlanFormPricingType,\n PlanFormSection,\n PlanFormSectionSectionOneOf,\n PlanFormStartDateRulesSection,\n PlanFormTypeMetadata,\n PlanPeriodUnit,\n PlanPriceData,\n PlanPricing,\n PlanPricingPricingModelOneOf,\n PlanSettingsRowConfiguration,\n PlatformHeaderConfig,\n PlatfromComponentData,\n PlaybackOptions,\n PluginConfig,\n PluginContainerData,\n PluginContainerDataAlignment,\n PluginContainerDataHeight,\n PluginContainerDataWidth,\n PluginContainerDataWidthDataOneOf,\n PluginInstallationSettings,\n PluginInterface,\n PluginMarketData,\n PluginPlacement,\n PolicyConfig,\n PolicyPermissionOverrides,\n Poll,\n PollData,\n PollDataLayout,\n PollDesign,\n PollDesignBackground,\n PollDesignBackgroundBackgroundOneOf,\n PollLayout,\n PollLayoutDirection,\n PollLayoutType,\n PollOption,\n PollSettings,\n PosProviderSettingsServicePluginConfig,\n Position,\n PostLoginConfig,\n PreRegisterConfig,\n PredefinedExpectedInput,\n PredefinedExpectedInputConfiguration,\n PredefinedExpectedInputConfigurationTypeOneOf,\n PredefinedLabel,\n PredefinedValues,\n Preset,\n PresetEditorPresence,\n PresetElementDefaults,\n PresetInfo,\n PresetInnerElementDefaults,\n PresetItem,\n PresetSize,\n PresetStyleDefaults,\n PresetStyleItemOverrides,\n PresetStyleOverrides,\n PreviewCardPlaceholders,\n PreviewConfiguration,\n PreviewFields,\n PriceSPIConfig,\n PriceType,\n PricingData,\n PricingPlansFormConfiguration,\n PricingRecurring,\n Primitive,\n PrimitiveType,\n Product,\n ProductCatalogProviderConfig,\n ProductCheckboxGroup,\n ProductCheckboxGroupOption,\n ProductPriceOptionsOneOf,\n ProductRestrictionsConfig,\n ProductType,\n ProductsPathsConfig,\n Project,\n PropertiesType,\n PropertiesTypeEnum,\n PropertiesTypePropertiesTypeOptionsOneOf,\n ProposalEditorProviderConfig,\n Provider,\n ProviderAccountServicePluginConfig,\n ProviderConfig,\n ProviderConfigMessage,\n ProviderFilterOptions,\n ProviderSuppressionServicePluginConfig,\n PurchaseValidationsConfig,\n QuantityLimit,\n RadioButtonLabeled,\n RadioGroup,\n RadioGroupOption,\n RangeConstraints,\n RateLimit,\n RatingInput,\n ReactElementContainer,\n ReactElementContainerSelectedContainerTypeOneOf,\n RecipientFilter,\n RecipientFilterDataOneOf,\n RecipientFilterType,\n RecipientType,\n RecommendationsProviderConfig,\n RecurringOptionConfiguration,\n RecurringPricingTypeConfiguration,\n RecurringPricingTypeConfigurationFreeTrialConfiguration,\n RedirectOptions,\n RefElement,\n RefInnerElementDefaults,\n ReferenceOptions,\n Region,\n RegionScopeScope,\n RegionType,\n ReindexEvent,\n ReindexField,\n Rel,\n RenderOverrides,\n RepeatedFieldOverrideConfig,\n ReplaceableOptions,\n ReplacementType,\n ReplacingOptions,\n RequestedField,\n RequiredIndicator,\n RequiredIndicatorPlacement,\n RequiredIndicatorProperties,\n RequiredOptions,\n ResetButton,\n ResizeDirection,\n Resizing,\n Resource,\n Resources,\n ResponsivenessBehaviour,\n ResponsysEmail,\n RestaurantsPOSComponentData,\n RestoreInfo,\n RestrictedOperation,\n Restriction,\n RestrictionLevel,\n Restrictions,\n RestrictionsConfig,\n ReviewsEntityCatalogProviderConfig,\n ReviewsProductCatalogProviderConfig,\n RewardProviderConfig,\n RibbonStyles,\n RichContent,\n RichContentOptions,\n RichText,\n RichTextAbilities,\n RichTextWithIllustrationVertical,\n Rule,\n RuntimeComponentCacheEntity,\n RuntimeComponentCacheEntityComponent,\n RuntimeComponentCacheEntityComponentOneOf,\n RuntimeComponentCacheEntityExperiment,\n RuntimeComponentCacheEntityExperimentExperimentOneOf,\n SDKExports,\n SDKExportsNpm,\n Scaling,\n Scheduling,\n SchedulingComponentType,\n SchedulingComponentTypeOptionsOneOf,\n Schema,\n SchemaConfig,\n SchemaField,\n SchemaFieldExposure,\n SchemaFieldFieldType,\n SchemaFieldType,\n SchemaFieldTypeFieldTypeOneOf,\n SchemaGroup,\n SchemaGroupElement,\n SchemaKey,\n SchemaScope,\n Scope,\n ScriptType,\n SdkDefinition,\n SearchConfig,\n SearchField,\n SearchParams,\n SecondLevelCategory,\n Section,\n SentryOptions,\n SeoKeywordsSuggestionsSPIConfig,\n ServiceAction,\n ServiceAvailabilityPolicyProviderConfig,\n ServicePermissionOverrides,\n ServiceTrigger,\n ServicesDropdown,\n ServicesDropdownOption,\n Settings,\n SettingsPanel,\n SettingsPermissions,\n SettingsUrl,\n SetupFeeConfiguration,\n SharedPlatformMobilePushConfig,\n ShippingLabelCarrierSpiConfig,\n ShippingProviderConfig,\n ShippingRatesConfig,\n ShorthandGroupBackground,\n ShoutoutEmail,\n Sidebar,\n SidebarChildItem,\n SidebarChildItemItemOneOf,\n SidebarConfig,\n SidebarConfigOneOf,\n SidebarDataType,\n SidebarEntityType,\n SidebarRootItem,\n SidebarRootItemItemOneOf,\n SidebarSecondLevelChildItem,\n SidebarSecondLevelChildItemItemOneOf,\n SidebarWidget,\n SidebarWidgetConfig,\n SidebarWidgetConfigOneOf,\n Signature,\n Simple,\n SimpleContainer,\n SimpleField,\n SimpleType,\n SingleContent,\n SingleKeyCondition,\n SiteConfig,\n SiteContributorsData,\n SiteMapProviderConfig,\n SiteMemberData,\n SiteMembersSsrCaching,\n SiteMigrationSpiConfig,\n SiteWidgetSlot,\n Size,\n SizingType,\n SliderLabeled,\n Slot,\n SlotData,\n SlotDataSlotTypeOneOf,\n SlotDataType,\n SlotParams,\n SmsActionMessage,\n SmsChannel,\n SmsContentKeys,\n SmsMessageConfig,\n SmsSmsMessageConfig,\n SnippetSolutionData,\n SocialMarketingDesignSPIConfig,\n SocialMarketingDesignsProviderConfig,\n Source,\n SourceOptionsOneOf,\n SourceType,\n SpamSubmissionPermissions,\n Spi,\n SpiBaseUri,\n Spoiler,\n SpoilerData,\n StaffSortingProviderConfig,\n StartDateLimitsSPIConfig,\n StartDateRulesSPIConfig,\n State,\n StaticContainer,\n StaticFileComponentData,\n StaticFilterOption,\n StaticFilterOptions,\n Status,\n Step,\n StorageDomain,\n StorageType,\n StringComponentType,\n StringListOptions,\n StringOption,\n StringType,\n StringTypeFormatOptionsOneOf,\n StudioComponentData,\n StudioWidgetComponentData,\n StudioWidgetVariation,\n StyleAction,\n StyleItem,\n StyleItemDefaults,\n StyleItemOverrides,\n StyleItemSelectedCssPropertyTypeOneOf,\n StyleItemSelectedCssVariableTypeOneOf,\n StyleItemSelectedItemTypeOneOf,\n StyleType,\n Styles,\n StylesBorder,\n StylesPosition,\n SubPage,\n SubmitSettings,\n SubmitSettingsSubmitSuccessActionOptionsOneOf,\n SubmitSuccessAction,\n SubscriptionInfo,\n SyncToCalendar,\n SyncedProjectsProviderConfig,\n Tab,\n TableCellData,\n TableData,\n Tag,\n TagOverrides,\n TagOverridesEntry,\n Tags,\n TagsOption,\n Target,\n TargetElement,\n TaxCalculationConfig,\n TaxCalculatorSpiConfig,\n TaxCountriesConfig,\n TaxExemptGroup,\n TaxExemptGroupsProviderConfig,\n TaxGroupsProviderConfig,\n TaxIdValidatorConfig,\n TaxTypesConfig,\n TaxationCategoryProvider,\n TemplateDefaultColor,\n TemplateType,\n TermsAndConditionsConfiguration,\n TermsModalConfiguration,\n TestEnum,\n Text,\n TextAlignment,\n TextData,\n TextDecoration,\n TextEnum,\n TextGroup,\n TextInput,\n TextInputDisplayType,\n TextInputLabeled,\n TextInputSettings,\n TextNodeStyle,\n TextStyle,\n TextStyleDefaultColorOneOf,\n TextToSpeechActionMessage,\n TextWithSuffix,\n TextWithSuffixSuffixOneOf,\n TextWithTooltip,\n ThankYouMessageOptions,\n ThankYouPageConfiguration,\n ThankYouPageInputConfig,\n ThankYouPageModalConfiguration,\n ThankYouPagePreviewConfiguration,\n ThankYouPageRedirectsConfiguration,\n ThumbnailData,\n ThumbnailType,\n Thumbnails,\n ThumbnailsAlignment,\n ThumbnailsSize,\n TicketReservationsSpiConfig,\n TimeConstraintConfiguration,\n TimeConstraintConfigurationValueConstraintsOneOf,\n TimeConstraintType,\n TimeInput,\n ToggleLabeled,\n ToolPanelConfig,\n TooltipSuffix,\n TopologyComponentData,\n TranslatedData,\n TranslatedMessageWithIdRepeated,\n TranslatedMessageWithUniqueFieldRepeated,\n TranslationResources,\n Trigger,\n TriggerFieldOverride,\n TriggerFilter,\n TriggerOverride,\n TriggerProviderSPIConfig,\n Type,\n TypedDynamicParam,\n TypedDynamicParamType,\n UnifiedLightbox,\n UnifiedPage,\n UnifiedPageEditorSettings,\n UnitType,\n Until,\n UpdateDataExtensionSchemaRequest,\n UpdateDataExtensionSchemaResponse,\n UploadFileFormat,\n UploadFileFormatEnumUploadFileFormat,\n UpstreamWixCommonImage,\n Url,\n UrlData,\n UrlMapperProviderConfig,\n UrlParam,\n UserNotification,\n UserNotificationData,\n UserNotificationDataContext,\n UserNotificationDataDeeplink,\n UserNotificationDataDeeplinkOfOneOf,\n UserNotificationDataInitiator,\n UserNotificationDataInitiatorDataOneOf,\n UserNotificationDataRecipientFilter,\n UserNotificationDataRecipientFilterDataOneOf,\n UserNotificationDataRecipientFilterType,\n UserNotificationDataType,\n V1Image,\n V1ImplementedMethods,\n V1Link,\n V1LinkDataOneOf,\n V1Metadata,\n V1Region,\n V1SchemaField,\n V1TextStyle,\n V2CommunicationChannelConfiguration,\n V2Condition,\n V2Field,\n V2FieldFieldTypeOptionsOneOf,\n V2ImplementedMethods,\n V2Rule,\n V2TriggerOverride,\n ValidationMessages,\n ValidationTarget,\n ValidationsSPIConfig,\n ValueConstraintType,\n VectorArt,\n VectorArtCategoryTypes,\n VectorArtOverrides,\n VeloActionConfig,\n VeloCustomCss,\n VeloPublishPipelineTaskProviderConfig,\n VelocityEmail,\n VerticalAlignment,\n VerticalAlignmentAlignment,\n VerticalDocking,\n VibeActionType,\n VibeCustomPanelAction,\n VibeDashboardAction,\n Video,\n VideoCategoryTypes,\n VideoConferenceOptions,\n VideoData,\n VideoOverrides,\n ViewMode,\n ViewRole,\n ViewerService,\n ViewerServiceAssets,\n VisibleState,\n VoiceChannel,\n VoiceContentKeys,\n VoteRole,\n WebComponentData,\n WebComponentDataElementType,\n WebFeedChannel,\n WebFeedContentKeys,\n WebhookComponentData,\n WebhookIdentityType,\n WidgetAsContent,\n WidgetBehavior,\n WidgetComponent,\n WidgetComponentData,\n WidgetComponentOptions,\n WidgetData,\n WidgetDetails,\n WidgetDisplay,\n WidgetHorizontal,\n WidgetInstallation,\n WidgetInstallationSettings,\n WidgetInstallationSettingsTargetContainerOneOf,\n WidgetOutOfIframeComponentData,\n WidgetPluginComponentData,\n WidgetSize,\n WidgetSizeHeight,\n WidgetSizeWidth,\n WidgetSlot,\n WidgetVertical,\n WidgetWidthType,\n Width,\n WidthType,\n WixAiGatewaySpiConfig,\n WixApiOptions,\n WixCodePublishTaskName,\n WixDependency,\n WixFile,\n WixFileComponentType,\n WixFileComponentTypeOptionsOneOf,\n WixOfferingComponentData,\n WixOfferingComponentDataOfferingOneOf,\n WixPagesDomainMapping,\n WixUserData,\n WixUsersData,\n WixVibeCodingInstructions,\n WixVibeComponent,\n WixelSPIConfig,\n WorkerComponentData,\n WritingMode,\n WritingModeValue,\n _Array,\n _ArrayComponentTypeOptionsOneOf,\n _Boolean,\n _BooleanComponentTypeOptionsOneOf,\n _Date,\n _Function,\n _Number,\n _Object,\n _String,\n _StringComponentTypeOptionsOneOf,\n} from './data-extensions-v1-data-extension-schema-schemas.universal.js';\n","import { transformError as sdkTransformError } from '@wix/sdk-runtime/transform-error';\nimport {\n renameKeysFromSDKRequestToRESTRequest,\n renameKeysFromRESTResponseToSDKResponse,\n} from '@wix/sdk-runtime/rename-all-nested-keys';\nimport { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport * as ambassadorWixDataExtensionsV1DataExtensionSchema from './data-extensions-v1-data-extension-schema-schemas.http.js';\n\n/** A Data Extension Schema is the [JSON schema](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/the-json-schema) within a [schema plugin extension](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) defining `extendedFields` that are added to a Wix API's service object. */\nexport interface DataExtensionSchema {\n /**\n * Schema ID.\n * @format GUID\n * @readonly\n * @immutable\n */\n _id?: string | null;\n /**\n * FQDN of the entity this schema extends.\n * @immutable\n * @maxLength 255\n */\n fqdn?: string | null;\n /**\n * Namespace for this schema. For example, an app creating schemas might use their app name as a namespace.\n * When a site owner creates a user-defined schema, the namespace is: `_user_fields`.\n * @immutable\n * @maxLength 164\n */\n namespace?: string | null;\n /**\n * Schema definition in [JSON schema format](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/the-json-schema) with the following [vocab](https://docs.json-everything.net/schema/vocabs/) extension:\n * ```\n * {\n * \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n * \"$id\": \"https://wixapis.com/v1/json-schema/extensions\",\n * \"$vocabulary\": {\n * \"https://wixapis.com/v1/json-schema/extensions/vocab/data-extensions\": true\n * },\n * \"$dynamicAnchor\": \"meta\",\n * \"title\": \"Wix' data-extensions vocabulary meta schema\",\n * \"type\": [\n * \"object\",\n * \"boolean\"\n * ],\n * \"properties\": {\n * \"x-wix-permissions\": {\n * \"type\": \"object\",\n * \"description\": \"list of identity types that are allowed reading schema properties\",\n * \"properties\": {\n * \"read\": {\n * \"type\": \"array\",\n * \"items\": {\n * \"type\": \"string\",\n * \"enum\": [\n * \"apps\",\n * \"owning-app\",\n * \"users\",\n * \"users-of-users\"\n * ]\n * }\n * },\n * \"write\": {\n * \"type\": \"array\",\n * \"items\": {\n * \"type\": \"string\",\n * \"enum\": [\n * \"apps\",\n * \"owning-app\",\n * \"users\",\n * \"users-of-users\"\n * ]\n * }\n * }\n * }\n * },\n * \"x-wix-display\": {\n * \"type\": \"object\",\n * \"description\": \"field display properties\",\n * \"schema\": {\n * \"properties\": {\n * \"placeholder\": {\n * \"type\": \"string\",\n * \"maxLength\": 255,\n * \"description\": \"placeholder text for input fields\"\n * },\n * \"label\": {\n * \"type\": \"string\",\n * \"maxLength\": 255,\n * \"description\": \"label of the input fields\"\n * },\n * \"hint\": {\n * \"type\": \"string\",\n * \"maxLength\": 255,\n * \"description\": \"a short explanation that appears next to the input field\"\n * }\n * }\n * }\n * }\n * }\n * }\n * ```\n */\n jsonSchema?: Record<string, any> | null;\n /**\n * Date and time the schema was last updated.\n * @readonly\n */\n _updatedDate?: Date | null;\n /**\n * Date and time the schema was created.\n * @readonly\n */\n _createdDate?: Date | null;\n /**\n * Revision number, which increments by 1 each time the schema is updated. To prevent conflicting changes, the existing revision must be used when updating a schema.\n * @readonly\n */\n revision?: string | null;\n /**\n * Maximum allowed schema size in bytes.\n * @readonly\n */\n maxLimitBytes?: number | null;\n /**\n * Current schema size in bytes.\n * @readonly\n */\n currentSizeBytes?: number | null;\n /**\n * Name of the specific entity field this schema is extending, or `\"ROOT\"` for extensions for the entire entity. Default: `\"ROOT\"`.\n * @internal\n * @immutable\n * @maxLength 20\n */\n extensionPoint?: string;\n}\n\nexport enum DataExtensionSchemaState {}\n\n/** @enumType */\nexport type DataExtensionSchemaStateWithLiterals = DataExtensionSchemaState;\n\nexport interface ReindexEvent {\n /**\n * fqdn of the dext schema that needs reindexing\n * @maxLength 255\n */\n fqdn?: string;\n /**\n * List of fields that needs reindexing\n * @maxSize 100\n */\n fields?: ReindexField[];\n}\n\nexport interface ReindexField {\n /**\n * path of field that needs reindexing\n * @maxLength 2000\n */\n fieldPath?: string;\n /** only reindex records updated after this timestamp */\n reindexSince?: Date | null;\n}\n\nexport interface CreateDataExtensionSchemaRequest {\n /** Schema to create. */\n dataExtensionSchema: DataExtensionSchema;\n}\n\nexport interface CreateDataExtensionSchemaResponse {\n /** Created schema. */\n dataExtensionSchema?: DataExtensionSchema;\n}\n\nexport interface UpdateDataExtensionSchemaRequest {\n /** Schema to update. */\n dataExtensionSchema: DataExtensionSchema;\n}\n\nexport interface UpdateDataExtensionSchemaResponse {\n /** Updated schema. */\n dataExtensionSchema?: DataExtensionSchema;\n}\n\nexport interface ListDataExtensionSchemasRequest {\n /**\n * [Fully qualified domain name](https://dev.wix.com/docs/rest/articles/getting-started/fqdns).\n * @maxLength 255\n */\n fqdn: string;\n /**\n * Namespaces within the given entity.\n * @maxSize 100\n * @maxLength 164\n */\n namespaces?: string[];\n /**\n * Additional fields that are hidden by default. For example, fields with `\"x-wix-archived\": true`.\n * @maxSize 5\n */\n fields?: RequestedFieldWithLiterals[];\n /**\n * Extension points within the given entity.\n * @maxSize 20\n * @maxLength 10\n */\n extensionPoints?: string[];\n}\n\nexport enum RequestedField {\n /** Undefined requested field. */\n UNKNOWN_REQUESTED_FIELD = 'UNKNOWN_REQUESTED_FIELD',\n /** Returns `x-wix-archived` fields in `DataExtensionSchema.json_schema`. */\n ARCHIVED = 'ARCHIVED',\n}\n\n/** @enumType */\nexport type RequestedFieldWithLiterals =\n | RequestedField\n | 'UNKNOWN_REQUESTED_FIELD'\n | 'ARCHIVED';\n\nexport interface ListDataExtensionSchemasResponse {\n /** Requested schemas. */\n dataExtensionSchemas?: DataExtensionSchema[];\n}\n\nexport interface DeleteDemoDataExtensionSchemaRequest {\n /**\n * Schema ID.\n * @format GUID\n */\n dataExtensionSchemaId?: string;\n}\n\nexport interface DeleteDemoDataExtensionSchemaResponse {}\n\nexport interface DeleteGlobalExtensionSchemaRequest {\n /**\n * fqdn\n * @maxLength 255\n */\n fqdn?: string;\n /**\n * namespace\n * @maxLength 164\n */\n namespace?: string;\n /**\n * extension point\n * @maxLength 20\n */\n extensionPoint?: string;\n /** state */\n state?: DataExtensionSchemaStateWithLiterals;\n}\n\nexport interface DeleteGlobalExtensionSchemaResponse {}\n\nexport interface DeleteByWhiteListedMetaSiteRequest {\n /**\n * Meta site id\n * @format GUID\n */\n metaSiteId: string;\n}\n\nexport interface DeleteByWhiteListedMetaSiteResponse {\n /** has more */\n hasMore?: boolean;\n}\n\nexport interface DomainEvent extends DomainEventBodyOneOf {\n createdEvent?: EntityCreatedEvent;\n updatedEvent?: EntityUpdatedEvent;\n deletedEvent?: EntityDeletedEvent;\n actionEvent?: ActionEvent;\n /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n _id?: string;\n /**\n * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n */\n entityFqdn?: string;\n /**\n * Event action name, placed at the top level to make it easier for users to dispatch messages.\n * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n */\n slug?: string;\n /** ID of the entity associated with the event. */\n entityId?: string;\n /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n eventTime?: Date | null;\n /**\n * Whether the event was triggered as a result of a privacy regulation application\n * (for example, GDPR).\n */\n triggeredByAnonymizeRequest?: boolean | null;\n /** If present, indicates the action that triggered the event. */\n originatedFrom?: string | null;\n /**\n * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.\n */\n entityEventSequence?: string | null;\n}\n\n/** @oneof */\nexport interface DomainEventBodyOneOf {\n createdEvent?: EntityCreatedEvent;\n updatedEvent?: EntityUpdatedEvent;\n deletedEvent?: EntityDeletedEvent;\n actionEvent?: ActionEvent;\n}\n\nexport interface EntityCreatedEvent {\n entity?: string;\n}\n\nexport interface RestoreInfo {\n deletedDate?: Date | null;\n}\n\nexport interface EntityUpdatedEvent {\n /**\n * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.\n * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.\n * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.\n */\n currentEntity?: string;\n}\n\nexport interface EntityDeletedEvent {\n /** Entity that was deleted. */\n deletedEntity?: string | null;\n}\n\nexport interface ActionEvent {\n body?: string;\n}\n\nexport interface Empty {}\n\nexport interface AppRuntimeDataEvent {\n appRuntimeData?: AppRuntimeDataCacheEntity;\n isDraft?: boolean;\n}\n\nexport interface AppRuntimeDataCacheEntity {\n appData?: AppData;\n translatedDataMap?: Record<string, TranslatedData>;\n}\n\nexport interface RuntimeComponentCacheEntity\n extends RuntimeComponentCacheEntityComponentOneOf {\n componentEntity?: RuntimeComponentCacheEntityComponent;\n componentExperimentEntity?: RuntimeComponentCacheEntityExperiment;\n}\n\n/** @oneof */\nexport interface RuntimeComponentCacheEntityComponentOneOf {\n componentEntity?: RuntimeComponentCacheEntityComponent;\n componentExperimentEntity?: RuntimeComponentCacheEntityExperiment;\n}\n\nexport interface RuntimeComponentCacheEntityComponent {\n /**\n * The ID of the component\n * @format GUID\n */\n componentId?: string;\n /** The version of the component */\n version?: number;\n /**\n * Component name\n * @maxLength 200\n */\n name?: string | null;\n /** the type of the component */\n type?: ComponentTypeWithLiterals;\n /** the data of the component */\n data?: ComponentData;\n /** The external id of the component */\n externalId?: string | null;\n /** The additional translated keys of the component */\n additionalTranslatedKeys?: Record<string, string>;\n /** Partial update patch value */\n partialUpdatePatch?: string | null;\n /**\n * The external version of the component, if exists. Related to the component's external_id.\n * @maxLength 64\n */\n externalVersion?: string | null;\n}\n\n/** Component type */\nexport enum ComponentType {\n NONE = 'NONE',\n STUDIO = 'STUDIO',\n PLATFORM = 'PLATFORM',\n WORKER = 'WORKER',\n DASHBOARD = 'DASHBOARD',\n WIDGET = 'WIDGET',\n PAGE = 'PAGE',\n DASHBOARD_PLATFORM = 'DASHBOARD_PLATFORM',\n STUDIO_WIDGET = 'STUDIO_WIDGET',\n EMBEDDED_SCRIPT = 'EMBEDDED_SCRIPT',\n EXTENSION = 'EXTENSION',\n SNIPPET_SOLUTION = 'SNIPPET_SOLUTION',\n DATA_COMPONENT = 'DATA_COMPONENT',\n WEB = 'WEB',\n DC_CONFIG = 'DC_CONFIG',\n WIDGET_OUT_OF_IFRAME = 'WIDGET_OUT_OF_IFRAME',\n PAGE_OUT_OF_IFRAME = 'PAGE_OUT_OF_IFRAME',\n STATIC_FILE = 'STATIC_FILE',\n APP_CONFIG = 'APP_CONFIG',\n MULTIPLE_DASHBOARDS = 'MULTIPLE_DASHBOARDS',\n PAYMENTS_GATEWAY = 'PAYMENTS_GATEWAY',\n CODE_PACKAGE = 'CODE_PACKAGE',\n AUTOMATION_TRIGGER = 'AUTOMATION_TRIGGER',\n INVOICES_ACTIONS = 'INVOICES_ACTIONS',\n DASHBOARD_APPLICATION = 'DASHBOARD_APPLICATION',\n CONTACT_LABELS = 'CONTACT_LABELS',\n WIDGET_PLUGIN = 'WIDGET_PLUGIN',\n CROSS_SELL = 'CROSS_SELL',\n LOCAL_DELIVERY = 'LOCAL_DELIVERY',\n PAYMENT_PROVIDER = 'PAYMENT_PROVIDER',\n ECOM_MEMBERSHIPS = 'ECOM_MEMBERSHIPS',\n ECOM_LINE_ITEMS_ENRICHER = 'ECOM_LINE_ITEMS_ENRICHER',\n ECOM_SHIPPING_RATES = 'ECOM_SHIPPING_RATES',\n SHIPPING_LABEL_CARRIER = 'SHIPPING_LABEL_CARRIER',\n RESTAURANTS_POS = 'RESTAURANTS_POS',\n FICTIONAL_SHIPPING_PROVIDER = 'FICTIONAL_SHIPPING_PROVIDER',\n ALERT_ENRICHER = 'ALERT_ENRICHER',\n DATA_EXTENSIONS = 'DATA_EXTENSIONS',\n GENERIC_HOOKS = 'GENERIC_HOOKS',\n AUTOMATIONS_ACTION_PROVIDER = 'AUTOMATIONS_ACTION_PROVIDER',\n ECOM_CATALOG = 'ECOM_CATALOG',\n BACK_OFFICE_EXTENSION_CONTAINER = 'BACK_OFFICE_EXTENSION_CONTAINER',\n BACK_OFFICE_EXTENSION = 'BACK_OFFICE_EXTENSION',\n AUTOMATIONS_TRIGGER_PROVIDER = 'AUTOMATIONS_TRIGGER_PROVIDER',\n IDENTITY_PRE_REGISTRATION = 'IDENTITY_PRE_REGISTRATION',\n PREMIUM_PRODUCTS_PATHS = 'PREMIUM_PRODUCTS_PATHS',\n ECOM_CUSTOM_SCOPE = 'ECOM_CUSTOM_SCOPE',\n GIFT_CARDS_PROVIDER = 'GIFT_CARDS_PROVIDER',\n DEALER_EXTERNAL_FILTER_PROVIDER = 'DEALER_EXTERNAL_FILTER_PROVIDER',\n ECOM_DROPSHIPPING_PROVIDER = 'ECOM_DROPSHIPPING_PROVIDER',\n INVOICES_PROVIDER = 'INVOICES_PROVIDER',\n SEO_KEYWORDS_SUGGESTIONS = 'SEO_KEYWORDS_SUGGESTIONS',\n ECOM_DISCOUNTS_TRIGGER = 'ECOM_DISCOUNTS_TRIGGER',\n MULTILINGUAL_CONTENT_PROVIDER = 'MULTILINGUAL_CONTENT_PROVIDER',\n APPLICATION_AUTOMATION = 'APPLICATION_AUTOMATION',\n BACK_OFFICE_SIDEBAR_CATEGORY = 'BACK_OFFICE_SIDEBAR_CATEGORY',\n BACK_OFFICE_PAGE = 'BACK_OFFICE_PAGE',\n ECOM_ADDITIONAL_FEES = 'ECOM_ADDITIONAL_FEES',\n PING_USER_NOTIFICATION = 'PING_USER_NOTIFICATION',\n ECOM_RECOMMENDATIONS_PROVIDER = 'ECOM_RECOMMENDATIONS_PROVIDER',\n BOOKINGS_PRICING_PROVIDER = 'BOOKINGS_PRICING_PROVIDER',\n IDENTITY_AUTHENTICATOR = 'IDENTITY_AUTHENTICATOR',\n IDENTITY_IDP_CONNECTOR = 'IDENTITY_IDP_CONNECTOR',\n ITEMS_SELECTION_PROVIDER = 'ITEMS_SELECTION_PROVIDER',\n PORTFOLIO_SYNCED_PROJECTS_PROVIDER = 'PORTFOLIO_SYNCED_PROJECTS_PROVIDER',\n COMMUNICATION_CHANNEL = 'COMMUNICATION_CHANNEL',\n IDENTITY_POST_LOGIN = 'IDENTITY_POST_LOGIN',\n BACK_OFFICE_WIDGET = 'BACK_OFFICE_WIDGET',\n SOCIAL_MARKETING_DESIGN = 'SOCIAL_MARKETING_DESIGN',\n FORMS_SUBMISSIONS_PROVIDER = 'FORMS_SUBMISSIONS_PROVIDER',\n WIX_OFFERING = 'WIX_OFFERING',\n DEV_CENTER_TESTING_COMPONENT = 'DEV_CENTER_TESTING_COMPONENT',\n COMPONENTS_VALIDATOR_PROVIDER = 'COMPONENTS_VALIDATOR_PROVIDER',\n COMPONENTS_TRANSLATIONS_ADDITIONAL_FIELDS_PROVIDER = 'COMPONENTS_TRANSLATIONS_ADDITIONAL_FIELDS_PROVIDER',\n FORMS_SCHEMA_PROVIDER = 'FORMS_SCHEMA_PROVIDER',\n BOOKINGS_EXTERNAL_CALENDAR_PROVIDER = 'BOOKINGS_EXTERNAL_CALENDAR_PROVIDER',\n ECOM_DEFAULT_TAXATION_CATEGORY = 'ECOM_DEFAULT_TAXATION_CATEGORY',\n VIEWER_DYNAMIC_SITE_STRUCTURE_PROVIDER = 'VIEWER_DYNAMIC_SITE_STRUCTURE_PROVIDER',\n PING_UOU_NOTIFICATION = 'PING_UOU_NOTIFICATION',\n HEADLESS_OAUTH = 'HEADLESS_OAUTH',\n ECOM_TAX_CALCULATOR_SPI = 'ECOM_TAX_CALCULATOR_SPI',\n COMMENTS_MODERATION_PROVIDER = 'COMMENTS_MODERATION_PROVIDER',\n GRID_APP_FILES_TRANSFORMER = 'GRID_APP_FILES_TRANSFORMER',\n BENEFIT_PROGRAMS_POLICY_PROVIDER = 'BENEFIT_PROGRAMS_POLICY_PROVIDER',\n PREMIUM_CUSTOM_CHARGES = 'PREMIUM_CUSTOM_CHARGES',\n ECOM_VALIDATIONS = 'ECOM_VALIDATIONS',\n COMPONENT_REFERENCE_DATA_PROVIDER = 'COMPONENT_REFERENCE_DATA_PROVIDER',\n WIX_REVIEWS_PRODUCT_CATALOG = 'WIX_REVIEWS_PRODUCT_CATALOG',\n SOCIAL_MARKETING_DESIGNS_PROVIDER = 'SOCIAL_MARKETING_DESIGNS_PROVIDER',\n GOOGLE_BUSINESS_PROFILE_FEATURE_PROVIDER = 'GOOGLE_BUSINESS_PROFILE_FEATURE_PROVIDER',\n COMMENTS_FILTER_PROVIDER = 'COMMENTS_FILTER_PROVIDER',\n BILLING_TAX_ID_VALIDATOR = 'BILLING_TAX_ID_VALIDATOR',\n PING_SETTINGS_GROUP = 'PING_SETTINGS_GROUP',\n FORMS_SPAM_SUBMISSIONS_PROVIDER = 'FORMS_SPAM_SUBMISSIONS_PROVIDER',\n EDITOR_ADDON = 'EDITOR_ADDON',\n EXTERNAL_DATABASE_PROVIDER = 'EXTERNAL_DATABASE_PROVIDER',\n ECOM_PAYMENT_SETTINGS = 'ECOM_PAYMENT_SETTINGS',\n NOTIFICATION_TOPIC = 'NOTIFICATION_TOPIC',\n NOTIFICATION_PREFERENCES_FILTER_PROVIDER = 'NOTIFICATION_PREFERENCES_FILTER_PROVIDER',\n BOOKINGS_RESOURCE_TYPES_PROVIDER = 'BOOKINGS_RESOURCE_TYPES_PROVIDER',\n PRICING_PLANS_FORM_CONFIGURATION = 'PRICING_PLANS_FORM_CONFIGURATION',\n USER_NOTIFICATION = 'USER_NOTIFICATION',\n CONTACT_NOTIFICATION = 'CONTACT_NOTIFICATION',\n UNIFIED_PAGE = 'UNIFIED_PAGE',\n AVAILABILITY_TIME_SLOTS_CONFIGURATION_PROVIDER = 'AVAILABILITY_TIME_SLOTS_CONFIGURATION_PROVIDER',\n PROPOSAL_EDITOR_PROVIDER = 'PROPOSAL_EDITOR_PROVIDER',\n CUSTOM_TABLE_RESERVATIONS_PROVIDER = 'CUSTOM_TABLE_RESERVATIONS_PROVIDER',\n COMMENTS_CONTEXT_PROVIDER = 'COMMENTS_CONTEXT_PROVIDER',\n FORMS_SPAM_SUBMISSION_REPORTS_PROVIDER = 'FORMS_SPAM_SUBMISSION_REPORTS_PROVIDER',\n AUTOMATIONS_VELO_ACTION_PROVIDER = 'AUTOMATIONS_VELO_ACTION_PROVIDER',\n CALENDAR_EVENT_TYPE_PROVIDER = 'CALENDAR_EVENT_TYPE_PROVIDER',\n /** Reserved - previously was `SERVICE_AVAILABILITY_POLICY_PROVIDER` */\n RESERVED = 'RESERVED',\n SMS_ACTION_MESSAGE = 'SMS_ACTION_MESSAGE',\n BOOKING_POLICY_PROVIDER = 'BOOKING_POLICY_PROVIDER',\n MULTI_SERVICE_BOOKING_POLICY_PROVIDER = 'MULTI_SERVICE_BOOKING_POLICY_PROVIDER',\n AI_ASSISTANT = 'AI_ASSISTANT',\n FORMS_SUBMISSIONS_EXTENSION_PROVIDER = 'FORMS_SUBMISSIONS_EXTENSION_PROVIDER',\n MULTILINGUAL_TRANSLATION_SCHEMA = 'MULTILINGUAL_TRANSLATION_SCHEMA',\n TAX_CALCULATION_PROVIDER = 'TAX_CALCULATION_PROVIDER',\n TAX_GROUPS_PROVIDER = 'TAX_GROUPS_PROVIDER',\n BACK_OFFICE_MODAL = 'BACK_OFFICE_MODAL',\n DEPLOYMENT_PIPELINE_PROVIDER = 'DEPLOYMENT_PIPELINE_PROVIDER',\n CUSTOM_ELEMENT_WIDGET = 'CUSTOM_ELEMENT_WIDGET',\n BACK_OFFICE_EXTENSION_WIDGET = 'BACK_OFFICE_EXTENSION_WIDGET',\n BACK_OFFICE_EXTENSION_MENU_ITEM = 'BACK_OFFICE_EXTENSION_MENU_ITEM',\n FORM_TEMPLATE = 'FORM_TEMPLATE',\n NOTIFICATION_CONTENT = 'NOTIFICATION_CONTENT',\n BROADCAST_LIST = 'BROADCAST_LIST',\n PARTNERS_PAYOUTS = 'PARTNERS_PAYOUTS',\n WIX_REVIEWS_ENTITY_CATALOG = 'WIX_REVIEWS_ENTITY_CATALOG',\n VELO_PUBLISH_PIPELINE_TASK_PROVIDER = 'VELO_PUBLISH_PIPELINE_TASK_PROVIDER',\n FUNCTIONS_SHOP_PRICE_PROVIDER = 'FUNCTIONS_SHOP_PRICE_PROVIDER',\n FUNCTION = 'FUNCTION',\n ECOM_CHECKOUT_CONTENT = 'ECOM_CHECKOUT_CONTENT',\n COMMUNICATION_CHANNEL_PROVIDER = 'COMMUNICATION_CHANNEL_PROVIDER',\n WEBHOOK = 'WEBHOOK',\n TOPOLOGY = 'TOPOLOGY',\n LOYALTY_CUSTOM_REWARDS = 'LOYALTY_CUSTOM_REWARDS',\n FUNCTION_RECIPE = 'FUNCTION_RECIPE',\n BACK_OFFICE_EXTERNAL_URL = 'BACK_OFFICE_EXTERNAL_URL',\n IDENTITY_FACTOR = 'IDENTITY_FACTOR',\n ECOM_DISCOUNTS = 'ECOM_DISCOUNTS',\n VELO_CUSTOM_CSS = 'VELO_CUSTOM_CSS',\n DEALER_ADAPTIVE_COMPONENT_PROVIDER = 'DEALER_ADAPTIVE_COMPONENT_PROVIDER',\n AI_ASSISTANT_ACTION = 'AI_ASSISTANT_ACTION',\n ECOM_INVENTORY = 'ECOM_INVENTORY',\n MONITORING = 'MONITORING',\n PAPI_PROVIDER = 'PAPI_PROVIDER',\n UNIFIED_LIGHTBOX = 'UNIFIED_LIGHTBOX',\n FORMS_EXTENSION_PROVIDER = 'FORMS_EXTENSION_PROVIDER',\n MULTILINGUAL_TRANSLATION_SCHEMA_GROUP = 'MULTILINGUAL_TRANSLATION_SCHEMA_GROUP',\n PANEL = 'PANEL',\n PREMIUM_PURCHASE_VALIDATIONS = 'PREMIUM_PURCHASE_VALIDATIONS',\n BROWSER_STORAGE = 'BROWSER_STORAGE',\n SDK_DEFINITION = 'SDK_DEFINITION',\n SITE_WIDGET_SLOT = 'SITE_WIDGET_SLOT',\n CALENDAR_EVENT_VALIDATION_PROVIDER = 'CALENDAR_EVENT_VALIDATION_PROVIDER',\n CLIENT_SIDE_SERVICE = 'CLIENT_SIDE_SERVICE',\n BILLING_SETTINGS = 'BILLING_SETTINGS',\n PATTERNS_WIZARD = 'PATTERNS_WIZARD',\n APPLICATION_PROFILE = 'APPLICATION_PROFILE',\n TEXT_TO_SPEECH_ACTION_MESSAGE = 'TEXT_TO_SPEECH_ACTION_MESSAGE',\n AUDIENCE_PROVIDER = 'AUDIENCE_PROVIDER',\n PRICING_PLANS_PRICE = 'PRICING_PLANS_PRICE',\n PRICING_PLAN_START_DATE_LIMITS = 'PRICING_PLAN_START_DATE_LIMITS',\n PRICING_PLAN_START_DATE_RULES = 'PRICING_PLAN_START_DATE_RULES',\n EVENTS_TICKET_RESERVATIONS = 'EVENTS_TICKET_RESERVATIONS',\n PAYMENTS_DISPUTE_SERVICE_PLUGIN = 'PAYMENTS_DISPUTE_SERVICE_PLUGIN',\n PRICING_PLANS_FEES = 'PRICING_PLANS_FEES',\n EDITOR_REACT_COMPONENT = 'EDITOR_REACT_COMPONENT',\n SUPPLIERS_HUB_MARKETPLACE = 'SUPPLIERS_HUB_MARKETPLACE',\n FORM_SCHEMA_DYNAMIC_VALUES = 'FORM_SCHEMA_DYNAMIC_VALUES',\n BLOG_PAYWALL_PROVIDER = 'BLOG_PAYWALL_PROVIDER',\n LOYALTY_CUSTOM_REWARDS_V2 = 'LOYALTY_CUSTOM_REWARDS_V2',\n STORES_PRODUCT_RESTRICTIONS = 'STORES_PRODUCT_RESTRICTIONS',\n FORM_SUBMISSION_MODERATION = 'FORM_SUBMISSION_MODERATION',\n EVENTS_EVENT_BADGES = 'EVENTS_EVENT_BADGES',\n BILLING_OPERATION = 'BILLING_OPERATION',\n BACK_OFFICE_CUSTOMIZATION = 'BACK_OFFICE_CUSTOMIZATION',\n COMPONENT_ENRICHER_PROVIDER = 'COMPONENT_ENRICHER_PROVIDER',\n BACK_OFFICE_RESTRICTED_CUSTOMIZATION = 'BACK_OFFICE_RESTRICTED_CUSTOMIZATION',\n EDITOR_APP_PREVIEWS_POC = 'EDITOR_APP_PREVIEWS_POC',\n LEGENDS_PERSONA_CONFIGURATION = 'LEGENDS_PERSONA_CONFIGURATION',\n WIX_HOSTING_APP_DEPLOYMENT_PROVIDER = 'WIX_HOSTING_APP_DEPLOYMENT_PROVIDER',\n BACKEND_WORKER = 'BACKEND_WORKER',\n EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER = 'EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER',\n WIX_HOSTING_APP_ENVIRONMENT_PROVIDER = 'WIX_HOSTING_APP_ENVIRONMENT_PROVIDER',\n SDK_EXPORTS = 'SDK_EXPORTS',\n VIEWER_SERVICE = 'VIEWER_SERVICE',\n WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN = 'WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN',\n CONTACTS_SEGMENTS_V2_FILTER_PROVIDER = 'CONTACTS_SEGMENTS_V2_FILTER_PROVIDER',\n ANALYTICS_PRODUCT_CATALOG = 'ANALYTICS_PRODUCT_CATALOG',\n SITE_MIGRATION = 'SITE_MIGRATION',\n RESTAURANTS_POS_PROVIDER_SETTINGS_SERVICE_PLUGIN = 'RESTAURANTS_POS_PROVIDER_SETTINGS_SERVICE_PLUGIN',\n WIX_VIBE_CODING_INSTRUCTIONS = 'WIX_VIBE_CODING_INSTRUCTIONS',\n TAX_EXEMPT_GROUPS_PROVIDER = 'TAX_EXEMPT_GROUPS_PROVIDER',\n BOOKING_AUTOMATIONS_CONFIGURATION = 'BOOKING_AUTOMATIONS_CONFIGURATION',\n WIX_VIBE_COMPONENT = 'WIX_VIBE_COMPONENT',\n WIXEL = 'WIXEL',\n STAFF_SORTING_PROVIDER = 'STAFF_SORTING_PROVIDER',\n FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER = 'FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER',\n FUNCTIONS_ASSISTANT_TOOLS = 'FUNCTIONS_ASSISTANT_TOOLS',\n SITE_MAP_INFO_PROVIDER = 'SITE_MAP_INFO_PROVIDER',\n WIX_AI_GATEWAY_CALLBACK = 'WIX_AI_GATEWAY_CALLBACK',\n URL_MAPPER_PROVIDER = 'URL_MAPPER_PROVIDER',\n PROVIDER_SUPPRESSION_SERVICE_PLUGIN = 'PROVIDER_SUPPRESSION_SERVICE_PLUGIN',\n ECOM_FORMS = 'ECOM_FORMS',\n EDITOR_CONTEXT_PROVIDER = 'EDITOR_CONTEXT_PROVIDER',\n EDITOR_FUNCTION_LIBRARY = 'EDITOR_FUNCTION_LIBRARY',\n BOOKINGS_PLATFORM_CONFIGURATION = 'BOOKINGS_PLATFORM_CONFIGURATION',\n}\n\n/** @enumType */\nexport type ComponentTypeWithLiterals =\n | ComponentType\n | 'NONE'\n | 'STUDIO'\n | 'PLATFORM'\n | 'WORKER'\n | 'DASHBOARD'\n | 'WIDGET'\n | 'PAGE'\n | 'DASHBOARD_PLATFORM'\n | 'STUDIO_WIDGET'\n | 'EMBEDDED_SCRIPT'\n | 'EXTENSION'\n | 'SNIPPET_SOLUTION'\n | 'DATA_COMPONENT'\n | 'WEB'\n | 'DC_CONFIG'\n | 'WIDGET_OUT_OF_IFRAME'\n | 'PAGE_OUT_OF_IFRAME'\n | 'STATIC_FILE'\n | 'APP_CONFIG'\n | 'MULTIPLE_DASHBOARDS'\n | 'PAYMENTS_GATEWAY'\n | 'CODE_PACKAGE'\n | 'AUTOMATION_TRIGGER'\n | 'INVOICES_ACTIONS'\n | 'DASHBOARD_APPLICATION'\n | 'CONTACT_LABELS'\n | 'WIDGET_PLUGIN'\n | 'CROSS_SELL'\n | 'LOCAL_DELIVERY'\n | 'PAYMENT_PROVIDER'\n | 'ECOM_MEMBERSHIPS'\n | 'ECOM_LINE_ITEMS_ENRICHER'\n | 'ECOM_SHIPPING_RATES'\n | 'SHIPPING_LABEL_CARRIER'\n | 'RESTAURANTS_POS'\n | 'FICTIONAL_SHIPPING_PROVIDER'\n | 'ALERT_ENRICHER'\n | 'DATA_EXTENSIONS'\n | 'GENERIC_HOOKS'\n | 'AUTOMATIONS_ACTION_PROVIDER'\n | 'ECOM_CATALOG'\n | 'BACK_OFFICE_EXTENSION_CONTAINER'\n | 'BACK_OFFICE_EXTENSION'\n | 'AUTOMATIONS_TRIGGER_PROVIDER'\n | 'IDENTITY_PRE_REGISTRATION'\n | 'PREMIUM_PRODUCTS_PATHS'\n | 'ECOM_CUSTOM_SCOPE'\n | 'GIFT_CARDS_PROVIDER'\n | 'DEALER_EXTERNAL_FILTER_PROVIDER'\n | 'ECOM_DROPSHIPPING_PROVIDER'\n | 'INVOICES_PROVIDER'\n | 'SEO_KEYWORDS_SUGGESTIONS'\n | 'ECOM_DISCOUNTS_TRIGGER'\n | 'MULTILINGUAL_CONTENT_PROVIDER'\n | 'APPLICATION_AUTOMATION'\n | 'BACK_OFFICE_SIDEBAR_CATEGORY'\n | 'BACK_OFFICE_PAGE'\n | 'ECOM_ADDITIONAL_FEES'\n | 'PING_USER_NOTIFICATION'\n | 'ECOM_RECOMMENDATIONS_PROVIDER'\n | 'BOOKINGS_PRICING_PROVIDER'\n | 'IDENTITY_AUTHENTICATOR'\n | 'IDENTITY_IDP_CONNECTOR'\n | 'ITEMS_SELECTION_PROVIDER'\n | 'PORTFOLIO_SYNCED_PROJECTS_PROVIDER'\n | 'COMMUNICATION_CHANNEL'\n | 'IDENTITY_POST_LOGIN'\n | 'BACK_OFFICE_WIDGET'\n | 'SOCIAL_MARKETING_DESIGN'\n | 'FORMS_SUBMISSIONS_PROVIDER'\n | 'WIX_OFFERING'\n | 'DEV_CENTER_TESTING_COMPONENT'\n | 'COMPONENTS_VALIDATOR_PROVIDER'\n | 'COMPONENTS_TRANSLATIONS_ADDITIONAL_FIELDS_PROVIDER'\n | 'FORMS_SCHEMA_PROVIDER'\n | 'BOOKINGS_EXTERNAL_CALENDAR_PROVIDER'\n | 'ECOM_DEFAULT_TAXATION_CATEGORY'\n | 'VIEWER_DYNAMIC_SITE_STRUCTURE_PROVIDER'\n | 'PING_UOU_NOTIFICATION'\n | 'HEADLESS_OAUTH'\n | 'ECOM_TAX_CALCULATOR_SPI'\n | 'COMMENTS_MODERATION_PROVIDER'\n | 'GRID_APP_FILES_TRANSFORMER'\n | 'BENEFIT_PROGRAMS_POLICY_PROVIDER'\n | 'PREMIUM_CUSTOM_CHARGES'\n | 'ECOM_VALIDATIONS'\n | 'COMPONENT_REFERENCE_DATA_PROVIDER'\n | 'WIX_REVIEWS_PRODUCT_CATALOG'\n | 'SOCIAL_MARKETING_DESIGNS_PROVIDER'\n | 'GOOGLE_BUSINESS_PROFILE_FEATURE_PROVIDER'\n | 'COMMENTS_FILTER_PROVIDER'\n | 'BILLING_TAX_ID_VALIDATOR'\n | 'PING_SETTINGS_GROUP'\n | 'FORMS_SPAM_SUBMISSIONS_PROVIDER'\n | 'EDITOR_ADDON'\n | 'EXTERNAL_DATABASE_PROVIDER'\n | 'ECOM_PAYMENT_SETTINGS'\n | 'NOTIFICATION_TOPIC'\n | 'NOTIFICATION_PREFERENCES_FILTER_PROVIDER'\n | 'BOOKINGS_RESOURCE_TYPES_PROVIDER'\n | 'PRICING_PLANS_FORM_CONFIGURATION'\n | 'USER_NOTIFICATION'\n | 'CONTACT_NOTIFICATION'\n | 'UNIFIED_PAGE'\n | 'AVAILABILITY_TIME_SLOTS_CONFIGURATION_PROVIDER'\n | 'PROPOSAL_EDITOR_PROVIDER'\n | 'CUSTOM_TABLE_RESERVATIONS_PROVIDER'\n | 'COMMENTS_CONTEXT_PROVIDER'\n | 'FORMS_SPAM_SUBMISSION_REPORTS_PROVIDER'\n | 'AUTOMATIONS_VELO_ACTION_PROVIDER'\n | 'CALENDAR_EVENT_TYPE_PROVIDER'\n | 'RESERVED'\n | 'SMS_ACTION_MESSAGE'\n | 'BOOKING_POLICY_PROVIDER'\n | 'MULTI_SERVICE_BOOKING_POLICY_PROVIDER'\n | 'AI_ASSISTANT'\n | 'FORMS_SUBMISSIONS_EXTENSION_PROVIDER'\n | 'MULTILINGUAL_TRANSLATION_SCHEMA'\n | 'TAX_CALCULATION_PROVIDER'\n | 'TAX_GROUPS_PROVIDER'\n | 'BACK_OFFICE_MODAL'\n | 'DEPLOYMENT_PIPELINE_PROVIDER'\n | 'CUSTOM_ELEMENT_WIDGET'\n | 'BACK_OFFICE_EXTENSION_WIDGET'\n | 'BACK_OFFICE_EXTENSION_MENU_ITEM'\n | 'FORM_TEMPLATE'\n | 'NOTIFICATION_CONTENT'\n | 'BROADCAST_LIST'\n | 'PARTNERS_PAYOUTS'\n | 'WIX_REVIEWS_ENTITY_CATALOG'\n | 'VELO_PUBLISH_PIPELINE_TASK_PROVIDER'\n | 'FUNCTIONS_SHOP_PRICE_PROVIDER'\n | 'FUNCTION'\n | 'ECOM_CHECKOUT_CONTENT'\n | 'COMMUNICATION_CHANNEL_PROVIDER'\n | 'WEBHOOK'\n | 'TOPOLOGY'\n | 'LOYALTY_CUSTOM_REWARDS'\n | 'FUNCTION_RECIPE'\n | 'BACK_OFFICE_EXTERNAL_URL'\n | 'IDENTITY_FACTOR'\n | 'ECOM_DISCOUNTS'\n | 'VELO_CUSTOM_CSS'\n | 'DEALER_ADAPTIVE_COMPONENT_PROVIDER'\n | 'AI_ASSISTANT_ACTION'\n | 'ECOM_INVENTORY'\n | 'MONITORING'\n | 'PAPI_PROVIDER'\n | 'UNIFIED_LIGHTBOX'\n | 'FORMS_EXTENSION_PROVIDER'\n | 'MULTILINGUAL_TRANSLATION_SCHEMA_GROUP'\n | 'PANEL'\n | 'PREMIUM_PURCHASE_VALIDATIONS'\n | 'BROWSER_STORAGE'\n | 'SDK_DEFINITION'\n | 'SITE_WIDGET_SLOT'\n | 'CALENDAR_EVENT_VALIDATION_PROVIDER'\n | 'CLIENT_SIDE_SERVICE'\n | 'BILLING_SETTINGS'\n | 'PATTERNS_WIZARD'\n | 'APPLICATION_PROFILE'\n | 'TEXT_TO_SPEECH_ACTION_MESSAGE'\n | 'AUDIENCE_PROVIDER'\n | 'PRICING_PLANS_PRICE'\n | 'PRICING_PLAN_START_DATE_LIMITS'\n | 'PRICING_PLAN_START_DATE_RULES'\n | 'EVENTS_TICKET_RESERVATIONS'\n | 'PAYMENTS_DISPUTE_SERVICE_PLUGIN'\n | 'PRICING_PLANS_FEES'\n | 'EDITOR_REACT_COMPONENT'\n | 'SUPPLIERS_HUB_MARKETPLACE'\n | 'FORM_SCHEMA_DYNAMIC_VALUES'\n | 'BLOG_PAYWALL_PROVIDER'\n | 'LOYALTY_CUSTOM_REWARDS_V2'\n | 'STORES_PRODUCT_RESTRICTIONS'\n | 'FORM_SUBMISSION_MODERATION'\n | 'EVENTS_EVENT_BADGES'\n | 'BILLING_OPERATION'\n | 'BACK_OFFICE_CUSTOMIZATION'\n | 'COMPONENT_ENRICHER_PROVIDER'\n | 'BACK_OFFICE_RESTRICTED_CUSTOMIZATION'\n | 'EDITOR_APP_PREVIEWS_POC'\n | 'LEGENDS_PERSONA_CONFIGURATION'\n | 'WIX_HOSTING_APP_DEPLOYMENT_PROVIDER'\n | 'BACKEND_WORKER'\n | 'EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER'\n | 'WIX_HOSTING_APP_ENVIRONMENT_PROVIDER'\n | 'SDK_EXPORTS'\n | 'VIEWER_SERVICE'\n | 'WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN'\n | 'CONTACTS_SEGMENTS_V2_FILTER_PROVIDER'\n | 'ANALYTICS_PRODUCT_CATALOG'\n | 'SITE_MIGRATION'\n | 'RESTAURANTS_POS_PROVIDER_SETTINGS_SERVICE_PLUGIN'\n | 'WIX_VIBE_CODING_INSTRUCTIONS'\n | 'TAX_EXEMPT_GROUPS_PROVIDER'\n | 'BOOKING_AUTOMATIONS_CONFIGURATION'\n | 'WIX_VIBE_COMPONENT'\n | 'WIXEL'\n | 'STAFF_SORTING_PROVIDER'\n | 'FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER'\n | 'FUNCTIONS_ASSISTANT_TOOLS'\n | 'SITE_MAP_INFO_PROVIDER'\n | 'WIX_AI_GATEWAY_CALLBACK'\n | 'URL_MAPPER_PROVIDER'\n | 'PROVIDER_SUPPRESSION_SERVICE_PLUGIN'\n | 'ECOM_FORMS'\n | 'EDITOR_CONTEXT_PROVIDER'\n | 'EDITOR_FUNCTION_LIBRARY'\n | 'BOOKINGS_PLATFORM_CONFIGURATION';\n\n/** Component data */\nexport interface ComponentData extends ComponentDataDataOneOf {\n /**\n * Create a widget iframe that users can display on their site. We recommend submitting a proposal before using iframes in your app.\n * Learn More: https://devforum.wix.com/en/article/widget-components\n */\n widgetComponentData?: WidgetComponentData;\n /**\n * Display an iframe as a page on a user's site.\n * Learn More: https://dev.wix.com/docs/build-apps/developer-tools/extensions/iframes/guide-to-page-extensions\n */\n pageComponentData?: PageComponentData;\n /**\n * Open an iframe in the Dashboard, or add a link to a page on your platform.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/external-links/about-external-link-extensions\n */\n dashboardComponentData?: DashboardComponentData;\n /**\n * Use an invisible iframe to track activity. It’s added to every page on the site (max. 1).\n * Learn More: https://devforum.wix.com/en/article/worker-components\n */\n workerComponentData?: WorkerComponentData;\n /**\n * Inject a script into a site’s HTML code.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/embedded-scripts/about-embedded-scripts\n */\n embeddedScriptComponentData?: EmbeddedScriptComponentData;\n /**\n * Extend a site’s CMS to store and manage custom data.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/data-collections/about-data-collections-extensions\n */\n dataComponent?: DataComponent;\n /**\n * Display a widget that fits into a predefined slot in a Wix app.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-plugins/about-site-plugin-extensions\n */\n widgetPlugin?: WidgetPluginComponentData;\n /**\n * Provide custom shipping rates to a site's cart and checkout.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/shipping-rates-integration-service-plugin/introduction\n */\n ecomShippingRates?: ShippingRatesConfig;\n /** Extend a Wix entity with custom fields for your app */\n dataExtensions?: DataExtensionsComponentData;\n /**\n * Become a Wix catalog provider and integrate any external repository of sellable items with the Wix eCommerce platform.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/catalog-service-plugin/introduction\n */\n ecomCatalog?: CatalogSPIConfig;\n /**\n * Implement gift card benefits such as balance retrieval, redemption, and voiding transactions.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/gift-cards-service-plugin/introduction\n */\n giftCardsProvider?: GiftCardProviderConfig;\n /**\n * Provide SEO keyword suggestions to site collaborators, report quota usage, and provide a page where users can upgrade their plan.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/marketing/seo-keywords-suggestions-v-1/introduction\n */\n seoKeywordsSuggestions?: SeoKeywordsSuggestionsSPIConfig;\n /**\n * Configure a page for your app that will be embedded in the Wix Dashboard.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-pages/about-dashboard-page-extensions\n */\n backOfficePage?: BackOfficePage;\n /**\n * Provide custom additional fees that are added to a site's cart and checkout.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/additional-fees-service-plugin/introduction\n */\n ecomAdditionalFees?: AdditionalFeesSPIConfig;\n /** Bookings Pricing Provider SPI */\n bookingsPricingProvider?: BookingsPricingProviderConfig;\n /**\n * Apply custom charges to a site based on usage of your app's services.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/app-management/apps/custom-charges-spi/introduction\n */\n premiumCustomCharges?: CustomChargesConfig;\n /**\n * Validate items in a site's cart and checkout based on custom logic.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/wix-e-commerce/validations-integration-spi/introduction\n */\n ecomValidations?: ValidationsSPIConfig;\n /**\n * Build a tool that adds functionality to the Wix editors.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/editor-extensions/about-editor-extensions\n */\n editorAddon?: EditorAddon;\n /** External Database component */\n externalDatabaseProvider?: ExternalDatabaseSpiConfig;\n /**\n * Integrate your service with Wix's payment process to allow merchants to request and use your services on their Wix sites.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/payment-settings-integration-service-plugin/introduction\n */\n ecomPaymentSettings?: PaymentSettingsSPIConfig;\n /**\n * Add a site page that displays selected widgets.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-pages/about-site-page-extensions\n */\n unifiedPage?: UnifiedPage;\n /** Create a reusable modal that can be utilized across multiple pages within your app and in other applications. */\n backOfficeModal?: BackOfficeModal;\n /**\n * Display a draggable widget on a site using a self-hosted custom element.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-widgets/about-site-widget-extensions\n */\n customElementWidget?: CustomElementWidget;\n /**\n * Restriction service plugin for editing products managed by third-party fulfillment apps, such as dropshipping or print-on-demand services\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/stores/service-plugins/product-restrictions-v3/introduction\n */\n storesProductRestrictions?: ProductRestrictionsConfig;\n /**\n * SDK exports for existing app relavent SDK\n * @internal\n */\n sdkExports?: SDKExports;\n}\n\n/** @oneof */\nexport interface ComponentDataDataOneOf {\n /**\n * Create a widget iframe that users can display on their site. We recommend submitting a proposal before using iframes in your app.\n * Learn More: https://devforum.wix.com/en/article/widget-components\n */\n widgetComponentData?: WidgetComponentData;\n /**\n * Display an iframe as a page on a user's site.\n * Learn More: https://dev.wix.com/docs/build-apps/developer-tools/extensions/iframes/guide-to-page-extensions\n */\n pageComponentData?: PageComponentData;\n /**\n * Open an iframe in the Dashboard, or add a link to a page on your platform.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/external-links/about-external-link-extensions\n */\n dashboardComponentData?: DashboardComponentData;\n /**\n * Use an invisible iframe to track activity. It’s added to every page on the site (max. 1).\n * Learn More: https://devforum.wix.com/en/article/worker-components\n */\n workerComponentData?: WorkerComponentData;\n /**\n * Inject a script into a site’s HTML code.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/embedded-scripts/about-embedded-scripts\n */\n embeddedScriptComponentData?: EmbeddedScriptComponentData;\n /**\n * Extend a site’s CMS to store and manage custom data.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/data-collections/about-data-collections-extensions\n */\n dataComponent?: DataComponent;\n /**\n * Display a widget that fits into a predefined slot in a Wix app.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-plugins/about-site-plugin-extensions\n */\n widgetPlugin?: WidgetPluginComponentData;\n /**\n * Provide custom shipping rates to a site's cart and checkout.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/shipping-rates-integration-service-plugin/introduction\n */\n ecomShippingRates?: ShippingRatesConfig;\n /** Extend a Wix entity with custom fields for your app */\n dataExtensions?: DataExtensionsComponentData;\n /**\n * Become a Wix catalog provider and integrate any external repository of sellable items with the Wix eCommerce platform.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/catalog-service-plugin/introduction\n */\n ecomCatalog?: CatalogSPIConfig;\n /**\n * Implement gift card benefits such as balance retrieval, redemption, and voiding transactions.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/gift-cards-service-plugin/introduction\n */\n giftCardsProvider?: GiftCardProviderConfig;\n /**\n * Provide SEO keyword suggestions to site collaborators, report quota usage, and provide a page where users can upgrade their plan.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/marketing/seo-keywords-suggestions-v-1/introduction\n */\n seoKeywordsSuggestions?: SeoKeywordsSuggestionsSPIConfig;\n /**\n * Configure a page for your app that will be embedded in the Wix Dashboard.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-pages/about-dashboard-page-extensions\n */\n backOfficePage?: BackOfficePage;\n /**\n * Provide custom additional fees that are added to a site's cart and checkout.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/additional-fees-service-plugin/introduction\n */\n ecomAdditionalFees?: AdditionalFeesSPIConfig;\n /** Bookings Pricing Provider SPI */\n bookingsPricingProvider?: BookingsPricingProviderConfig;\n /**\n * Apply custom charges to a site based on usage of your app's services.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/app-management/apps/custom-charges-spi/introduction\n */\n premiumCustomCharges?: CustomChargesConfig;\n /**\n * Validate items in a site's cart and checkout based on custom logic.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/wix-e-commerce/validations-integration-spi/introduction\n */\n ecomValidations?: ValidationsSPIConfig;\n /**\n * Build a tool that adds functionality to the Wix editors.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/editor-extensions/about-editor-extensions\n */\n editorAddon?: EditorAddon;\n /** External Database component */\n externalDatabaseProvider?: ExternalDatabaseSpiConfig;\n /**\n * Integrate your service with Wix's payment process to allow merchants to request and use your services on their Wix sites.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/payment-settings-integration-service-plugin/introduction\n */\n ecomPaymentSettings?: PaymentSettingsSPIConfig;\n /**\n * Add a site page that displays selected widgets.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-pages/about-site-page-extensions\n */\n unifiedPage?: UnifiedPage;\n /** Create a reusable modal that can be utilized across multiple pages within your app and in other applications. */\n backOfficeModal?: BackOfficeModal;\n /**\n * Display a draggable widget on a site using a self-hosted custom element.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-widgets/about-site-widget-extensions\n */\n customElementWidget?: CustomElementWidget;\n /**\n * Restriction service plugin for editing products managed by third-party fulfillment apps, such as dropshipping or print-on-demand services\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/stores/service-plugins/product-restrictions-v3/introduction\n */\n storesProductRestrictions?: ProductRestrictionsConfig;\n /**\n * SDK exports for existing app relavent SDK\n * @internal\n */\n sdkExports?: SDKExports;\n}\n\n/** An iframe to be displayed on the user’s site */\nexport interface WidgetComponentData {\n /** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */\n fixedPositionOption?: FixedPositionOptions;\n /** Widget will automatically be stretched to this width after installing it */\n widgetWidthType?: WidgetWidthTypeWithLiterals;\n /**\n * Widget width size\n * @max 9999\n */\n width?: number | null;\n /**\n * Widget width height\n * @max 9999\n */\n height?: number | null;\n /**\n * A public link to the widget endpoint\n * @format WEB_URL\n */\n widgetEndpointUrl?: string | null;\n /** A public link to the mobile endpoint */\n widgetMobileEndpointUrl?: string | null;\n /** A public link to the settings endpoint */\n settingsEndpointUrl?: string | null;\n /** A public link to the SEO endpoint */\n seoEndpointUrl?: string | null;\n /** Product display data for this component */\n widgetDisplay?: WidgetDisplay;\n /** When true, this is the default component */\n default?: boolean;\n /** When this is turned on, this page will be added to the site when installing the app, regardless of whether it's the default component or not */\n essential?: boolean;\n /** Published state for this widget */\n published?: boolean;\n /** When true, allow this widget to be added only once */\n addOnlyOnce?: boolean;\n /**\n * This ID is used to identify your widget endpoint in a Wix site. You can use this ID when using methods of the Wix SDK\n * @readonly\n */\n tpaWidgetId?: string;\n /** Where this should be rendered */\n position?: Position;\n /** Article id in settings panel */\n helpId?: string | null;\n /** Default Mobile Height */\n defaultMobileHeight?: number | null;\n /** Min Mobile Height */\n minMobileHeight?: number | null;\n /** Mobile Settings Enabled */\n mobileSettingsEnabled?: boolean;\n /** Mobile article id in settings panel */\n mobileHelpId?: string | null;\n /**\n * Editor setting version. optional values: 1 (old - deprecated) or 2 (new). default value is 2\n * @min 1\n * @max 2\n */\n settingsVersion?: number | null;\n /** If setting version is 1, this will be the public link to the settings endpoint */\n settingsEndpointUrlV1?: string | null;\n /** A public link to the settings endpoint on ADI editor */\n onBoardingSettingsEndpointUrl?: string | null;\n /** The sub pages list for this component to be rendered in */\n subPages?: SubPage[];\n /** If this component should be stretched in relation to a form factor (desktop, tablet, mobile) */\n isStretched?: IsStretched;\n /** Any margins this page should have in relation to a form factor (desktop, tablet, mobile) */\n margins?: Margins;\n /** Any docking this page (horizontal / vertical) should have in relation to a form factor (desktop, tablet, mobile) */\n docking?: Docking;\n /** The height of this page in relation to a form factor (desktop, tablet, mobile) */\n heightBreakPoints?: Height;\n /** The width of this page in relation to a form factor (desktop, tablet, mobile) */\n widthBreakPoints?: ApiWidth;\n /** Keep default and let users stretch widget to full width (GFPP) */\n addStretchButton?: boolean;\n /** toggle to mark whether the editor should revoke an app that contains this component. */\n excludeFromAutoRevoke?: boolean;\n /** should be <%=serviceUrl('your_artifact_id', '<resource-path>')%>, this field will later be used to trasform the settings url field in both the component and the **derived widget** */\n settingsEndpointUrlTemplate?: string | null;\n /** should be <%=serviceUrl('your_artifact_id', '<resource-path>')%>, this field will later be used to trasform the settings url field in both the component and the **derived widget** */\n settingsEndpointUrlV1Template?: string | null;\n}\n\n/** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */\nexport interface FixedPositionOptions {\n /** Vertical widget position in the browser window */\n widgetVertical?: WidgetVerticalWithLiterals;\n /** Horizontal widget position in the browser window */\n widgetHorizontal?: WidgetHorizontalWithLiterals;\n}\n\n/** Vertical widget position in the browser window */\nexport enum WidgetVertical {\n NONE_VERTICAL = 'NONE_VERTICAL',\n TOP = 'TOP',\n CENTER_VERTICAL = 'CENTER_VERTICAL',\n BOTTOM = 'BOTTOM',\n}\n\n/** @enumType */\nexport type WidgetVerticalWithLiterals =\n | WidgetVertical\n | 'NONE_VERTICAL'\n | 'TOP'\n | 'CENTER_VERTICAL'\n | 'BOTTOM';\n\n/** Horizontal widget position in the browser window */\nexport enum WidgetHorizontal {\n NONE_HORIZONTAL = 'NONE_HORIZONTAL',\n LEFT = 'LEFT',\n CENTER_HORIZONTAL = 'CENTER_HORIZONTAL',\n RIGHT = 'RIGHT',\n}\n\n/** @enumType */\nexport type WidgetHorizontalWithLiterals =\n | WidgetHorizontal\n | 'NONE_HORIZONTAL'\n | 'LEFT'\n | 'CENTER_HORIZONTAL'\n | 'RIGHT';\n\n/** Widget will automatically be stretched to this width after installing it */\nexport enum WidgetWidthType {\n NONE_TYPE = 'NONE_TYPE',\n /** A custom width for the widget */\n CUSTOM = 'CUSTOM',\n /** Full width of the browser window */\n FULL = 'FULL',\n}\n\n/** @enumType */\nexport type WidgetWidthTypeWithLiterals =\n | WidgetWidthType\n | 'NONE_TYPE'\n | 'CUSTOM'\n | 'FULL';\n\nexport interface WidgetDisplay {\n name?: string;\n /**\n * short description about the widget\n * @maxLength 300\n */\n shortDescription?: string | null;\n /** images showing off how the widget looks */\n images?: string[];\n /** optional, if no order exist for all components, will be decided by order in array (non-deterministic) */\n order?: number | null;\n price?: number | null;\n variationId?: string | null;\n}\n\nexport interface Position {\n region?: RegionWithLiterals;\n}\n\nexport enum Region {\n no_region = 'no_region',\n header = 'header',\n pageContainer = 'pageContainer',\n footer = 'footer',\n}\n\n/** @enumType */\nexport type RegionWithLiterals =\n | Region\n | 'no_region'\n | 'header'\n | 'pageContainer'\n | 'footer';\n\nexport interface SubPage {\n /** The path of the subpage */\n key?: string;\n /** If it's sub entities are enumerable for querying (for example, a search endpoint is not enumerable) */\n enumerable?: boolean;\n /** Should hide inner routes of this sub page from floating dynamic pages navigation bar */\n hideFromFloatingNavBar?: boolean;\n /** Should hide this sub page from selections in link panel */\n hideFromLinkPanel?: boolean;\n}\n\nexport interface IsStretched {\n desktop?: boolean | null;\n tablet?: boolean | null;\n mobile?: boolean | null;\n}\n\nexport interface Margins {\n desktop?: DisplayProperties;\n tablet?: DisplayProperties;\n mobile?: DisplayProperties;\n}\n\nexport interface DisplayProperties {\n top?: DisplayValue;\n right?: DisplayValue;\n bottom?: DisplayValue;\n left?: DisplayValue;\n}\n\nexport interface DisplayValue {\n type?: UnitTypeWithLiterals;\n value?: number | null;\n}\n\nexport enum UnitType {\n NO_UNIT = 'NO_UNIT',\n AUTO = 'AUTO',\n PX = 'PX',\n VH = 'VH',\n VW = 'VW',\n PERCENTAGE = 'PERCENTAGE',\n}\n\n/** @enumType */\nexport type UnitTypeWithLiterals =\n | UnitType\n | 'NO_UNIT'\n | 'AUTO'\n | 'PX'\n | 'VH'\n | 'VW'\n | 'PERCENTAGE';\n\nexport interface Docking {\n desktop?: DockingProperties;\n tablet?: DockingProperties;\n mobile?: DockingProperties;\n}\n\nexport interface DockingProperties {\n horizontal?: HorizontalDockingWithLiterals;\n vertical?: VerticalDockingWithLiterals;\n}\n\nexport enum HorizontalDocking {\n NO_HDOCKING = 'NO_HDOCKING',\n LEFT_DOCKING = 'LEFT_DOCKING',\n HCENTER = 'HCENTER',\n RIGHT_DOCKING = 'RIGHT_DOCKING',\n}\n\n/** @enumType */\nexport type HorizontalDockingWithLiterals =\n | HorizontalDocking\n | 'NO_HDOCKING'\n | 'LEFT_DOCKING'\n | 'HCENTER'\n | 'RIGHT_DOCKING';\n\nexport enum VerticalDocking {\n NO_VDOCKING = 'NO_VDOCKING',\n TOP_DOCKING = 'TOP_DOCKING',\n VCENTER = 'VCENTER',\n BOTTOM_DOCKING = 'BOTTOM_DOCKING',\n}\n\n/** @enumType */\nexport type VerticalDockingWithLiterals =\n | VerticalDocking\n | 'NO_VDOCKING'\n | 'TOP_DOCKING'\n | 'VCENTER'\n | 'BOTTOM_DOCKING';\n\nexport interface Height {\n desktop?: DisplayValue;\n tablet?: DisplayValue;\n mobile?: DisplayValue;\n}\n\nexport interface ApiWidth {\n desktop?: DisplayValue;\n tablet?: DisplayValue;\n mobile?: DisplayValue;\n}\n\n/** SSR caching configuration for site members */\nexport enum SiteMembersSsrCaching {\n UNKNOWN_SITE_MEMBERS_SSR_CACHING = 'UNKNOWN_SITE_MEMBERS_SSR_CACHING',\n /** SSR caching is allowed when site members are logged in */\n CACHING_ALLOWED = 'CACHING_ALLOWED',\n /** SSR caching is not allowed when site members are logged in */\n CACHING_NOT_ALLOWED = 'CACHING_NOT_ALLOWED',\n}\n\n/** @enumType */\nexport type SiteMembersSsrCachingWithLiterals =\n | SiteMembersSsrCaching\n | 'UNKNOWN_SITE_MEMBERS_SSR_CACHING'\n | 'CACHING_ALLOWED'\n | 'CACHING_NOT_ALLOWED';\n\n/** MPA Navigation configuration */\nexport enum MpaNavigation {\n DEFAULT = 'DEFAULT',\n /** MPA Navigation is enabled for this component */\n ALLOWED = 'ALLOWED',\n /** MPA Navigation is disabled for this component */\n NOT_ALLOWED = 'NOT_ALLOWED',\n}\n\n/** @enumType */\nexport type MpaNavigationWithLiterals =\n | MpaNavigation\n | 'DEFAULT'\n | 'ALLOWED'\n | 'NOT_ALLOWED';\n\n/** An iframe to be displayed as a full page on the user’s site */\nexport interface PageComponentData {\n /** Hide this page from the user’s site menu */\n isHidden?: boolean;\n /** Show in pages menu */\n showInPanel?: boolean | null;\n /** Set page to full width */\n isFullWidth?: boolean;\n /** Keep default and let users stretch page to full width (GFPP) */\n addStrechButton?: boolean;\n /**\n * A public link to the page endpoint\n * @format WEB_URL\n */\n pageEndpointUrl?: string | null;\n /** A public link to the mobile endpoint */\n pageMobileEndpointUrl?: string | null;\n /** A public link to the settings endpoint */\n settingsEndpointUrl?: string | null;\n /** A public link to the SEO endpoint */\n seoEndpointUrl?: string | null;\n /**\n * When true, this is the default component\n * Main visual component. One components must be default (no more than 1 component)\n */\n default?: boolean;\n /**\n * Second visual component\n * When this is turned on, this page will be added to the site when installing the app, regardless of whether it's the default component or not\n */\n essential?: boolean;\n /** Published state for this page */\n published?: boolean;\n /**\n * This ID is used to identify your page endpoint in a Wix site. You can use this ID when using methods of the Wix SDK\n * @readonly\n */\n tpaWidgetId?: string;\n /** Article id in settings panel */\n helpId?: string | null;\n /** Default Mobile Height */\n defaultMobileHeight?: number | null;\n /** Min Mobile Height */\n minMobileHeight?: number | null;\n /** Mobile Settings Enabled */\n mobileSettingsEnabled?: boolean;\n /** Mobile article id in settings panel */\n mobileHelpId?: string | null;\n /**\n * Editor setting version. optional values: 1 (old - deprecated) or 2 (new). default value is 2\n * @min 1\n * @max 2\n */\n settingsVersion?: number | null;\n /** If setting version is 1, this will be the public link to the settings endpoint */\n settingsEndpointUrlV1?: string | null;\n /** A public link to the settings endpoint on ADI editor */\n onBoardingSettingsEndpointUrl?: string | null;\n /** The padding to use in different views */\n padding?: Padding;\n /** The sub pages list for this component to be rendered in */\n subPages?: SubPage[];\n /** toggle to mark whether the editor should revoke an app that contains this component. */\n excludeFromAutoRevoke?: boolean;\n /** Options to mark whether this page is replacing other page or is replaced by other page. */\n pageReplaceOptions?: PageReplaceOptions;\n /** Elements in the editor can be linked to this page (a button for example) */\n linkable?: boolean | null;\n /** Should add the page to site menu. defaults to true (will add the page to site menu) */\n addToSiteMenu?: boolean | null;\n /** Should allow multiple instances of the page (allow duplicate the page). defaults to false (will not allow multiple instances of the page) */\n multiInstanceEnabled?: boolean;\n /**\n * short description about the page\n * @maxLength 300\n */\n shortDescription?: string | null;\n}\n\nexport interface Padding {\n desktop?: DisplayProperties;\n tablet?: DisplayProperties;\n mobile?: DisplayProperties;\n}\n\nexport interface PageReplaceOptions extends PageReplaceOptionsOptionsOneOf {\n replacingOptions?: ReplacingOptions;\n replaceableOptions?: ReplaceableOptions;\n type?: ReplacementTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface PageReplaceOptionsOptionsOneOf {\n replacingOptions?: ReplacingOptions;\n replaceableOptions?: ReplaceableOptions;\n}\n\nexport interface PageReplace {\n /**\n * The app id of the page the app can replace\n * @format GUID\n */\n appId?: string;\n /**\n * The page id the app can replace\n * @format GUID\n */\n pageId?: string;\n}\n\nexport enum ReplacementType {\n UNKNOWN_REPLACEMENT = 'UNKNOWN_REPLACEMENT',\n REPLACING = 'REPLACING',\n REPLACEABLE = 'REPLACEABLE',\n}\n\n/** @enumType */\nexport type ReplacementTypeWithLiterals =\n | ReplacementType\n | 'UNKNOWN_REPLACEMENT'\n | 'REPLACING'\n | 'REPLACEABLE';\n\nexport interface ReplacingOptions {\n /** describe the page and application id that this page will replace. */\n pageReplace?: PageReplace;\n}\n\nexport interface ReplaceableOptions {\n /** toggle to mark whether this page can be replaced by other page or app. */\n isReplaceable?: boolean;\n}\n\n/** A widget out of iframe component that loads directly in the Editor DOM */\nexport interface WidgetOutOfIframeComponentData {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n componentUrl?: string;\n /**\n * Iframe controller URL.\n * @format WEB_URL\n */\n controllerUrl?: string | null;\n /** Information about the widget. */\n widgetData?: WidgetComponentData;\n /**\n * Out of iframe SSR URL.\n * @format WEB_URL\n */\n ssrComponentUrl?: string | null;\n /** Format: `<%=serviceUrl('your_artifact_id', 'component_url_bundle_file')%>`. */\n componentUrlTemplate?: string | null;\n /** Format: `<%=serviceUrl('your_artifact_id', 'controller_url_bundle_file')%>`. */\n controllerUrlTemplate?: string | null;\n /** Out of iframe widget data. */\n outOfIframeData?: OutOfIframeData;\n /** Format: `<%=serviceUrl('your_artifact_id', 'no_css_component_url_bundle_file')%>`. */\n noCssComponentUrlTemplate?: string | null;\n /**\n * Out of iframe no css component URL.\n * @format WEB_URL\n */\n noCssComponentUrl?: string | null;\n /** Whether to support different style param values for different breakpoints. */\n cssPerBreakpoint?: boolean | null;\n /**\n * builderConfig static url.\n * @format WEB_URL\n */\n builderConfigUrl?: string | null;\n /**\n * Builder config URL template. `<%=serviceUrl('your_artifact_id', 'builder_url_bundle_file')%>`\n * @maxLength 512\n */\n builderConfigUrlTemplate?: string | null;\n /** Whether to render the component in the Editor as React (true) or as an iframe (false) */\n ooiInEditor?: boolean | null;\n}\n\n/** Out Of Iframes additional info */\nexport interface OutOfIframeData {\n /** The setting URLs for the app */\n settingsUrls?: SettingsUrl[];\n /** Automatically installed on app installation */\n autoInstall?: boolean;\n /** The info about how to report errors for the App */\n errorReporting?: ErrorReporting;\n /** The list of slots available */\n slots?: ApiSlot[];\n /** if true, ssr will not cache pages that contain this widget */\n ssrCacheExcluded?: boolean;\n /** Should use loadable-components */\n isLoadable?: boolean;\n /**\n * if true, when site member is logged in and this widget is in the page - ssr will not cache it\n * @deprecated if true, when site member is logged in and this widget is in the page - ssr will not cache it\n * @replacedBy site_members_ssr_caching\n * @targetRemovalDate 2025-12-31\n */\n siteMembersSsrCacheExcluded?: boolean;\n /**\n * Controls SSR caching behavior when site members are logged in\n * @deprecated Controls SSR caching behavior when site members are logged in\n * @targetRemovalDate 2026-03-01\n */\n siteMembersSsrCaching?: SiteMembersSsrCachingWithLiterals;\n}\n\n/** An editor settings configuration */\nexport interface SettingsUrl {\n /**\n * The URL for the setting panel\n * @format WEB_URL\n */\n url?: string;\n /** What type of editor this is */\n editorType?: string;\n /** How this view is rendered (mobile, tablet, etc) */\n viewType?: string;\n /** should be <%=serviceUrl('your_artifact_id', '<resource-path>')%>, this field will later be used to trasform the settings url field in both the component and the **derived widget** */\n urlTemplate?: string | null;\n}\n\n/** Error reporting configuration for the App */\nexport interface ErrorReporting {\n /** An error reporting URL to be used by our infra (Example: A sentry DSN url) */\n url?: string;\n /** Optional: Data about the artifact that reports the error. */\n artifact?: ErrorReportingArtifact;\n}\n\n/** Data of the artifact that reports an error. */\nexport interface ErrorReportingArtifact {\n /**\n * The full artifact id of the project which errors are associated with (Example: com.wixpress.my-artifact)\n * @minLength 1\n * @maxLength 255\n */\n fullArtifactId?: string;\n /**\n * The project version which errors are associated with (Example: Falcon fingerprint)\n * @minLength 1\n * @maxLength 255\n */\n version?: string;\n}\n\n/** Definition of slot */\nexport interface ApiSlot {\n /** Role of the slot component (uniquely identifies slot within parent comp; used by Velo) - former \"slotName\" */\n slotRole?: string;\n /** The list of interfaces that should be implemented by a plugin in order to fit the slot */\n pluginInterfaces?: PluginInterfaceWithLiterals[];\n /** Id of the slot component (a.k.a. Velo role) */\n slotId?: string;\n}\n\n/** The types of public APIs exposed by the Plugin */\nexport enum PluginInterface {\n /** No public APIs exposed */\n NONE_INTERFACE = 'NONE_INTERFACE',\n /** The slot requires the REVIEWS interface to be implemented by the plugin. The plugin specifies the implementation of the REVIEWS interface */\n REVIEWS = 'REVIEWS',\n /** The slot requires the RATINGS_SUMMARY interface to be implemented by the plugin. The plugin specifies the implementation of the RATINGS_SUMMARY interface */\n RATINGS_SUMMARY = 'RATINGS_SUMMARY',\n /** The slot requires the RATINGS_SUMMARY_OOI_LIST interface to be implemented by the plugin. The plugin specifies the implementation of the RATINGS_SUMMARY_OOI_LIST interface */\n RATINGS_SUMMARY_OOI_LIST = 'RATINGS_SUMMARY_OOI_LIST',\n /** The slot requires the BOOKINGS_SERVICE interface to be implemented by the plugin. The plugin specifies the implementation of the BOOKINGS_SERVICE interface */\n BOOKINGS_SERVICE = 'BOOKINGS_SERVICE',\n /** The slot requires the BOOKINGS_FORM interface to be implemented by the plugin. The plugin specifies the implementation of the BOOKINGS_FORM interface */\n BOOKINGS_FORM = 'BOOKINGS_FORM',\n /** The slot requires the BASE interface to be implemented by the plugin. The plugin specifies the implementation of the BASE interface */\n BASE = 'BASE',\n /** The slot requires the EVENT interface to be implemented by the plugin. The plugin specifies the implementation of the EVENT interface */\n EVENT = 'EVENT',\n /** The slot requires the PRODUCT interface to be implemented by the plugin. The plugin specifies the implementation of the PRODUCT interface */\n PRODUCT = 'PRODUCT',\n /** The slot requires the CHECKOUT interface to be implemented by the plugin. The plugin specifies the implementation of the CHECKOUT interface */\n CHECKOUT = 'CHECKOUT',\n /** The slot requires the CATEGORY interface to be implemented by the plugin. The plugin specifies the implementation of the CATEGORY interface */\n CATEGORY = 'CATEGORY',\n /** The slot requires the BOOKINGS_CALENDAR interface to be implemented by the plugin. The plugin specifies the implementation of the BOOKINGS_CALENDAR interface */\n BOOKINGS_CALENDAR = 'BOOKINGS_CALENDAR',\n /** The slot requires the CART interface to be implemented by the plugin. The plugin specifies the implementation of the CART interface */\n CART = 'CART',\n}\n\n/** @enumType */\nexport type PluginInterfaceWithLiterals =\n | PluginInterface\n | 'NONE_INTERFACE'\n | 'REVIEWS'\n | 'RATINGS_SUMMARY'\n | 'RATINGS_SUMMARY_OOI_LIST'\n | 'BOOKINGS_SERVICE'\n | 'BOOKINGS_FORM'\n | 'BASE'\n | 'EVENT'\n | 'PRODUCT'\n | 'CHECKOUT'\n | 'CATEGORY'\n | 'BOOKINGS_CALENDAR'\n | 'CART';\n\nexport interface ExtensionExposure {\n /** Determines if the component is production ready */\n maturity?: MaturityWithLiterals;\n}\n\nexport enum Exposure {\n /** Unexposed. to be used by dev team only */\n PRIVATE = 'PRIVATE',\n /** Exposed internally */\n INTERNAL = 'INTERNAL',\n /** Exposed to the world */\n PUBLIC = 'PUBLIC',\n}\n\n/** @enumType */\nexport type ExposureWithLiterals = Exposure | 'PRIVATE' | 'INTERNAL' | 'PUBLIC';\n\nexport enum Maturity {\n /** Immature. subject to breaking changes */\n ALPHA = 'ALPHA',\n /** Ready for integration. 2 weeks notice before breaking changes are applied */\n BETA = 'BETA',\n /** Matured. breaking changes are not acceptable. 3 month notice before sunset */\n GA = 'GA',\n /** Not yet implemented */\n NOT_IMPLEMENTED = 'NOT_IMPLEMENTED',\n}\n\n/** @enumType */\nexport type MaturityWithLiterals =\n | Maturity\n | 'ALPHA'\n | 'BETA'\n | 'GA'\n | 'NOT_IMPLEMENTED';\n\n/** A page out of iframe component that loads directly in the Editor DOM */\nexport interface PageOutOfIframeComponentData {\n /**\n * Out of iframe component URL.\n * @format WEB_URL\n */\n componentUrl?: string;\n /**\n * Out of iframe controller URL.\n * @format WEB_URL\n */\n controllerUrl?: string | null;\n /** Page data. */\n pageData?: PageComponentData;\n /**\n * Out of iframe SSR URL.\n * @format WEB_URL\n */\n ssrComponentUrl?: string | null;\n /** Component URL template. `<%=serviceUrl('your_artifact_id', 'component_url_bundle_file')%>` */\n componentUrlTemplate?: string | null;\n /** Controller URL template. `<%=serviceUrl('your_artifact_id', 'controller_url_bundle_file')%>` */\n controllerUrlTemplate?: string | null;\n /** Data about the out of iframe page. */\n outOfIframeData?: OutOfIframeData;\n /** Setting endpoint URL template. `<%=serviceUrl('your_artifact_id', '<resource-path>')%>`. Used to transform the settings URL field in both the component and the **derived widget**. */\n settingsEndpointUrlTemplate?: string | null;\n /** Setting endpoint URL v1 template. `<%=serviceUrl('your_artifact_id', '<resource-path>')%>`. Used to transform the settings URL field in both the component and the **derived widget**. */\n settingsEndpointUrlV1Template?: string | null;\n /** No css component URL template. `<%=serviceUrl('your_artifact_id', 'no_css_component_url_bundle_file')%>`. */\n noCssComponentUrlTemplate?: string | null;\n /**\n * URL for the out of iframe no CSS component URL.\n * @format WEB_URL\n */\n noCssComponentUrl?: string | null;\n /** Whether to enable support for different style param values for different breakpoints. */\n cssPerBreakpoint?: boolean | null;\n /**\n * builderConfig static url.\n * @format WEB_URL\n */\n builderConfigUrl?: string | null;\n /**\n * Builder config URL template. `<%=serviceUrl('your_artifact_id', 'builder_url_bundle_file')%>`\n * @maxLength 512\n */\n builderConfigUrlTemplate?: string | null;\n /** Whether to render the component in the Editor as React (true) or as an iframe (false) */\n ooiInEditor?: boolean | null;\n}\n\n/** Create a collection of native Editor components that loads directly in the Editor DOM */\nexport interface PlatfromComponentData {\n /**\n * Path to a Javascript file that Editor runs on app install\n * @format WEB_URL\n */\n editorScriptUrl?: string | null;\n /** Path to a Javascript file that viewer runs for page components / widgets and applicative business logic */\n viewerScriptUrl?: string | null;\n /** If true, components of the app wont be added to the editor (only run editor scripts) */\n platformOnly?: boolean;\n /** If the viewer script should run in the Editor */\n enableInEditor?: boolean;\n /** URL to get complex routing decisions at runtime from a platform app. Some spec can be seen here: https://docs.google.com/document/d/1t_3bl9vVMoPVm_I9Sx59LsVUPXi07gihGIg3-F7z8Q0/edit?ts=595512f6#heading=h.9ca9859ng5d */\n routerServiceUrl?: string | null;\n /**\n * Path to a Javascript file that viewer runs for page components / widgets and applicative business logic. Includes verbose logs for Wix runtime.\n * @format WEB_URL\n */\n viewerVerboseScriptUrl?: string | null;\n /** A map of string descriptor the app understands to a versioned URL topology value, can be an API or statics data. Example: `storesCartAPI: https://stores.com/api/v2/cart/ */\n baseUrls?: Record<string, string>;\n /** Used by DAC (gradual roll-out). A map of string descriptor the app understands to a template versioned URL topology value, Example: `storeCSSStuff: https://static.pararstorage.com/services/stores-css-stuff/<%=serviceVersion('your_artifact_id')%>/main.css */\n baseUrlsTemplate?: Record<string, string>;\n /** should be <%=serviceUrl('your_artifact_id', 'viewer_script_url_bundle_file')%> */\n viewerScriptUrlTemplate?: string | null;\n /** If this component should be stretched in relation to a form factor (desktop, tablet, mobile) */\n isStretched?: IsStretched;\n /** Any margins this page should have in relation to a form factor (desktop, tablet, mobile) */\n margins?: Margins;\n /** Any docking this page (horizontal / vertical) should have in relation to a form factor (desktop, tablet, mobile) */\n docking?: Docking;\n /** The height of this page in relation to a form factor (desktop, tablet, mobile) */\n height?: Height;\n /** The width of this page in relation to a form factor (desktop, tablet, mobile) */\n width?: ApiWidth;\n /**\n * Support adding application pages with preset data\n * Vertical endpoint that clones the data\n * https://docs.google.com/document/d/1pUp-d9vVMCTjDdQffBuwh1mBvQacQZy0n6nm2amCMV4/edit\n * @format WEB_URL\n */\n cloneAppDataUrl?: string | null;\n /**\n * False by default\n * If false, data is cloned per app\n * If true, the data is cloned per add component on component addition\n */\n shouldCloneDataPerComponent?: boolean;\n /**\n * Error reporting URL used to report errors at platform level,\n * and as fallback for pageOOI and widgetOOI error reporting\n */\n errorReporting?: ErrorReporting;\n /**\n * A concrete versioned URL of the translation template, contains `{language}` parameter in the path\n * @format WEB_URL\n */\n editorTranslationUrl?: string | null;\n /** A version templated URL of the translation template, contains a <%=serviceVersion('your_artifact_id')%> template and a `{language}` template */\n editorTranslationUrlTemplate?: string | null;\n excludeFromAutoRevoke?: boolean;\n /** dictates if the app has migrated to the new platform API */\n migratedToNewPlatformApi?: boolean;\n /** The HTTP Verb used to call the router, if not set will be POST */\n routerHttpMethod?: HTTPMethodWithLiterals;\n}\n\n/** Add interim support for HTTP methods before a bigger rewrite for Routers as a component */\nexport enum HTTPMethod {\n UNKNOWN_METHOD = 'UNKNOWN_METHOD',\n GET = 'GET',\n POST = 'POST',\n}\n\n/** @enumType */\nexport type HTTPMethodWithLiterals =\n | HTTPMethod\n | 'UNKNOWN_METHOD'\n | 'GET'\n | 'POST';\n\n/**\n * An iframe that opens in the user’s Wix Dashboard,\n * or add a link to open the page directly in your platform.\n */\nexport interface DashboardComponentData {\n /**\n * The dashboard url.\n * @format WEB_URL\n */\n url?: string;\n /**\n * External or Internal dashboard.\n * The user’s Wix Dashboard (recommended) or your platform or site\n */\n embedded?: boolean;\n /**\n * A settings page for users to customize your dashboard\n * @maxLength 300\n */\n settingsPageUrl?: string | null;\n /** @maxLength 300 */\n checkStatusUrl?: string | null;\n published?: boolean | null;\n hideWixSideMenu?: boolean | null;\n}\n\n/** An invisible iframe to track site activity. It’ll be added to every page on the user’s site */\nexport interface WorkerComponentData {\n /**\n * A public link to the worker endpoint\n * @format WEB_URL\n */\n workerEndpointUrl?: string;\n}\n\n/**\n * An extension to platform used by Wix Blocks UI\n * The main component in the Wix Blocks.\n * no manual adding. auto-created only from Wix Blocks\n */\nexport interface StudioComponentData {\n /** Path to a Javascript file that Editor runs on app install */\n editorScriptUrl?: string;\n /** Path to a Javascript file that viewer runs for page components / widgets and applicative business logic */\n viewerScriptUrl?: string;\n /** If true, components of the app wont be added to the editor (only run editor scripts) */\n platformOnly?: boolean;\n /** If the viewer script should run in the Editor */\n enableInEditor?: boolean;\n /** URL to get complex routing decisions at runtime from a platform app. Some spec can be seen here: https://docs.google.com/document/d/1t_3bl9vVMoPVm_I9Sx59LsVUPXi07gihGIg3-F7z8Q0/edit?ts=595512f6#heading=h.9ca9859ng5d */\n routerServiceUrl?: string;\n /** Path to a Javascript file that viewer runs for page components / widgets and applicative business logic. Includes verbose logs for Wix runtime. */\n viewerVerboseScriptUrl?: string;\n /**\n * Instance id of wixCode in the original dev site. used in order to access the widgets code\n * @format GUID\n */\n wixCodeInstanceId?: string;\n /**\n * Id of the grid in wixCode FS where the widgets code is located. used in order to access the widgets code\n * @format GUID\n */\n wixCodeGridId?: string;\n /** Path to a json which contains metaData of the devSite */\n siteHeaderUrl?: string;\n /** A map of string descriptor the app understands to a versioned URL topology value, can be an API or statics data. This may have some values which are NOT URL since Studio computes some values on the fly. */\n baseUrls?: Record<string, string>;\n /** If true, not shown in add panel and apps panel when it is installed */\n hideInAddPanel?: boolean;\n /** if true, this studio component enforce permissions */\n permissionsEnforced?: boolean;\n}\n\n/** A widget component in the Wix Blocks. */\nexport interface StudioWidgetComponentData {\n /** Id of the widget */\n studioWidgetId?: string;\n /** Path to a json which contains the widget data and structure */\n pageJsonFilename?: string;\n /** variationId -> widget variation data */\n variations?: Record<string, StudioWidgetVariation>;\n /** Product display data for this component */\n widgetDisplay?: WidgetDisplay;\n /** If it is required to be installed as part of the app */\n essential?: boolean;\n /** The version of blocks used to build this widget */\n blocksVersion?: string;\n /** If this component should be stretched in relation to a form factor (desktop, tablet, mobile) */\n isStretched?: IsStretched;\n /** Any margins this page should have in relation to a form factor (desktop, tablet, mobile) */\n margins?: Margins;\n /** Any docking this page (horizontal / vertical) should have in relation to a form factor (desktop, tablet, mobile) */\n docking?: Docking;\n /** The height of this page in relation to a form factor (desktop, tablet, mobile) */\n height?: Height;\n /** The width of this page in relation to a form factor (desktop, tablet, mobile) */\n width?: ApiWidth;\n /** Properties of installed custom elements */\n customElement?: CustomElement;\n /** ids of nested widgets in this widget */\n nestedWidgets?: NestedWidgets;\n /** Properties of widget's presets */\n presetsInfo?: PresetInfo[];\n /** Widget properties that affect the way it behaves during installation in a site. */\n installationSettings?: InstallationSettings;\n /** Properties that affect the widget's presence in the editor. */\n editorPresence?: EditorPresence;\n /** Base info of component by shared logic of unified components */\n base?: BaseInfo;\n /** Unified widget installation settings */\n installation?: WidgetInstallationSettings;\n /**\n * Optional: The URL of the widget's code bundle\n * @format WEB_URL\n */\n widgetBundleUrl?: string | null;\n}\n\n/** A variation of a blocks widget */\nexport interface StudioWidgetVariation {\n /** Id of the widget variation */\n _id?: string;\n /** Display name of the variation */\n name?: string;\n /** Path to a json which contains the widget variation data and structure */\n pageJsonFilename?: string;\n}\n\nexport interface CustomElement extends CustomElementConsentCategoryOneOf {\n essential?: boolean;\n /** Related to performance and other functional measurements. */\n functional?: boolean;\n /** Related to analytics about how the site is used in order to improve it. */\n analytics?: boolean;\n /** Related to allowing better customization of the experience to a current visitor. */\n advertising?: boolean;\n /** Boolean to make custom element in this widget be available for free sites */\n allowedForFreeSite?: boolean;\n /** CCPA compliance flag. */\n dataToThirdParty?: boolean;\n}\n\n/** @oneof */\nexport interface CustomElementConsentCategoryOneOf {\n essential?: boolean;\n /** Related to performance and other functional measurements. */\n functional?: boolean;\n /** Related to analytics about how the site is used in order to improve it. */\n analytics?: boolean;\n /** Related to allowing better customization of the experience to a current visitor. */\n advertising?: boolean;\n}\n\n/** Nested widgets */\nexport interface NestedWidgets {\n /**\n * ids of all recursively nested widgets from the same Blocks app\n * @format GUID\n */\n internal?: string[];\n}\n\n/** Preset Info */\nexport interface PresetInfo {\n /** Id of the widget's preset */\n presetId?: string;\n /** Display name of the widget's preset */\n presetName?: string;\n /** The default size used when the preset is added to the stage */\n defaultSize?: PresetSize;\n}\n\n/** Preset Size */\nexport interface PresetSize {\n /** The width of the preset when it's added to the stage */\n width?: DisplayValue;\n /** The height of the preset when it's added to the stage */\n height?: DisplayValue;\n}\n\n/** Settings to control the behavour of widgets when installed in a wix site. */\nexport interface InstallationSettings extends InstallationSettingsOptionsOneOf {\n /** Extra options needed when `install_page` is set to `PAGE`. */\n pageOptions?: PageOptions;\n /** Extra options needed when `install_page` is set to `LIGHTBOX`. */\n lightboxOptions?: LightboxOptions;\n /** How to add the widget automatically to the site. Options could be `NO_PAGE`, `CURRENT`, `PAGE` or `LIGHTBOX`. */\n installPage?: InstallPageWithLiterals;\n /** Controls whether to show or hide the widget in the add panel. */\n showInAddPanel?: boolean | null;\n /** Defines the main preset per breakpoint for the widget. */\n mainPresets?: MainPresets;\n}\n\n/** @oneof */\nexport interface InstallationSettingsOptionsOneOf {\n /** Extra options needed when `install_page` is set to `PAGE`. */\n pageOptions?: PageOptions;\n /** Extra options needed when `install_page` is set to `LIGHTBOX`. */\n lightboxOptions?: LightboxOptions;\n}\n\n/** The page to which a new widget can be added */\nexport enum InstallPage {\n /** Don't add widget to a page */\n NO_PAGE = 'NO_PAGE',\n /** Add widget to the current page in the editor */\n CURRENT = 'CURRENT',\n /** Add widget to a new page in the editor */\n PAGE = 'PAGE',\n /** Add widget to a new lightbox in the editor */\n LIGHTBOX = 'LIGHTBOX',\n}\n\n/** @enumType */\nexport type InstallPageWithLiterals =\n | InstallPage\n | 'NO_PAGE'\n | 'CURRENT'\n | 'PAGE'\n | 'LIGHTBOX';\n\n/** Defines the main preset per breakpoint for the widget. */\nexport interface MainPresets {\n /** The main desktop preset. */\n desktopPresetId?: string;\n /** The main tablet preset. */\n tabletPresetId?: string;\n /** The main mobile preset. */\n mobilePresetId?: string;\n}\n\n/** Options for widgets that are added as a page during installation */\nexport interface PageOptions {\n /** Display name of the page that will be shown in the page menu. */\n pageName?: string;\n /** The page ID used for navigation purposes. Once set cannot be changed. */\n pageId?: string;\n}\n\nexport interface LightboxOptions {\n /** Display name of the lightbox that will be shown in the lightbox menu. */\n lightboxName?: string;\n /** The lightbox ID used for navigation purposes. Once set cannot be changed. */\n lightboxId?: string;\n}\n\nexport interface EditorPresence {\n /** Properties that describe the presence of each of the widget's presets */\n presetsEditorPresence?: PresetEditorPresence[];\n}\n\nexport interface PresetEditorPresence {\n /** Id of the widget's preset */\n presetId?: string;\n /** Controls whether to show or hide the preset in the Add Panel */\n showInAddPanel?: boolean;\n /** Controls whether to show or hide the preset in the Presets Panel */\n showInPresetsPanel?: boolean;\n /** Optional image to show as the preset's thumbnail in the editor, if left empty an automatic snapshot of the preset will be used */\n wixMediaThumbnail?: string;\n /** Another preset id that is a mobile variation of this preset */\n mobilePresetId?: string;\n}\n\nexport interface FocalPoint {\n /** X-coordinate of the focal point. */\n x?: number;\n /** Y-coordinate of the focal point. */\n y?: number;\n /** crop by height */\n height?: number | null;\n /** crop by width */\n width?: number | null;\n}\n\nexport interface BaseInfo {\n /**\n * The name of the component\n * @minLength 1\n * @maxLength 30\n */\n name?: string;\n /** The internal id of the component by the own app */\n _id?: string;\n /**\n * The description of the component by the own app\n * @maxLength 130\n */\n description?: string;\n /** Reference to help articles about the widget */\n helpResources?: HelpResources;\n}\n\nexport interface HelpResources {\n /**\n * The Wix Answers' article related to the component (chosen by own app)\n * @format GUID\n */\n articleId?: string;\n}\n\nexport interface WidgetInstallationSettings\n extends WidgetInstallationSettingsTargetContainerOneOf {\n /** Which static container should the widget be installed at */\n staticContainer?: StaticContainerWithLiterals;\n /**\n * Deprecated, autoAdd should be mapped to static_container HOMEPAGE, essential should be mapped to container. Shared installation settings for unified components\n * @deprecated Deprecated, autoAdd should be mapped to static_container HOMEPAGE, essential should be mapped to container. Shared installation settings for unified components\n * @replacedBy static_container\n * @targetRemovalDate 2026-02-26\n */\n base?: BaseInstallation;\n /**\n * Deprecated, default_preset should be mapped to presets, region is not relevant. Widget installation settings for unified components\n * @deprecated Deprecated, default_preset should be mapped to presets, region is not relevant. Widget installation settings for unified components\n * @replacedBy presets\n * @targetRemovalDate 2026-02-26\n */\n widget?: WidgetInstallation;\n /** Default presets per breakpoint with which the widget should be installed */\n presets?: DefaultPresets;\n}\n\n/** @oneof */\nexport interface WidgetInstallationSettingsTargetContainerOneOf {\n /** Which static container should the widget be installed at */\n staticContainer?: StaticContainerWithLiterals;\n}\n\nexport interface BaseInstallation {\n /** Auto add component to stage */\n autoAdd?: boolean;\n /** Mark component as essential for the existence of the app (force to delete the whole app) */\n essential?: boolean;\n /** Max instances of the component that can be on site */\n maxInstances?: number | null;\n}\n\nexport interface WidgetInstallation {\n /** Preset should be selected defaultly with installation */\n defaultPreset?: MainPresets;\n /** Region of widget */\n region?: RegionTypeWithLiterals;\n}\n\nexport enum RegionType {\n HEADER = 'HEADER',\n BODY = 'BODY',\n FOOTER = 'FOOTER',\n}\n\n/** @enumType */\nexport type RegionTypeWithLiterals = RegionType | 'HEADER' | 'BODY' | 'FOOTER';\n\nexport interface DefaultPresets {\n /**\n * Default preset ID in small (mobile) breakpoint\n * @minLength 1\n * @maxLength 50\n */\n small?: string | null;\n /**\n * Deprecated, use default - Default preset ID in large (desktop) breakpoint\n * @minLength 1\n * @maxLength 50\n * @deprecated Deprecated, use default - Default preset ID in large (desktop) breakpoint\n * @replacedBy default\n * @targetRemovalDate 2025-12-02\n */\n large?: string | null;\n /**\n * Default preset ID\n * @minLength 1\n * @maxLength 50\n */\n default?: string | null;\n}\n\nexport enum StaticContainer {\n UNKNOWN_CONTAINER = 'UNKNOWN_CONTAINER',\n /** Widget should be installed in the homepage */\n HOMEPAGE = 'HOMEPAGE',\n}\n\n/** @enumType */\nexport type StaticContainerWithLiterals =\n | StaticContainer\n | 'UNKNOWN_CONTAINER'\n | 'HOMEPAGE';\n\nexport interface ComponentModel {\n /** The component type of the builder component. */\n componentType?: string;\n /**\n * The component URL of the builder component\n * @format WEB_URL\n */\n componentUrl?: string;\n}\n\n/** A component that indicates the existence of an importable code package in a Wix Blocks application. */\nexport interface CodePackageComponentData {\n /**\n * The GUID to access the package code in the Velo/Wix Code system\n * @format GUID\n */\n gridId?: string;\n /** Name of the package for display */\n displayName?: string;\n /** Name of the package for import */\n importName?: string;\n /** An optional description of this package and what it does */\n description?: string | null;\n}\n\n/** A collection of native components that load directly in the Business Manager */\nexport interface DashboardPlatfromComponentData {\n /**\n * Path to a Javascript file that Dashboard runs on app install\n * @format WEB_URL\n */\n scriptUrl?: string;\n}\n\n/** Inject third party scripts into the user’s site */\nexport interface EmbeddedScriptComponentData {\n /** The script */\n template?: string;\n /** A name that’s unique to this component. Names can include letters and the hyphen (-) character only */\n name?: string;\n /** What category of pages this will be embedded on (single, many, none) */\n pages?: EmbeddedScriptPagesWithLiterals;\n /** Where in the HTML this should be embedded */\n placement?: EmbeddedScriptPlacementWithLiterals;\n /** An article explaining how to activate the script */\n connectArticleUrl?: string;\n /** Type of script you are injecting. This will be used for GDPR and cookie consent purposes */\n embedCategory?: EmbedCategoryWithLiterals;\n /**\n * if the script should be loaded once - default and only supported value is true\n * @readonly\n */\n loadOnce?: boolean;\n /** allow developers to decide if their app script can be install on free sites */\n allowedForFreeSite?: boolean;\n /**\n * The runtime dependencies array to declare the widget packages.\n * @maxSize 50\n */\n dependencies?: WixDependency[];\n}\n\n/** Category of pages this will be embedded on (single, many, none) */\nexport enum EmbeddedScriptPages {\n /** It will not be embedded */\n NONE_PAGES = 'NONE_PAGES',\n /** It will be embedded once */\n ONCE = 'ONCE',\n /** It will be embedded multiple times on specific pages */\n SPECIFIC_PAGES = 'SPECIFIC_PAGES',\n}\n\n/** @enumType */\nexport type EmbeddedScriptPagesWithLiterals =\n | EmbeddedScriptPages\n | 'NONE_PAGES'\n | 'ONCE'\n | 'SPECIFIC_PAGES';\n\n/** Where that embed will be rendered */\nexport enum EmbeddedScriptPlacement {\n /** It will not be rendered */\n NONE_PLACEMENT = 'NONE_PLACEMENT',\n /** In the document head */\n HEAD = 'HEAD',\n /** Prepended before all children already rendered in the body tag */\n BODY_START = 'BODY_START',\n /** Appended after the last child already rendered in the body tag */\n BODY_END = 'BODY_END',\n}\n\n/** @enumType */\nexport type EmbeddedScriptPlacementWithLiterals =\n | EmbeddedScriptPlacement\n | 'NONE_PLACEMENT'\n | 'HEAD'\n | 'BODY_START'\n | 'BODY_END';\n\n/** Embed category defined for Privacy regulation compliance in EU and CCPA in the US */\nexport enum EmbedCategory {\n /** Not categorized yet */\n UNKNOWN = 'UNKNOWN',\n /** Must load regardless of policy */\n ESSENTIAL = 'ESSENTIAL',\n /** Adds optional functionality to the site */\n FUNCTIONAL = 'FUNCTIONAL',\n /** Adds analytics abilities to the site */\n ANALYTICS = 'ANALYTICS',\n /** Adds advertising content or advertising tracking to the site */\n ADVERTISING = 'ADVERTISING',\n}\n\n/** @enumType */\nexport type EmbedCategoryWithLiterals =\n | EmbedCategory\n | 'UNKNOWN'\n | 'ESSENTIAL'\n | 'FUNCTIONAL'\n | 'ANALYTICS'\n | 'ADVERTISING';\n\nexport interface WixDependency {\n /**\n * The fully qualified package name from npm, example: @wix/frontend-location\n * @minLength 2\n * @maxLength 100\n */\n packageName?: string;\n /** The major version of the package (this may be a detail included in the package name, but is conventional in NPM with semver semantics */\n version?: number;\n}\n\n/** A draggable custom element. Add your custom script and generate ui directly in the viewer */\nexport interface WebComponentData {\n /** A link to a preview image we can render in the editor in place of your component */\n imagePreview?: string;\n /** Web component size */\n size?: Size;\n /**\n * This script url should render temp empty state\n * @format WEB_URL\n */\n scriptTag?: string;\n /** Unique tag name to use in order to connect your JS script to your web component */\n tagName?: string;\n /**\n * The settings panel URL for this component\n * @format WEB_URL\n */\n settingsUrl?: string | null;\n /** The editor modal that the user will see */\n modalTitle?: string;\n /** Settings CTA label */\n connectLabel?: string;\n /** Dynamic settings(Graphic Floating Properties Panel settings) */\n gfppSettings?: Settings;\n /** Custom element type PAGE / WIDGET */\n type?: WebComponentDataElementTypeWithLiterals;\n /** Boolean to make this component be available for free sites */\n allowedForFreeSite?: boolean;\n /**\n * A public link to the SEO endpoint\n * @format WEB_URL\n */\n seoUrl?: string | null;\n /** For case that the widget will be used as page */\n slug?: string | null;\n /** For case that the widget will be used as page */\n showPageInMenu?: boolean;\n /** The details of the selected widget to add */\n widget?: WidgetDetails;\n /** Give the option to change the script type */\n scriptType?: ScriptTypeWithLiterals;\n /** Web component default mobile height */\n defaultMobileHeight?: number | null;\n /** Prevent the deletion of the widget when set to true. */\n essential?: boolean;\n /** Toggle to mark whether the editor should revoke an app that contains this component. */\n excludeFromAutoRevoke?: boolean;\n /** defines the widget's behaviour in editor page */\n widgetBehavior?: WidgetBehavior;\n}\n\n/** Web component size */\nexport interface Size {\n /**\n * Height in pixels\n * @max 9999\n */\n height?: number;\n /**\n * Width in pixels\n * @max 9999\n */\n width?: number;\n}\n\n/** Graphic Floating Properties Panel settings */\nexport interface Settings {\n activeTab?: string;\n /** @format WEB_URL */\n fetchInitialData?: string | null;\n tabs?: Tab[];\n}\n\n/** Setting tab definition */\nexport interface Tab {\n label?: string;\n items?: Container[];\n /** hidden tab will not be visible in editor and dev center preview */\n hidden?: boolean;\n}\n\n/** UI Container in page */\nexport interface Container extends ContainerDataOneOf {\n /** containers */\n main?: Main;\n section?: Section;\n drillInListItem?: DrillInListItem;\n /** items */\n thumbnails?: Thumbnails;\n sliderLabeled?: SliderLabeled;\n dropDownLabeled?: DropDownLabeled;\n toggleLabeled?: ToggleLabeled;\n barAlignment?: BarAlignment;\n textInputLabeled?: TextInputLabeled;\n resetButton?: ResetButton;\n fontFamilyWithColorPicker?: FontFamilyWithColorPicker;\n radioButtonLabeled?: RadioButtonLabeled;\n colorSelectLabeled?: ColorSelectLabeled;\n textStyle?: TextStyle;\n}\n\n/** @oneof */\nexport interface ContainerDataOneOf {\n /** containers */\n main?: Main;\n section?: Section;\n drillInListItem?: DrillInListItem;\n /** items */\n thumbnails?: Thumbnails;\n sliderLabeled?: SliderLabeled;\n dropDownLabeled?: DropDownLabeled;\n toggleLabeled?: ToggleLabeled;\n barAlignment?: BarAlignment;\n textInputLabeled?: TextInputLabeled;\n resetButton?: ResetButton;\n fontFamilyWithColorPicker?: FontFamilyWithColorPicker;\n radioButtonLabeled?: RadioButtonLabeled;\n colorSelectLabeled?: ColorSelectLabeled;\n textStyle?: TextStyle;\n}\n\n/** Main 1 */\nexport interface Main {\n items?: MainPropsData[];\n}\n\n/** MainPropsData */\nexport interface MainPropsData {\n dashboardButton?: DashboardButton;\n richTextWithIllustrationVertical?: RichTextWithIllustrationVertical;\n}\n\n/** DashboardButton main 2 */\nexport interface DashboardButton {\n title?: string;\n label?: string;\n}\n\n/** RichTextWithIllustrationVertical main 1 */\nexport interface RichTextWithIllustrationVertical {\n key?: string;\n label?: string;\n text?: string;\n}\n\n/** Section 2 */\nexport interface Section {\n label?: string;\n}\n\n/** DrillInListItem 3 */\nexport interface DrillInListItem {\n items?: DrillItem[];\n label?: string;\n}\n\n/** DrillItem */\nexport interface DrillItem extends DrillItemDataOneOf {\n /** containers */\n section?: Section;\n /** items */\n radioButtonLabeled?: RadioButtonLabeled;\n colorSelectLabeled?: ColorSelectLabeled;\n thumbnails?: Thumbnails;\n sliderLabeled?: SliderLabeled;\n dropDownLabeled?: DropDownLabeled;\n toggleLabeled?: ToggleLabeled;\n barAlignment?: BarAlignment;\n textInputLabeled?: TextInputLabeled;\n fontFamilyWithColorPicker?: FontFamilyWithColorPicker;\n textStyle?: TextStyle;\n}\n\n/** @oneof */\nexport interface DrillItemDataOneOf {\n /** containers */\n section?: Section;\n /** items */\n radioButtonLabeled?: RadioButtonLabeled;\n colorSelectLabeled?: ColorSelectLabeled;\n thumbnails?: Thumbnails;\n sliderLabeled?: SliderLabeled;\n dropDownLabeled?: DropDownLabeled;\n toggleLabeled?: ToggleLabeled;\n barAlignment?: BarAlignment;\n textInputLabeled?: TextInputLabeled;\n fontFamilyWithColorPicker?: FontFamilyWithColorPicker;\n textStyle?: TextStyle;\n}\n\n/** RadioButtonLabeled 12 */\nexport interface RadioButtonLabeled {\n key?: string;\n title?: string;\n value?: string;\n options?: string[];\n description?: string;\n conditions?: Condition[];\n}\n\nexport interface Condition {\n value?: string;\n state?: SingleKeyCondition[];\n}\n\nexport interface SingleKeyCondition {\n key?: string;\n value?: string;\n visible?: boolean;\n}\n\n/** ColorSelectLabeled 13 */\nexport interface ColorSelectLabeled extends ColorSelectLabeledDataOneOf {\n customColor?: ColorDefinition;\n templateColor?: TemplateDefaultColorWithLiterals;\n title?: string;\n key?: string;\n /** @deprecated */\n color?: string;\n defaultData?: ColorDefinition;\n description?: string;\n}\n\n/** @oneof */\nexport interface ColorSelectLabeledDataOneOf {\n customColor?: ColorDefinition;\n templateColor?: TemplateDefaultColorWithLiterals;\n}\n\nexport interface ColorDefinition {\n value?: string;\n opacity?: string;\n}\n\nexport enum TemplateDefaultColor {\n BACKGROUND = 'BACKGROUND',\n SECONDARY_TEXTS = 'SECONDARY_TEXTS',\n MAIN_TEXT_AND_ICONS = 'MAIN_TEXT_AND_ICONS',\n BORDERS_AND_DIVIDERS = 'BORDERS_AND_DIVIDERS',\n BUTTONS_AND_LINKS = 'BUTTONS_AND_LINKS',\n}\n\n/** @enumType */\nexport type TemplateDefaultColorWithLiterals =\n | TemplateDefaultColor\n | 'BACKGROUND'\n | 'SECONDARY_TEXTS'\n | 'MAIN_TEXT_AND_ICONS'\n | 'BORDERS_AND_DIVIDERS'\n | 'BUTTONS_AND_LINKS';\n\n/** Thumbnails 4 */\nexport interface Thumbnails {\n key?: string;\n title?: string;\n value?: string;\n options?: ThumbnailData[];\n size?: ThumbnailsSizeWithLiterals;\n description?: string;\n conditions?: Condition[];\n}\n\n/** Structure for thumbnail */\nexport interface ThumbnailData {\n value?: string;\n /** @format WEB_URL */\n src?: string | null;\n /** @format WEB_URL */\n selectedSrc?: string | null;\n /** @format WEB_URL */\n onHoverSrc?: string | null;\n label?: string;\n}\n\nexport enum ThumbnailsSize {\n SMALL = 'SMALL',\n MEDIUM = 'MEDIUM',\n LARGE = 'LARGE',\n XLARGE = 'XLARGE',\n}\n\n/** @enumType */\nexport type ThumbnailsSizeWithLiterals =\n | ThumbnailsSize\n | 'SMALL'\n | 'MEDIUM'\n | 'LARGE'\n | 'XLARGE';\n\n/** SliderLabeled 5 */\nexport interface SliderLabeled {\n key?: string;\n title?: string;\n size?: string;\n placeholder?: string;\n description?: string;\n minSize?: number;\n maxSize?: number;\n}\n\n/** DropDownLabeled 6 */\nexport interface DropDownLabeled {\n key?: string;\n title?: string;\n value?: string;\n options?: string[];\n description?: string;\n conditions?: Condition[];\n}\n\n/** ToggleLabeled 7 */\nexport interface ToggleLabeled {\n key?: string;\n title?: string;\n value?: boolean;\n description?: string;\n conditions?: Condition[];\n}\n\n/**\n * Elements =========\n * BarAlignment 8\n */\nexport interface BarAlignment {\n /** @deprecated */\n selected?: BarAlignmentSelectedWithLiterals;\n key?: string;\n title?: string;\n description?: string;\n value?: BarAlignmentSelectedWithLiterals;\n conditions?: Condition[];\n}\n\n/** Bar alignment selected value */\nexport enum BarAlignmentSelected {\n ALIGN_LEFT = 'ALIGN_LEFT',\n ALIGN_CENTER = 'ALIGN_CENTER',\n ALIGN_RIGHT = 'ALIGN_RIGHT',\n}\n\n/** @enumType */\nexport type BarAlignmentSelectedWithLiterals =\n | BarAlignmentSelected\n | 'ALIGN_LEFT'\n | 'ALIGN_CENTER'\n | 'ALIGN_RIGHT';\n\n/** TextInputLabeled 9 */\nexport interface TextInputLabeled {\n key?: string;\n title?: string;\n placeholder?: string;\n value?: string;\n description?: string;\n}\n\n/** 11 */\nexport interface FontFamilyWithColorPicker {\n key?: string;\n title?: string;\n description?: string;\n value?: FontDefinition;\n defaultValue?: FontDefinition;\n}\n\n/** defintion and enums */\nexport interface FontDefinition {\n font?: string;\n color?: ColorDefinition;\n}\n\n/** TextStyle 14 */\nexport interface TextStyle extends TextStyleDefaultColorOneOf {\n customColor?: ColorDefinition;\n templateColor?: TemplateDefaultColorWithLiterals;\n key?: string;\n title?: string;\n description?: string;\n defaultTextStyle?: DefaultTextStyleWithLiterals;\n}\n\n/** @oneof */\nexport interface TextStyleDefaultColorOneOf {\n customColor?: ColorDefinition;\n templateColor?: TemplateDefaultColorWithLiterals;\n}\n\nexport enum DefaultTextStyle {\n TITLE = 'TITLE',\n PARAGRAPH = 'PARAGRAPH',\n LOWER_HIERARCHY_TEXTS = 'LOWER_HIERARCHY_TEXTS',\n}\n\n/** @enumType */\nexport type DefaultTextStyleWithLiterals =\n | DefaultTextStyle\n | 'TITLE'\n | 'PARAGRAPH'\n | 'LOWER_HIERARCHY_TEXTS';\n\n/** 10 */\nexport interface ResetButton {\n label?: string;\n}\n\nexport enum WebComponentDataElementType {\n WIDGET = 'WIDGET',\n PAGE = 'PAGE',\n}\n\n/** @enumType */\nexport type WebComponentDataElementTypeWithLiterals =\n | WebComponentDataElementType\n | 'WIDGET'\n | 'PAGE';\n\nexport interface WidgetDetails {\n name?: string | null;\n icon?: string | null;\n description?: string | null;\n}\n\nexport enum ScriptType {\n NO_SCRIPT_TYPE = 'NO_SCRIPT_TYPE',\n MODULE = 'MODULE',\n}\n\n/** @enumType */\nexport type ScriptTypeWithLiterals = ScriptType | 'NO_SCRIPT_TYPE' | 'MODULE';\n\nexport interface WidgetBehavior {\n /** Toggle whether the widget is removable from the page. */\n removable?: boolean;\n /** Toggle whether the widget is duplicatable from the page. */\n duplicatable?: boolean;\n}\n\nexport interface ExtensionData {\n data?: string;\n extensionType?: ExtensionTypeWithLiterals;\n}\n\nexport enum ExtensionType {\n NONE_EXTENSION = 'NONE_EXTENSION',\n PAYMENTS_GATEWAY_EXTENSION = 'PAYMENTS_GATEWAY_EXTENSION',\n COUPONS_EXTENSION = 'COUPONS_EXTENSION',\n DROPSHIPPING_EXTENSION = 'DROPSHIPPING_EXTENSION',\n FULFILMENT_EXTENSION = 'FULFILMENT_EXTENSION',\n DROPSHIPPING_SUPPLIER_EXTENSION = 'DROPSHIPPING_SUPPLIER_EXTENSION',\n FULFILLMENT_CENTER_EXTENSION = 'FULFILLMENT_CENTER_EXTENSION',\n RESTAURANTS_POS_EXTENSION = 'RESTAURANTS_POS_EXTENSION',\n ART_STORE_EXTENSION = 'ART_STORE_EXTENSION',\n ASCEND_AUTOMATION_EXTENSION = 'ASCEND_AUTOMATION_EXTENSION',\n CONTACT_LABELS_EXTENSION = 'CONTACT_LABELS_EXTENSION',\n}\n\n/** @enumType */\nexport type ExtensionTypeWithLiterals =\n | ExtensionType\n | 'NONE_EXTENSION'\n | 'PAYMENTS_GATEWAY_EXTENSION'\n | 'COUPONS_EXTENSION'\n | 'DROPSHIPPING_EXTENSION'\n | 'FULFILMENT_EXTENSION'\n | 'DROPSHIPPING_SUPPLIER_EXTENSION'\n | 'FULFILLMENT_CENTER_EXTENSION'\n | 'RESTAURANTS_POS_EXTENSION'\n | 'ART_STORE_EXTENSION'\n | 'ASCEND_AUTOMATION_EXTENSION'\n | 'CONTACT_LABELS_EXTENSION';\n\nexport interface SnippetSolutionData {\n code?: string;\n instructions?: string;\n}\n\n/** An extension for adding data collections to a site when the app is installed. */\nexport interface DataComponent {\n /**\n * Data collections automatically added to a site when the app is installed.\n * @maxSize 100\n */\n collections?: Collection[];\n}\n\nexport interface Field extends FieldTypeOptionsOneOf {\n /** Metadata for a reference field. */\n referenceOptions?: ReferenceOptions;\n /** Metadata for a multi-reference field. */\n multiReferenceOptions?: MultiReferenceOptions;\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n /**\n * Required. Unique identifier for the field. For example, `firstName`.\n * @minLength 1\n * @maxLength 1000\n */\n key?: string;\n /**\n * Field's display name when displayed in the CMS. For example, `First Name`.\n * @minLength 1\n * @maxLength 1000\n */\n displayName?: string | null;\n /**\n * Required. Field's data type.\n *\n * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).\n */\n type?: FieldTypeWithLiterals;\n /** Whether the field is encrypted. */\n encrypted?: boolean;\n /**\n * Field description.\n * @maxLength 16000\n */\n description?: string | null;\n}\n\n/** @oneof */\nexport interface FieldTypeOptionsOneOf {\n /** Metadata for a reference field. */\n referenceOptions?: ReferenceOptions;\n /** Metadata for a multi-reference field. */\n multiReferenceOptions?: MultiReferenceOptions;\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n}\n\nexport enum FieldType {\n UNKNOWN_FIELD_TYPE = 'UNKNOWN_FIELD_TYPE',\n /** Plain-text string. */\n TEXT = 'TEXT',\n /** Number. */\n NUMBER = 'NUMBER',\n /** Date string in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DD`. */\n DATE = 'DATE',\n /** [JavaScript Date object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) (SDK) or an object in the following format: `\"someFieldKey\": { \"$date\": \"YYYY-MM-DDTHH:mm:ss.sssZ\"}`. */\n DATETIME = 'DATETIME',\n /** Web URL or a [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URL. */\n IMAGE = 'IMAGE',\n /** Boolean `true` or `false` value. */\n BOOLEAN = 'BOOLEAN',\n /** Web URL or a [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URL. */\n DOCUMENT = 'DOCUMENT',\n /** URL in one of the following formats: `http://`, `https://`, `ftp://`, `mailto:`, `sms:`, `tel:`. */\n URL = 'URL',\n /** [Rich-text](https://dev.wix.com/docs/rest/articles/getting-started/rich-text) string that may contain a subset of HTML tags. */\n RICH_TEXT = 'RICH_TEXT',\n /** Web URL or a [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URL. */\n VIDEO = 'VIDEO',\n /** Any field type. */\n ANY = 'ANY',\n /** Array of strings. */\n ARRAY_STRING = 'ARRAY_STRING',\n /** Array of documents: web or [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URLs. */\n ARRAY_DOCUMENT = 'ARRAY_DOCUMENT',\n /** Web URL or a [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URL. */\n AUDIO = 'AUDIO',\n /** Time string in `hh:mm:ss.SSS` format. */\n TIME = 'TIME',\n /** Language codes in [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format. These may include country codes in [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#officially_assigned_code_elements) format. */\n LANGUAGE = 'LANGUAGE',\n /** [Rich content](https://dev.wix.com/docs/ricos/getting-started/introduction). */\n RICH_CONTENT = 'RICH_CONTENT',\n /** Array of web or [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URLs. */\n MEDIA_GALLERY = 'MEDIA_GALLERY',\n /** Physical [address object](https://dev.wix.com/docs/api-reference/business-solutions/cms/data-types-in-wix-data#address-object). */\n ADDRESS = 'ADDRESS',\n /**\n * Reference to another item in another collection. See [Query Referenced Data Items](https://dev.wix.com/docs/api-reference/business-solutions/cms/data-items/query-referenced-data-items) to learn about item references.\n *\n * If you select this type, then you must pass the `referencedCollectionId` field as well.\n */\n REFERENCE = 'REFERENCE',\n /** References to multiple items in another collection. See [Query Referenced Data Items](https://dev.wix.com/docs/api-reference/business-solutions/cms/data-items/query-referenced-data-items) to learn about item references. */\n MULTI_REFERENCE = 'MULTI_REFERENCE',\n /** JSON object. */\n OBJECT = 'OBJECT',\n /** Array. */\n ARRAY = 'ARRAY',\n}\n\n/** @enumType */\nexport type FieldTypeWithLiterals =\n | FieldType\n | 'UNKNOWN_FIELD_TYPE'\n | 'TEXT'\n | 'NUMBER'\n | 'DATE'\n | 'DATETIME'\n | 'IMAGE'\n | 'BOOLEAN'\n | 'DOCUMENT'\n | 'URL'\n | 'RICH_TEXT'\n | 'VIDEO'\n | 'ANY'\n | 'ARRAY_STRING'\n | 'ARRAY_DOCUMENT'\n | 'AUDIO'\n | 'TIME'\n | 'LANGUAGE'\n | 'RICH_CONTENT'\n | 'MEDIA_GALLERY'\n | 'ADDRESS'\n | 'REFERENCE'\n | 'MULTI_REFERENCE'\n | 'OBJECT'\n | 'ARRAY';\n\nexport interface ObjectOptions {\n /**\n * Fields within the object.\n * @maxSize 1000\n */\n fields?: ObjectField[];\n}\n\nexport interface ArrayOptions extends ArrayOptionsElementTypeOptionsOneOf {\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n /** Element's data type. */\n elementType?: FieldTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ArrayOptionsElementTypeOptionsOneOf {\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n}\n\nexport interface ObjectField extends ObjectFieldTypeOptionsOneOf {\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n /**\n * Field ID.\n * @minLength 1\n * @maxLength 1000\n */\n key?: string;\n /**\n * Display name for the field.\n * @minLength 1\n * @maxLength 1000\n */\n displayName?: string | null;\n /**\n * Field type.\n *\n * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).\n */\n type?: FieldTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ObjectFieldTypeOptionsOneOf {\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n}\n\nexport interface ReferenceOptions {\n /**\n * Referenced collection ID.\n * @minLength 1\n * @maxLength 256\n */\n referencedCollectionId?: string;\n}\n\nexport interface MultiReferenceOptions {\n /**\n * Referenced collection ID.\n * @minLength 1\n * @maxLength 256\n */\n referencedCollectionId?: string;\n}\n\n/** Data permissions defined by access level for each action. */\nexport interface DataPermissions {\n /** Required. Access level required to read data items. */\n itemRead?: AccessLevelWithLiterals;\n /** Required. Access level required to insert data items. */\n itemInsert?: AccessLevelWithLiterals;\n /** Required. Access level required to update data items. */\n itemUpdate?: AccessLevelWithLiterals;\n /** Required. Access level required to remove data items. */\n itemRemove?: AccessLevelWithLiterals;\n}\n\n/**\n * Describes who can perform certain action.\n * Each level includes all levels below it (except UNDEFINED).\n */\nexport enum AccessLevel {\n /** Not set. */\n UNDEFINED = 'UNDEFINED',\n /** Anyone, including site visitors. */\n ANYONE = 'ANYONE',\n /** Any signed-in user, including site members and collaborators. */\n SITE_MEMBER = 'SITE_MEMBER',\n /** Any signed-in user, but site members only have access to their own items. */\n SITE_MEMBER_AUTHOR = 'SITE_MEMBER_AUTHOR',\n /** Site collaborator that has a role with CMS access permission. */\n CMS_EDITOR = 'CMS_EDITOR',\n /** CMS administrators and users or roles granted special access. */\n PRIVILEGED = 'PRIVILEGED',\n}\n\n/** @enumType */\nexport type AccessLevelWithLiterals =\n | AccessLevel\n | 'UNDEFINED'\n | 'ANYONE'\n | 'SITE_MEMBER'\n | 'SITE_MEMBER_AUTHOR'\n | 'CMS_EDITOR'\n | 'PRIVILEGED';\n\nexport interface Index {\n /**\n * Fields for which the index is defined.\n *\n * Max: 3 fields (for a unique index: 1 field)\n * @minSize 1\n * @maxSize 3\n */\n fields?: IndexField[];\n /**\n * Whether the index enforces uniqueness of values in the field for which it is defined.\n * If `true`, the index can have only one field.\n *\n * Default: `false`\n */\n unique?: boolean;\n}\n\n/**\n * Order determines how values are ordered in the index. This is important when\n * ordering and/or range querying by indexed fields.\n */\nexport enum Order {\n ASC = 'ASC',\n DESC = 'DESC',\n}\n\n/** @enumType */\nexport type OrderWithLiterals = Order | 'ASC' | 'DESC';\n\nexport interface IndexField {\n /**\n * Path of the field to index. For example: `title` or `options.price`.\n * @minLength 1\n * @maxLength 128\n */\n path?: string;\n /**\n * Sort order for the index. Base on how the data is regularly queried.\n *\n * Default: `ASC`\n */\n order?: OrderWithLiterals;\n}\n\nexport interface Collection {\n /**\n * Required. Collection ID suffix. The app namespace is automatically prepended in the CMS.\n * For example, the full ID for `my-products-1` becomes `@company/app-name/my-products-1`.\n * @maxLength 256\n */\n idSuffix?: string;\n /**\n * Collection's display name as shown in the CMS. For example, `My First Collection`.\n * @minLength 1\n * @maxLength 1000\n */\n displayName?: string | null;\n /**\n * Field whose value the CMS displays to represent the collection item when referenced in a different collection.\n * @minLength 1\n * @maxLength 1000\n */\n displayField?: string | null;\n /**\n * Required. Collection's field structure.\n * @minSize 1\n * @maxSize 1000\n */\n fields?: Field[];\n /** Required. Levels of permission for accessing and modifying data, defined by the lowest role needed to perform each action. */\n dataPermissions?: DataPermissions;\n /**\n * Indexes defined for the collection. An index is a map of a collection's data, organized according to specific fields to increase query speed.\n * @maxSize 3\n */\n indexes?: Index[];\n /**\n * Optional initial data to populate the collection with.\n * @maxSize 1000\n */\n initialData?: Record<string, any>[] | null;\n}\n\nexport interface DCConfigData {\n isVisualApp?: boolean;\n}\n\nexport interface StaticFileComponentData {\n /** @format WEB_URL */\n url?: string;\n}\n\nexport interface AppConfig {\n siteConfig?: SiteConfig;\n namespace?: string;\n}\n\nexport interface SiteConfig {\n /**\n * todo: WEB_URL\n * @maxLength 1000\n */\n siteStructureApi?: string | null;\n}\n\n/**\n * Business Manager sidebar category that contains sidebar links.\n * each link in the category opens in the business manager in an iframe.\n */\nexport interface MultipleDashboardsComponentData {\n /** items inside the category */\n items?: DashboardItem[];\n}\n\n/**\n * a single dashboard page,\n * represented in Business Manager as sidebar link that opens in an iframe\n */\nexport interface DashboardItem {\n /** name of the sidebar link of the page */\n label?: string;\n /** data about the current page */\n dashboardData?: DashboardComponentData;\n /** permission to check for this page. */\n permissionId?: string | null;\n}\n\n/** Test component extension */\nexport interface PaymentsGatewayComponentData {\n /**\n * The shop url\n * @format WEB_URL\n */\n shopUrl?: string;\n}\n\nexport interface AutomationTrigger {\n /**\n * The name that will be passed with trigger report event to activate an Automation.\n * @maxLength 80\n */\n name?: string;\n /**\n * The name displayed to the user.\n * @maxLength 80\n */\n displayName?: string;\n /** The schema of the payload that will be passed with trigger when activating an Automation. */\n schemaConfig?: SchemaConfig;\n deploymentUri?: string;\n revision?: number;\n}\n\nexport interface SchemaConfig {\n /** The fields of the payload as sent in the report event */\n fields?: SchemaField[];\n /**\n * Dynamic schema service URL.\n * Dynamic schema is used when user needs to choose specific entities from site to activate the Automation.\n * For example form name, purchased product, etc.\n * @format WEB_URL\n */\n dynamicSchemaUrl?: string | null;\n}\n\nexport interface SchemaField {\n /** The key as it appears on the report event payload. */\n key?: string;\n /** The name displayed to the user. */\n displayName?: string;\n /** The field type */\n fieldType?: SchemaFieldType;\n /** Sample values, values that could show up in the payload of a trigger. */\n sampleValues?: string[];\n /** The field exposure */\n exposure?: SchemaFieldExposureWithLiterals;\n}\n\nexport enum PrimitiveType {\n UNKNOWN_PRIMITIVE_TYPE = 'UNKNOWN_PRIMITIVE_TYPE',\n TEXT = 'TEXT',\n BOOLEAN = 'BOOLEAN',\n NUMBER = 'NUMBER',\n}\n\n/** @enumType */\nexport type PrimitiveTypeWithLiterals =\n | PrimitiveType\n | 'UNKNOWN_PRIMITIVE_TYPE'\n | 'TEXT'\n | 'BOOLEAN'\n | 'NUMBER';\n\nexport enum SimpleType {\n UNKNOWN_SIMPLE_TYPE = 'UNKNOWN_SIMPLE_TYPE',\n MONEY = 'MONEY',\n LINK = 'LINK',\n BACKOFFICE_LINK = 'BACKOFFICE_LINK',\n LIVESITE_LINK = 'LIVESITE_LINK',\n MULTILINGUAL = 'MULTILINGUAL',\n IMAGE_LINK = 'IMAGE_LINK',\n GUID = 'GUID',\n EMAIL = 'EMAIL',\n PHONE = 'PHONE',\n CONTACT_ID = 'CONTACT_ID',\n}\n\n/** @enumType */\nexport type SimpleTypeWithLiterals =\n | SimpleType\n | 'UNKNOWN_SIMPLE_TYPE'\n | 'MONEY'\n | 'LINK'\n | 'BACKOFFICE_LINK'\n | 'LIVESITE_LINK'\n | 'MULTILINGUAL'\n | 'IMAGE_LINK'\n | 'GUID'\n | 'EMAIL'\n | 'PHONE'\n | 'CONTACT_ID';\n\nexport interface Primitive {\n primitiveType?: PrimitiveTypeWithLiterals;\n}\n\nexport interface Simple {\n simpleType?: SimpleTypeWithLiterals;\n}\n\nexport interface _Date {\n /** Default: false, set this to true if the date is normally a future date, like: Invoice expiration date, Membership renewal date */\n allowNegativeOffset?: boolean | null;\n}\n\nexport interface SchemaFieldType extends SchemaFieldTypeFieldTypeOneOf {\n primitive?: Primitive;\n simple?: Simple;\n /**\n * The field value must conform to the following JSON structure { \"timestamp\": string, \"timeZone\": string }, where the timestamp is ISO format UTC, and the time zone is the full name\n * Example: { \"timestamp\": \"2021-03-22T11:41:47.992Z\", timeZone: \"Asia/Jerusalem\" }\n */\n date?: _Date;\n}\n\n/** @oneof */\nexport interface SchemaFieldTypeFieldTypeOneOf {\n primitive?: Primitive;\n simple?: Simple;\n /**\n * The field value must conform to the following JSON structure { \"timestamp\": string, \"timeZone\": string }, where the timestamp is ISO format UTC, and the time zone is the full name\n * Example: { \"timestamp\": \"2021-03-22T11:41:47.992Z\", timeZone: \"Asia/Jerusalem\" }\n */\n date?: _Date;\n}\n\nexport enum SchemaFieldExposure {\n UNKNOWN_EXPOSURE = 'UNKNOWN_EXPOSURE',\n /** Not sent to the action provider */\n SETUP = 'SETUP',\n /** Sent to the action provider and usually hidden from user */\n HIDDEN = 'HIDDEN',\n /** Sent to the action provider and usually shown to user */\n EXPOSED = 'EXPOSED',\n}\n\n/** @enumType */\nexport type SchemaFieldExposureWithLiterals =\n | SchemaFieldExposure\n | 'UNKNOWN_EXPOSURE'\n | 'SETUP'\n | 'HIDDEN'\n | 'EXPOSED';\n\n/** represents Invoices integration policies */\nexport interface InvoicesActionsComponentData {\n /** partial payment restriction on invoice */\n partialPayment?: PartialPaymentRestrictionWithLiterals;\n}\n\n/** Possible Partial Payment Policy Values */\nexport enum PartialPaymentRestriction {\n UNDEFINED = 'UNDEFINED',\n /** Allow Partial Payment */\n ALLOW = 'ALLOW',\n /** Disallow Partial Payment */\n DISALLOW = 'DISALLOW',\n}\n\n/** @enumType */\nexport type PartialPaymentRestrictionWithLiterals =\n | PartialPaymentRestriction\n | 'UNDEFINED'\n | 'ALLOW'\n | 'DISALLOW';\n\n/** Experimental-WIP: Specifies the app module configuration of business manager module */\nexport interface DashboardApplicationData {\n /**\n * List of bundles to be loaded for your module\n * @minSize 1\n */\n bundles?: Bundle[];\n /**\n * Your module id as defined in business-manager-api\n * @minLength 2\n * @maxLength 64\n */\n _id?: string | null;\n /** List of available page components that your module is registering */\n pageComponents?: PageDashboardApplicationComponent[];\n /** The default component to load when another app navigates to your module */\n defaultPageComponentId?: string | null;\n /** Config section that will be provided to your lazy component and component along with all other properties from business-manager, if your config object will contain topology parameter, you'll be able to benefit from statics override machanism */\n config?: AppConfiguration;\n /** Allows an application to declare that when it's opened inside the business-manager without a deeplink the business-manager home should be shown. It currently only affects opening the app from Editor/ADI */\n useHomeAsLandingPage?: boolean | null;\n /** If there are some experiments that define if this page should be enabled, list of experiment lists with OR relationship between them, experiments should be in business manager scope */\n enabledByExperiments?: ExperimentGroupWrapper[];\n /** If this module should load in absence of any pages, by default this won't run */\n loadWithoutPages?: boolean | null;\n /** List of hosted component of the application */\n components?: HostedComponent[];\n}\n\n/** Specifes business manager module file bundle */\nexport interface Bundle {\n /**\n * The JavaScript file to load\n * @format WEB_URL\n */\n file?: string;\n /** If there are some experiments that define if this page should be enabled, list of experiment lists with OR relationship between them, experiments should be in business manager scope */\n enabledByExperiments?: ExperimentGroupWrapper[];\n /**\n * A alternative debug file for debugging issues\n * @format WEB_URL\n */\n debugFile?: string | null;\n}\n\n/** Specifies a list of experiments that have AND relationship between them, and OR relationship between each list */\nexport interface ExperimentGroupWrapper {\n /**\n * list of experiments with AND relationship between them, for false value use ! before experiment spec\n * @minSize 1\n */\n experimentsGroup?: string[];\n}\n\n/** Specifies page components for a business manager module */\nexport interface PageDashboardApplicationComponent {\n /**\n * The id of the page\n * @minLength 1\n */\n _id?: string;\n /**\n * The route of the page, the part of the url after /dashboard/{msid}/ (must be unique in the specific application)\n * @minLength 1\n */\n route?: string;\n /**\n * The name you used to register this component to the ModuleRegistry (must be unique across apps)\n * @minLength 1\n */\n name?: string;\n /** If there are some experiments that define if this page should be enabled, list of experiment lists with OR relationship between them, experiments should be in business manager scope. */\n enabledByExperiments?: ExperimentGroupWrapper[];\n /** Additional routes to the page */\n routeAliases?: string[];\n}\n\n/** Specifies config for topology and config data */\nexport interface AppConfiguration {\n /** A map of topology key to template url */\n topology?: Record<string, string>;\n /** Config section that will be provided to your lazy component and component along with all other properties from business-manager, if your config object will contain topology parameter */\n configData?: Record<string, string>;\n}\n\n/** Specifes business hosted component configuration */\nexport interface HostedComponent {\n /**\n * A unique id for the component, maps between the host and name\n * @minLength 1\n */\n _id?: string;\n /**\n * The component name used in registerComponentWithModuleParams components can be shared by using the same name but a unique id\n * @minLength 1\n */\n name?: string;\n /** Permissions required for the component, this is not strictly enforced */\n requiredPermission?: string;\n /** Represents the collection of components where the component will be hosted, get this value from the host provider. */\n hostContainerId?: HostContainerIdWithLiterals;\n /** If there are some experiments that define if this page should be enabled, list of experiment lists with OR relationship between them, experiments should be in business manager scope */\n enabledByExperiments?: ExperimentGroupWrapper[];\n /** A URI used to send component error events */\n errorReporting?: ErrorReporting;\n}\n\nexport enum HostContainerId {\n BUSINESS_MANAGER = 'BUSINESS_MANAGER',\n BUSINESS_DASHBOARD_HOST = 'BUSINESS_DASHBOARD_HOST',\n SIDEBAR_FOOTER = 'SIDEBAR_FOOTER',\n}\n\n/** @enumType */\nexport type HostContainerIdWithLiterals =\n | HostContainerId\n | 'BUSINESS_MANAGER'\n | 'BUSINESS_DASHBOARD_HOST'\n | 'SIDEBAR_FOOTER';\n\n/** Contact Labels Extensions */\nexport interface ContactLabelsComponentData {\n /** Whether apps can create labels in this namespace. */\n allowAppDefinedLabels?: boolean | null;\n /**\n * Required permissions to manage app-defined labels.\n * Only apps with these permission will be able to create labels in this namespace.\n * Relevant if `allow_app_defined_labels` is `true`.\n */\n permission?: string | null;\n /** Predefined labels that exist on all sites that install the app. */\n predefinedLabels?: PredefinedLabel[];\n}\n\nexport interface PredefinedLabel {\n /**\n * Unique key. Can contain letters, dashes, or underscores.\n * For example, `\"secondary-hobby\"`.\n * @minLength 1\n * @maxLength 50\n */\n key?: string;\n /**\n * Display name.\n * For example, `\"Secondary Hobby\"`.\n * @minLength 1\n * @maxLength 180\n */\n displayName?: string;\n}\n\n/** A component to be rendered within Widget Slots */\nexport interface WidgetPluginComponentData {\n /**\n * ID of the widget used for the plugin component.\n * @format GUID\n */\n referenceComponentId?: string;\n /** APIs implemented by the Plugin's widget. */\n pluginInterfaces?: PluginInterfaceWithLiterals[];\n /** Marketing information about the plugin. */\n marketData?: PluginMarketData;\n /** List of placements where the plugin is allowed to be installed. */\n placements?: PluginPlacement[];\n /** Widget plugin installation settings. */\n installation?: PluginInstallationSettings;\n}\n\n/** Marketing information about the plugin. */\nexport interface PluginMarketData {\n /**\n * Plugin name.\n * @minLength 1\n * @maxLength 50\n */\n name?: string;\n /**\n * Plugin description.\n * @maxLength 130\n */\n description?: string;\n /**\n * Plugin logo. 35x35px in JPG or PNG format.\n * @format WEB_URL\n */\n logoUrl?: string | null;\n}\n\n/** Combination of IDs that uniquely identify a slot in the app component. */\nexport interface PluginPlacement {\n /**\n * Slot app definition ID.\n * @format GUID\n */\n appDefinitionId?: string;\n /**\n * Slot app component ID.\n * @format GUID\n */\n widgetId?: string;\n /**\n * Slot ID.\n * @minLength 1\n */\n slotId?: string;\n}\n\nexport interface PluginInstallationSettings {\n /** Shared installation settings for unified components */\n base?: BaseInstallation;\n}\n\nexport interface CrossSellConfig {\n /** uri for call implementor, could be one of `grpc://<artifact-name>`, `velo://`, `https://` */\n baseUri?: string;\n}\n\n/** Local Delivery component */\nexport interface LocalDeliveryComponentData {\n /**\n * URL for the Delivery provider registration web page.\n * The App Instance and Account Id query parameters are attached to the registration URL\n * so that you can identify your account when accessing the vendor api. [learn more](https://devforum.wix.com/en/article/app-instance)\n * @format WEB_URL\n */\n registrationUrl?: string;\n /**\n * The base URL for all the local delivery api calls.\n * Description of end points and schema can be find in the local delivery documentation.\n */\n apiBaseUri?: string;\n}\n\n/** Configuration for the payment service SPI implementor */\nexport interface PaymentServiceProviderConfig {\n /**\n * Payment service provider to display on Accept payments tab in Business manager\n * @minLength 1\n */\n title?: string;\n /** SPI base url */\n baseUrl?: string;\n /** Available payment methods */\n paymentMethods?: PaymentMethod[];\n /** Provider authentication methods */\n credentialsFields?: PaymentServiceProviderCredentialsField[];\n}\n\nexport interface PaymentMethod extends PaymentMethodMethodOneOf {\n /** Information about hosted page payment method */\n hostedPage?: HostedPage;\n}\n\n/** @oneof */\nexport interface PaymentMethodMethodOneOf {\n /** Information about hosted page payment method */\n hostedPage?: HostedPage;\n}\n\nexport interface HostedPage {\n /**\n * The payment method title to be will be displayed on accept payments tab in business manager as well as on the checkout\n * @minLength 1\n */\n title?: string;\n /** Url to images in different formats and colors */\n logos?: Logos;\n /** Billing address fields that buyer needs to fill in order to process payment with the specified payment method */\n billingAddressMandatoryFields?: MandatoryFieldWithLiterals[];\n}\n\nexport interface Logos {\n /** white theme logos */\n white?: Color;\n /** colored theme logos */\n colored?: Color;\n}\n\nexport interface Color {\n /**\n * URL to SVG image\n * @format WEB_URL\n */\n svg?: string;\n /**\n * URL to PNG image\n * @format WEB_URL\n */\n png?: string;\n}\n\nexport enum MandatoryField {\n ZIPCODE = 'ZIPCODE',\n CITY = 'CITY',\n STATE = 'STATE',\n ADDRESS = 'ADDRESS',\n COUNTRY_CODE = 'COUNTRY_CODE',\n EMAIL = 'EMAIL',\n PHONE = 'PHONE',\n FIRST_NAME = 'FIRST_NAME',\n LAST_NAME = 'LAST_NAME',\n STREET = 'STREET',\n HOUSE_NUMBER = 'HOUSE_NUMBER',\n TAX_IDENTIFIER = 'TAX_IDENTIFIER',\n}\n\n/** @enumType */\nexport type MandatoryFieldWithLiterals =\n | MandatoryField\n | 'ZIPCODE'\n | 'CITY'\n | 'STATE'\n | 'ADDRESS'\n | 'COUNTRY_CODE'\n | 'EMAIL'\n | 'PHONE'\n | 'FIRST_NAME'\n | 'LAST_NAME'\n | 'STREET'\n | 'HOUSE_NUMBER'\n | 'TAX_IDENTIFIER';\n\nexport interface PaymentServiceProviderCredentialsField\n extends PaymentServiceProviderCredentialsFieldFieldOneOf {\n /** text field */\n simpleField?: SimpleField;\n /** checkbox field */\n checkboxField?: CheckboxField;\n /** dropdown field */\n dropdownField?: DropdownField;\n}\n\n/** @oneof */\nexport interface PaymentServiceProviderCredentialsFieldFieldOneOf {\n /** text field */\n simpleField?: SimpleField;\n /** checkbox field */\n checkboxField?: CheckboxField;\n /** dropdown field */\n dropdownField?: DropdownField;\n}\n\nexport interface SimpleField {\n /**\n * field name\n * @minLength 1\n */\n name?: string;\n /**\n * field label\n * @minLength 1\n */\n label?: string;\n}\n\nexport interface CheckboxField {\n /**\n * field name\n * @minLength 1\n */\n name?: string;\n /**\n * field label\n * @minLength 1\n */\n label?: string;\n /** field tooltip */\n tooltip?: string | null;\n}\n\nexport interface DropdownField {\n /**\n * field name\n * @minLength 1\n */\n name?: string;\n /**\n * field label\n * @minLength 1\n */\n label?: string;\n /** specific options */\n options?: DropdownFieldOption[];\n}\n\nexport interface DropdownFieldOption {\n /**\n * option key\n * @minLength 1\n */\n key?: string;\n /**\n * option value\n * @minLength 1\n */\n value?: string;\n}\n\nexport interface MembershipsSPIConfig {\n /** The URL of the SPI implementation */\n deploymentUri?: string;\n /**\n * @minSize 1\n * @maxSize 300\n */\n catalogAppDefIds?: string[];\n}\n\nexport interface LineItemsEnricherConfig {\n /** the base URI where all the methods are deployed. */\n baseUri?: string;\n}\n\nexport interface ShippingRatesConfig {\n /**\n * Base URI where the endpoints are called.\n * Wix eCommerce appends the endpoint path to the base URI.\n * For example, to call the Get Shipping Rates endpoint at `https://my-shipping-provider.com/v1/getRates`,\n * the base URI you provide here is `https://my-shipping-provider.com/`.\n * @minLength 1\n */\n deploymentUri?: string;\n /**\n * Human-readable name of the shipping provider.\n * @minLength 1\n * @maxLength 64\n */\n name?: string;\n /**\n * Description of the shipping provider.\n * @maxLength 200\n */\n description?: string | null;\n /**\n * URL to more info about the shipping provider.\n * @maxLength 200\n */\n learnMoreUrl?: string | null;\n /**\n * URL to reach the shipping provider app's dashboard.\n * @minLength 1\n * @maxLength 2048\n * @format WEB_URL\n */\n dashboardUrl?: string | null;\n /** Whether to require the site owner to define a fallback/default rate. Set to `true` if you do not provide rates as part of the integration. */\n fallbackDefinitionMandatory?: boolean;\n /**\n * Thumbnail image of the shipping rates provider. Displayed in the shipping settings section in the Dashboard.\n * The URL must be of an image uploaded to the [Wix Media Manager](https://support.wix.com/en/article/wix-media-uploading-media-to-the-media-manager).\n * @format WEB_URL\n */\n thumbnailUrl?: string | null;\n}\n\nexport interface ShippingLabelCarrierSpiConfig {\n /** the base URI where all the methods are deployed */\n baseUri?: string;\n /**\n * the countries supported to send from\n * @format COUNTRY\n * @minSize 1\n * @maxSize 300\n */\n originCountries?: string[];\n /**\n * the countries supported to send to\n * @format COUNTRY\n * @minSize 1\n * @maxSize 300\n */\n destinationCountries?: string[];\n /**\n * the currency of the labels\n * @format CURRENCY\n */\n currency?: string;\n /** the measurement system of he labels (Metric or Imperial) */\n measurementSystem?: MeasurementSystemWithLiterals;\n /** does carrier support insurance */\n isInsuranceSupported?: boolean;\n /**\n * preset carrier packages\n * @minSize 1\n * @maxSize 20\n */\n packageTypes?: PackageType[];\n}\n\nexport enum MeasurementSystem {\n Metric = 'Metric',\n Imperial = 'Imperial',\n}\n\n/** @enumType */\nexport type MeasurementSystemWithLiterals =\n | MeasurementSystem\n | 'Metric'\n | 'Imperial';\n\nexport interface PackageType {\n /**\n * carrier id that can be used to get quotes and purchase\n * @maxLength 30\n */\n _id?: string;\n /**\n * display name of the package (translated)\n * @maxLength 100\n */\n name?: string;\n /**\n * description (translated)\n * @maxLength 200\n */\n description?: string;\n /** the dimensions of the package */\n dimension?: PackageDimension;\n /** image of the package (Optional) */\n image?: V1Image;\n}\n\nexport interface PackageDimension {\n /**\n * width of the package\n * @max 120\n */\n width?: number;\n /**\n * length of the package\n * @max 120\n */\n length?: number;\n /**\n * height of the package (Optional)\n * @max 120\n */\n height?: number | null;\n}\n\nexport interface V1Image {\n /** WixMedia image ID. */\n _id?: string;\n /** Image URL. */\n url?: string;\n /**\n * Original image height.\n * @readonly\n */\n height?: number;\n /**\n * Original image width.\n * @readonly\n */\n width?: number;\n /** Image alt text. Optional. */\n altText?: string | null;\n /** Image filename. Optional. */\n filename?: string | null;\n}\n\n/** Restaurants POS component */\nexport interface RestaurantsPOSComponentData {\n /**\n * URL for the Restaurants POS registration web page.\n * The app instance and account ID query parameters are appended to the registration URL so that you can identify an account when accessing the vendor api.\n * [Learn more](https://devforum.wix.com/en/article/app-instance).\n * @format WEB_URL\n */\n registrationUrl?: string;\n /** Base URL for all the Restaurants POS API calls. */\n apiBaseUri?: string;\n /** Configuration parameters defining the behavoiur of the catalog sync. */\n catalogSyncConfiguration?: CatalogSyncConfiguration;\n}\n\nexport interface CatalogSyncConfiguration {\n /** If menu, section, or dish availability will be updated on the POS side or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n entityAvailabilityUpdated?: DefaultWithLiterals;\n /** Whether fulfillment methods will be defined on the POS side or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n fulfillmentMethodsDefinition?: DefaultWithLiterals;\n /** If dish images will be updated on the POS side or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n dishImagesUpdated?: DefaultWithLiterals;\n /** If sorting (Menu/Category/Dish/Options) will be done on the POS side (API order) or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n entitySortingControl?: DefaultWithLiterals;\n /** If labels will be updated on the POS side or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n dishLabelsUpdated?: DefaultWithLiterals;\n /** If min/max amount of choices is to be set on the POS side or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n dishOptionsMinMaxUpdated?: DefaultWithLiterals;\n /** If dish in/out of stock will be retrieved from POS or updated on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n dishInStockUpdated?: DefaultWithLiterals;\n}\n\nexport enum Default {\n WIX = 'WIX',\n POS = 'POS',\n}\n\n/** @enumType */\nexport type DefaultWithLiterals = Default | 'WIX' | 'POS';\n\nexport interface ShippingProviderConfig {\n /** URI configuration of the deployment */\n deploymentUri?: SpiBaseUri;\n /** User-friendly name of the shipping provider */\n shippingCompanyName?: string;\n /** Cost of making a shipment */\n shippingPrice?: number;\n}\n\nexport interface SpiBaseUri {\n /**\n * Base URI where the methods are called. Wix appends the path to the `baseUri`.\n * For example, to call the Get Shipping Rates method at `https://my-shipping-provider.com/v1/getRates`, the base URI you provide here is `https://my-shipping-provider.com/`.\n * @minLength 6\n * @maxLength 2048\n */\n baseUri?: string;\n /** Alternate, custom URIs to replace the default URIs for specific service plugin methods. */\n alternativeUris?: AlternativeUri[];\n}\n\nexport interface AlternativeUri {\n /**\n * Name of the method to create a custom URI for.\n *\n * For `methodName`, use the name of the method in PascalCase.\n * For example, for Get Shipping Rates use `GetShippingRates`.\n * @minLength 3\n * @maxLength 128\n */\n methodName?: string;\n /**\n * Custom URI that Wix uses to call your server for this method. The path-suffix documented in the method will not be appended to this URI.\n * Must be a secured endpoint beginning with `https://`. For example, `https://www.my-shipping-provider.com/my-shipping-rates`.\n * @minLength 6\n * @maxLength 2048\n */\n absoluteUri?: string;\n}\n\nexport interface AlertEnricherSpiConfiguration {\n deploymentUri?: string;\n}\n\n/** A component holding schema of Data Extensions */\nexport interface DataExtensionsComponentData {\n /** FQDN of the entity that the application extends */\n fqdn?: string;\n /** Schema of the extended fields in JSON Schema compatible format */\n schema?: Record<string, any> | null;\n /**\n * Extension point for this schema. empty string or \"ROOT\" means regular top level schema\n * @maxLength 20\n */\n extensionPoint?: string;\n}\n\nexport interface GenericHooksConfig {\n /**\n * Hook definitions\n * @maxSize 100\n */\n hooks?: GenericHookConfig[];\n}\n\nexport enum HookType {\n UNDEFINED = 'UNDEFINED',\n BEFORE_BLOCKING = 'BEFORE_BLOCKING',\n BEFORE = 'BEFORE',\n AFTER = 'AFTER',\n}\n\n/** @enumType */\nexport type HookTypeWithLiterals =\n | HookType\n | 'UNDEFINED'\n | 'BEFORE_BLOCKING'\n | 'BEFORE'\n | 'AFTER';\n\nexport interface GenericHookConfig {\n /** FQN of proto service */\n serviceFqn?: string;\n /** Name of RPC inside given proto service */\n methodName?: string;\n /**\n * An URI, which uniquely identifies the hook for invocation\n * @format WEB_URL\n */\n uri?: string;\n /** Type of hook */\n hookType?: HookTypeWithLiterals;\n}\n\nexport interface ActionProviderSPIConfig {\n /** URL to action provider service for this action */\n baseUri?: string;\n /** Action service plugin configuration */\n actionConfig?: ActionSPIConfig;\n}\n\nexport interface ActionSPIConfig {\n /**\n * Identifier for this action - human-readable action key - unique per app def ID\n * @minLength 5\n * @maxLength 50\n */\n actionKey?: string;\n /**\n * The action expects the following input\n * The schema is described according to the JSON Schema standard: https://json-schema.org/\n *\n * Example - Add Label to Contact Action input schema:\n * {\n * \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n * \"type\": \"object\",\n * \"title\": \"Add label to contact input schema\",\n * \"description\": \"The schema of the JSON that is sent when invoking this add label to contact action\",\n * \"default\": {},\n * \"examples\": [\n * {\n * \"contactId\": \"a647eb32-c5f4-11ec-9d64-0242ac120002\",\n * \"labelId\": \"1e8b5e5e-dba2-11ec-9d64-0242ac120002\"\n * }\n * ],\n * \"required\": [\n * \"contactId\",\n * \"labelId\"\n * ],\n * \"properties\": {\n * \"contactId\": {\n * \"$id\": \"#/properties/contactId\",\n * \"type\": \"string\",\n * \"format\": \"uuid\",\n * \"title\": \"Contact Id\",\n * \"description\": \"The ID of the contact to apply the label to\",\n * \"default\": \"\",\n * \"identityType\": \"contact\" // can be contact/visitor/user, limited to 1 type per identity.\n * },\n * \"labelId\": {\n * \"$id\": \"#/properties/labelId\",\n * \"type\": \"string\",\n * \"format\": \"uuid\",\n * \"title\": \"Label Id\",\n * \"description\": \"The ID of the label to apply\",\n * \"default\": \"\",\n * }\n * }\n * }\n */\n inputSchema?: Record<string, any> | null;\n /**\n * The output of the action, which will be added to the payload after execution.\n * The schema is described according to the JSON Schema standard: https://json-schema.org/\n *\n * Example - Output of create task action\n * {\n * \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n * \"type\": \"object\",\n * \"title\": \"Create task action schema\",\n * \"description\": \"The schema of the JSON that is sent when invoking this create task action\",\n * \"default\": {},\n * \"examples\": [\n * {\n * \"taskId\": \"a647eb32-c5f4-11ec-9d64-0242ac120002\",\n * }\n * ],\n * \"required\": [\n * \"taskId\"\n * ],\n * \"properties\": {\n * \"taskId\": {\n * \"$id\": \"#/properties/taskId\",\n * \"type\": \"string\",\n * \"format\": \"uuid\",\n * \"title\": \"Contact Id\",\n * \"description\": \"The ID of the task created\",\n * \"default\": \"\",\n * }\n * }\n * }\n */\n outputSchema?: Record<string, any> | null;\n /**\n * Actions display name - human-readable field. Ex. - \"Send SMS\"\n * @minLength 5\n * @maxLength 80\n */\n displayName?: string | null;\n description?: string | null;\n /** Specifies which optional methods were implemented */\n implementedMethods?: ActionSPIConfigImplementedMethods;\n /**\n * Indicates whether we should wait for the action to complete before executing the next actions or finish and\n * expect a callback in the `actionCompleted` method.\n * @deprecated Indicates whether we should wait for the action to complete before executing the next actions or finish and\n * expect a callback in the `actionCompleted` method.\n * @targetRemovalDate 2025-03-10\n */\n executionType?: ExecutionTypeWithLiterals;\n /** Chosen interface for action. */\n interfaceConfiguration?: ActionSPIConfigInterfaceConfiguration;\n /** Icon representing the action in the UI */\n icon?: string;\n /**\n * action id\n * @format GUID\n */\n _id?: string | null;\n}\n\nexport enum ActionSPIConfigInterfaceConfigurationType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n GENERIC = 'GENERIC',\n}\n\n/** @enumType */\nexport type ActionSPIConfigInterfaceConfigurationTypeWithLiterals =\n | ActionSPIConfigInterfaceConfigurationType\n | 'UNKNOWN_TYPE'\n | 'GENERIC';\n\nexport interface WidgetComponentOptions {\n /**\n * Name of provided component\n * @minLength 1\n * @maxLength 80\n */\n componentName?: string;\n}\n\nexport interface GenericOptions {\n /** UI schema */\n uiSchema?: Record<string, any> | null;\n}\n\nexport enum IntegrationType {\n UNKNOWN_INTEGRATION_TYPE = 'UNKNOWN_INTEGRATION_TYPE',\n /** Integration with Wix API methods */\n WIX_API = 'WIX_API',\n}\n\n/** @enumType */\nexport type IntegrationTypeWithLiterals =\n | IntegrationType\n | 'UNKNOWN_INTEGRATION_TYPE'\n | 'WIX_API';\n\nexport enum SourceType {\n UNKNOWN_SOURCE_TYPE = 'UNKNOWN_SOURCE_TYPE',\n /** The input/output schemas are constructed by developers in Dev Center using the self-service flow */\n DEV_CENTER = 'DEV_CENTER',\n /** The input/output schemas are derived from an existing Wix API through the API-to-Action feature */\n WIX_API = 'WIX_API',\n /** The action invokes external API methods based on configuration */\n INTEGRATION = 'INTEGRATION',\n}\n\n/** @enumType */\nexport type SourceTypeWithLiterals =\n | SourceType\n | 'UNKNOWN_SOURCE_TYPE'\n | 'DEV_CENTER'\n | 'WIX_API'\n | 'INTEGRATION';\n\nexport interface WixApiOptions {\n /**\n * Service entity fqdn\n * @minLength 1\n * @maxLength 100\n */\n serviceEntityFqdn?: string;\n /**\n * The service providing the API\n * @minLength 1\n * @maxLength 200\n */\n serviceName?: string;\n /**\n * The method name\n * @minLength 1\n * @maxLength 200\n */\n methodName?: string;\n}\n\nexport interface IntegrationOptions {\n /** The integration type */\n integrationType?: IntegrationTypeWithLiterals;\n}\n\n/** disable-flynt renamed-field-breaking-change */\nexport interface ActionSPIConfigImplementedMethods {\n /** Implements ValidateConfiguration */\n validateConfiguration?: boolean;\n /** Implements DuplicateInputMapping */\n duplicateInputMapping?: boolean;\n /** Implements GenerateApplicationAutomationInputMapping */\n generateApplicationAutomationInputMapping?: boolean;\n /** Implements GetQuotaInfo */\n getQuotaInfo?: boolean;\n /** Implements OnBeforeSave */\n onBeforeSave?: boolean;\n /** Implements OnReset */\n onReset?: boolean;\n /** implements generateActionInputMappingFromTemplate */\n generateActionInputMappingFromTemplate?: boolean;\n /** implements OnRemove */\n onRemove?: boolean;\n /** Implements GetDynamicInputSchema */\n getDynamicInputSchema?: boolean;\n /** Implements MergeInputMappings */\n mergeInputMappings?: boolean;\n /** Implements GetDynamicOutputSchema */\n getDynamicOutputSchema?: boolean;\n /** Implements GenerateInputMappingFromIntent */\n generateInputMappingFromIntent?: boolean;\n}\n\nexport enum ExecutionType {\n UNKNOWN_EXECUTION_TYPE = 'UNKNOWN_EXECUTION_TYPE',\n SYNC = 'SYNC',\n ASYNC = 'ASYNC',\n}\n\n/** @enumType */\nexport type ExecutionTypeWithLiterals =\n | ExecutionType\n | 'UNKNOWN_EXECUTION_TYPE'\n | 'SYNC'\n | 'ASYNC';\n\nexport interface Metadata {\n /** Show action only to advanced mode users (Wix staff) */\n hidden?: boolean;\n}\n\nexport interface ActionSPIConfigInterfaceConfiguration\n extends ActionSPIConfigInterfaceConfigurationOptionsOneOf {\n genericOptions?: GenericOptions;\n /** Type of chosen interface. */\n type?: ActionSPIConfigInterfaceConfigurationTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ActionSPIConfigInterfaceConfigurationOptionsOneOf {\n genericOptions?: GenericOptions;\n}\n\nexport interface Source extends SourceOptionsOneOf {\n /** Wix API options */\n wixApiOptions?: WixApiOptions;\n /** Integration options */\n integrationOptions?: IntegrationOptions;\n /** the source type */\n type?: SourceTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SourceOptionsOneOf {\n /** Wix API options */\n wixApiOptions?: WixApiOptions;\n /** Integration options */\n integrationOptions?: IntegrationOptions;\n}\n\nexport interface CatalogSPIConfig {\n /** Base URI which Wix eCommerce will call to access Catalog service plugin endpoints. For example, to call the Get Catalog Items endpoint at `https://my-external-catalog.com/get-catalog-items`, the base URI you provide here is `https://my-external-catalog.com`. */\n deploymentUri?: string;\n /** Configuration details for discounts applied to all items in the catalog. */\n allItemsDiscount?: DiscountConfig;\n /** Configuration details for discounts applied to specific items in the catalog. */\n specificItemsDiscount?: DiscountConfig;\n}\n\nexport interface DiscountConfig {\n /**\n * Whether the discount is enabled.\n *\n * Default: `false`.\n */\n enabled?: boolean;\n /**\n * Translation key for text to display to the site owner.\n * @minLength 5\n * @maxLength 100\n */\n translationKey?: string;\n}\n\n/** A container (slot) that can be extended by other applications (e.g. widget slot or context menu slot) */\nexport interface BackOfficeExtensionContainer {\n /** Information about the type of slot. */\n extendable?: Extendable;\n /**\n * Default route for the container.\n * @maxLength 400\n */\n defaultRoute?: string | null;\n /** A container (slot) common properties. */\n slotData?: SlotData;\n}\n\n/** Extensibility properties used by containers (slots) */\nexport interface Extendable {\n /** Type of component that this slot accepts. */\n extendedBy?: ExtendingComponentTypeWithLiterals;\n}\n\n/** Which component types can be extended in containers */\nexport enum ExtendingComponentType {\n INVALID = 'INVALID',\n BACK_OFFICE_MENU_ITEM = 'BACK_OFFICE_MENU_ITEM',\n BACK_OFFICE_EXTENSION_WIDGET = 'BACK_OFFICE_EXTENSION_WIDGET',\n}\n\n/** @enumType */\nexport type ExtendingComponentTypeWithLiterals =\n | ExtendingComponentType\n | 'INVALID'\n | 'BACK_OFFICE_MENU_ITEM'\n | 'BACK_OFFICE_EXTENSION_WIDGET';\n\n/** List of back-office hosting platforms */\nexport enum BackOfficeHostingPlatforms {\n NO_HOSTING_PLATFORM = 'NO_HOSTING_PLATFORM',\n /** Site Dashboard (The Wix Dashboard) */\n BUSINESS_MANAGER = 'BUSINESS_MANAGER',\n /** User Account Dashboard */\n ACCOUNT_MANAGER = 'ACCOUNT_MANAGER',\n /** Internal: Dev center */\n DEV_CENTER = 'DEV_CENTER',\n /** Enterprise dashboard (available to enterprise accounts only) */\n ENTERPRISE = 'ENTERPRISE',\n /** Partners dashboard (available to partners accounts only) */\n PARTNERS_DASHBOARD = 'PARTNERS_DASHBOARD',\n /** Employee only financial support dashboard */\n FINANCIALS_INTERNAL_BO = 'FINANCIALS_INTERNAL_BO',\n /** FED Guild POC dashboard */\n FED_GUILD_POC = 'FED_GUILD_POC',\n /** Studio dashboard */\n STUDIO_DASHBOARD = 'STUDIO_DASHBOARD',\n /** Channels dashboard (available to channels accounts only) */\n CHANNELS = 'CHANNELS',\n /** Wix internal dashboard for data tools (proffesional data consumers, i.e Business Analysts, Data Engineers...) */\n DATA_TOOLS = 'DATA_TOOLS',\n /** Internal back-office for payment service provider management */\n PSP_BACKOFFICE = 'PSP_BACKOFFICE',\n /** Rise.ai account dashboard */\n RISE_PLATFORM_ACCOUNT_DASHBOARD = 'RISE_PLATFORM_ACCOUNT_DASHBOARD',\n /** Enterprise demo dashboard (available to possible enterprise accounts for demo purposes) */\n DEMO_DASHBOARD_ENTERPRISE = 'DEMO_DASHBOARD_ENTERPRISE',\n /** A new AI scheduling assistant product dashboard (codename: \"Nownia\") */\n AI_SCHEDULING_ASSISTANT_DASHBOARD = 'AI_SCHEDULING_ASSISTANT_DASHBOARD',\n /** Employee only getting paid cluster dashboard */\n GETTING_PAID = 'GETTING_PAID',\n /** Wix internal dashboard for data (non proffesional data consumers, i.e any Wix Employee that has a need for BI data) */\n DATA = 'DATA',\n /** Dashboard for viral forms/lite events/etc */\n LITE_DASHBOARD = 'LITE_DASHBOARD',\n /** Picasso AI application POC */\n PICASSO_EDITOR = 'PICASSO_EDITOR',\n /** Base44 Host Dashboard POC */\n BASE44_DASHBOARD_POC = 'BASE44_DASHBOARD_POC',\n /** Wixel Editor */\n WIXEL_EDITOR = 'WIXEL_EDITOR',\n /** Base44 Platform */\n BASE44_PLATFORM = 'BASE44_PLATFORM',\n /** Payments by Wix Back Office */\n PAYMENTS_BO = 'PAYMENTS_BO',\n}\n\n/** @enumType */\nexport type BackOfficeHostingPlatformsWithLiterals =\n | BackOfficeHostingPlatforms\n | 'NO_HOSTING_PLATFORM'\n | 'BUSINESS_MANAGER'\n | 'ACCOUNT_MANAGER'\n | 'DEV_CENTER'\n | 'ENTERPRISE'\n | 'PARTNERS_DASHBOARD'\n | 'FINANCIALS_INTERNAL_BO'\n | 'FED_GUILD_POC'\n | 'STUDIO_DASHBOARD'\n | 'CHANNELS'\n | 'DATA_TOOLS'\n | 'PSP_BACKOFFICE'\n | 'RISE_PLATFORM_ACCOUNT_DASHBOARD'\n | 'DEMO_DASHBOARD_ENTERPRISE'\n | 'AI_SCHEDULING_ASSISTANT_DASHBOARD'\n | 'GETTING_PAID'\n | 'DATA'\n | 'LITE_DASHBOARD'\n | 'PICASSO_EDITOR'\n | 'BASE44_DASHBOARD_POC'\n | 'WIXEL_EDITOR'\n | 'BASE44_PLATFORM'\n | 'PAYMENTS_BO';\n\n/** Definitions of common slots properties */\nexport interface SlotData extends SlotDataSlotTypeOneOf {\n /** Widget-specific slot. */\n widgetOptions?: WidgetSlot;\n /** Menu-specific slot. */\n menuOptions?: MenuSlot;\n /**\n * Slot display name.\n * @maxLength 400\n */\n displayName?: string | null;\n /**\n * Slot description.\n * @maxLength 400\n */\n description?: string | null;\n /** Parameters for the slot. */\n slotParams?: SlotParams;\n /**\n * HTTP links to a markdown files.\n * @maxSize 100\n * @format WEB_URL\n */\n mdHttpLinks?: string[];\n type?: SlotDataTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SlotDataSlotTypeOneOf {\n /** Widget-specific slot. */\n widgetOptions?: WidgetSlot;\n /** Menu-specific slot. */\n menuOptions?: MenuSlot;\n}\n\nexport interface DtsDefinitionReference\n extends DtsDefinitionReferenceDtsDefinitionOneOf {\n dtsHttpLinkOptions?: DtsHttpLink;\n dtsContentOptions?: DtsContent;\n type?: DtsDefinitionTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DtsDefinitionReferenceDtsDefinitionOneOf {\n dtsHttpLinkOptions?: DtsHttpLink;\n dtsContentOptions?: DtsContent;\n}\n\nexport enum DtsDefinitionType {\n UNKNOWN = 'UNKNOWN',\n DTS_HTTP_LINK = 'DTS_HTTP_LINK',\n DTS_CONTENT = 'DTS_CONTENT',\n}\n\n/** @enumType */\nexport type DtsDefinitionTypeWithLiterals =\n | DtsDefinitionType\n | 'UNKNOWN'\n | 'DTS_HTTP_LINK'\n | 'DTS_CONTENT';\n\nexport interface DtsHttpLink {\n /**\n * HTTP link to the bundled d.ts file.\n * @maxLength 400\n */\n bundledDtsHttpLink?: string;\n}\n\nexport interface DtsContent {\n /**\n * d.ts file content.\n * @maxLength 2000\n */\n bundledDtsContent?: string;\n}\n\nexport interface BlocksData {\n /** Maximum allowed dimensions. */\n maxDimensionsPixels?: Dimension;\n /** Minimum allowed dimensions. */\n minDimensionsPixels?: Dimension;\n /**\n * Slot placeholder component ID in the document.\n * @maxLength 50\n */\n compRefId?: string | null;\n}\n\nexport interface Dimension {\n /**\n * Width of the component (max: 9999).\n * @max 9999\n */\n width?: number | null;\n /**\n * Height of the component (max: 9999).\n * @max 9999\n */\n height?: number | null;\n}\n\nexport interface SlotParams {\n /** DTS reference for the slot parameters. */\n slotParamsDtsReference?: DtsDefinitionReference;\n /**\n * Named export to use.\n * @maxLength 400\n */\n namedExport?: string | null;\n}\n\nexport enum SlotDataType {\n UNKNOWN = 'UNKNOWN',\n WIDGET = 'WIDGET',\n MENU = 'MENU',\n}\n\n/** @enumType */\nexport type SlotDataTypeWithLiterals =\n | SlotDataType\n | 'UNKNOWN'\n | 'WIDGET'\n | 'MENU';\n\nexport interface WidgetSlot {\n /** Blocks specific data. */\n blocksData?: BlocksData;\n}\n\nexport interface MenuSlot {}\n\n/**\n * A component that enables extending Wix Dashboard Functionality, as defined by ExtendingComponentType.\n * Currently this supports extending menus and extending widget slots (for Wix apps that expose such menus and slots)\n */\nexport interface BackOfficeExtension extends BackOfficeExtensionExtensionOneOf {\n /** Information about a widget extension. */\n widget?: LegacyBackOfficeExtensionWidget;\n /** Information about a menu item extension. */\n menuItem?: LegacyBackOfficeMenuItem;\n /**\n * ID of the slot that hosts the extension.\n * @format GUID\n */\n extends?: string;\n /** Extension title. This is how the extension is referred to in the Wix Dev Center. */\n title?: string;\n /** Extension description. This is how the extension is described in the Wix Dev Center. */\n description?: string | null;\n /** Type of extension. */\n extensionType?: ExtendingComponentTypeWithLiterals;\n /**\n * Platform that hosts the extension.\n *\n * Must be `\"BUSINESS_MANAGER\"`.\n */\n hostingPlatform?: BackOfficeHostingPlatformsWithLiterals;\n}\n\n/** @oneof */\nexport interface BackOfficeExtensionExtensionOneOf {\n /** Information about a widget extension. */\n widget?: LegacyBackOfficeExtensionWidget;\n /** Information about a menu item extension. */\n menuItem?: LegacyBackOfficeMenuItem;\n}\n\n/** The schema of a widget extending a slot exposed in a page in the Wix Dashboard */\nexport interface LegacyBackOfficeExtensionWidget\n extends LegacyBackOfficeExtensionWidgetAssetOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n /**\n * Initial width of the widget while loading, in pixels.\n * Width may be adjusted dynamically based on the content of the widget or limited by the size of the widget's container.\n * @max 9999\n */\n width?: number | null;\n /**\n * Initial height of the widget while loading, in pixels.\n * Height may be adjusted dynamically based on the content of the widget or limited by the size of the widget's container.\n * @max 9999\n */\n height?: number | null;\n}\n\n/** @oneof */\nexport interface LegacyBackOfficeExtensionWidgetAssetOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n}\n\n/** Internal: Specifications for loading an asset via JS in the back office */\nexport interface BackOfficeScriptAsset {\n /**\n * The JavaScript file to load\n * @format WEB_URL\n */\n url?: string;\n /**\n * Namespacing of the component in the Webpack Module Federation registry\n * @minLength 1\n */\n containerId?: string;\n /**\n * Key name for the retrieval of the component\n * @minLength 1\n */\n exportedName?: string;\n /** Optional: What type should by used on <script> tag. */\n scriptType?: BackOfficeScriptAssetTypeWithLiterals;\n}\n\n/** Type attribute for the script tag */\nexport enum BackOfficeScriptAssetType {\n /** Script will be loaded without a type attribute */\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n /** Use \"module\" as the script type */\n MODULE = 'MODULE',\n}\n\n/** @enumType */\nexport type BackOfficeScriptAssetTypeWithLiterals =\n | BackOfficeScriptAssetType\n | 'UNKNOWN_TYPE'\n | 'MODULE';\n\n/** The schema of a menu extension of a slot exposed in a page in the Wix Dashboard */\nexport interface LegacyBackOfficeMenuItem {\n /**\n * [Wix Design System icon key](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full-size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n /** Action that takes places when the menu item is clicked. */\n action?: LegacyBackOfficeMenuItemAction;\n /**\n * Menu item subtitle.\n * @maxLength 200\n */\n subtitle?: string | null;\n}\n\n/** View modes for how to open a component. */\nexport enum ViewMode {\n /** Opens a page in place of the current page. */\n PAGE = 'PAGE',\n /** Opens as a modal on the current page. */\n MODAL = 'MODAL',\n}\n\n/** @enumType */\nexport type ViewModeWithLiterals = ViewMode | 'PAGE' | 'MODAL';\n\n/** the schema of the data needed to open a component from menu extensions */\nexport interface OpenComponent {\n /**\n * ID of the component to open.\n * @format GUID\n */\n componentId?: string;\n /** How the component is opened. */\n viewMode?: ViewModeWithLiterals;\n /** Parameters to navigate to a page or as props for a modal. */\n componentParams?: Record<string, string>;\n}\n\n/** The schema of an action that is onvoked from menu extensions */\nexport interface LegacyBackOfficeMenuItemAction {\n /** Component that opens when the menu item is clicked. */\n openComponent?: OpenComponent;\n}\n\nexport interface TriggerProviderSPIConfig {\n /**\n * The trigger configuration\n *\n * example of a trigger:\n *\n * {\n * appId: \"56cc7843-fdfc-417f-a660-d4af9a2eafe3\",\n * triggerKey: \"form_submit\",\n * displayName: \"Visitor submits a form\",\n * payloadDataSchema: {\n * \"$schema\": \"http://json-schema.org/draft-07/schema\",\n * \"type\": \"object\",\n * \"title\": \"Visitor submits a form Payload Schema\",\n * \"description\": \"The schema of the payload that is part of the triggered event\",\n * \"default\": {},\n * \"examples\": [\n * {\n * \"formId\": \"60d2cd50-1047-4164-884d-8c24fbda84bb\",\n * \"formName\": \"My Cool Form\n * }\n * ],\n * \"properties\": {\n * \"formId\": {\n * \"$id\": \"#/properties/formId\",\n * \"type\": \"string\",\n * \"format\": \"uuid\",\n * \"title\": \"Form ID\",\n * \"description\": \"The form identifier\",\n * \"default\": \"\",\n * \"examples\": [\n * \"60d2cd50-1047-4164-884d-8c24fbda84bb\"\n * ]\n * },\n * \"formName\": {\n * \"$id\": \"#/properties/formName\",\n * \"type\": \"string\",\n * \"title\": \"Form Name\",\n * \"description\": \"The form display name\",\n * \"default\": \"\",\n * \"examples\": [\n * \"My Form\"\n * ]\n * },\n * \"contactId\": {\n * \"$id\": \"#/properties/contactId\",\n * \"type\": \"string\",\n * \"format\": \"uuid\",\n * \"title\": \"Contact Id\",\n * \"description\": \"The Id of the contact which submitted the form\",\n * \"default\": \"\",\n * \"identityType\": \"contact\", // can be contact, visitor, user limited to 1 type per identity,\n * \"name\": \"contact\" // friendly name to be used later on, in order to user that person's data \"contact.firstName\"\n * }\n * },\n * \"required\": [\n * \"formId\",\n * \"formName\",\n * \"contactId\"\n * ],\n * \"additionalProperties\": false\n * }\n * }\n */\n triggerConfig?: Record<string, any> | null;\n /** URL to the trigger provider service */\n baseUri?: string;\n}\n\nexport interface PreRegisterConfig {\n /** the base URI where all the methods are deployed. */\n baseUri?: string;\n}\n\nexport interface ProductsPathsConfig {\n /** implementer's deployment uri */\n deploymentUri?: string;\n}\n\nexport interface CustomScopeConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n}\n\nexport interface GiftCardProviderConfig {\n /** The URL of the SPI implementation */\n deploymentUri?: string;\n}\n\nexport interface ExternalFilterProviderConfig {\n /** the base URI where all the methods are deployed. E.g */\n baseUri?: string;\n}\n\nexport interface RecommendationsProviderConfig {\n /** URI where the application implementing the SPI is deployed. */\n deploymentUri?: string;\n /**\n * App IDs of catalogs for which recommended items can be found.\n * @minSize 1\n * @maxSize 100\n * @minLength 1\n * @maxLength 36\n */\n catalogAppIds?: string[];\n /**\n * The algorithms that this application can use to calculate item recommendations.\n * @minSize 1\n * @maxSize 100\n */\n supportedAlgorithms?: AlgorithmConfig[];\n}\n\nexport interface AlgorithmConfig {\n /**\n * Algorithm name. This value is not translatable.\n * @minLength 1\n * @maxLength 50\n */\n name?: string;\n /**\n * Algorithm description. This describes how the algorithm works and if it has any limitations regarding site content, number of items in the catalog, site traffic, and so on. This value is not translatable.\n * @minLength 1\n * @maxLength 500\n */\n description?: string;\n /**\n * A supplemental `description`. It can be used to help break up and organize information. You can, for example, display this information as a tooltip or as an additional section that is collapsed by default.\n * @minLength 1\n * @maxLength 300\n */\n additionalInfo?: string | null;\n /**\n * Algorithms may have the following types:\n * * `RELATED_ITEMS` - This type of algorithm provides recommendations based on 1 or more other provided items. For example, when an item is added to a cart, the algorithm can suggest other items frequently bought together with that item.\n * * `GLOBAL` - This type of algorithm provides general recommendations based on site or project statistics. For example, bestsellers or new arrivals.\n */\n algorithmType?: AlgorithmTypeWithLiterals;\n /**\n * Algorithm ID. This must be unique for a specific app but does not have to be unique across all apps on the site or in the project.\n * @format GUID\n */\n algorithmId?: string;\n}\n\nexport enum AlgorithmType {\n UNSPECIFIED = 'UNSPECIFIED',\n RELATED_ITEMS = 'RELATED_ITEMS',\n GLOBAL = 'GLOBAL',\n}\n\n/** @enumType */\nexport type AlgorithmTypeWithLiterals =\n | AlgorithmType\n | 'UNSPECIFIED'\n | 'RELATED_ITEMS'\n | 'GLOBAL';\n\nexport interface DropshippingProviderSPIConfig {\n /** name of the dropshipping provider was it appears in relevant screens/mails in eComm Platform */\n name?: string;\n /** The URL of the SPI implementation - not needed in this case */\n deploymentUri?: string;\n /**\n * URI for the thumbnail page\n * @format WEB_URL\n */\n thumbnailUri?: string;\n /**\n * URI of the dashboard page\n * @format WEB_URL\n */\n dashboardUri?: string;\n /** if duplication operation for product is locked */\n duplicateProduct?: LockableOperationWithLiterals;\n /** whether there is a warning or not when price is changed */\n changePrice?: RestrictedOperationWithLiterals;\n /** whether the chagne inventory operations are locked */\n changeInventory?: LockableOperationWithLiterals;\n /** where there is a warning of not when changing options */\n manageOptions?: RestrictedOperationWithLiterals;\n}\n\nexport enum LockableOperation {\n /** When operation lockability is not specified */\n UNSPECIFIED_LOCKABLE = 'UNSPECIFIED_LOCKABLE',\n /** Operation is locked */\n LOCKED = 'LOCKED',\n /** Operation is unlocked */\n UNLOCKED = 'UNLOCKED',\n}\n\n/** @enumType */\nexport type LockableOperationWithLiterals =\n | LockableOperation\n | 'UNSPECIFIED_LOCKABLE'\n | 'LOCKED'\n | 'UNLOCKED';\n\nexport enum RestrictedOperation {\n UNSPECIFIED_RESTRICTED = 'UNSPECIFIED_RESTRICTED',\n ALLOW = 'ALLOW',\n WARN = 'WARN',\n}\n\n/** @enumType */\nexport type RestrictedOperationWithLiterals =\n | RestrictedOperation\n | 'UNSPECIFIED_RESTRICTED'\n | 'ALLOW'\n | 'WARN';\n\nexport interface InvoicesConfig {\n /** Base URI of spi provider */\n baseUri?: string;\n}\n\nexport interface SeoKeywordsSuggestionsSPIConfig {\n /**\n * Base URL of your SEO implementation. Wix sends API requests to endpoints implemented using this URL.\n * @minLength 1\n */\n baseUri?: string;\n /**\n * URL of the page where users can purchase a paid plan. Wix offers a link to this page when you respond with a value of `false` in quota's `paidPlan` property.\n * @format WEB_URL\n */\n upgradeUrl?: string | null;\n /**\n * List of countries you support for SEO analysis.\n * 2-letter country code in [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format.\n * @format COUNTRY\n * @minSize 1\n * @maxSize 250\n */\n supportedCountryCodes?: string[];\n /** Whether there is a quota limit in the service. When `true`, the response includes the quota object. */\n quotaEnabled?: boolean | null;\n /**\n * Your website's landing page.\n * @format WEB_URL\n */\n landingPageUrl?: string;\n}\n\nexport interface CustomTriggerConfig {\n /**\n * Required. Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.\n * For example, to call the Get Eligible Triggers endpoint at `https://my-discount-app.com/v1/get-eligible-triggers`, the base URI you provide here is `https://my-discount-app.com/`.\n */\n deploymentUri?: string;\n}\n\nexport interface ContentProviderConfig {\n /** base uri for each implementer */\n deploymentUri?: string;\n /**\n * a human readable name of the provider\n * @maxLength 64\n */\n providerName?: string;\n /** the maximum items allowed to read and update in a single request */\n maximumReadingBulkSize?: number | null;\n}\n\n/** Automation Component data that is stored in dev center */\nexport interface ApplicationAutomationComponent {\n /** A rule that contains a trigger & some actions */\n rule?: Rule;\n /**\n * Automation name\n * @maxLength 500\n */\n name?: string | null;\n /**\n * Automation description\n * @maxLength 2000\n */\n description?: string | null;\n /** Automation metadata */\n metadata?: AutomationMetadata;\n /** Automation status */\n status?: StatusWithLiterals;\n /** Optional origin that indicates the source of the automation */\n origin?: OriginInfo;\n /**\n * Automation id - points to a V3 Builder automation id\n * @format GUID\n */\n automationId?: string | null;\n /**\n * trigger app id - used for reading easily for cache - v3\n * @format GUID\n */\n triggerAppId?: string | null;\n /**\n * trigger key - used for reading easily for cache - v3\n * @minLength 1\n * @maxLength 100\n */\n triggerKey?: string | null;\n}\n\nexport interface Rule {\n /** an event triggered by visitors on a site, or by a site manager (owner & team). */\n trigger?: ServiceTrigger;\n /**\n * the actions responding to the trigger happening\n * @maxSize 100\n */\n actions?: ServiceAction[];\n}\n\nexport interface ServiceTrigger {\n /**\n * the id of the app defining the trigger\n * @format GUID\n */\n appId?: string;\n /**\n * Identifier for this trigger - human readable action key\n * @maxLength 100\n */\n triggerKey?: string;\n /**\n * optional list of filters on schema fields\n * @maxSize 5\n */\n filters?: TriggerFilter[];\n /**\n * optional - allows to define a trigger whose following actions will be executed only if the same event for the same resource has not in the last X seconds.\n * for example, if the trigger is \"session booked\", the resource is a contact and the timeframe is 3600 seconds (contact hasn't booked another session in the last hour),\n * then the actions will be executed only if the same event (session booked for that contact) has not happened in the last hour.\n * resource id is sent in runtime via the externalEntityId parameter, ReportEvent method.\n */\n debounce?: Debounce;\n}\n\nexport interface TriggerFilter {\n /**\n * the filter identifier\n * @format GUID\n */\n _id?: string | null;\n /**\n * the field key from the schema, for example \"formId\"\n * @minLength 1\n * @maxLength 50\n */\n fieldKey?: string;\n /** filter expression that evaluates to a boolean, for example - {{ contains([\"guid1\",\"guid2\"];formId) }} */\n filterExpression?: string;\n}\n\nexport interface Debounce {\n /**\n * Amount of time in seconds to wait for any additional events to occur before triggering the actions.\n * If no additional events occur within the specified time, the actions will be triggered.\n * If additional events occur within the specified time, the timer will be reset.\n * @min 1\n */\n timeFrameInSeconds?: number;\n /**\n * The field key in the event payload, which indicates the identifier of the entity/event to debounce on\n * For example: if the trigger is \"user logged in\", the resource is a contact and the resource key is \"contactId\",\n * Another example: if the trigger is \"visitor logged in\", the resource is a visitor and the resource key is \"visitorId\".\n * @maxLength 100\n */\n fieldKey?: string;\n}\n\nexport interface ServiceAction {\n /**\n * the id of the action for delayed events\n * @format GUID\n * @readonly\n */\n _id?: string | null;\n /**\n * the id of the app defining the action\n * @format GUID\n */\n appId?: string;\n /**\n * Identifier for this action - human readable action key - unique per app def id\n * @maxLength 80\n */\n actionKey?: string;\n /**\n * input mapping expression for the action inputs\n * for example:\n * `{ \"subject\": \"Thanks for reaching out!\"\n * \"message\": \"Hi {{contact.name.first}}, thanks for contacting our business\"\n * }`\n * where the value for \"contact.name.first\" comes from the trigger's payload\n * @maxLength 5000\n */\n actionConfig?: string;\n /**\n * output mapping expression for the action output\n * for example in get-contact action:\n * `{ \"author\": \"{{$}}\" }`\n * This will map the entire entity of contact under `author` namespace\n * @maxLength 3000\n */\n outputActionConfig?: string | null;\n /** Optional delay configuration for the action */\n delay?: Delay;\n /** allows you define an activation policy - like number of activations in a time frame, or limit by some identifier, like contact (e.g. send email to user only at first login) */\n rateLimit?: RateLimit;\n /**\n * allows the user to define a condition for the action to be executed, if the condition fails the action (and following actions) will not be executed\n * @deprecated allows the user to define a condition for the action to be executed, if the condition fails the action (and following actions) will not be executed\n * @replacedBy conditions\n * @targetRemovalDate 2023-08-01\n */\n condition?: ActionCondition;\n conditions?: Conditions;\n /**\n * allows the user to define a namespace for the action output\n * @minLength 1\n * @maxLength 100\n */\n namespace?: string | null;\n}\n\nexport enum BlockType {\n UNKNOWN = 'UNKNOWN',\n OR = 'OR',\n AND = 'AND',\n}\n\n/** @enumType */\nexport type BlockTypeWithLiterals = BlockType | 'UNKNOWN' | 'OR' | 'AND';\n\nexport interface ConditionBlock {\n type?: BlockTypeWithLiterals;\n /**\n * @minSize 1\n * @maxSize 20\n */\n lineExpressions?: string[];\n}\n\nexport interface Offset extends OffsetValueOneOf {\n /** A delay in seconds */\n seconds?: number;\n /** The key of the field in the trigger payload which contains a delay, in seconds. */\n delayFieldKey?: string;\n}\n\n/** @oneof */\nexport interface OffsetValueOneOf {\n /** A delay in seconds */\n seconds?: number;\n /** The key of the field in the trigger payload which contains a delay, in seconds. */\n delayFieldKey?: string;\n}\n\n/** calculated as date + delay */\nexport interface Until {\n /** The key of the field in the trigger payload which contains the date to delay until */\n dateFieldKey?: string;\n /** Optional: a delay to add together with the date described in the payload */\n offset?: Offset;\n}\n\nexport interface Delay extends DelayTypeOneOf {\n /** A delay which is calculated based on the immediate time when the action is triggered. */\n for?: Offset;\n /** A delay which is calculated based on a date field in the trigger payload. May also be used together with an Offset delay. */\n until?: Until;\n}\n\n/** @oneof */\nexport interface DelayTypeOneOf {\n /** A delay which is calculated based on the immediate time when the action is triggered. */\n for?: Offset;\n /** A delay which is calculated based on a date field in the trigger payload. May also be used together with an Offset delay. */\n until?: Until;\n}\n\nexport interface RateLimit {\n /**\n * time frame in minutes\n * @min 1\n */\n timeFrame?: number | null;\n /**\n * number of activations allowed in the given time frame\n * @min 1\n */\n activations?: number;\n /**\n * limit the activation by an entity, for example activate once per contact. example: {{contact.id}}\n * @minLength 1\n * @maxLength 300\n */\n uniqueIdentifierExpression?: string | null;\n}\n\nexport interface ActionCondition {\n /**\n * entity object is deprecated due to the new approach to conditions\n * the condition expression, for example - {{and(gt(price;10);lt(price;100))}}\n * @minLength 1\n * @maxLength 2000\n */\n conditionExpression?: string;\n}\n\nexport interface Conditions {\n /**\n * condition evaluates to `true` if either of the blocks evaluate to `true` (aka OR between all)\n * @minSize 1\n * @maxSize 10\n */\n conditionBlocks?: ConditionBlock[];\n}\n\nexport interface AutomationMetadata {\n /** Is this Automation hidden on a site? */\n hidden?: boolean;\n /** Can this Automation be deactivated on a site? */\n alwaysActive?: boolean;\n /** Is this Automation's scheduling modification is disabled on a site? */\n schedulingModificationDisabled?: boolean;\n /** Is the removal of this Automation's actions disabled? */\n actionRemovalDisabled?: boolean;\n /** Is conditions editing for this Automation allowed on a site? */\n actionConditionsEditingDisabled?: boolean;\n}\n\nexport enum Domain {\n /** User domain (default) */\n USER = 'USER',\n /** Wix domain */\n WIX = 'WIX',\n}\n\n/** @enumType */\nexport type DomainWithLiterals = Domain | 'USER' | 'WIX';\n\nexport enum Status {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n}\n\n/** @enumType */\nexport type StatusWithLiterals = Status | 'ACTIVE' | 'INACTIVE';\n\nexport interface OriginInfo {\n /**\n * The id of the original automation used to create the preinstalled automation (v3/Builder only)\n * @format GUID\n */\n siteAutomationId?: string;\n /**\n * The site which the automation was originally created in (v3/Builder only)\n * @format GUID\n */\n metaSiteId?: string;\n}\n\n/** Back-office sidebar categories */\nexport interface BackOfficeSidebarCategory {\n /**\n * Category title.\n * @minLength 1\n */\n title?: string;\n /** Sidebar order within the app */\n priority?: number;\n}\n\n/** A page in one of the back-office platforms */\nexport interface BackOfficePage extends BackOfficePageAssetOneOf {\n /** @format WEB_URL */\n iframeUrl?: string;\n /** The route of the page, must be a valid URL path, relative to the app namespace or app id */\n routePath?: string;\n /** Routes that redirect to this page, these paths should include the original path including the namespace or app id */\n previousRoutePaths?: string[];\n /**\n * Page title, also used as sidebar entry label\n * @minLength 1\n */\n title?: string;\n /** False by default, if true, sidebar will be hidden when loading the page */\n fullPage?: boolean;\n /**\n * Optional: category this page belongs to\n * @format GUID\n */\n pageCategoryId?: string | null;\n /** Should the page be shown or hidden in the sidebar, by default a link to the page will be shown */\n hideInSidebar?: boolean;\n /** Sidebar order within the category and app, lower priority means the page is earlier, by default priority is 0, meaning newer pages will appear first */\n priority?: number;\n /**\n * Which page is active in sidebar when this page is loaded\n * @format GUID\n */\n activeSidebarPageId?: string | null;\n /** general component data */\n metaData?: ComponentMetaData;\n /**\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n /**\n * Anchors for direct navigation to specific sections of the page\n * @maxSize 50\n */\n pageAnchors?: PageAnchor[];\n /**\n * Determines how the page layout is rendered.\n * Allowed values: \"standard_view\", \"builder_view\", \"expanded_view\", default: \"standard_view\".\n */\n layoutMode?: LayoutModeWithLiterals;\n}\n\n/** @oneof */\nexport interface BackOfficePageAssetOneOf {\n /** @format WEB_URL */\n iframeUrl?: string;\n}\n\nexport interface ComponentMetaData {\n /**\n * @minLength 1\n * @maxLength 200\n */\n title?: string | null;\n /**\n * @minLength 1\n * @maxLength 200\n */\n description?: string | null;\n /**\n * Searchable keywords\n * @maxSize 100\n */\n keywords?: Keywords[];\n /** Is searchable */\n searchable?: boolean;\n}\n\nexport interface Keywords {\n /** Keyword ID */\n _id?: string;\n /**\n * @minLength 1\n * @maxLength 200\n */\n value?: string;\n}\n\nexport interface PageAnchor {\n /**\n * A URL path relative to the page route for direct navigation to a specific section\n * @minLength 1\n * @maxLength 100\n */\n relativeUrl?: string;\n /**\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n /** metadata for the page anchor */\n metaData?: AnchorMetaData;\n /**\n * anchor ID\n * @maxLength 50\n */\n _id?: string;\n}\n\nexport interface AnchorMetaData {\n /**\n * @minLength 1\n * @maxLength 200\n */\n title?: string | null;\n /**\n * @minLength 1\n * @maxLength 200\n */\n description?: string | null;\n /**\n * anchor keywords\n * @maxSize 100\n */\n keywords?: Keywords[];\n}\n\nexport interface UrlParam {\n /**\n * The name of the parameter\n * @minLength 1\n * @maxLength 100\n */\n name?: string;\n /**\n * The description of the parameter\n * @minLength 1\n * @maxLength 200\n */\n description?: string;\n}\n\nexport enum LayoutMode {\n STANDARD_VIEW = 'STANDARD_VIEW',\n BUILDER_VIEW = 'BUILDER_VIEW',\n EXPANDED_VIEW = 'EXPANDED_VIEW',\n}\n\n/** @enumType */\nexport type LayoutModeWithLiterals =\n | LayoutMode\n | 'STANDARD_VIEW'\n | 'BUILDER_VIEW'\n | 'EXPANDED_VIEW';\n\nexport interface AdditionalFeesSPIConfig {\n /**\n * Base URI where the endpoints are called.\n * Wix eCommerce appends the endpoint path to the base URI.\n * For example, to call the Calculate Additional Fees endpoint at `https://my-additional-fees.com/v1/calculateAdditionalFees`,\n * the base URI you provide here is `https://my-additional-fees.com/`.\n */\n deploymentUri?: string;\n}\n\n/** Describes a notification that can be sent to users */\nexport interface PingNotificationComponentData {}\n\nexport interface BookingsPricingProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /** User-friendly name of the pricing provider */\n pricingProviderName?: string;\n}\n\nexport interface AuthenticatorConfig {\n /** the base URI where all the methods are deployed. */\n baseUri?: string;\n /** Is the enrolment step required (eg. for saving the password, public key, etc.) */\n requireUserEnroll?: boolean;\n /** Information required during the enrollment and authentication processes */\n expectedInputs?: ExpectedInputs;\n}\n\nexport interface ExpectedInputs {\n /** Inputs that will be expected from the user at the start of the process of trying to enroll or authenticate */\n expectedStartInputs?: PredefinedExpectedInput[];\n /** Inputs that may be required during a second step of enroll/authenticate, specified at runtime by sending a Verify response */\n expectedVerifyInputs?: PredefinedExpectedInput[];\n}\n\n/**\n * Specifies an expected input that can be fully configured by the SPI implementor, perhaps with overrides by the admin, _before_ runtime.\n * Notably, this does not include WebAuthn, as that input requires a unique, random challenge to be generated and persisted per request (ie at runtime)\n * in order to be implemented correctly.\n */\nexport interface PredefinedExpectedInput {\n /** The key used to identify the value entered into the input in the user_start_inputs or user_verify_inputs map */\n key?: string;\n /** The name of the input as it should be indicated to the user */\n displayName?: string;\n /** The configuration for the input */\n configuration?: PredefinedExpectedInputConfiguration;\n}\n\nexport interface PredefinedExpectedInputConfiguration\n extends PredefinedExpectedInputConfigurationTypeOneOf {\n textInput?: AdminConfigurableTextInput;\n}\n\n/** @oneof */\nexport interface PredefinedExpectedInputConfigurationTypeOneOf {\n textInput?: AdminConfigurableTextInput;\n}\n\nexport interface AdminConfigurableTextInput {\n /** The default settings for the text input */\n defaultSettings?: TextInputSettings;\n /**\n * Settings that must be have non-null values.\n * This must be a subset of admin_configurable_settings.\n */\n requiredSettings?: string[];\n /**\n * Settings that the admin may override.\n * This must be a valid FieldMask with respect to TextFieldSettings as the root object.\n */\n adminConfigurableSettings?: string[];\n}\n\nexport interface TextInputSettings {\n /** The minimum length required for the user to enter */\n minLength?: number | null;\n /** The maximum length allowed for the user to enter */\n maxLength?: number | null;\n /** A regex that the text entered by the user must match */\n regex?: string | null;\n /** How should the field be displayed to the end user */\n displayType?: TextInputDisplayTypeWithLiterals;\n}\n\nexport enum TextInputDisplayType {\n /** A regular text field */\n TEXT = 'TEXT',\n /** A password field (where the text is hidden visually) */\n PASSWORD = 'PASSWORD',\n /** A field optimized for one time codes */\n CODE = 'CODE',\n}\n\n/** @enumType */\nexport type TextInputDisplayTypeWithLiterals =\n | TextInputDisplayType\n | 'TEXT'\n | 'PASSWORD'\n | 'CODE';\n\nexport interface IDPConnectionConfig {\n /** the base URI where all the methods are deployed. */\n baseUri?: string;\n /** Information required from the admin when he will install the app; */\n requiredConfig?: Record<string, string>;\n}\n\nexport interface ItemsSelectionProviderConfig {\n /**\n * Base URI which Wix calls to retrieve the selected items. For example, `\"deploymentUri\": \"https://my-items.com\"`.\n * @minLength 1\n */\n deploymentUri?: string;\n /**\n * A unique identifier for the provider.\n * @minLength 3\n * @maxLength 250\n */\n key?: string;\n /** Supported search parameters. */\n searchParams?: SearchParams;\n /** Display data such as provider name and icon. */\n contentData?: ContentData;\n /**\n * An array of strings representing the Wix UI pages supported by your SPI implementation. If no tags are listed, Wix assumes that the implementation supports all eligible pages.\n * @maxSize 50\n */\n supportedTags?: TagWithLiterals[];\n /** Configuration settings for how the thumbnail is displayed. */\n itemThumbnail?: ItemThumbnail;\n /** Pagination Mode */\n paginationMode?: PaginationModeWithLiterals;\n /** Optional render overrides for the provider. */\n renderOverrides?: RenderOverrides;\n}\n\nexport interface LearnMore {\n /**\n * The url of the learn more link. If you want a dynamic url according to the user locale, you can add {{locale}} variable within the string.\n * @maxLength 2048\n */\n url?: string;\n /**\n * Optional link label.\n * @maxLength 500\n */\n label?: string | null;\n}\n\nexport enum ThumbnailType {\n UNKNOWN_THUMBNAIL_TYPE = 'UNKNOWN_THUMBNAIL_TYPE',\n IMAGE = 'IMAGE',\n AVATAR = 'AVATAR',\n}\n\n/** @enumType */\nexport type ThumbnailTypeWithLiterals =\n | ThumbnailType\n | 'UNKNOWN_THUMBNAIL_TYPE'\n | 'IMAGE'\n | 'AVATAR';\n\nexport interface ImageConfig {\n shape?: ImageShapeWithLiterals;\n}\n\nexport enum ImageShape {\n UNKNOWN_SHAPE = 'UNKNOWN_SHAPE',\n /** Circle */\n CIRCLE = 'CIRCLE',\n /** Square */\n SQUARE = 'SQUARE',\n /** Rectangle */\n RECTANGLE = 'RECTANGLE',\n}\n\n/** @enumType */\nexport type ImageShapeWithLiterals =\n | ImageShape\n | 'UNKNOWN_SHAPE'\n | 'CIRCLE'\n | 'SQUARE'\n | 'RECTANGLE';\n\nexport interface AvatarConfig {\n shape?: AvatarShapeWithLiterals;\n}\n\nexport enum AvatarShape {\n UNKNOWN_SHAPE = 'UNKNOWN_SHAPE',\n /** Circle */\n CIRCLE = 'CIRCLE',\n /** Square */\n SQUARE = 'SQUARE',\n}\n\n/** @enumType */\nexport type AvatarShapeWithLiterals =\n | AvatarShape\n | 'UNKNOWN_SHAPE'\n | 'CIRCLE'\n | 'SQUARE';\n\nexport interface SearchField {\n /** Supported searchable fields. */\n key?: string;\n /**\n * Item description.\n * @minLength 1\n * @maxLength 100\n */\n description?: string;\n}\n\nexport interface FilterInfo extends FilterInfoOptionsOneOf {\n /** Static hardcoded options */\n staticOptions?: StaticFilterOptions;\n /** The filter options are items of another provider */\n providerOptions?: ProviderFilterOptions;\n /**\n * Key of the filter\n * @minLength 1\n * @maxLength 100\n */\n key?: string;\n /** Optional filter will be shown only for consumers with this tag. Only one filter is allowed per tag. */\n tag?: TagWithLiterals;\n /** The filter selection type. */\n selectionType?: FilterSelectionTypeWithLiterals;\n /** Filter options type. For now only static options are supported */\n optionsType?: FilterOptionsTypeWithLiterals;\n /**\n * Optional placeholder text to display on the filter\n * @maxLength 500\n */\n placeholder?: string | null;\n}\n\n/** @oneof */\nexport interface FilterInfoOptionsOneOf {\n /** Static hardcoded options */\n staticOptions?: StaticFilterOptions;\n /** The filter options are items of another provider */\n providerOptions?: ProviderFilterOptions;\n}\n\nexport enum Tag {\n UNKNOWN_TAG = 'UNKNOWN_TAG',\n EMBEDDABLE = 'EMBEDDABLE',\n ECOM_EDIT_ORDER = 'ECOM_EDIT_ORDER',\n ECOM_CREATE_ORDER = 'ECOM_CREATE_ORDER',\n INBOX = 'INBOX',\n ECOM_CREATE_PAY_LINK = 'ECOM_CREATE_PAY_LINK',\n ECOM_DELIVERY_PROFILES = 'ECOM_DELIVERY_PROFILES',\n ADD_TO_CATEGORY = 'ADD_TO_CATEGORY',\n MY_BUSINESS = 'MY_BUSINESS',\n PIPELINE_LINKED_ENTITY = 'PIPELINE_LINKED_ENTITY',\n GET_PAID = 'GET_PAID',\n PIPELINE_CARD_CATALOG_ITEM = 'PIPELINE_CARD_CATALOG_ITEM',\n}\n\n/** @enumType */\nexport type TagWithLiterals =\n | Tag\n | 'UNKNOWN_TAG'\n | 'EMBEDDABLE'\n | 'ECOM_EDIT_ORDER'\n | 'ECOM_CREATE_ORDER'\n | 'INBOX'\n | 'ECOM_CREATE_PAY_LINK'\n | 'ECOM_DELIVERY_PROFILES'\n | 'ADD_TO_CATEGORY'\n | 'MY_BUSINESS'\n | 'PIPELINE_LINKED_ENTITY'\n | 'GET_PAID'\n | 'PIPELINE_CARD_CATALOG_ITEM';\n\nexport enum FilterSelectionType {\n UNKNOWN_SELECTION = 'UNKNOWN_SELECTION',\n /** Allow to select only a single item */\n SINGLE_SELECTION = 'SINGLE_SELECTION',\n /** Allow to select multiple items */\n MULTIPLE_SELECTION = 'MULTIPLE_SELECTION',\n}\n\n/** @enumType */\nexport type FilterSelectionTypeWithLiterals =\n | FilterSelectionType\n | 'UNKNOWN_SELECTION'\n | 'SINGLE_SELECTION'\n | 'MULTIPLE_SELECTION';\n\nexport enum FilterOptionsType {\n UNKNOWN_FILTER_OPTIONS = 'UNKNOWN_FILTER_OPTIONS',\n /** Static hardcoded options */\n STATIC = 'STATIC',\n PROVIDER = 'PROVIDER',\n}\n\n/** @enumType */\nexport type FilterOptionsTypeWithLiterals =\n | FilterOptionsType\n | 'UNKNOWN_FILTER_OPTIONS'\n | 'STATIC'\n | 'PROVIDER';\n\nexport interface StaticFilterOptions {\n /**\n * List of hardcoded options for a filter\n * @maxSize 50\n */\n data?: StaticFilterOption[];\n}\n\nexport interface StaticFilterOption {\n /**\n * Title of a filter option\n * @minLength 1\n * @maxLength 500\n */\n label?: string;\n /**\n * Value of a filter option\n * @minLength 1\n * @maxLength 100\n */\n value?: string;\n}\n\nexport interface ProviderFilterOptions {\n /**\n * Provider identifier for fetching filter options\n * @minLength 3\n * @maxLength 250\n */\n key?: string;\n}\n\nexport interface ContentDataOverrides {\n /**\n * Provider name.\n * @minLength 1\n * @maxLength 100\n */\n providerName?: string | null;\n}\n\nexport interface TagOverrides {\n /** Additional fields associated with the provider. */\n additionalFields?: Record<string, any> | null;\n /** Display data such as provider name. */\n contentData?: ContentDataOverrides;\n}\n\nexport interface SearchParams {\n /**\n * Supported search parameters.\n * @maxSize 50\n */\n fields?: SearchField[];\n /**\n * Filters for viewing only part of the items. Maximum one filter per tag.\n * @maxSize 100\n */\n filters?: FilterInfo[];\n}\n\nexport interface ContentData {\n /**\n * Provider icon. Choose an icon name from the [Wix Design System](https://www.wixdesignsystem.com/).\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n /**\n * Provider name.\n * @minLength 1\n * @maxLength 100\n */\n providerName?: string;\n /**\n * Item title.\n * @minLength 1\n * @maxLength 100\n */\n title?: string;\n /**\n * Button label.\n * @minLength 1\n * @maxLength 50\n */\n button?: string;\n /**\n * Item description.\n * @minLength 1\n * @maxLength 100\n */\n subtitle?: string | null;\n /** Learn more link. */\n learnMore?: LearnMore;\n}\n\nexport interface AdditionalStepInfo {\n /** ID of the widget associated with the step. */\n widgetId?: string;\n /**\n * Title of the additional step.\n * @minLength 1\n * @maxLength 100\n */\n title?: string;\n /**\n * Subtitle of the additional step.\n * @maxLength 100\n */\n subtitle?: string | null;\n /** Hide item note if exists when showing selected item on additional step header, default: false. */\n hideItemNote?: boolean | null;\n}\n\nexport interface CreateNewItemInfo {\n /** ID of the widget associated with the new item modal. */\n widgetId?: string;\n /**\n * Button label for creating a new item\n * @minLength 1\n * @maxLength 50\n */\n buttonText?: string | null;\n}\n\nexport interface ItemThumbnail extends ItemThumbnailOptionsOneOf {\n /** Configuration specific to images. */\n imageConfig?: ImageConfig;\n /** Configuration specific to avatars. */\n avatarConfig?: AvatarConfig;\n /** Thumbnail type */\n type?: ThumbnailTypeWithLiterals;\n /** Whether the thumbnail is hidden from the UI. */\n hidden?: boolean | null;\n}\n\n/** @oneof */\nexport interface ItemThumbnailOptionsOneOf {\n /** Configuration specific to images. */\n imageConfig?: ImageConfig;\n /** Configuration specific to avatars. */\n avatarConfig?: AvatarConfig;\n}\n\nexport enum PaginationMode {\n UNKNOWN_PAGINATION_MODE = 'UNKNOWN_PAGINATION_MODE',\n CURSOR = 'CURSOR',\n OFFSET = 'OFFSET',\n}\n\n/** @enumType */\nexport type PaginationModeWithLiterals =\n | PaginationMode\n | 'UNKNOWN_PAGINATION_MODE'\n | 'CURSOR'\n | 'OFFSET';\n\nexport interface TagOverridesEntry {\n /** The tag associated with the overrides. */\n tag?: TagWithLiterals;\n /** The overrides for the tag. */\n overrides?: TagOverrides;\n}\n\nexport interface RenderOverrides {\n /** Whether to hide the search bar in the picker UI */\n hideSearch?: boolean | null;\n}\n\nexport interface SyncedProjectsProviderConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: string;\n /**\n * The Provider Name\n * @maxLength 200\n */\n providerName?: string;\n /** which project's fields are synced by the provider, and therefore will not be editable through wix portfolio project page. */\n projectSyncedFields?: string[];\n}\n\nexport interface CommunicationChannelConfiguration {\n deploymentUri?: string;\n config?: ChannelConfiguration;\n}\n\nexport interface ChannelConfiguration\n extends ChannelConfigurationMessagingConfigOneOf {\n directMessageConfig?: DirectMessageConfig;\n emailMessageConfig?: EmailMessageConfig;\n smsMessageConfig?: SmsMessageConfig;\n /** The type of the communication channel */\n type?: ChannelTypeWithLiterals;\n /** Specific provider branding parameters for the channel */\n branding?: ChannelBranding;\n /** Conversation initiation definition */\n conversationLimitations?: ConversationLimitations;\n}\n\n/** @oneof */\nexport interface ChannelConfigurationMessagingConfigOneOf {\n directMessageConfig?: DirectMessageConfig;\n emailMessageConfig?: EmailMessageConfig;\n smsMessageConfig?: SmsMessageConfig;\n}\n\n/** The type of the communication channel */\nexport enum ChannelType {\n UNKNOWN_CHANNEL_TYPE = 'UNKNOWN_CHANNEL_TYPE',\n DIRECT_MESSAGING = 'DIRECT_MESSAGING',\n EMAIL = 'EMAIL',\n SMS = 'SMS',\n}\n\n/** @enumType */\nexport type ChannelTypeWithLiterals =\n | ChannelType\n | 'UNKNOWN_CHANNEL_TYPE'\n | 'DIRECT_MESSAGING'\n | 'EMAIL'\n | 'SMS';\n\nexport interface DirectMessageConfig {\n /** When marked as true, there's no need to list the supported types explicitly */\n acceptAllMessageTypes?: boolean;\n /**\n * Direct message types accepted by the provider. only those types will be sent from Wix\n * If all are excepted this field can be left empty and there's no need to explicitly state types\n */\n acceptedMessageTypes?: AcceptedDirectMessageTypeWithLiterals[];\n /** Elaborates what media types (mime types) and sizes are supported */\n mediaCapabilities?: MediaCapabilities;\n}\n\nexport enum AcceptedDirectMessageType {\n TEXT = 'TEXT',\n MEDIA = 'MEDIA',\n CARD = 'CARD',\n ANNOUNCEMENT = 'ANNOUNCEMENT',\n FORM = 'FORM',\n}\n\n/** @enumType */\nexport type AcceptedDirectMessageTypeWithLiterals =\n | AcceptedDirectMessageType\n | 'TEXT'\n | 'MEDIA'\n | 'CARD'\n | 'ANNOUNCEMENT'\n | 'FORM';\n\nexport interface MediaCapabilities {\n /** When marked as true, there's no need to list the supported types explicitly */\n allMediaTypes?: boolean;\n /**\n * List for supported media types\n * If all are excepted this field can be left empty and there's no need to explicitly state types\n * @maxSize 50\n */\n supportedMediaTypes?: MediaMimeTypeWithLiterals[];\n /** Maximum file size in bytes of a single file in a message */\n maxFileSizeInBytes?: number | null;\n}\n\n/** Mime type for relevant media entities in channels */\nexport enum MediaMimeType {\n UNKNOWN_MIME_TYPE = 'UNKNOWN_MIME_TYPE',\n IMAGE_JPEG = 'IMAGE_JPEG',\n IMAGE_PNG = 'IMAGE_PNG',\n IMAGE_WEBP = 'IMAGE_WEBP',\n VIDEO_MPEG = 'VIDEO_MPEG',\n VIDEO_MP4 = 'VIDEO_MP4',\n VIDEO_3GP = 'VIDEO_3GP',\n AUDIO_AAC = 'AUDIO_AAC',\n AUDIO_MP4 = 'AUDIO_MP4',\n AUDIO_MPEG = 'AUDIO_MPEG',\n AUDIO_OGG = 'AUDIO_OGG',\n AUDIO_OPUS = 'AUDIO_OPUS',\n APPLICATION_PDF = 'APPLICATION_PDF',\n APPLICATION_OCTET_STREAM = 'APPLICATION_OCTET_STREAM',\n}\n\n/** @enumType */\nexport type MediaMimeTypeWithLiterals =\n | MediaMimeType\n | 'UNKNOWN_MIME_TYPE'\n | 'IMAGE_JPEG'\n | 'IMAGE_PNG'\n | 'IMAGE_WEBP'\n | 'VIDEO_MPEG'\n | 'VIDEO_MP4'\n | 'VIDEO_3GP'\n | 'AUDIO_AAC'\n | 'AUDIO_MP4'\n | 'AUDIO_MPEG'\n | 'AUDIO_OGG'\n | 'AUDIO_OPUS'\n | 'APPLICATION_PDF'\n | 'APPLICATION_OCTET_STREAM';\n\nexport interface EmailMessageConfig {\n /** Media (Attachment) types accepted by the provider */\n mediaCapabilities?: MediaCapabilities;\n /** Maximum size in bytes of total media items in a message. */\n maxTotalFilesSizeInBytes?: number | null;\n}\n\nexport interface SmsMessageConfig {\n /** When marked as true, there's no need to list the supported types explicitly */\n acceptAllMessageTypes?: boolean;\n /** SMS message types accepted by the provider. only those types will be sent from Wix */\n acceptedMessageTypes?: AcceptedSmsMessageTypeWithLiterals[];\n /** Elaborates what media types (mime types) and sizes are supported */\n mediaCapabilities?: MediaCapabilities;\n}\n\nexport enum AcceptedSmsMessageType {\n SMS = 'SMS',\n MMS = 'MMS',\n}\n\n/** @enumType */\nexport type AcceptedSmsMessageTypeWithLiterals =\n | AcceptedSmsMessageType\n | 'SMS'\n | 'MMS';\n\nexport interface ChannelBranding {\n /** The name of the channel, e.g. `Facebook` / `SMS` */\n displayName?: string;\n /** Name of the channel provider (Wix, Meta, Google) */\n providerName?: string | null;\n /** Relevant brand icons, used when the channel is integrated */\n brandIcons?: BrandIcons;\n}\n\n/**\n * Brand icons required for correct channel integration\n * todo: 1. which ones are required ?\n * todo: 2. we may need to specify Icons specs (i.e. format and sizes)\n */\nexport interface BrandIcons {\n default?: ChannelIcon;\n vector?: ChannelIcon;\n bwOutlineVector?: ChannelIcon;\n}\n\nexport interface ChannelIcon {\n /** Specific Icon url */\n url?: string | null;\n}\n\nexport interface ConversationLimitations {\n /**\n * Defines who can initiate conversation in this channel.\n * If, `CUSTOMER` is selected, this means that only inbound\n * messages can start a conversation (aka business can only reply and not initiate the first communication).\n */\n initDirection?: InitDirectionWithLiterals;\n}\n\nexport enum InitDirection {\n UNKNOWN_INIT_DIRECTION = 'UNKNOWN_INIT_DIRECTION',\n BUSINESS = 'BUSINESS',\n CUSTOMER = 'CUSTOMER',\n BOTH = 'BOTH',\n}\n\n/** @enumType */\nexport type InitDirectionWithLiterals =\n | InitDirection\n | 'UNKNOWN_INIT_DIRECTION'\n | 'BUSINESS'\n | 'CUSTOMER'\n | 'BOTH';\n\nexport interface PostLoginConfig {\n /** the base URI where all the methods are deployed. */\n baseUri?: string;\n}\n\n/** A general widget in one of the back-office platforms */\nexport interface BackOfficeWidget extends BackOfficeWidgetContentOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n /**\n * Widget title.\n * @minLength 1\n */\n title?: string;\n /**\n * Initial width of the widget while loading, in pixels.\n * Width may be adjusted dynamically based on the content of the widget or limited by the size of the widget's container.\n * @max 9999\n */\n width?: number | null;\n /**\n * Initial height of the widget while loading, in pixels.\n * Height may be adjusted dynamically based on the content of the widget or limited by the size of the widget's container.\n * @max 9999\n */\n height?: number | null;\n}\n\n/** @oneof */\nexport interface BackOfficeWidgetContentOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n}\n\nexport interface SocialMarketingDesignSPIConfig {\n /** The URL of the SPI implementation */\n baseUri?: string;\n /** ID of the provider */\n _id?: string;\n /** Name of the provider */\n name?: string;\n /**\n * URL of the editor\n * @format WEB_URL\n */\n editorUrl?: string;\n /**\n * URL of the templates page\n * @format WEB_URL\n */\n templatesPageUrl?: string;\n /**\n * Provider's icon, to be displayed in UI\n * @format WEB_URL\n */\n iconUrl?: string;\n}\n\nexport interface FormSubmissionSpiConfig {\n /**\n * URI where the SPI Implementer is deployed\n * @maxLength 500\n */\n deploymentUri?: string;\n /**\n * Configuration of namespaces known by implementer\n * @maxSize 3\n */\n namespaceConfigs?: FormsSubmissionsNamespaceConfig[];\n}\n\nexport interface FormsSubmissionsNamespaceConfig {\n /**\n * Namespace name.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /** Permissions associated with this namespace. */\n permissions?: FormsPermissions;\n /** Mark new submission as pending by default. */\n pendingByDefault?: boolean;\n /**\n * Allows to disable automatic contact insert/update on contact mapping provided.\n * On manual contact mapping enabled, the implementer is responsible for mapping the submission to a contact.\n * Out of the box GDPR support is not available for unmapped submissions with contact PII fields.\n */\n manualContactMapping?: boolean;\n /**\n * Delete a PENDING submission after X days.\n * @min 1\n */\n deletePendingAfterDays?: number | null;\n /** Sets a flag that indicates a submission, when exporting, should have signature as image instead of text. */\n exportSignatureAsImage?: boolean;\n}\n\nexport interface FormsPermissions {\n /**\n * Create permission name\n * @maxLength 60\n */\n create?: string;\n /**\n * Delete permission name\n * @maxLength 60\n */\n delete?: string;\n /**\n * Update permission name\n * @maxLength 60\n */\n update?: string;\n /**\n * Read permission name\n * @maxLength 60\n */\n read?: string;\n}\n\n/** Redirects to either a page component in the Business Manager or to a wix answers article */\nexport interface WixOfferingComponentData\n extends WixOfferingComponentDataOfferingOneOf {\n /** Redirects to a page in the Business Manager. */\n businessManagerPage?: BusinessManagerPage;\n /**\n * Redirects to an article with this ID.\n * @format GUID\n */\n articleGuid?: string;\n}\n\n/** @oneof */\nexport interface WixOfferingComponentDataOfferingOneOf {\n /** Redirects to a page in the Business Manager. */\n businessManagerPage?: BusinessManagerPage;\n /**\n * Redirects to an article with this ID.\n * @format GUID\n */\n articleGuid?: string;\n}\n\nexport interface BusinessManagerPage {\n /** ID of the page component to redirect to. */\n componentId?: string;\n /** Redirects to this app state. */\n appState?: string | null;\n /** Whether to show the regular app page in the App Market instead of redirecting to the Business Manager page. */\n showRegularAppPage?: boolean;\n}\n\n/** A component used for testing dev center functionality */\nexport interface DevCenterTestingComponentData\n extends DevCenterTestingComponentDataTranslatableOneOfOneOf {\n translatableString?: string;\n translatableOptionalString?: string | null;\n translatableMessageInOneOf?: MessageContainingTranslatables;\n /** Non translatable field */\n nonTranslatable?: string;\n name?: string;\n /** @maxLength 500 */\n description?: string | null;\n translationsMap?: Record<string, string>;\n translatableMessage?: MessageContainingTranslatables;\n /** @maxSize 500 */\n mapOfTranslatableMessages?: Record<string, MessageContainingTranslatables>;\n baseUri?: string;\n /** @format GUID */\n referenceId?: string | null;\n referenceData?: CustomRefData;\n priceMultiplier?: number;\n responsePrefix?: string;\n /** @maxSize 500 */\n translatedMessagesWithUniqueField?: TranslatedMessageWithUniqueFieldRepeated[];\n /** @maxSize 500 */\n translatedMessagesWithIdField?: TranslatedMessageWithIdRepeated[];\n componentMetadata?: DiscoveryMetaData;\n /** @maxSize 500 */\n repeatedComponentMetadata?: DiscoveryMetaData[];\n /** @maxSize 500 */\n repeatedInternalComponentMetadata?: InternalComponentMetadata[];\n translatableRichContent?: RichContent;\n nonTranslatableRichContent?: RichContent;\n richContentMap?: Record<string, RichContent>;\n exposure?: ExtensionExposure;\n /**\n * @maxSize 500\n * @maxLength 500\n */\n referencedEntity?: string[];\n testEnum?: TestEnumWithLiterals;\n}\n\n/** @oneof */\nexport interface DevCenterTestingComponentDataTranslatableOneOfOneOf {\n translatableString?: string;\n translatableOptionalString?: string | null;\n translatableMessageInOneOf?: MessageContainingTranslatables;\n}\n\nexport interface MessageContainingTranslatables {\n messageName?: string;\n messageDescription?: string | null;\n messageTranslationsMap?: Record<string, string>;\n innerTranslatableRichContent?: RichContent;\n}\n\nexport interface RichContent {\n /** Node objects representing a rich content document. */\n nodes?: Node[];\n /** Object metadata. */\n metadata?: V1Metadata;\n /** Global styling for header, paragraph, block quote, and code block nodes in the object. */\n documentStyle?: DocumentStyle;\n}\n\nexport interface Node extends NodeDataOneOf {\n /** Data for a button node. */\n buttonData?: ButtonData;\n /** Data for a code block node. */\n codeBlockData?: CodeBlockData;\n /** Data for a divider node. */\n dividerData?: DividerData;\n /** Data for a file node. */\n fileData?: FileData;\n /** Data for a gallery node. */\n galleryData?: GalleryData;\n /** Data for a GIF node. */\n gifData?: GIFData;\n /** Data for a heading node. */\n headingData?: HeadingData;\n /** Data for an embedded HTML node. */\n htmlData?: HTMLData;\n /** Data for an image node. */\n imageData?: ImageData;\n /** Data for a link preview node. */\n linkPreviewData?: LinkPreviewData;\n /** @deprecated */\n mapData?: MapData;\n /** Data for a paragraph node. */\n paragraphData?: ParagraphData;\n /** Data for a poll node. */\n pollData?: PollData;\n /** Data for a text node. Used to apply decorations to text. */\n textData?: TextData;\n /** Data for an app embed node. */\n appEmbedData?: AppEmbedData;\n /** Data for a video node. */\n videoData?: VideoData;\n /** Data for an oEmbed node. */\n embedData?: EmbedData;\n /** Data for a collapsible list node. */\n collapsibleListData?: CollapsibleListData;\n /** Data for a table node. */\n tableData?: TableData;\n /** Data for a table cell node. */\n tableCellData?: TableCellData;\n /** Data for a custom external node. */\n externalData?: Record<string, any> | null;\n /** Data for an audio node. */\n audioData?: AudioData;\n /** Data for an ordered list node. */\n orderedListData?: OrderedListData;\n /** Data for a bulleted list node. */\n bulletedListData?: BulletedListData;\n /** Data for a block quote node. */\n blockquoteData?: BlockquoteData;\n /** Data for a caption node. */\n captionData?: CaptionData;\n /** Data for a layout node. Reserved for future use. */\n layoutData?: LayoutData;\n /** Data for a cell node. */\n layoutCellData?: LayoutCellData;\n /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */\n type?: NodeTypeWithLiterals;\n /** Node ID. */\n id?: string;\n /** A list of child nodes. */\n nodes?: Node[];\n /** Padding and background color styling for the node. */\n style?: NodeStyle;\n}\n\n/** @oneof */\nexport interface NodeDataOneOf {\n /** Data for a button node. */\n buttonData?: ButtonData;\n /** Data for a code block node. */\n codeBlockData?: CodeBlockData;\n /** Data for a divider node. */\n dividerData?: DividerData;\n /** Data for a file node. */\n fileData?: FileData;\n /** Data for a gallery node. */\n galleryData?: GalleryData;\n /** Data for a GIF node. */\n gifData?: GIFData;\n /** Data for a heading node. */\n headingData?: HeadingData;\n /** Data for an embedded HTML node. */\n htmlData?: HTMLData;\n /** Data for an image node. */\n imageData?: ImageData;\n /** Data for a link preview node. */\n linkPreviewData?: LinkPreviewData;\n /** @deprecated */\n mapData?: MapData;\n /** Data for a paragraph node. */\n paragraphData?: ParagraphData;\n /** Data for a poll node. */\n pollData?: PollData;\n /** Data for a text node. Used to apply decorations to text. */\n textData?: TextData;\n /** Data for an app embed node. */\n appEmbedData?: AppEmbedData;\n /** Data for a video node. */\n videoData?: VideoData;\n /** Data for an oEmbed node. */\n embedData?: EmbedData;\n /** Data for a collapsible list node. */\n collapsibleListData?: CollapsibleListData;\n /** Data for a table node. */\n tableData?: TableData;\n /** Data for a table cell node. */\n tableCellData?: TableCellData;\n /** Data for a custom external node. */\n externalData?: Record<string, any> | null;\n /** Data for an audio node. */\n audioData?: AudioData;\n /** Data for an ordered list node. */\n orderedListData?: OrderedListData;\n /** Data for a bulleted list node. */\n bulletedListData?: BulletedListData;\n /** Data for a block quote node. */\n blockquoteData?: BlockquoteData;\n /** Data for a caption node. */\n captionData?: CaptionData;\n /** Data for a layout node. Reserved for future use. */\n layoutData?: LayoutData;\n /** Data for a cell node. */\n layoutCellData?: LayoutCellData;\n}\n\nexport enum NodeType {\n PARAGRAPH = 'PARAGRAPH',\n TEXT = 'TEXT',\n HEADING = 'HEADING',\n BULLETED_LIST = 'BULLETED_LIST',\n ORDERED_LIST = 'ORDERED_LIST',\n LIST_ITEM = 'LIST_ITEM',\n BLOCKQUOTE = 'BLOCKQUOTE',\n CODE_BLOCK = 'CODE_BLOCK',\n VIDEO = 'VIDEO',\n DIVIDER = 'DIVIDER',\n FILE = 'FILE',\n GALLERY = 'GALLERY',\n GIF = 'GIF',\n HTML = 'HTML',\n IMAGE = 'IMAGE',\n LINK_PREVIEW = 'LINK_PREVIEW',\n /** @deprecated */\n MAP = 'MAP',\n POLL = 'POLL',\n APP_EMBED = 'APP_EMBED',\n BUTTON = 'BUTTON',\n COLLAPSIBLE_LIST = 'COLLAPSIBLE_LIST',\n TABLE = 'TABLE',\n EMBED = 'EMBED',\n COLLAPSIBLE_ITEM = 'COLLAPSIBLE_ITEM',\n COLLAPSIBLE_ITEM_TITLE = 'COLLAPSIBLE_ITEM_TITLE',\n COLLAPSIBLE_ITEM_BODY = 'COLLAPSIBLE_ITEM_BODY',\n TABLE_CELL = 'TABLE_CELL',\n TABLE_ROW = 'TABLE_ROW',\n EXTERNAL = 'EXTERNAL',\n AUDIO = 'AUDIO',\n CAPTION = 'CAPTION',\n LAYOUT = 'LAYOUT',\n LAYOUT_CELL = 'LAYOUT_CELL',\n}\n\n/** @enumType */\nexport type NodeTypeWithLiterals =\n | NodeType\n | 'PARAGRAPH'\n | 'TEXT'\n | 'HEADING'\n | 'BULLETED_LIST'\n | 'ORDERED_LIST'\n | 'LIST_ITEM'\n | 'BLOCKQUOTE'\n | 'CODE_BLOCK'\n | 'VIDEO'\n | 'DIVIDER'\n | 'FILE'\n | 'GALLERY'\n | 'GIF'\n | 'HTML'\n | 'IMAGE'\n | 'LINK_PREVIEW'\n | 'MAP'\n | 'POLL'\n | 'APP_EMBED'\n | 'BUTTON'\n | 'COLLAPSIBLE_LIST'\n | 'TABLE'\n | 'EMBED'\n | 'COLLAPSIBLE_ITEM'\n | 'COLLAPSIBLE_ITEM_TITLE'\n | 'COLLAPSIBLE_ITEM_BODY'\n | 'TABLE_CELL'\n | 'TABLE_ROW'\n | 'EXTERNAL'\n | 'AUDIO'\n | 'CAPTION'\n | 'LAYOUT'\n | 'LAYOUT_CELL';\n\nexport interface NodeStyle {\n /** The top padding value in pixels. */\n paddingTop?: string | null;\n /** The bottom padding value in pixels. */\n paddingBottom?: string | null;\n /** The background color as a hexadecimal value. */\n backgroundColor?: string | null;\n}\n\nexport interface ButtonData {\n /** Styling for the button's container. */\n containerData?: PluginContainerData;\n /** The button type. */\n type?: ButtonDataTypeWithLiterals;\n /** Styling for the button. */\n styles?: Styles;\n /** The text to display on the button. */\n text?: string | null;\n /** Button link details. */\n link?: V1Link;\n}\n\nexport interface StylesBorder {\n /**\n * Deprecated: Use `borderWidth` in `styles` instead.\n * @deprecated\n */\n width?: number | null;\n /**\n * Deprecated: Use `borderRadius` in `styles` instead.\n * @deprecated\n */\n radius?: number | null;\n}\n\nexport interface Colors {\n /**\n * Deprecated: Use `textColor` in `styles` instead.\n * @deprecated\n */\n text?: string | null;\n /**\n * Deprecated: Use `borderColor` in `styles` instead.\n * @deprecated\n */\n border?: string | null;\n /**\n * Deprecated: Use `backgroundColor` in `styles` instead.\n * @deprecated\n */\n background?: string | null;\n}\n\nexport interface PluginContainerData {\n /** The width of the node when it's displayed. */\n width?: PluginContainerDataWidth;\n /** The node's alignment within its container. */\n alignment?: PluginContainerDataAlignmentWithLiterals;\n /** Spoiler cover settings for the node. */\n spoiler?: Spoiler;\n /** The height of the node when it's displayed. */\n height?: PluginContainerDataHeight;\n /** Sets whether text should wrap around this node when it's displayed. If `textWrap` is `false`, the node takes up the width of its container. Defaults to `true` for all node types except 'DIVIVDER' where it defaults to `false`. */\n textWrap?: boolean | null;\n}\n\nexport enum WidthType {\n /** Width matches the content width */\n CONTENT = 'CONTENT',\n /** Small Width */\n SMALL = 'SMALL',\n /** Width will match the original asset width */\n ORIGINAL = 'ORIGINAL',\n /** coast-to-coast display */\n FULL_WIDTH = 'FULL_WIDTH',\n}\n\n/** @enumType */\nexport type WidthTypeWithLiterals =\n | WidthType\n | 'CONTENT'\n | 'SMALL'\n | 'ORIGINAL'\n | 'FULL_WIDTH';\n\nexport interface PluginContainerDataWidth\n extends PluginContainerDataWidthDataOneOf {\n /**\n * One of the following predefined width options:\n * `CONTENT`: The width of the container matches the content width.\n * `SMALL`: A small width.\n * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.\n * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.\n */\n size?: WidthTypeWithLiterals;\n /** A custom width value in pixels. */\n custom?: string | null;\n}\n\n/** @oneof */\nexport interface PluginContainerDataWidthDataOneOf {\n /**\n * One of the following predefined width options:\n * `CONTENT`: The width of the container matches the content width.\n * `SMALL`: A small width.\n * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.\n * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.\n */\n size?: WidthTypeWithLiterals;\n /** A custom width value in pixels. */\n custom?: string | null;\n}\n\nexport enum PluginContainerDataAlignment {\n /** Center Alignment */\n CENTER = 'CENTER',\n /** Left Alignment */\n LEFT = 'LEFT',\n /** Right Alignment */\n RIGHT = 'RIGHT',\n}\n\n/** @enumType */\nexport type PluginContainerDataAlignmentWithLiterals =\n | PluginContainerDataAlignment\n | 'CENTER'\n | 'LEFT'\n | 'RIGHT';\n\nexport interface Spoiler {\n /** Sets whether the spoiler cover is enabled for this node. Defaults to `false`. */\n enabled?: boolean | null;\n /** The description displayed on top of the spoiler cover. */\n description?: string | null;\n /** The text for the button used to remove the spoiler cover. */\n buttonText?: string | null;\n}\n\nexport interface PluginContainerDataHeight {\n /** A custom height value in pixels. */\n custom?: string | null;\n}\n\nexport enum ButtonDataType {\n /** Regular link button */\n LINK = 'LINK',\n /** Triggers custom action that is defined in plugin configuration by the consumer */\n ACTION = 'ACTION',\n}\n\n/** @enumType */\nexport type ButtonDataTypeWithLiterals = ButtonDataType | 'LINK' | 'ACTION';\n\nexport interface Styles {\n /**\n * Deprecated: Use `borderWidth` and `borderRadius` instead.\n * @deprecated\n */\n border?: StylesBorder;\n /**\n * Deprecated: Use `textColor`, `borderColor` and `backgroundColor` instead.\n * @deprecated\n */\n colors?: Colors;\n /** Border width in pixels. */\n borderWidth?: number | null;\n /**\n * Deprecated: Use `borderWidth` for normal/hover states instead.\n * @deprecated\n */\n borderWidthHover?: number | null;\n /** Border radius in pixels. */\n borderRadius?: number | null;\n /**\n * Border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /**\n * Border color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n borderColorHover?: string | null;\n /**\n * Text color as a hexadecimal value.\n * @format COLOR_HEX\n */\n textColor?: string | null;\n /**\n * Text color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n textColorHover?: string | null;\n /**\n * Background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /**\n * Background color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n backgroundColorHover?: string | null;\n /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */\n buttonSize?: string | null;\n}\n\nexport interface V1Link extends V1LinkDataOneOf {\n /** The absolute URL for the linked document. */\n url?: string;\n /** The target node's ID. Used for linking to another node in this object. */\n anchor?: string;\n /**\n * he HTML `target` attribute value for the link. This property defines where the linked document opens as follows:\n * `SELF` - Default. Opens the linked document in the same frame as the link.\n * `BLANK` - Opens the linked document in a new browser tab or window.\n * `PARENT` - Opens the linked document in the link's parent frame.\n * `TOP` - Opens the linked document in the full body of the link's browser tab or window.\n */\n target?: LinkTargetWithLiterals;\n /** The HTML `rel` attribute value for the link. This object specifies the relationship between the current document and the linked document. */\n rel?: Rel;\n /** A serialized object used for a custom or external link panel. */\n customData?: string | null;\n}\n\n/** @oneof */\nexport interface V1LinkDataOneOf {\n /** The absolute URL for the linked document. */\n url?: string;\n /** The target node's ID. Used for linking to another node in this object. */\n anchor?: string;\n}\n\nexport enum LinkTarget {\n /** Opens the linked document in the same frame as it was clicked (this is default) */\n SELF = 'SELF',\n /** Opens the linked document in a new window or tab */\n BLANK = 'BLANK',\n /** Opens the linked document in the parent frame */\n PARENT = 'PARENT',\n /** Opens the linked document in the full body of the window */\n TOP = 'TOP',\n}\n\n/** @enumType */\nexport type LinkTargetWithLiterals =\n | LinkTarget\n | 'SELF'\n | 'BLANK'\n | 'PARENT'\n | 'TOP';\n\nexport interface Rel {\n /** Indicates to search engine crawlers not to follow the link. Defaults to `false`. */\n nofollow?: boolean | null;\n /** Indicates to search engine crawlers that the link is a paid placement such as sponsored content or an advertisement. Defaults to `false`. */\n sponsored?: boolean | null;\n /** Indicates that this link is user-generated content and isn't necessarily trusted or endorsed by the page’s author. For example, a link in a fourm post. Defaults to `false`. */\n ugc?: boolean | null;\n /** Indicates that this link protect referral information from being passed to the target website. */\n noreferrer?: boolean | null;\n}\n\nexport interface CodeBlockData {\n /** Styling for the code block's text. */\n textStyle?: V1TextStyle;\n}\n\nexport interface V1TextStyle {\n /** Text alignment. Defaults to `AUTO`. */\n textAlignment?: TextAlignmentWithLiterals;\n /** A CSS `line-height` value for the text expressed as a ratio relative to the font size. For example, if the font size is 20px, a `lineHeight` value of `'1.5'`` results in a line height of 30px. */\n lineHeight?: string | null;\n}\n\nexport enum TextAlignment {\n /** browser default, eqivalent to `initial` */\n AUTO = 'AUTO',\n /** Left align */\n LEFT = 'LEFT',\n /** Right align */\n RIGHT = 'RIGHT',\n /** Center align */\n CENTER = 'CENTER',\n /** Text is spaced to line up its left and right edges to the left and right edges of the line box, except for the last line */\n JUSTIFY = 'JUSTIFY',\n}\n\n/** @enumType */\nexport type TextAlignmentWithLiterals =\n | TextAlignment\n | 'AUTO'\n | 'LEFT'\n | 'RIGHT'\n | 'CENTER'\n | 'JUSTIFY';\n\nexport interface DividerData {\n /** Styling for the divider's container. */\n containerData?: PluginContainerData;\n /** Divider line style. */\n lineStyle?: LineStyleWithLiterals;\n /** Divider width. */\n width?: DividerDataWidthWithLiterals;\n /** Divider alignment. */\n alignment?: DividerDataAlignmentWithLiterals;\n}\n\nexport enum LineStyle {\n /** Single Line */\n SINGLE = 'SINGLE',\n /** Double Line */\n DOUBLE = 'DOUBLE',\n /** Dashed Line */\n DASHED = 'DASHED',\n /** Dotted Line */\n DOTTED = 'DOTTED',\n}\n\n/** @enumType */\nexport type LineStyleWithLiterals =\n | LineStyle\n | 'SINGLE'\n | 'DOUBLE'\n | 'DASHED'\n | 'DOTTED';\n\nexport enum DividerDataWidth {\n /** Large line */\n LARGE = 'LARGE',\n /** Medium line */\n MEDIUM = 'MEDIUM',\n /** Small line */\n SMALL = 'SMALL',\n}\n\n/** @enumType */\nexport type DividerDataWidthWithLiterals =\n | DividerDataWidth\n | 'LARGE'\n | 'MEDIUM'\n | 'SMALL';\n\nexport enum DividerDataAlignment {\n /** Center alignment */\n CENTER = 'CENTER',\n /** Left alignment */\n LEFT = 'LEFT',\n /** Right alignment */\n RIGHT = 'RIGHT',\n}\n\n/** @enumType */\nexport type DividerDataAlignmentWithLiterals =\n | DividerDataAlignment\n | 'CENTER'\n | 'LEFT'\n | 'RIGHT';\n\nexport interface FileData {\n /** Styling for the file's container. */\n containerData?: PluginContainerData;\n /** The source for the file's data. */\n src?: FileSource;\n /** File name. */\n name?: string | null;\n /** File type. */\n type?: string | null;\n /**\n * Use `sizeInKb` instead.\n * @deprecated\n */\n size?: number | null;\n /** Settings for PDF files. */\n pdfSettings?: PDFSettings;\n /** File MIME type. */\n mimeType?: string | null;\n /** File path. */\n path?: string | null;\n /** File size in KB. */\n sizeInKb?: string | null;\n}\n\nexport enum PDFSettingsViewMode {\n /** No PDF view */\n NONE = 'NONE',\n /** Full PDF view */\n FULL = 'FULL',\n /** Mini PDF view */\n MINI = 'MINI',\n}\n\n/** @enumType */\nexport type PDFSettingsViewModeWithLiterals =\n | PDFSettingsViewMode\n | 'NONE'\n | 'FULL'\n | 'MINI';\n\nexport interface FileSource extends FileSourceDataOneOf {\n /** The absolute URL for the file's source. */\n url?: string | null;\n /**\n * Custom ID. Use `id` instead.\n * @deprecated\n */\n custom?: string | null;\n /** An ID that's resolved to a URL by a resolver function. */\n id?: string | null;\n /** Indicates whether the file's source is private. Defaults to `false`. */\n private?: boolean | null;\n}\n\n/** @oneof */\nexport interface FileSourceDataOneOf {\n /** The absolute URL for the file's source. */\n url?: string | null;\n /**\n * Custom ID. Use `id` instead.\n * @deprecated\n */\n custom?: string | null;\n /** An ID that's resolved to a URL by a resolver function. */\n id?: string | null;\n}\n\nexport interface PDFSettings {\n /**\n * PDF view mode. One of the following:\n * `NONE` : The PDF isn't displayed.\n * `FULL` : A full page view of the PDF is displayed.\n * `MINI` : A mini view of the PDF is displayed.\n */\n viewMode?: PDFSettingsViewModeWithLiterals;\n /** Sets whether the PDF download button is disabled. Defaults to `false`. */\n disableDownload?: boolean | null;\n /** Sets whether the PDF print button is disabled. Defaults to `false`. */\n disablePrint?: boolean | null;\n}\n\nexport interface GalleryData {\n /** Styling for the gallery's container. */\n containerData?: PluginContainerData;\n /** The items in the gallery. */\n items?: Item[];\n /** Options for defining the gallery's appearance. */\n options?: GalleryOptions;\n /** Sets whether the gallery's expand button is disabled. Defaults to `false`. */\n disableExpand?: boolean | null;\n /** Sets whether the gallery's download button is disabled. Defaults to `false`. */\n disableDownload?: boolean | null;\n}\n\nexport interface Media {\n /** The source for the media's data. */\n src?: FileSource;\n /** Media width in pixels. */\n width?: number | null;\n /** Media height in pixels. */\n height?: number | null;\n /** Media duration in seconds. Only relevant for audio and video files. */\n duration?: number | null;\n}\n\nexport interface ItemImage {\n /** Image file details. */\n media?: Media;\n /** Link details for images that are links. */\n link?: V1Link;\n}\n\nexport interface ItemVideo {\n /** Video file details. */\n media?: Media;\n /** Video thumbnail file details. */\n thumbnail?: Media;\n}\n\nexport interface Item extends ItemDataOneOf {\n /** An image item. */\n image?: ItemImage;\n /** A video item. */\n video?: ItemVideo;\n /** Item title. */\n title?: string | null;\n /** Item's alternative text. */\n altText?: string | null;\n}\n\n/** @oneof */\nexport interface ItemDataOneOf {\n /** An image item. */\n image?: ItemImage;\n /** A video item. */\n video?: ItemVideo;\n}\n\nexport interface GalleryOptions {\n /** Gallery layout. */\n layout?: GalleryOptionsLayout;\n /** Styling for gallery items. */\n item?: ItemStyle;\n /** Styling for gallery thumbnail images. */\n thumbnails?: GalleryOptionsThumbnails;\n}\n\nexport enum LayoutType {\n /** Collage type */\n COLLAGE = 'COLLAGE',\n /** Masonry type */\n MASONRY = 'MASONRY',\n /** Grid type */\n GRID = 'GRID',\n /** Thumbnail type */\n THUMBNAIL = 'THUMBNAIL',\n /** Slider type */\n SLIDER = 'SLIDER',\n /** Slideshow type */\n SLIDESHOW = 'SLIDESHOW',\n /** Panorama type */\n PANORAMA = 'PANORAMA',\n /** Column type */\n COLUMN = 'COLUMN',\n /** Magic type */\n MAGIC = 'MAGIC',\n /** Fullsize images type */\n FULLSIZE = 'FULLSIZE',\n}\n\n/** @enumType */\nexport type LayoutTypeWithLiterals =\n | LayoutType\n | 'COLLAGE'\n | 'MASONRY'\n | 'GRID'\n | 'THUMBNAIL'\n | 'SLIDER'\n | 'SLIDESHOW'\n | 'PANORAMA'\n | 'COLUMN'\n | 'MAGIC'\n | 'FULLSIZE';\n\nexport enum Orientation {\n /** Rows Orientation */\n ROWS = 'ROWS',\n /** Columns Orientation */\n COLUMNS = 'COLUMNS',\n}\n\n/** @enumType */\nexport type OrientationWithLiterals = Orientation | 'ROWS' | 'COLUMNS';\n\nexport enum Crop {\n /** Crop to fill */\n FILL = 'FILL',\n /** Crop to fit */\n FIT = 'FIT',\n}\n\n/** @enumType */\nexport type CropWithLiterals = Crop | 'FILL' | 'FIT';\n\nexport enum ThumbnailsAlignment {\n /** Top alignment */\n TOP = 'TOP',\n /** Right alignment */\n RIGHT = 'RIGHT',\n /** Bottom alignment */\n BOTTOM = 'BOTTOM',\n /** Left alignment */\n LEFT = 'LEFT',\n /** No thumbnail */\n NONE = 'NONE',\n}\n\n/** @enumType */\nexport type ThumbnailsAlignmentWithLiterals =\n | ThumbnailsAlignment\n | 'TOP'\n | 'RIGHT'\n | 'BOTTOM'\n | 'LEFT'\n | 'NONE';\n\nexport interface GalleryOptionsLayout {\n /** Gallery layout type. */\n type?: LayoutTypeWithLiterals;\n /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */\n horizontalScroll?: boolean | null;\n /** Gallery orientation. */\n orientation?: OrientationWithLiterals;\n /** The number of columns to display on full size screens. */\n numberOfColumns?: number | null;\n /** The number of columns to display on mobile screens. */\n mobileNumberOfColumns?: number | null;\n}\n\nexport interface ItemStyle {\n /** Desirable dimension for each item in pixels (behvaior changes according to gallery type) */\n targetSize?: number | null;\n /** Item ratio */\n ratio?: number | null;\n /** Sets how item images are cropped. */\n crop?: CropWithLiterals;\n /** The spacing between items in pixels. */\n spacing?: number | null;\n}\n\nexport interface GalleryOptionsThumbnails {\n /** Thumbnail alignment. */\n placement?: ThumbnailsAlignmentWithLiterals;\n /** Spacing between thumbnails in pixels. */\n spacing?: number | null;\n}\n\nexport interface GIFData {\n /** Styling for the GIF's container. */\n containerData?: PluginContainerData;\n /** The source of the full size GIF. */\n original?: GIF;\n /** The source of the downsized GIF. */\n downsized?: GIF;\n /** Height in pixels. */\n height?: number;\n /** Width in pixels. */\n width?: number;\n /** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */\n gifType?: GIFTypeWithLiterals;\n}\n\nexport interface GIF {\n /**\n * GIF format URL.\n * @format WEB_URL\n */\n gif?: string | null;\n /**\n * MP4 format URL.\n * @format WEB_URL\n */\n mp4?: string | null;\n /**\n * Thumbnail URL.\n * @format WEB_URL\n */\n still?: string | null;\n}\n\nexport enum GIFType {\n NORMAL = 'NORMAL',\n STICKER = 'STICKER',\n}\n\n/** @enumType */\nexport type GIFTypeWithLiterals = GIFType | 'NORMAL' | 'STICKER';\n\nexport interface HeadingData {\n /** Heading level from 1-6. */\n level?: number;\n /** Styling for the heading text. */\n textStyle?: V1TextStyle;\n /** Indentation level from 1-4. */\n indentation?: number | null;\n}\n\nexport interface HTMLData extends HTMLDataDataOneOf {\n /** The URL for the HTML code for the node. */\n url?: string;\n /** The HTML code for the node. */\n html?: string;\n /**\n * Whether this is an AdSense element. Use `source` instead.\n * @deprecated\n */\n isAdsense?: boolean | null;\n /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */\n containerData?: PluginContainerData;\n /** The type of HTML code. */\n source?: HTMLDataSourceWithLiterals;\n /** If container height is aligned with its content height. Defaults to `true`. */\n autoHeight?: boolean | null;\n}\n\n/** @oneof */\nexport interface HTMLDataDataOneOf {\n /** The URL for the HTML code for the node. */\n url?: string;\n /** The HTML code for the node. */\n html?: string;\n /**\n * Whether this is an AdSense element. Use `source` instead.\n * @deprecated\n */\n isAdsense?: boolean | null;\n}\n\nexport enum HTMLDataSource {\n HTML = 'HTML',\n ADSENSE = 'ADSENSE',\n AI = 'AI',\n}\n\n/** @enumType */\nexport type HTMLDataSourceWithLiterals =\n | HTMLDataSource\n | 'HTML'\n | 'ADSENSE'\n | 'AI';\n\nexport interface ImageData {\n /** Styling for the image's container. */\n containerData?: PluginContainerData;\n /** Image file details. */\n image?: Media;\n /** Link details for images that are links. */\n link?: V1Link;\n /** Sets whether the image expands to full screen when clicked. Defaults to `false`. */\n disableExpand?: boolean | null;\n /** Image's alternative text. */\n altText?: string | null;\n /**\n * Deprecated: use Caption node instead.\n * @deprecated\n */\n caption?: string | null;\n /** Sets whether the image's download button is disabled. Defaults to `false`. */\n disableDownload?: boolean | null;\n /** Sets whether the image is decorative and does not need an explanation. Defaults to `false`. */\n decorative?: boolean | null;\n /** Styling for the image. */\n styles?: ImageDataStyles;\n}\n\nexport interface ImageDataStylesBorder {\n /** Border width in pixels. */\n width?: number | null;\n /**\n * Border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n color?: string | null;\n /** Border radius in pixels. */\n radius?: number | null;\n}\n\nexport interface ImageDataStyles {\n /** Border attributes. */\n border?: ImageDataStylesBorder;\n}\n\nexport interface LinkPreviewData {\n /** Styling for the link preview's container. */\n containerData?: PluginContainerData;\n /** Link details. */\n link?: V1Link;\n /** Preview title. */\n title?: string | null;\n /** Preview thumbnail URL. */\n thumbnailUrl?: string | null;\n /** Preview description. */\n description?: string | null;\n /** The preview content as HTML. */\n html?: string | null;\n /** Styling for the link preview. */\n styles?: LinkPreviewDataStyles;\n}\n\nexport enum StylesPosition {\n /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */\n START = 'START',\n /** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */\n END = 'END',\n /** Thumbnail positioned at the top */\n TOP = 'TOP',\n /** Thumbnail hidden and not displayed */\n HIDDEN = 'HIDDEN',\n}\n\n/** @enumType */\nexport type StylesPositionWithLiterals =\n | StylesPosition\n | 'START'\n | 'END'\n | 'TOP'\n | 'HIDDEN';\n\nexport interface LinkPreviewDataStyles {\n /**\n * Background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /**\n * Title color as a hexadecimal value.\n * @format COLOR_HEX\n */\n titleColor?: string | null;\n /**\n * Subtitle color as a hexadecimal value.\n * @format COLOR_HEX\n */\n subtitleColor?: string | null;\n /**\n * Link color as a hexadecimal value.\n * @format COLOR_HEX\n */\n linkColor?: string | null;\n /** Border width in pixels. */\n borderWidth?: number | null;\n /** Border radius in pixels. */\n borderRadius?: number | null;\n /**\n * Border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /** Position of thumbnail. Defaults to `START`. */\n thumbnailPosition?: StylesPositionWithLiterals;\n}\n\nexport interface MapData {\n /** Styling for the map's container. */\n containerData?: PluginContainerData;\n /** Map settings. */\n mapSettings?: MapSettings;\n}\n\nexport interface MapSettings {\n /** The address to display on the map. */\n address?: string | null;\n /** Sets whether the map is draggable. */\n draggable?: boolean | null;\n /** Sets whether the location marker is visible. */\n marker?: boolean | null;\n /** Sets whether street view control is enabled. */\n streetViewControl?: boolean | null;\n /** Sets whether zoom control is enabled. */\n zoomControl?: boolean | null;\n /** Location latitude. */\n lat?: number | null;\n /** Location longitude. */\n lng?: number | null;\n /** Location name. */\n locationName?: string | null;\n /** Sets whether view mode control is enabled. */\n viewModeControl?: boolean | null;\n /** Initial zoom value. */\n initialZoom?: number | null;\n /** Map type. `HYBRID` is a combination of the `ROADMAP` and `SATELLITE` map types. */\n mapType?: MapTypeWithLiterals;\n}\n\nexport enum MapType {\n /** Roadmap map type */\n ROADMAP = 'ROADMAP',\n /** Satellite map type */\n SATELITE = 'SATELITE',\n /** Hybrid map type */\n HYBRID = 'HYBRID',\n /** Terrain map type */\n TERRAIN = 'TERRAIN',\n}\n\n/** @enumType */\nexport type MapTypeWithLiterals =\n | MapType\n | 'ROADMAP'\n | 'SATELITE'\n | 'HYBRID'\n | 'TERRAIN';\n\nexport interface ParagraphData {\n /** Styling for the paragraph text. */\n textStyle?: V1TextStyle;\n /** Indentation level from 1-4. */\n indentation?: number | null;\n /** Paragraph level */\n level?: number | null;\n}\n\nexport interface PollData {\n /** Styling for the poll's container. */\n containerData?: PluginContainerData;\n /** Poll data. */\n poll?: Poll;\n /** Layout settings for the poll and voting options. */\n layout?: PollDataLayout;\n /** Styling for the poll and voting options. */\n design?: Design;\n}\n\nexport enum ViewRole {\n /** Only Poll creator can view the results */\n CREATOR = 'CREATOR',\n /** Anyone who voted can see the results */\n VOTERS = 'VOTERS',\n /** Anyone can see the results, even if one didn't vote */\n EVERYONE = 'EVERYONE',\n}\n\n/** @enumType */\nexport type ViewRoleWithLiterals = ViewRole | 'CREATOR' | 'VOTERS' | 'EVERYONE';\n\nexport enum VoteRole {\n /** Logged in member */\n SITE_MEMBERS = 'SITE_MEMBERS',\n /** Anyone */\n ALL = 'ALL',\n}\n\n/** @enumType */\nexport type VoteRoleWithLiterals = VoteRole | 'SITE_MEMBERS' | 'ALL';\n\nexport interface SettingsPermissions {\n /** Sets who can view the poll results. */\n view?: ViewRoleWithLiterals;\n /** Sets who can vote. */\n vote?: VoteRoleWithLiterals;\n /** Sets whether one voter can vote multiple times. Defaults to `false`. */\n allowMultipleVotes?: boolean | null;\n}\n\nexport interface PollOption {\n /** Option ID. */\n id?: string | null;\n /** Option title. */\n title?: string | null;\n /** The image displayed with the option. */\n image?: Media;\n}\n\nexport interface PollSettings {\n /** Permissions settings for voting. */\n permissions?: SettingsPermissions;\n /** Sets whether voters are displayed in the vote results. Defaults to `true`. */\n showVoters?: boolean | null;\n /** Sets whether the vote count is displayed. Defaults to `true`. */\n showVotesCount?: boolean | null;\n}\n\nexport enum PollLayoutType {\n /** List */\n LIST = 'LIST',\n /** Grid */\n GRID = 'GRID',\n}\n\n/** @enumType */\nexport type PollLayoutTypeWithLiterals = PollLayoutType | 'LIST' | 'GRID';\n\nexport enum PollLayoutDirection {\n /** Left-to-right */\n LTR = 'LTR',\n /** Right-to-left */\n RTL = 'RTL',\n}\n\n/** @enumType */\nexport type PollLayoutDirectionWithLiterals =\n | PollLayoutDirection\n | 'LTR'\n | 'RTL';\n\nexport interface PollLayout {\n /** The layout for displaying the voting options. */\n type?: PollLayoutTypeWithLiterals;\n /** The direction of the text displayed in the voting options. Text can be displayed either right-to-left or left-to-right. */\n direction?: PollLayoutDirectionWithLiterals;\n /** Sets whether to display the main poll image. Defaults to `false`. */\n enableImage?: boolean | null;\n}\n\nexport interface OptionLayout {\n /** Sets whether to display option images. Defaults to `false`. */\n enableImage?: boolean | null;\n}\n\nexport enum BackgroundType {\n /** Color background type */\n COLOR = 'COLOR',\n /** Image background type */\n IMAGE = 'IMAGE',\n /** Gradiant background type */\n GRADIENT = 'GRADIENT',\n}\n\n/** @enumType */\nexport type BackgroundTypeWithLiterals =\n | BackgroundType\n | 'COLOR'\n | 'IMAGE'\n | 'GRADIENT';\n\nexport interface Gradient {\n /** The gradient angle in degrees. */\n angle?: number | null;\n /**\n * The start color as a hexademical value.\n * @format COLOR_HEX\n */\n startColor?: string | null;\n /**\n * The end color as a hexademical value.\n * @format COLOR_HEX\n */\n lastColor?: string | null;\n}\n\nexport interface PollDesignBackground\n extends PollDesignBackgroundBackgroundOneOf {\n /**\n * The background color as a hexademical value.\n * @format COLOR_HEX\n */\n color?: string | null;\n /** An image to use for the background. */\n image?: Media;\n /** Details for a gradient background. */\n gradient?: Gradient;\n /** Background type. For each option, include the relevant details. */\n type?: BackgroundTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface PollDesignBackgroundBackgroundOneOf {\n /**\n * The background color as a hexademical value.\n * @format COLOR_HEX\n */\n color?: string | null;\n /** An image to use for the background. */\n image?: Media;\n /** Details for a gradient background. */\n gradient?: Gradient;\n}\n\nexport interface PollDesign {\n /** Background styling. */\n background?: PollDesignBackground;\n /** Border radius in pixels. */\n borderRadius?: number | null;\n}\n\nexport interface OptionDesign {\n /** Border radius in pixels. */\n borderRadius?: number | null;\n}\n\nexport interface Poll {\n /** Poll ID. */\n id?: string | null;\n /** Poll title. */\n title?: string | null;\n /** Poll creator ID. */\n creatorId?: string | null;\n /** Main poll image. */\n image?: Media;\n /** Voting options. */\n options?: PollOption[];\n /** The poll's permissions and display settings. */\n settings?: PollSettings;\n}\n\nexport interface PollDataLayout {\n /** Poll layout settings. */\n poll?: PollLayout;\n /** Voting otpions layout settings. */\n options?: OptionLayout;\n}\n\nexport interface Design {\n /** Styling for the poll. */\n poll?: PollDesign;\n /** Styling for voting options. */\n options?: OptionDesign;\n}\n\nexport interface TextData {\n /** The text to apply decorations to. */\n text?: string;\n /** The decorations to apply. */\n decorations?: Decoration[];\n}\n\n/** Adds appearence changes to text */\nexport interface Decoration extends DecorationDataOneOf {\n /** Data for an anchor link decoration. */\n anchorData?: AnchorData;\n /** Data for a color decoration. */\n colorData?: ColorData;\n /** Data for an external link decoration. */\n linkData?: LinkData;\n /** Data for a mention decoration. */\n mentionData?: MentionData;\n /** Data for a font size decoration. */\n fontSizeData?: FontSizeData;\n /** Font weight for a bold decoration. */\n fontWeightValue?: number | null;\n /** Data for an italic decoration. Defaults to `true`. */\n italicData?: boolean | null;\n /** Data for an underline decoration. Defaults to `true`. */\n underlineData?: boolean | null;\n /** Data for a spoiler decoration. */\n spoilerData?: SpoilerData;\n /** Data for a strikethrough decoration. Defaults to `true`. */\n strikethroughData?: boolean | null;\n /** Data for a superscript decoration. Defaults to `true`. */\n superscriptData?: boolean | null;\n /** Data for a subscript decoration. Defaults to `true`. */\n subscriptData?: boolean | null;\n /** Data for a font family decoration. */\n fontFamilyData?: FontFamilyData;\n /** The type of decoration to apply. */\n type?: DecorationTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DecorationDataOneOf {\n /** Data for an anchor link decoration. */\n anchorData?: AnchorData;\n /** Data for a color decoration. */\n colorData?: ColorData;\n /** Data for an external link decoration. */\n linkData?: LinkData;\n /** Data for a mention decoration. */\n mentionData?: MentionData;\n /** Data for a font size decoration. */\n fontSizeData?: FontSizeData;\n /** Font weight for a bold decoration. */\n fontWeightValue?: number | null;\n /** Data for an italic decoration. Defaults to `true`. */\n italicData?: boolean | null;\n /** Data for an underline decoration. Defaults to `true`. */\n underlineData?: boolean | null;\n /** Data for a spoiler decoration. */\n spoilerData?: SpoilerData;\n /** Data for a strikethrough decoration. Defaults to `true`. */\n strikethroughData?: boolean | null;\n /** Data for a superscript decoration. Defaults to `true`. */\n superscriptData?: boolean | null;\n /** Data for a subscript decoration. Defaults to `true`. */\n subscriptData?: boolean | null;\n /** Data for a font family decoration. */\n fontFamilyData?: FontFamilyData;\n}\n\nexport enum DecorationType {\n BOLD = 'BOLD',\n ITALIC = 'ITALIC',\n UNDERLINE = 'UNDERLINE',\n SPOILER = 'SPOILER',\n ANCHOR = 'ANCHOR',\n MENTION = 'MENTION',\n LINK = 'LINK',\n COLOR = 'COLOR',\n FONT_SIZE = 'FONT_SIZE',\n EXTERNAL = 'EXTERNAL',\n STRIKETHROUGH = 'STRIKETHROUGH',\n SUPERSCRIPT = 'SUPERSCRIPT',\n SUBSCRIPT = 'SUBSCRIPT',\n FONT_FAMILY = 'FONT_FAMILY',\n}\n\n/** @enumType */\nexport type DecorationTypeWithLiterals =\n | DecorationType\n | 'BOLD'\n | 'ITALIC'\n | 'UNDERLINE'\n | 'SPOILER'\n | 'ANCHOR'\n | 'MENTION'\n | 'LINK'\n | 'COLOR'\n | 'FONT_SIZE'\n | 'EXTERNAL'\n | 'STRIKETHROUGH'\n | 'SUPERSCRIPT'\n | 'SUBSCRIPT'\n | 'FONT_FAMILY';\n\nexport interface AnchorData {\n /** The target node's ID. */\n anchor?: string;\n}\n\nexport interface ColorData {\n /** The text's background color as a hexadecimal value. */\n background?: string | null;\n /** The text's foreground color as a hexadecimal value. */\n foreground?: string | null;\n}\n\nexport interface LinkData {\n /** Link details. */\n link?: V1Link;\n}\n\nexport interface MentionData {\n /** The mentioned user's name. */\n name?: string;\n /** The version of the user's name that appears after the `@` character in the mention. */\n slug?: string;\n /** Mentioned user's ID. */\n id?: string | null;\n}\n\nexport interface FontSizeData {\n /** The units used for the font size. */\n unit?: FontTypeWithLiterals;\n /** Font size value. */\n value?: number | null;\n}\n\nexport enum FontType {\n PX = 'PX',\n EM = 'EM',\n}\n\n/** @enumType */\nexport type FontTypeWithLiterals = FontType | 'PX' | 'EM';\n\nexport interface SpoilerData {\n /** Spoiler ID. */\n id?: string | null;\n}\n\nexport interface FontFamilyData {\n /** @maxLength 1000 */\n value?: string | null;\n}\n\nexport interface AppEmbedData extends AppEmbedDataAppDataOneOf {\n /** Data for embedded Wix Bookings content. */\n bookingData?: BookingData;\n /** Data for embedded Wix Events content. */\n eventData?: EventData;\n /** The type of Wix App content being embedded. */\n type?: AppTypeWithLiterals;\n /** The ID of the embedded content. */\n itemId?: string | null;\n /** The name of the embedded content. */\n name?: string | null;\n /**\n * Deprecated: Use `image` instead.\n * @deprecated\n */\n imageSrc?: string | null;\n /** The URL for the embedded content. */\n url?: string | null;\n /** An image for the embedded content. */\n image?: Media;\n /** Whether to hide the image. */\n hideImage?: boolean | null;\n /** Whether to hide the title. */\n hideTitle?: boolean | null;\n /** Whether to hide the price. */\n hidePrice?: boolean | null;\n /** Whether to hide the description (Event and Booking). */\n hideDescription?: boolean | null;\n /** Whether to hide the date and time (Event). */\n hideDateTime?: boolean | null;\n /** Whether to hide the location (Event). */\n hideLocation?: boolean | null;\n /** Whether to hide the duration (Booking). */\n hideDuration?: boolean | null;\n /** Whether to hide the button. */\n hideButton?: boolean | null;\n /** Whether to hide the ribbon. */\n hideRibbon?: boolean | null;\n /** Button styling options. */\n buttonStyles?: ButtonStyles;\n /** Image styling options. */\n imageStyles?: ImageStyles;\n /** Ribbon styling options. */\n ribbonStyles?: RibbonStyles;\n /** Card styling options. */\n cardStyles?: CardStyles;\n /** Styling for the app embed's container. */\n containerData?: PluginContainerData;\n /** Pricing data for embedded Wix App content. */\n pricingData?: PricingData;\n}\n\n/** @oneof */\nexport interface AppEmbedDataAppDataOneOf {\n /** Data for embedded Wix Bookings content. */\n bookingData?: BookingData;\n /** Data for embedded Wix Events content. */\n eventData?: EventData;\n}\n\nexport enum ImageStylesPosition {\n /** Image positioned at the start (left in LTR layouts, right in RTL layouts) */\n START = 'START',\n /** Image positioned at the end (right in LTR layouts, left in RTL layouts) */\n END = 'END',\n /** Image positioned at the top */\n TOP = 'TOP',\n}\n\n/** @enumType */\nexport type ImageStylesPositionWithLiterals =\n | ImageStylesPosition\n | 'START'\n | 'END'\n | 'TOP';\n\nexport enum AspectRatio {\n /** 1:1 aspect ratio */\n SQUARE = 'SQUARE',\n /** 16:9 aspect ratio */\n RECTANGLE = 'RECTANGLE',\n}\n\n/** @enumType */\nexport type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';\n\nexport enum Resizing {\n /** Fill the container, may crop the image */\n FILL = 'FILL',\n /** Fit the image within the container */\n FIT = 'FIT',\n}\n\n/** @enumType */\nexport type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';\n\nexport enum Placement {\n /** Ribbon placed on the image */\n IMAGE = 'IMAGE',\n /** Ribbon placed on the product information */\n PRODUCT_INFO = 'PRODUCT_INFO',\n}\n\n/** @enumType */\nexport type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';\n\nexport enum CardStylesType {\n /** Card with visible border and background */\n CONTAINED = 'CONTAINED',\n /** Card without visible border */\n FRAMELESS = 'FRAMELESS',\n}\n\n/** @enumType */\nexport type CardStylesTypeWithLiterals =\n | CardStylesType\n | 'CONTAINED'\n | 'FRAMELESS';\n\nexport enum CardStylesAlignment {\n /** Content aligned to start (left in LTR layouts, right in RTL layouts) */\n START = 'START',\n /** Content centered */\n CENTER = 'CENTER',\n /** Content aligned to end (right in LTR layouts, left in RTL layouts) */\n END = 'END',\n}\n\n/** @enumType */\nexport type CardStylesAlignmentWithLiterals =\n | CardStylesAlignment\n | 'START'\n | 'CENTER'\n | 'END';\n\nexport enum Layout {\n /** Elements stacked vertically */\n STACKED = 'STACKED',\n /** Elements arranged horizontally */\n SIDE_BY_SIDE = 'SIDE_BY_SIDE',\n}\n\n/** @enumType */\nexport type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';\n\nexport enum AppType {\n PRODUCT = 'PRODUCT',\n EVENT = 'EVENT',\n BOOKING = 'BOOKING',\n}\n\n/** @enumType */\nexport type AppTypeWithLiterals = AppType | 'PRODUCT' | 'EVENT' | 'BOOKING';\n\nexport interface BookingData {\n /** Booking duration in minutes. */\n durations?: string | null;\n}\n\nexport interface EventData {\n /** Event schedule. */\n scheduling?: string | null;\n /** Event location. */\n location?: string | null;\n}\n\nexport interface ButtonStyles {\n /** Text to display on the button. */\n buttonText?: string | null;\n /** Border width in pixels. */\n borderWidth?: number | null;\n /** Border radius in pixels. */\n borderRadius?: number | null;\n /**\n * Border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /**\n * Text color as a hexadecimal value.\n * @format COLOR_HEX\n */\n textColor?: string | null;\n /**\n * Background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /**\n * Border color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n borderColorHover?: string | null;\n /**\n * Text color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n textColorHover?: string | null;\n /**\n * Background color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n backgroundColorHover?: string | null;\n /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */\n buttonSize?: string | null;\n}\n\nexport interface ImageStyles {\n /** Whether to hide the image. */\n hideImage?: boolean | null;\n /** Position of image. Defaults to `START`. */\n imagePosition?: ImageStylesPositionWithLiterals;\n /** Aspect ratio for the image. Defaults to `SQUARE`. */\n aspectRatio?: AspectRatioWithLiterals;\n /** How the image should be resized. Defaults to `FILL`. */\n resizing?: ResizingWithLiterals;\n /**\n * Image border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /** Image border width in pixels. */\n borderWidth?: number | null;\n /** Image border radius in pixels. */\n borderRadius?: number | null;\n}\n\nexport interface RibbonStyles {\n /** Text to display on the ribbon. */\n ribbonText?: string | null;\n /**\n * Ribbon background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /**\n * Ribbon text color as a hexadecimal value.\n * @format COLOR_HEX\n */\n textColor?: string | null;\n /**\n * Ribbon border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /** Ribbon border width in pixels. */\n borderWidth?: number | null;\n /** Ribbon border radius in pixels. */\n borderRadius?: number | null;\n /** Placement of the ribbon. Defaults to `IMAGE`. */\n ribbonPlacement?: PlacementWithLiterals;\n}\n\nexport interface CardStyles {\n /**\n * Card background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /**\n * Card border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /** Card border width in pixels. */\n borderWidth?: number | null;\n /** Card border radius in pixels. */\n borderRadius?: number | null;\n /** Card type. Defaults to `CONTAINED`. */\n type?: CardStylesTypeWithLiterals;\n /** Content alignment. Defaults to `START`. */\n alignment?: CardStylesAlignmentWithLiterals;\n /** Layout for title and price. Defaults to `STACKED`. */\n titlePriceLayout?: LayoutWithLiterals;\n /**\n * Title text color as a hexadecimal value.\n * @format COLOR_HEX\n */\n titleColor?: string | null;\n /**\n * Text color as a hexadecimal value.\n * @format COLOR_HEX\n */\n textColor?: string | null;\n}\n\nexport interface PricingData {\n /**\n * Minimum numeric price value as string (e.g., \"10.99\").\n * @decimalValue options { maxScale:2 }\n */\n valueFrom?: string | null;\n /**\n * Maximum numeric price value as string (e.g., \"19.99\").\n * @decimalValue options { maxScale:2 }\n */\n valueTo?: string | null;\n /**\n * Numeric price value as string after discount application (e.g., \"15.99\").\n * @decimalValue options { maxScale:2 }\n */\n discountedValue?: string | null;\n /**\n * Currency of the value in ISO 4217 format (e.g., \"USD\", \"EUR\").\n * @format CURRENCY\n */\n currency?: string | null;\n /**\n * Pricing plan ID.\n * @format GUID\n */\n pricingPlanId?: string | null;\n}\n\nexport interface VideoData {\n /** Styling for the video's container. */\n containerData?: PluginContainerData;\n /** Video details. */\n video?: Media;\n /** Video thumbnail details. */\n thumbnail?: Media;\n /** Sets whether the video's download button is disabled. Defaults to `false`. */\n disableDownload?: boolean | null;\n /** Video title. */\n title?: string | null;\n /** Video options. */\n options?: PlaybackOptions;\n}\n\nexport interface PlaybackOptions {\n /** Sets whether the media will automatically start playing. */\n autoPlay?: boolean | null;\n /** Sets whether media's will be looped. */\n playInLoop?: boolean | null;\n /** Sets whether media's controls will be shown. */\n showControls?: boolean | null;\n}\n\nexport interface EmbedData {\n /** Styling for the oEmbed node's container. */\n containerData?: PluginContainerData;\n /** An [oEmbed](https://www.oembed.com) object. */\n oembed?: Oembed;\n /** Origin asset source. */\n src?: string | null;\n}\n\nexport interface Oembed {\n /** The resource type. */\n type?: string | null;\n /** The width of the resource specified in the `url` property in pixels. */\n width?: number | null;\n /** The height of the resource specified in the `url` property in pixels. */\n height?: number | null;\n /** Resource title. */\n title?: string | null;\n /** The source URL for the resource. */\n url?: string | null;\n /** HTML for embedding a video player. The HTML should have no padding or margins. */\n html?: string | null;\n /** The name of the author or owner of the resource. */\n authorName?: string | null;\n /** The URL for the author or owner of the resource. */\n authorUrl?: string | null;\n /** The name of the resource provider. */\n providerName?: string | null;\n /** The URL for the resource provider. */\n providerUrl?: string | null;\n /** The URL for a thumbnail image for the resource. If this property is defined, `thumbnailWidth` and `thumbnailHeight` must also be defined. */\n thumbnailUrl?: string | null;\n /** The width of the resource's thumbnail image. If this property is defined, `thumbnailUrl` and `thumbnailHeight` must also be defined. */\n thumbnailWidth?: string | null;\n /** The height of the resource's thumbnail image. If this property is defined, `thumbnailUrl` and `thumbnailWidth`must also be defined. */\n thumbnailHeight?: string | null;\n /** The URL for an embedded viedo. */\n videoUrl?: string | null;\n /** The oEmbed version number. This value must be `1.0`. */\n version?: string | null;\n}\n\nexport interface CollapsibleListData {\n /** Styling for the collapsible list's container. */\n containerData?: PluginContainerData;\n /** If `true`, only one item can be expanded at a time. Defaults to `false`. */\n expandOnlyOne?: boolean | null;\n /** Sets which items are expanded when the page loads. */\n initialExpandedItems?: InitialExpandedItemsWithLiterals;\n /** The direction of the text in the list. Either left-to-right or right-to-left. */\n direction?: DirectionWithLiterals;\n /** If `true`, The collapsible item will appear in search results as an FAQ. */\n isQapageData?: boolean | null;\n}\n\nexport enum InitialExpandedItems {\n /** First item will be expended initally */\n FIRST = 'FIRST',\n /** All items will expended initally */\n ALL = 'ALL',\n /** All items collapsed initally */\n NONE = 'NONE',\n}\n\n/** @enumType */\nexport type InitialExpandedItemsWithLiterals =\n | InitialExpandedItems\n | 'FIRST'\n | 'ALL'\n | 'NONE';\n\nexport enum Direction {\n /** Left-to-right */\n LTR = 'LTR',\n /** Right-to-left */\n RTL = 'RTL',\n}\n\n/** @enumType */\nexport type DirectionWithLiterals = Direction | 'LTR' | 'RTL';\n\nexport interface TableData {\n /** Styling for the table's container. */\n containerData?: PluginContainerData;\n /** The table's dimensions. */\n dimensions?: Dimensions;\n /**\n * Deprecated: Use `rowHeader` and `columnHeader` instead.\n * @deprecated\n */\n header?: boolean | null;\n /** Sets whether the table's first row is a header. Defaults to `false`. */\n rowHeader?: boolean | null;\n /** Sets whether the table's first column is a header. Defaults to `false`. */\n columnHeader?: boolean | null;\n /** The spacing between cells in pixels. Defaults to `0`. */\n cellSpacing?: number | null;\n /**\n * Padding in pixels for cells. Follows CSS order: top, right, bottom, left.\n * @maxSize 4\n */\n cellPadding?: number[];\n}\n\nexport interface Dimensions {\n /** An array representing relative width of each column in relation to the other columns. */\n colsWidthRatio?: number[];\n /** An array representing the height of each row in pixels. */\n rowsHeight?: number[];\n /** An array representing the minimum width of each column in pixels. */\n colsMinWidth?: number[];\n}\n\nexport interface TableCellData {\n /** Styling for the cell's background color and text alignment. */\n cellStyle?: CellStyle;\n /** The cell's border colors. */\n borderColors?: BorderColors;\n /** Defines how many columns the cell spans. Default: 1. */\n colspan?: number | null;\n /** Defines how many rows the cell spans. Default: 1. */\n rowspan?: number | null;\n /** The cell's border widths. */\n borderWidths?: BorderWidths;\n}\n\nexport enum VerticalAlignment {\n /** Top alignment */\n TOP = 'TOP',\n /** Middle alignment */\n MIDDLE = 'MIDDLE',\n /** Bottom alignment */\n BOTTOM = 'BOTTOM',\n}\n\n/** @enumType */\nexport type VerticalAlignmentWithLiterals =\n | VerticalAlignment\n | 'TOP'\n | 'MIDDLE'\n | 'BOTTOM';\n\nexport interface CellStyle {\n /** Vertical alignment for the cell's text. */\n verticalAlignment?: VerticalAlignmentWithLiterals;\n /**\n * Cell background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n}\n\nexport interface BorderColors {\n /**\n * Left border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n left?: string | null;\n /**\n * Right border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n right?: string | null;\n /**\n * Top border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n top?: string | null;\n /**\n * Bottom border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n bottom?: string | null;\n}\n\nexport interface BorderWidths {\n /** Left border width in pixels. */\n left?: number | null;\n /** Right border width in pixels. */\n right?: number | null;\n /** Top border width in pixels. */\n top?: number | null;\n /** Bottom border width in pixels. */\n bottom?: number | null;\n}\n\n/**\n * `NullValue` is a singleton enumeration to represent the null value for the\n * `Value` type union.\n *\n * The JSON representation for `NullValue` is JSON `null`.\n */\nexport enum NullValue {\n /** Null value. */\n NULL_VALUE = 'NULL_VALUE',\n}\n\n/** @enumType */\nexport type NullValueWithLiterals = NullValue | 'NULL_VALUE';\n\n/**\n * `ListValue` is a wrapper around a repeated field of values.\n *\n * The JSON representation for `ListValue` is JSON array.\n */\nexport interface ListValue {\n /** Repeated field of dynamically typed values. */\n values?: any[];\n}\n\nexport interface AudioData {\n /** Styling for the audio node's container. */\n containerData?: PluginContainerData;\n /** Audio file details. */\n audio?: Media;\n /** Sets whether the audio node's download button is disabled. Defaults to `false`. */\n disableDownload?: boolean | null;\n /** Cover image. */\n coverImage?: Media;\n /** Track name. */\n name?: string | null;\n /** Author name. */\n authorName?: string | null;\n /** An HTML version of the audio node. */\n html?: string | null;\n}\n\nexport interface OrderedListData {\n /** Indentation level from 0-4. */\n indentation?: number;\n /** Offset level from 0-4. */\n offset?: number | null;\n /** List start number. */\n start?: number | null;\n}\n\nexport interface BulletedListData {\n /** Indentation level from 0-4. */\n indentation?: number;\n /** Offset level from 0-4. */\n offset?: number | null;\n}\n\nexport interface BlockquoteData {\n /** Indentation level from 1-4. */\n indentation?: number;\n}\n\nexport interface CaptionData {\n textStyle?: V1TextStyle;\n}\n\nexport interface LayoutData {\n /**\n * Background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /** Background image. */\n backgroundImage?: LayoutDataBackgroundImage;\n /**\n * Border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /** Border width in pixels. */\n borderWidth?: number | null;\n /** Border */\n borderRadius?: number | null;\n /**\n * Backdrop color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backdropColor?: string | null;\n /** Backdrop image.radius in pixels. */\n backdropImage?: LayoutDataBackgroundImage;\n /** Backdrop top padding. */\n backdropPaddingTop?: number | null;\n /** Backdrop bottom padding */\n backdropPaddingBottom?: number | null;\n /** Horizontal and vertical gap between columns */\n gap?: number | null;\n /**\n * Padding in pixels for cells. Follows CSS order: top, right, bottom, left\n * @maxSize 4\n */\n cellPadding?: number[];\n /** Vertical alignment for the cell's items. */\n cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;\n /** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */\n responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;\n /** Size in pixels when responsiveness_behaviour applies */\n responsivenessBreakpoint?: number | null;\n /** Styling for the layout's container. */\n containerData?: PluginContainerData;\n /** Defines where selected design propertied applies to */\n designTarget?: DesignTargetWithLiterals;\n}\n\nexport enum Scaling {\n /** Auto image scaling */\n AUTO = 'AUTO',\n /** Contain image scaling */\n CONTAIN = 'CONTAIN',\n /** Cover image scaling */\n COVER = 'COVER',\n}\n\n/** @enumType */\nexport type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';\n\nexport enum LayoutDataImagePosition {\n /** Image positioned at the center */\n CENTER = 'CENTER',\n /** Image positioned on the left */\n CENTER_LEFT = 'CENTER_LEFT',\n /** Image positioned on the right */\n CENTER_RIGHT = 'CENTER_RIGHT',\n /** Image positioned at the center top */\n TOP = 'TOP',\n /** Image positioned at the top left */\n TOP_LEFT = 'TOP_LEFT',\n /** Image positioned at the top right */\n TOP_RIGHT = 'TOP_RIGHT',\n /** Image positioned at the center bottom */\n BOTTOM = 'BOTTOM',\n /** Image positioned at the bottom left */\n BOTTOM_LEFT = 'BOTTOM_LEFT',\n /** Image positioned at the bottom right */\n BOTTOM_RIGHT = 'BOTTOM_RIGHT',\n}\n\n/** @enumType */\nexport type LayoutDataImagePositionWithLiterals =\n | LayoutDataImagePosition\n | 'CENTER'\n | 'CENTER_LEFT'\n | 'CENTER_RIGHT'\n | 'TOP'\n | 'TOP_LEFT'\n | 'TOP_RIGHT'\n | 'BOTTOM'\n | 'BOTTOM_LEFT'\n | 'BOTTOM_RIGHT';\n\nexport interface LayoutDataBackgroundImage {\n /** Background image. */\n media?: Media;\n /** Background image opacity. */\n opacity?: number | null;\n /** Background image scaling. */\n scaling?: ScalingWithLiterals;\n /** Position of background. Defaults to `CENTER`. */\n position?: LayoutDataImagePositionWithLiterals;\n}\n\nexport enum VerticalAlignmentAlignment {\n /** Top alignment */\n TOP = 'TOP',\n /** Middle alignment */\n MIDDLE = 'MIDDLE',\n /** Bottom alignment */\n BOTTOM = 'BOTTOM',\n}\n\n/** @enumType */\nexport type VerticalAlignmentAlignmentWithLiterals =\n | VerticalAlignmentAlignment\n | 'TOP'\n | 'MIDDLE'\n | 'BOTTOM';\n\nexport enum ResponsivenessBehaviour {\n /** Stacking of columns */\n STACK = 'STACK',\n /** Wrapping of columns */\n WRAP = 'WRAP',\n}\n\n/** @enumType */\nexport type ResponsivenessBehaviourWithLiterals =\n | ResponsivenessBehaviour\n | 'STACK'\n | 'WRAP';\n\nexport enum DesignTarget {\n /** Design applied to layout */\n LAYOUT = 'LAYOUT',\n /** Design applied to cells */\n CELL = 'CELL',\n}\n\n/** @enumType */\nexport type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';\n\nexport interface LayoutCellData {\n /** Size of the cell in 12 columns grid. */\n colSpan?: number | null;\n}\n\nexport interface V1Metadata {\n /** Schema version. */\n version?: number;\n /**\n * When the object was created.\n * @readonly\n * @deprecated\n */\n createdTimestamp?: Date | null;\n /**\n * When the object was most recently updated.\n * @deprecated\n */\n updatedTimestamp?: Date | null;\n /** Object ID. */\n _id?: string | null;\n}\n\nexport interface DocumentStyle {\n /** Styling for H1 nodes. */\n headerOne?: TextNodeStyle;\n /** Styling for H2 nodes. */\n headerTwo?: TextNodeStyle;\n /** Styling for H3 nodes. */\n headerThree?: TextNodeStyle;\n /** Styling for H4 nodes. */\n headerFour?: TextNodeStyle;\n /** Styling for H5 nodes. */\n headerFive?: TextNodeStyle;\n /** Styling for H6 nodes. */\n headerSix?: TextNodeStyle;\n /** Styling for paragraph nodes. */\n paragraph?: TextNodeStyle;\n /** Styling for block quote nodes. */\n blockquote?: TextNodeStyle;\n /** Styling for code block nodes. */\n codeBlock?: TextNodeStyle;\n}\n\nexport interface TextNodeStyle {\n /** The decorations to apply to the node. */\n decorations?: Decoration[];\n /** Padding and background color for the node. */\n nodeStyle?: NodeStyle;\n /** Line height for text in the node. */\n lineHeight?: string | null;\n}\n\nexport interface CustomRefData {\n title?: string;\n anotherTitle?: string;\n}\n\nexport interface TranslatedMessageWithUniqueFieldRepeated {\n uniqueField?: string;\n message?: string;\n}\n\nexport interface TranslatedMessageWithIdRepeated {\n _id?: string;\n message?: string;\n}\n\nexport interface DiscoveryMetaData {\n /**\n * @minLength 1\n * @maxLength 200\n */\n title?: string | null;\n /**\n * @minLength 1\n * @maxLength 200\n */\n description?: string | null;\n /**\n * Searchable keywords\n * @maxSize 100\n */\n keywords?: Keywords[];\n /** Is searchable */\n searchable?: boolean;\n}\n\nexport interface InternalComponentMetadata {\n componentMetadata?: DiscoveryMetaData;\n /** @maxSize 500 */\n repeatedComponentMetadata?: DiscoveryMetaData[];\n}\n\nexport enum TestEnum {\n UNKNOWN_TEST_ENUM = 'UNKNOWN_TEST_ENUM',\n FIRST_TEST = 'FIRST_TEST',\n SECOND_TEST = 'SECOND_TEST',\n}\n\n/** @enumType */\nexport type TestEnumWithLiterals =\n | TestEnum\n | 'UNKNOWN_TEST_ENUM'\n | 'FIRST_TEST'\n | 'SECOND_TEST';\n\n/** SPI config - defines the relation between implementer URL and which types it is validates */\nexport interface ComponentsValidatorConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /**\n * Component types that will be validated\n * @minSize 1\n * @maxSize 100\n */\n componentValidationTypes?: ComponentTypeWithLiterals[];\n /** Indicates whether the validation should affect real production */\n testMode?: boolean;\n}\n\nexport interface ComponentTranslationAdditionalFieldsConfig {\n deploymentUri?: string;\n}\n\nexport interface FormSchemaSpiConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /**\n * Configuration of namespaces known by implementer\n * @maxSize 3\n */\n namespaceConfigs?: FormsSchemaNamespaceConfig[];\n}\n\nexport interface FormsSchemaNamespaceConfig {\n /**\n * Namespace name.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /** Permissions associated with this namespace. */\n permissions?: FormsPermissions;\n /** Enable client specific form validation for the namespace, more info in ValidateFormSchema. */\n schemaValidationEnabled?: boolean;\n /** Restrictions associated with this namespace. */\n restrictions?: Restrictions;\n /** Enable translations with multilingual */\n multilingualEnabled?: boolean;\n /** Attempt to select unique name for form */\n uniqueName?: boolean;\n}\n\nexport interface Restrictions {\n /**\n * Maximum amount of forms allowed per namespace.\n * @max 15000\n */\n maxFormsAmount?: number;\n /**\n * Maximum amount of fields allowed per form.\n * @max 200\n */\n maxFieldsAmount?: number;\n}\n\nexport interface ProviderConfig {\n /**\n * The name of the calendar provider.\n * @minLength 1\n */\n name?: string;\n /** The base URI in which all methods are deployed. */\n baseUri?: string;\n /** The provided calendar type. */\n calendarType?: CalendarTypeWithLiterals;\n /**\n * Connect methods used to connect to the calendar.\n * @minSize 1\n */\n connectMethods?: ConnectMethodWithLiterals[];\n /** Whether the sync configuration can be updated. */\n canUpdateSyncConfig?: boolean;\n /** Whether events can be listed from the external calendar to the Wix calendar. */\n listEventFromCalendars?: ListEventFromCalendarsWithLiterals;\n /** Whether Wix calendar sessions can be synced to the external calendar. */\n syncToCalendar?: SyncToCalendarWithLiterals;\n}\n\nexport enum CalendarType {\n UNDEFINED = 'UNDEFINED',\n GOOGLE = 'GOOGLE',\n I_CAL = 'I_CAL',\n MICROSOFT = 'MICROSOFT',\n OTHER = 'OTHER',\n}\n\n/** @enumType */\nexport type CalendarTypeWithLiterals =\n | CalendarType\n | 'UNDEFINED'\n | 'GOOGLE'\n | 'I_CAL'\n | 'MICROSOFT'\n | 'OTHER';\n\nexport enum ConnectMethod {\n OAUTH = 'OAUTH',\n CREDENTIALS = 'CREDENTIALS',\n}\n\n/** @enumType */\nexport type ConnectMethodWithLiterals = ConnectMethod | 'OAUTH' | 'CREDENTIALS';\n\nexport enum ListEventFromCalendars {\n /** Listing events from the external calendar is not supported. */\n LIST_NOT_SUPPORTED = 'LIST_NOT_SUPPORTED',\n /** Listing events from the primary external calendar only. */\n LIST_FROM_PRIMARY_CALENDAR_ONLY = 'LIST_FROM_PRIMARY_CALENDAR_ONLY',\n /**\n * Listing events from specific external calendars.\n * The external calendars can be listed using the `ExternalCalendarProvider.ListCalendars` API.\n */\n LIST_FROM_SPECIFIC_CALENDARS = 'LIST_FROM_SPECIFIC_CALENDARS',\n}\n\n/** @enumType */\nexport type ListEventFromCalendarsWithLiterals =\n | ListEventFromCalendars\n | 'LIST_NOT_SUPPORTED'\n | 'LIST_FROM_PRIMARY_CALENDAR_ONLY'\n | 'LIST_FROM_SPECIFIC_CALENDARS';\n\nexport enum SyncToCalendar {\n /** Syncing Wix calendar sessions to the external calendar is not supported. */\n SYNC_NOT_SUPPORTED = 'SYNC_NOT_SUPPORTED',\n /** Syncing Wix calendar sessions to the primary external calendar only. */\n SYNC_TO_PRIMARY_CALENDAR_ONLY = 'SYNC_TO_PRIMARY_CALENDAR_ONLY',\n /** Syncing Wix calendar sessions to a new external calendar. */\n SYNC_TO_DEDICATED_CALENDAR = 'SYNC_TO_DEDICATED_CALENDAR',\n}\n\n/** @enumType */\nexport type SyncToCalendarWithLiterals =\n | SyncToCalendar\n | 'SYNC_NOT_SUPPORTED'\n | 'SYNC_TO_PRIMARY_CALENDAR_ONLY'\n | 'SYNC_TO_DEDICATED_CALENDAR';\n\nexport interface DefaultTaxGroupProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /** User-friendly name of the tax category */\n taxationCategory?: string;\n additionalCategories?: Record<string, TaxationCategoryProvider>;\n}\n\nexport interface TaxationCategoryProvider {\n taxationCategory?: string;\n /**\n * must be a unique GUID for the category\n * @format GUID\n */\n taxationCategoryUuid?: string;\n}\n\nexport interface DynamicSiteStructureProviderConfig {\n /** URL to dynamic site structure provider service */\n deploymentUri?: string;\n}\n\nexport interface HeadlessOAuth {\n /**\n * ID of the site that uses the component.\n * @format GUID\n */\n siteId?: string;\n /** Allowlist of domains that can be redirected to after a login. */\n allowedDomains?: string[];\n /** Component description. */\n description?: string | null;\n /**\n * Login URL to automatically redirect users to from Wix pages.\n * @format WEB_URL\n */\n loginUrl?: string | null;\n /**\n * Array of URIs that can be redirected to after oAuth2 authorization.\n * @maxLength 2048\n */\n allowedRedirectUris?: string[];\n /** Whether a user can resolve the [app secret](https://dev.wix.com/docs/rest/internal-only/dev-center-platform/app-service/introduction). */\n blockSecretGeneration?: boolean;\n /**\n * Logout URL that is invoked when users logout from wix pages.\n * @format WEB_URL\n */\n logoutUrl?: string | null;\n /** OAuth application type. */\n applicationType?: OAuthAppTypeWithLiterals;\n /** OAuth technology used by the application. */\n technology?: OAuthTechnologiesWithLiterals;\n /**\n * List of domain mappings from external domains to Wix domains.\n *\n * When a user accesses a non-Wix domain, they can be automatically forwarded to the corresponding\n * Wix domain based on these mappings. This enables domain-level redirection from\n * external domains to Wix-hosted pages.\n * @maxSize 15\n */\n wixPagesDomainsMappings?: WixPagesDomainMapping[];\n /**\n * Redirect url for Wix-hosted pages.\n * @maxLength 1024\n */\n redirectUrlWixPages?: string | null;\n}\n\n/** Types of OAuth application. */\nexport enum OAuthAppType {\n /** OAuth app type is not specified. */\n OAUTH_APP_TYPE_UNSPECIFIED = 'OAUTH_APP_TYPE_UNSPECIFIED',\n /** OAuth app type is a web application. */\n WEB_APP = 'WEB_APP',\n /** OAuth app type is a mobile application. */\n MOBILE = 'MOBILE',\n /** OAuth app type is some other type of application. */\n OTHER = 'OTHER',\n}\n\n/** @enumType */\nexport type OAuthAppTypeWithLiterals =\n | OAuthAppType\n | 'OAUTH_APP_TYPE_UNSPECIFIED'\n | 'WEB_APP'\n | 'MOBILE'\n | 'OTHER';\n\n/** OAuth technology used by the oauth application. */\nexport enum OAuthTechnologies {\n /** The OAuth technology is not specified. */\n OAUTH_TECHNOLOGY_UNSPECIFIED = 'OAUTH_TECHNOLOGY_UNSPECIFIED',\n /** OAuth technology using JavaScript. */\n JAVASCRIPT = 'JAVASCRIPT',\n /** OAuth technology using Angular. */\n ANGULAR = 'ANGULAR',\n /** OAuth technology using Vue.js. */\n VUE = 'VUE',\n /** OAuth technology using React. */\n REACT = 'REACT',\n /** OAuth technology using React Native. */\n REACT_NATIVE = 'REACT_NATIVE',\n /** OAuth technology using iOS. */\n IOS = 'IOS',\n /** OAuth technology using Android. */\n ANDROID = 'ANDROID',\n /** OAuth technology using some other kind of technology. */\n OTHER_TECHNOLOGY = 'OTHER_TECHNOLOGY',\n}\n\n/** @enumType */\nexport type OAuthTechnologiesWithLiterals =\n | OAuthTechnologies\n | 'OAUTH_TECHNOLOGY_UNSPECIFIED'\n | 'JAVASCRIPT'\n | 'ANGULAR'\n | 'VUE'\n | 'REACT'\n | 'REACT_NATIVE'\n | 'IOS'\n | 'ANDROID'\n | 'OTHER_TECHNOLOGY';\n\nexport interface WixPagesDomainMapping {\n /** @maxLength 2048 */\n origin?: string;\n /** @maxLength 2048 */\n destination?: string;\n}\n\nexport interface TaxCalculatorSpiConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /** User-friendly name of the tax calculator */\n calculatorDisplayName?: string;\n /** list of countries and boolean represents if its a white list or black list (supported or unsupported countries) */\n taxCountriesConfig?: TaxCountriesConfig;\n}\n\nexport interface TaxCountriesConfig {\n /**\n * list of countries\n * @format COUNTRY\n */\n countries?: string[];\n /** represents if the calculator supports tax in those countries or not */\n isSupported?: boolean;\n}\n\nexport interface CommentModerationProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /** List of app ids which moderation implementation supports */\n supportedAppIds?: string[];\n}\n\nexport interface GridAppFilesTransformerConfig {\n /** URI where the SPI Implementer is deployed */\n uriConfig?: SpiBaseUri;\n /**\n * Transformation layout which should match to value from\n * [GridAppLayout](https://github.com/wix-private/wix-code/blob/master/editor/wix-code-ide-server-ng/proto/wix/velo/ide/v1/grid_app_layout.proto) enum.\n * The new values should be added via PR.\n */\n layout?: string;\n /**\n * List of paths which requires content transformation to GridApp format\n * @maxSize 10\n */\n filesContentToTransformToGridApp?: string[];\n /**\n * List of paths which requires content transformation to Layout format\n * @maxSize 10\n */\n filesContentToTransformToLayout?: string[];\n}\n\nexport interface PolicyConfig {\n /** URI where the SPI Implementer is deployed */\n uriConfig?: SpiBaseUri;\n}\n\nexport interface CustomChargesConfig {\n /**\n * Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.\n *\n * For example, to call the Premium Custom Charges endpoint at `https://custom-charges.com/v1/premium-custom-charges`, the base URI you provide here is `https://custom-charges.com/`.\n */\n baseUri?: SpiBaseUri;\n}\n\nexport interface ValidationsSPIConfig {\n /** Whether to validate the cart page in addition to the checkout page. Default: `false` */\n validateInCart?: boolean;\n /**\n * Required. Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.\n * For example, to call the Get Validation Violations endpoint at `https://my-validations.com/v1/get-violations`, the base URI you provide here is `https://my-validations.com`.\n * @minLength 1\n */\n deploymentUri?: string;\n}\n\n/** SPI config - defines the relation between implementer URL and which types it saves */\nexport interface ComponentReferenceDataConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /**\n * Component types that contains external (reference) data that is NOT saved in DevCenter.\n * @minSize 1\n * @maxSize 100\n */\n supportedComponentTypes?: ComponentTypeWithLiterals[];\n}\n\n/** Configuration for ReviewsProductCatalogProvider */\nexport interface ReviewsProductCatalogProviderConfig {\n /** URI where the SPI Implementer is deployed */\n uriConfig?: SpiBaseUri;\n /** Namespace of catalog provider */\n namespace?: string;\n /** Flag that indicates if verified reviews are enabled */\n isVerifiedReviewsEnabled?: boolean;\n}\n\nexport interface SocialMarketingDesignsProviderConfig {\n /**\n * The URL of the SPI implementation\n * @minLength 1\n * @maxLength 1024\n */\n baseUri?: string;\n /**\n * Name of the provider\n * @minLength 1\n * @maxLength 1024\n */\n name?: string;\n /**\n * Component id (from dev center) of the editor\n * @format GUID\n */\n editorComponentId?: string;\n /**\n * Provider's icon, to be displayed in UI\n * @format WEB_URL\n */\n iconUrl?: string;\n /** How the Prover should be opened */\n navigationType?: NavigationTypeWithLiterals;\n /** Is delete design implemented by the provider */\n deleteDesignEnabled?: boolean;\n /** If the provider manages designs */\n manageDesigns?: boolean;\n}\n\nexport enum NavigationType {\n NAVIGATE = 'NAVIGATE',\n MODAL = 'MODAL',\n}\n\n/** @enumType */\nexport type NavigationTypeWithLiterals = NavigationType | 'NAVIGATE' | 'MODAL';\n\nexport interface GbpFeatureConfig {\n baseUri?: SpiBaseUri;\n}\n\nexport interface CommentFilterProviderConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /** List of app ids for which FilterComment should be invoked */\n supportedAppIds?: string[];\n}\n\nexport interface TaxIdValidatorConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /** User-friendly name of the tax id validator */\n validationProvider?: string;\n /** Configuration of supported tax types */\n taxTypesConfig?: TaxTypesConfig;\n}\n\nexport interface TaxTypesConfig {\n /** List of supported tax types, as provided in ValidateTaxIdRequest and persisted in TaxIdValidationService */\n supportedTaxTypes?: string[];\n}\n\n/** Describes a setting group of a notification */\nexport interface PingSettingsGroupComponentData {\n title?: string;\n /** the description of the setting group */\n description?: string | null;\n /** the default state of the setting group */\n state?: PingSettingsGroupComponentDataStateWithLiterals;\n}\n\nexport enum PingSettingsGroupComponentDataState {\n UNKNOWN_STATE = 'UNKNOWN_STATE',\n DEFAULT_ON = 'DEFAULT_ON',\n DEFAULT_OFF = 'DEFAULT_OFF',\n}\n\n/** @enumType */\nexport type PingSettingsGroupComponentDataStateWithLiterals =\n | PingSettingsGroupComponentDataState\n | 'UNKNOWN_STATE'\n | 'DEFAULT_ON'\n | 'DEFAULT_OFF';\n\nexport interface FormSpamSubmissionSpiConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /**\n * Configuration of namespaces known by implementer\n * @maxSize 3\n */\n namespaceConfigs?: FormsSpamSubmissionsNamespaceConfig[];\n}\n\nexport interface FormsSpamSubmissionsNamespaceConfig {\n /**\n * Namespace name.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /** Permissions associated with this namespace. */\n permissions?: SpamSubmissionPermissions;\n /**\n * Disables Wix spam submissions filter.\n * Spam submissions are persisted in spam submissions storage to support marking submissions as not spam.\n */\n wixSpamFilterDisabled?: boolean;\n}\n\nexport interface SpamSubmissionPermissions {\n /**\n * Create permission name\n * @maxLength 50\n */\n create?: string;\n /**\n * Delete permission name\n * @maxLength 50\n */\n delete?: string;\n /**\n * Update permission name\n * @maxLength 50\n */\n update?: string;\n /**\n * Read permission name\n * @maxLength 50\n */\n read?: string;\n /**\n * Report as not spam permission name\n * @maxLength 50\n */\n reportNotSpam?: string;\n}\n\n/** Editor Add-on component */\nexport interface EditorAddon {\n /**\n * Deprecated, use editor_script\n * @format WEB_URL\n * @deprecated Deprecated, use editor_script\n * @replacedBy editor_script\n * @targetRemovalDate 2025-06-01\n */\n editorScriptUrl?: string;\n /** Tool panel configuration. */\n toolPanelConfig?: ToolPanelConfig;\n /** Information to display in the addons market. */\n marketData?: AddonMarketData;\n /**\n * Optional, path to a Javascript file that will run in Editor environment\n * @format WEB_URL\n */\n editorScript?: string | null;\n /** Toggle to mark whether the editor should revoke an app that contains this component. */\n excludeFromAutoRevoke?: boolean;\n}\n\nexport interface InitialPosition {\n /** Offset from the left. For example, `\"50px\"`. */\n x?: string;\n /** Offset from the top. For example, `\"50px\"`. */\n y?: string;\n}\n\nexport interface ToolPanelConfig {\n /**\n * Iframe URL that hosts the add-on tool panel's content.\n * @format WEB_URL\n */\n url?: string;\n /** Addon tool panel width. */\n width?: string;\n /** Addon tool panel height. */\n height?: string;\n /**\n * Initial position of the opened panel.\n * Offset from top left corner of the container.\n */\n initialPosition?: InitialPosition;\n}\n\nexport interface AddonMarketData {\n /**\n * Addon name.\n * @minLength 5\n */\n name?: string;\n /**\n * Deprecated, use teaser\n * @minLength 10\n * @deprecated\n * @replacedBy teaser\n * @targetRemovalDate 2025-06-01\n */\n description?: string;\n /**\n * URL source of the addon's icon. Must be 36px x 36px in JPG or PNG format.\n * @format WEB_URL\n */\n iconUrl?: string | null;\n /** Author's name. */\n author?: string;\n /**\n * Addon teaser.\n * @minLength 10\n * @maxLength 60\n */\n teaser?: string | null;\n}\n\nexport interface ExternalDatabaseSpiConfig {\n /** The URI where the service provider is deployed. */\n uriConfig?: SpiBaseUri;\n /** The namespace of the external database. This can be used to access collections within the database, for example `namespace/collectionId`. */\n namespace?: string;\n}\n\nexport interface PaymentSettingsSPIConfig {\n /**\n * Base URI where the endpoints are called. Wix eCommerce appends the endpoint path to the base URI.\n * For example, to call the Get Payment Settings endpoint at `https://my-payment-settings.com/v1/payment-settings`, the base URI you provide here is `https://my-payment-settings.com/`.\n */\n deploymentUri?: string;\n /**\n * The fallback value that is used for [`requires3dSecure`](https://support.wix.com/en/article/about-3d-secure-3ds-payments-with-third-party-payment-providers) if the service plugin call fails.\n *\n * Default: `false`\n */\n fallbackValueForRequires3dSecure?: boolean;\n}\n\n/** Describes topic of a notification */\nexport interface NotificationTopic {\n /** the description of the topic */\n description?: string | null;\n /** the default state of the topic */\n state?: NotificationTopicStateWithLiterals;\n /** the type of the topic */\n type?: NotificationTopicTypeWithLiterals;\n /**\n * The recipients' types indicate that this topic is relevant.\n * @maxSize 10\n */\n supportedRecipientTypes?: RecipientTypeWithLiterals[];\n}\n\nexport enum NotificationTopicState {\n UNKNOWN_STATE = 'UNKNOWN_STATE',\n DEFAULT_ON = 'DEFAULT_ON',\n DEFAULT_OFF = 'DEFAULT_OFF',\n}\n\n/** @enumType */\nexport type NotificationTopicStateWithLiterals =\n | NotificationTopicState\n | 'UNKNOWN_STATE'\n | 'DEFAULT_ON'\n | 'DEFAULT_OFF';\n\nexport enum NotificationTopicType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n PROMOTIONAL = 'PROMOTIONAL',\n TRANSACTIONAL = 'TRANSACTIONAL',\n}\n\n/** @enumType */\nexport type NotificationTopicTypeWithLiterals =\n | NotificationTopicType\n | 'UNKNOWN_TYPE'\n | 'PROMOTIONAL'\n | 'TRANSACTIONAL';\n\n/** Recipient type */\nexport enum RecipientType {\n /** Wix User */\n WIX_USER = 'WIX_USER',\n /** Contact */\n CONTACT = 'CONTACT',\n}\n\n/** @enumType */\nexport type RecipientTypeWithLiterals = RecipientType | 'WIX_USER' | 'CONTACT';\n\nexport interface NotificationPreferencesFilterConfig {\n /** the base URI where all the methods are deployed. E.g. \"https://golden-coupons.com/wix-provider\" */\n baseUri?: SpiBaseUri;\n}\n\n/** This config provides details of the resource types that are managed by an app implementing this component SPI. */\nexport interface BookingsResourceTypesProviderConfig {\n /**\n * References of the resource types that are managed by the app that implements this component SPI.\n * @maxSize 10\n */\n bookingsResourceTypes?: BookingsResourceType[];\n}\n\nexport interface BookingsResourceType {\n /**\n * The ID of the resource type. Must be a GUID that is unique within the app.\n * @format GUID\n */\n _id?: string | null;\n /**\n * The name of the resource type. This can be any string, such as 'staff' or 'table'.\n * @minLength 1\n * @maxLength 40\n */\n name?: string | null;\n}\n\nexport interface PricingPlansFormConfiguration {\n /** *Plan preview** section configuration. */\n planPreview?: PlanFormPreviewSection;\n /** *Plan info** section configuration. */\n infoSection?: PlanFormInfoSection;\n /** *Settings** section configuration. */\n settingsSection?: PlanFormPlanSettingsSection;\n /** *Benefits** section configuration. */\n benefitsSection?: PlanFormBenefitsSection;\n /**\n * *Pricing options** section configuration.\n * DEPRECATED: Use pricing_section and duration_section instead. Will be removed in future versions.\n * @deprecated *Pricing options** section configuration.\n * DEPRECATED: Use pricing_section and duration_section instead. Will be removed in future versions.\n * @replacedBy pricing_section & duration_section\n * @targetRemovalDate 2025-11-30\n */\n pricingAndDurationSection?: PlanFormPricingAndDurationSection;\n /**\n * Custom sections for the form.\n * @maxSize 99\n */\n customSections?: PlanFormCustomSection[];\n /**\n * Order in which sections will be rendered. Can include default section IDs or custom section component IDs.\n * Visible sections that don't exist in this array are displayed below others in default oder.\n * @maxSize 99\n */\n sectionOrder?: PlanFormSection[];\n /** Custom plan form metadata. */\n metadata?: PlanFormTypeMetadata;\n /** *Page permissions** section configuration. */\n pagePermissions?: PlanFormPagePermissionsSection;\n /** Initial plan data for form defaults. */\n initialPlanValue?: PlanFormInitialValue;\n /**\n * Unique custom form name.\n * @minLength 1\n * @maxLength 100\n */\n formName?: string;\n /** *Pricing** section configuration. */\n pricingSection?: PlanFormPricingSection;\n /** *Duration** section configuration. */\n durationSection?: PlanFormDurationSection;\n /** *Custom pricing rules** Functions based pricing rules section configuration. */\n customPricingRulesSection?: PlanFormCustomPricingRulesSection;\n /** *Start date** functions based start date rules section configuration. */\n startDateRulesSection?: PlanFormStartDateRulesSection;\n}\n\nexport interface TextWithTooltip {\n /** Displayed text. */\n text?: string;\n /** Tooltip to show next to text. */\n tooltip?: TooltipSuffix;\n}\n\nexport interface TooltipSuffix {\n /** Tooltip content. */\n text?: string;\n}\n\nexport interface TextWithSuffix extends TextWithSuffixSuffixOneOf {\n /** Tooltip to show next to the text. */\n suffixTooltip?: TooltipSuffix;\n /** Link to show next to the text. */\n suffixLink?: LinkSuffix;\n /** Whether to hide the element. */\n hide?: boolean;\n /** Displayed text. */\n text?: string;\n}\n\n/** @oneof */\nexport interface TextWithSuffixSuffixOneOf {\n /** Tooltip to show next to the text. */\n suffixTooltip?: TooltipSuffix;\n /** Link to show next to the text. */\n suffixLink?: LinkSuffix;\n}\n\nexport interface LinkSuffix {\n /** Whether to hide the element. */\n hide?: boolean;\n /** Link text. */\n text?: string;\n /** External URL to open on link click. */\n url?: string;\n /** Text that is passed to click BI event as `referral_info` field. */\n referralInfo?: string;\n}\n\nexport interface PreviewCardPlaceholders {\n /** Placeholder plan name for preview. */\n name?: string;\n}\n\nexport interface InputWithPlaceholder {\n /** Input label. */\n label?: TextWithTooltip;\n /** Input placeholder. */\n placeholder?: string;\n}\n\nexport interface CoverImageConfiguration {\n /** Whether to hide the cover image input. */\n hide?: boolean;\n /** Cover image input label. */\n label?: TextWithTooltip;\n}\n\nexport interface PerksConfiguration {\n /** Whether to hide the **Perks** subsection. */\n hide?: boolean;\n /** *Perks** subsection title. */\n title?: TextWithTooltip;\n /** Perks input placeholder. */\n placeholder?: string;\n}\n\nexport interface CheckboxConfiguration {\n /** Policy agreement checkbox input label. */\n label?: string;\n /** Policy checkbox toggle configuration. */\n acceptRequiredToggle?: TextWithTooltip;\n /** Checked by default toggle configuration. */\n acceptedByDefaultToggle?: TextWithTooltip;\n}\n\nexport interface PreviewConfiguration {\n /** Preview card title. */\n title?: string;\n /** Preview card subtitle. */\n subtitle?: string;\n /** Label for checkbox in preview. */\n checkboxLabel?: string;\n /** Text for **Buy now** in preview. */\n buttonText?: string;\n}\n\nexport interface TermsModalConfiguration {\n /** Modal title. */\n title?: string;\n /** Modal subtitle. */\n subtitle?: string;\n /** Save button text. */\n primaryButtonText?: string;\n /** Cancel button text. */\n secondaryButtonText?: string;\n /** Terms and conditions input configuration. */\n input?: InputWithPlaceholder;\n /** Policy agreement checkbox input configuration. */\n checkbox?: CheckboxConfiguration;\n /** Terms and conditions preview configuration. */\n preview?: PreviewConfiguration;\n /** Modal footer text. */\n footer?: string;\n}\n\nexport interface ThankYouPageInputConfig {\n /** Whether to hide input. */\n hide?: boolean;\n /** Label config. */\n label?: TextWithTooltip;\n}\n\nexport interface ThankYouPageRedirectsConfiguration {\n /** Whether to hide redirects. */\n hide?: boolean;\n /** Redirects field label. */\n label?: TextWithTooltip;\n /** Home Page option label. */\n homePageOption?: string;\n /** Other Page option label. */\n redirectUrlOption?: string;\n}\n\nexport interface ThankYouPagePreviewConfiguration {\n /** Preview card title. */\n title?: string;\n /** Preview card subtitle. */\n subtitle?: string;\n}\n\nexport interface ThankYouPageModalConfiguration {\n /** Modal title. */\n title?: string;\n /** Modal subtitle. */\n subtitle?: TextWithSuffix;\n /** Save button text. */\n primaryButtonText?: string;\n /** Cancel button text. */\n secondaryButtonText?: string;\n /** Reset default button text. */\n resetButtonText?: string;\n /** Thank you page title input configuration. */\n titleInput?: ThankYouPageInputConfig;\n /** Thank you page content input configuration. */\n messageInput?: ThankYouPageInputConfig;\n /** Thank you page button text input configuration. */\n buttonTextInput?: ThankYouPageInputConfig;\n /** Thank you page button action field configuration. */\n redirects?: ThankYouPageRedirectsConfiguration;\n /** Thank you page preview configuration. */\n preview?: ThankYouPagePreviewConfiguration;\n}\n\nexport interface PlanSettingsRowConfiguration {\n /** Whether to hide the row. */\n hide?: boolean;\n /** Row title. */\n title?: TextWithTooltip;\n /** Row subtitle. */\n subtitle?: TextWithTooltip;\n}\n\nexport interface TermsAndConditionsConfiguration {\n /** Whether to hide the row. */\n hide?: boolean;\n /** Row title. */\n title?: TextWithTooltip;\n /** Row subtitle. */\n subtitle?: TextWithTooltip;\n /** \"Plan policies\" modal configuration. */\n modal?: TermsModalConfiguration;\n}\n\nexport interface ThankYouPageConfiguration {\n /** Whether to hide the row. */\n hide?: boolean;\n /** Row title. */\n title?: TextWithTooltip;\n /** Row subtitle. */\n subtitle?: TextWithTooltip;\n /** \"\\Thank you page modal configuration. */\n modal?: ThankYouPageModalConfiguration;\n}\n\nexport interface PlanFormPricingAndDurationSectionDurationInputConfiguration {\n /** Duration dropdown label. */\n label?: TextWithTooltip;\n /** Duration dropdown placeholder. */\n placeholder?: string;\n /** Labels for duration dropdown options. */\n renameOptions?: DurationInputConfigurationDurationRenameOptions;\n}\n\nexport interface DurationInputConfigurationDurationRenameOptions {\n /** Text for \"Forever\" duration option. */\n forever?: string;\n /** Text for \"Custom\" duration option. */\n custom?: string;\n}\n\nexport interface PlanFormPricingAndDurationSectionInputConfiguration {\n /** Input label. */\n label?: TextWithTooltip;\n}\n\nexport interface SetupFeeConfiguration {\n /** Hide **Setup fee** toggle. */\n hide?: boolean;\n /** Setup fee toggle label. */\n label?: TextWithTooltip;\n /** Setup fee amount input configuration. */\n amount?: InputWithPlaceholder;\n /** Setup fee name input configuration. */\n name?: InputWithPlaceholder;\n}\n\nexport interface FreeTrialConfiguration {\n /** Whether to hide the **Free trial** toggle. */\n hide?: boolean;\n /** Free trial toggle label. */\n label?: TextWithTooltip;\n /** Free trial duration dropdown configuration. */\n duration?: PlanFormPricingAndDurationSectionInputConfiguration;\n}\n\nexport interface FreeOptionConfiguration {\n /** Whether to hide the **Free** option. */\n hide?: boolean;\n /** Option title. */\n title?: string;\n /** Option subtitle. */\n subtitle?: string;\n /** Plan duration dropdown configuration. */\n duration?: PlanFormPricingAndDurationSectionDurationInputConfiguration;\n /** Custom duration period dropdown configuration. */\n customDurationPeriod?: PlanFormPricingAndDurationSectionInputConfiguration;\n /** Custom duration input configuration. */\n customDurationInput?: PlanFormPricingAndDurationSectionInputConfiguration;\n}\n\nexport interface OneTimeOptionConfiguration {\n /** Whether to hide the One-time payment option. */\n hide?: boolean;\n /** Option title. */\n title?: string;\n /** Option subtitle. */\n subtitle?: string;\n /** Plan duration dropdown configuration. */\n duration?: PlanFormPricingAndDurationSectionDurationInputConfiguration;\n /** Custom duration period dropdown configuration. */\n customDurationPeriod?: PlanFormPricingAndDurationSectionInputConfiguration;\n /** Custom duration input configuration. */\n customDurationInput?: PlanFormPricingAndDurationSectionInputConfiguration;\n /** Price input configuration. */\n price?: InputWithPlaceholder;\n /** Setup fee field configuration. */\n setupFee?: SetupFeeConfiguration;\n}\n\nexport interface RecurringOptionConfiguration {\n /** Whether to hide the \"recurring\" option. */\n hide?: boolean;\n /** Option title. */\n title?: string;\n /** Option subtitle. */\n subtitle?: string;\n /** Plan duration dropdown configuration. */\n duration?: PlanFormPricingAndDurationSectionDurationInputConfiguration;\n /** Price input configuration. */\n price?: InputWithPlaceholder;\n /** Setup fee field configuration. */\n setupFee?: SetupFeeConfiguration;\n /** Free trial field configuration. */\n freeTrial?: FreeTrialConfiguration;\n /** Frequency dropdown configuration. */\n frequency?: PlanFormPricingAndDurationSectionInputConfiguration;\n /** Custom frequency input configuration. */\n customFrequency?: PlanFormPricingAndDurationSectionInputConfiguration;\n}\n\nexport enum PlanFormPricingOption {\n FREE = 'FREE',\n ONE_TIME = 'ONE_TIME',\n RECURRING = 'RECURRING',\n}\n\n/** @enumType */\nexport type PlanFormPricingOptionWithLiterals =\n | PlanFormPricingOption\n | 'FREE'\n | 'ONE_TIME'\n | 'RECURRING';\n\nexport interface PlanFormPricingSectionSetupFeeConfiguration {\n /** Hide **Setup fee** toggle. */\n hide?: boolean;\n /** Setup fee toggle label. */\n label?: TextWithTooltip;\n /** Setup fee amount input configuration. */\n amount?: InputWithPlaceholder;\n /** Setup fee name input configuration. */\n name?: InputWithPlaceholder;\n}\n\nexport interface PlanFormPricingSectionInputConfiguration {\n /** Input label. */\n label?: TextWithTooltip;\n}\n\nexport interface RecurringPricingTypeConfigurationFreeTrialConfiguration {\n /** Whether to hide the **Free trial** toggle. */\n hide?: boolean;\n /** Free trial toggle label. */\n label?: TextWithTooltip;\n /** Free trial duration dropdown configuration. */\n duration?: PlanFormPricingSectionInputConfiguration;\n}\n\nexport interface FreePricingTypeConfiguration {\n /** Whether to hide the **Free** type. */\n hide?: boolean;\n /**\n * Type title.\n * @maxLength 40\n */\n title?: string;\n /**\n * Type subtitle.\n * @maxLength 60\n */\n subtitle?: string;\n}\n\nexport interface OneTimePricingTypeConfiguration {\n /** Whether to hide the **One-time payment** type. */\n hide?: boolean;\n /**\n * Type title.\n * @maxLength 40\n */\n title?: string;\n /**\n * Type subtitle.\n * @maxLength 60\n */\n subtitle?: string;\n /** Price input configuration. */\n price?: InputWithPlaceholder;\n /** Setup fee field configuration. */\n setupFee?: PlanFormPricingSectionSetupFeeConfiguration;\n}\n\nexport interface RecurringPricingTypeConfiguration {\n /** Whether to hide the **Recurring** type. */\n hide?: boolean;\n /**\n * Type title.\n * @maxLength 40\n */\n title?: string;\n /**\n * Type subtitle.\n * @maxLength 60\n */\n subtitle?: string;\n /** Price input configuration. */\n price?: InputWithPlaceholder;\n /** Setup fee field configuration. */\n setupFee?: PlanFormPricingSectionSetupFeeConfiguration;\n /** Free trial field configuration. */\n freeTrial?: RecurringPricingTypeConfigurationFreeTrialConfiguration;\n /** Frequency dropdown configuration. */\n frequency?: PlanFormPricingSectionInputConfiguration;\n /** Custom frequency input configuration. */\n customFrequency?: PlanFormPricingSectionInputConfiguration;\n}\n\nexport enum PlanFormPricingType {\n FREE = 'FREE',\n ONE_TIME = 'ONE_TIME',\n RECURRING = 'RECURRING',\n}\n\n/** @enumType */\nexport type PlanFormPricingTypeWithLiterals =\n | PlanFormPricingType\n | 'FREE'\n | 'ONE_TIME'\n | 'RECURRING';\n\nexport interface DurationRenameOptions {\n /**\n * Text for \"Forever\" duration option.\n * @maxLength 16\n */\n forever?: string;\n /**\n * Text for \"Custom\" duration option.\n * @maxLength 16\n */\n custom?: string;\n}\n\nexport interface DurationInputConfiguration {\n /** Duration dropdown label. */\n label?: TextWithTooltip;\n /**\n * Duration dropdown placeholder.\n * @maxLength 16\n */\n placeholder?: string;\n /** Labels for duration dropdown options. */\n renameOptions?: DurationRenameOptions;\n}\n\nexport interface InputConfiguration {\n /** Input label. */\n label?: TextWithTooltip;\n}\n\nexport enum PlanFormDefaultSection {\n INFO = 'INFO',\n BENEFITS = 'BENEFITS',\n PAGE_PERMISSIONS = 'PAGE_PERMISSIONS',\n PRICING_AND_DURATION = 'PRICING_AND_DURATION',\n ADVANCED_SETTINGS = 'ADVANCED_SETTINGS',\n PRICING = 'PRICING',\n DURATION = 'DURATION',\n CUSTOM_PRICING_RULES = 'CUSTOM_PRICING_RULES',\n START_DATE_RULES = 'START_DATE_RULES',\n}\n\n/** @enumType */\nexport type PlanFormDefaultSectionWithLiterals =\n | PlanFormDefaultSection\n | 'INFO'\n | 'BENEFITS'\n | 'PAGE_PERMISSIONS'\n | 'PRICING_AND_DURATION'\n | 'ADVANCED_SETTINGS'\n | 'PRICING'\n | 'DURATION'\n | 'CUSTOM_PRICING_RULES'\n | 'START_DATE_RULES';\n\nexport interface Illustration extends IllustrationIllustrationOneOf {\n /**\n * Custom exported component ID to be rendered as an illustration.\n * @format GUID\n */\n componentId?: string;\n /** 96x96px image. Used in type choice modal. */\n src?: string;\n}\n\n/** @oneof */\nexport interface IllustrationIllustrationOneOf {\n /**\n * Custom exported component ID to be rendered as an illustration.\n * @format GUID\n */\n componentId?: string;\n /** 96x96px image. Used in type choice modal. */\n src?: string;\n}\n\nexport interface PlanDuration {\n /** Amount of a duration `unit` in a single payment cycle. */\n count?: number;\n /** Unit of time for the cycle duration. */\n unit?: PlanPeriodUnitWithLiterals;\n}\n\n/** Pedefined basic time unit. */\nexport enum PlanPeriodUnit {\n DAY = 'DAY',\n WEEK = 'WEEK',\n MONTH = 'MONTH',\n YEAR = 'YEAR',\n}\n\n/** @enumType */\nexport type PlanPeriodUnitWithLiterals =\n | PlanPeriodUnit\n | 'DAY'\n | 'WEEK'\n | 'MONTH'\n | 'YEAR';\n\nexport interface PlanPriceData {\n /** Monetary amount. Decimal string with a period as a decimal separator. For example, `3.99`. */\n value?: string;\n /** Currency code. Must be valid ISO 4217 currency code. For example, USD. */\n currency?: string;\n}\n\nexport interface PricingRecurring {\n /** Length of one payment cycle. */\n cycleDuration?: PlanDuration;\n /**\n * Amount of payment cycles this subscription is valid for.\n *\n * `0` indicates unlimited or until it is canceled.\n */\n cycleCount?: number;\n}\n\nexport interface PerkValues {\n /**\n * List of perks.\n * @maxSize 99\n */\n values?: string[];\n}\n\nexport interface PlanPricing extends PlanPricingPricingModelOneOf {\n /** Plan has recurring payments. */\n subscription?: PricingRecurring;\n /** One time payment. Plan is valid for the specified duration. */\n singlePaymentForDuration?: PlanDuration;\n /** One time payment. Plan is valid until it is canceled. */\n singlePaymentUnlimited?: boolean;\n /** Amount for a single payment. */\n price?: PlanPriceData;\n}\n\n/** @oneof */\nexport interface PlanPricingPricingModelOneOf {\n /** Plan has recurring payments. */\n subscription?: PricingRecurring;\n /** One time payment. Plan is valid for the specified duration. */\n singlePaymentForDuration?: PlanDuration;\n /** One time payment. Plan is valid until it is canceled. */\n singlePaymentUnlimited?: boolean;\n}\n\nexport interface PlanFormPreviewSection {\n /** Whether to hide the **Preview** section. */\n hide?: boolean;\n /** Preview card title. */\n title?: TextWithTooltip;\n /** Preview card subtitle. */\n subtitle?: TextWithSuffix;\n /** Placeholders for previewed plan. */\n placeholders?: PreviewCardPlaceholders;\n /** Stick **Preview** section to the right while scrolling. As a result, all other sections will be narrower. */\n isSticky?: boolean | null;\n}\n\nexport interface PlanFormInfoSection {\n /** Whether to hide the **Info** section. If `true`, remaining fields are ignored. */\n hide?: boolean;\n /** Tooltip title. */\n title?: TextWithTooltip;\n /** Tooltip subtitle. */\n subtitle?: TextWithSuffix;\n /** Plan name input configuration. */\n name?: InputWithPlaceholder;\n /** Plan tagline input configuration. */\n tagline?: InputWithPlaceholder;\n /** Cover image configuration. */\n coverImage?: CoverImageConfiguration;\n /** Plan perks configuration. */\n perks?: PerksConfiguration;\n}\n\nexport interface PlanFormPlanSettingsSection {\n /** Whether to hide the **Advanced settings** section. */\n hide?: boolean;\n /** Section title configuration. */\n title?: TextWithTooltip;\n /** Section subtitle configuration. */\n subtitle?: TextWithSuffix;\n /** Configuration for \"Limit to 1 purchase per person\" plan setting. */\n singlePurchase?: PlanSettingsRowConfiguration;\n /** Configuration for \"Allow plan cancellation\" plan setting. */\n allowCancellation?: PlanSettingsRowConfiguration;\n /** Configuration for \"Let people set start date\" plan setting. */\n customStartDate?: PlanSettingsRowConfiguration;\n /** Configuration for \"Add a policy\" plan setting. */\n termsAndConditions?: TermsAndConditionsConfiguration;\n /** Configuration for \"Collect additional info\" plan setting. */\n customForms?: PlanSettingsRowConfiguration;\n /** Configuration for \"Customize a Thank You page\" plan setting. */\n thankYouPage?: ThankYouPageConfiguration;\n}\n\nexport interface PlanFormBenefitsSection {\n /** Hide **Benefits** section. */\n hide?: boolean;\n /** *Benefits** section title. */\n title?: TextWithTooltip;\n /** *Benefits** section subtitle. */\n subtitle?: TextWithSuffix;\n /** Suffix link configuration. Rendered at the right side of section header. */\n suffix?: LinkSuffix;\n /**\n * Hide specific benefits from the section.\n * @maxSize 99\n */\n hiddenBenefits?: string[];\n}\n\nexport interface PlanFormPricingAndDurationSection {\n /** Whether to hide **Pricing and Duration** section. */\n hide?: boolean;\n /** Section title. */\n title?: TextWithTooltip;\n /** Section subtitle. */\n subtitle?: TextWithSuffix;\n /** Free pricing option configuration. */\n freePricingOption?: FreeOptionConfiguration;\n /** One-time payment pricing option configuration. */\n oneTimeOption?: OneTimeOptionConfiguration;\n /** Recurring pricing option configuration. */\n recurringOption?: RecurringOptionConfiguration;\n /**\n * Order in which pricing options should be displayed.\n * @maxSize 99\n */\n pricingOptionOrder?: PlanFormPricingOptionWithLiterals[];\n}\n\nexport interface PlanFormCustomSection {\n /**\n * ID of dashboard extension component.\n * Extensions should have the following container ID: `fb869315-532f-4057-9049-e316f94e192f`\n * @format GUID\n */\n componentId?: string;\n}\n\nexport interface PlanFormSection extends PlanFormSectionSectionOneOf {\n /** Extension component ID. */\n componentId?: string;\n /** Default section name. */\n sectionName?: PlanFormDefaultSectionWithLiterals;\n}\n\n/** @oneof */\nexport interface PlanFormSectionSectionOneOf {\n /** Extension component ID. */\n componentId?: string;\n /** Default section name. */\n sectionName?: PlanFormDefaultSectionWithLiterals;\n}\n\nexport interface PlanFormTypeMetadata {\n /** Configuration name. */\n title?: string;\n /** Plan type subtitle. Used in type choice modal. */\n subtitle?: string;\n /** Plan type description. Used in type choice modal. */\n description?: string;\n /** Plan type illustration. Used in type choice modal. */\n illustration?: Illustration;\n /** Your business manager module ID. */\n moduleId?: string;\n}\n\nexport interface PlanFormPagePermissionsSection {\n /** Whether to hide the **Page permissions** section. */\n hide?: boolean;\n}\n\nexport interface PlanFormInitialValue {\n /** Plan name. */\n name?: string | null;\n /** Plan description. */\n description?: string | null;\n /** What is included with this plan. */\n perks?: PerkValues;\n /** Plan price, payment schedule, and expiration. */\n pricing?: PlanPricing;\n /** Whether the plan is public. */\n public?: boolean | null;\n /**\n * Number of times the same buyer can purchase the plan.\n *\n * Supported values:\n * - `null | 0`: No limitation.\n * - `1`: Limit of one purchase per buyer.\n */\n maxPurchasesPerBuyer?: number | null;\n /** Whether the buyer can start the plan at a future date. */\n allowFutureStartDate?: boolean | null;\n /** Whether the buyer is allowed to cancel their plan. */\n buyerCanCancel?: boolean | null;\n /**\n * Any terms and conditions that apply to the plan. This information will be displayed during checkout.\n * @maxLength 3000\n */\n termsAndConditions?: string | null;\n /** Additional plan data. */\n clientData?: Record<string, string>;\n}\n\nexport interface PlanFormPricingSection {\n /** Whether to hide **Pricing** section. */\n hide?: boolean;\n /** Section title. */\n title?: TextWithTooltip;\n /** Section subtitle. */\n subtitle?: TextWithSuffix;\n /** Free pricing type configuration. */\n freePricingType?: FreePricingTypeConfiguration;\n /** One-time payment pricing type configuration. */\n oneTimeType?: OneTimePricingTypeConfiguration;\n /** Recurring pricing type configuration. */\n recurringType?: RecurringPricingTypeConfiguration;\n /**\n * Order in which pricing types should be displayed.\n * @maxSize 99\n */\n pricingTypeOrder?: PlanFormPricingTypeWithLiterals[];\n}\n\nexport interface PlanFormDurationSection {\n /** Whether to hide **Duration** section. */\n hide?: boolean;\n /** Section title. */\n title?: TextWithTooltip;\n /** Section subtitle. */\n subtitle?: TextWithSuffix;\n /** Plan duration dropdown configuration. */\n duration?: DurationInputConfiguration;\n /** Custom duration period dropdown configuration - only for **One-time** & **Free** plan types. */\n customDurationPeriod?: InputConfiguration;\n /** Custom duration input configuration - only for **One-time** & **Free** plan types. */\n customDurationInput?: InputConfiguration;\n}\n\nexport interface PlanFormCustomPricingRulesSection {\n /** Whether to hide the **Custom pricing rules** section. */\n hide?: boolean;\n}\n\nexport interface PlanFormStartDateRulesSection {\n /** Whether to hide the **Start date** section. */\n hide?: boolean;\n}\n\n/** Describes user notifications */\nexport interface UserNotification {\n referenceData?: UserNotificationData;\n}\n\nexport interface UserNotificationData {\n /** description */\n description?: string | null;\n /**\n * topic id\n * @minLength 1\n * @format GUID\n */\n topicId?: string | null;\n /** channels */\n channels?: NotificationChannels;\n /** icon */\n icon?: Icon;\n /** intent */\n intent?: IntentWithLiterals;\n /** limiter field */\n limiterField?: LimiterField;\n /** recipient filter */\n recipientFilter?: UserNotificationDataRecipientFilter;\n /** initiator */\n initiator?: UserNotificationDataInitiator;\n /** single deeplink */\n singleDeeplink?: UserNotificationDataDeeplink;\n /** grouped deeplink */\n groupedDeeplink?: UserNotificationDataDeeplink;\n /** context */\n context?: UserNotificationDataContext;\n /** type */\n type?: UserNotificationDataTypeWithLiterals;\n}\n\nexport interface TypedDynamicParam {\n /**\n * name\n * @minLength 1\n */\n name?: string;\n /** dynamic param type */\n dynamicParamType?: TypedDynamicParamTypeWithLiterals;\n}\n\nexport enum TypedDynamicParamType {\n STRING = 'STRING',\n ARRAY = 'ARRAY',\n}\n\n/** @enumType */\nexport type TypedDynamicParamTypeWithLiterals =\n | TypedDynamicParamType\n | 'STRING'\n | 'ARRAY';\n\nexport enum UserNotificationDataRecipientFilterType {\n WIX_USERS = 'WIX_USERS',\n SITE_CONTRIBUTORS = 'SITE_CONTRIBUTORS',\n}\n\n/** @enumType */\nexport type UserNotificationDataRecipientFilterTypeWithLiterals =\n | UserNotificationDataRecipientFilterType\n | 'WIX_USERS'\n | 'SITE_CONTRIBUTORS';\n\nexport interface WixUsersData {\n /** id */\n _id?: TypedDynamicParam;\n}\n\nexport interface SiteContributorsData {\n /** @minSize 1 */\n permissions?: string[];\n}\n\nexport enum InitiatorType {\n WIX_USER = 'WIX_USER',\n WIX_APP = 'WIX_APP',\n}\n\n/** @enumType */\nexport type InitiatorTypeWithLiterals = InitiatorType | 'WIX_USER' | 'WIX_APP';\n\nexport interface WixUserData {\n /**\n * dynamic param name\n * @minLength 1\n */\n dynamicParamName?: string;\n}\n\nexport interface ConstOrDynamicParam extends ConstOrDynamicParamValueOneOf {\n /**\n * dynamic param name\n * @minLength 1\n */\n dynamicParamName?: string;\n /**\n * constant\n * @minLength 1\n */\n constant?: string;\n}\n\n/** @oneof */\nexport interface ConstOrDynamicParamValueOneOf {\n /**\n * dynamic param name\n * @minLength 1\n */\n dynamicParamName?: string;\n /**\n * constant\n * @minLength 1\n */\n constant?: string;\n}\n\nexport interface Url {\n constOrDynamicParam?: ConstOrDynamicParam;\n}\n\nexport interface BackofficeActionDeeplink {\n /**\n * app ID\n * @minLength 1\n */\n appId?: string;\n /** params */\n params?: Record<string, ConstOrDynamicParam>;\n}\n\nexport enum Level {\n ACCOUNT = 'ACCOUNT',\n SITE = 'SITE',\n}\n\n/** @enumType */\nexport type LevelWithLiterals = Level | 'ACCOUNT' | 'SITE';\n\nexport interface OrderValue {\n /** can be const/dynamicParamName */\n value?: ConstOrDynamicParam;\n /**\n * order\n * @min 1\n */\n order?: number;\n}\n\nexport interface NotificationChannels {\n /** email */\n email?: EmailChannel;\n /** feed */\n feed?: FeedChannels;\n /** mobile push */\n mobilePush?: MobilePushChannel;\n /** voice */\n voice?: VoiceChannel;\n /** sms */\n sms?: SmsChannel;\n /** browser push */\n browserPush?: BrowserPushChannel;\n contentMap?: Record<string, string>;\n}\n\nexport interface ResponsysEmail {\n /**\n * responsys email\n * @minLength 1\n */\n responsysTemplate?: string;\n}\n\nexport interface VelocityEmail {\n /**\n * velocity module name\n * @minLength 1\n */\n velocityModuleName?: string;\n /**\n * template file\n * @minLength 1\n */\n templateFile?: string;\n}\n\nexport interface ShoutoutEmail {\n /**\n * template ID\n * @minLength 1\n */\n templateId?: string;\n /**\n * stream by\n * @minLength 1\n */\n streamBy?: string;\n /**\n * template msid\n * @minLength 1\n */\n templateMsid?: string;\n}\n\nexport interface EmailTemplateConfig extends EmailTemplateConfigProviderOneOf {\n /** responsys email */\n responsysEmail?: ResponsysEmail;\n}\n\n/** @oneof */\nexport interface EmailTemplateConfigProviderOneOf {\n /** responsys email */\n responsysEmail?: ResponsysEmail;\n}\n\nexport interface WebFeedContentKeys {\n /** title */\n title?: string | null;\n /** message */\n message?: string | null;\n /** action */\n action?: string | null;\n /** group of two message */\n groupOfTwoMessage?: string | null;\n /** group of many message */\n groupOfManyMessage?: string | null;\n /** group of many action */\n groupOfManyAction?: string | null;\n}\n\nexport interface MobileFeedContentKeys {\n /** title */\n title?: string | null;\n /** message */\n message?: string | null;\n /** action */\n action?: string | null;\n /** group of two message */\n groupOfTwoMessage?: string | null;\n /** group of many message */\n groupOfManyMessage?: string | null;\n /** group of many action */\n groupOfManyAction?: string | null;\n}\n\nexport interface FeedAggregation {\n /**\n * group key\n * @minLength 1\n */\n groupKey?: string;\n /**\n * window\n * @minLength 1\n */\n window?: string;\n /** icon */\n icon?: Icon;\n}\n\nexport interface Icon extends IconDataOneOf {\n /** url data */\n urlData?: UrlData;\n /** icon type */\n type?: IconTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IconDataOneOf {\n /** url data */\n urlData?: UrlData;\n}\n\nexport enum IconType {\n URL = 'URL',\n SPOUT = 'SPOUT',\n INITIATOR = 'INITIATOR',\n}\n\n/** @enumType */\nexport type IconTypeWithLiterals = IconType | 'URL' | 'SPOUT' | 'INITIATOR';\n\nexport interface UrlData {\n /**\n * actual url\n * @format WEB_URL\n */\n url?: string;\n}\n\nexport interface WebFeedChannel {\n /** content_keys */\n contentKeys?: WebFeedContentKeys;\n}\n\nexport interface MobileFeedChannel {\n /** content keys */\n contentKeys?: MobileFeedContentKeys;\n}\n\nexport interface FeedChannelsConfig {\n /** aggregation */\n aggregation?: FeedAggregation;\n}\n\nexport interface SharedPlatformMobilePushConfig {\n /** sound */\n sound?: string;\n /** group key */\n groupKey?: string | null;\n /** ttl */\n ttl?: number | null;\n /** target application */\n targetApplication?: MobileApplicationWithLiterals;\n}\n\nexport enum MobileApplication {\n UNKNOWN_MOBILE_APPLICATION = 'UNKNOWN_MOBILE_APPLICATION',\n OWNER = 'OWNER',\n SPACES = 'SPACES',\n DINE = 'DINE',\n FITNESS = 'FITNESS',\n WIX_LIFE = 'WIX_LIFE',\n WIX_PARTNERS = 'WIX_PARTNERS',\n BRANDED = 'BRANDED',\n WIX_STUDIO = 'WIX_STUDIO',\n NO_SPECIFIC_TARGET_APP = 'NO_SPECIFIC_TARGET_APP',\n}\n\n/** @enumType */\nexport type MobileApplicationWithLiterals =\n | MobileApplication\n | 'UNKNOWN_MOBILE_APPLICATION'\n | 'OWNER'\n | 'SPACES'\n | 'DINE'\n | 'FITNESS'\n | 'WIX_LIFE'\n | 'WIX_PARTNERS'\n | 'BRANDED'\n | 'WIX_STUDIO'\n | 'NO_SPECIFIC_TARGET_APP';\n\nexport interface AndroidMobilePushConfig {\n /** sub group key */\n subGroupKey?: string | null;\n /** style */\n style?: AndroidStyleWithLiterals;\n /** grouped deeplink pattern */\n groupedDeeplinkPattern?: string | null;\n}\n\nexport enum AndroidStyle {\n BIG_TEXT = 'BIG_TEXT',\n MESSAGING = 'MESSAGING',\n INBOX = 'INBOX',\n}\n\n/** @enumType */\nexport type AndroidStyleWithLiterals =\n | AndroidStyle\n | 'BIG_TEXT'\n | 'MESSAGING'\n | 'INBOX';\n\nexport interface MobilePushChannelConfig {\n /** shared */\n shared?: SharedPlatformMobilePushConfig;\n /** android */\n android?: AndroidMobilePushConfig;\n}\n\nexport interface MobilePushContentKeys {\n /** title */\n title?: string | null;\n /** message */\n message?: string | null;\n /** group of many title */\n groupOfManyTitle?: string | null;\n /** group of many message */\n groupOfManyMessage?: string | null;\n /** master group name override */\n masterGroupNameOverride?: string | null;\n}\n\nexport interface ExposureRule extends ExposureRuleRuleOneOf {\n /** boolean experiment exposure rule */\n booleanExperimentExposureRule?: BooleanExperimentExposureRule;\n /** custom experiment exposure rule */\n customExperimentExposureRule?: CustomExperimentExposureRule;\n /** type */\n type?: ExposureRuleTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ExposureRuleRuleOneOf {\n /** boolean experiment exposure rule */\n booleanExperimentExposureRule?: BooleanExperimentExposureRule;\n /** custom experiment exposure rule */\n customExperimentExposureRule?: CustomExperimentExposureRule;\n}\n\nexport enum ExposureRuleType {\n OPEN_TO_ALL = 'OPEN_TO_ALL',\n OPEN_TO_NONE = 'OPEN_TO_NONE',\n BOOLEAN_EXPERIMENT = 'BOOLEAN_EXPERIMENT',\n CUSTOM_EXPERIMENT = 'CUSTOM_EXPERIMENT',\n}\n\n/** @enumType */\nexport type ExposureRuleTypeWithLiterals =\n | ExposureRuleType\n | 'OPEN_TO_ALL'\n | 'OPEN_TO_NONE'\n | 'BOOLEAN_EXPERIMENT'\n | 'CUSTOM_EXPERIMENT';\n\nexport interface BooleanExperimentExposureRule {\n /** spec */\n spec?: string;\n}\n\nexport interface CustomExperimentExposureRule {\n /** spec */\n spec?: string;\n /** default value */\n defaultValue?: string;\n /** expected value */\n expectedValue?: string;\n}\n\nexport interface VoiceContentKeys {\n /** message */\n message?: string | null;\n}\n\nexport interface SmsContentKeys {\n /** message */\n message?: string | null;\n}\n\nexport interface BrowserPushContentKeys {\n /** title */\n title?: string | null;\n /** message */\n message?: string | null;\n}\n\nexport interface EmailChannel {\n /** config */\n config?: EmailTemplateConfig;\n}\n\nexport interface FeedChannels {\n /** web feed */\n webFeed?: WebFeedChannel;\n /** mobile feed */\n mobileFeed?: MobileFeedChannel;\n /** config */\n config?: FeedChannelsConfig;\n}\n\nexport interface MobilePushChannel {\n /** config */\n config?: MobilePushChannelConfig;\n /** content_keys */\n contentKeys?: MobilePushContentKeys;\n}\n\nexport interface VoiceChannel {\n /** content keys */\n contentKeys?: VoiceContentKeys;\n}\n\nexport interface SmsChannel {\n /** content_keys */\n contentKeys?: SmsContentKeys;\n}\n\nexport interface BrowserPushChannel {\n /** content_keys */\n contentKeys?: BrowserPushContentKeys;\n}\n\nexport enum Intent {\n MARKETING = 'MARKETING',\n TRANSACTIONAL = 'TRANSACTIONAL',\n}\n\n/** @enumType */\nexport type IntentWithLiterals = Intent | 'MARKETING' | 'TRANSACTIONAL';\n\nexport interface LimiterField {\n /** dynamic param name */\n dynamicParamName?: string;\n}\n\nexport interface UserNotificationDataRecipientFilter\n extends UserNotificationDataRecipientFilterDataOneOf {\n /** wix users data */\n wixUsersData?: WixUsersData;\n /** site contributors data */\n siteContributorsData?: SiteContributorsData;\n /** recipient filter type */\n type?: UserNotificationDataRecipientFilterTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface UserNotificationDataRecipientFilterDataOneOf {\n /** wix users data */\n wixUsersData?: WixUsersData;\n /** site contributors data */\n siteContributorsData?: SiteContributorsData;\n}\n\nexport interface UserNotificationDataInitiator\n extends UserNotificationDataInitiatorDataOneOf {\n /** wix user data */\n wixUserData?: WixUserData;\n /** initiator type */\n type?: InitiatorTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface UserNotificationDataInitiatorDataOneOf {\n /** wix user data */\n wixUserData?: WixUserData;\n}\n\nexport interface UserNotificationDataDeeplink\n extends UserNotificationDataDeeplinkOfOneOf {\n /** url */\n url?: Url;\n}\n\n/** @oneof */\nexport interface UserNotificationDataDeeplinkOfOneOf {\n /** url */\n url?: Url;\n}\n\nexport interface UserNotificationDataContext {\n level?: LevelWithLiterals;\n /** params */\n params?: Record<string, OrderValue>;\n}\n\nexport enum UserNotificationDataType {\n REGULAR = 'REGULAR',\n ALERT_WARNING = 'ALERT_WARNING',\n ALERT_INFO = 'ALERT_INFO',\n}\n\n/** @enumType */\nexport type UserNotificationDataTypeWithLiterals =\n | UserNotificationDataType\n | 'REGULAR'\n | 'ALERT_WARNING'\n | 'ALERT_INFO';\n\n/** Describes contact notifications */\nexport interface ContactNotification {\n /** @format GUID */\n referenceId?: string | null;\n referenceData?: ContactsNotificationData;\n}\n\nexport interface ContactsNotificationData {\n /**\n * name\n * @minLength 1\n */\n name?: string | null;\n /** description */\n description?: string | null;\n /**\n * topic id\n * @minLength 1\n */\n topicId?: string | null;\n /** channels */\n channels?: NotificationChannels;\n /** icon */\n icon?: Icon;\n /** limiter field */\n limiterField?: LimiterField;\n /** recipient filter */\n recipientFilter?: RecipientFilter;\n /** initiator */\n initiator?: Initiator;\n /** single deeplink */\n singleDeeplink?: Deeplink;\n /** grouped deeplink */\n groupedDeeplink?: Deeplink;\n /** context */\n context?: Context;\n}\n\nexport enum RecipientFilterType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n CONTACTS = 'CONTACTS',\n}\n\n/** @enumType */\nexport type RecipientFilterTypeWithLiterals =\n | RecipientFilterType\n | 'UNKNOWN_TYPE'\n | 'CONTACTS';\n\nexport interface ContactsData {\n /** id */\n _id?: TypedDynamicParam;\n}\n\nexport enum Type {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n CONTACT = 'CONTACT',\n SITE_MEMBER = 'SITE_MEMBER',\n}\n\n/** @enumType */\nexport type TypeWithLiterals =\n | Type\n | 'UNKNOWN_TYPE'\n | 'CONTACT'\n | 'SITE_MEMBER';\n\nexport interface ContactData {\n /**\n * dynamic param name\n * @minLength 1\n */\n dynamicParamName?: string;\n}\n\nexport interface SiteMemberData {\n /**\n * dynamic param name\n * @minLength 1\n */\n dynamicParamName?: string;\n}\n\nexport interface LiveSiteActionDeeplink {\n /** app page ID */\n appPageId?: string | null;\n /** path */\n path?: string | null;\n /** language */\n language?: ConstOrDynamicParam;\n /** hash fragment */\n hashFragment?: ConstOrDynamicParam;\n /** query params */\n queryParams?: Record<string, ConstOrDynamicParam>;\n}\n\nexport interface RecipientFilter extends RecipientFilterDataOneOf {\n /** contacts data */\n contactsData?: ContactsData;\n /** recipient filter type */\n type?: RecipientFilterTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface RecipientFilterDataOneOf {\n /** contacts data */\n contactsData?: ContactsData;\n}\n\nexport interface Initiator extends InitiatorDataOneOf {\n /** contact data */\n contactData?: ContactData;\n /** site member data */\n siteMemberData?: SiteMemberData;\n /** initiator type */\n type?: TypeWithLiterals;\n}\n\n/** @oneof */\nexport interface InitiatorDataOneOf {\n /** contact data */\n contactData?: ContactData;\n /** site member data */\n siteMemberData?: SiteMemberData;\n}\n\nexport interface Deeplink extends DeeplinkOfOneOf {\n /** url */\n url?: Url;\n}\n\n/** @oneof */\nexport interface DeeplinkOfOneOf {\n /** url */\n url?: Url;\n}\n\nexport interface Context {\n /** params */\n params?: Record<string, OrderValue>;\n}\n\nexport interface UnifiedPage {\n /** Base info of component by shared logic of unified components */\n base?: BaseInfo;\n /**\n * Page installation settings\n * @deprecated Page installation settings\n * @replacedBy editor_settings\n * @targetRemovalDate 2026-02-26\n */\n installation?: PageInstallationSettings;\n /** Page replacing options (replacer \\ replacing \\ none) */\n pageReplace?: PageReplaceOptions;\n /** Content of page */\n content?: PageContent;\n /** Settings for how the page integrates with the editor */\n editorSettings?: UnifiedPageEditorSettings;\n}\n\nexport interface PageInstallationSettings {\n /** Shared installation settings for unified components */\n base?: BaseInstallation;\n /** Page installation settings for unified components */\n page?: PageInstallation;\n}\n\nexport interface PageInstallation {\n /**\n * slug of the page (last part of url that point to the page)\n * @minLength 1\n * @maxLength 200\n */\n slug?: string;\n /** Should add page to site menu */\n addToSiteMenu?: boolean;\n /** Can page be linked through link panel */\n linkable?: boolean;\n}\n\nexport interface PageContent {\n /** Widgets to add as content in page */\n widgets?: WidgetAsContent[];\n}\n\nexport interface WidgetAsContent {\n /**\n * GUID of widget to use as content of page\n * @format GUID\n */\n widgetGuid?: string;\n /** The preset should be used */\n preset?: MainPresets;\n /** Mark widget as essential for the existence of the app (force to delete the whole app) */\n essential?: boolean | null;\n}\n\nexport interface UnifiedPageEditorSettings {\n /** Basic editor settings that are relevant to all page types */\n base?: PageEditorSettings;\n /**\n * slug of the page (last part of url that point to the page)\n * @minLength 1\n * @maxLength 200\n */\n slug?: string | null;\n}\n\nexport interface PageEditorSettings {\n /** Add the page to the site menu */\n addToSiteMenu?: boolean | null;\n /** Can a page be linked through the link panel */\n linkable?: boolean | null;\n /** Can a page be duplicated in the editor (if no essential widget is added in the container) */\n duplicatable?: boolean | null;\n}\n\nexport interface AvailabilityTimeSlotsProviderConfig {\n /** URI where the SPI Implementer is deployed. */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the provider.\n * @maxLength 100\n */\n providerName?: string | null;\n}\n\nexport interface ProposalEditorProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of ProposalEditor provider\n * @maxLength 100\n */\n providerName?: string;\n}\n\nexport interface CustomReservationsApprovalConfig {\n /** URI where the SPI Implementer is deployed */\n uriConfig?: SpiBaseUri;\n /** @minLength 2 */\n name?: string;\n}\n\nexport interface CommentsContextProviderConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /** Comments Environment */\n environment?: EnvironmentWithLiterals;\n /** Feature toggle to indicate if method GetCommentContextResources is implemented */\n toggleResourceProviderEnabled?: boolean;\n}\n\nexport enum Environment {\n LIVE_SITE = 'LIVE_SITE',\n BUSINESS_MANAGER = 'BUSINESS_MANAGER',\n}\n\n/** @enumType */\nexport type EnvironmentWithLiterals =\n | Environment\n | 'LIVE_SITE'\n | 'BUSINESS_MANAGER';\n\nexport interface FormSpamSubmissionReportSpiConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /**\n * Configuration of namespaces known by implementer\n * @maxSize 3\n */\n namespaceConfigs?: FormSpamSubmissionReportsNamespaceConfig[];\n}\n\nexport interface FormSpamSubmissionReportsNamespaceConfig {\n /**\n * Namespace name.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /** Permissions associated with this namespace. */\n permissions?: FormSpamSubmissionReportPermissions;\n}\n\nexport interface FormSpamSubmissionReportPermissions {\n /**\n * Create permission name\n * @maxLength 60\n */\n create?: string;\n /**\n * Delete permission name\n * @maxLength 60\n */\n delete?: string;\n /**\n * Update permission name\n * @maxLength 60\n */\n update?: string;\n /**\n * Read permission name\n * @maxLength 60\n */\n read?: string;\n /**\n * Report as not spam permission name\n * @maxLength 60\n */\n reportNotSpam?: string;\n /**\n * Report as not spam permission name\n * @maxLength 60\n */\n checkForSpam?: string;\n}\n\nexport interface VeloActionConfig {\n baseUri?: SpiBaseUri;\n}\n\nexport interface EventTypeProviderConfig {\n /**\n * The name of the event type.\n * Must be globally unique.\n */\n eventTypeName?: string;\n /**\n * Whether the events of this type should be hidden from query results if no type filter is provided.\n * Default is false.\n */\n eventTypeHiddenFromQuery?: boolean;\n}\n\nexport interface ServiceAvailabilityPolicyProviderConfig {\n /** URI where the SPI Implementer is deployed. */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the provider.\n * @maxLength 100\n */\n providerName?: string | null;\n}\n\n/** a translated sms text sent to UOU */\nexport interface SmsActionMessage {\n /**\n * sms text\n * @minLength 1\n */\n body?: string;\n}\n\nexport interface BookingPolicyProviderConfig {\n /** URI where the SPI Implementer is deployed. */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the provider.\n * @maxLength 100\n */\n providerName?: string | null;\n}\n\nexport interface MultiServiceBookingPolicyProviderConfig {\n /** URI where the SPI Implementer is deployed. */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the provider.\n * @maxLength 100\n */\n providerName?: string | null;\n}\n\nexport interface FormSubmissionSpiExtensionConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * Namespace names.\n * @maxSize 10\n */\n namespaceConfigs?: FormsSubmissionsExtensionNamespaceConfig[];\n}\n\nexport interface FormsSubmissionsExtensionNamespaceConfig {\n /**\n * Targeted namespace, with what submissions should trigger defined methods.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /**\n * The ID of the specific form that will trigger the defined methods when a submission is made.\n * This field is optional. If not provided, submissions from all forms will trigger the methods.\n * @format GUID\n */\n formId?: string | null;\n /** Enable submission validation. */\n submissionValidationEnabled?: boolean;\n}\n\nexport interface AssistantSpiConfig {\n /**\n * The deployment uri of the assistant\n * @maxLength 1000\n */\n deploymentUri?: string;\n /**\n * The name of the assistant\n * @minLength 1\n * @maxLength 100\n */\n assistantName?: string;\n /** The expose_benchmark_tests of the assistant */\n exposeBenchmarkTests?: boolean;\n /** The expose_dynamic_knowledge of the assistant */\n exposeDynamicKnowledge?: boolean;\n}\n\nexport interface MultilingualTranslationSchema {}\n\nexport interface Schema {\n /**\n * Translation schema ID.\n * @readonly\n * @format GUID\n */\n _id?: string | null;\n /** Translation schema unique key identifier. */\n key?: SchemaKey;\n /**\n * List of fields for the translation schema. This property uses a string to map to a `SchemaField` (`Map<string, SchemaField>`). The string serves as a key, which you'll need to access each field in the schema and when adding translation content.\n * @minSize 1\n * @maxSize 1000\n */\n fields?: Record<string, V1SchemaField>;\n /** Fields displayed in content previews. For example, a product name for a product translation schema. */\n previewFields?: PreviewFields;\n /**\n * Whether the translation schema is hidden from the site.\n *\n * Default: `false`\n */\n hidden?: boolean | null;\n /**\n * Translation schema name displayed in the [Translation Manager](https://support.wix.com/en/article/wix-multilingual-using-the-translation-manager).\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * A reference to the parent schema. For example, if the schema is for a menu item, this property would contain the schema ID of the menu it belongs to.\n * @format GUID\n */\n parentId?: string | null;\n /**\n * Revision number, which increments by 1 each time the schema is updated. To prevent conflicting changes, the existing `revision` must be used when updating a schema.\n * @readonly\n */\n revision?: string | null;\n /**\n * Date and time the translation schema was created.\n * @readonly\n */\n _createdDate?: Date | null;\n /**\n * Date and time the translation schema was updated.\n * @readonly\n */\n _updatedDate?: Date | null;\n /**\n * Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.\n *\n * Default: `false`\n */\n duplicateContent?: boolean | null;\n}\n\nexport interface SchemaKey {\n /**\n * ID of the app that created the schema.\n * @format GUID\n * @readonly\n */\n appId?: string;\n /**\n * A unique name defined by the app developer to differentiate translation schemas for various entities within their app. For example, if an app developer is creating a translation schema for blog posts, the `entityType` can be `'blog-posts'`.\n * @minLength 1\n * @maxLength 80\n * @immutable\n */\n entityType?: string;\n /**\n * Scope of the translation schema.\n * Supported values:\n * + `GLOBAL`: A global schema for all sites.\n * + `SITE`: A custom schema for a specific site.\n * @immutable\n */\n scope?: SchemaScopeWithLiterals;\n}\n\nexport enum SchemaScope {\n UNKNOWN_SCOPE = 'UNKNOWN_SCOPE',\n /** Global schema for all sites. */\n GLOBAL = 'GLOBAL',\n /** Custom schema for a specific site. */\n SITE = 'SITE',\n}\n\n/** @enumType */\nexport type SchemaScopeWithLiterals =\n | SchemaScope\n | 'UNKNOWN_SCOPE'\n | 'GLOBAL'\n | 'SITE';\n\nexport interface V1SchemaField {\n /**\n * Field ID. Validated according to Regex `^[A-Za-z0-9-_)(]+$`. Field IDs may contain parentheses to reference repeated items, such as images. These parentheses can't be nested and each opening parenthesis must be followed by a closing one. For example, `title()()` is valid, while `title)(` and `title(())` aren't valid. The value inside the parenthesis is validated according to Regex `^[^)(\\\\]\\\\[\\\\.]+$`.\n * @minLength 1\n * @maxLength 1000\n * @readonly\n */\n _id?: string;\n /** **Required.** Field type. */\n type?: SchemaFieldFieldTypeWithLiterals;\n /**\n * Field name displayed in the [Translation Manager](https://support.wix.com/en/article/wix-multilingual-using-the-translation-manager).\n * @maxLength 1000\n */\n displayName?: string | null;\n /**\n * Field group name.\n * @maxLength 1000\n */\n groupName?: string | null;\n /**\n * Field minimum text length.\n * @min 1\n */\n minLength?: number | null;\n /**\n * Field maximum text length.\n * @min 1\n */\n maxLength?: number | null;\n /**\n * Field format. Content is validated based on the format set here in the field schema. For example, if the format is `EMAIL`, then the content for this field must be a valid email address.\n * @minLength 2\n * @maxLength 20\n */\n format?: string | null;\n /** Whether the field is hidden from the site. Hidden fields are still validated. */\n hidden?: boolean;\n /** Whether the field is read-only, and not intended to be translated. For example, an image. Use this field when you want an image to remain in the [Translation Manager](https://support.wix.com/en/article/wix-multilingual-using-the-translation-manager) for context, but without being translated. */\n displayOnly?: boolean;\n /** Field index. Use for cases where the order of the fields are relevant. */\n index?: number | null;\n}\n\nexport enum SchemaFieldFieldType {\n /** Undefined field type */\n UNDEFINED_TYPE = 'UNDEFINED_TYPE',\n /** Short plain text displayed as a single line in the UI. */\n SHORT_TEXT = 'SHORT_TEXT',\n /** Long plain text displayed as multiple lines in the UI. */\n LONG_TEXT = 'LONG_TEXT',\n /** Long text including styles, images, and links. */\n HTML = 'HTML',\n /** Rich-Content using the Wix Ricos format. */\n RICH_CONTENT = 'RICH_CONTENT',\n /** Wix Media Manager image. */\n IMAGE = 'IMAGE',\n /** Image URL without metadata. */\n IMAGE_LINK = 'IMAGE_LINK',\n /** Wix Media Manager video. */\n VIDEO = 'VIDEO',\n /** Wix Media Manager document. */\n DOCUMENT = 'DOCUMENT',\n}\n\n/** @enumType */\nexport type SchemaFieldFieldTypeWithLiterals =\n | SchemaFieldFieldType\n | 'UNDEFINED_TYPE'\n | 'SHORT_TEXT'\n | 'LONG_TEXT'\n | 'HTML'\n | 'RICH_CONTENT'\n | 'IMAGE'\n | 'IMAGE_LINK'\n | 'VIDEO'\n | 'DOCUMENT';\n\nexport interface PreviewFields {\n /**\n * ID of the field representing the schema's title.\n * @maxLength 1000\n */\n titleFieldId?: string | null;\n /**\n * ID of the field representing the schema's image.\n * @maxLength 1000\n */\n imageFieldId?: string | null;\n}\n\nexport interface TaxGroupsProviderConfig {\n /** Base URI of the service plugin implementation. Since no endpoint is calling this path, it may be left blank. */\n deploymentUri?: SpiBaseUri;\n /**\n * Name of the default tax group for this app. All products retrieved from this app will be categorized, by default, with this group name.\n * The `id` for this tax group is the app's ID.\n * @maxLength 100\n */\n defaultTaxGroup?: string;\n /**\n * Additional tax groups to be added to a site's tax settings when the app is installed.\n * Each `additionalTaxGroup` must include an `id` and a `name`.\n */\n additionalTaxGroups?: Record<string, AdditionalTaxGroup>;\n}\n\nexport interface AdditionalTaxGroup {\n /**\n * Tax group name.\n * @maxLength 100\n */\n name?: string;\n /**\n * Unique tax group ID.\n * @format GUID\n */\n _id?: string;\n}\n\nexport interface TaxCalculationConfig {\n /**\n * Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.\n *\n * For example, to call the Calculate Tax endpoint at https://my-tax-calc.com/v1/calculate-tax, the base URI you provide here is `\"https://my-tax-calc.com/\"`.\n */\n deploymentUri?: SpiBaseUri;\n /**\n * Display name of the tax calculator.\n * @minLength 1\n * @maxLength 200\n */\n calculatorDisplayName?: string;\n /**\n * List of countries, in [ISO-3166 alpha-1](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format, that the calculator does not support.\n * @format COUNTRY\n * @maxSize 195\n */\n unsupportedCountries?: string[];\n}\n\n/** A modal in one of the back-office platforms */\nexport interface BackOfficeModal extends BackOfficeModalContentOneOf {\n /**\n * Iframe URL that hosts the modal's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n /**\n * Platform that hosts the modal.\n *\n * Must be `\"BUSINESS_MANAGER\"`.\n */\n hostingPlatform?: BackOfficeHostingPlatformsWithLiterals;\n /**\n * Modal title.\n * @minLength 1\n */\n title?: string;\n /**\n * Initial width of the modal while loading, in pixels.\n * Width may be adjusted dynamically based on the content of the modal or limited by the size of the modal's container.\n * @max 9999\n */\n width?: number | null;\n /**\n * Initial height of the modal while loading, in pixels.\n * Height may be adjusted dynamically based on the content of the modal or limited by the size of the modal's container.\n * @max 9999\n */\n height?: number | null;\n /** general component data */\n metaData?: ComponentMetaData;\n /**\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n}\n\n/** @oneof */\nexport interface BackOfficeModalContentOneOf {\n /**\n * Iframe URL that hosts the modal's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n}\n\nexport interface ModalParams {\n /**\n * Named export to use.\n * @maxLength 400\n */\n namedExport?: string | null;\n}\n\nexport interface DeploymentPipelineProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentPipelineUri?: SpiBaseUri;\n /**\n * The deployment pipeline implementer id\n * @format GUID\n */\n deploymentPipelineId?: string;\n}\n\nexport interface CustomElementWidget {\n /** Base info of component by shared logic of unified components */\n base?: BaseInfo;\n /** Unified widget installation settings */\n installation?: WidgetInstallationSettings;\n /** The extension data for this component */\n widgetData?: WidgetData;\n /** The widget's editor behaviors */\n behaviors?: EditorBehaviors;\n /** The size of the widget */\n size?: WidgetSize;\n /**\n * The runtime dependencies array to declare the widget packages.\n * @maxSize 50\n */\n dependencies?: WixDependency[];\n /**\n * The array of this widget's presets\n * @maxSize 50\n */\n presets?: Preset[];\n}\n\nexport interface WidgetData {\n /**\n * The script url that should render on the widget\n * @format WEB_URL\n */\n scriptUrl?: string;\n /**\n * Unique tag name to use in order to connect your JS script to your web component\n * @minLength 2\n * @maxLength 64\n */\n tagName?: string;\n /** Type of JavaScript modularization approach used in the custom element */\n scriptType?: CustomElementScriptTypeWithLiterals;\n}\n\nexport enum CustomElementScriptType {\n NONE = 'NONE',\n /** CommonJS modularization approach */\n COMMON_JS = 'COMMON_JS',\n /** ES Module modularization approach */\n ES_MODULE = 'ES_MODULE',\n}\n\n/** @enumType */\nexport type CustomElementScriptTypeWithLiterals =\n | CustomElementScriptType\n | 'NONE'\n | 'COMMON_JS'\n | 'ES_MODULE';\n\nexport interface EditorBehaviors {\n /** The settings behavior definition for the widget */\n settings?: SettingsPanel;\n /** The dashboard behavior definition for the widget */\n dashboard?: Dashboard;\n}\n\nexport interface SettingsPanel {\n /**\n * The settings panel URL for this component\n * @format WEB_URL\n */\n settingsUrl?: string | null;\n}\n\nexport interface Dashboard {\n /**\n * The dashboard page guid for the widget manage of the widget\n * @format GUID\n */\n dashboardPageComponentId?: string;\n}\n\nexport interface WidgetSize {\n /** define the size of the widget's height */\n height?: WidgetSizeHeight;\n /** define the size of the widget's width */\n width?: WidgetSizeWidth;\n}\n\nexport enum HeightMode {\n UNKNOWN = 'UNKNOWN',\n /** Height is calculated by content */\n AUTO = 'AUTO',\n /** Height is fixed require size in px */\n FIXED = 'FIXED',\n}\n\n/** @enumType */\nexport type HeightModeWithLiterals = HeightMode | 'UNKNOWN' | 'AUTO' | 'FIXED';\n\nexport interface WidgetSizeHeight {\n /** Height calculation mode */\n heightMode?: HeightModeWithLiterals;\n /**\n * Default height in pixels\n * @max 9999\n */\n defaultHeight?: number;\n}\n\nexport interface WidgetSizeWidth {\n /** Boolean to set stretch, will place the widget stretched to the full width of the container */\n allowStretch?: boolean;\n /**\n * Default width in pixels\n * @max 9999\n */\n defaultWidth?: number;\n /** Boolean to set stretch by default on installation, if true will place the widget stretched to the full width of the container */\n stretchByDefault?: boolean;\n}\n\nexport interface Preset {\n /**\n * The id of the preset\n * @minLength 1\n * @maxLength 50\n */\n _id?: string;\n /**\n * Display name of the preset\n * @minLength 1\n * @maxLength 30\n */\n name?: string;\n /** Defines data for screen size for the preset */\n breakpoints?: Breakpoints;\n /**\n * URL of an image to show as the preset's thumbnail in the editor\n * @format WEB_URL\n */\n thumbnailUrl?: string | null;\n}\n\nexport interface Breakpoints {\n /** Defines data for small screen size */\n small?: Breakpoint;\n /** Defines data for medium screen size */\n medium?: Breakpoint;\n /** Defines data for large screen size */\n large?: Breakpoint;\n}\n\nexport interface Breakpoint {\n /** The size of the preset */\n size?: WidgetSize;\n /**\n * A different preset id to be used according to breakpoint\n * @maxLength 50\n */\n presetId?: string;\n}\n\n/** A component that enables extending Wix dashboard functionality. */\nexport interface BackOfficeExtensionWidget\n extends BackOfficeExtensionWidgetAssetOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n /**\n * Platform that hosts the widget.\n *\n * Must be `\"BUSINESS_MANAGER\"`.\n */\n hostingPlatform?: BackOfficeHostingPlatformsWithLiterals;\n /**\n * Slot ID for the plugin's container.\n * @format GUID\n */\n extends?: string;\n /** Extension description. */\n description?: string | null;\n /** Extension title. */\n title?: string;\n /**\n * Initial height of the widget while loading, in pixels.\n * Height may be adjusted dynamically based on the content of the widget or limited by the size of the widget's container.\n * @max 9999\n */\n height?: number | null;\n}\n\n/** @oneof */\nexport interface BackOfficeExtensionWidgetAssetOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n}\n\n/** A component that enables extending a Wix dashboard menu. */\nexport interface BackOfficeExtensionMenuItem {\n /**\n * Platform that hosts the modal.\n *\n * Must be `\"BUSINESS_MANAGER\"`.\n */\n hostingPlatform?: BackOfficeHostingPlatformsWithLiterals;\n /**\n * Slot ID for the plugin's container.\n * @format GUID\n */\n extends?: string;\n /** Extension description. */\n description?: string | null;\n /** Extension title. */\n title?: string;\n /**\n * Menu item subtitle.\n * @maxLength 200\n */\n subtitle?: string | null;\n /**\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n /** Action that takes places when the menu item is clicked. */\n action?: MenuAction;\n}\n\nexport interface NavigateToPageAction {\n /**\n * ID for the target [page](https://dev.wix.com/docs/sdk/host-modules/dashboard/page-ids).\n * @format GUID\n */\n pageId?: string;\n /** Relative URL to append to the base page URL. May include path segments, search params, and hash. */\n relativeUrl?: string | null;\n}\n\nexport interface OpenModalAction {\n /**\n * ID of the modal to open.\n * @format GUID\n */\n componentId?: string;\n /** Modal parameters. */\n componentParams?: Record<string, string>;\n}\n\nexport interface MenuAction extends MenuActionActionOneOf {\n navigateToPage?: NavigateToPageAction;\n openModal?: OpenModalAction;\n}\n\n/** @oneof */\nexport interface MenuActionActionOneOf {\n navigateToPage?: NavigateToPageAction;\n openModal?: OpenModalAction;\n}\n\n/**\n * Form templates represent an entity that can be used as a source when creating a new form,\n * as well as used as common, extendable form.\n */\nexport interface FormTemplate extends FormTemplateTemplateTypeOptionsOneOf {\n /** Extension configuration.. */\n extendableOptions?: ExtensionDetails;\n /**\n * Form template ID.\n * @format GUID\n */\n _id?: string;\n /**\n * Namespace under which all forms from this template are created.\n * Namespaces can be used to aggregate multiple forms into single set according to use case / business rules / product.\n * @minLength 10\n * @maxLength 50\n * @immutable\n */\n namespace?: string;\n /**\n * List of form fields.\n * @maxSize 100\n */\n fields?: V2Field[];\n /**\n * Fields which were soft deleted, but can be restored by user.\n * @maxSize 100\n */\n deletedFields?: V2Field[];\n /**\n * Steps of the form, determinating layout of the form\n * @maxSize 100\n */\n steps?: Step[];\n /**\n * Form rules, can be applied to layout and items properties.\n * @maxSize 100\n */\n rules?: V2Rule[];\n /**\n * Name that will be assigned to a created template.\n * @minLength 1\n * @maxLength 200\n */\n name?: string | null;\n /** Settings for actions to be taken after form submission. */\n submitSettings?: SubmitSettings;\n /**\n * Specifies the template purpose\n * @immutable\n */\n templateType?: TemplateTypeWithLiterals;\n /**\n * Date of creation.\n * @readonly\n */\n _createdDate?: Date | null;\n /**\n * Date of last update.\n * @readonly\n */\n _updatedDate?: Date | null;\n /**\n * Settings for field groups.\n * @maxSize 50\n */\n fieldGroups?: FieldGroup[];\n /** Required indicator properties. */\n requiredIndicatorProperties?: RequiredIndicatorProperties;\n}\n\n/** @oneof */\nexport interface FormTemplateTemplateTypeOptionsOneOf {\n /** Extension configuration.. */\n extendableOptions?: ExtensionDetails;\n}\n\nexport interface V2Field extends V2FieldFieldTypeOptionsOneOf {\n /** Field accept input of data */\n inputOptions?: InputField;\n /** Field for displaying information such as header or text paragraph */\n displayOptions?: DisplayField;\n /**\n * Field id.\n * @format GUID\n * @immutable\n */\n _id?: string;\n /**\n * Whether the field is hidden.\n * Default: false\n */\n hidden?: boolean;\n /**\n * Custom identification of field, can be used to specify exceptional behaviour of client for specific field\n * @maxLength 50\n */\n identifier?: string | null;\n /**\n * Type of the field\n * @readonly\n */\n fieldType?: FieldFieldTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface V2FieldFieldTypeOptionsOneOf {\n /** Field accept input of data */\n inputOptions?: InputField;\n /** Field for displaying information such as header or text paragraph */\n displayOptions?: DisplayField;\n}\n\nexport enum FieldFieldType {\n UNKNOWN_FIELD_TYPE = 'UNKNOWN_FIELD_TYPE',\n INPUT = 'INPUT',\n DISPLAY = 'DISPLAY',\n}\n\n/** @enumType */\nexport type FieldFieldTypeWithLiterals =\n | FieldFieldType\n | 'UNKNOWN_FIELD_TYPE'\n | 'INPUT'\n | 'DISPLAY';\n\nexport interface InputField extends InputFieldInputTypeOptionsOneOf {\n /** Input return string as value */\n stringOptions?: _String;\n /** Input return number as value */\n numberOptions?: InputField_Number;\n /** Input return boolean as value */\n booleanOptions?: _Boolean;\n /** Input return array as value */\n arrayOptions?: _Array;\n /** Input return object as value */\n objectOptions?: _Object;\n /** Input return \"Wix file\" as value */\n wixFileOptions?: WixFile;\n /** Input returns selected products as value. */\n paymentOptions?: Payment;\n /** Input returns multiline address as value. */\n multilineAddressOptions?: Address;\n /** Input returns scheduling as value. */\n schedulingOptions?: Scheduling;\n /** Input returns multiline address as value. */\n addressOptions?: Address;\n /**\n * Definition of a target where the value of field belongs.\n * @minLength 1\n * @maxLength 200\n * @immutable\n */\n target?: string;\n /**\n * Mark the field as containing personal information. This will encrypt user data when storing it.\n * Default: false\n */\n pii?: boolean;\n /**\n * Whether the field is required.\n * Default: false\n */\n required?: boolean;\n /**\n * Type of the input field\n * @readonly\n */\n inputType?: InputTypeWithLiterals;\n /** Mapping to contacts, telling to what contact property field input value should be saved. */\n contactMapping?: FormFieldContactInfo;\n /**\n * Whether the field is read only.\n * Default: false\n */\n readOnly?: boolean;\n}\n\n/** @oneof */\nexport interface InputFieldInputTypeOptionsOneOf {\n /** Input return string as value */\n stringOptions?: _String;\n /** Input return number as value */\n numberOptions?: InputField_Number;\n /** Input return boolean as value */\n booleanOptions?: _Boolean;\n /** Input return array as value */\n arrayOptions?: _Array;\n /** Input return object as value */\n objectOptions?: _Object;\n /** Input return \"Wix file\" as value */\n wixFileOptions?: WixFile;\n /** Input returns selected products as value. */\n paymentOptions?: Payment;\n /** Input returns multiline address as value. */\n multilineAddressOptions?: Address;\n /** Input returns scheduling as value. */\n schedulingOptions?: Scheduling;\n /** Input returns multiline address as value. */\n addressOptions?: Address;\n}\n\nexport interface StringType extends StringTypeFormatOptionsOneOf {\n /** DATE format options */\n dateOptions?: DateTimeConstraints;\n /** DATE_TIME format options */\n dateTimeOptions?: DateTimeConstraints;\n /** TIME format options */\n timeOptions?: DateTimeConstraints;\n /** DATE_OPTIONAL_TIME format options */\n dateOptionalTimeOptions?: DateTimeConstraints;\n /** PHONE format options */\n phoneOptions?: PhoneConstraints;\n /**\n * Minimum length.\n * @max 20000\n */\n minLength?: number | null;\n /**\n * Maximum length.\n * @max 20000\n */\n maxLength?: number | null;\n /**\n * Pattern for a regular expression match.\n * @maxLength 500\n */\n pattern?: string | null;\n /** Format of a string. */\n format?: FormatWithLiterals;\n /**\n * List of allowed values.\n * @maxSize 500\n * @maxLength 20000\n */\n enum?: string[] | null;\n /** Custom error messages displayed when validation fails. */\n validationMessages?: ValidationMessages;\n}\n\n/** @oneof */\nexport interface StringTypeFormatOptionsOneOf {\n /** DATE format options */\n dateOptions?: DateTimeConstraints;\n /** DATE_TIME format options */\n dateTimeOptions?: DateTimeConstraints;\n /** TIME format options */\n timeOptions?: DateTimeConstraints;\n /** DATE_OPTIONAL_TIME format options */\n dateOptionalTimeOptions?: DateTimeConstraints;\n /** PHONE format options */\n phoneOptions?: PhoneConstraints;\n}\n\nexport enum Format {\n /** Unknown format. */\n UNKNOWN_FORMAT = 'UNKNOWN_FORMAT',\n /** Date format. */\n DATE = 'DATE',\n /** Time format. */\n TIME = 'TIME',\n /** Date and time format. */\n DATE_TIME = 'DATE_TIME',\n /** Email format. */\n EMAIL = 'EMAIL',\n /** URL format. */\n URL = 'URL',\n /** UUID format. */\n UUID = 'UUID',\n /** Phone number format. */\n PHONE = 'PHONE',\n /** URI format. */\n URI = 'URI',\n /** Hostname format. */\n HOSTNAME = 'HOSTNAME',\n /** Hexadecimal color code format. */\n COLOR_HEX = 'COLOR_HEX',\n /** Currency format. */\n CURRENCY = 'CURRENCY',\n /** Language code format. */\n LANGUAGE = 'LANGUAGE',\n /** Date with optional time format. */\n DATE_OPTIONAL_TIME = 'DATE_OPTIONAL_TIME',\n}\n\n/** @enumType */\nexport type FormatWithLiterals =\n | Format\n | 'UNKNOWN_FORMAT'\n | 'DATE'\n | 'TIME'\n | 'DATE_TIME'\n | 'EMAIL'\n | 'URL'\n | 'UUID'\n | 'PHONE'\n | 'URI'\n | 'HOSTNAME'\n | 'COLOR_HEX'\n | 'CURRENCY'\n | 'LANGUAGE'\n | 'DATE_OPTIONAL_TIME';\n\nexport interface DateTimeConstraints {\n /**\n * Support static constrains defined as ISO date/time format, as well as\n * dynamic calculations can be performed using special keywords such as \"$now\" to represent the current date and time.\n * The dynamic calculation supports expressions like \"$now+2d\" (2 days in the future), \"$now-1h\" (1 hour in the past), etc.\n * The regex pattern for dynamic calculations is: \\$now([+-]\\d{1,2})([yMdmh])\n * @maxLength 50\n */\n minimum?: string | null;\n /**\n * Support static constrains defined as ISO date/time format, as well as\n * dynamic calculations can be performed using special keywords such as \"$now\" to represent the current date and time.\n * The dynamic calculation supports expressions like \"$now+2d\" (2 days in the future), \"$now-1h\" (1 hour in the past), etc.\n * The regex pattern for dynamic calculations is: \\$now([+-]\\d{1,2})([yMdmh])\n * @maxLength 50\n */\n maximum?: string | null;\n}\n\nexport interface PhoneConstraints {\n /**\n * Country codes for phone number that are allowed\n * @maxSize 250\n * @maxLength 2\n */\n allowedCountryCodes?: string[];\n}\n\nexport interface ValidationMessages {\n /**\n * Error message shown when the pattern validation fails.\n *\n * This message is displayed to users when their input doesn't match the specified regex pattern.\n * @maxLength 200\n */\n pattern?: string | null;\n}\n\nexport enum StringComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n TEXT_INPUT = 'TEXT_INPUT',\n RADIO_GROUP = 'RADIO_GROUP',\n DROPDOWN = 'DROPDOWN',\n DATE_TIME = 'DATE_TIME',\n PHONE_INPUT = 'PHONE_INPUT',\n DATE_INPUT = 'DATE_INPUT',\n TIME_INPUT = 'TIME_INPUT',\n DATE_PICKER = 'DATE_PICKER',\n SERVICES_DROPDOWN = 'SERVICES_DROPDOWN',\n PASSWORD = 'PASSWORD',\n}\n\n/** @enumType */\nexport type StringComponentTypeWithLiterals =\n | StringComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'TEXT_INPUT'\n | 'RADIO_GROUP'\n | 'DROPDOWN'\n | 'DATE_TIME'\n | 'PHONE_INPUT'\n | 'DATE_INPUT'\n | 'TIME_INPUT'\n | 'DATE_PICKER'\n | 'SERVICES_DROPDOWN'\n | 'PASSWORD';\n\nexport interface TextInput {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Placeholder for the value input\n * @maxLength 100\n */\n placeholder?: string | null;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Default value for the text input\n * @maxLength 20000\n */\n default?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface MediaItem extends MediaItemMediaOneOf {\n /** WixMedia image. */\n image?: CommonImage;\n}\n\n/** @oneof */\nexport interface MediaItemMediaOneOf {\n /** WixMedia image. */\n image?: CommonImage;\n}\n\nexport interface CommonImage {\n /**\n * WixMedia image ID.\n * @maxLength 100\n */\n _id?: string;\n /**\n * Image URL.\n * @maxLength 2000\n */\n url?: string;\n /**\n * Original image height.\n * @readonly\n */\n height?: number;\n /**\n * Original image width.\n * @readonly\n */\n width?: number;\n /**\n * Image alt text.\n * @maxLength 1000\n */\n altText?: string | null;\n /**\n * Image filename.\n * @readonly\n * @maxLength 1000\n */\n filename?: string | null;\n}\n\nexport interface MediaSettings {\n /**\n * Specifies where image should be displayed.\n * Default: BELOW\n */\n imagePosition?: ImagePositionWithLiterals;\n /**\n * Specifies image alignment.\n * Default: CENTER\n */\n imageAlignment?: AlignmentWithLiterals;\n /**\n * Defines how an image should be resized to fit.\n * Default: COVER\n */\n imageFit?: ImageFitWithLiterals;\n}\n\nexport enum ImagePosition {\n /** Undefined position. */\n UNKNOWN_IMAGE_POSITION = 'UNKNOWN_IMAGE_POSITION',\n /** Above label. */\n ABOVE = 'ABOVE',\n /** Below label. */\n BELOW = 'BELOW',\n}\n\n/** @enumType */\nexport type ImagePositionWithLiterals =\n | ImagePosition\n | 'UNKNOWN_IMAGE_POSITION'\n | 'ABOVE'\n | 'BELOW';\n\nexport enum Alignment {\n /** Undefined alignment. */\n UNKNOWN_ALIGNMENT = 'UNKNOWN_ALIGNMENT',\n /** Left. */\n LEFT = 'LEFT',\n /** Center. */\n CENTER = 'CENTER',\n /** Right. */\n RIGHT = 'RIGHT',\n}\n\n/** @enumType */\nexport type AlignmentWithLiterals =\n | Alignment\n | 'UNKNOWN_ALIGNMENT'\n | 'LEFT'\n | 'CENTER'\n | 'RIGHT';\n\nexport enum ImageFit {\n UNKNOWN_IMAGE_FIT = 'UNKNOWN_IMAGE_FIT',\n /** Image is scaled to maintain its aspect ratio while filling the element's entire content box. Portions of the image may be clipped if the aspect ratios do not match. */\n COVER = 'COVER',\n /** Image is resized to fill the element's content box. Aspect ratio may not be preserved. */\n CONTAIN = 'CONTAIN',\n}\n\n/** @enumType */\nexport type ImageFitWithLiterals =\n | ImageFit\n | 'UNKNOWN_IMAGE_FIT'\n | 'COVER'\n | 'CONTAIN';\n\nexport interface RadioGroup {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Flag identifying to show option allowing input custom value\n * List of options to select from\n * @maxSize 400\n */\n options?: RadioGroupOption[];\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n /**\n * Specifies the number of columns used to display the selections within the component.\n * Default: ONE\n */\n numberOfColumns?: NumberOfColumnsWithLiterals;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface RadioGroupOption {\n /**\n * Selectable option label\n * @maxLength 400\n */\n label?: string | null;\n /**\n * Selectable option value, which is saved to DB.\n * @maxLength 20000\n */\n value?: string | null;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n /**\n * Option id. Used as binding for translations\n * @format GUID\n * @immutable\n */\n _id?: string;\n}\n\nexport interface CustomOption {\n /**\n * Label of custom option input\n * @maxLength 350\n */\n label?: string | null;\n /**\n * Placeholder of custom option input\n * @maxLength 100\n */\n placeholder?: string | null;\n}\n\nexport enum NumberOfColumns {\n /** Undefined number of columns. */\n UNKNOWN = 'UNKNOWN',\n /** Zero columns. */\n ZERO = 'ZERO',\n /** One column. */\n ONE = 'ONE',\n /** Two columns. */\n TWO = 'TWO',\n /** Three columns. */\n THREE = 'THREE',\n}\n\n/** @enumType */\nexport type NumberOfColumnsWithLiterals =\n | NumberOfColumns\n | 'UNKNOWN'\n | 'ZERO'\n | 'ONE'\n | 'TWO'\n | 'THREE';\n\nexport interface Dropdown {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * List of options to select from\n * @maxSize 400\n */\n options?: DropdownOption[];\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n /**\n * Placeholder of dropdown input\n * @maxLength 100\n */\n placeholder?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface DropdownOption {\n /**\n * Selectable option label\n * @maxLength 400\n */\n label?: string | null;\n /**\n * Selectable option value, which is saved to DB.\n * @maxLength 20000\n */\n value?: string | null;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n /**\n * Option id. Used as binding for translations\n * @format GUID\n * @immutable\n */\n _id?: string;\n}\n\nexport interface DateTimeInput {\n /**\n * Label of the field. Displayed text for the date/time input.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. Additional information about the date/time input. */\n description?: RichContent;\n /**\n * Flag identifying whether to show or hide the label.\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Flag identifying whether to show or hide the placeholder.\n * Default: true\n */\n showPlaceholder?: boolean | null;\n /**\n * Flag indicating whether to use the 24-hour time format.\n * Default: false.\n */\n use24HourFormat?: boolean;\n /**\n * Default value for the date time input.\n * @format LOCAL_DATE_TIME\n */\n default?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n /**\n * Flag identifying whether to show or hide the date labels.\n * Default: true\n */\n showDateLabels?: boolean | null;\n}\n\nexport interface PhoneInput {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Placeholder for the value input\n * @maxLength 100\n */\n placeholder?: string | null;\n /**\n * Flag identifying to show label or not\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Default value of the country code\n * @minLength 1\n * @maxLength 5\n */\n defaultCountryCode?: string | null;\n /**\n * Flag identifying to show country flag or not\n * Default: false\n */\n showCountryFlag?: boolean;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface DateInput {\n /**\n * Label of the field. Displayed text for the date/time input.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. Additional information about the date/time input. */\n description?: RichContent;\n /**\n * Flag identifying whether to show or hide the label.\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Flag identifying whether to show or hide the placeholder.\n * Default: true\n */\n showPlaceholder?: boolean | null;\n /**\n * Default value for the date input.\n * @format LOCAL_DATE\n */\n default?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n /**\n * Flag identifying whether to show or hide the date labels.\n * Default: true\n */\n showDateLabels?: boolean | null;\n}\n\nexport interface TimeInput {\n /**\n * Label of the field. Displayed text for the date/time input.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. Additional information about the date/time input. */\n description?: RichContent;\n /**\n * Flag identifying whether to show or hide the label.\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Flag identifying whether to show or hide the placeholder.\n * Default: true\n */\n showPlaceholder?: boolean | null;\n /**\n * Flag indicating whether to use the 24-hour time format.\n * Default: false.\n */\n use24HourFormat?: boolean;\n /**\n * Default value for the time input.\n * @format LOCAL_TIME\n */\n default?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface DatePicker {\n /**\n * Label of the field. Displayed text for the date/time input.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. Additional information about the date/time input. */\n description?: RichContent;\n /**\n * Flag identifying whether to show or hide the label.\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Placeholder of date picker input\n * @maxLength 100\n */\n placeholder?: string | null;\n /** First day of the week displayed on date picker. */\n firstDayOfWeek?: FirstDayOfWeekWithLiterals;\n /**\n * Default value for the date picker.\n * @format LOCAL_DATE\n */\n default?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport enum FirstDayOfWeek {\n /** First day of the week is Monday. */\n MONDAY = 'MONDAY',\n /** First day of the week is Sunday. */\n SUNDAY = 'SUNDAY',\n}\n\n/** @enumType */\nexport type FirstDayOfWeekWithLiterals = FirstDayOfWeek | 'MONDAY' | 'SUNDAY';\n\nexport interface ServicesDropdown {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Placeholder of services dropdown input\n * @maxLength 100\n */\n placeholder?: string | null;\n /**\n * List of service options to select from\n * @maxSize 400\n */\n options?: ServicesDropdownOption[];\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n}\n\nexport interface ServicesDropdownOption {\n /**\n * Service name/label\n * @maxLength 400\n */\n label?: string | null;\n /**\n * Option id. Used as binding for translations. Corresponds to the Service ID.\n * @format GUID\n * @immutable\n */\n _id?: string;\n /**\n * Selectable option value, which is saved to DB. Corresponds to the Service ID.\n * @format GUID\n * @immutable\n */\n value?: string | null;\n}\n\nexport interface Password {\n /**\n * Field label.\n * @maxLength 350\n */\n label?: string | null;\n /** Additional description or instructions for the field. */\n description?: RichContent;\n /**\n * Placeholder text shown inside the field when it's empty.\n * Useful for providing a hint about the expected format or content.\n * @maxLength 100\n */\n placeholder?: string | null;\n /**\n * Whether to display the field label.\n *\n * Default: `true`\n */\n showLabel?: boolean | null;\n /**\n * Default value for the field. This value is pre-populated in the field when the form loads.\n * @maxLength 20000\n */\n default?: string | null;\n /** Media content associated with the field, such as an image. */\n media?: MediaItem;\n /** Configuration for the media content. */\n mediaSettings?: MediaSettings;\n}\n\nexport interface NumberType {\n /** Inclusive maximum value. */\n maximum?: number | null;\n /** Inclusive minimum value. */\n minimum?: number | null;\n /** Multiple of value. */\n multipleOf?: number | null;\n /**\n * List of allowed values.\n * @maxSize 500\n */\n enum?: number[] | null;\n}\n\nexport enum NumberComponentType {\n UNKNOWN = 'UNKNOWN',\n NUMBER_INPUT = 'NUMBER_INPUT',\n RATING_INPUT = 'RATING_INPUT',\n}\n\n/** @enumType */\nexport type NumberComponentTypeWithLiterals =\n | NumberComponentType\n | 'UNKNOWN'\n | 'NUMBER_INPUT'\n | 'RATING_INPUT';\n\nexport interface NumberInput {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Placeholder for the value input\n * @maxLength 100\n */\n placeholder?: string | null;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Default value for the number input */\n default?: number | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface RatingInput {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Default rating\n * @min 1\n * @max 5\n */\n defaultValue?: number | null;\n /**\n * Flag identifying to hide label or not\n * Default: true\n */\n showLabel?: boolean | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface BooleanType {\n /**\n * List of allowed values.\n * @maxSize 2\n */\n enum?: boolean[];\n}\n\nexport enum BooleanComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n CHECKBOX = 'CHECKBOX',\n}\n\n/** @enumType */\nexport type BooleanComponentTypeWithLiterals =\n | BooleanComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'CHECKBOX';\n\nexport interface Checkbox {\n /** Label of the field */\n label?: RichContent;\n /**\n * Flag identifying if checked by default\n * Default: false\n */\n checked?: boolean;\n}\n\nexport interface ArrayType {\n /**\n * Maximum amount of array elements.\n * @max 1000\n */\n maxItems?: number | null;\n /**\n * Minimum amount of array elements.\n * @max 1000\n */\n minItems?: number | null;\n /** Type of items allowed in array. */\n items?: ArrayTypeArrayItems;\n}\n\nexport enum ItemType {\n UNKNOWN_ITEM_TYPE = 'UNKNOWN_ITEM_TYPE',\n STRING = 'STRING',\n NUMBER = 'NUMBER',\n BOOLEAN = 'BOOLEAN',\n INTEGER = 'INTEGER',\n OBJECT = 'OBJECT',\n}\n\n/** @enumType */\nexport type ItemTypeWithLiterals =\n | ItemType\n | 'UNKNOWN_ITEM_TYPE'\n | 'STRING'\n | 'NUMBER'\n | 'BOOLEAN'\n | 'INTEGER'\n | 'OBJECT';\n\nexport interface IntegerType {\n /** Maximum value. */\n maximum?: number | null;\n /** Minimum value. */\n minimum?: number | null;\n /** Multiple of value. */\n multipleOf?: number | null;\n /**\n * List of allowed values.\n * @maxSize 500\n */\n enum?: number[] | null;\n}\n\nexport interface ObjectType {\n /** Description of object properties. */\n properties?: Record<string, PropertiesType>;\n}\n\nexport enum PropertiesTypeEnum {\n UNKNOWN_PROPERTY_TYPE = 'UNKNOWN_PROPERTY_TYPE',\n STRING = 'STRING',\n NUMBER = 'NUMBER',\n BOOLEAN = 'BOOLEAN',\n INTEGER = 'INTEGER',\n ARRAY = 'ARRAY',\n}\n\n/** @enumType */\nexport type PropertiesTypeEnumWithLiterals =\n | PropertiesTypeEnum\n | 'UNKNOWN_PROPERTY_TYPE'\n | 'STRING'\n | 'NUMBER'\n | 'BOOLEAN'\n | 'INTEGER'\n | 'ARRAY';\n\nexport interface PropertiesType\n extends PropertiesTypePropertiesTypeOptionsOneOf {\n /** String type validation for property. */\n stringOptions?: StringType;\n /** Number type validation for property. */\n numberOptions?: NumberType;\n /** Boolean type validation for property. */\n booleanOptions?: BooleanType;\n /** Integer type validation for property. */\n integerOptions?: IntegerType;\n /** Array type validation for property. */\n arrayOptions?: ArrayType;\n /**\n * Type of object properties\n * @readonly\n */\n propertiesType?: PropertiesTypeEnumWithLiterals;\n /** Whether the property is required. */\n required?: boolean;\n}\n\n/** @oneof */\nexport interface PropertiesTypePropertiesTypeOptionsOneOf {\n /** String type validation for property. */\n stringOptions?: StringType;\n /** Number type validation for property. */\n numberOptions?: NumberType;\n /** Boolean type validation for property. */\n booleanOptions?: BooleanType;\n /** Integer type validation for property. */\n integerOptions?: IntegerType;\n /** Array type validation for property. */\n arrayOptions?: ArrayType;\n}\n\nexport interface ArrayTypeArrayItems\n extends ArrayTypeArrayItemsItemTypeOptionsOneOf {\n /** String type validation for items. */\n stringOptions?: StringType;\n /** Number type validation for items. */\n numberOptions?: NumberType;\n /** Boolean type validation for items. */\n booleanOptions?: BooleanType;\n /** Integer type validation for items. */\n integerOptions?: IntegerType;\n /** Object type validation for items */\n objectOptions?: ObjectType;\n /**\n * Type of array items\n * @readonly\n */\n itemType?: ItemTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ArrayTypeArrayItemsItemTypeOptionsOneOf {\n /** String type validation for items. */\n stringOptions?: StringType;\n /** Number type validation for items. */\n numberOptions?: NumberType;\n /** Boolean type validation for items. */\n booleanOptions?: BooleanType;\n /** Integer type validation for items. */\n integerOptions?: IntegerType;\n /** Object type validation for items */\n objectOptions?: ObjectType;\n}\n\nexport enum ArrayComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n CHECKBOX_GROUP = 'CHECKBOX_GROUP',\n TAGS = 'TAGS',\n}\n\n/** @enumType */\nexport type ArrayComponentTypeWithLiterals =\n | ArrayComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'CHECKBOX_GROUP'\n | 'TAGS';\n\nexport interface CheckboxGroup {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * List of options to select from\n * @maxSize 400\n */\n options?: CheckboxGroupOption[];\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n /**\n * Specifies the number of columns used to display the selections within the component.\n * Default: ONE\n */\n numberOfColumns?: NumberOfColumnsWithLiterals;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface CheckboxGroupOption {\n /**\n * Selectable option label\n * @maxLength 400\n */\n label?: string | null;\n /** Selectable option value, which is saved to DB. */\n value?: any;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n /**\n * Option id. Used as binding for translations\n * @format GUID\n * @immutable\n */\n _id?: string;\n /** Media item. Media, associated with option, like image. */\n media?: MediaItem;\n}\n\nexport interface Tags {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * List of options to select from\n * @maxSize 400\n */\n options?: TagsOption[];\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n /**\n * Specifies the number of columns used to display the selections within the component.\n * Default: ONE\n */\n numberOfColumns?: NumberOfColumnsWithLiterals;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface TagsOption {\n /**\n * Selectable option label\n * @maxLength 400\n */\n label?: string | null;\n /** Selectable option value, which is saved to DB. */\n value?: any;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n /**\n * Option id. Used as binding for translations\n * @format GUID\n * @immutable\n */\n _id?: string;\n /** Media item. Media, associated with option, like image. */\n media?: MediaItem;\n}\n\nexport enum WixFileComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n FILE_UPLOAD = 'FILE_UPLOAD',\n SIGNATURE = 'SIGNATURE',\n}\n\n/** @enumType */\nexport type WixFileComponentTypeWithLiterals =\n | WixFileComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'FILE_UPLOAD'\n | 'SIGNATURE';\n\nexport interface FileType {\n /**\n * Amount of files allowed to upload\n * @min 1\n * @max 30\n */\n fileLimit?: number;\n /**\n * Supported file formats for upload\n * @maxSize 5\n */\n uploadFileFormats?: UploadFileFormatWithLiterals[];\n}\n\nexport enum UploadFileFormat {\n /** Undefined upload file format. */\n UNKNOWN_UPLOAD_FILE_FORMAT = 'UNKNOWN_UPLOAD_FILE_FORMAT',\n /** Video files. */\n VIDEO = 'VIDEO',\n /** Image files. */\n IMAGE = 'IMAGE',\n /** Audio files. */\n AUDIO = 'AUDIO',\n /** Document files. */\n DOCUMENT = 'DOCUMENT',\n /** Archive files. */\n ARCHIVE = 'ARCHIVE',\n}\n\n/** @enumType */\nexport type UploadFileFormatWithLiterals =\n | UploadFileFormat\n | 'UNKNOWN_UPLOAD_FILE_FORMAT'\n | 'VIDEO'\n | 'IMAGE'\n | 'AUDIO'\n | 'DOCUMENT'\n | 'ARCHIVE';\n\nexport interface FileUpload {\n /**\n * Selectable option label\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Text on upload button\n * @maxLength 500\n */\n buttonText?: string | null;\n /**\n * Amount of files allowed to upload\n * @min 1\n * @max 30\n */\n fileLimit?: number;\n /**\n * Supported file formats for upload\n * @maxSize 5\n */\n uploadFileFormats?: UploadFileFormatEnumUploadFileFormatWithLiterals[];\n /**\n * Custom text which appears when file is uploaded, if missing file name will be shown\n * @maxLength 255\n */\n explanationText?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport enum UploadFileFormatEnumUploadFileFormat {\n /** Undefined upload file format. */\n UNDEFINED = 'UNDEFINED',\n /** Video files. */\n VIDEO = 'VIDEO',\n /** Image files. */\n IMAGE = 'IMAGE',\n /** Audio files. */\n AUDIO = 'AUDIO',\n /** Document files. */\n DOCUMENT = 'DOCUMENT',\n /** Archive files. */\n ARCHIVE = 'ARCHIVE',\n}\n\n/** @enumType */\nexport type UploadFileFormatEnumUploadFileFormatWithLiterals =\n | UploadFileFormatEnumUploadFileFormat\n | 'UNDEFINED'\n | 'VIDEO'\n | 'IMAGE'\n | 'AUDIO'\n | 'DOCUMENT'\n | 'ARCHIVE';\n\nexport interface Signature {\n /**\n * Selectable option label\n * @maxLength 350\n */\n label?: string | null;\n /**\n * Flag identifying to hide label or not\n * Default: true\n */\n showLabel?: boolean | null;\n /** Description of the field */\n description?: RichContent;\n /** Is image upload enabled */\n imageUploadEnabled?: boolean;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport enum PaymentComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n CHECKBOX_GROUP = 'CHECKBOX_GROUP',\n DONATION_INPUT = 'DONATION_INPUT',\n PAYMENT_INPUT = 'PAYMENT_INPUT',\n FIXED_PAYMENT = 'FIXED_PAYMENT',\n}\n\n/** @enumType */\nexport type PaymentComponentTypeWithLiterals =\n | PaymentComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'CHECKBOX_GROUP'\n | 'DONATION_INPUT'\n | 'PAYMENT_INPUT'\n | 'FIXED_PAYMENT';\n\nexport interface PaymentType {\n /**\n * Field mapped to products.\n * @minSize 1\n * @maxSize 100\n */\n products?: Product[];\n /**\n * Minimum amount of different products.\n * @max 100\n */\n minItems?: number | null;\n /**\n * Maximum amount of different products.\n * @max 100\n */\n maxItems?: number | null;\n}\n\nexport enum ProductType {\n /** Unknown product type. */\n UNKNOWN = 'UNKNOWN',\n /** Shippable (physical) product. */\n SHIPPABLE = 'SHIPPABLE',\n /** Digital product. */\n DIGITAL = 'DIGITAL',\n}\n\n/** @enumType */\nexport type ProductTypeWithLiterals =\n | ProductType\n | 'UNKNOWN'\n | 'SHIPPABLE'\n | 'DIGITAL';\n\nexport enum PriceType {\n /** Unknown price type. */\n UNKNOWN = 'UNKNOWN',\n /** Fixed price. */\n FIXED_PRICE = 'FIXED_PRICE',\n /** Dynamic price from price range. */\n DYNAMIC_PRICE = 'DYNAMIC_PRICE',\n}\n\n/** @enumType */\nexport type PriceTypeWithLiterals =\n | PriceType\n | 'UNKNOWN'\n | 'FIXED_PRICE'\n | 'DYNAMIC_PRICE';\n\nexport interface QuantityLimit {\n /**\n * Minimum quantity.\n * @min 1\n * @max 100000\n */\n minimum?: number | null;\n /**\n * Maximum quantity.\n * @min 1\n * @max 100000\n */\n maximum?: number | null;\n}\n\nexport interface FixedPriceOptions {\n /**\n * Fixed price monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99).\n * @decimalValue options { gte:0.00, maxScale:2 }\n */\n price?: string;\n}\n\nexport interface DynamicPriceOptions {\n /**\n * Minimal price monetary amount.\n * @decimalValue options { gte:0.00, maxScale:2 }\n */\n minPrice?: string;\n /**\n * Maximal price monetary amount.\n * @decimalValue options { gte:0.00, maxScale:2 }\n */\n maxPrice?: string | null;\n}\n\nexport interface Product extends ProductPriceOptionsOneOf {\n /** Fixed price options. */\n fixedPriceOptions?: FixedPriceOptions;\n /** Dynamic price options. */\n dynamicPriceOptions?: DynamicPriceOptions;\n /**\n * Product ID.\n * @format GUID\n * @readonly\n */\n _id?: string;\n /** Product type. */\n productType?: ProductTypeWithLiterals;\n /** Price type. */\n priceType?: PriceTypeWithLiterals;\n /** Quantity limit. */\n quantityLimit?: QuantityLimit;\n}\n\n/** @oneof */\nexport interface ProductPriceOptionsOneOf {\n /** Fixed price options. */\n fixedPriceOptions?: FixedPriceOptions;\n /** Dynamic price options. */\n dynamicPriceOptions?: DynamicPriceOptions;\n}\n\nexport interface ProductCheckboxGroup {\n /**\n * Label of the field.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. */\n description?: RichContent;\n /**\n * List of options to select from.\n * @maxSize 400\n */\n options?: ProductCheckboxGroupOption[];\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Defines how an image should be resized to fit within its option.\n * Default: COVER\n */\n imageFit?: ImageFitWithLiterals;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface ProductCheckboxGroupOption {\n /**\n * Selectable option label.\n * @maxLength 400\n */\n label?: string | null;\n /** Selectable option value, which is saved to DB. Corresponds to product id, found in field's products list. */\n value?: any;\n /**\n * Option id. Used as binding for translations.\n * @format GUID\n * @immutable\n */\n _id?: string;\n /** Media item. Media, associated with option, like image. */\n media?: MediaItem;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n}\n\nexport interface DonationInput {\n /**\n * Label of the field.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. */\n description?: RichContent;\n /**\n * List of options to select from.\n * @maxSize 400\n */\n options?: DonationInputOption[];\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n /**\n * Specifies the number of columns used to display the selections within the component.\n * Default: ONE\n */\n numberOfColumns?: NumberOfColumnsWithLiterals;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface DonationInputOption {\n /**\n * Selectable option value, which is saved to DB. Corresponds to product id, found in field's products list.\n * @format GUID\n */\n value?: string;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n}\n\nexport interface PaymentInput {\n /**\n * Label of the field.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. */\n description?: RichContent;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Placeholder of custom option input\n * @maxLength 100\n */\n placeholder?: string | null;\n /** Default value for the payment input */\n default?: number | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface FixedPayment {\n /**\n * Label of the field.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. */\n description?: RichContent;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport enum AddressComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n MULTILINE_ADDRESS = 'MULTILINE_ADDRESS',\n}\n\n/** @enumType */\nexport type AddressComponentTypeWithLiterals =\n | AddressComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'MULTILINE_ADDRESS';\n\nexport interface MultilineAddressValidation {\n /**\n * Allowed countries. No countries treated as all.\n * @format COUNTRY\n * @maxSize 200\n */\n allowedCountries?: string[];\n /** Fields overrides. */\n fields?: FieldsOverrides;\n}\n\nexport interface FieldOverrides {\n /** Whether the field is required. */\n required?: boolean;\n}\n\nexport interface FieldsOverrides {\n /** Subdivision. */\n subdivision?: FieldOverrides;\n /** City. */\n city?: FieldOverrides;\n /** Postal code. */\n postalCode?: FieldOverrides;\n /** Street name. */\n streetName?: FieldOverrides;\n /** Street number. */\n streetNumber?: FieldOverrides;\n /** Address line. */\n addressLine?: FieldOverrides;\n /** Address line 2. */\n addressLine2?: FieldOverrides;\n /** Country. */\n country?: FieldOverrides;\n}\n\nexport interface MultilineAddress {\n /**\n * Label of the field.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. */\n description?: RichContent;\n /** Show country flags. */\n showCountryFlags?: boolean;\n /** Default country configuration. */\n defaultCountryConfig?: DefaultCountryConfig;\n /** Fields settings. */\n fieldSettings?: FieldsSettings;\n /** Autocomplete enabled for address line field. */\n autocompleteEnabled?: boolean;\n /**\n * Flag identifying whether to show or hide the address labels.\n * Default: true\n */\n showAddressLabels?: boolean | null;\n /**\n * Flag identifying whether to show or hide the label.\n * Default: true\n */\n showLabel?: boolean | null;\n}\n\nexport enum DefaultCountryConfigType {\n /** Unknown default country config type. */\n UNKNOWN_DEFAULT_COUNTRY = 'UNKNOWN_DEFAULT_COUNTRY',\n /** Country is determined by customer's IP address. */\n BY_IP = 'BY_IP',\n /** Pre-selected default country. */\n COUNTRY = 'COUNTRY',\n}\n\n/** @enumType */\nexport type DefaultCountryConfigTypeWithLiterals =\n | DefaultCountryConfigType\n | 'UNKNOWN_DEFAULT_COUNTRY'\n | 'BY_IP'\n | 'COUNTRY';\n\nexport interface AddressLine2 {\n /** Show address line 2 field. */\n show?: boolean;\n}\n\nexport interface DefaultCountryConfig extends DefaultCountryConfigOptionsOneOf {\n /**\n * Country.\n * @format COUNTRY\n */\n countryOptions?: string;\n /** Default country type. */\n type?: DefaultCountryConfigTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DefaultCountryConfigOptionsOneOf {\n /**\n * Country.\n * @format COUNTRY\n */\n countryOptions?: string;\n}\n\nexport interface FieldsSettings {\n /** Address line 2. */\n addressLine2?: AddressLine2;\n}\n\nexport enum SchedulingComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n APPOINTMENT = 'APPOINTMENT',\n}\n\n/** @enumType */\nexport type SchedulingComponentTypeWithLiterals =\n | SchedulingComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'APPOINTMENT';\n\nexport interface Appointment extends AppointmentFormatInfoOneOf {\n /** In person options for the appointment */\n inPersonOptions?: InPersonOptions;\n /** Online video conference options for the appointment */\n videoConferenceOptions?: VideoConferenceOptions;\n /** Phone options for the appointment */\n phoneOptions?: PhoneOptions;\n /**\n * Label of the field\n * @maxLength 255\n */\n label?: string | null;\n /**\n * Name of the appointment\n * @minLength 1\n * @maxLength 400\n */\n name?: string | null;\n /**\n * Duration of the appointment in minutes\n * @min 1\n * @max 44639\n */\n durationInMinutes?: number | null;\n /** Indicates whether manual approval is required for the appointment */\n manualApprovalRequired?: boolean | null;\n /**\n * ID of the staff members providing the appointment\n * @maxSize 220\n * @format GUID\n */\n staffIds?: string[] | null;\n /** The format of the appointment */\n format?: AppointmentFormatWithLiterals;\n /** Description of the field */\n description?: RichContent;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n}\n\n/** @oneof */\nexport interface AppointmentFormatInfoOneOf {\n /** In person options for the appointment */\n inPersonOptions?: InPersonOptions;\n /** Online video conference options for the appointment */\n videoConferenceOptions?: VideoConferenceOptions;\n /** Phone options for the appointment */\n phoneOptions?: PhoneOptions;\n}\n\nexport interface Location extends LocationLocationInfoOneOf {\n /**\n * Custom address details\n * @maxLength 512\n */\n customAddress?: string | null;\n /**\n * ID of a business location\n * @format GUID\n */\n businessLocationId?: string | null;\n}\n\n/** @oneof */\nexport interface LocationLocationInfoOneOf {\n /**\n * Custom address details\n * @maxLength 512\n */\n customAddress?: string | null;\n /**\n * ID of a business location\n * @format GUID\n */\n businessLocationId?: string | null;\n}\n\nexport enum AppointmentFormat {\n UNKNOWN_FORMAT_TYPE = 'UNKNOWN_FORMAT_TYPE',\n IN_PERSON = 'IN_PERSON',\n VIDEO_CONFERENCE = 'VIDEO_CONFERENCE',\n PHONE = 'PHONE',\n}\n\n/** @enumType */\nexport type AppointmentFormatWithLiterals =\n | AppointmentFormat\n | 'UNKNOWN_FORMAT_TYPE'\n | 'IN_PERSON'\n | 'VIDEO_CONFERENCE'\n | 'PHONE';\n\nexport interface InPersonOptions {\n /**\n * The locations details\n * @minSize 1\n * @maxSize 1\n */\n locations?: Location[];\n}\n\nexport interface VideoConferenceOptions {\n /**\n * Description or instructions for the online video conference\n * @maxLength 512\n */\n description?: string | null;\n}\n\nexport interface PhoneOptions {\n /**\n * Description or instructions for the phone appointment\n * @maxLength 512\n */\n description?: string | null;\n}\n\nexport enum InputType {\n UNKNOWN_INPUT_TYPE = 'UNKNOWN_INPUT_TYPE',\n STRING = 'STRING',\n NUMBER = 'NUMBER',\n BOOLEAN = 'BOOLEAN',\n ARRAY = 'ARRAY',\n OBJECT = 'OBJECT',\n WIX_FILE = 'WIX_FILE',\n PAYMENT = 'PAYMENT',\n SCHEDULING = 'SCHEDULING',\n ADDRESS = 'ADDRESS',\n}\n\n/** @enumType */\nexport type InputTypeWithLiterals =\n | InputType\n | 'UNKNOWN_INPUT_TYPE'\n | 'STRING'\n | 'NUMBER'\n | 'BOOLEAN'\n | 'ARRAY'\n | 'OBJECT'\n | 'WIX_FILE'\n | 'PAYMENT'\n | 'SCHEDULING'\n | 'ADDRESS';\n\nexport interface FormFieldContactInfo\n extends FormFieldContactInfoAdditionalInfoOneOf {\n /** Email info. */\n emailInfo?: EmailInfo;\n /** Phone info. */\n phoneInfo?: PhoneInfo;\n /** Address info. */\n addressInfo?: AddressInfo;\n /** Custom field info. */\n customFieldInfo?: CustomFieldInfo;\n /** Subscription info */\n subscriptionInfo?: SubscriptionInfo;\n /** Field mapped to contacts. */\n contactField?: ContactFieldWithLiterals;\n}\n\n/** @oneof */\nexport interface FormFieldContactInfoAdditionalInfoOneOf {\n /** Email info. */\n emailInfo?: EmailInfo;\n /** Phone info. */\n phoneInfo?: PhoneInfo;\n /** Address info. */\n addressInfo?: AddressInfo;\n /** Custom field info. */\n customFieldInfo?: CustomFieldInfo;\n /** Subscription info */\n subscriptionInfo?: SubscriptionInfo;\n}\n\nexport enum EmailInfoTag {\n UNTAGGED = 'UNTAGGED',\n MAIN = 'MAIN',\n}\n\n/** @enumType */\nexport type EmailInfoTagWithLiterals = EmailInfoTag | 'UNTAGGED' | 'MAIN';\n\nexport enum PhoneInfoTag {\n UNTAGGED = 'UNTAGGED',\n MAIN = 'MAIN',\n}\n\n/** @enumType */\nexport type PhoneInfoTagWithLiterals = PhoneInfoTag | 'UNTAGGED' | 'MAIN';\n\nexport enum AddressInfoTag {\n UNTAGGED = 'UNTAGGED',\n HOME = 'HOME',\n}\n\n/** @enumType */\nexport type AddressInfoTagWithLiterals = AddressInfoTag | 'UNTAGGED' | 'HOME';\n\nexport enum ConfirmationLevel {\n UNKNOWN_CONFIRMATION_LEVEL = 'UNKNOWN_CONFIRMATION_LEVEL',\n SINGLE_CONFIRMATION = 'SINGLE_CONFIRMATION',\n DOUBLE_CONFIRMATION = 'DOUBLE_CONFIRMATION',\n}\n\n/** @enumType */\nexport type ConfirmationLevelWithLiterals =\n | ConfirmationLevel\n | 'UNKNOWN_CONFIRMATION_LEVEL'\n | 'SINGLE_CONFIRMATION'\n | 'DOUBLE_CONFIRMATION';\n\nexport enum ContactField {\n UNKNOWN_CONTACT_FIELD = 'UNKNOWN_CONTACT_FIELD',\n FIRST_NAME = 'FIRST_NAME',\n LAST_NAME = 'LAST_NAME',\n COMPANY = 'COMPANY',\n POSITION = 'POSITION',\n EMAIL = 'EMAIL',\n PHONE = 'PHONE',\n ADDRESS = 'ADDRESS',\n BIRTHDATE = 'BIRTHDATE',\n CUSTOM_FIELD = 'CUSTOM_FIELD',\n SUBSCRIPTION = 'SUBSCRIPTION',\n VAT_ID = 'VAT_ID',\n}\n\n/** @enumType */\nexport type ContactFieldWithLiterals =\n | ContactField\n | 'UNKNOWN_CONTACT_FIELD'\n | 'FIRST_NAME'\n | 'LAST_NAME'\n | 'COMPANY'\n | 'POSITION'\n | 'EMAIL'\n | 'PHONE'\n | 'ADDRESS'\n | 'BIRTHDATE'\n | 'CUSTOM_FIELD'\n | 'SUBSCRIPTION'\n | 'VAT_ID';\n\nexport interface EmailInfo {\n /** Email tag. */\n tag?: EmailInfoTagWithLiterals;\n}\n\nexport interface PhoneInfo {\n /** Phone tag. */\n tag?: PhoneInfoTagWithLiterals;\n}\n\nexport interface AddressInfo {\n /** Address tag. */\n tag?: AddressInfoTagWithLiterals;\n}\n\nexport interface CustomFieldInfo {\n /**\n * Custom field key.\n * @minLength 1\n * @maxLength 500\n */\n key?: string;\n}\n\nexport interface SubscriptionInfo {\n /**\n * Subscription consent opt in level, either single or double confirmation.\n * Default: SINGLE_CONFIRMATION\n */\n confirmationLevel?: ConfirmationLevelWithLiterals;\n}\n\nexport interface _String extends _StringComponentTypeOptionsOneOf {\n /** Text input field */\n textInputOptions?: TextInput;\n /** Selection field as radio group */\n radioGroupOptions?: RadioGroup;\n /** Selection field as drop down */\n dropdownOptions?: Dropdown;\n /** Field for selecting date and/or time */\n dateTimeOptions?: DateTimeInput;\n /** Phone input field */\n phoneInputOptions?: PhoneInput;\n /** Dropdown based component for selecting date */\n dateInputOptions?: DateInput;\n /** Field for selecting time */\n timeInputOptions?: TimeInput;\n /** Calendar type component for selecting date */\n datePickerOptions?: DatePicker;\n /** Dropdown for selecting services */\n servicesDropdownOptions?: ServicesDropdown;\n /** Password component settings. */\n passwordOptions?: Password;\n /** Validation of field output value. */\n validation?: StringType;\n /**\n * Component type of the string input field\n * @readonly\n */\n componentType?: StringComponentTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface _StringComponentTypeOptionsOneOf {\n /** Text input field */\n textInputOptions?: TextInput;\n /** Selection field as radio group */\n radioGroupOptions?: RadioGroup;\n /** Selection field as drop down */\n dropdownOptions?: Dropdown;\n /** Field for selecting date and/or time */\n dateTimeOptions?: DateTimeInput;\n /** Phone input field */\n phoneInputOptions?: PhoneInput;\n /** Dropdown based component for selecting date */\n dateInputOptions?: DateInput;\n /** Field for selecting time */\n timeInputOptions?: TimeInput;\n /** Calendar type component for selecting date */\n datePickerOptions?: DatePicker;\n /** Dropdown for selecting services */\n servicesDropdownOptions?: ServicesDropdown;\n /** Password component settings. */\n passwordOptions?: Password;\n}\n\nexport interface InputField_Number\n extends InputField_NumberComponentTypeOptionsOneOf {\n /** Number value input field */\n numberInputOptions?: NumberInput;\n /** Rating value input field */\n ratingInputOptions?: RatingInput;\n /** Validation of field output value. */\n validation?: NumberType;\n /**\n * Component type of the number input field\n * @readonly\n */\n componentType?: NumberComponentTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface InputField_NumberComponentTypeOptionsOneOf {\n /** Number value input field */\n numberInputOptions?: NumberInput;\n /** Rating value input field */\n ratingInputOptions?: RatingInput;\n}\n\nexport interface _Boolean extends _BooleanComponentTypeOptionsOneOf {\n /** Checkbox input field */\n checkboxOptions?: Checkbox;\n /** Validation of field output value. */\n validation?: BooleanType;\n /**\n * Component type of the boolean input field\n * @readonly\n */\n componentType?: BooleanComponentTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface _BooleanComponentTypeOptionsOneOf {\n /** Checkbox input field */\n checkboxOptions?: Checkbox;\n}\n\nexport interface _Array extends _ArrayComponentTypeOptionsOneOf {\n /** Checkbox group input field */\n checkboxGroupOptions?: CheckboxGroup;\n /** Tags input field */\n tagsOptions?: Tags;\n /** Validation of array type. */\n validation?: ArrayType;\n /**\n * Component type of the array input field\n * @readonly\n */\n componentType?: ArrayComponentTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface _ArrayComponentTypeOptionsOneOf {\n /** Checkbox group input field */\n checkboxGroupOptions?: CheckboxGroup;\n /** Tags input field */\n tagsOptions?: Tags;\n}\n\nexport interface _Object {\n /** Validation of object type. */\n validation?: ObjectType;\n}\n\nexport interface WixFile extends WixFileComponentTypeOptionsOneOf {\n /** File upload input field */\n fileUploadOptions?: FileUpload;\n /** Signature input field */\n signatureOptions?: Signature;\n /**\n * Component type of the array input field\n * @readonly\n */\n componentType?: WixFileComponentTypeWithLiterals;\n /** Validation of field type. */\n validation?: FileType;\n}\n\n/** @oneof */\nexport interface WixFileComponentTypeOptionsOneOf {\n /** File upload input field */\n fileUploadOptions?: FileUpload;\n /** Signature input field */\n signatureOptions?: Signature;\n}\n\nexport interface Payment extends PaymentComponentTypeOptionsOneOf {\n /** Checkbox group input field. */\n checkboxGroupOptions?: ProductCheckboxGroup;\n /** Donation input field. */\n donationInputOptions?: DonationInput;\n /** Payment input field. */\n paymentInputOptions?: PaymentInput;\n /** Fixed payment field. */\n fixedPaymentOptions?: FixedPayment;\n /**\n * Component type of the payment input field.\n * @readonly\n */\n componentType?: PaymentComponentTypeWithLiterals;\n /** Validation of payment type. */\n validation?: PaymentType;\n}\n\n/** @oneof */\nexport interface PaymentComponentTypeOptionsOneOf {\n /** Checkbox group input field. */\n checkboxGroupOptions?: ProductCheckboxGroup;\n /** Donation input field. */\n donationInputOptions?: DonationInput;\n /** Payment input field. */\n paymentInputOptions?: PaymentInput;\n /** Fixed payment field. */\n fixedPaymentOptions?: FixedPayment;\n}\n\nexport interface Address extends AddressComponentTypeOptionsOneOf {\n /** Multiline address input field. */\n multilineAddressOptions?: MultilineAddress;\n /**\n * Component type of the multiline address field.\n * @readonly\n */\n componentType?: AddressComponentTypeWithLiterals;\n /** Validation of multiline address field output value. */\n validation?: MultilineAddressValidation;\n}\n\n/** @oneof */\nexport interface AddressComponentTypeOptionsOneOf {\n /** Multiline address input field. */\n multilineAddressOptions?: MultilineAddress;\n}\n\nexport interface Scheduling extends SchedulingComponentTypeOptionsOneOf {\n /** Appointment input field */\n appointmentOptions?: Appointment;\n /**\n * Component type of the scheduling input field\n * @readonly\n */\n componentType?: SchedulingComponentTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SchedulingComponentTypeOptionsOneOf {\n /** Appointment input field */\n appointmentOptions?: Appointment;\n}\n\nexport interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {\n /** Component displaying rich content */\n richContentOptions?: RichContentOptions;\n /** Page navigation component resolving as navigation or submit buttons */\n pageNavigationOptions?: PageNavigationOptions;\n /** Type of the display field */\n displayFieldType?: DisplayFieldTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DisplayFieldDisplayFieldTypeOptionsOneOf {\n /** Component displaying rich content */\n richContentOptions?: RichContentOptions;\n /** Page navigation component resolving as navigation or submit buttons */\n pageNavigationOptions?: PageNavigationOptions;\n}\n\nexport enum DisplayFieldType {\n UNKNOWN_FIELD_TYPE = 'UNKNOWN_FIELD_TYPE',\n RICH_CONTENT = 'RICH_CONTENT',\n PAGE_NAVIGATION = 'PAGE_NAVIGATION',\n LOGIN_BAR = 'LOGIN_BAR',\n}\n\n/** @enumType */\nexport type DisplayFieldTypeWithLiterals =\n | DisplayFieldType\n | 'UNKNOWN_FIELD_TYPE'\n | 'RICH_CONTENT'\n | 'PAGE_NAVIGATION'\n | 'LOGIN_BAR';\n\nexport interface RichContentOptions {\n /** Content of the header */\n richContent?: RichContent;\n /** Number of paragraphs visible. Other part is hidden under expandable section. If not provided all text visible. */\n maxShownParagraphs?: number | null;\n}\n\nexport interface PageNavigationOptions {\n /**\n * When button is not on last page it behaves as switch between pages page, text of label to go to next page.\n * @maxLength 65\n */\n nextPageText?: string | null;\n /**\n * When button is not on last page it behaves as switch between pages page, text of label to go to previous page.\n * @maxLength 65\n */\n previousPageText?: string | null;\n /**\n * Text on the button when button is submitting a form\n * @maxLength 65\n */\n submitText?: string | null;\n}\n\nexport interface Step {\n /**\n * Step ID.\n * @format GUID\n * @immutable\n */\n _id?: string;\n /**\n * Name of the step.\n * @maxLength 200\n */\n name?: string | null;\n /** Is step hidden */\n hidden?: boolean;\n /** Form step properties */\n layout?: FormLayout;\n}\n\nexport interface FormLayout {\n /** Layout for large break point. */\n large?: BreakPoint;\n /** Layout for medium break point. */\n medium?: BreakPoint;\n /** Layout for small break point. */\n small?: BreakPoint;\n}\n\nexport interface BreakPoint {\n /**\n * Description of layouts for items.\n * @maxSize 500\n */\n items?: ItemLayout[];\n /** Amount of columns of layout grid. */\n columns?: number | null;\n /** Row height of layout grid. */\n rowHeight?: number | null;\n /** Description of elements margins. */\n margin?: Margin;\n /** Description of elements paddings. */\n padding?: Margin;\n /**\n * Sections of the layout, which allow manage fields\n * @maxSize 100\n */\n sections?: BreakPointSection[];\n}\n\nexport interface ItemLayout extends ItemLayoutItemOneOf {\n /**\n * Form field reference id.\n * @format GUID\n */\n fieldId?: string;\n /** Group info, defining that this item is a group of multiple fields */\n group?: Group;\n /** Horizontal coordinate in the grid. */\n row?: number | null;\n /** Vertical coordinate in the grid. */\n column?: number | null;\n /** Height. */\n width?: number | null;\n /** Width. */\n height?: number | null;\n}\n\n/** @oneof */\nexport interface ItemLayoutItemOneOf {\n /**\n * Form field reference id.\n * @format GUID\n */\n fieldId?: string;\n /** Group info, defining that this item is a group of multiple fields */\n group?: Group;\n}\n\nexport interface Group {\n /**\n * Field group reference id.\n * @format GUID\n */\n groupId?: string;\n /**\n * Description of layouts for items.\n * @minSize 1\n * @maxSize 500\n */\n items?: ItemLayout[];\n}\n\nexport interface Margin {\n /** Horizontal value. */\n horizontal?: number | null;\n /** Vertical value. */\n vertical?: number | null;\n}\n\nexport interface BreakPointSection {\n /**\n * Id of the section\n * @format GUID\n * @minLength 1\n */\n _id?: string;\n /** Horizontal coordinate in the grid. */\n row?: number | null;\n /**\n * A list of field identifiers that are permitted to be placed within a section.\n * The section will only accept fields with IDs specified in this list.\n * If the section encounters the $new key within the list,\n * it allows the inclusion of fields not explicitly listed,\n * enabling dynamic addition of new fields.\n * @maxSize 100\n * @maxLength 100\n */\n allowedFieldIds?: string[];\n}\n\nexport interface V2Rule {\n /**\n * Id of the rule\n * @format GUID\n * @immutable\n */\n _id?: string;\n /** Rule on which item properties or layouts will be changed. */\n expression?: ConditionNode;\n /**\n * Form items with defined properties that will be\n * changed when given condition is resolved to true.\n * @maxSize 500\n */\n overrides?: FormOverride[];\n /**\n * Name of the rule\n * @maxLength 200\n */\n name?: string | null;\n}\n\n/** Enum for different types of changeable properties. */\nexport enum ChangeableProperty {\n /** Unknown property type. */\n UNKNOWN = 'UNKNOWN',\n /** Required property type. */\n REQUIRED = 'REQUIRED',\n /** Hidden property type. */\n HIDDEN = 'HIDDEN',\n /** Allowed values property type. */\n ALLOWED_VALUES = 'ALLOWED_VALUES',\n}\n\n/** @enumType */\nexport type ChangeablePropertyWithLiterals =\n | ChangeableProperty\n | 'UNKNOWN'\n | 'REQUIRED'\n | 'HIDDEN'\n | 'ALLOWED_VALUES';\n\nexport interface RequiredOptions {\n /** Value of required property */\n value?: boolean;\n}\n\nexport interface HiddenOptions {\n /** Value of hidden property */\n value?: boolean;\n}\n\nexport interface AllowedValuesOptions {\n /**\n * Allowed values\n * @maxSize 300\n * @maxLength 200\n */\n value?: string[];\n}\n\nexport enum OverrideEntityType {\n UNKNOWN = 'UNKNOWN',\n FIELD = 'FIELD',\n}\n\n/** @enumType */\nexport type OverrideEntityTypeWithLiterals =\n | OverrideEntityType\n | 'UNKNOWN'\n | 'FIELD';\n\nexport interface FormOverrideFieldOverride\n extends FormOverrideFieldOverridePropertyTypeOptionsOneOf {\n /** Required property overrides */\n requiredOptions?: RequiredOptions;\n /** Hidden property overrides */\n hiddenOptions?: HiddenOptions;\n /** Allowed values property overrides */\n allowedValuesOptions?: AllowedValuesOptions;\n /**\n * Overridden entity id\n * @immutable\n * @format GUID\n */\n fieldId?: string;\n /** Form entity properties path with new value, that will be changed on condition. */\n propertyType?: ChangeablePropertyWithLiterals;\n}\n\n/** @oneof */\nexport interface FormOverrideFieldOverridePropertyTypeOptionsOneOf {\n /** Required property overrides */\n requiredOptions?: RequiredOptions;\n /** Hidden property overrides */\n hiddenOptions?: HiddenOptions;\n /** Allowed values property overrides */\n allowedValuesOptions?: AllowedValuesOptions;\n}\n\nexport interface ConditionNode extends ConditionNodeNodeOneOf {\n /** A compound condition that requires all conditions to be true. */\n and?: AndCondition;\n /** A compound condition that requires at least one condition to be true. */\n or?: OrCondition;\n /** A single condition in the rule. */\n condition?: V2Condition;\n}\n\n/** @oneof */\nexport interface ConditionNodeNodeOneOf {\n /** A compound condition that requires all conditions to be true. */\n and?: AndCondition;\n /** A compound condition that requires at least one condition to be true. */\n or?: OrCondition;\n /** A single condition in the rule. */\n condition?: V2Condition;\n}\n\nexport interface AndCondition {\n /**\n * The list of conditions that must all be true.\n * @minSize 1\n * @maxSize 100\n */\n conditions?: ConditionNode[];\n}\n\nexport interface OrCondition {\n /**\n * The list of conditions where at least one must be true.\n * @minSize 1\n * @maxSize 100\n */\n conditions?: ConditionNode[];\n}\n\nexport interface V2Condition {\n /**\n * The property name to be evaluated, supports dot notation for nested properties.\n * @maxLength 100\n */\n fact?: string;\n /** The operator to use for comparison. */\n operator?: OperatorWithLiterals;\n /**\n * The value to compare against.\n * @maxLength 500\n */\n value?: string;\n}\n\nexport enum Operator {\n UNKNOWN = 'UNKNOWN',\n EQUAL = 'EQUAL',\n NOT_EQUAL = 'NOT_EQUAL',\n EMPTY = 'EMPTY',\n NOT_EMPTY = 'NOT_EMPTY',\n CONTAINS = 'CONTAINS',\n NOT_CONTAINS = 'NOT_CONTAINS',\n LESS_THAN = 'LESS_THAN',\n LESS_THAN_OR_EQUALS = 'LESS_THAN_OR_EQUALS',\n GREATER_THAN = 'GREATER_THAN',\n GREATER_THAN_OR_EQUALS = 'GREATER_THAN_OR_EQUALS',\n BEFORE = 'BEFORE',\n BEFORE_OR_EQUAL = 'BEFORE_OR_EQUAL',\n AFTER = 'AFTER',\n AFTER_OR_EQUAL = 'AFTER_OR_EQUAL',\n BETWEEN = 'BETWEEN',\n ANY = 'ANY',\n ARRAY_EQUAL = 'ARRAY_EQUAL',\n ARRAY_NOT_EQUAL = 'ARRAY_NOT_EQUAL',\n CHECKED = 'CHECKED',\n NOT_CHECKED = 'NOT_CHECKED',\n IN = 'IN',\n NOT_IN = 'NOT_IN',\n IS_DATE_OLDER_THAN = 'IS_DATE_OLDER_THAN',\n IS_DATE_OLDER_THAN_OR_EQUAL = 'IS_DATE_OLDER_THAN_OR_EQUAL',\n IS_DATE_NEWER_THAN = 'IS_DATE_NEWER_THAN',\n IS_DATE_NEWER_THAN_OR_EQUAL = 'IS_DATE_NEWER_THAN_OR_EQUAL',\n}\n\n/** @enumType */\nexport type OperatorWithLiterals =\n | Operator\n | 'UNKNOWN'\n | 'EQUAL'\n | 'NOT_EQUAL'\n | 'EMPTY'\n | 'NOT_EMPTY'\n | 'CONTAINS'\n | 'NOT_CONTAINS'\n | 'LESS_THAN'\n | 'LESS_THAN_OR_EQUALS'\n | 'GREATER_THAN'\n | 'GREATER_THAN_OR_EQUALS'\n | 'BEFORE'\n | 'BEFORE_OR_EQUAL'\n | 'AFTER'\n | 'AFTER_OR_EQUAL'\n | 'BETWEEN'\n | 'ANY'\n | 'ARRAY_EQUAL'\n | 'ARRAY_NOT_EQUAL'\n | 'CHECKED'\n | 'NOT_CHECKED'\n | 'IN'\n | 'NOT_IN'\n | 'IS_DATE_OLDER_THAN'\n | 'IS_DATE_OLDER_THAN_OR_EQUAL'\n | 'IS_DATE_NEWER_THAN'\n | 'IS_DATE_NEWER_THAN_OR_EQUAL';\n\nexport interface FormOverride extends FormOverrideEntityTypeOptionsOneOf {\n /** Field override properties. */\n fieldOptions?: FormOverrideFieldOverride;\n /**\n * Override entity type.\n * @immutable\n */\n entityType?: OverrideEntityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface FormOverrideEntityTypeOptionsOneOf {\n /** Field override properties. */\n fieldOptions?: FormOverrideFieldOverride;\n}\n\nexport interface SubmitSettings\n extends SubmitSettingsSubmitSuccessActionOptionsOneOf {\n /** Options for showing a thank you message after submission. */\n thankYouMessageOptions?: ThankYouMessageOptions;\n /** Options for redirecting to a URL after submission. */\n redirectOptions?: RedirectOptions;\n /** Action that is triggered after a successful form submission. */\n submitSuccessAction?: SubmitSuccessActionWithLiterals;\n}\n\n/** @oneof */\nexport interface SubmitSettingsSubmitSuccessActionOptionsOneOf {\n /** Options for showing a thank you message after submission. */\n thankYouMessageOptions?: ThankYouMessageOptions;\n /** Options for redirecting to a URL after submission. */\n redirectOptions?: RedirectOptions;\n}\n\nexport enum Target {\n /** Unknown target. */\n UNKNOWN_TARGET = 'UNKNOWN_TARGET',\n /** Open in the same browser tab. */\n SELF = 'SELF',\n /** Open in a new browser tab. */\n BLANK = 'BLANK',\n}\n\n/** @enumType */\nexport type TargetWithLiterals = Target | 'UNKNOWN_TARGET' | 'SELF' | 'BLANK';\n\nexport enum SubmitSuccessAction {\n /** Unknown submit success action. */\n UNKNOWN_SUBMIT_SUCCESS_ACTION = 'UNKNOWN_SUBMIT_SUCCESS_ACTION',\n /** No action will be taken after submission. */\n NO_ACTION = 'NO_ACTION',\n /** A thank you message will be shown after submission. */\n THANK_YOU_MESSAGE = 'THANK_YOU_MESSAGE',\n /** The user will be redirected to a URL after submission. */\n REDIRECT = 'REDIRECT',\n}\n\n/** @enumType */\nexport type SubmitSuccessActionWithLiterals =\n | SubmitSuccessAction\n | 'UNKNOWN_SUBMIT_SUCCESS_ACTION'\n | 'NO_ACTION'\n | 'THANK_YOU_MESSAGE'\n | 'REDIRECT';\n\nexport interface ThankYouMessageOptions {\n /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */\n durationInSeconds?: number | null;\n /** The message shown after form submission. */\n richContent?: RichContent;\n}\n\nexport interface RedirectOptions {\n /**\n * The URL to which the user should be redirected after a successful form submission.\n * @maxLength 2000\n */\n redirectUrl?: string | null;\n /** How the URL should be opened. */\n target?: TargetWithLiterals;\n}\n\nexport enum TemplateType {\n UNKNOWN = 'UNKNOWN',\n /** a template, which can be extended by a site specific form with custom properties */\n EXTENDABLE = 'EXTENDABLE',\n /** a template, from which a demo form is created */\n DEMO = 'DEMO',\n /**\n * a form input, having more than one field.\n * E.g. address (country, state, street, postal code), or phone number (country code, number)\n */\n FORM_INPUT = 'FORM_INPUT',\n}\n\n/** @enumType */\nexport type TemplateTypeWithLiterals =\n | TemplateType\n | 'UNKNOWN'\n | 'EXTENDABLE'\n | 'DEMO'\n | 'FORM_INPUT';\n\nexport interface ExtensionDetails {\n /** Allow user to add/remove custom field, not present in template */\n addCustomFields?: AddCustomFields;\n /** Allow user to override properties of already existing template fields */\n overrideTemplateFields?: OverrideTemplateFields;\n /** Allow user to delete specific fields */\n deleteTemplateFields?: DeleteTemplateFields;\n}\n\nexport enum CustomFieldsType {\n /** Allow user to add/remove any custom field, not present in template */\n ANY = 'ANY',\n}\n\n/** @enumType */\nexport type CustomFieldsTypeWithLiterals = CustomFieldsType | 'ANY';\n\nexport enum EditableProperties {\n UNKNOWN = 'UNKNOWN',\n /** Change property responsible for field requirement */\n REQUIRED = 'REQUIRED',\n /** Change property responsible for field visibility */\n HIDDEN = 'HIDDEN',\n /** Change property of field label */\n LABEL = 'LABEL',\n /** Change property of field placeholder */\n PLACEHOLDER = 'PLACEHOLDER',\n /** Change property of field description */\n DESCRIPTION = 'DESCRIPTION',\n /**\n * Change property of validation specifying max/min boundaries for input value\n * maxLength/minLength for string, max/min for number.\n */\n INPUT_VALUE_LIMITS = 'INPUT_VALUE_LIMITS',\n /** Change property responsible for field default value */\n DEFAULT_VALUE = 'DEFAULT_VALUE',\n}\n\n/** @enumType */\nexport type EditablePropertiesWithLiterals =\n | EditableProperties\n | 'UNKNOWN'\n | 'REQUIRED'\n | 'HIDDEN'\n | 'LABEL'\n | 'PLACEHOLDER'\n | 'DESCRIPTION'\n | 'INPUT_VALUE_LIMITS'\n | 'DEFAULT_VALUE';\n\nexport interface EditableFields {\n /**\n * List of editable properties for field\n * @maxSize 10\n */\n properties?: EditablePropertiesWithLiterals[];\n}\n\nexport interface AddCustomFields {\n /** Field types which can be added */\n fieldType?: CustomFieldsTypeWithLiterals;\n}\n\nexport interface OverrideTemplateFields {\n /** Editable properties by field id. */\n editableFields?: Record<string, EditableFields>;\n}\n\nexport interface DeleteTemplateFields {\n /**\n * List of ids, of fields which can be deleted\n * @format GUID\n * @maxSize 100\n */\n deletableFieldIds?: string[];\n}\n\nexport interface FieldGroup {\n /**\n * Id of group, on layout\n * @format GUID\n */\n _id?: string;\n /**\n * Label of group\n * @maxLength 350\n */\n label?: string | null;\n}\n\nexport interface RequiredIndicatorProperties {\n /** Required indicator. */\n requiredIndicator?: RequiredIndicatorWithLiterals;\n /** Required indicator placement. */\n requiredIndicatorPlacement?: RequiredIndicatorPlacementWithLiterals;\n}\n\nexport enum RequiredIndicator {\n /** Unknown required indicator. */\n UNKNOWN_INDICATOR = 'UNKNOWN_INDICATOR',\n /** Asterisk (*). */\n ASTERISK = 'ASTERISK',\n /** Text (default: \"Required\"). */\n TEXT = 'TEXT',\n /** None. */\n NONE = 'NONE',\n}\n\n/** @enumType */\nexport type RequiredIndicatorWithLiterals =\n | RequiredIndicator\n | 'UNKNOWN_INDICATOR'\n | 'ASTERISK'\n | 'TEXT'\n | 'NONE';\n\nexport enum RequiredIndicatorPlacement {\n /** Unknown required indicator placement. */\n UNKNOWN_PLACEMENT = 'UNKNOWN_PLACEMENT',\n /** After field title. */\n AFTER_FIELD_TITLE = 'AFTER_FIELD_TITLE',\n /** Before field title. */\n BEFORE_FIELD_TITLE = 'BEFORE_FIELD_TITLE',\n}\n\n/** @enumType */\nexport type RequiredIndicatorPlacementWithLiterals =\n | RequiredIndicatorPlacement\n | 'UNKNOWN_PLACEMENT'\n | 'AFTER_FIELD_TITLE'\n | 'BEFORE_FIELD_TITLE';\n\n/** Describes a setting group of a notification */\nexport interface NotificationContent {\n single?: SingleContent;\n grouped?: GroupedContent;\n}\n\n/** notification content. */\nexport interface SingleContent {\n /** Title. */\n title?: string | null;\n /** Text that appears in the nofication. */\n message?: string;\n /** Action that can be triggered in the notification. */\n action?: string | null;\n}\n\n/** notification content. */\nexport interface GroupedContent {\n /** Title. */\n title?: string | null;\n /** Message. */\n message?: string;\n /** Action. */\n action?: string | null;\n}\n\n/** Describes topic of a notification */\nexport interface BroadcastList {\n /** @maxSize 20 */\n params?: Param[];\n}\n\nexport interface Param {\n _id?: string;\n displayName?: string;\n}\n\nexport interface PayoutsProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n}\n\n/** Configuration for ReviewsEntityCatalogProvider */\nexport interface ReviewsEntityCatalogProviderConfig {\n /** URI where the SPI Implementer is deployed */\n uriConfig?: SpiBaseUri;\n /**\n * Namespace of catalog provider\n * @maxLength 100\n */\n namespace?: string;\n /** Flag that indicates if verified reviews are enabled */\n verifiedReviewsEnabled?: boolean;\n}\n\nexport interface VeloPublishPipelineTaskProviderConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /**\n * The Velo Task name\n * @maxSize 100\n */\n implementerTasksNames?: WixCodePublishTaskNameWithLiterals[];\n}\n\nexport enum WixCodePublishTaskName {\n /** unknown */\n UNKNOWN = 'UNKNOWN',\n /** user code bundle */\n USER_CODE_BUNDLE = 'USER_CODE_BUNDLE',\n /** exported functions analysis */\n EXPORTED_FUNCTIONS_ANALYSIS = 'EXPORTED_FUNCTIONS_ANALYSIS',\n /** imported namespaces analysis */\n IMPORTED_NAMESPACES_ANALYSIS = 'IMPORTED_NAMESPACES_ANALYSIS',\n /** page details analysis */\n PAGE_DETAILS_ANALYSIS = 'PAGE_DETAILS_ANALYSIS',\n /** user code validation */\n USER_CODE_VALIDATION = 'USER_CODE_VALIDATION',\n /** code packages dependencies registration */\n CODE_PACKAGES_REGISTRATION = 'CODE_PACKAGES_REGISTRATION',\n}\n\n/** @enumType */\nexport type WixCodePublishTaskNameWithLiterals =\n | WixCodePublishTaskName\n | 'UNKNOWN'\n | 'USER_CODE_BUNDLE'\n | 'EXPORTED_FUNCTIONS_ANALYSIS'\n | 'IMPORTED_NAMESPACES_ANALYSIS'\n | 'PAGE_DETAILS_ANALYSIS'\n | 'USER_CODE_VALIDATION'\n | 'CODE_PACKAGES_REGISTRATION';\n\nexport interface FunctionsShopPriceSpiConfig {\n /** Uri config */\n uriConfig?: SpiBaseUri;\n /**\n * function shop id\n * @format GUID\n */\n functionShopId?: string | null;\n /** Namespace */\n namespace?: Namespace;\n /**\n * Repeated namespace case\n * @maxSize 100\n */\n namespaces?: Namespace[];\n /**\n * String name\n * @maxLength 100\n */\n shopName?: string | null;\n /** Simple double */\n shopNumber?: number | null;\n}\n\nexport interface Namespace {\n /**\n * Namespace name\n * @maxLength 100\n */\n name?: string | null;\n /**\n * Additional function shop id\n * @format GUID\n */\n functionShopId?: string | null;\n}\n\n/**\n * A component that describes a Function\n * Design is highly influenced by business schema api\n */\nexport interface _Function {\n /**\n * Function method definitions\n * @maxSize 100\n */\n definitions?: FunctionDefinition[];\n /** Function configuration */\n configuration?: Configuration;\n /** Function description */\n description?: Description;\n}\n\nexport interface Input {\n /**\n * Schema definition: https://json-schema.org/draft/2020-12/schema\n * Protobuf does not support `$` variables -- cannot define the json-schema in protobuf\n */\n schema?: Record<string, any> | null;\n /** UI definition */\n ui?: Record<string, any> | null;\n /**\n * Input display description\n * @maxLength 100\n */\n displayDescription?: string | null;\n /** Builder SPI */\n builderSpi?: BuilderSpi;\n}\n\nexport interface BuilderSpi {\n /**\n * SPI url called from Function Builder\n * @maxLength 1000\n */\n baseUri?: string | null;\n /** Whether SPI supports appending Input Schema dynamically */\n dynamicSchemaFetchingEnabled?: boolean | null;\n}\n\nexport interface Output {\n /**\n * Schema definition: https://json-schema.org/draft/2020-12/schema\n * Protobuf does not support `$` variables -- cannot define the json-schema in protobuf\n */\n schema?: Record<string, any> | null;\n /** UI definition */\n ui?: Record<string, any> | null;\n /** Defined state */\n defined?: State;\n /** Empty state */\n empty?: State;\n}\n\nexport interface State {\n /**\n * State description\n * @maxLength 100\n */\n description?: string | null;\n}\n\nexport interface Spi {\n /**\n * SPI fqdn\n * @maxLength 200\n */\n fqdn?: string | null;\n /**\n * Configuration based on dev center SPI component configuration\n * Schema definition: https://json-schema.org/draft/2020-12/schema\n */\n schema?: Record<string, any> | null;\n /** UI definition */\n ui?: Record<string, any> | null;\n}\n\nexport interface CustomInitialPreset {\n /**\n * Custom initial function template extension id\n * @format GUID\n */\n functionTemplateExtensionId?: string | null;\n /** Indicates whether the custom initial preset with a custom function template is enabled; if false, the blank function template is used */\n enabled?: boolean | null;\n}\n\n/**\n * Function definition\n * IMPORTANT! Initial product will support only single function definition\n */\nexport interface FunctionDefinition {\n /**\n * Method\n * @maxLength 255\n */\n method?: string;\n /** Function input. */\n input?: Input;\n /** Function output. */\n output?: Output;\n /**\n * @format GUID\n * @readonly\n */\n triggerId?: string | null;\n}\n\nexport interface Configuration {\n /** Function can be implemented multiple times on single site */\n multipleInstancesAllowed?: boolean | null;\n /** Spi configuration */\n spi?: Spi;\n /** The custom initial preset to use when building a function from scratch */\n customInitialPreset?: CustomInitialPreset;\n}\n\nexport interface Description {\n /** @maxLength 600 */\n aboutDescription?: string | null;\n /**\n * Description of how it works\n * @maxLength 1000\n */\n howItWorksDescription?: string | null;\n /**\n * Description of the outcome\n * @maxLength 600\n */\n outcomeDescription?: string | null;\n /** Representative image */\n representativeImage?: string;\n /**\n * Title of the builderless function template selection modal\n * @maxLength 50\n */\n builderlessTemplateSelectionModalTitle?: string | null;\n /**\n * Subtitle of the builderless function template selection modal\n * @maxLength 200\n */\n builderlessTemplateSelectionModalSubtitle?: string | null;\n}\n\nexport interface CheckoutContentSPIConfig {\n /**\n * Base URI where the endpoints are called. Wix eCommerce appends the endpoint path to the base URI.\n * @minLength 1\n * @maxLength 1000\n */\n deploymentUri?: string;\n /**\n * Text to display in place of the \"Continue shopping\" link.\n * @maxLength 30\n */\n continueShoppingLink?: string | null;\n /**\n * Text to display in place of the \"Order summary\" title.\n * @minLength 1\n * @maxLength 30\n */\n orderSummary?: string | null;\n /**\n * Text to display in place of the \"Customer details\" title.\n * @minLength 1\n * @maxLength 30\n */\n customerDetails?: string | null;\n /**\n * Text to display in place of the \"Review and place order\" title.\n * @minLength 1\n * @maxLength 50\n */\n reviewAndPlaceOrder?: string | null;\n /**\n * Text to display in place of the \"Place order\" button.\n * @minLength 1\n * @maxLength 50\n */\n placeOrderButton?: string | null;\n /**\n * Text to display in place of the \"Place order & pay\" button.\n * @minLength 1\n * @maxLength 50\n */\n placeOrderPayButton?: string | null;\n}\n\nexport interface V2CommunicationChannelConfiguration {\n /**\n * The channel provider URI that will be called in runtime\n * @maxLength 2000\n */\n deploymentUri?: string;\n /** The main configuration of the channel */\n config?: ChannelChannelConfiguration;\n /** States whether or not specific methods were implemented by the provider in order to know whether to call them in runtime */\n implementedMethods?: ChannelImplementedMethods;\n}\n\nexport interface ChannelChannelConfiguration\n extends ChannelChannelConfigurationMessagingConfigOneOf {\n /** Direct messaging configuration */\n directMessagingConfig?: DmDirectMessageConfig;\n /** Email messaging configuration */\n emailConfig?: EmailEmailMessageConfig;\n /** Sms messaging configuration */\n smsConfig?: SmsSmsMessageConfig;\n /**\n * kebab-case channel identifier. Allows the provider to register multiple channels with the same provider app.\n * @minLength 1\n * @maxLength 50\n */\n channelKey?: string;\n /** The type of the communication channel */\n type?: ChannelConfigurationChannelTypeWithLiterals;\n /** Specific provider branding parameters for the channel */\n branding?: ChannelChannelBranding;\n /**\n * Indicates if the channel is HIPAA compliant\n * @readonly\n */\n hipaaCompliant?: boolean;\n}\n\n/** @oneof */\nexport interface ChannelChannelConfigurationMessagingConfigOneOf {\n /** Direct messaging configuration */\n directMessagingConfig?: DmDirectMessageConfig;\n /** Email messaging configuration */\n emailConfig?: EmailEmailMessageConfig;\n /** Sms messaging configuration */\n smsConfig?: SmsSmsMessageConfig;\n}\n\n/** The type of the communication channel */\nexport enum ChannelConfigurationChannelType {\n UNKNOWN_CHANNEL_TYPE = 'UNKNOWN_CHANNEL_TYPE',\n DIRECT_MESSAGING = 'DIRECT_MESSAGING',\n EMAIL = 'EMAIL',\n SMS = 'SMS',\n}\n\n/** @enumType */\nexport type ChannelConfigurationChannelTypeWithLiterals =\n | ChannelConfigurationChannelType\n | 'UNKNOWN_CHANNEL_TYPE'\n | 'DIRECT_MESSAGING'\n | 'EMAIL'\n | 'SMS';\n\nexport interface DmDirectMessageConfig {\n /**\n * Direct message types accepted by the provider.\n * Only supported types will be sent to the provider.\n * If the provider supports all message types, this field can be empty.\n * @maxSize 100\n */\n acceptedMessageTypes?: AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals[];\n /** Supported media types (mime types) and sizes */\n mediaCapabilities?: ChannelMediaCapabilities;\n /** Defines whether or not sending messages will be available for recipients without contact Id */\n allowAnonymousRecipients?: boolean;\n /**\n * TODO: we might consider changing/removing this field on next phases due to a strong dependency on Wix live site\n * Indicates whether or not the channel requires a live Wix website for a proper end to end channel functionality,\n * (for example, a live site is required for chat use case)\n */\n requireLiveSite?: boolean;\n}\n\n/** 'TEXT' type is assumed to be always supported, hence not explicitly annotated. */\nexport enum AcceptedMessageTypesAcceptedDirectMessageType {\n UNKNOWN_DIRECT_MESSAGE_TYPE = 'UNKNOWN_DIRECT_MESSAGE_TYPE',\n MEDIA = 'MEDIA',\n CARD = 'CARD',\n MINIMAL = 'MINIMAL',\n FORM = 'FORM',\n SYSTEM = 'SYSTEM',\n}\n\n/** @enumType */\nexport type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals =\n | AcceptedMessageTypesAcceptedDirectMessageType\n | 'UNKNOWN_DIRECT_MESSAGE_TYPE'\n | 'MEDIA'\n | 'CARD'\n | 'MINIMAL'\n | 'FORM'\n | 'SYSTEM';\n\nexport interface ChannelMediaCapabilities {\n /** When marked as true, 'supported_media_types' will be ignored. */\n allMediaTypes?: boolean;\n /** Maximal file size in bytes of a single file in a message */\n maxFileSizeInBytes?: number | null;\n /**\n * List for supported media MIME types. Used when allMediaTypes is set to `false`\n * Allowed MIME types must be according to the format as described here:\n * https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types\n * @maxSize 50\n * @maxLength 255\n */\n supportedMediaTypes?: string[];\n}\n\nexport interface EmailEmailMessageConfig {\n /** Supported media types (mime types) and sizes */\n mediaCapabilities?: ChannelMediaCapabilities;\n /** Maximal size in bytes of total media items in a message. */\n maxTotalFilesSizeInBytes?: number | null;\n}\n\nexport interface SmsSmsMessageConfig {\n /**\n * SMS message types accepted by the provider. Only supported types will be sent to the provider.\n * @minSize 1\n * @maxSize 100\n */\n acceptedMessageTypes?: AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals[];\n /** Supported media types (mime types) and sizes */\n mediaCapabilities?: ChannelMediaCapabilities;\n /** Optional - maximum sms message length in characters, if not given, will be unlimited */\n maxCharacters?: string | null;\n}\n\nexport enum AcceptedMessageTypesAcceptedSmsMessageType {\n UNKNOWN_SMS_MESSAGE_TYPE = 'UNKNOWN_SMS_MESSAGE_TYPE',\n SMS = 'SMS',\n MMS = 'MMS',\n}\n\n/** @enumType */\nexport type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals =\n | AcceptedMessageTypesAcceptedSmsMessageType\n | 'UNKNOWN_SMS_MESSAGE_TYPE'\n | 'SMS'\n | 'MMS';\n\nexport interface ChannelChannelBranding {\n /**\n * The name of the channel, e.g. `Facebook` / `SMS`\n * @minLength 1\n * @maxLength 100\n */\n displayName?: string;\n /**\n * The name of the channel provider (e.g. Wix, Meta, Google)\n * @minLength 1\n * @maxLength 100\n */\n providerName?: string;\n /**\n * The description of the channel\n * @minLength 1\n * @maxLength 500\n */\n description?: string | null;\n /** Relevant brand icons */\n brandIcons?: ChannelBrandIcons;\n}\n\n/** Brand icons required for correct channel integration */\nexport interface ChannelBrandIcons {\n /** Channel branding vector Icon */\n vectorImage?: UpstreamWixCommonImage;\n /** Channel branding Black & White Icon */\n bwOutlineVectorImage?: UpstreamWixCommonImage;\n}\n\nexport interface UpstreamWixCommonImage {\n /**\n * WixMedia image ID.\n * @maxLength 2000\n */\n _id?: string | null;\n /**\n * Image URL.\n * @format WEB_URL\n * @readonly\n */\n url?: string | null;\n}\n\nexport interface ChannelImplementedMethods {\n /** Implements getQuotaInfo */\n getQuotaInfo?: boolean;\n /** Implements validateSendingEligibility */\n validateSendingEligibility?: boolean;\n /** Implements updateMessageStatus */\n updateMessageStatus?: boolean;\n}\n\nexport interface WebhookComponentData {\n /**\n * The slug of the webhook, as in webhooks catalog\n * @minLength 1\n * @maxLength 128\n */\n webhookSlug?: string;\n /**\n * The callback url to be called when the webhook is triggered\n * @format WEB_URL\n */\n callbackUrl?: string;\n}\n\n/** A component that holds topology data for an application. */\nexport interface TopologyComponentData {\n /**\n * Records of topology\n * @format WEB_URL\n */\n topology?: Record<string, string>;\n}\n\nexport interface CustomRewardProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the custom reward\n * @maxLength 100\n */\n rewardName?: string;\n /**\n * User-friendly description of the custom reward\n * @maxLength 500\n */\n rewardDescription?: string;\n}\n\n/** Wix Users can choose to create a \"Function\" component according to predefined recipes for smoother user experience */\nexport interface FunctionRecipe {\n /**\n * Description of the function recipe\n * @maxLength 300\n */\n displayDescription?: string;\n /**\n * Meta site from which template function was taken to create a recipe\n * @format GUID\n */\n originMetaSiteId?: string;\n /**\n * Function in the meta site which was used as a template to create a recipe\n * @format GUID\n */\n originFunctionId?: string;\n /**\n * \"Function\" component/extension that this recipe is about\n * @format GUID\n */\n functionExtensionId?: string;\n /**\n * Created function id\n * @format GUID\n */\n functionId?: string | null;\n /**\n * Builderless flow form template id\n * @format GUID\n */\n formTemplateExtensionId?: string | null;\n}\n\n/** A backoffice component for external url`s */\nexport interface BackOfficeExternalUrl {\n /**\n * the external url to be opened\n * @maxLength 250\n */\n url?: string | null;\n /** general component data */\n metaData?: ComponentMetaData;\n /**\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n}\n\nexport interface FactorConfig {\n /** the base URI where all the methods are deployed. */\n uriConfig?: SpiBaseUri;\n /** the type of the factor */\n factorType?: FactorTypeWithLiterals;\n /** whether the factor supports verify without enrolling first */\n supportsVerifyWithoutEnroll?: boolean;\n /** whether the factor implementer requires enrollment */\n enrollRequired?: boolean;\n}\n\nexport enum FactorType {\n /** Unknown factor type. */\n UNKNOWN_FACTOR_TYPE = 'UNKNOWN_FACTOR_TYPE',\n /** Requires a password. */\n PASSWORD = 'PASSWORD',\n /** Requires a code sent via SMS. */\n SMS = 'SMS',\n /** Requires a code sent by phone call. */\n CALL = 'CALL',\n /** Requires a code sent by email. */\n EMAIL = 'EMAIL',\n /** Requires authentication via an authenticator app. */\n TOTP = 'TOTP',\n /** Requires authentication via a push notification. */\n PUSH = 'PUSH',\n /** Requires authentication via WebAuthn/passkey. */\n WEBAUTHN = 'WEBAUTHN',\n /** Requires a recovery code. */\n RECOVERY_CODE = 'RECOVERY_CODE',\n}\n\n/** @enumType */\nexport type FactorTypeWithLiterals =\n | FactorType\n | 'UNKNOWN_FACTOR_TYPE'\n | 'PASSWORD'\n | 'SMS'\n | 'CALL'\n | 'EMAIL'\n | 'TOTP'\n | 'PUSH'\n | 'WEBAUTHN'\n | 'RECOVERY_CODE';\n\nexport interface DiscountsSPIConfig {\n /**\n * Base URI where the endpoints are called.\n * Wix eCommerce appends the endpoint path to the base URI.\n * @minLength 1\n * @maxLength 200\n */\n deploymentUri?: string;\n}\n\nexport interface VeloCustomCss {\n /**\n * The grid id containing the css\n * @format GUID\n */\n gridId?: string;\n /**\n * Path to the css file in the grid\n * @minLength 2\n * @maxLength 255\n */\n filePath?: string;\n}\n\nexport interface AdaptiveComponentProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * identifier for SPI implementer\n * @format GUID\n */\n implementerConfigId?: string;\n}\n\nexport interface ActionSpiConfig {\n /**\n * The deployment uri of the assistant action\n * @maxLength 1000\n */\n deploymentUri?: string;\n /**\n * The name of the assistant action\n * @minLength 1\n * @maxLength 100\n */\n actionName?: string;\n}\n\nexport interface InventorySpiConfig {\n /**\n * Base URI where the endpoints are called.\n * Wix eCommerce appends the endpoint path to the base URI.\n * @minLength 1\n * @maxLength 200\n */\n deploymentUri?: string;\n}\n\nexport interface Monitoring extends MonitoringOptionsOneOf {\n /** Sentry provider options */\n sentryOptions?: SentryOptions;\n /** Panorama provider options */\n panoramaOptions?: PanoramaOptions;\n /** Provider type */\n type?: MonitoringTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface MonitoringOptionsOneOf {\n /** Sentry provider options */\n sentryOptions?: SentryOptions;\n /** Panorama provider options */\n panoramaOptions?: PanoramaOptions;\n}\n\nexport interface SentryOptions {\n /**\n * The sentry DSN\n * @minLength 1\n * @maxLength 255\n */\n dsn?: string;\n}\n\nexport interface Project {\n /**\n * Group id (e.g. com.wixpress)\n * @minLength 1\n * @maxLength 100\n */\n groupId?: string;\n /**\n * Short artifact id\n * @minLength 1\n * @maxLength 100\n */\n artifactId?: string;\n /**\n * Build fingerprint\n * @minLength 1\n * @maxLength 100\n */\n fingerprint?: string;\n}\n\nexport enum MonitoringType {\n UNKNOWN_PROVIDER = 'UNKNOWN_PROVIDER',\n SENTRY = 'SENTRY',\n PANORAMA = 'PANORAMA',\n}\n\n/** @enumType */\nexport type MonitoringTypeWithLiterals =\n | MonitoringType\n | 'UNKNOWN_PROVIDER'\n | 'SENTRY'\n | 'PANORAMA';\n\nexport interface PanoramaOptions {\n /** Sentry config */\n sentry?: SentryOptions;\n /** Project config */\n project?: Project;\n}\n\nexport interface PluginConfig {\n /** @maxLength 1000 */\n deploymentUri?: string;\n /**\n * has to be unique across all plugins\n * @maxLength 1024\n */\n pluginName?: string;\n /**\n * has to be unique across all plugins\n * @maxLength 1024\n */\n pluginDisplayName?: string;\n startingEnforcementDate?: Date | null;\n importanceLevel?: ImportanceLevelWithLiterals;\n /** @maxSize 100 */\n constraints?: Constraint[];\n}\n\nexport interface Consequence {\n escalation?: EscalationWithLiterals;\n /** days to resolve the violation */\n daysToResolve?: number | null;\n}\n\nexport enum Escalation {\n BREAK_BUILD = 'BREAK_BUILD',\n BLOCK_ROLLOUT = 'BLOCK_ROLLOUT',\n BLOCK_FUTURE_ROLLOUT = 'BLOCK_FUTURE_ROLLOUT',\n OPEN_BUG_SLA = 'OPEN_BUG_SLA',\n /** only shows violation in papi-dashboard */\n VISIBILITY = 'VISIBILITY',\n}\n\n/** @enumType */\nexport type EscalationWithLiterals =\n | Escalation\n | 'BREAK_BUILD'\n | 'BLOCK_ROLLOUT'\n | 'BLOCK_FUTURE_ROLLOUT'\n | 'OPEN_BUG_SLA'\n | 'VISIBILITY';\n\nexport enum ImportanceLevel {\n LOW = 'LOW',\n MEDIUM = 'MEDIUM',\n HIGH = 'HIGH',\n}\n\n/** @enumType */\nexport type ImportanceLevelWithLiterals =\n | ImportanceLevel\n | 'LOW'\n | 'MEDIUM'\n | 'HIGH';\n\nexport interface Constraint {\n /** @maxLength 1024 */\n _id?: string;\n /** @maxSize 10 */\n consequences?: Consequence[];\n /**\n * link to FAQ docs\n * @maxLength 1024\n */\n faqLink?: string;\n /**\n * override the default cta for the constraint\n * @maxLength 1024\n */\n overrideCtaMessage?: string | null;\n}\n\nexport interface UnifiedLightbox {\n /** Base info of component by shared logic of unified components */\n base?: BaseInfo;\n /** Settings for how the lightbox integrates with the editor */\n editorSettings?: LightboxEditorSettings;\n /** Options for how to close the lightbox component */\n closeOptions?: LightboxCloseOptions;\n /** Content of a lightbox */\n content?: LightboxContent;\n}\n\nexport interface LightboxEditorSettings {\n /** Basic editor settings that are relevant to all page types */\n base?: PageEditorSettings;\n}\n\nexport interface LightboxCloseOptions {\n /** If true or unset, the lightbox will be closed when overlay is clicked */\n closeOnOverlayClick?: boolean | null;\n /** Show an X button that closes the lightbox component */\n showXButton?: boolean | null;\n}\n\nexport interface LightboxContent {\n /**\n * Widgets to add as content in a lightbox\n * @maxSize 1\n */\n widgets?: PageWidgetAsContent[];\n}\n\nexport interface PageWidgetAsContent {\n /**\n * GUID of widget to use as content of page\n * @format GUID\n */\n widgetGuid?: string;\n /** The preset should be used */\n preset?: MainPresets;\n /** Mark widget as essential for the existence of the app (force to delete the whole app) */\n essential?: boolean;\n}\n\nexport interface FormSpiExtensionConfig {\n /**\n * Deployment URI where the endpoints are called. Wix Forms appends the endpoint path to the deployment URI.\n * For example, to call the Override Form endpoint at `https://my-form.com/v4/forms/override`,\n * the `deploymentUri` you provide here is `https://my-form.com/`.\n */\n deploymentUri?: SpiBaseUri;\n /**\n * The app which the form belongs to. For example, the namespace for the Wix Forms app is `wix.form_app.form`.\n *\n * Call `Get Form` to retrieve the namespace.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /**\n * The IDs of the specific forms that will trigger the defined methods when a form is requested on the API.\n * This field is optional. If empty, requests for all forms will trigger the methods.\n * @maxSize 100\n * @format GUID\n */\n formIds?: string[];\n}\n\nexport interface SchemaGroup {\n /**\n * SchemaGroup ID. Field is read only.\n * @format GUID\n * @readonly\n */\n _id?: string | null;\n /**\n * Date and time the SchemaGroup was created. Field is read only.\n * @readonly\n */\n _createdDate?: Date | null;\n /**\n * Date and time the SchemaGroup was last updated. Field is read only.\n * @readonly\n */\n _updatedDate?: Date | null;\n /**\n * Name of the SchemaGroup. Max symbol length is 100. Field is translatable.\n * @maxLength 100\n */\n name?: string | null;\n /**\n * List of Schemas.\n * @maxSize 50\n */\n groupElements?: SchemaGroupElement[];\n}\n\nexport interface SchemaGroupElement {\n /**\n * ID of the Schema. If the schema group uses an element from another existing group, the reference id to that group has to be provided here.\n * @format GUID\n */\n _id?: string | null;\n /** Position of the schema group element. */\n position?: number | null;\n}\n\nexport interface Panel extends PanelSelectedContentTypeOneOf {\n /**\n * The URL to the html page of the panel in case of iFrame\n * @format WEB_URL\n */\n url?: string;\n /**\n * The title of the panel\n * @minLength 1\n * @maxLength 200\n */\n displayName?: string;\n /** Optional: The size of the panel (not affecting overlay panel mode) */\n size?: PanelSize;\n /** The selected panel content type */\n contentType?: PanelContentTypeWithLiterals;\n /** The selected panel mode - draggable is default */\n panelMode?: PanelModeWithLiterals;\n}\n\n/** @oneof */\nexport interface PanelSelectedContentTypeOneOf {\n /**\n * The URL to the html page of the panel in case of iFrame\n * @format WEB_URL\n */\n url?: string;\n}\n\nexport interface PanelSize {\n /**\n * height of the panel in px\n * @min 150\n */\n height?: number | null;\n /** width of the panel */\n width?: WidthWithLiterals;\n}\n\nexport enum Width {\n SMALL = 'SMALL',\n MEDIUM = 'MEDIUM',\n LARGE = 'LARGE',\n}\n\n/** @enumType */\nexport type WidthWithLiterals = Width | 'SMALL' | 'MEDIUM' | 'LARGE';\n\n/** Represents the options for panel content types */\nexport enum PanelContentType {\n UNKNOWN_PanelContentType = 'UNKNOWN_PanelContentType',\n url = 'url',\n}\n\n/** @enumType */\nexport type PanelContentTypeWithLiterals =\n | PanelContentType\n | 'UNKNOWN_PanelContentType'\n | 'url';\n\n/** Represents the information needed for code panels */\nexport interface CodePanel {\n /**\n * The url for the panel code\n * @format WEB_URL\n */\n bundleUrl?: string;\n /**\n * The url for the panel css\n * @format WEB_URL\n */\n cssUrl?: string | null;\n}\n\n/** Represents the options for panel display modes */\nexport enum PanelMode {\n /** default - A non-blocking panel that allows interaction with the underlying interface */\n UNKNOWN_PanelMode = 'UNKNOWN_PanelMode',\n /** A blocking panel that overlays, typically used for modal-like experiences */\n overlay = 'overlay',\n}\n\n/** @enumType */\nexport type PanelModeWithLiterals = PanelMode | 'UNKNOWN_PanelMode' | 'overlay';\n\nexport interface PurchaseValidationsConfig {\n /** deployment URI */\n uriConfig?: SpiBaseUri;\n}\n\nexport interface BrowserStorage {\n /** The type of browser storage used */\n type?: StorageTypeWithLiterals;\n /**\n * The name of the storage item in the browser (as can be seen in DEV Console)\n * @maxLength 100\n */\n name?: string;\n /**\n * A human friendly description of the storage item and what it is used for.\n * > This is for allowing users to display consent pages on their sites with this information.\n * @minLength 10\n * @maxLength 500\n */\n description?: string;\n /**\n * The consent category to which the storage item belongs.\n * This defines when this storage item is allowed to be used in a visitor session.\n * > This is legally important for complying with EU privacy law, so make sure to define this carefully.\n */\n consentCategory?: ConsentCategoryWithLiterals;\n /** Where this storage item will be set in the browser (User domain or the App domain) */\n domain?: StorageDomainWithLiterals;\n}\n\n/** The type of storage we are declaring */\nexport enum StorageType {\n UNKNOWN_STORAGE_TYPE = 'UNKNOWN_STORAGE_TYPE',\n /** A [cookie](https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie) we store in the browser */\n COOKIE = 'COOKIE',\n /** A [localStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage) item that persists across tabs in the domain */\n LOCALSTORAGE = 'LOCALSTORAGE',\n /** A [sessionStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage) item for a specific tab in the domain */\n SESSIONSTORAGE = 'SESSIONSTORAGE',\n /** An item in [IndexDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) */\n INDEXDB = 'INDEXDB',\n}\n\n/** @enumType */\nexport type StorageTypeWithLiterals =\n | StorageType\n | 'UNKNOWN_STORAGE_TYPE'\n | 'COOKIE'\n | 'LOCALSTORAGE'\n | 'SESSIONSTORAGE'\n | 'INDEXDB';\n\n/** The category for EU and US Privacy Law classification */\nexport enum ConsentCategory {\n /** This is an invalid value, you must classify your storage item. */\n UNKNOWN_CATEGORY = 'UNKNOWN_CATEGORY',\n /** Is required for your app to function and does not use the data to do any tracking. */\n essential = 'essential',\n /** Related to performanc and functional additions that are niceities but the app can work without. */\n functional = 'functional',\n /** Related to analytics and may including tracking sessions and vistors to the site. */\n analytics = 'analytics',\n /** Related to advertising, upselling and marketing data collected to be used. */\n advertising = 'advertising',\n}\n\n/** @enumType */\nexport type ConsentCategoryWithLiterals =\n | ConsentCategory\n | 'UNKNOWN_CATEGORY'\n | 'essential'\n | 'functional'\n | 'analytics'\n | 'advertising';\n\nexport enum StorageDomain {\n UNKNOWN_STORAGE_DOMAIN = 'UNKNOWN_STORAGE_DOMAIN',\n /** Storing the values in the domain of the website the app is installed on */\n SITE_DOMAIN = 'SITE_DOMAIN',\n /** Storing the values in the Wix Backoffice domain */\n WIX_DOMAIN = 'WIX_DOMAIN',\n /** Storing the values as 3rd party in the application domain */\n APP_DOMAIN = 'APP_DOMAIN',\n}\n\n/** @enumType */\nexport type StorageDomainWithLiterals =\n | StorageDomain\n | 'UNKNOWN_STORAGE_DOMAIN'\n | 'SITE_DOMAIN'\n | 'WIX_DOMAIN'\n | 'APP_DOMAIN';\n\n/** Describe SDK module definition for an app */\nexport interface SdkDefinition {\n /**\n * The SDK module name, for example \"ecom\"\n * @maxLength 100\n */\n sdkModuleName?: string;\n}\n\n/** A container (slot) that can be extended by other applications (e.g. widget plugin) */\nexport interface SiteWidgetSlot {\n /** A container (slot) common properties. */\n slotData?: SlotData;\n /**\n * Name of the slot. Displayed to users when selecting a Plugin Placement, Must be unique within its parent component.\n * @minLength 2\n * @maxLength 50\n */\n slotKeyName?: string | null;\n}\n\n/** Configuration for the event validation provider. */\nexport interface EventValidationProviderConfig {\n /** The base URI to reach the provider's service. */\n baseUri?: SpiBaseUri;\n /**\n * List of validation targets specifying the methods to validate and optional filters.\n * @minSize 1\n * @maxSize 10\n */\n validationTargets?: ValidationTarget[];\n}\n\nexport interface ValidationTarget {\n /** The method to validate. */\n method?: MethodWithLiterals;\n /**\n * Optional WQL filter applied to the events for validation.\n * Only events matching this filter will be validated.\n * Supported event fields:\n * - `appId`\n */\n filter?: Record<string, any> | null;\n}\n\nexport enum Method {\n /** Validate an event before creation. */\n CREATE = 'CREATE',\n /** Validate an event before update. */\n UPDATE = 'UPDATE',\n /** Validate an event before cancel. */\n CANCEL = 'CANCEL',\n}\n\n/** @enumType */\nexport type MethodWithLiterals = Method | 'CREATE' | 'UPDATE' | 'CANCEL';\n\n/** Client Service is a broad category encompassing any value, function, or feature that an application needs. A service is typically a class with a narrow, well-defined purpose. A component is one type of class that can use DI. */\nexport interface ClientSideService {\n /**\n * ID of a UI service.\n * @format GUID\n */\n _id?: string;\n /**\n * Exported name of a service\n * @minLength 2\n * @maxLength 100\n */\n exportedName?: string;\n /** Definition of a service */\n definition?: Definition;\n /** Implementation metadata of a service, a service with no runtime definition will be considered as an atom. */\n implementation?: Implementation;\n}\n\nexport interface Npm {\n /**\n * Npm package name\n * @minLength 2\n * @maxLength 100\n */\n packageName?: string;\n /**\n * Npm semantic version\n * @minLength 2\n * @maxLength 100\n */\n packageVersion?: string;\n /**\n * Package entry point, default to main entry\n * @minLength 2\n * @maxLength 100\n */\n specifier?: string | null;\n /**\n * Imported name, default to default import\n * @minLength 2\n * @maxLength 100\n */\n importedName?: string | null;\n}\n\nexport interface Definition {\n /** Reflecting a service definition using npm package */\n npm?: Npm;\n}\n\nexport interface Implementation {\n /** Reflecting a service runtime using npm package */\n npm?: Npm;\n /**\n * Bundle URL\n * @format WEB_URL\n */\n bundleUrl?: string | null;\n /**\n * reference to other client side services\n * @format GUID\n * @maxSize 100\n */\n serviceDependencies?: string[];\n}\n\nexport interface BillingSettingsConfig {\n /**\n * name of the subscription type was it appears in relevant screens in Billing Platform\n * @minLength 1\n * @maxLength 200\n */\n subscriptionType?: string;\n /** whether subscriptions end date can be updated */\n allowSubscriptionExtension?: boolean;\n /** whether subscription can be canceled not only immediately, but also at end of billing cycle by turning off auto-renew */\n allowAutoRenewOff?: boolean;\n /** whether changes can be made to the payment schedule and under what conditions. */\n paymentDateModification?: PaymentDateModification;\n}\n\nexport interface PaymentDateModification {\n /**\n * Indicates whether the merchant can modify the payment date.\n * A value of true permits changes, while false means the payment date cannot be altered.\n */\n allowed?: boolean;\n /**\n * Specifies if adjustments to the price are enabled when the payment date is modified.\n * If true, changing the date to an earlier one results in proration,\n * while changing it to a later date incurs an extra charge.\n * Irrelevant if allowed is false.\n */\n priceAdjustmentEnabled?: boolean;\n}\n\n/** A component holding configuration of Patterns Wizard */\nexport interface PatternsWizard {\n /** Configuration of the patterns wizard */\n config?: Record<string, any> | null;\n}\n\nexport interface ApplicationProfileProviderConfig {\n /** URI where the SPI implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /** Implemented methods */\n implementedMethods?: V1ImplementedMethods;\n /** default application profile */\n defaultApplicationProfile?: ApplicationProfile;\n}\n\nexport interface V1ImplementedMethods {\n /** Implement QueryApplicationProfiles */\n getMyApplicationProfile?: boolean;\n}\n\nexport interface ApplicationProfile {\n /**\n * name\n * @maxLength 200\n * @readonly\n */\n name?: string | null;\n /**\n * image url\n * @format WEB_URL\n * @readonly\n */\n imageUrl?: string | null;\n}\n\n/** a translated TextToSpeech payload sent to UOU */\nexport interface TextToSpeechActionMessage {\n /**\n * Text-to-speech message body. Should be a valid SSML as string.\n * See https://www.w3.org/TR/speech-synthesis/\n * i.e. <speak>\\r\\nHi, testing text to speech.\\r\\n</speak>\n * i.e. <speak>\\r\\n<audio src=\\\"https://storage.googleapis.com/wix-restaurants/audio/beep.mp3\\\"/>\\r\\nA new order was received.\\r\\n</speak>\n * @minLength 1\n * @maxLength 5000\n */\n body?: string;\n}\n\nexport interface AudienceProviderConfig {\n /** notification preference filter SPI configuration */\n baseUri?: SpiBaseUri;\n /**\n * Provider key\n * @minLength 1\n * @maxLength 50\n */\n key?: string;\n /**\n * The name of the audience provider, e.g. `Blog Post Subscribers` / `Contacts Labels`\n * @minLength 1\n * @maxLength 100\n */\n displayName?: string;\n /** Type of participant. Each audience provider can support only one type of recipient */\n participantType?: ParticipantTypeWithLiterals;\n /** Standard json schema which describe the json the provider should get in the Resolve end point */\n inputSchema?: Record<string, any> | null;\n /**\n * Interface configuration\n * If empty default interface configuration will be auto generated based on the input schema\n */\n interfaceConfiguration?: InterfaceConfiguration;\n /** Specifying which optional methods are implemented. */\n implementedMethods?: ImplementedMethods;\n /**\n * Define the scopes which the provider audience is relevant\n * @maxSize 10\n */\n scopes?: ScopeWithLiterals[];\n}\n\nexport enum ParticipantType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n WIX_USER = 'WIX_USER',\n CONTACT = 'CONTACT',\n ANONYMOUS = 'ANONYMOUS',\n}\n\n/** @enumType */\nexport type ParticipantTypeWithLiterals =\n | ParticipantType\n | 'UNKNOWN_TYPE'\n | 'WIX_USER'\n | 'CONTACT'\n | 'ANONYMOUS';\n\nexport interface InterfaceConfiguration\n extends InterfaceConfigurationOfTypeOneOf {\n /** Should be filled if the provider implements its own custom UI */\n widgetComponentConfiguration?: WidgetComponent;\n /** Type of interface configuration */\n type?: InterfaceConfigurationTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface InterfaceConfigurationOfTypeOneOf {\n /** Should be filled if the provider implements its own custom UI */\n widgetComponentConfiguration?: WidgetComponent;\n}\n\nexport enum InterfaceConfigurationType {\n /** Widget component built by the provider */\n WIDGET_COMPONENT = 'WIDGET_COMPONENT',\n /** Item Selection, in case the provider implemented item selection component */\n ITEM_SELECTION = 'ITEM_SELECTION',\n}\n\n/** @enumType */\nexport type InterfaceConfigurationTypeWithLiterals =\n | InterfaceConfigurationType\n | 'WIDGET_COMPONENT'\n | 'ITEM_SELECTION';\n\nexport interface WidgetComponent {\n /**\n * widget component id\n * @format GUID\n */\n componentId?: string;\n}\n\nexport interface ItemSelection {\n /**\n * Item selection provider key\n * @minLength 1\n * @maxLength 100\n */\n providerKey?: string;\n /**\n * Mapping between item selection ids array to correlate input schema field\n * @minLength 1\n * @maxLength 25\n */\n schemaIdsFieldName?: string;\n}\n\nexport interface ImplementedMethods {\n /** Implements countParticipants */\n countParticipants?: boolean;\n}\n\nexport enum Scope {\n /** Provider audience is available only in scope of specific site */\n SPECIFIC_SITE = 'SPECIFIC_SITE',\n /** Provider audience is available only in scope of non specific site */\n NON_SPECIFIC_SITE = 'NON_SPECIFIC_SITE',\n}\n\n/** @enumType */\nexport type ScopeWithLiterals = Scope | 'SPECIFIC_SITE' | 'NON_SPECIFIC_SITE';\n\n/** Config for the Price SPI */\nexport interface PriceSPIConfig {\n /**\n * Pricing plan for which the SPI method should optionally apply\n * @format GUID\n */\n planId?: string;\n /** Required. Base URI where the endpoints are called. Wix appends the endpoint path to the base URI. */\n uriConfig?: SpiBaseUri;\n}\n\nexport interface StartDateLimitsSPIConfig {\n /** Base URI where the endpoints are called. Wix appends the endpoint path to the base URI. */\n baseUri?: SpiBaseUri;\n /**\n * Pricing plan for which the SPI method should apply\n * @format GUID\n */\n planId?: string;\n}\n\nexport interface StartDateRulesSPIConfig {\n /** Base URI where the endpoints are called. Wix appends the endpoint path to the base URI. */\n baseUri?: SpiBaseUri;\n /**\n * Pricing plan for which the SPI method should apply\n * @format GUID\n */\n planId?: string;\n}\n\nexport interface TicketReservationsSpiConfig {\n /** URI where the SPI Implementer is deployed. */\n baseUri?: SpiBaseUri;\n}\n\n/** Configuration for the dispute service plugin implementor */\nexport interface DisputeServicePluginConfig {\n /**\n * Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.\n * For example, to call the Accept Dispute endpoint at https://my-payments.com/disputes/v1/accept-dispute, the base URI you provide here is https://my-payments.com/disputes.\n */\n baseUri?: SpiBaseUri;\n}\n\n/** Config for the Fees SPI */\nexport interface FeesSPIConfig {\n /**\n * Pricing plan for which the SPI method should optionally apply\n * @format GUID\n */\n planId?: string;\n /** Required. Base URI where the endpoints are called. Wix appends the endpoint path to the base URI. */\n uriConfig?: SpiBaseUri;\n}\n\n/** The full model for an imported component set in DEV Center */\nexport interface EditorReactComponent {\n /**\n * The type of component to present in the Page tree, will be prefixed with AppSlug\n * @maxLength 100\n * @minLength 1\n */\n type?: string;\n /**\n * The public description of the component do display\n * @maxLength 300\n * @minLength 3\n */\n description?: string;\n /** List of component resources. This comprises any runtime code we need to load and execute for the component. */\n resources?: Resources;\n /** The configuration describing the component abilities and behaviors on the Editor stage */\n editorElement?: EditorElement;\n /** The installation settings of the component */\n installation?: InstallationInfo;\n}\n\nexport interface Resources {\n /** The bundle we will load and render in the browser in the site */\n client?: ClientResources;\n /**\n * An optional client definition of the component we will load and render in the editor, *it replaces the client bundle.*\n * The main use case is to control the live site component and enable different experiences in the editor.\n * For example, supporting `states` manipulation:\n * Show calendar in the editor\n * Open drop down in the editor\n */\n editor?: ClientResources;\n /** The bundle for SSR, should not include any DOM API references */\n server?: Resource;\n /** The optional component SDK to expose to Velo Users to interact with the component */\n sdk?: Resource;\n /** Details for how to load translations for the component */\n translations?: TranslationResources;\n /** The optional interactions configuration JSON file */\n interactions?: Resource;\n}\n\nexport interface ClientResources {\n /**\n * A URL to an ESM javascript bundle. It's default export should be the component\n * @format WEB_URL\n */\n componentUrl?: string;\n /**\n * A URL to the CSS file that is the default layout and style for the component\n * @format WEB_URL\n */\n cssUrl?: string | null;\n /**\n * A list of service dependencies required by the component, example: ['@wix/environment']\n * @maxLength 80\n * @maxSize 20\n * @deprecated A list of service dependencies required by the component, example: ['@wix/environment']\n * @replacedBy dependencies\n * @targetRemovalDate 2025-12-30\n */\n serviceDependencies?: string[];\n /**\n * A module specifier for the component’s react code.\n * @maxLength 100\n */\n moduleSpecifier?: string | null;\n /** Dependencies on services and contexts */\n dependencies?: EditorDependencies;\n}\n\nexport interface EditorDependencies {\n /**\n * A list of service dependencies required by the component, example: ['@wix/environment']\n * @maxLength 80\n * @maxSize 20\n */\n serviceDependencies?: string[];\n /**\n * Dependencies on context providers in order to work\n * @maxLength 80\n * @maxSize 20\n */\n contextDependencies?: string[];\n /**\n * Dependencies on components that we want as externals in our bundle, example: wixEditorElements.AppWidget\n * @maxLength 80\n * @maxSize 20\n */\n componentDependencies?: string[];\n}\n\nexport interface Resource {\n /**\n * A URL to an ESM javascript bundle\n * @format WEB_URL\n */\n url?: string;\n}\n\nexport interface TranslationResources {\n /**\n * The URL that we will add the language to for fetching translations, example: `https://somecdn.com/translations/`\n * @format WEB_URL\n */\n basePath?: string;\n /**\n * The list of supported languages according to the [ISO-639-1 specification](https://en.wikipedia.org/wiki/ISO_639-1)\n * @format LANGUAGE\n * @maxSize 37\n */\n languages?: string[];\n}\n\nexport interface EditorElement {\n /**\n * DOM Query selector for this element that we can use to find it when rendering it (preferably a className)\n * @minLength 4\n * @maxLength 300\n */\n selector?: string;\n /**\n * Human friendly name on the editor stage when the component is in interaction with the user\n * @maxLength 50\n */\n displayName?: string;\n /** data-api of this element, a map of data-items where the key is the data-item name and the value is the data-item definition. These will be manifested as `props` for the component */\n data?: Record<string, DataItem>;\n /** elements-map of this element, a map of inner-elements where the key is the element name and the value is the element definition */\n elements?: Record<string, ElementItem>;\n /** Native actions specified for the component */\n actions?: Actions;\n /** Custom actions specified for the component, allowing for flexibility beyond native actions */\n customActions?: Record<string, Action>;\n /** Component presets definition. Canonically useful for different layout or theming */\n presets?: Record<string, PresetItem>;\n /** Layout capabilities of the component */\n layout?: EditorElementLayout;\n /** The Archetype this component adheres to, to be used for classification by AI models */\n archetype?: ArchetypeWithLiterals;\n /** A map with definitions of states that this element can be edited in */\n states?: Record<string, ElementState>;\n /** Interactions of the component supports */\n interactions?: Interactions;\n /**\n * Display filters for the Element, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The Element is the first in line to affect the display, Preset and State are after it\n */\n displayFilters?: DisplayFilters;\n /** Display groups for the element, used to group elements in the editor for better UX */\n displayGroups?: Record<string, DisplayGroupItem>;\n /** A map of CSS properties that this element supports, where the key is the CSS property name and the value is the CSS property definition */\n cssProperties?: Record<string, CssPropertyItem>;\n /** A map of CSS properties that this element supports, where the key is the CSS property name and the value is the CSS property definition */\n cssCustomProperties?: Record<string, CssCustomPropertyItem>;\n /** A reference to a help article for this element */\n helpArticle?: HelpArticle;\n}\n\nexport interface DataItem extends DataItemSelectedDataTypeOneOf {\n /** An optional object to define limitations on the text input */\n text?: Text;\n /** A required list of options to supply to the users to choose from */\n textEnum?: TextEnum;\n /** An optional set of restrictions to apply to the number */\n number?: _Number;\n /** A required list of types we want to user to be able to specify, empty means all possible A11Y values */\n a11y?: A11y;\n /** A definition of what links should be supported */\n link?: Link;\n /** An array of a data type */\n arrayItems?: ArrayItems;\n /** A container in which to render another component */\n container?: ReactElementContainer;\n /** A definition of what rich text abilities should be supported */\n richText?: RichText;\n /** A definition of what images should be supported */\n image?: Image;\n /** A definition of what videos should be supported */\n video?: Video;\n /** A definition of what vector arts should be supported */\n vectorArt?: VectorArt;\n /** An definition of a nested data-object */\n data?: DataItems;\n /** A definition of a custom function */\n function?: EditorFunction;\n /** Defines the type of data we are configuring */\n dataType?: DataTypeWithLiterals;\n /**\n * Display name of this data item\n * @maxLength 100\n */\n displayName?: string | null;\n /** The default value of this data item (only for display purposes). */\n defaultValue?: any;\n /** Disables the ability to delete this data-item value in the Editor UI */\n disableDeletion?: boolean | null;\n}\n\n/** @oneof */\nexport interface DataItemSelectedDataTypeOneOf {\n /** An optional object to define limitations on the text input */\n text?: Text;\n /** A required list of options to supply to the users to choose from */\n textEnum?: TextEnum;\n /** An optional set of restrictions to apply to the number */\n number?: _Number;\n /** A required list of types we want to user to be able to specify, empty means all possible A11Y values */\n a11y?: A11y;\n /** A definition of what links should be supported */\n link?: Link;\n /** An array of a data type */\n arrayItems?: ArrayItems;\n /** A container in which to render another component */\n container?: ReactElementContainer;\n /** A definition of what rich text abilities should be supported */\n richText?: RichText;\n /** A definition of what images should be supported */\n image?: Image;\n /** A definition of what videos should be supported */\n video?: Video;\n /** A definition of what vector arts should be supported */\n vectorArt?: VectorArt;\n /** An definition of a nested data-object */\n data?: DataItems;\n /** A definition of a custom function */\n function?: EditorFunction;\n}\n\nexport enum DataType {\n UNKNOWN_DataType = 'UNKNOWN_DataType',\n /** A simple text value */\n text = 'text',\n /** A list of predefined textual values to choose from */\n textEnum = 'textEnum',\n /** Any number */\n number = 'number',\n /** true / false value */\n booleanValue = 'booleanValue',\n /** An object containing the selected A11Y fields chosen */\n a11y = 'a11y',\n /** A Wix Link object type */\n link = 'link',\n /** A Wix Image object type */\n image = 'image',\n /** A Wix Video object type */\n video = 'video',\n /** A Wix Sanitized Vector Art object */\n vectorArt = 'vectorArt',\n /** A Wix Audio object */\n audio = 'audio',\n /** DEPRECATED - use the `data` dataType instead. A [JSON Schema definition](https://json-schema.org/specification) the developer understands in his code (useful for complex props). Some limitation may apply. */\n schema = 'schema',\n /** Local date output ISO-8601 extended local date format (YYYY-MM-DD) */\n localDate = 'localDate',\n /** Local time output ISO-8601 extended local time format (hh:mm[:ss][.sss]) */\n localTime = 'localTime',\n /** Local Date Time output ISO-8601 extended local date-time format (YYYY-MM-DDThh:mm[:ss][.sss]) */\n localDateTime = 'localDateTime',\n /** a URL with scheme http or https */\n webUrl = 'webUrl',\n /** standard email address according to [RFC 5321, section 4.1.2](https://datatracker.ietf.org/doc/html/rfc5321#section-4.1.2) */\n email = 'email',\n /** a validation format designed to match phone numbers with a variety of common characters, including digits (0-9), spaces, parentheses, plus sign, hyphens, and periods */\n phone = 'phone',\n /** hostname according to IANA */\n hostname = 'hostname',\n /** A valid `regex` pattern supplied by the User */\n regex = 'regex',\n /** A unique identifier */\n guid = 'guid',\n /** a HTML text with css inline styling */\n richText = 'richText',\n /** A container place in the component that will be passed in as {children} or a function prop, depending on the case */\n container = 'container',\n /** An array type of data */\n arrayItems = 'arrayItems',\n /** selected `direction` for the component according to (HTML `dir` attribute)[https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/dir] */\n direction = 'direction',\n /** A list of menu-items */\n menuItems = 'menuItems',\n /** A complex data type that can be used to define a data structure, such as an object or a map */\n data = 'data',\n /** A custom function that can be used to call a function from a custom library */\n 'function' = 'function',\n /** Standard [onClick handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event), can also handle: `()=>void` */\n onClick = 'onClick',\n /** Standard input event [onChange](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) for text inputs, can also handle: `(value: string) => void` */\n onChange = 'onChange',\n /** Standard [onKeyPress handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keypress_event), can also handle: `(event: KeyboardEvent) => void` */\n onKeyPress = 'onKeyPress',\n /** Standard [onKeyUp handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keyup_event), can also handle: `(event: KeyboardEvent) => void` */\n onKeyUp = 'onKeyUp',\n /** Standard [onSubmit handler](https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit_event), can also handle: `() => void` */\n onSubmit = 'onSubmit',\n}\n\n/** @enumType */\nexport type DataTypeWithLiterals =\n | DataType\n | 'UNKNOWN_DataType'\n | 'text'\n | 'textEnum'\n | 'number'\n | 'booleanValue'\n | 'a11y'\n | 'link'\n | 'image'\n | 'video'\n | 'vectorArt'\n | 'audio'\n | 'schema'\n | 'localDate'\n | 'localTime'\n | 'localDateTime'\n | 'webUrl'\n | 'email'\n | 'phone'\n | 'hostname'\n | 'regex'\n | 'guid'\n | 'richText'\n | 'container'\n | 'arrayItems'\n | 'direction'\n | 'menuItems'\n | 'data'\n | 'function'\n | 'onClick'\n | 'onChange'\n | 'onKeyPress'\n | 'onKeyUp'\n | 'onSubmit';\n\nexport interface Text {\n /** Indicates maximum length allowed for the text */\n maxLength?: number | null;\n /** Indicates minimum length required for the text */\n minLength?: number | null;\n /**\n * A regex pattern that the text must comply with\n * @maxLength 100\n */\n pattern?: string | null;\n}\n\nexport interface TextEnum {\n /**\n * list of valid enum items\n * @maxSize 100\n */\n options?: Option[];\n}\n\nexport interface Option {\n /**\n * actual text value for this item\n * @maxLength 100\n */\n value?: string;\n /**\n * display name for this text item\n * @maxLength 100\n */\n displayName?: string;\n}\n\nexport interface _Number {\n /**\n * @deprecated\n * @replacedBy min\n * @targetRemovalDate 2025-11-30\n */\n minimum?: number | null;\n /**\n * Indicates minimum value required for the number\n * @format DECIMAL_VALUE\n */\n min?: string | null;\n /**\n * @deprecated\n * @replacedBy max\n * @targetRemovalDate 2025-11-30\n */\n maximum?: number | null;\n /**\n * Indicates maximum value allowed for the number\n * @format DECIMAL_VALUE\n */\n max?: string | null;\n /**\n * @deprecated\n * @replacedBy multiplier\n * @targetRemovalDate 2025-11-30\n */\n multipleOf?: number | null;\n /**\n * The multiplier for the number value\n * @format DECIMAL_VALUE\n */\n multiplier?: string | null;\n}\n\nexport interface A11y {\n /**\n * A collection of attributes that will be stated in the manifest\n * @maxSize 100\n */\n attributes?: A11yAttributesWithLiterals[];\n}\n\nexport enum A11yAttributes {\n Unknown_AriaAttributes = 'Unknown_AriaAttributes',\n /** The value used for tabIndex attribute */\n tabIndex = 'tabIndex',\n /** The value used for aria-level */\n ariaLevel = 'ariaLevel',\n /** The value used for aria-expanded */\n ariaExpanded = 'ariaExpanded',\n /** The value used for aria-disabled */\n ariaDisabled = 'ariaDisabled',\n /** The value used for aria-atomic */\n ariaAtomic = 'ariaAtomic',\n /** The value used for aria-hidden */\n ariaHidden = 'ariaHidden',\n /** The value used for aria-busy */\n ariaBusy = 'ariaBusy',\n /** Indicates if should add Multiline instructions to aria-label */\n multiline = 'multiline',\n /** Indicates if should add Autocomplete instructions to aria-label */\n ariaAutocomplete = 'ariaAutocomplete',\n /** The value used for aria-pressed */\n ariaPressed = 'ariaPressed',\n /** The value used for aria-haspopup */\n ariaHaspopup = 'ariaHaspopup',\n /** The value used for aria-relevant */\n ariaRelevant = 'ariaRelevant',\n /** The value used for role attribute */\n role = 'role',\n /** The value used for aria-live */\n ariaLive = 'ariaLive',\n /** The value used for aria-current */\n ariaCurrent = 'ariaCurrent',\n /** The text used for aria-label */\n ariaLabel = 'ariaLabel',\n /** The text used for aria-roledescription */\n ariaRoledescription = 'ariaRoledescription',\n /** The value used for aria-describedby */\n ariaDescribedby = 'ariaDescribedby',\n /** The value used for aria-labelledby */\n ariaLabelledby = 'ariaLabelledby',\n /** The text used for aria-errormessage */\n ariaErrormessage = 'ariaErrormessage',\n /** The text used for aria-owns */\n ariaOwns = 'ariaOwns',\n /** The text used for aria-controls */\n ariaControls = 'ariaControls',\n /** The HTML tag to use for the element */\n tag = 'tag',\n /** The value used for aria-multiline */\n ariaMultiline = 'ariaMultiline',\n /** The value used for aria-invalid */\n ariaInvalid = 'ariaInvalid',\n}\n\n/** @enumType */\nexport type A11yAttributesWithLiterals =\n | A11yAttributes\n | 'Unknown_AriaAttributes'\n | 'tabIndex'\n | 'ariaLevel'\n | 'ariaExpanded'\n | 'ariaDisabled'\n | 'ariaAtomic'\n | 'ariaHidden'\n | 'ariaBusy'\n | 'multiline'\n | 'ariaAutocomplete'\n | 'ariaPressed'\n | 'ariaHaspopup'\n | 'ariaRelevant'\n | 'role'\n | 'ariaLive'\n | 'ariaCurrent'\n | 'ariaLabel'\n | 'ariaRoledescription'\n | 'ariaDescribedby'\n | 'ariaLabelledby'\n | 'ariaErrormessage'\n | 'ariaOwns'\n | 'ariaControls'\n | 'tag'\n | 'ariaMultiline'\n | 'ariaInvalid';\n\nexport interface Link {\n /**\n * A collection of possible link types that the component supports. Only one of the types will make it to the component after input.\n * @maxSize 12\n */\n linkTypes?: LinkTypeWithLiterals[];\n}\n\nexport enum LinkType {\n UNKNOWN_LinkType = 'UNKNOWN_LinkType',\n /** A link to another website */\n externalLink = 'externalLink',\n /** A link to an item on the current page */\n anchorLink = 'anchorLink',\n /** A valid email link (`mailto:example@example.com`) */\n emailLink = 'emailLink',\n /** A valid phone link (`phone:11111111111`) */\n phoneLink = 'phoneLink',\n /** A link to a page in Wix that needs to be selected dynamically */\n dynamicPageLink = 'dynamicPageLink',\n /** A link to another page on the site */\n pageLink = 'pageLink',\n /** A link to open a whatsapp conversation */\n whatsAppLink = 'whatsAppLink',\n /** A link to a PDF file hosted by Wix */\n documentLink = 'documentLink',\n /** A link that opens a lightbox */\n popupLink = 'popupLink',\n /** A link that directs the user to an address on google maps */\n addressLink = 'addressLink',\n /** A link that scrolls to the top/bottom of the page */\n edgeAnchorLinks = 'edgeAnchorLinks',\n /** A link that directs the user to wix login dialog */\n loginToWixLink = 'loginToWixLink',\n}\n\n/** @enumType */\nexport type LinkTypeWithLiterals =\n | LinkType\n | 'UNKNOWN_LinkType'\n | 'externalLink'\n | 'anchorLink'\n | 'emailLink'\n | 'phoneLink'\n | 'dynamicPageLink'\n | 'pageLink'\n | 'whatsAppLink'\n | 'documentLink'\n | 'popupLink'\n | 'addressLink'\n | 'edgeAnchorLinks'\n | 'loginToWixLink';\n\n/** An array of data items or complex data types */\nexport interface ArrayItems extends ArrayItemsArrayDataOneOf {\n /** The definition of multiple data items in each item of the Array */\n data?: DataItems;\n /** For a single data type in the array */\n dataItem?: DataItem;\n /** The maximum size of the Array (there will be a size limit in the Storage as well) */\n maxSize?: number | null;\n}\n\n/** @oneof */\nexport interface ArrayItemsArrayDataOneOf {\n /** The definition of multiple data items in each item of the Array */\n data?: DataItems;\n /** For a single data type in the array */\n dataItem?: DataItem;\n}\n\nexport interface DataItems {\n /**\n * For an array of complex object types\n * Each item in the array, will contain all this data structure\n */\n items?: Record<string, DataItem>;\n}\n\n/**\n * A container is a place to add components to in the editor\n * There are a few different types of containers supported\n */\nexport interface ReactElementContainer\n extends ReactElementContainerSelectedContainerTypeOneOf {\n /** A container element that will be passed in as children, it is composed in the editor */\n simple?: SimpleContainer;\n /** A Slot for targeting slot implementors, gets the API implementation by the host (definition in DEV Center for both) */\n slot?: Slot;\n /** Placeholder for components targeting a specific area (definition in DEV Center) */\n placeholder?: PlaceHolder;\n /**\n * A DOM Selector that will allow us to target it in the editor\n * @minLength 2\n * @maxLength 100\n */\n selector?: string;\n /** The type of Container to be rendered */\n containerType?: ContainerTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ReactElementContainerSelectedContainerTypeOneOf {\n /** A container element that will be passed in as children, it is composed in the editor */\n simple?: SimpleContainer;\n /** A Slot for targeting slot implementors, gets the API implementation by the host (definition in DEV Center for both) */\n slot?: Slot;\n /** Placeholder for components targeting a specific area (definition in DEV Center) */\n placeholder?: PlaceHolder;\n}\n\nexport enum ContainerType {\n /** An undefined container type, is invalid */\n UNKNOWN_CONTAINER_TYPE = 'UNKNOWN_CONTAINER_TYPE',\n /** A simple container that can support adding and layouting elements in the editor */\n simple = 'simple',\n /** A slot declared by a component in DEV Center that allows integrations with a Props API from the host */\n slot = 'slot',\n /** A container to add elements targeting a specific product use case, exposed in DEV Center */\n placeholder = 'placeholder',\n /** A container that can be used to render a template multiple times */\n template = 'template',\n}\n\n/** @enumType */\nexport type ContainerTypeWithLiterals =\n | ContainerType\n | 'UNKNOWN_CONTAINER_TYPE'\n | 'simple'\n | 'slot'\n | 'placeholder'\n | 'template';\n\nexport interface SimpleContainer {\n /** Layout configuration for the container, can be used to configure the editing of the container and the layout. */\n layout?: ContainerLayout;\n /** Style configuration for the container, can be used to disable style properties, or change their display name. */\n style?: ContainerStyleOverrides;\n /** Behavior configuration for the container, can be used to disable selection of the container. */\n behaviors?: ContainerBehaviors;\n /**\n * An optional override of the display name of the container.\n * @maxLength 50\n */\n displayName?: string | null;\n}\n\nexport interface ContainerLayout {\n /** Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout. */\n resizeDirection?: ResizeDirectionWithLiterals;\n}\n\nexport enum ResizeDirection {\n /** Default value when direction is not specified */\n UNKNOWN_ResizeDirection = 'UNKNOWN_ResizeDirection',\n /** Component can only be resized horizontally */\n horizontal = 'horizontal',\n /** Component can only be resized vertically */\n vertical = 'vertical',\n /** Component can be resized both horizontally and vertically */\n horizontalAndVertical = 'horizontalAndVertical',\n /** Component maintains its aspect ratio while resizing */\n aspectRatio = 'aspectRatio',\n /** Component cannot be resized in any direction */\n none = 'none',\n}\n\n/** @enumType */\nexport type ResizeDirectionWithLiterals =\n | ResizeDirection\n | 'UNKNOWN_ResizeDirection'\n | 'horizontal'\n | 'vertical'\n | 'horizontalAndVertical'\n | 'aspectRatio'\n | 'none';\n\nexport interface ContainerStyleOverrides {\n /** The border style of the container, can be used to disable editing of the border, or change the display name. */\n border?: StyleItemOverrides;\n /** The border radius style of the container, can be used to disable editing of the border radius, or change the display name. */\n borderRadius?: StyleItemOverrides;\n /** The shadow style of the container, can be used to disable editing of the shadow, or change the display name. */\n shadow?: StyleItemOverrides;\n /** The background style of the container, can be used to disable editing of the background, or change the display name. */\n background?: StyleItemOverrides;\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface StyleItemOverrides {\n /** Disables the ability to edit this style-item */\n disableEditing?: boolean | null;\n /** Overrides the default value of this style-item */\n defaultValue?: any;\n /** Overrides the default values for the style-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n /**\n * Overrides Display displayName of this style-item\n * @maxLength 100\n */\n displayName?: string | null;\n}\n\nexport interface ContainerBehaviors {\n /** Whether the container should be selectable in the editor. */\n selectable?: boolean | null;\n}\n\nexport interface Slot {\n /**\n * The slot definition that this container should accept as defined in DEV Center\n * @format GUID\n */\n slotId?: string;\n}\n\nexport interface PlaceHolder {\n /**\n * The placeholder definition that this container should accept as defined in DEV Center\n * @format GUID\n */\n placeholderId?: string;\n}\n\n/** rich text data type allow manipulation of text with html & inline styles */\nexport interface RichText {\n /**\n * A collection of possible rich text abilities that the component supports. Only one of the types will make it to the component after input.\n * @maxSize 22\n */\n abilities?: RichTextAbilitiesWithLiterals[];\n}\n\nexport enum RichTextAbilities {\n UNKNOWN_RichTextAbilities = 'UNKNOWN_RichTextAbilities',\n /** selected theme font, also changing the html tag */\n font = 'font',\n /** font family of the text */\n fontFamily = 'fontFamily',\n /** font size of the text */\n fontSize = 'fontSize',\n /** italic / normal */\n fontStyle = 'fontStyle',\n /** bold / normal / 100-900 */\n fontWeight = 'fontWeight',\n /** underline / line-through */\n textDecoration = 'textDecoration',\n /** color of the text */\n color = 'color',\n /** background color of the text */\n backgroundColor = 'backgroundColor',\n /** letter spacing of the text */\n letterSpacing = 'letterSpacing',\n /** left / center / right / justify */\n textAlign = 'textAlign',\n /** rtl/ltr */\n direction = 'direction',\n /** indent of the text */\n marginStart = 'marginStart',\n /** outdent of the text */\n marginEnd = 'marginEnd',\n /** special data: */\n bulletedList = 'bulletedList',\n /** implemented with <ol> */\n numberedList = 'numberedList',\n /** h1,h2,h3,h4,h5,h6,p,blockquote */\n seoTag = 'seoTag',\n}\n\n/** @enumType */\nexport type RichTextAbilitiesWithLiterals =\n | RichTextAbilities\n | 'UNKNOWN_RichTextAbilities'\n | 'font'\n | 'fontFamily'\n | 'fontSize'\n | 'fontStyle'\n | 'fontWeight'\n | 'textDecoration'\n | 'color'\n | 'backgroundColor'\n | 'letterSpacing'\n | 'textAlign'\n | 'direction'\n | 'marginStart'\n | 'marginEnd'\n | 'bulletedList'\n | 'numberedList'\n | 'seoTag';\n\nexport interface Image {\n /** media manager categories to open media manager filtered by the component needs */\n category?: ImageCategoryTypesWithLiterals;\n}\n\n/** Categories to open media manager filtered by the component needs */\nexport enum ImageCategoryTypes {\n /** Default value when image category is not specified */\n UNKNOWN_CategoryName = 'UNKNOWN_CategoryName',\n /** Images - mapped to IMAGE */\n IMAGE = 'IMAGE',\n /** Background Images - mapped to BG_IMAGE */\n IMAGE_BACKGROUND = 'IMAGE_BACKGROUND',\n}\n\n/** @enumType */\nexport type ImageCategoryTypesWithLiterals =\n | ImageCategoryTypes\n | 'UNKNOWN_CategoryName'\n | 'IMAGE'\n | 'IMAGE_BACKGROUND';\n\nexport interface Video {\n /** media manager categories to open media manager filtered by the component needs */\n category?: VideoCategoryTypesWithLiterals;\n}\n\nexport enum VideoCategoryTypes {\n /** Default value when video category is not specified */\n UNKNOWN_VideoCategoryTypes = 'UNKNOWN_VideoCategoryTypes',\n /** Videos without transparency - mapped to VIDEO */\n VIDEO_OPAQUE = 'VIDEO_OPAQUE',\n}\n\n/** @enumType */\nexport type VideoCategoryTypesWithLiterals =\n | VideoCategoryTypes\n | 'UNKNOWN_VideoCategoryTypes'\n | 'VIDEO_OPAQUE';\n\nexport interface VectorArt {\n /** media manager categories to open media manager filtered by the component needs */\n category?: VectorArtCategoryTypesWithLiterals;\n}\n\nexport enum VectorArtCategoryTypes {\n /** Default value when vector art category is not specified */\n UNKNOWN_VectorArtCategoryTypes = 'UNKNOWN_VectorArtCategoryTypes',\n /** Vector Art (both basic and art shapes) - mapped to VECTOR_ART */\n SHAPE_ALL = 'SHAPE_ALL',\n /** Basic Shapes - mapped to SHAPE_BASIC */\n SHAPE_BASIC = 'SHAPE_BASIC',\n /** Vector Art Shapes - mapped to SHAPE_ART */\n SHAPE_ART = 'SHAPE_ART',\n /** Social Icons - deprecated use SHAPE_SOCIAL instead */\n ICON_SOCIAL = 'ICON_SOCIAL',\n /** Location Icons - mapped to SHAPE_LOCATION */\n SHAPE_LOCATION = 'SHAPE_LOCATION',\n /** Documents Icons - mapped to SHAPE_DOCUMENTS */\n SHAPE_DOCUMENTS = 'SHAPE_DOCUMENTS',\n /** Social Icons - mapped to SHAPE_SOCIAL from type SVG */\n SHAPE_SOCIAL = 'SHAPE_SOCIAL',\n /** Arrow Icons - mapped to SHAPE_ARROWS */\n SHAPE_ARROWS = 'SHAPE_ARROWS',\n}\n\n/** @enumType */\nexport type VectorArtCategoryTypesWithLiterals =\n | VectorArtCategoryTypes\n | 'UNKNOWN_VectorArtCategoryTypes'\n | 'SHAPE_ALL'\n | 'SHAPE_BASIC'\n | 'SHAPE_ART'\n | 'ICON_SOCIAL'\n | 'SHAPE_LOCATION'\n | 'SHAPE_DOCUMENTS'\n | 'SHAPE_SOCIAL'\n | 'SHAPE_ARROWS';\n\nexport interface EditorFunction {\n /**\n * The Parameters expected by the function, can be empty\n * @maxSize 10\n */\n parameters?: FunctionParameter[];\n /** The result of the function, can be empty for void return */\n returns?: FunctionReturnType;\n /** Whether the function returns a promise with the type of the result */\n async?: boolean | null;\n /**\n * The display name of the function for paneles\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * The description of the function for human readability\n * @maxLength 300\n */\n description?: string | null;\n}\n\nexport interface FunctionParameter\n extends FunctionParameterSelectedDataTypeOneOf {\n /** In case of an array */\n arrayItems?: FunctionParameterArrayItems;\n /** In case of a complex object */\n data?: FunctionParameterItems;\n /** In case of a function */\n function?: EditorFunction;\n /** The type of the Parameter, does not include containers */\n dataType?: DataTypeWithLiterals;\n /** Whether the Parameter is optional, limitations of Javascript apply, only the last parameters can be optional */\n optional?: boolean | null;\n /**\n * The display name of the Parameter for human readability\n * @maxLength 100\n */\n displayName?: string | null;\n /** @maxLength 100 */\n description?: string | null;\n}\n\n/** @oneof */\nexport interface FunctionParameterSelectedDataTypeOneOf {\n /** In case of an array */\n arrayItems?: FunctionParameterArrayItems;\n /** In case of a complex object */\n data?: FunctionParameterItems;\n /** In case of a function */\n function?: EditorFunction;\n}\n\n/** An array of data items or complex data types */\nexport interface FunctionParameterArrayItems\n extends FunctionParameterArrayItemsArrayDataOneOf {\n /**\n * The definition of complex objects in each item of the Array - DEPRECATED, use `data` inside the item instead\n * @deprecated The definition of complex objects in each item of the Array - DEPRECATED, use `data` inside the item instead\n * @replacedBy item\n * @targetRemovalDate 2025-12-18\n */\n data?: FunctionParameterItems;\n /** For a single data type in the array, including another array */\n item?: FunctionParameter;\n}\n\n/** @oneof */\nexport interface FunctionParameterArrayItemsArrayDataOneOf {\n /**\n * The definition of complex objects in each item of the Array - DEPRECATED, use `data` inside the item instead\n * @deprecated The definition of complex objects in each item of the Array - DEPRECATED, use `data` inside the item instead\n * @replacedBy item\n * @targetRemovalDate 2025-12-18\n */\n data?: FunctionParameterItems;\n /** For a single data type in the array, including another array */\n item?: FunctionParameter;\n}\n\nexport interface FunctionParameterItems {\n /**\n * For an array of complex object types\n * Each item in the array, will contain all this data structure\n */\n items?: Record<string, FunctionParameter>;\n}\n\nexport interface FunctionReturnType\n extends FunctionReturnTypeSelectedDataTypeOneOf {\n /** In case of an array */\n arrayItems?: FunctionParameterArrayItems;\n /** In case of a complex object */\n data?: FunctionParameterItems;\n /** The type of the return value, does not include containers */\n dataType?: DataTypeWithLiterals;\n /**\n * The display name of the return type for human readability\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * The description of the function return type for human readability\n * @maxLength 100\n */\n description?: string | null;\n}\n\n/** @oneof */\nexport interface FunctionReturnTypeSelectedDataTypeOneOf {\n /** In case of an array */\n arrayItems?: FunctionParameterArrayItems;\n /** In case of a complex object */\n data?: FunctionParameterItems;\n}\n\nexport interface ElementItem extends ElementItemSelectedElementTypeOneOf {\n /** An new element definition */\n inlineElement?: InlineElement;\n /** A reference to the used element with overrides */\n refElement?: RefElement;\n /** Defines the type of element we are configuring */\n elementType?: ElementTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ElementItemSelectedElementTypeOneOf {\n /** An new element definition */\n inlineElement?: InlineElement;\n /** A reference to the used element with overrides */\n refElement?: RefElement;\n}\n\nexport enum ElementType {\n UNKNOWN_ElementType = 'UNKNOWN_ElementType',\n /** An element that was written as part of the component */\n inlineElement = 'inlineElement',\n /** An element provided by the Wix ecosystem that we are reusing. These elements must exist in the Wix DEV Center. */\n refElement = 'refElement',\n}\n\n/** @enumType */\nexport type ElementTypeWithLiterals =\n | ElementType\n | 'UNKNOWN_ElementType'\n | 'inlineElement'\n | 'refElement';\n\nexport interface InlineElement {\n /**\n * Relative DOM Query selector for this element to the component root. We assume nesting by it's parent elements for CSS Vars scoping.\n * @minLength 4\n * @maxLength 300\n */\n selector?: string;\n /**\n * Human friendly name on the editor stage when the component is in interaction with the user\n * @maxLength 50\n */\n displayName?: string;\n /** style-api of this element, a map of style-items where the key is the style-item name and the value is the style-item definition. These will be manifested as CSS vars in the scope of the component and prefixed with `--` */\n style?: Record<string, StyleItem>;\n /** data-api of this element, a map of data-items where the key is the data-item name and the value is the data-item definition */\n data?: Record<string, DataItem>;\n /** elements-map of this element, a map of inner-elements where the key is the element name and the value is the element definition */\n elements?: Record<string, ElementItem>;\n /** editor-behaviors-api of this inner-element, will determine which type of editor experiences this inner-element should support */\n behaviors?: Behaviors;\n /** Collection of the native actions specified for the concrete component */\n actions?: Actions;\n /** Custom actions specified for the component, allowing for flexibility beyond native actions */\n customActions?: Record<string, Action>;\n /** Component presets definition. Canonically useful for different layout or theming */\n presets?: Record<string, PresetItem>;\n /** The Archetype this component adheres to, to be used for classification by AI models */\n archetype?: ArchetypeWithLiterals;\n /** A map with definitions of states that this element can be edited in */\n states?: Record<string, ElementState>;\n /** A reference to a state that needs to be triggered in order for this element to be visible */\n visibleState?: VisibleState;\n /**\n * Display filters for the Element, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The Element is the first in line to affect the display, Preset and State are after it\n */\n displayFilters?: DisplayFilters;\n /** Display groups for the element, used to group elements in the editor for better UX */\n displayGroups?: Record<string, DisplayGroupItem>;\n /** A map of css-properties that this element supports, where the key is the CSS property name and the value is the CSS property definition */\n cssProperties?: Record<string, CssPropertyItem>;\n /** A map of css-custom-properties that this element supports, where the key is the CSS property name and the value is the CSS property definition */\n cssCustomProperties?: Record<string, CssCustomPropertyItem>;\n /** A reference to a help article for this element */\n helpArticle?: HelpArticle;\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future, add new types and definitions in css_properties.proto */\nexport interface StyleItem\n extends StyleItemSelectedItemTypeOneOf,\n StyleItemSelectedCssPropertyTypeOneOf,\n StyleItemSelectedCssVariableTypeOneOf {\n /**\n * DEPRECATED: use cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @deprecated DEPRECATED: use cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @replacedBy cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @targetRemovalDate 2025-08-01\n */\n cssPropertyType?: CssPropertyTypeEnumCssPropertyTypeWithLiterals;\n /**\n * DEPRECATED: use cssCustomProperties instead\n * @deprecated DEPRECATED: use cssCustomProperties instead\n * @replacedBy cssCustomProperties\n * @targetRemovalDate 2025-08-01\n */\n cssVariableType?: CssVariableTypeEnumCssDataTypeWithLiterals;\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n /** Additional options to refine the customEnum style item */\n customEnum?: CustomEnum;\n /** Additional options to refine the number style item */\n number?: CssNumber;\n /**\n * The type of the style-item, used to define the type of the css property or css variable\n * @deprecated The type of the style-item, used to define the type of the css property or css variable\n * @replacedBy cssPropertyType or cssVariableType\n * @targetRemovalDate 2025-08-01\n */\n styleType?: StyleTypeWithLiterals;\n /** The default value for the style-item when the component is in the \"regular\" state */\n defaultValue?: any;\n /** The default values for the style-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n /**\n * Will be used as displayName of this style-item\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * DEPRECATED - use cssCustomProperties instead\n * @deprecated DEPRECATED - use cssCustomProperties instead\n * @replacedBy cssCustomProperties\n * @targetRemovalDate 2025-08-01\n */\n cssCustomProperty?: boolean | null;\n}\n\n/** @oneof */\nexport interface StyleItemSelectedItemTypeOneOf {\n /**\n * DEPRECATED: use cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @deprecated DEPRECATED: use cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @replacedBy cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @targetRemovalDate 2025-08-01\n */\n cssPropertyType?: CssPropertyTypeEnumCssPropertyTypeWithLiterals;\n /**\n * DEPRECATED: use cssCustomProperties instead\n * @deprecated DEPRECATED: use cssCustomProperties instead\n * @replacedBy cssCustomProperties\n * @targetRemovalDate 2025-08-01\n */\n cssVariableType?: CssVariableTypeEnumCssDataTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface StyleItemSelectedCssPropertyTypeOneOf {\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n}\n\n/** @oneof */\nexport interface StyleItemSelectedCssVariableTypeOneOf {\n /** Additional options to refine the customEnum style item */\n customEnum?: CustomEnum;\n /** Additional options to refine the number style item */\n number?: CssNumber;\n}\n\n/** The supported [CSS Property Types](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference#index) in Javascript naming format */\nexport enum CssPropertyTypeEnumCssPropertyType {\n UNKNOWN_CssPropertyType = 'UNKNOWN_CssPropertyType',\n /** background properties */\n background = 'background',\n backgroundSize = 'backgroundSize',\n backgroundColor = 'backgroundColor',\n backgroundImage = 'backgroundImage',\n backgroundClip = 'backgroundClip',\n backgroundOrigin = 'backgroundOrigin',\n backgroundPosition = 'backgroundPosition',\n backgroundRepeat = 'backgroundRepeat',\n backgroundAttachment = 'backgroundAttachment',\n fill = 'fill',\n fillOpacity = 'fillOpacity',\n /** margin properties */\n margin = 'margin',\n marginTop = 'marginTop',\n marginRight = 'marginRight',\n marginBottom = 'marginBottom',\n marginLeft = 'marginLeft',\n marginInlineStart = 'marginInlineStart',\n marginInlineEnd = 'marginInlineEnd',\n /** padding properties */\n padding = 'padding',\n paddingTop = 'paddingTop',\n paddingRight = 'paddingRight',\n paddingBottom = 'paddingBottom',\n paddingLeft = 'paddingLeft',\n paddingInlineStart = 'paddingInlineStart',\n paddingInlineEnd = 'paddingInlineEnd',\n /** border properties */\n border = 'border',\n borderWidth = 'borderWidth',\n borderStyle = 'borderStyle',\n borderColor = 'borderColor',\n borderTop = 'borderTop',\n borderTopColor = 'borderTopColor',\n borderTopWidth = 'borderTopWidth',\n borderTopStyle = 'borderTopStyle',\n borderRight = 'borderRight',\n borderRightColor = 'borderRightColor',\n borderRightWidth = 'borderRightWidth',\n borderRightStyle = 'borderRightStyle',\n borderBottom = 'borderBottom',\n borderBottomColor = 'borderBottomColor',\n borderBottomWidth = 'borderBottomWidth',\n borderBottomStyle = 'borderBottomStyle',\n borderLeft = 'borderLeft',\n borderLeftColor = 'borderLeftColor',\n borderLeftWidth = 'borderLeftWidth',\n borderLeftStyle = 'borderLeftStyle',\n borderInlineStart = 'borderInlineStart',\n borderInlineStartColor = 'borderInlineStartColor',\n borderInlineStartWidth = 'borderInlineStartWidth',\n borderInlineStartStyle = 'borderInlineStartStyle',\n borderInlineEnd = 'borderInlineEnd',\n borderInlineEndColor = 'borderInlineEndColor',\n borderInlineEndWidth = 'borderInlineEndWidth',\n borderInlineEndStyle = 'borderInlineEndStyle',\n borderRadius = 'borderRadius',\n borderTopLeftRadius = 'borderTopLeftRadius',\n borderTopRightRadius = 'borderTopRightRadius',\n borderBottomRightRadius = 'borderBottomRightRadius',\n borderBottomLeftRadius = 'borderBottomLeftRadius',\n borderStartStartRadius = 'borderStartStartRadius',\n borderStartEndRadius = 'borderStartEndRadius',\n borderEndStartRadius = 'borderEndStartRadius',\n borderEndEndRadius = 'borderEndEndRadius',\n /** text properties */\n font = 'font',\n fontFamily = 'fontFamily',\n fontSize = 'fontSize',\n fontStretch = 'fontStretch',\n fontStyle = 'fontStyle',\n fontVariant = 'fontVariant',\n fontWeight = 'fontWeight',\n lineHeight = 'lineHeight',\n color = 'color',\n letterSpacing = 'letterSpacing',\n writingMode = 'writingMode',\n textAlign = 'textAlign',\n textTransform = 'textTransform',\n textShadow = 'textShadow',\n textOverflow = 'textOverflow',\n textIndent = 'textIndent',\n textDecoration = 'textDecoration',\n textDecorationColor = 'textDecorationColor',\n textDecorationLine = 'textDecorationLine',\n textDecorationStyle = 'textDecorationStyle',\n textDecorationThickness = 'textDecorationThickness',\n /** general box properties */\n boxShadow = 'boxShadow',\n opacity = 'opacity',\n overflow = 'overflow',\n /** layout properties */\n display = 'display',\n alignSelf = 'alignSelf',\n justifyContent = 'justifyContent',\n alignItems = 'alignItems',\n flexDirection = 'flexDirection',\n gap = 'gap',\n height = 'height',\n width = 'width',\n columnGap = 'columnGap',\n rowGap = 'rowGap',\n /** filters */\n filter = 'filter',\n backdropFilter = 'backdropFilter',\n /** media sizing & alignment */\n objectFit = 'objectFit',\n objectPosition = 'objectPosition',\n /** blending & compositing */\n mixBlendMode = 'mixBlendMode',\n isolation = 'isolation',\n /** stroke properties */\n stroke = 'stroke',\n strokeWidth = 'strokeWidth',\n strokeOpacity = 'strokeOpacity',\n}\n\n/** @enumType */\nexport type CssPropertyTypeEnumCssPropertyTypeWithLiterals =\n | CssPropertyTypeEnumCssPropertyType\n | 'UNKNOWN_CssPropertyType'\n | 'background'\n | 'backgroundSize'\n | 'backgroundColor'\n | 'backgroundImage'\n | 'backgroundClip'\n | 'backgroundOrigin'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundAttachment'\n | 'fill'\n | 'fillOpacity'\n | 'margin'\n | 'marginTop'\n | 'marginRight'\n | 'marginBottom'\n | 'marginLeft'\n | 'marginInlineStart'\n | 'marginInlineEnd'\n | 'padding'\n | 'paddingTop'\n | 'paddingRight'\n | 'paddingBottom'\n | 'paddingLeft'\n | 'paddingInlineStart'\n | 'paddingInlineEnd'\n | 'border'\n | 'borderWidth'\n | 'borderStyle'\n | 'borderColor'\n | 'borderTop'\n | 'borderTopColor'\n | 'borderTopWidth'\n | 'borderTopStyle'\n | 'borderRight'\n | 'borderRightColor'\n | 'borderRightWidth'\n | 'borderRightStyle'\n | 'borderBottom'\n | 'borderBottomColor'\n | 'borderBottomWidth'\n | 'borderBottomStyle'\n | 'borderLeft'\n | 'borderLeftColor'\n | 'borderLeftWidth'\n | 'borderLeftStyle'\n | 'borderInlineStart'\n | 'borderInlineStartColor'\n | 'borderInlineStartWidth'\n | 'borderInlineStartStyle'\n | 'borderInlineEnd'\n | 'borderInlineEndColor'\n | 'borderInlineEndWidth'\n | 'borderInlineEndStyle'\n | 'borderRadius'\n | 'borderTopLeftRadius'\n | 'borderTopRightRadius'\n | 'borderBottomRightRadius'\n | 'borderBottomLeftRadius'\n | 'borderStartStartRadius'\n | 'borderStartEndRadius'\n | 'borderEndStartRadius'\n | 'borderEndEndRadius'\n | 'font'\n | 'fontFamily'\n | 'fontSize'\n | 'fontStretch'\n | 'fontStyle'\n | 'fontVariant'\n | 'fontWeight'\n | 'lineHeight'\n | 'color'\n | 'letterSpacing'\n | 'writingMode'\n | 'textAlign'\n | 'textTransform'\n | 'textShadow'\n | 'textOverflow'\n | 'textIndent'\n | 'textDecoration'\n | 'textDecorationColor'\n | 'textDecorationLine'\n | 'textDecorationStyle'\n | 'textDecorationThickness'\n | 'boxShadow'\n | 'opacity'\n | 'overflow'\n | 'display'\n | 'alignSelf'\n | 'justifyContent'\n | 'alignItems'\n | 'flexDirection'\n | 'gap'\n | 'height'\n | 'width'\n | 'columnGap'\n | 'rowGap'\n | 'filter'\n | 'backdropFilter'\n | 'objectFit'\n | 'objectPosition'\n | 'mixBlendMode'\n | 'isolation'\n | 'stroke'\n | 'strokeWidth'\n | 'strokeOpacity';\n\n/** The supported [CSS Data Types](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Types) in Javascript naming format */\nexport enum CssVariableTypeEnumCssDataType {\n UNKNOWN_CssDataType = 'UNKNOWN_CssDataType',\n number = 'number',\n length = 'length',\n color = 'color',\n angle = 'angle',\n percentage = 'percentage',\n lengthPercentage = 'lengthPercentage',\n blendMode = 'blendMode',\n customEnum = 'customEnum',\n string = 'string',\n time = 'time',\n}\n\n/** @enumType */\nexport type CssVariableTypeEnumCssDataTypeWithLiterals =\n | CssVariableTypeEnumCssDataType\n | 'UNKNOWN_CssDataType'\n | 'number'\n | 'length'\n | 'color'\n | 'angle'\n | 'percentage'\n | 'lengthPercentage'\n | 'blendMode'\n | 'customEnum'\n | 'string'\n | 'time';\n\n/** The supported [CSS Property Types & CSS Data Types](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference#index) in Javascript naming format */\nexport enum StyleType {\n UNKNOWN_StyleType = 'UNKNOWN_StyleType',\n /** css-data-types */\n number = 'number',\n string = 'string',\n angle = 'angle',\n length = 'length',\n percentage = 'percentage',\n lengthPercentage = 'lengthPercentage',\n blendMode = 'blendMode',\n customEnum = 'customEnum',\n time = 'time',\n /** background properties */\n background = 'background',\n backgroundSize = 'backgroundSize',\n backgroundColor = 'backgroundColor',\n backgroundImage = 'backgroundImage',\n backgroundClip = 'backgroundClip',\n backgroundOrigin = 'backgroundOrigin',\n backgroundPosition = 'backgroundPosition',\n backgroundRepeat = 'backgroundRepeat',\n backgroundAttachment = 'backgroundAttachment',\n /** margin properties */\n margin = 'margin',\n marginTop = 'marginTop',\n marginRight = 'marginRight',\n marginBottom = 'marginBottom',\n marginLeft = 'marginLeft',\n marginInlineStart = 'marginInlineStart',\n marginInlineEnd = 'marginInlineEnd',\n /** padding properties */\n padding = 'padding',\n paddingTop = 'paddingTop',\n paddingRight = 'paddingRight',\n paddingBottom = 'paddingBottom',\n paddingLeft = 'paddingLeft',\n paddingInlineStart = 'paddingInlineStart',\n paddingInlineEnd = 'paddingInlineEnd',\n /** border properties */\n border = 'border',\n borderWidth = 'borderWidth',\n borderStyle = 'borderStyle',\n borderColor = 'borderColor',\n borderTop = 'borderTop',\n borderTopColor = 'borderTopColor',\n borderTopWidth = 'borderTopWidth',\n borderTopStyle = 'borderTopStyle',\n borderRight = 'borderRight',\n borderRightColor = 'borderRightColor',\n borderRightWidth = 'borderRightWidth',\n borderRightStyle = 'borderRightStyle',\n borderBottom = 'borderBottom',\n borderBottomColor = 'borderBottomColor',\n borderBottomWidth = 'borderBottomWidth',\n borderBottomStyle = 'borderBottomStyle',\n borderLeft = 'borderLeft',\n borderLeftColor = 'borderLeftColor',\n borderLeftWidth = 'borderLeftWidth',\n borderLeftStyle = 'borderLeftStyle',\n borderInlineStart = 'borderInlineStart',\n borderInlineStartColor = 'borderInlineStartColor',\n borderInlineStartWidth = 'borderInlineStartWidth',\n borderInlineStartStyle = 'borderInlineStartStyle',\n borderInlineEnd = 'borderInlineEnd',\n borderInlineEndColor = 'borderInlineEndColor',\n borderInlineEndWidth = 'borderInlineEndWidth',\n borderInlineEndStyle = 'borderInlineEndStyle',\n /** border-radius properties */\n borderRadius = 'borderRadius',\n borderTopLeftRadius = 'borderTopLeftRadius',\n borderTopRightRadius = 'borderTopRightRadius',\n borderBottomRightRadius = 'borderBottomRightRadius',\n borderBottomLeftRadius = 'borderBottomLeftRadius',\n borderStartStartRadius = 'borderStartStartRadius',\n borderStartEndRadius = 'borderStartEndRadius',\n borderEndStartRadius = 'borderEndStartRadius',\n borderEndEndRadius = 'borderEndEndRadius',\n /** font properties */\n font = 'font',\n fontFamily = 'fontFamily',\n fontSize = 'fontSize',\n fontStretch = 'fontStretch',\n fontStyle = 'fontStyle',\n fontVariant = 'fontVariant',\n fontWeight = 'fontWeight',\n lineHeight = 'lineHeight',\n /** text properties */\n color = 'color',\n letterSpacing = 'letterSpacing',\n writingMode = 'writingMode',\n textAlign = 'textAlign',\n textTransform = 'textTransform',\n textShadow = 'textShadow',\n textOverflow = 'textOverflow',\n textIndent = 'textIndent',\n /** text-decoration properties */\n textDecoration = 'textDecoration',\n textDecorationColor = 'textDecorationColor',\n textDecorationLine = 'textDecorationLine',\n textDecorationStyle = 'textDecorationStyle',\n textDecorationThickness = 'textDecorationThickness',\n /** box related properties */\n boxShadow = 'boxShadow',\n opacity = 'opacity',\n overflow = 'overflow',\n overflowX = 'overflowX',\n overflowY = 'overflowY',\n /** layout properties */\n display = 'display',\n alignSelf = 'alignSelf',\n justifyContent = 'justifyContent',\n alignItems = 'alignItems',\n flexDirection = 'flexDirection',\n height = 'height',\n width = 'width',\n gap = 'gap',\n columnGap = 'columnGap',\n rowGap = 'rowGap',\n /** filters */\n filter = 'filter',\n backdropFilter = 'backdropFilter',\n /** media sizing & alignment */\n objectFit = 'objectFit',\n objectPosition = 'objectPosition',\n /** blending & compositing */\n mixBlendMode = 'mixBlendMode',\n isolation = 'isolation',\n /** stroke properties */\n stroke = 'stroke',\n strokeWidth = 'strokeWidth',\n strokeOpacity = 'strokeOpacity',\n /** fill properties */\n fill = 'fill',\n fillOpacity = 'fillOpacity',\n}\n\n/** @enumType */\nexport type StyleTypeWithLiterals =\n | StyleType\n | 'UNKNOWN_StyleType'\n | 'number'\n | 'string'\n | 'angle'\n | 'length'\n | 'percentage'\n | 'lengthPercentage'\n | 'blendMode'\n | 'customEnum'\n | 'time'\n | 'background'\n | 'backgroundSize'\n | 'backgroundColor'\n | 'backgroundImage'\n | 'backgroundClip'\n | 'backgroundOrigin'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundAttachment'\n | 'margin'\n | 'marginTop'\n | 'marginRight'\n | 'marginBottom'\n | 'marginLeft'\n | 'marginInlineStart'\n | 'marginInlineEnd'\n | 'padding'\n | 'paddingTop'\n | 'paddingRight'\n | 'paddingBottom'\n | 'paddingLeft'\n | 'paddingInlineStart'\n | 'paddingInlineEnd'\n | 'border'\n | 'borderWidth'\n | 'borderStyle'\n | 'borderColor'\n | 'borderTop'\n | 'borderTopColor'\n | 'borderTopWidth'\n | 'borderTopStyle'\n | 'borderRight'\n | 'borderRightColor'\n | 'borderRightWidth'\n | 'borderRightStyle'\n | 'borderBottom'\n | 'borderBottomColor'\n | 'borderBottomWidth'\n | 'borderBottomStyle'\n | 'borderLeft'\n | 'borderLeftColor'\n | 'borderLeftWidth'\n | 'borderLeftStyle'\n | 'borderInlineStart'\n | 'borderInlineStartColor'\n | 'borderInlineStartWidth'\n | 'borderInlineStartStyle'\n | 'borderInlineEnd'\n | 'borderInlineEndColor'\n | 'borderInlineEndWidth'\n | 'borderInlineEndStyle'\n | 'borderRadius'\n | 'borderTopLeftRadius'\n | 'borderTopRightRadius'\n | 'borderBottomRightRadius'\n | 'borderBottomLeftRadius'\n | 'borderStartStartRadius'\n | 'borderStartEndRadius'\n | 'borderEndStartRadius'\n | 'borderEndEndRadius'\n | 'font'\n | 'fontFamily'\n | 'fontSize'\n | 'fontStretch'\n | 'fontStyle'\n | 'fontVariant'\n | 'fontWeight'\n | 'lineHeight'\n | 'color'\n | 'letterSpacing'\n | 'writingMode'\n | 'textAlign'\n | 'textTransform'\n | 'textShadow'\n | 'textOverflow'\n | 'textIndent'\n | 'textDecoration'\n | 'textDecorationColor'\n | 'textDecorationLine'\n | 'textDecorationStyle'\n | 'textDecorationThickness'\n | 'boxShadow'\n | 'opacity'\n | 'overflow'\n | 'overflowX'\n | 'overflowY'\n | 'display'\n | 'alignSelf'\n | 'justifyContent'\n | 'alignItems'\n | 'flexDirection'\n | 'height'\n | 'width'\n | 'gap'\n | 'columnGap'\n | 'rowGap'\n | 'filter'\n | 'backdropFilter'\n | 'objectFit'\n | 'objectPosition'\n | 'mixBlendMode'\n | 'isolation'\n | 'stroke'\n | 'strokeWidth'\n | 'strokeOpacity'\n | 'fill'\n | 'fillOpacity';\n\nexport interface Filter {\n /**\n * List of filter functions in case of reducing the abilities exposed to the User\n * @maxSize 100\n */\n filterFunctions?: FilterFunctionWithLiterals[];\n}\n\nexport enum FilterFunction {\n UNKNOWN_FilterFunctions = 'UNKNOWN_FilterFunctions',\n /** The value used for blur filter */\n blur = 'blur',\n /** The value used for brightness filter */\n brightness = 'brightness',\n /** The value used for contrast filter */\n contrast = 'contrast',\n /** The value used for drop-shadow filter */\n drop_shadow = 'drop_shadow',\n /** The value used for grayscale filter */\n grayscale = 'grayscale',\n /** The value used for hue-rotate filter */\n hue_rotate = 'hue_rotate',\n /** The value used for invert filter */\n invert = 'invert',\n /** The value used for opacity filter */\n opacity = 'opacity',\n /** The value used for sepia filter */\n sepia = 'sepia',\n /** The value used for saturate filter */\n saturate = 'saturate',\n}\n\n/** @enumType */\nexport type FilterFunctionWithLiterals =\n | FilterFunction\n | 'UNKNOWN_FilterFunctions'\n | 'blur'\n | 'brightness'\n | 'contrast'\n | 'drop_shadow'\n | 'grayscale'\n | 'hue_rotate'\n | 'invert'\n | 'opacity'\n | 'sepia'\n | 'saturate';\n\nexport interface BackdropFilter {\n /**\n * List of filter functions in case of reducing the abilities exposed to the User\n * @maxSize 100\n */\n filterFunctions?: FilterFunctionWithLiterals[];\n}\n\nexport interface Display {\n /**\n * list of display values in case we want to reduce the abilities exposed to the User\n * @maxSize 20\n */\n displayValues?: DisplayValueEnumDisplayValueWithLiterals[];\n}\n\nexport enum DisplayValueEnumDisplayValue {\n UNKNOWN_DisplayValue = 'UNKNOWN_DisplayValue',\n none = 'none',\n block = 'block',\n inline = 'inline',\n flow = 'flow',\n flowRoot = 'flowRoot',\n table = 'table',\n flex = 'flex',\n grid = 'grid',\n list_item = 'list_item',\n contents = 'contents',\n inline_block = 'inline_block',\n inline_table = 'inline_table',\n inline_flex = 'inline_flex',\n inline_grid = 'inline_grid',\n}\n\n/** @enumType */\nexport type DisplayValueEnumDisplayValueWithLiterals =\n | DisplayValueEnumDisplayValue\n | 'UNKNOWN_DisplayValue'\n | 'none'\n | 'block'\n | 'inline'\n | 'flow'\n | 'flowRoot'\n | 'table'\n | 'flex'\n | 'grid'\n | 'list_item'\n | 'contents'\n | 'inline_block'\n | 'inline_table'\n | 'inline_flex'\n | 'inline_grid';\n\nexport interface WritingMode {\n /**\n * list of writing-mode values in case we want to reduce the abilities exposed to the User\n * @maxSize 20\n */\n writingModeValues?: WritingModeValueWithLiterals[];\n}\n\nexport enum WritingModeValue {\n UNKNOWN_WritingModeValue = 'UNKNOWN_WritingModeValue',\n horizontalTb = 'horizontalTb',\n verticalRl = 'verticalRl',\n verticalLr = 'verticalLr',\n sidewaysRl = 'sidewaysRl',\n sidewaysLr = 'sidewaysLr',\n}\n\n/** @enumType */\nexport type WritingModeValueWithLiterals =\n | WritingModeValue\n | 'UNKNOWN_WritingModeValue'\n | 'horizontalTb'\n | 'verticalRl'\n | 'verticalLr'\n | 'sidewaysRl'\n | 'sidewaysLr';\n\nexport interface Background extends BackgroundBackgroundMediaModeOneOf {\n /** The image media manager category to open media manager filtered by the component needs */\n imageCategory?: ImageCategoryTypesWithLiterals;\n /** The Shape Divider media manager category to open media manager filtered by the component needs */\n vectorArtCategory?: VectorArtCategoryTypesWithLiterals;\n}\n\n/** @oneof */\nexport interface BackgroundBackgroundMediaModeOneOf {\n /** The image media manager category to open media manager filtered by the component needs */\n imageCategory?: ImageCategoryTypesWithLiterals;\n /** The Shape Divider media manager category to open media manager filtered by the component needs */\n vectorArtCategory?: VectorArtCategoryTypesWithLiterals;\n}\n\nexport enum BackgroundModeEnum {\n UNKNOWN_BackgroundModeEnum = 'UNKNOWN_BackgroundModeEnum',\n}\n\n/** @enumType */\nexport type BackgroundModeEnumWithLiterals =\n | BackgroundModeEnum\n | 'UNKNOWN_BackgroundModeEnum';\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface CustomEnum {\n /**\n * DEPRECATED: use cssDataType instead\n * @deprecated DEPRECATED: use cssDataType instead\n * @replacedBy cssDataType\n * @targetRemovalDate 2025-08-01\n */\n cssVariableType?: CssVariableTypeEnumCssDataTypeWithLiterals;\n /** The type of the custom enum, used to define the type of the values allowed in the enum */\n cssDataType?: CssDataTypeWithLiterals;\n /**\n * The allowed value options for this custom enum\n * @maxSize 100\n */\n options?: CustomEnumOption[];\n}\n\nexport enum CssDataType {\n UNKNOWN_CssDataType = 'UNKNOWN_CssDataType',\n number = 'number',\n string = 'string',\n angle = 'angle',\n color = 'color',\n length = 'length',\n percentage = 'percentage',\n lengthPercentage = 'lengthPercentage',\n blendMode = 'blendMode',\n customEnum = 'customEnum',\n time = 'time',\n}\n\n/** @enumType */\nexport type CssDataTypeWithLiterals =\n | CssDataType\n | 'UNKNOWN_CssDataType'\n | 'number'\n | 'string'\n | 'angle'\n | 'color'\n | 'length'\n | 'percentage'\n | 'lengthPercentage'\n | 'blendMode'\n | 'customEnum'\n | 'time';\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface CustomEnumOption {\n /**\n * the enum value\n * @maxLength 100\n */\n value?: string;\n /**\n * Will be used as displayName of this enum option\n * @maxLength 100\n */\n displayName?: string;\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface CustomEnumOptionCssProperty {\n /**\n * the css property\n * @maxLength 100\n */\n property?: string;\n /**\n * the css value\n * @maxLength 300\n */\n value?: string;\n}\n\nexport interface CssNumber {\n /**\n * @deprecated\n * @replacedBy min\n * @targetRemovalDate 2025-11-30\n */\n minimum?: number | null;\n /**\n * Indicates minimum value required for the number\n * @format DECIMAL_VALUE\n */\n min?: string | null;\n /**\n * @deprecated\n * @replacedBy max\n * @targetRemovalDate 2025-11-30\n */\n maximum?: number | null;\n /**\n * Indicates maximum value allowed for the number\n * @format DECIMAL_VALUE\n */\n max?: string | null;\n /**\n * @deprecated\n * @replacedBy multiplier\n * @targetRemovalDate 2025-11-30\n */\n multipleOf?: number | null;\n /**\n * The multiplier for the number value\n * @format DECIMAL_VALUE\n */\n multiplier?: string | null;\n}\n\nexport interface Behaviors {\n /** Determines if the inner-element can be selectable in the editor */\n selectable?: boolean | null;\n /** Determines if the inner-element can be removed from the component */\n removable?: boolean | null;\n}\n\n/** List of the native actions */\nexport interface Actions {\n /** Allows enabling / disabling and overriding the settings action */\n settings?: Action;\n /** Allows enabling / disabling and overriding the design action */\n design?: Action;\n /** Allows enabling / disabling and overriding the media action */\n media?: Action;\n /** Allows enabling / disabling and overriding the manageItems action */\n manageItems?: Action;\n /** Allows enabling / disabling and overriding the dashboard action */\n dashboard?: DashboardAction;\n /** Allows enabling / disabling and overriding the manageMenu action */\n manageMenu?: Action;\n /** Allows enabling / disabling and overriding the container action */\n container?: Action;\n}\n\nexport interface Action {\n /**\n * The public human-readable name given to the action by the developer.\n * @maxLength 50\n */\n displayName?: string;\n /** A model definition for declaring a concrete instructions action will perform */\n execution?: Execution;\n}\n\nexport interface Execution extends ExecutionActionExecuteOneOf {\n /** Executes an action that manipulates component's data */\n data?: DataAction;\n /**\n * Executes an action that manipulates component's style\n * @deprecated Executes an action that manipulates component's style\n * @replacedBy cssProperty or cssCustomProperty\n * @targetRemovalDate 2025-08-01\n */\n style?: StyleAction;\n /** Executes an event-based action. Triggered event should be intercepted in the editor script */\n event?: EventAction;\n /** Opens a URL inside an iframe panel */\n panel?: PanelAction;\n /** Executes an action on a target element (based on path) */\n forward?: ForwardAction;\n /** Executes an action that is connected to a display-group */\n displayGroup?: DisplayGroupAction;\n /** Executes an action that points into a specific css-property-key, */\n cssProperty?: CssPropertyAction;\n /** Executes an action that points into a specific css-custom-property-key, */\n cssCustomProperty?: CssCustomPropertyAction;\n /** The action type allows to determine the return type of the execution function */\n actionType?: ActionTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ExecutionActionExecuteOneOf {\n /** Executes an action that manipulates component's data */\n data?: DataAction;\n /**\n * Executes an action that manipulates component's style\n * @deprecated Executes an action that manipulates component's style\n * @replacedBy cssProperty or cssCustomProperty\n * @targetRemovalDate 2025-08-01\n */\n style?: StyleAction;\n /** Executes an event-based action. Triggered event should be intercepted in the editor script */\n event?: EventAction;\n /** Opens a URL inside an iframe panel */\n panel?: PanelAction;\n /** Executes an action on a target element (based on path) */\n forward?: ForwardAction;\n /** Executes an action that is connected to a display-group */\n displayGroup?: DisplayGroupAction;\n /** Executes an action that points into a specific css-property-key, */\n cssProperty?: CssPropertyAction;\n /** Executes an action that points into a specific css-custom-property-key, */\n cssCustomProperty?: CssCustomPropertyAction;\n}\n\nexport enum ActionType {\n UNKNOWN_ActionType = 'UNKNOWN_ActionType',\n data = 'data',\n event = 'event',\n panel = 'panel',\n forward = 'forward',\n style = 'style',\n displayGroup = 'displayGroup',\n cssProperty = 'cssProperty',\n cssCustomProperty = 'cssCustomProperty',\n}\n\n/** @enumType */\nexport type ActionTypeWithLiterals =\n | ActionType\n | 'UNKNOWN_ActionType'\n | 'data'\n | 'event'\n | 'panel'\n | 'forward'\n | 'style'\n | 'displayGroup'\n | 'cssProperty'\n | 'cssCustomProperty';\n\n/**\n * Represents an action that points into a specific data-item-key,\n * the outcome of clicking such action will be determined by the editor\n */\nexport interface DataAction {\n /**\n * Points to the data item within the component’s data structure\n * @minLength 1\n * @maxLength 50\n */\n dataItemKey?: string;\n}\n\n/** DEPRECATED - use CssPropertyAction or CssCustomPropertyAction */\nexport interface StyleAction {\n /**\n * Points to the style item within the component’s style structure\n * @minLength 1\n * @maxLength 50\n */\n styleItemKey?: string;\n}\n\n/** Executes an event-based action. Triggered event should be intercepted in the editor script */\nexport interface EventAction {\n /**\n * Name of the event to be handled by the editor script\n * @minLength 1\n * @maxLength 50\n */\n event?: string;\n}\n\n/** Represents a URL-based action that opens a panel */\nexport interface PanelAction extends PanelActionSelectedPanelTypeOneOf {\n /**\n * For using a panel defined in dev-center\n * @format GUID\n */\n panelId?: string;\n /** The selected panel reference type */\n panelType?: PanelTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface PanelActionSelectedPanelTypeOneOf {\n /**\n * For using a panel defined in dev-center\n * @format GUID\n */\n panelId?: string;\n}\n\n/** list of possible panel types */\nexport enum PanelType {\n UNKNOWN_PanelType = 'UNKNOWN_PanelType',\n panelId = 'panelId',\n}\n\n/** @enumType */\nexport type PanelTypeWithLiterals = PanelType | 'UNKNOWN_PanelType' | 'panelId';\n\n/** Represents an action that targets another element within the component */\nexport interface ForwardAction extends ForwardActionActionOneOf {\n /**\n * Used when actionType is custom\n * @minLength 1\n * @maxLength 50\n */\n custom?: string;\n /** Specifies the action names (one of the natives or custom) */\n actionName?: ActionNameWithLiterals;\n /**\n * Path to the target element\n * @minLength 1\n * @maxLength 500\n */\n elementPath?: string;\n}\n\n/** @oneof */\nexport interface ForwardActionActionOneOf {\n /**\n * Used when actionType is custom\n * @minLength 1\n * @maxLength 50\n */\n custom?: string;\n}\n\nexport enum ActionName {\n UNKNOWN_ActionName = 'UNKNOWN_ActionName',\n /** Manage the component settings, this usually aligns with component data */\n settings = 'settings',\n /** Manage the `style` information */\n design = 'design',\n /** Manage any media type `data` defined in the component */\n media = 'media',\n /** Manage items in the component data */\n manageItems = 'manageItems',\n /** Open the apps default dashboard page, or select one if there is more than one */\n dashboard = 'dashboard',\n /** actionName to be triggered from the defined custom actions */\n custom = 'custom',\n /** Manage Menu Items */\n manageMenu = 'manageMenu',\n /** Shows the container actions, or select one if there is more than one */\n container = 'container',\n}\n\n/** @enumType */\nexport type ActionNameWithLiterals =\n | ActionName\n | 'UNKNOWN_ActionName'\n | 'settings'\n | 'design'\n | 'media'\n | 'manageItems'\n | 'dashboard'\n | 'custom'\n | 'manageMenu'\n | 'container';\n\n/**\n * Represents an action that points into a specific display-group-key,\n * the outcome will make the chosen display group visible to the user for changing the groups values in the component\n */\nexport interface DisplayGroupAction {\n /**\n * The display group to be used\n * @minLength 1\n * @maxLength 50\n */\n displayGroupKey?: string;\n}\n\n/**\n * Represents an action that points into a single css-property,\n * the outcome of clicking such action will be determined by the editor\n */\nexport interface CssPropertyAction {\n /**\n * Points to the style item within the component’s css-properties map\n * @minLength 1\n * @maxLength 50\n */\n cssPropertyKey?: string;\n}\n\n/**\n * Represents an action that points into a single css-custom-property,\n * the outcome of clicking such action will be determined by the editor\n */\nexport interface CssCustomPropertyAction {\n /**\n * Points to the style item within the component’s css-custom-properties map\n * @minLength 1\n * @maxLength 50\n */\n cssCustomPropertyKey?: string;\n}\n\nexport interface DashboardAction {\n /**\n * The public human-readable name given to the action by the developer.\n * @maxLength 50\n */\n displayName?: string;\n /**\n * Optional pageId of the dashboard in case there is more than one\n * @minLength 4\n * @maxLength 50\n */\n dashboardPageId?: string;\n /** A model definition for declaring a concrete instructions action will perform */\n execution?: Execution;\n}\n\nexport interface PresetItem {\n /**\n * DEPRECATED - use preset_css_url instead\n * @format WEB_URL\n * @minLength 13\n * @maxLength 500\n * @deprecated DEPRECATED - use preset_css_url instead\n * @replacedBy preset_css_url\n * @targetRemovalDate 2025-08-01\n */\n cssUrl?: string;\n /**\n * Preset name for displaying purposes in the editor\n * @maxLength 100\n */\n displayName?: string;\n /**\n * A URL to the preset thumbnail file\n * @format WEB_URL\n * @maxLength 500\n */\n thumbnailUrl?: string | null;\n /** Optional initial size of the component when switching into this preset */\n initialSize?: ComponentInitialSize;\n /**\n * Display filters for the Preset, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The Preset is the second in line to affect the display, Element is before and State is after it\n * @deprecated Display filters for the Preset, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The Preset is the second in line to affect the display, Element is before and State is after it\n * @replacedBy preset_defaults\n * @targetRemovalDate 2025-08-01\n */\n displayFilters?: DisplayFilters;\n /**\n * The default styles for this preset and the inner elements\n * @deprecated The default styles for this preset and the inner elements\n * @replacedBy preset_defaults\n * @targetRemovalDate 2025-08-01\n */\n styleDefaults?: PresetStyleDefaults;\n /** The style overrides for this preset and the inner elements */\n styleOverrides?: BreakpointPresetStyleOverrides;\n /**\n * Show this preset in panel only on specified breakpoints\n * (undefined/empty list = all breakpoints, list with values = only those breakpoints)\n * TODO: MaxSize is 2, because we only support small and large breakpoints for now\n * @maxSize 2\n */\n optimizedFor?: BreakpointEnumBreakpointWithLiterals[];\n /**\n * Optional editor layout behaviors we want to apply when this preset is selected\n * @deprecated Optional editor layout behaviors we want to apply when this preset is selected\n * @replacedBy preset_defaults\n * @targetRemovalDate 2025-08-01\n */\n layout?: EditorElementLayout;\n /**\n * A URL to the CSS file of this preset, to be used when you need to apply many css-changes or default-values to the DOM when this preset is selected, optional\n * @format WEB_URL\n * @maxLength 500\n */\n presetCssUrl?: string | null;\n /** All the default values that needs to be set when the preset is selected */\n presetDefaults?: PresetElementDefaults;\n}\n\nexport interface ComponentInitialSize {\n /** The component initial width setting */\n width?: InitialSizeSetting;\n /** The component initial height setting */\n height?: InitialSizeSetting;\n /**\n * The component will always keep the relationship between width and height when rendered\n * Only usable if width and height were set as 'pixels'\n */\n preserveAspectRatio?: boolean | null;\n}\n\nexport interface InitialSizeSetting\n extends InitialSizeSettingSelectedSizingTypeOneOf {\n /**\n * The value we should set as initial size in pixels\n * @min 1\n */\n pixels?: number;\n /** The initial size type */\n sizingType?: SizingTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface InitialSizeSettingSelectedSizingTypeOneOf {\n /**\n * The value we should set as initial size in pixels\n * @min 1\n */\n pixels?: number;\n}\n\nexport enum SizingType {\n UNKNOWN_SizingType = 'UNKNOWN_SizingType',\n /** Initial size should fit to the [content size](https://developer.mozilla.org/en-US/docs/Web/CSS/fit-content) */\n content = 'content',\n /** Initial size should stretch to the parent size and will keep tracking it unless a user changes it */\n stretched = 'stretched',\n /** Initial size should be set in pixels */\n pixels = 'pixels',\n}\n\n/** @enumType */\nexport type SizingTypeWithLiterals =\n | SizingType\n | 'UNKNOWN_SizingType'\n | 'content'\n | 'stretched'\n | 'pixels';\n\n/**\n * DisplayFilters is a collection of display filters that can be used to hide or show elements in the editor.\n * It is used to control the visibility of elements in the editor.\n * It is used to control the visibility of style items of elements in the editor.\n * It is used to control the visibility of data items of elements in the editor.\n * It is used to control the visibility of custom actions of elements in the editor.\n * The logical order of filtering is done from where the filter is defined.\n * Element takes first priority in narrowing the list, then the Preset and last is the State\n */\nexport interface DisplayFilters {\n /** DisplayFilter for elements, defines which elements to hide or show, uses the element key in the elements map, optional */\n elements?: DisplayFilter;\n /** DisplayFilter for data, defines which data items to hide or show, uses the dataItem key in the data map, optional */\n data?: DisplayFilter;\n /** DisplayFilter for custom actions, defines which custom actions to hide or show, uses the customAction key in the customActions map, optional */\n customActions?: DisplayFilter;\n /** DisplayFilter for actions, defines which actions to hide or show, uses the key in the action map, optional */\n actions?: DisplayFilter;\n /** DisplayFilter for css-properties, defines which properties to hide or show in the editor, uses the css-property name, optional */\n cssProperties?: DisplayFilter;\n /** DisplayFilter for css-custom-properties, defines which css-custom-properties to hide or show in the editor, uses the key in the css-custom-properties map, optional */\n cssCustomProperties?: DisplayFilter;\n /** DisplayFilter for states, defines which states to hide or show, uses the state key in the states map, optional */\n states?: DisplayFilter;\n}\n\n/**\n * The logic of the display filter is to define the minimal requirement\n * You can only provide one of the two fields, `hide` or `show`, but not both.\n * hide: *All items* not listed here will be shown by the editor. Useful for hiding a small list of items\n * show: *Only items* listed here will be show by the editor. Useful for hiding a large list of items\n */\nexport interface DisplayFilter {\n /**\n * Selected items to hide\n * @maxSize 100\n * @maxLength 80\n */\n hide?: string[];\n /**\n * Selected items to show\n * @maxSize 100\n * @maxLength 80\n */\n show?: string[];\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface PresetStyleDefaults {\n /** The default styles for this preset */\n style?: Record<string, StyleItemDefaults>;\n /** The default styles of inner elements for this preset */\n elements?: Record<string, ElementStyleDefaults>;\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface StyleItemDefaults {\n /** The default value of this style item */\n defaultValue?: any;\n /** The default values for the style-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface ElementStyleDefaults {\n /** The default styles for an element */\n style?: Record<string, StyleItemDefaults>;\n /** The default preset and styles for inner elements */\n elements?: Record<string, ElementStyleDefaults>;\n}\n\nexport interface BreakpointPresetStyleOverrides {\n /** The style overrides values for the default breakpoint, which will cascade to all other breakpoints (if not overridden) */\n default?: PresetStyleOverrides;\n /** The style overrides values for the small (mobile) breakpoint */\n small?: PresetStyleOverrides;\n}\n\nexport interface PresetStyleOverrides {\n /**\n * The style overrides for this preset\n * @deprecated The style overrides for this preset\n * @replacedBy cssProperties or cssCustomProperties\n * @targetRemovalDate 2025-08-01\n */\n style?: Record<string, PresetStyleItemOverrides>;\n /** The style overrides of inner elements for this preset */\n elements?: Record<string, ElementStyleOverrides>;\n /** The default values for the element css-properties when the preset is selected */\n cssProperties?: Record<string, PresetStyleItemOverrides>;\n /** The default values for the element css-custom-properties when the preset is selected */\n cssCustomProperties?: Record<string, PresetStyleItemOverrides>;\n}\n\nexport interface PresetStyleItemOverrides {\n /** The override value of this style item */\n value?: any;\n /** The override values for the style item when the component is in one of the defined states */\n statesValues?: Record<string, any>;\n}\n\nexport interface ElementStyleOverrides {\n /**\n * The override preset for an element\n * @maxLength 100\n */\n presetKey?: string | null;\n /**\n * The override styles for an element\n * @deprecated The override styles for an element\n * @replacedBy cssProperties or cssCustomProperties\n * @targetRemovalDate 2025-08-01\n */\n style?: Record<string, PresetStyleItemOverrides>;\n /** The override preset and styles for inner elements */\n elements?: Record<string, ElementStyleOverrides>;\n /** The default values for the element css-properties when the preset is selected */\n cssProperties?: Record<string, PresetStyleItemOverrides>;\n /** The default values for the element css-custom-properties when the preset is selected */\n cssCustomProperties?: Record<string, PresetStyleItemOverrides>;\n}\n\nexport enum BreakpointEnumBreakpoint {\n UNKNOWN_Breakpoint = 'UNKNOWN_Breakpoint',\n /** Represents the small (mobile) breakpoint */\n small = 'small',\n /** Represents the large (desktop) breakpoint */\n large = 'large',\n}\n\n/** @enumType */\nexport type BreakpointEnumBreakpointWithLiterals =\n | BreakpointEnumBreakpoint\n | 'UNKNOWN_Breakpoint'\n | 'small'\n | 'large';\n\n/** Top-level message containing all layout capabilities */\nexport interface EditorElementLayout {\n /** The resizing capabilities this component can supports */\n resizeDirection?: ResizeDirectionWithLiterals;\n /** Describes the ability of content to impact on the size of this component */\n contentResizeDirection?: ContentResizeDirectionWithLiterals;\n /** Will control the availability of the stretch capability for this component */\n disableStretching?: boolean | null;\n /** Will control the availability of freely positioning this component */\n disablePositioning?: boolean | null;\n /** Will control if the editor allows rotating the element */\n disableRotation?: boolean | null;\n /** Information related to content that fills the whole component visible space */\n contentFill?: ContentFill;\n /** Will control the availability of the duplicate capability for this component */\n disableDuplication?: boolean | null;\n}\n\nexport enum ContentResizeDirection {\n /** Default value when content resize behavior is not specified */\n UNKNOWN_ContentResizeDirection = 'UNKNOWN_ContentResizeDirection',\n /** Component's width will automatically adjust based on its content */\n horizontal = 'horizontal',\n /** Component's height will automatically adjust based on its content */\n vertical = 'vertical',\n /** Component's width and height will automatically adjust based on its content */\n horizontalAndVertical = 'horizontalAndVertical',\n /** Component's size will not be affected by its content */\n none = 'none',\n}\n\n/** @enumType */\nexport type ContentResizeDirectionWithLiterals =\n | ContentResizeDirection\n | 'UNKNOWN_ContentResizeDirection'\n | 'horizontal'\n | 'vertical'\n | 'horizontalAndVertical'\n | 'none';\n\nexport interface ContentFill {\n /**\n * The key of the data-item that holds the content that fills the whole component visible space, using this will provide a better layout experiences for such components\n * Restricted to data-items that hold specific data-types: \"image\", \"video\", \"vectorArt\", \"container\"\n * @maxLength 100\n */\n dataItemKey?: string | null;\n}\n\nexport interface PresetElementDefaults {\n /**\n * The element display name when the preset is selected\n * @maxLength 100\n */\n displayName?: string | null;\n /** The default values for the element css-properties when the preset is selected */\n cssProperties?: Record<string, CssPropertyItemDefaults>;\n /** The default values for the element css-custom-properties when the preset is selected */\n cssCustomProperties?: Record<string, CssPropertyItemDefaults>;\n /** The default styles for the inner elements when the preset is selected */\n elements?: Record<string, PresetInnerElementDefaults>;\n /** Optional editor layout behaviors we want to apply when this preset is selected */\n layout?: EditorElementLayout;\n /**\n * Display filters for the Preset, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The Preset is the second in line to affect the display, Element is before and State is after it\n */\n displayFilters?: DisplayFilters;\n}\n\nexport interface CssPropertyItemDefaults {\n /** The default value of this css-property-item */\n defaultValue?: any;\n /** The default values for the css-property-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n}\n\nexport interface PresetInnerElementDefaults {\n /** The default values for the element css-properties */\n cssProperties?: Record<string, CssPropertyItemDefaults>;\n /** The default values for the element css-custom-properties */\n cssCustomProperties?: Record<string, CssPropertyItemDefaults>;\n /** The default preset and styles for inner elements */\n elements?: Record<string, PresetInnerElementDefaults>;\n}\n\nexport enum Archetype {\n UNKNOWN_Archetype = 'UNKNOWN_Archetype',\n Button = 'Button',\n LoginButton = 'LoginButton',\n Image = 'Image',\n Gallery = 'Gallery',\n Video = 'Video',\n Audio = 'Audio',\n Text = 'Text',\n TextInput = 'TextInput',\n RichTextEditor = 'RichTextEditor',\n SignatureInput = 'SignatureInput',\n Checkbox = 'Checkbox',\n RadioGroup = 'RadioGroup',\n Switch = 'Switch',\n Dropdown = 'Dropdown',\n DatePicker = 'DatePicker',\n TimePicker = 'TimePicker',\n Ratings = 'Ratings',\n RatingInput = 'RatingInput',\n Menu = 'Menu',\n Pagination = 'Pagination',\n Slider = 'Slider',\n Container = 'Container',\n Carousel = 'Carousel',\n Accordion = 'Accordion',\n Tabs = 'Tabs',\n ProgressBar = 'ProgressBar',\n Upload = 'Upload',\n Social = 'Social',\n Breadcrumbs = 'Breadcrumbs',\n SearchBox = 'SearchBox',\n Map = 'Map',\n Line = 'Line',\n Logo = 'Logo',\n Avatar = 'Avatar',\n Captcha = 'Captcha',\n VectorArt = 'VectorArt',\n AnimatedGraphic = 'AnimatedGraphic',\n Cart = 'Cart',\n ContactForm = 'ContactForm',\n Frame = 'Frame',\n Divider = 'Divider',\n}\n\n/** @enumType */\nexport type ArchetypeWithLiterals =\n | Archetype\n | 'UNKNOWN_Archetype'\n | 'Button'\n | 'LoginButton'\n | 'Image'\n | 'Gallery'\n | 'Video'\n | 'Audio'\n | 'Text'\n | 'TextInput'\n | 'RichTextEditor'\n | 'SignatureInput'\n | 'Checkbox'\n | 'RadioGroup'\n | 'Switch'\n | 'Dropdown'\n | 'DatePicker'\n | 'TimePicker'\n | 'Ratings'\n | 'RatingInput'\n | 'Menu'\n | 'Pagination'\n | 'Slider'\n | 'Container'\n | 'Carousel'\n | 'Accordion'\n | 'Tabs'\n | 'ProgressBar'\n | 'Upload'\n | 'Social'\n | 'Breadcrumbs'\n | 'SearchBox'\n | 'Map'\n | 'Line'\n | 'Logo'\n | 'Avatar'\n | 'Captcha'\n | 'VectorArt'\n | 'AnimatedGraphic'\n | 'Cart'\n | 'ContactForm'\n | 'Frame'\n | 'Divider';\n\nexport interface ElementState {\n /**\n * Display name of this state\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * The class-name to apply when this state is applied\n * @maxLength 100\n */\n className?: string | null;\n /** The pseudo-class to used to target this state in the browser */\n pseudoClass?: NativeStateTypeWithLiterals;\n /** The state props to apply when this state is applied */\n props?: Record<string, any>;\n /**\n * Display filters for the state, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The state is the last item to affect the display, Element and Preset are before it\n */\n displayFilters?: DisplayFilters;\n /** The element that needs to be targeted when this state is applied */\n target?: TargetElement;\n}\n\nexport enum NativeStateType {\n UNKNOWN_NativeStateType = 'UNKNOWN_NativeStateType',\n /** native browser \"hover\" state */\n hover = 'hover',\n /** native browser \"focus\" state */\n focus = 'focus',\n /** native browser \"disabled\" state */\n disabled = 'disabled',\n /** native browser \"invalid\" state */\n invalid = 'invalid',\n}\n\n/** @enumType */\nexport type NativeStateTypeWithLiterals =\n | NativeStateType\n | 'UNKNOWN_NativeStateType'\n | 'hover'\n | 'focus'\n | 'disabled'\n | 'invalid';\n\nexport interface TargetElement {\n /**\n * The path to the element that needs to be targeted when this state is applied.\n * @minLength 1\n * @maxLength 500\n */\n elementPath?: string;\n}\n\nexport interface VisibleState {\n /**\n * The key of the state that will trigger the visibility of this element\n * @minLength 1\n * @maxLength 100\n */\n stateKey?: string;\n /**\n * The path to the element that owns the relevant state to trigger, path pattern \"/elementkey/elementkey\"\n * @minLength 1\n * @maxLength 500\n */\n elementPath?: string;\n}\n\nexport interface DisplayGroupItem\n extends DisplayGroupItemSelectedGroupTypeOneOf {\n /** A group that contains cssCustomProperties items that used one of the supported css-data-types (length, angle, number, ..._) */\n cssDataType?: ItemsGroup;\n /** A group that contains data items */\n data?: ItemsGroup;\n /** A group that contains preset items, which will be displayed in the editor as a category in the presets panel */\n presets?: ItemsGroup;\n /** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used mostly for ordering purposes */\n cssCustomProperties?: ItemsGroup;\n /** A group that contains other displayGroups items that use the same groupType, should be used mostly for ordering purposes */\n displayGroups?: ItemsGroup;\n /** A group that contains background items */\n background?: ShorthandGroupBackground;\n /** A group that contains margin items */\n margin?: Coordinates;\n /** A group that contains padding items */\n padding?: Coordinates;\n /** A group that contains border items */\n border?: Border;\n /** A group that contains border-top items */\n borderTop?: Border;\n /** A group that contains border-right items */\n borderRight?: Border;\n /** A group that contains border-bottom items */\n borderBottom?: Border;\n /** A group that contains border-left items */\n borderLeft?: Border;\n /** A group that contains border-inline-start items */\n borderInlineStart?: Border;\n /** A group that contains border-inline-end items */\n borderInlineEnd?: Border;\n /** A group that contains border-radius items */\n borderRadius?: Corners;\n /** A group that contains font items */\n font?: Font;\n /** A group that contains text-decoration items */\n textDecoration?: TextDecoration;\n /** A group that contains gap items */\n gap?: Gap;\n /** A group that contains border-color items */\n borderColor?: Coordinates;\n /** A group that contains border-width items */\n borderWidth?: Coordinates;\n /** A group that contains border-style items */\n borderStyle?: Coordinates;\n /** a group that contains items related to text */\n text?: TextGroup;\n /** A group that contains data-items related to arrayItems, will be used for enhancing the editor experience when editing them */\n arrayItems?: DataGroupsArrayItems;\n /** A group that contains common data-items that are used within array-item objects, will be used for enhancing the editor experience when editing them */\n listItem?: ListItem;\n /**\n * Display name for this Group\n * @maxLength 20\n */\n displayName?: string | null;\n /** The type of the group, used to determine the group that will be displayed in the editor */\n groupType?: GroupTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DisplayGroupItemSelectedGroupTypeOneOf {\n /** A group that contains cssCustomProperties items that used one of the supported css-data-types (length, angle, number, ..._) */\n cssDataType?: ItemsGroup;\n /** A group that contains data items */\n data?: ItemsGroup;\n /** A group that contains preset items, which will be displayed in the editor as a category in the presets panel */\n presets?: ItemsGroup;\n /** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used mostly for ordering purposes */\n cssCustomProperties?: ItemsGroup;\n /** A group that contains other displayGroups items that use the same groupType, should be used mostly for ordering purposes */\n displayGroups?: ItemsGroup;\n /** A group that contains background items */\n background?: ShorthandGroupBackground;\n /** A group that contains margin items */\n margin?: Coordinates;\n /** A group that contains padding items */\n padding?: Coordinates;\n /** A group that contains border items */\n border?: Border;\n /** A group that contains border-top items */\n borderTop?: Border;\n /** A group that contains border-right items */\n borderRight?: Border;\n /** A group that contains border-bottom items */\n borderBottom?: Border;\n /** A group that contains border-left items */\n borderLeft?: Border;\n /** A group that contains border-inline-start items */\n borderInlineStart?: Border;\n /** A group that contains border-inline-end items */\n borderInlineEnd?: Border;\n /** A group that contains border-radius items */\n borderRadius?: Corners;\n /** A group that contains font items */\n font?: Font;\n /** A group that contains text-decoration items */\n textDecoration?: TextDecoration;\n /** A group that contains gap items */\n gap?: Gap;\n /** A group that contains border-color items */\n borderColor?: Coordinates;\n /** A group that contains border-width items */\n borderWidth?: Coordinates;\n /** A group that contains border-style items */\n borderStyle?: Coordinates;\n /** a group that contains items related to text */\n text?: TextGroup;\n /** A group that contains data-items related to arrayItems, will be used for enhancing the editor experience when editing them */\n arrayItems?: DataGroupsArrayItems;\n /** A group that contains common data-items that are used within array-item objects, will be used for enhancing the editor experience when editing them */\n listItem?: ListItem;\n}\n\nexport enum GroupType {\n UNKNOWN_GroupType = 'UNKNOWN_GroupType',\n cssDataType = 'cssDataType',\n /** Deprecated, use `data` instead; */\n dataType = 'dataType',\n /** Deprecated, use `presets` instead */\n preset = 'preset',\n data = 'data',\n presets = 'presets',\n cssCustomProperties = 'cssCustomProperties',\n displayGroups = 'displayGroups',\n /** Style Shorthand Groups */\n background = 'background',\n margin = 'margin',\n padding = 'padding',\n border = 'border',\n borderTop = 'borderTop',\n borderRight = 'borderRight',\n borderBottom = 'borderBottom',\n borderLeft = 'borderLeft',\n borderRadius = 'borderRadius',\n borderInlineStart = 'borderInlineStart',\n borderInlineEnd = 'borderInlineEnd',\n borderColor = 'borderColor',\n borderWidth = 'borderWidth',\n borderStyle = 'borderStyle',\n font = 'font',\n textDecoration = 'textDecoration',\n gap = 'gap',\n /** Mixed Variables Groups */\n text = 'text',\n /** Data Groups */\n arrayItems = 'arrayItems',\n /** Deprecated, use `listItem` instead */\n arrayItem = 'arrayItem',\n listItem = 'listItem',\n}\n\n/** @enumType */\nexport type GroupTypeWithLiterals =\n | GroupType\n | 'UNKNOWN_GroupType'\n | 'cssDataType'\n | 'dataType'\n | 'preset'\n | 'data'\n | 'presets'\n | 'cssCustomProperties'\n | 'displayGroups'\n | 'background'\n | 'margin'\n | 'padding'\n | 'border'\n | 'borderTop'\n | 'borderRight'\n | 'borderBottom'\n | 'borderLeft'\n | 'borderRadius'\n | 'borderInlineStart'\n | 'borderInlineEnd'\n | 'borderColor'\n | 'borderWidth'\n | 'borderStyle'\n | 'font'\n | 'textDecoration'\n | 'gap'\n | 'text'\n | 'arrayItems'\n | 'arrayItem'\n | 'listItem';\n\nexport interface ItemsGroup {\n /**\n * A list of items that should be in this group\n * @maxSize 300\n * @maxLength 100\n */\n items?: string[];\n}\n\nexport interface ShorthandGroupBackground {\n /**\n * Stores the background-color property of the background shorthand\n * @maxLength 100\n */\n backgroundColor?: string | null;\n /**\n * Stores the background-image property of the background shorthand\n * @maxLength 100\n */\n backgroundImage?: string | null;\n /**\n * Stores the background-position property of the background shorthand\n * @maxLength 100\n */\n backgroundPosition?: string | null;\n /**\n * Stores the background-size property of the background shorthand\n * @maxLength 100\n */\n backgroundSize?: string | null;\n /**\n * Stores the background-repeat property of the background shorthand\n * @maxLength 100\n */\n backgroundRepeat?: string | null;\n /**\n * Stores the background-origin property of the background shorthand\n * @maxLength 100\n */\n backgroundOrigin?: string | null;\n /**\n * Stores the background-clip property of the background shorthand\n * @maxLength 100\n */\n backgroundClip?: string | null;\n /**\n * Stores the background shorthand item itself, should be used when you want to achieve with this group partial editing of the background shorthand\n * @maxLength 100\n */\n background?: string | null;\n}\n\nexport interface Coordinates {\n /**\n * Stores the top coordinate of the property shorthand\n * @maxLength 100\n */\n top?: string | null;\n /**\n * Stores the right coordinate of the property shorthand\n * @maxLength 100\n */\n right?: string | null;\n /**\n * Stores the bottom coordinate of the property shorthand\n * @maxLength 100\n */\n bottom?: string | null;\n /**\n * Stores the left coordinate of the property shorthand\n * @maxLength 100\n */\n left?: string | null;\n /**\n * Stores the coordinates item of this shorthand\n * @maxLength 100\n */\n sides?: string | null;\n}\n\nexport interface Border {\n /**\n * Stores the width property of a border shorthand\n * @maxLength 100\n */\n width?: string | null;\n /**\n * Stores the style property of a border shorthand\n * @maxLength 100\n */\n style?: string | null;\n /**\n * Stores the color property of a border shorthand\n * @maxLength 100\n */\n color?: string | null;\n /**\n * Stores the border shorthand item itself, should be used when you want to achieve with this group partial editing of the border shorthand\n * @maxLength 100\n */\n border?: string | null;\n}\n\nexport interface Corners {\n /**\n * Stores the top-left property of the shorthand\n * @maxLength 100\n */\n topLeft?: string | null;\n /**\n * Stores the top-right property of the shorthand\n * @maxLength 100\n */\n topRight?: string | null;\n /**\n * Stores the bottom-right property of the shorthand\n * @maxLength 100\n */\n bottomRight?: string | null;\n /**\n * Stores the bottom-left property of the shorthand\n * @maxLength 100\n */\n bottomLeft?: string | null;\n /**\n * Stores the corners item of this shorthand\n * @maxLength 100\n */\n corners?: string | null;\n}\n\nexport interface Font {\n /**\n * Stores the font-style property of the font shorthand\n * @maxLength 100\n */\n fontStyle?: string | null;\n /**\n * Stores the font-variant property of the font shorthand\n * @maxLength 100\n */\n fontVariant?: string | null;\n /**\n * Stores the font-weight property of the font shorthand\n * @maxLength 100\n */\n fontWeight?: string | null;\n /**\n * Stores the font-size property of the font shorthand\n * @maxLength 100\n */\n fontSize?: string | null;\n /**\n * Stores the line-height property of the font shorthand\n * @maxLength 100\n */\n lineHeight?: string | null;\n /**\n * Stores the font-family property of the font shorthand\n * @maxLength 100\n */\n fontFamily?: string | null;\n /**\n * Stores the font shorthand item itself, should be used when you want to achieve with this group partial editing of the font shorthand\n * @maxLength 100\n */\n font?: string | null;\n}\n\nexport interface TextDecoration {\n /**\n * Stores the text-decoration-line property of the text-decoration shorthand\n * @maxLength 100\n */\n textDecorationLine?: string | null;\n /**\n * Stores the text-decoration-color property of the text-decoration shorthand\n * @maxLength 100\n */\n textDecorationColor?: string | null;\n /**\n * Stores the text-decoration-style property of the text-decoration shorthand\n * @maxLength 100\n */\n textDecorationStyle?: string | null;\n /**\n * Stores the text-decoration-thickness property of the text-decoration shorthand\n * @maxLength 100\n */\n textDecorationThickness?: string | null;\n /**\n * Stores the textDecoration shorthand item itself, should be used when you want to achieve with this group partial editing of the textDecoration shorthand\n * @maxLength 100\n */\n textDecoration?: string | null;\n}\n\nexport interface Gap {\n /**\n * Stores the row-gap property of the gap shorthand\n * @maxLength 100\n */\n rowGap?: string | null;\n /**\n * Stores the column-gap property of the gap shorthand\n * @maxLength 100\n */\n columnGap?: string | null;\n /**\n * Stores the gap shorthand item itself, should be used when you want to achieve with this group partial editing of the gap shorthand\n * @maxLength 100\n */\n gap?: string | null;\n}\n\nexport interface TextGroup {\n /**\n * Stores the font shorthand item itself, should be used when you want to achieve with this group partial editing of the font shorthand\n * @maxLength 100\n */\n font?: string | null;\n /**\n * Stores the font-style property for this text group\n * @maxLength 100\n */\n fontStyle?: string | null;\n /**\n * Stores the font-variant property for this text group\n * @maxLength 100\n */\n fontVariant?: string | null;\n /**\n * Stores the font-weight property of the font shorthand\n * @maxLength 100\n */\n fontWeight?: string | null;\n /**\n * Stores the font-size property for this text group\n * @maxLength 100\n */\n fontSize?: string | null;\n /**\n * Stores the line-height property for this text group\n * @maxLength 100\n */\n lineHeight?: string | null;\n /**\n * Stores the font-family property for this text group\n * @maxLength 100\n */\n fontFamily?: string | null;\n /**\n * Stores the color property for this text group\n * @maxLength 100\n */\n color?: string | null;\n /**\n * Stores the letter-spacing property for this text group\n * @maxLength 100\n */\n letterSpacing?: string | null;\n /**\n * Stores the text-align property for this text group\n * @maxLength 100\n */\n textAlign?: string | null;\n /**\n * Stores the text-transform property for this text group\n * @maxLength 100\n */\n textTransform?: string | null;\n /**\n * Stores the text-shadow property for this text group\n * @maxLength 100\n */\n textShadow?: string | null;\n /**\n * Stores the text-decoration-line property for this text group\n * @maxLength 100\n */\n textDecorationLine?: string | null;\n /**\n * Stores the writing-mode property for this text group\n * @maxLength 100\n */\n writingMode?: string | null;\n /**\n * Stores the direction data-item for this text group\n * @maxLength 100\n */\n direction?: string | null;\n /**\n * Stores the a11y data-item for this text group\n * @maxLength 100\n */\n a11y?: string | null;\n}\n\nexport interface DataGroupsArrayItems {\n /**\n * Stores the name of the 'arrayItems'\n * @maxLength 100\n */\n arrayItems?: string | null;\n /**\n * Stores the data-item of the currently selected index within the array items\n * @maxLength 100\n */\n selectedItemIndex?: string | null;\n}\n\nexport interface ListItem {\n /**\n * Stores the name of the 'arrayItems' that stores the list of items\n * @maxLength 100\n */\n arrayItems?: string | null;\n /**\n * Stores the key of the 'text' data-item that will be used for label of this list-item\n * @maxLength 100\n */\n label?: string | null;\n /**\n * Stores the key of the 'text', 'link' or 'webUrl' data-item that will be used for subtitle of this list-item\n * @maxLength 100\n */\n subtitle?: string | null;\n /**\n * Stores the key of the 'vectorArt' or 'image' data-item that will be used for thumbnail of this list-item\n * @maxLength 100\n */\n thumbnail?: string | null;\n}\n\nexport interface CssPropertyItem\n extends CssPropertyItemSelectedCssPropertyTypeOneOf {\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n /** Additional options to refine the background-image variable */\n backgroundImage?: BackgroundImage;\n /**\n * Will be used as displayName of this css-property-item\n * @maxLength 100\n */\n displayName?: string | null;\n /** The default value for the css-property-item when the component is in the \"regular\" state */\n defaultValue?: any;\n /** The default values for the css-property-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n}\n\n/** @oneof */\nexport interface CssPropertyItemSelectedCssPropertyTypeOneOf {\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n /** Additional options to refine the background-image variable */\n backgroundImage?: BackgroundImage;\n}\n\nexport interface BackgroundImage {\n /**\n * The image types allowed for this background-image property\n * @maxSize 6\n */\n imageTypes?: ImageTypeWithLiterals[];\n}\n\nexport enum ImageType {\n UNKNOWN_ImageType = 'UNKNOWN_ImageType',\n url = 'url',\n image = 'image',\n imageSet = 'imageSet',\n crossFade = 'crossFade',\n element = 'element',\n gradient = 'gradient',\n}\n\n/** @enumType */\nexport type ImageTypeWithLiterals =\n | ImageType\n | 'UNKNOWN_ImageType'\n | 'url'\n | 'image'\n | 'imageSet'\n | 'crossFade'\n | 'element'\n | 'gradient';\n\nexport interface CssCustomPropertyItem\n extends CssCustomPropertyItemSelectedCssPropertyTypeOneOf {\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n /** Additional options to refine the background-image variable */\n backgroundImage?: BackgroundImage;\n /** Additional options to refine the customEnum item */\n customEnum?: CustomPropertyEnum;\n /** Additional options to refine the number item */\n number?: CssNumber;\n /**\n * The type of the value this css-custom-property will store, can be either\n * [CSS properties](https://developer.mozilla.org/en-US/docs/Web/CSS/Properties) or\n * [CSS data types](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Values_and_Units/CSS_data_types) in Javascript naming format\n */\n cssPropertyType?: CssPropertyTypeWithLiterals;\n /**\n * Will be used as displayName of this css-property-item\n * @maxLength 100\n */\n displayName?: string | null;\n /** The default value for the css-property-item when the component is in the \"regular\" state */\n defaultValue?: any;\n /** The default values for the css-property-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n}\n\n/** @oneof */\nexport interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n /** Additional options to refine the background-image variable */\n backgroundImage?: BackgroundImage;\n /** Additional options to refine the customEnum item */\n customEnum?: CustomPropertyEnum;\n /** Additional options to refine the number item */\n number?: CssNumber;\n}\n\n/**\n * The supported [CSS Property Types & CSS Data Types](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference#index) and\n * [CSS Data Types](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Values_and_Units/CSS_data_types) in Javascript naming format\n */\nexport enum CssPropertyType {\n UNKNOWN_CssPropertyType = 'UNKNOWN_CssPropertyType',\n /** css-data-types */\n number = 'number',\n string = 'string',\n angle = 'angle',\n length = 'length',\n percentage = 'percentage',\n lengthPercentage = 'lengthPercentage',\n blendMode = 'blendMode',\n customEnum = 'customEnum',\n time = 'time',\n /** background properties */\n background = 'background',\n backgroundSize = 'backgroundSize',\n backgroundColor = 'backgroundColor',\n backgroundImage = 'backgroundImage',\n backgroundClip = 'backgroundClip',\n backgroundOrigin = 'backgroundOrigin',\n backgroundPosition = 'backgroundPosition',\n backgroundRepeat = 'backgroundRepeat',\n backgroundAttachment = 'backgroundAttachment',\n /** margin properties */\n margin = 'margin',\n marginTop = 'marginTop',\n marginRight = 'marginRight',\n marginBottom = 'marginBottom',\n marginLeft = 'marginLeft',\n marginInlineStart = 'marginInlineStart',\n marginInlineEnd = 'marginInlineEnd',\n /** padding properties */\n padding = 'padding',\n paddingTop = 'paddingTop',\n paddingRight = 'paddingRight',\n paddingBottom = 'paddingBottom',\n paddingLeft = 'paddingLeft',\n paddingInlineStart = 'paddingInlineStart',\n paddingInlineEnd = 'paddingInlineEnd',\n /** border properties */\n border = 'border',\n borderWidth = 'borderWidth',\n borderStyle = 'borderStyle',\n borderColor = 'borderColor',\n borderTop = 'borderTop',\n borderTopColor = 'borderTopColor',\n borderTopWidth = 'borderTopWidth',\n borderTopStyle = 'borderTopStyle',\n borderRight = 'borderRight',\n borderRightColor = 'borderRightColor',\n borderRightWidth = 'borderRightWidth',\n borderRightStyle = 'borderRightStyle',\n borderBottom = 'borderBottom',\n borderBottomColor = 'borderBottomColor',\n borderBottomWidth = 'borderBottomWidth',\n borderBottomStyle = 'borderBottomStyle',\n borderLeft = 'borderLeft',\n borderLeftColor = 'borderLeftColor',\n borderLeftWidth = 'borderLeftWidth',\n borderLeftStyle = 'borderLeftStyle',\n borderInlineStart = 'borderInlineStart',\n borderInlineStartColor = 'borderInlineStartColor',\n borderInlineStartWidth = 'borderInlineStartWidth',\n borderInlineStartStyle = 'borderInlineStartStyle',\n borderInlineEnd = 'borderInlineEnd',\n borderInlineEndColor = 'borderInlineEndColor',\n borderInlineEndWidth = 'borderInlineEndWidth',\n borderInlineEndStyle = 'borderInlineEndStyle',\n /** border-radius properties */\n borderRadius = 'borderRadius',\n borderTopLeftRadius = 'borderTopLeftRadius',\n borderTopRightRadius = 'borderTopRightRadius',\n borderBottomRightRadius = 'borderBottomRightRadius',\n borderBottomLeftRadius = 'borderBottomLeftRadius',\n borderStartStartRadius = 'borderStartStartRadius',\n borderStartEndRadius = 'borderStartEndRadius',\n borderEndStartRadius = 'borderEndStartRadius',\n borderEndEndRadius = 'borderEndEndRadius',\n /** font properties */\n font = 'font',\n fontFamily = 'fontFamily',\n fontSize = 'fontSize',\n fontStretch = 'fontStretch',\n fontStyle = 'fontStyle',\n fontVariant = 'fontVariant',\n fontWeight = 'fontWeight',\n lineHeight = 'lineHeight',\n /** text properties */\n color = 'color',\n letterSpacing = 'letterSpacing',\n writingMode = 'writingMode',\n textAlign = 'textAlign',\n textTransform = 'textTransform',\n textShadow = 'textShadow',\n textOverflow = 'textOverflow',\n textIndent = 'textIndent',\n /** text-decoration properties */\n textDecoration = 'textDecoration',\n textDecorationColor = 'textDecorationColor',\n textDecorationLine = 'textDecorationLine',\n textDecorationStyle = 'textDecorationStyle',\n textDecorationThickness = 'textDecorationThickness',\n /** box related properties */\n boxShadow = 'boxShadow',\n opacity = 'opacity',\n overflow = 'overflow',\n /** layout properties */\n display = 'display',\n alignSelf = 'alignSelf',\n justifyContent = 'justifyContent',\n alignItems = 'alignItems',\n flexDirection = 'flexDirection',\n height = 'height',\n width = 'width',\n gap = 'gap',\n columnGap = 'columnGap',\n rowGap = 'rowGap',\n /** filters */\n filter = 'filter',\n backdropFilter = 'backdropFilter',\n /** media sizing & alignment */\n objectFit = 'objectFit',\n objectPosition = 'objectPosition',\n /** blending & compositing */\n mixBlendMode = 'mixBlendMode',\n isolation = 'isolation',\n /** stroke properties */\n stroke = 'stroke',\n strokeWidth = 'strokeWidth',\n strokeOpacity = 'strokeOpacity',\n /** fill properties */\n fill = 'fill',\n fillOpacity = 'fillOpacity',\n}\n\n/** @enumType */\nexport type CssPropertyTypeWithLiterals =\n | CssPropertyType\n | 'UNKNOWN_CssPropertyType'\n | 'number'\n | 'string'\n | 'angle'\n | 'length'\n | 'percentage'\n | 'lengthPercentage'\n | 'blendMode'\n | 'customEnum'\n | 'time'\n | 'background'\n | 'backgroundSize'\n | 'backgroundColor'\n | 'backgroundImage'\n | 'backgroundClip'\n | 'backgroundOrigin'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundAttachment'\n | 'margin'\n | 'marginTop'\n | 'marginRight'\n | 'marginBottom'\n | 'marginLeft'\n | 'marginInlineStart'\n | 'marginInlineEnd'\n | 'padding'\n | 'paddingTop'\n | 'paddingRight'\n | 'paddingBottom'\n | 'paddingLeft'\n | 'paddingInlineStart'\n | 'paddingInlineEnd'\n | 'border'\n | 'borderWidth'\n | 'borderStyle'\n | 'borderColor'\n | 'borderTop'\n | 'borderTopColor'\n | 'borderTopWidth'\n | 'borderTopStyle'\n | 'borderRight'\n | 'borderRightColor'\n | 'borderRightWidth'\n | 'borderRightStyle'\n | 'borderBottom'\n | 'borderBottomColor'\n | 'borderBottomWidth'\n | 'borderBottomStyle'\n | 'borderLeft'\n | 'borderLeftColor'\n | 'borderLeftWidth'\n | 'borderLeftStyle'\n | 'borderInlineStart'\n | 'borderInlineStartColor'\n | 'borderInlineStartWidth'\n | 'borderInlineStartStyle'\n | 'borderInlineEnd'\n | 'borderInlineEndColor'\n | 'borderInlineEndWidth'\n | 'borderInlineEndStyle'\n | 'borderRadius'\n | 'borderTopLeftRadius'\n | 'borderTopRightRadius'\n | 'borderBottomRightRadius'\n | 'borderBottomLeftRadius'\n | 'borderStartStartRadius'\n | 'borderStartEndRadius'\n | 'borderEndStartRadius'\n | 'borderEndEndRadius'\n | 'font'\n | 'fontFamily'\n | 'fontSize'\n | 'fontStretch'\n | 'fontStyle'\n | 'fontVariant'\n | 'fontWeight'\n | 'lineHeight'\n | 'color'\n | 'letterSpacing'\n | 'writingMode'\n | 'textAlign'\n | 'textTransform'\n | 'textShadow'\n | 'textOverflow'\n | 'textIndent'\n | 'textDecoration'\n | 'textDecorationColor'\n | 'textDecorationLine'\n | 'textDecorationStyle'\n | 'textDecorationThickness'\n | 'boxShadow'\n | 'opacity'\n | 'overflow'\n | 'display'\n | 'alignSelf'\n | 'justifyContent'\n | 'alignItems'\n | 'flexDirection'\n | 'height'\n | 'width'\n | 'gap'\n | 'columnGap'\n | 'rowGap'\n | 'filter'\n | 'backdropFilter'\n | 'objectFit'\n | 'objectPosition'\n | 'mixBlendMode'\n | 'isolation'\n | 'stroke'\n | 'strokeWidth'\n | 'strokeOpacity'\n | 'fill'\n | 'fillOpacity';\n\nexport interface CustomPropertyEnum {\n /** The type of the css-custom-property, used to define the type of the values allowed in the enum */\n cssPropertyType?: CssPropertyTypeWithLiterals;\n /**\n * The allowed value options for this custom enum\n * @maxSize 100\n */\n options?: CustomPropertyEnumOption[];\n}\n\nexport interface CustomPropertyEnumOption {\n /**\n * the enum value\n * @maxLength 100\n */\n value?: string;\n /**\n * Will be used as displayName of this enum option\n * @maxLength 100\n */\n displayName?: string | null;\n}\n\nexport interface CustomPropertyEnumOptionStyle {\n /**\n * the css property\n * @minLength 1\n * @maxLength 100\n */\n property?: string;\n /**\n * the css value\n * @minLength 1\n * @maxLength 300\n */\n value?: string;\n}\n\nexport interface HelpArticle extends HelpArticleArticleTypeOneOf {\n /**\n * A URL to an external help article\n * @format WEB_URL\n */\n url?: string | null;\n}\n\n/** @oneof */\nexport interface HelpArticleArticleTypeOneOf {\n /**\n * A URL to an external help article\n * @format WEB_URL\n */\n url?: string | null;\n}\n\nexport interface RefElement {\n /**\n * The type of the referenced element. Must exist in the Wix Dev Center and be fully typed (`appSlug.componentType`).\n * @minLength 4\n * @maxLength 100\n */\n type?: string;\n /**\n * The override of the used element selector, full path from root\n * @minLength 4\n * @maxLength 300\n */\n selector?: string;\n /**\n * The override of the used element displayName\n * @maxLength 50\n */\n displayName?: string;\n /** The override of the used element style */\n style?: Record<string, StyleItemOverrides>;\n /** The override of the used element data */\n data?: Record<string, DataItemOverrides>;\n /** The override of the used element behaviors */\n behaviors?: Behaviors;\n /** The override of the used element native actions */\n actions?: Actions;\n /** The override of the used element custom actions */\n customActions?: Record<string, Action>;\n /** A reference to a state that needs to be triggered in order for this element to be visible */\n visibleState?: VisibleState;\n /**\n * This is where you can override the display filter defined by the original element\n * The override is per field. So you can override: style items, data items, custom actions and elements or just some of them.\n * Any item not overridden will be inherited from the original element\n */\n displayFilters?: DisplayFilters;\n /** The default style & data for inner elements */\n elements?: Record<string, RefInnerElementDefaults>;\n /** A map of definition overrides for the css-properties that this element supports */\n cssProperties?: Record<string, CssPropertyItemDefinitionOverrides>;\n /** A map of definition overrides for the css-custom-properties that this element supports */\n cssCustomProperties?: Record<string, CssPropertyItemDefinitionOverrides>;\n /** A reference to a help article for this element */\n helpArticle?: HelpArticle;\n}\n\nexport interface DataItemOverrides\n extends DataItemOverridesSelectedDataTypeOneOf {\n /** Overrides the definition of what images should be supported */\n image?: ImageOverrides;\n /** Overrides the definition of what videos should be supported */\n video?: VideoOverrides;\n /** Overrides the definition of what vector arts should be supported */\n vectorArt?: VectorArtOverrides;\n /** Disables the ability to edit this data-item */\n disableEditing?: boolean | null;\n /** Overrides the default value of this data-item */\n defaultValue?: any;\n /**\n * Overrides the display name of this data-item\n * @maxLength 100\n */\n displayName?: string | null;\n /** Overrides the ability to delete this data-item value in the Editor UI */\n disableDeletion?: boolean | null;\n}\n\n/** @oneof */\nexport interface DataItemOverridesSelectedDataTypeOneOf {\n /** Overrides the definition of what images should be supported */\n image?: ImageOverrides;\n /** Overrides the definition of what videos should be supported */\n video?: VideoOverrides;\n /** Overrides the definition of what vector arts should be supported */\n vectorArt?: VectorArtOverrides;\n}\n\nexport interface ImageOverrides {\n /** media manager categories to open media manager filtered by the overriding component needs */\n category?: ImageCategoryTypesWithLiterals;\n}\n\nexport interface VideoOverrides {\n /** media manager categories to open media manager filtered by the overriding component needs */\n category?: VideoCategoryTypesWithLiterals;\n}\n\nexport interface VectorArtOverrides {\n /** media manager categories to open media manager filtered by the overriding component needs */\n category?: VectorArtCategoryTypesWithLiterals;\n}\n\nexport interface RefInnerElementDefaults {\n /** The default data for an element */\n data?: Record<string, any>;\n /** The default preset and styles for inner elements */\n elements?: Record<string, RefInnerElementDefaults>;\n /** A map of default values for the css-properties that this element supports */\n cssProperties?: Record<string, CssPropertyItemDefaults>;\n /** A map of default values for the css-properties that this element supports */\n cssCustomProperties?: Record<string, CssPropertyItemDefaults>;\n}\n\nexport interface CssPropertyItemDefinitionOverrides {\n /**\n * Will be used as displayName of this css-property-item\n * @maxLength 100\n */\n displayName?: string | null;\n /** Disables the ability to edit this css-property-item */\n disableEditing?: boolean | null;\n /** The default value for the css-property-item when the component is in the \"regular\" state */\n defaultValue?: any;\n /** The default values for the css-property-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n}\n\nexport interface Interactions {\n /** @maxSize 7 */\n triggers?: TriggerWithLiterals[];\n /** @maxSize 1 */\n effectGroups?: EffectGroupWithLiterals[];\n}\n\nexport enum Trigger {\n UNKNOWN_TRIGGER = 'UNKNOWN_TRIGGER',\n /** When a compoent is hovered */\n hover = 'hover',\n /** When a component is clicked */\n click = 'click',\n /** When the component enters the viewport */\n viewEnter = 'viewEnter',\n /** Used for infinite-loop animations - mapped to `state` type of https://drafts.csswg.org/css-animations-2/#animation-trigger-type */\n pageVisible = 'pageVisible',\n /** Mapped to native ViewTimeline */\n viewProgress = 'viewProgress',\n /** Mapped to pointermove events on the element */\n pointerMove = 'pointerMove',\n /** Mapped to animationend events */\n animationEnd = 'animationEnd',\n}\n\n/** @enumType */\nexport type TriggerWithLiterals =\n | Trigger\n | 'UNKNOWN_TRIGGER'\n | 'hover'\n | 'click'\n | 'viewEnter'\n | 'pageVisible'\n | 'viewProgress'\n | 'pointerMove'\n | 'animationEnd';\n\nexport enum EffectGroup {\n UNKNOWN_EFFECT_GROUP = 'UNKNOWN_EFFECT_GROUP',\n /** Effects that are applied to the background layer of the component */\n background = 'background',\n}\n\n/** @enumType */\nexport type EffectGroupWithLiterals =\n | EffectGroup\n | 'UNKNOWN_EFFECT_GROUP'\n | 'background';\n\nexport interface InstallationInfo extends InstallationInfoTargetContainerOneOf {\n /** Which static container should the component be installed at */\n staticContainer?: StaticContainerWithLiterals;\n /** Default presets per breakpoint with which the component should be installed */\n presets?: DefaultPresets;\n /** Initial size with which the component should be added to the stage */\n initialSize?: ComponentInitialSize;\n}\n\n/** @oneof */\nexport interface InstallationInfoTargetContainerOneOf {\n /** Which static container should the component be installed at */\n staticContainer?: StaticContainerWithLiterals;\n}\n\nexport interface MarketplaceSPIConfig {\n /** URI where the SPI implementer is deployed */\n deploymentUri?: SpiBaseUri;\n}\n\nexport interface FormSchemaDynamicValuesSpiConfig {\n /** URI where the SPI Implementer is deployed. */\n uriConfig?: SpiBaseUri;\n /**\n * Form ID which contains dynamic fields.\n * @format GUID\n */\n formId?: string;\n /**\n * Field IDs which trigger loading of dynamic values.\n * @maxSize 100\n * @format GUID\n */\n fieldsIds?: string[];\n}\n\nexport interface BlogPaywallProviderConfig {\n /** Uri config */\n uriConfig?: SpiBaseUri;\n}\n\nexport interface RewardProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * Name of the reward that will be visible to the end users\n * @maxLength 100\n */\n rewardName?: string;\n /**\n * Description of the reward that will be visible to the end users, describing how the reward works\n * @maxLength 500\n */\n rewardDescription?: string;\n}\n\nexport interface ProductRestrictionsConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /** Product restrictions configuration. */\n productRestrictionsConfig?: RestrictionsConfig;\n}\n\nexport interface RestrictionsConfig {\n /**\n * Prices restrictions.\n *\n * Affected fields:\n * * `variantsInfo.variants.price.actualPrice.amount`\n * * `variantsInfo.variants.price.compareAtPrice.amount`\n * * `inventory.trackingMethod.quantity`\n */\n prices?: Restriction;\n /**\n * Options restrictions.\n *\n * Affected field: `options` (all nested fields except `linkedMedia`)\n */\n options?: Restriction;\n /**\n * Modifier restrictions.\n *\n * Affected field: `modifiers` (all nested fields except `linkedMedia`)\n */\n modifiers?: Restriction;\n /**\n * Inventory restrictions.\n *\n * Affected fields:\n * * `variantsInfo.variants.sku`\n * * `variantsInfo.variants.barcode`\n * * `inventory.trackingMethod.quantity`\n */\n inventory?: Restriction;\n /**\n * Pre order restrictions.\n *\n * Affected field: `inventory.preorderInfo`\n */\n preOrder?: Restriction;\n /** Whether to disallow product duplication or display a warning when duplicating a product. */\n duplicateProduct?: Restriction;\n}\n\nexport interface Restriction {\n /** Restriction level. */\n restrictionLevel?: RestrictionLevelWithLiterals;\n}\n\nexport enum RestrictionLevel {\n UNKNOWN_RESTRICTION_TYPE = 'UNKNOWN_RESTRICTION_TYPE',\n /** Users can edit the product field after acknowledging a warning modal. */\n WARNING = 'WARNING',\n /** Users **cannot** edit the product field. */\n LOCKED = 'LOCKED',\n}\n\n/** @enumType */\nexport type RestrictionLevelWithLiterals =\n | RestrictionLevel\n | 'UNKNOWN_RESTRICTION_TYPE'\n | 'WARNING'\n | 'LOCKED';\n\nexport interface FormSubmissionModerationSpiConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * Namespace names.\n * @maxSize 10\n */\n namespaceConfigs?: FormSubmissionModerationSpiNamespaceConfig[];\n}\n\nexport interface FormSubmissionModerationSpiNamespaceConfig {\n /**\n * The app which the form submissions belong to. For example, the namespace for the Wix Forms app is `wix.form_app.form`.\n *\n * Call `Get Submission` to retrieve the namespace.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /**\n * The ID of the specific form that will trigger form moderation.\n * This field is optional. If not provided, submissions from all forms will trigger the moderation.\n * @format GUID\n */\n formId?: string | null;\n /** Enable submission moderation. */\n submissionModerationEnabled?: boolean;\n}\n\nexport interface EventBadgesSpiConfig {\n /** URI where the SPI Implementer is deployed. */\n baseUri?: SpiBaseUri;\n /**\n * Events for which the SPI method should apply. If empty, applies to all events.\n * @maxSize 100\n * @format GUID\n */\n eventId?: string[];\n}\n\nexport interface OperationExecutorConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n}\n\n/** Back-office Customization */\nexport interface BackOfficeCustomization {\n /** Optional Header customization, if not provided the default header will be used */\n header?: Header;\n /** Optional sidebar customization, if not provided the default sidebar will be used */\n sidebar?: Sidebar;\n /** Optional sidepanel customization, if not provided, sidePanel will not be shown */\n leftPanel?: LeftPanel;\n /**\n * Optional list of page IDs that should kept alive on the client.\n * @maxSize 2\n */\n keepAlivePages?: KeepAlivePage[];\n}\n\nexport interface Header extends HeaderConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: HeaderConfig;\n displayOption?: ElementDisplayOptionWithLiterals;\n}\n\n/** @oneof */\nexport interface HeaderConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: HeaderConfig;\n}\n\nexport enum ElementDisplayOption {\n UNKNOWN_OPTION = 'UNKNOWN_OPTION',\n REMOVE = 'REMOVE',\n CUSTOMIZED = 'CUSTOMIZED',\n}\n\n/** @enumType */\nexport type ElementDisplayOptionWithLiterals =\n | ElementDisplayOption\n | 'UNKNOWN_OPTION'\n | 'REMOVE'\n | 'CUSTOMIZED';\n\n/** Header configuration, you can provide extensionId or using our platform header */\nexport interface HeaderConfig extends HeaderConfigHeaderConfigOneOf {\n platform?: PlatformHeaderConfig;\n widget?: HeaderWidgetConfig;\n /**\n * @min 48\n * @max 70\n */\n defaultHeight?: number | null;\n}\n\n/** @oneof */\nexport interface HeaderConfigHeaderConfigOneOf {\n platform?: PlatformHeaderConfig;\n widget?: HeaderWidgetConfig;\n}\n\n/** Platform header customization option */\nexport interface PlatformHeaderConfig {\n /**\n * Sidebar skin from WDS, dark, light.\n * @maxLength 20\n */\n theme?: string | null;\n /** Header logo */\n logo?: Logo;\n /**\n * Header menuItems / Popovers\n * @maxSize 10\n */\n menuDropdowns?: MenuDropdown[];\n /** Header platformized search configuration */\n searchConfig?: SearchConfig;\n}\n\n/** MenuItems links */\nexport interface MenuLink {\n /**\n * Link title\n * @minLength 2\n * @maxLength 100\n */\n title?: string;\n /**\n * Link url\n * @format WEB_URL\n */\n url?: string;\n}\n\n/** option to customize your header logo */\nexport interface Logo {\n /**\n * Logo image url\n * @format WEB_URL\n */\n imageUrl?: string;\n /**\n * Target url, choose where to navigate when clicking on the logo\n * @format WEB_URL\n */\n targetUrl?: string | null;\n}\n\n/** Header menu dropdown, (popover) */\nexport interface MenuDropdown {\n /**\n * MenuItem title\n * @minLength 2\n * @maxLength 50\n */\n title?: string;\n /**\n * Menu dropdown links\n * @maxSize 20\n */\n links?: MenuLink[];\n}\n\nexport interface SearchConfig {\n /** Weather include platformized search in header or not */\n visible?: boolean;\n}\n\n/** Header widget configuration, provide extensionId */\nexport interface HeaderWidgetConfig {\n /** @format GUID */\n extensionId?: string;\n}\n\nexport interface Sidebar extends SidebarConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: SidebarConfig;\n displayOption?: ElementDisplayOptionWithLiterals;\n}\n\n/** @oneof */\nexport interface SidebarConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: SidebarConfig;\n}\n\n/** Backoffice sidebar castomization options */\nexport interface SidebarConfig {\n /**\n * List of root sidebar items, categories or separators, if empty default sidebar will be shown\n * @maxSize 100\n */\n sidebarItems?: SidebarRootItem[];\n /**\n * Sidebar skin from WDS, dark, light.\n * @maxLength 20\n */\n theme?: string | null;\n /** Option to override sidebar header with customize extension */\n sidebarHeader?: SidebarWidget;\n /** Option to override sidebar footer with customize extension */\n sidebarFooter?: SidebarWidget;\n /**\n * List of sidebar entities that cannot be hidden by a restricted customization extension\n * @maxSize 200\n */\n nonRemovableSidebarEntities?: BackOfficeCustomizationSidebarEntity[];\n /**\n * ID of the top-level category where pages of private apps will be added\n * @maxLength 50\n */\n categoryIdForPrivateAppPages?: string | null;\n}\n\n/**\n * First Inner level of sidebar item, can contain pages or separators or categories\n * For separator no need to set item\n */\nexport interface SidebarChildItem extends SidebarChildItemItemOneOf {\n category?: SecondLevelCategory;\n page?: Page;\n type?: SidebarDataTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SidebarChildItemItemOneOf {\n category?: SecondLevelCategory;\n page?: Page;\n}\n\nexport enum SidebarDataType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n CATEGORY = 'CATEGORY',\n PAGE = 'PAGE',\n SEPARATOR = 'SEPARATOR',\n}\n\n/** @enumType */\nexport type SidebarDataTypeWithLiterals =\n | SidebarDataType\n | 'UNKNOWN_TYPE'\n | 'CATEGORY'\n | 'PAGE'\n | 'SEPARATOR';\n\n/** Represents sidebar category of second level */\nexport interface SecondLevelCategory {\n /**\n * Category id, should be unique\n * @format GUID\n */\n categoryId?: string;\n /**\n * Category label\n * @minLength 2\n * @maxLength 50\n */\n label?: string;\n /**\n * Category children, consist of pages, separators or categories, categories can be a child only on root level\n * @maxSize 100\n */\n children?: SidebarSecondLevelChildItem[];\n}\n\n/**\n * Second Inner level of sidebar item, can contain pages or separators\n * For separator no need to set item\n */\nexport interface SidebarSecondLevelChildItem\n extends SidebarSecondLevelChildItemItemOneOf {\n page?: Page;\n type?: SidebarDataTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SidebarSecondLevelChildItemItemOneOf {\n page?: Page;\n}\n\n/** Represents page item in the sidebar */\nexport interface Page {\n /** @format GUID */\n pageId?: string;\n}\n\n/** Represents sidebar category of root level */\nexport interface FirstLevelCategory {\n /**\n * Category id, should be unique\n * @minLength 4\n * @maxLength 36\n */\n categoryId?: string;\n /**\n * Category label\n * @minLength 2\n * @maxLength 50\n */\n label?: string;\n /**\n * Category icon, supported only on root level, will be ignores otherwise\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n icon?: string | null;\n /**\n * Category children, consist of pages, separators or categories, categories can be a child only on root level\n * @maxSize 100\n */\n children?: SidebarChildItem[];\n}\n\n/** Option to supply extension that will be shown in the sidebar */\nexport interface SidebarWidgetConfig {\n /** @format GUID */\n extensionId?: string | null;\n}\n\n/** Root level sidebar item, can be category or separator (when not setting category) */\nexport interface SidebarRootItem extends SidebarRootItemItemOneOf {\n category?: FirstLevelCategory;\n type?: SidebarDataTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SidebarRootItemItemOneOf {\n category?: FirstLevelCategory;\n}\n\n/** Sidebar widget configuration */\nexport interface SidebarWidget extends SidebarWidgetConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: SidebarWidgetConfig;\n /** Widget display option */\n displayOption?: ElementDisplayOptionWithLiterals;\n}\n\n/** @oneof */\nexport interface SidebarWidgetConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: SidebarWidgetConfig;\n}\n\n/** Represents a sidebar entity in a back office sidebar, used to configure required/hidden entities */\nexport interface BackOfficeCustomizationSidebarEntity\n extends BackOfficeCustomizationSidebarEntityItemOneOf {\n /**\n * Category id\n * @minLength 1\n * @maxLength 50\n */\n categoryId?: string | null;\n /**\n * Page id\n * @format GUID\n */\n pageId?: string | null;\n /**\n * App id\n * @format GUID\n */\n appId?: string | null;\n /** Sidebar entity type */\n type?: SidebarEntityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface BackOfficeCustomizationSidebarEntityItemOneOf {\n /**\n * Category id\n * @minLength 1\n * @maxLength 50\n */\n categoryId?: string | null;\n /**\n * Page id\n * @format GUID\n */\n pageId?: string | null;\n /**\n * App id\n * @format GUID\n */\n appId?: string | null;\n}\n\n/** Type of sidebar entity in a back office sidebar (cluster/category/page) */\nexport enum SidebarEntityType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n CATEGORY = 'CATEGORY',\n PAGE = 'PAGE',\n APP = 'APP',\n}\n\n/** @enumType */\nexport type SidebarEntityTypeWithLiterals =\n | SidebarEntityType\n | 'UNKNOWN_TYPE'\n | 'CATEGORY'\n | 'PAGE'\n | 'APP';\n\nexport interface CoreApps {\n /**\n * List of core appIds to include in the dashboard. Only appIds present in the host's coreAppId list are allowed.\n * @maxSize 500\n * @format GUID\n */\n coreAppIds?: string[];\n}\n\nexport interface LeftPanel {\n widget?: LeftPanelWidgetConfig;\n /**\n * @min 300\n * @max 600\n */\n defaultWidth?: number | null;\n}\n\n/** sidePanel widget configuration, provide extensionId */\nexport interface LeftPanelWidgetConfig {\n /** @format GUID */\n extensionId?: string;\n}\n\nexport interface KeepAlivePage {\n /** @format GUID */\n pageId?: string;\n}\n\n/** SPI config - defines the relation between implementer URL and which types it is validates */\nexport interface ComponentEnricherConfig {\n /**\n * URI where the SPI Implementer is deployed\n * @maxLength 400\n */\n deploymentUri?: string;\n /**\n * Component types that will be enriched\n * @minSize 1\n * @maxSize 100\n */\n componentEnrichmentTypes?: ComponentTypeWithLiterals[];\n /** @maxSize 100 */\n componentTypesToView?: ComponentTypeWithLiterals[];\n}\n\n/** Back-office Restricted Customization */\nexport interface BackOfficeRestrictedCustomization {\n /**\n * List of entities to hide from sidebar\n * @maxSize 200\n */\n sidebarEntitiesToHide?: BackOfficeCustomizationSidebarEntity[];\n}\n\nexport interface AppPreviewProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * Used to redirect to app overview\n * @maxLength 50\n */\n slug?: string | null;\n}\n\nexport interface LegendsSpiConfig {\n /**\n * URI where the SPI Implementer is deployed.\n * @maxLength 1000\n */\n deploymentUri?: string;\n /**\n * Legacy configuration of namespaces known by implementer.\n * @maxSize 5\n */\n namespaceConfigs?: NamespaceConfig[];\n /** Configuration of namespaces known by implementer V2. */\n namespaceConfigsV2?: NamespaceConfigV2;\n}\n\nexport interface NamespaceConfig {\n /**\n * Namespace name.\n * @maxLength 100\n */\n namespace?: string;\n /** PersonaService permissions associated with this namespace. */\n personaPermissions?: Permissions;\n /** KnowledgeService permissions associated with this namespace. */\n knowledgePermissions?: Permissions;\n /** MediaService permissions associated with this namespace. */\n mediaPermissions?: Permissions;\n /** PersonaChatService permissions associated with this namespace. */\n chatPermissions?: Permissions;\n /** AvatarService permissions associated with this namespace. */\n avatarPermissions?: Permissions;\n /** PitchService permissions associated with this namespace. */\n pitchPermissions?: Permissions;\n /** VoiceService permissions associated with this namespace. */\n voicePermissions?: Permissions;\n /** PersonaInsightsService permissions associated with this namespace. */\n personaInsightsPermissions?: Permissions;\n /** PersonaTopicClusteringService permissions associated with this namespace. */\n personaTopicClusteringPermissions?: Permissions;\n}\n\nexport interface Permissions {\n /**\n * Create permission.\n * @maxLength 50\n */\n create?: string;\n /**\n * Read permission.\n * @maxLength 50\n */\n read?: string;\n /**\n * Update permission.\n * @maxLength 50\n */\n update?: string;\n /**\n * Delete permission.\n * @maxLength 50\n */\n delete?: string;\n /**\n * Custom permissions\n * @maxSize 10\n */\n custom?: CustomPermission[];\n}\n\nexport interface CustomPermission {\n /**\n * The name of the custom permission.\n * @maxLength 50\n */\n name?: string;\n /**\n * The description of the custom permission.\n * @maxLength 50\n */\n permission?: string;\n}\n\nexport interface NamespaceConfigV2 {\n /**\n * Namespace name.\n * @maxLength 200\n */\n namespace?: string;\n /** Map of service name to its permissions. */\n servicePermissions?: Record<string, Permissions>;\n}\n\nexport interface AppDeploymentProviderConfig {\n /** URI where the SPI implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * `true` if SPI implementer provides custom permission checks API calls\n *\n * Default: `false`\n */\n toggleIsPermitted?: boolean;\n /**\n * `true` if SPI implementer provides override cloud provider logic for CreateAppDeployment API calls\n *\n * Default: `false`\n */\n toggleOverrideCloudProvider?: boolean;\n}\n\nexport interface BackendWorker {\n /**\n * BAAS deployment ID\n * @format GUID\n */\n deploymentId?: string;\n /**\n * BAAS deployment URL\n * @format WEB_URL\n */\n deploymentUrl?: string | null;\n /**\n * User assigned label\n * @maxLength 200\n */\n label?: string | null;\n /**\n * Deployment git commit hash\n * @maxLength 40\n */\n commitHash?: string | null;\n}\n\nexport interface EventTimeSlotsProviderConfig {\n /** Reserved. */\n deploymentUri?: SpiBaseUri;\n /**\n * Filter to base retrieved events on, for bookings it could be `{\"type\": \"CLASS\"}`.\n * See the [supported filters article](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters)\n * for a complete list of supported filters.\n */\n eventFilter?: Record<string, any> | null;\n /**\n * event service id field, that will be used to map the event.\n * i.e. \"externalScheduleId\"\n * @maxLength 100\n */\n eventServiceIdField?: string | null;\n /** whether listExcludedServiceIds is enabled. */\n toggleListExcludedServiceIdsEnabled?: boolean;\n}\n\nexport interface AppEnvironmentProviderConfig {\n /** URI where the SPI implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * `true` if SPI implementer provides custom permission checks API calls\n *\n * Default: `false`\n */\n toggleIsAppEnvironmentPermitted?: boolean;\n}\n\n/** SDK exports specify the metadata of a module. */\nexport interface SDKExports {\n /** Npm data that */\n importMetadata?: SDKExportsNpm;\n /** The export definition of a module */\n exportMetadata?: ExportMetadata;\n /** The maturity of the SDK exports */\n exposureAndMaturity?: ExtensionExposure;\n /** Map peer dependency package name to its version */\n peerDependencies?: Record<string, string>;\n /** Map dev dependency package name to its version */\n devDependencies?: Record<string, string>;\n /**\n * List of peer dependency package names that are optional\n * @maxLength 200\n * @maxSize 200\n */\n optionalPeerDependencies?: string[];\n}\n\nexport interface SDKExportsNpm {\n /**\n * Npm package name\n * @minLength 2\n * @maxLength 100\n */\n packageName?: string;\n /**\n * Npm semantic version\n * @minLength 2\n * @maxLength 100\n */\n packageVersion?: string;\n /**\n * Package entry point, default to main entry\n * @minLength 2\n * @maxLength 100\n */\n specifier?: string | null;\n /**\n * Imported name, default to default import\n * @minLength 2\n * @maxLength 100\n */\n importedName?: string | null;\n}\n\nexport interface ExportMetadata {\n /**\n * Exported name of a module\n * @maxLength 100\n */\n exportedName?: string | null;\n /**\n * Package entry point, default to main entry\n * @minLength 2\n * @maxLength 100\n */\n relativeSpecifier?: string | null;\n}\n\n/** A service to be used by components and apps in the viewer and editor */\nexport interface ViewerService {\n /**\n * A unique package name of the service,@wix/site-environment, to be used when calling the `getService` API\n * @minLength 7\n * @maxLength 80\n */\n packageName?: string;\n /** The viewer implemenation of this service, *bundle* is required */\n viewer?: ViewerServiceAssets;\n /** The optional editor implementation of this service, optional (if you need a different version for the editor) */\n editor?: ViewerServiceAssets;\n /**\n * A short description of this service\n * @maxLength 50\n */\n description?: string | null;\n /**\n * A link to documentation by the article Id, example: \"https://dev.wix.com/docs/editor/components/viewer-service\"\n * @format WEB_URL\n */\n docLink?: string | null;\n}\n\nexport interface ViewerServiceAssets {\n /**\n * The bundle of this javascript resource in production, example: \"https://static.parastorage.com/services/wix-site-environment/1.0.0/bundle.min.js\"\n * @format WEB_URL\n */\n bundle?: string;\n /**\n * The package names of other *Wix* services this service may depend on based on their unique package name, example: [\"@wix/site-environment\", \"@wix/site-language\"]\n * @maxSize 20\n * @maxLength 80\n */\n dependencies?: string[];\n}\n\nexport interface ProviderAccountServicePluginConfig {\n /** The base URI where all the methods are deployed. */\n baseUri?: SpiBaseUri;\n}\n\nexport interface ProviderConfigMessage {\n /** Base URI for the provider */\n baseUri?: SpiBaseUri;\n /** Specifies which optional SPI methods this provider implements. */\n implementedMethods?: V2ImplementedMethods;\n /**\n * A list of capabilities supported by the provider.\n * Can be used in conjunction with ListFilteringCapabilities.\n * When a provider first integrates with segments, we allow to pass empty filtering_capabilities, and to gradually add capabilities.\n * a provider with 0 capabilities will not be shown in the UI.\n * @maxSize 20\n */\n filteringCapabilities?: FilteringCapability[];\n /**\n * Human-readable name of the provider for UI display (e.g., \"Wix eCommerce\", \"Customer Reviews\")\n * @maxLength 100\n */\n name?: string;\n /**\n * description explaining what this provider offers\n * @maxLength 500\n */\n description?: string;\n /**\n * identifier of the specific component. Allows a single app to have multiple providers.\n * @minLength 1\n * @maxLength 20\n */\n key?: string | null;\n}\n\nexport interface V2ImplementedMethods {\n /**\n * whether or not the provider supports dynamic capabilities.\n * If true, ListFilteringCapabilities will be called to fetch dynamic capabilities.\n * if both dynamic and static capabilities are declared, the list of capabilities will be merged.\n */\n listFilteringCapabilities?: boolean;\n}\n\n/** Capability for supported filters */\nexport interface FilteringCapability {\n /**\n * Name of the attribute that can be filtered (e.g., \"email\", \"age\", \"last_purchase_date\").\n * For custom fields, may include type and format information (e.g., \"_user_fields.custom_field_name.string.date\").\n * Maximum length supports Data Extension field names up to 64 characters with type/format qualifiers.\n * @maxLength 100\n */\n attributeName?: string;\n /**\n * Human-readable display name for the attribute shown in UI.\n * @maxLength 64\n */\n displayName?: string;\n /**\n * Description explaining what this attribute represents.\n * @maxLength 200\n */\n description?: string;\n /**\n * operators and parameters supported for this attribute.\n * @maxSize 20\n */\n operatorConfigurations?: OperatorConfiguration[];\n /**\n * Optional time constraints that can be applied to this filter.\n * @maxSize 10\n */\n supportedTimeConstraints?: TimeConstraintConfiguration[];\n /** The filter requires a time constraint. */\n timeConstraintRequired?: boolean;\n /** The category of the filtering capability. */\n category?: CategoryWithLiterals;\n}\n\n/** Operator definition with its required parameters. */\nexport interface OperatorConfiguration {\n /**\n * List of operators supported for this configuration (e.g., EQ, GT, IN).\n * @maxSize 10\n * @minSize 1\n */\n supportedOperators?: OperatorEnumOperatorWithLiterals[];\n /**\n * Parameters required for this operator (e.g., multiple parameters for \"BETWEEN\").\n * @maxSize 5\n */\n parameters?: Parameter[];\n}\n\n/**\n * Supported filter operators.\n * These are used by the API to define a filter and by the SPI to declare supported operations.\n * NOTICE: this list is not exhaustive and may change over time.\n */\nexport enum OperatorEnumOperator {\n UNKNOWN_OPERATOR = 'UNKNOWN_OPERATOR',\n /** [Comparison] Matches values that are equal to a specified value. */\n EQ = 'EQ',\n /** [Comparison] Matches all values that are not equal to a specified value. */\n NEQ = 'NEQ',\n /** [Comparison] Matches values that are greater than a specified value. */\n GT = 'GT',\n /** [Comparison] Matches values that are greater than or equal to a specified value. */\n GTE = 'GTE',\n /** [Comparison] Matches values that are less than a specified value. */\n LT = 'LT',\n /** [Comparison] Matches values that are less than or equal to a specified value. */\n LTE = 'LTE',\n /** [Comparison] Matches values that fall within a specified range (inclusive). */\n BETWEEN = 'BETWEEN',\n /** [Comparison] Matches any of the values specified in an array. */\n IN = 'IN',\n /** [Comparison] Matches none of the values specified in an array. */\n NIN = 'NIN',\n /** [Existence] Matches values that are empty (e.g., empty string, null). */\n EMPTY = 'EMPTY',\n /** [Existence] Matches values that are not empty (e.g., non-empty string, not null). */\n NOT_EMPTY = 'NOT_EMPTY',\n /** [String] Matches values that start with a specified prefix. */\n STARTS_WITH = 'STARTS_WITH',\n /** [Array] Matches values that contain all specified items in an array. */\n WITH_ALL = 'WITH_ALL',\n /** [Array] Matches values that contain at least one of the specified items in an array. */\n WITH_SOME_OF = 'WITH_SOME_OF',\n /**\n * matches any value.\n * Example usage - \"user bought ANY product\"\n */\n ANY = 'ANY',\n /**\n * [Array] Negation of WITH_SOME_OF - matches when the contact's values contain\n * none of the specified items. Returns true for contacts with empty/no values.\n */\n WITH_NONE_OF = 'WITH_NONE_OF',\n}\n\n/** @enumType */\nexport type OperatorEnumOperatorWithLiterals =\n | OperatorEnumOperator\n | 'UNKNOWN_OPERATOR'\n | 'EQ'\n | 'NEQ'\n | 'GT'\n | 'GTE'\n | 'LT'\n | 'LTE'\n | 'BETWEEN'\n | 'IN'\n | 'NIN'\n | 'EMPTY'\n | 'NOT_EMPTY'\n | 'STARTS_WITH'\n | 'WITH_ALL'\n | 'WITH_SOME_OF'\n | 'ANY'\n | 'WITH_NONE_OF';\n\n/** Parameter definition for parameterized filters */\nexport interface Parameter extends ParameterValueDefinitionDetailsOneOf {\n /** For STRING_LIST */\n stringListOptions?: StringListOptions;\n /** For INT64_LIST */\n intListOptions?: IntListOptions;\n /** For DECIMAL_LIST */\n decimalListOptions?: DecimalListOptions;\n /** For BOOL_LIST */\n boolListOptions?: BoolListOptions;\n /** For CURRENCY_CODE_LIST */\n currencyListOptions?: CurrencyCodeListOptions;\n /** For LANGUAGE_LIST */\n languageTagListOptions?: LanguageTagListOptions;\n /** For ITEM_SELECTION */\n itemSelectionOptions?: ItemSelectionOptions;\n /**\n * Name or identifier of the parameter.\n * @maxLength 30\n */\n name?: string;\n /**\n * Human-readable display name for the parameter shown in UI.\n * @maxLength 30\n */\n displayName?: string;\n /** Data type of the parameter value. */\n type?: ParameterTypeWithLiterals;\n /** Whether this parameter is required for the operation. */\n mandatory?: boolean;\n /** Whether this parameter can accept multiple values (e.g., for IN operator). */\n repeated?: boolean;\n /**\n * The primary mode determining how values are defined.\n * This drives the 'value_definition_details' oneof.\n */\n definitionMode?: FilterValueDefinitionModeWithLiterals;\n}\n\n/** @oneof */\nexport interface ParameterValueDefinitionDetailsOneOf {\n /** For STRING_LIST */\n stringListOptions?: StringListOptions;\n /** For INT64_LIST */\n intListOptions?: IntListOptions;\n /** For DECIMAL_LIST */\n decimalListOptions?: DecimalListOptions;\n /** For BOOL_LIST */\n boolListOptions?: BoolListOptions;\n /** For CURRENCY_CODE_LIST */\n currencyListOptions?: CurrencyCodeListOptions;\n /** For LANGUAGE_LIST */\n languageTagListOptions?: LanguageTagListOptions;\n /** For ITEM_SELECTION */\n itemSelectionOptions?: ItemSelectionOptions;\n}\n\n/** Supported parameter data types */\nexport enum ParameterType {\n UNKNOWN_PARAMETER_TYPE = 'UNKNOWN_PARAMETER_TYPE',\n STRING = 'STRING',\n INT = 'INT',\n DECIMAL = 'DECIMAL',\n BOOL = 'BOOL',\n /** ISO 4217 currency codes */\n CURRENCY = 'CURRENCY',\n /** ISO 639-1 language code */\n LANGUAGE = 'LANGUAGE',\n /** Money type with amount and currency */\n MONEY = 'MONEY',\n /** Country with optional subdivision */\n COUNTRY_WITH_SUBDIVISION = 'COUNTRY_WITH_SUBDIVISION',\n}\n\n/** @enumType */\nexport type ParameterTypeWithLiterals =\n | ParameterType\n | 'UNKNOWN_PARAMETER_TYPE'\n | 'STRING'\n | 'INT'\n | 'DECIMAL'\n | 'BOOL'\n | 'CURRENCY'\n | 'LANGUAGE'\n | 'MONEY'\n | 'COUNTRY_WITH_SUBDIVISION';\n\n/**\n * This new enum becomes the primary driver for the 'value_definition_details' oneof.\n * It explicitly lists each way a filter parameter's values can be defined.\n */\nexport enum FilterValueDefinitionMode {\n UNKNOWN_FILTER_VALUE_DEFINITION_MODE = 'UNKNOWN_FILTER_VALUE_DEFINITION_MODE',\n /**\n * For \"any value\": Relies on 'FilterParameterDefinition.fundamental_data_type'.\n * No specific message will be set in the 'value_definition_details' oneof.\n */\n ANY_VALUE_OF_SPECIFIED_TYPE = 'ANY_VALUE_OF_SPECIFIED_TYPE',\n /** pikachu */\n ITEM_SELECTION = 'ITEM_SELECTION',\n STRING_LIST = 'STRING_LIST',\n INT_LIST = 'INT_LIST',\n DECIMAL_LIST = 'DECIMAL_LIST',\n BOOL_LIST = 'BOOL_LIST',\n CURRENCY_LIST = 'CURRENCY_LIST',\n LANGUAGE_TAG_LIST = 'LANGUAGE_TAG_LIST',\n}\n\n/** @enumType */\nexport type FilterValueDefinitionModeWithLiterals =\n | FilterValueDefinitionMode\n | 'UNKNOWN_FILTER_VALUE_DEFINITION_MODE'\n | 'ANY_VALUE_OF_SPECIFIED_TYPE'\n | 'ITEM_SELECTION'\n | 'STRING_LIST'\n | 'INT_LIST'\n | 'DECIMAL_LIST'\n | 'BOOL_LIST'\n | 'CURRENCY_LIST'\n | 'LANGUAGE_TAG_LIST';\n\nexport interface StringListOptions {\n /**\n * List of predefined string options that can be selected.\n * @maxSize 20\n */\n options?: StringOption[];\n}\n\nexport interface StringOption {\n /**\n * Internal value/key used in filter evaluation.\n * @maxLength 50\n */\n value?: string;\n /**\n * Human-readable display name shown in UI.\n * @maxLength 50\n */\n displayName?: string;\n}\n\nexport interface IntListOptions {\n /**\n * List of predefined integer values that can be selected.\n * @maxSize 20\n */\n values?: string[];\n}\n\nexport interface DecimalListOptions {\n /**\n * List of predefined decimal values that can be selected.\n * Uses string representation of decimals for accuracy.\n * @maxSize 20\n * @maxLength 50\n */\n values?: string[];\n}\n\nexport interface BoolListOptions {\n /**\n * List of predefined boolean values that can be selected.\n * @maxSize 2\n */\n values?: boolean[];\n}\n\nexport interface CurrencyCodeListOptions {\n /**\n * List of predefined currency codes that can be selected.\n * ISO 4217 alphabetic codes (e.g., \"USD\", \"EUR\", \"GBP\").\n * @maxSize 20\n * @format CURRENCY\n */\n values?: string[];\n}\n\nexport interface LanguageTagListOptions {\n /**\n * List of predefined language codes that can be selected.\n * ISO 639-1 language codes (e.g., \"en\", \"es\", \"fr\").\n * @maxSize 20\n * @format LANGUAGE_TAG\n */\n values?: string[];\n}\n\nexport interface ItemSelectionOptions {\n /** @maxLength 200 */\n entityReference?: string;\n}\n\n/** TimeConstraintCapability and related messages for detailed time constraint validation */\nexport interface TimeConstraintConfiguration\n extends TimeConstraintConfigurationValueConstraintsOneOf {\n /** For LAST_DAYS, NEXT_DAYS - only specific allowed values */\n predefinedValuesOptions?: PredefinedValues;\n /** For LAST_DAYS, NEXT_DAYS - any value within a min-max range */\n minMaxRangeOptions?: MinMaxRange;\n /** For BETWEEN - range validation */\n rangeOptions?: RangeConstraints;\n /** The type of time constraint */\n type?: TimeConstraintTypeWithLiterals;\n /** The type of value constraint to apply */\n valueConstraintType?: ValueConstraintTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface TimeConstraintConfigurationValueConstraintsOneOf {\n /** For LAST_DAYS, NEXT_DAYS - only specific allowed values */\n predefinedValuesOptions?: PredefinedValues;\n /** For LAST_DAYS, NEXT_DAYS - any value within a min-max range */\n minMaxRangeOptions?: MinMaxRange;\n /** For BETWEEN - range validation */\n rangeOptions?: RangeConstraints;\n}\n\n/**\n * Supported time-window types for a capability.\n * These are used by the API to define a filter and by the SPI to declare supported time constraints.\n */\nexport enum TimeConstraintType {\n UNKNOWN_TIME_CONSTRAINT_TYPE = 'UNKNOWN_TIME_CONSTRAINT_TYPE',\n /** In the last given days. */\n LAST_DAYS = 'LAST_DAYS',\n /** In the next given days. */\n NEXT_DAYS = 'NEXT_DAYS',\n /** Between two specific dates: fromDate and toDate must be set */\n BETWEEN = 'BETWEEN',\n /** Today */\n TODAY = 'TODAY',\n /** This month */\n THIS_MONTH = 'THIS_MONTH',\n /** On or after a specific date: fromDate must be set */\n ON_OR_AFTER = 'ON_OR_AFTER',\n /** On or before a specific date: toDate must be set */\n ON_OR_BEFORE = 'ON_OR_BEFORE',\n /** In the last given months. */\n LAST_MONTHS = 'LAST_MONTHS',\n /** In the next given months. */\n NEXT_MONTHS = 'NEXT_MONTHS',\n}\n\n/** @enumType */\nexport type TimeConstraintTypeWithLiterals =\n | TimeConstraintType\n | 'UNKNOWN_TIME_CONSTRAINT_TYPE'\n | 'LAST_DAYS'\n | 'NEXT_DAYS'\n | 'BETWEEN'\n | 'TODAY'\n | 'THIS_MONTH'\n | 'ON_OR_AFTER'\n | 'ON_OR_BEFORE'\n | 'LAST_MONTHS'\n | 'NEXT_MONTHS';\n\n/** Enum for the different types of value constraints */\nexport enum ValueConstraintType {\n UNKNOWN_VALUE_CONSTRAINT_TYPE = 'UNKNOWN_VALUE_CONSTRAINT_TYPE',\n /** No constraints - user can enter any value */\n NONE = 'NONE',\n /** Provider supports only specific predefined values */\n PREDEFINED_VALUES = 'PREDEFINED_VALUES',\n /** Provider supports any value within a min-max range */\n MIN_MAX_RANGE = 'MIN_MAX_RANGE',\n /** Provider supports range constraints for date ranges */\n RANGE = 'RANGE',\n}\n\n/** @enumType */\nexport type ValueConstraintTypeWithLiterals =\n | ValueConstraintType\n | 'UNKNOWN_VALUE_CONSTRAINT_TYPE'\n | 'NONE'\n | 'PREDEFINED_VALUES'\n | 'MIN_MAX_RANGE'\n | 'RANGE';\n\n/** List of specific allowed values (e.g., [1, 3, 7, 30]) */\nexport interface PredefinedValues {\n /**\n * List of allowed values for the constraint\n * @maxSize 10\n * @min 1\n */\n allowedValues?: number[];\n}\n\n/** Minimum and maximum allowed value (inclusive) */\nexport interface MinMaxRange {\n /**\n * Minimum value for the constraint\n * @min 1\n */\n minValue?: number;\n /**\n * Maximum value for the constraint\n * @min 1\n */\n maxValue?: number;\n}\n\n/** Constraints for TIME_CONSTRAINT_BETWEEN (date range selection) */\nexport interface RangeConstraints {\n /**\n * Maximum allowed range in days (e.g., max 365 days between start and end)\n * @min 1\n */\n maxRangeDays?: number | null;\n}\n\nexport enum Category {\n UNKNOWN_CATEGORY = 'UNKNOWN_CATEGORY',\n CONTACT_ATTRIBUTES = 'CONTACT_ATTRIBUTES',\n CONTACT_ACTIVITIES = 'CONTACT_ACTIVITIES',\n EMAIL_MARKETING = 'EMAIL_MARKETING',\n MESSAGING_CAMPAIGNS = 'MESSAGING_CAMPAIGNS',\n BOOKING_SERVICES = 'BOOKING_SERVICES',\n STORES = 'STORES',\n EVENTS = 'EVENTS',\n PRICING_PLANS = 'PRICING_PLANS',\n ECOMMERCE = 'ECOMMERCE',\n GETTING_PAID = 'GETTING_PAID',\n OTHER = 'OTHER',\n}\n\n/** @enumType */\nexport type CategoryWithLiterals =\n | Category\n | 'UNKNOWN_CATEGORY'\n | 'CONTACT_ATTRIBUTES'\n | 'CONTACT_ACTIVITIES'\n | 'EMAIL_MARKETING'\n | 'MESSAGING_CAMPAIGNS'\n | 'BOOKING_SERVICES'\n | 'STORES'\n | 'EVENTS'\n | 'PRICING_PLANS'\n | 'ECOMMERCE'\n | 'GETTING_PAID'\n | 'OTHER';\n\nexport interface ProductCatalogProviderConfig {\n /** base uri */\n baseUri?: SpiBaseUri;\n}\n\nexport interface SiteMigrationSpiConfig {\n /**\n * @minLength 1\n * @maxLength 200\n */\n deploymentUri?: string;\n}\n\nexport interface PosProviderSettingsServicePluginConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * display name\n * @minLength 1\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * Configuration specifying which fields of each menu-related entity\n * are managed by the POS and therefore disabled in the Wix UI.\n * Only fields listed here are considered disabled; all others remain editable in Wix.\n */\n managedMenuEntities?: ManagedMenuEntities;\n}\n\nexport interface ManagedMenuEntities {\n /** menu override config */\n menu?: FieldManagementConfig;\n /** section override config */\n section?: FieldManagementConfig;\n /** item override config */\n item?: FieldManagementConfig;\n /** modifier group override config */\n modifierGroup?: FieldManagementConfig;\n /** modifier override config */\n modifier?: FieldManagementConfig;\n /** variant override config */\n variant?: FieldManagementConfig;\n /** label override config */\n label?: FieldManagementConfig;\n}\n\n/** Configuration for disabling entity fields in Wix UI (i.e., fields managed by the POS). */\nexport interface FieldManagementConfig {\n /**\n * Fields that are fully managed by the provider.\n * Applies to all field types — scalar, message, and repeated.\n * If a repeated field is listed here, the entire list and its nested content are disabled in Wix UI.\n * @maxSize 100\n * @maxLength 100\n */\n disabledFields?: string[];\n /**\n * Advanced configuration for repeated fields.\n * Use to customize add/remove or reorder behavior.\n * The key is the **path to the repeated field**, and the value is config for list-level behavior.\n * Can be used even if the field is in `disabled_fields`.\n */\n fieldConfigs?: Record<string, RepeatedFieldOverrideConfig>;\n}\n\n/** Controls list-level behavior for repeated fields. */\nexport interface RepeatedFieldOverrideConfig {\n /** If false, disables adding or removing elements in the repeated field. */\n addOrRemoveEnabled?: boolean | null;\n /** If true, allows users to reorder elements in the Wix UI (even if add/remove is disabled). */\n reorderEnabled?: boolean | null;\n}\n\n/** A component that represents a set of instructions for Wix Vibe to execute on app installation */\nexport interface WixVibeCodingInstructions {\n /**\n * System prompt for execution by Vibe\n * @minLength 20\n * @maxLength 10000\n */\n systemPrompt?: string;\n /**\n * Coding instructions module\n * @minLength 1\n * @maxLength 1000\n */\n module?: string | null;\n}\n\nexport interface TaxExemptGroupsProviderConfig {\n /** Base URI of the service plugin implementation. Since no endpoint is calling this path, it may be left blank. */\n deploymentUri?: SpiBaseUri;\n /** @maxSize 100 */\n taxExemptGroups?: TaxExemptGroup[];\n}\n\nexport interface TaxExemptGroup {\n /**\n * Name of the exempt tax group.\n * @maxLength 100\n */\n exemptTaxGroupName?: string;\n /**\n * Unique tax exempt group ID.\n * @format GUID\n */\n _id?: string;\n /**\n * Supported exempt regions\n * Contacts that are buying in those regions will be exempt from paying taxes.\n */\n exemptRegions?: ExemptRegions;\n}\n\n/** The exempt regions could apply automatically to all regions or to specific regions. */\nexport interface ExemptRegions {\n /** Scope of regions, when worldwide is selected, the regions list will be empty. */\n regionScope?: RegionScopeScopeWithLiterals;\n /**\n * The list of exempt regions, if specific regions scope is used.\n * @maxSize 200\n */\n regions?: V1Region[];\n}\n\nexport enum RegionScopeScope {\n /** Specific regions where tax exempt is applicable. */\n SPECIFIC_REGIONS = 'SPECIFIC_REGIONS',\n /** Tax exempt is applicable to all regions, no need to specify them. */\n WORLDWIDE = 'WORLDWIDE',\n}\n\n/** @enumType */\nexport type RegionScopeScopeWithLiterals =\n | RegionScopeScope\n | 'SPECIFIC_REGIONS'\n | 'WORLDWIDE';\n\nexport interface V1Region {\n /**\n * 2-letters code.\n * @format COUNTRY\n */\n countryCode?: string;\n /**\n * subdivisions - Usually a state, region, prefecture, or province code, according to [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2).\n * If empty, the rule applies to the entire region.\n * @maxSize 100\n * @minLength 1\n * @maxLength 50\n */\n subdivisions?: string[];\n}\n\nexport interface BookingAutomationsConfig {\n /** URI where the SPI Implementer is deployed. */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the provider.\n * @maxLength 100\n */\n providerName?: string | null;\n /** Whether the booking automations are enabled for the app's users. Default is true. */\n enabled?: boolean | null;\n /** Whether to allow triggering booking automations. Default is true. */\n allowBookingAutomationTriggering?: boolean | null;\n /**\n * Map of booking automation triggers to the corresponding automation trigger key to use instead.\n * @maxSize 50\n */\n triggerOverrides?: Record<string, V2TriggerOverride>;\n /**\n * 📝 PAYLOAD FIELD OVERRIDES\n *\n * Customize specific data fields in automation trigger payloads without\n * changing the entire trigger. This allows fine-grained data transformation.\n *\n * KEY FORMAT: Original field name in payload (e.g., \"staff_member_name\")\n * VALUE: TriggerFieldOverride containing the replacement field key\n *\n * COMMON FIELD MAPPINGS:\n * • \"staff_member_name\" → \"host_name\"\n * • \"service_name\" → \"meeting_name\"\n *\n * EXAMPLE:\n * {\n * \"staff_member_name\": {\n * \"automation_trigger_field_key\": \"consultant_name\"\n * },\n * \"service_name\": {\n * \"automation_trigger_field_key\": \"consultation_type\"\n * }\n * }\n *\n * LIMITS: Maximum 100 field overrides per field\n * NOTE: Field overrides apply to ALL triggers\n * @maxSize 100\n */\n triggerFieldOverrides?: Record<string, TriggerFieldOverride>;\n}\n\n/** Represents an override for a booking automation trigger. */\nexport interface V2TriggerOverride {\n /**\n * The automation trigger key to use instead of the default one for the given booking automation trigger.\n * @minLength 1\n * @maxLength 100\n */\n automationTriggerKey?: string;\n}\n\n/**\n * ========================================\n * FIELD OVERRIDE SPECIFICATION\n * ========================================\n *\n * Defines a replacement field key for granular payload data transformation.\n * Field overrides allow you to substitute specific data fields in automation\n * trigger payloads without changing the entire trigger or its behavior.\n *\n * FIELD MAPPING FLOW:\n * 1. Booking automation triggers with standard payload\n * 2. System checks for field overrides\n * 3. If field override exists → Replace field key with new field key\n * 4. If no override → Use original field value\n * 5. Continue with automation execution\n *\n * TRANSFORMATION SCOPE:\n * • Applies to ALL automation triggers\n * • Only affects data payload content, not trigger behavior\n * • Preserves original trigger timing and conditions\n * • Maintains automation flow and dependencies\n *\n * COMMON FIELD MAPPING SCENARIOS:\n * • Terminology alignment: \"staff_member_name\" → \"host_name\"\n * • Schema consistency: \"service_name\" → \"meeting_name\"\n */\nexport interface TriggerFieldOverride {\n /**\n * 🏷️ REPLACEMENT FIELD IDENTIFIER\n *\n * The field key in your app's automation data schema that should be used\n * instead of the original booking automation field. This enables seamless\n * data transformation to match your app's terminology and requirements.\n *\n * FIELD KEY REQUIREMENTS:\n * ✓ Must exist in your app's automation data schema\n * ✓ Should be compatible with the original field's data type\n * ✓ Must follow consistent naming conventions\n * ✓ Should provide meaningful business context\n *\n * MAPPING EXAMPLES:\n *\n * TERMINOLOGY ALIGNMENT:\n * • \"host_name\" (for \"staff_member_name\")\n * • \"attendee_name\" (for \"client_name\")\n * • \"consultation_type\" (for \"service_name\")\n *\n * BUSINESS CONTEXT:\n * • \"lead_email\" (for \"client_email\")\n * • \"opportunity_value\" (for \"booking_price\")\n * • \"meeting_duration_minutes\" (for \"booking_duration\")\n *\n * INTEGRATION CONSISTENCY:\n * • \"customer_contact\" (for \"client_email\")\n * • \"appointment_location\" (for \"booking_location\")\n * • \"session_datetime\" (for \"booking_date\" + \"booking_time\")\n *\n * VALIDATION:\n * • Length: 1-100 characters\n * • Must be valid field identifier\n * • Should maintain data type compatibility\n * • Must exist in target automation schema\n * @minLength 1\n * @maxLength 100\n */\n automationTriggerFieldKey?: string;\n}\n\nexport interface BookingsPlatformConfig {\n /** Reserved for future use */\n deploymentUri?: SpiBaseUri;\n /** Permission overrides for actions within the Bookings platform */\n permissionOverrides?: PermissionOverrides;\n /** Configuration for Wix Forms integration within the Bookings platform */\n formsConfiguration?: FormsConfig;\n /** Configuration for Automations integration within the Bookings platform */\n automationsConfiguration?: AutomationsConfig;\n}\n\nexport interface PermissionOverrides {\n /** Custom permission for services */\n servicePermissionOverrides?: ServicePermissionOverrides;\n /** Custom permission for bookings */\n bookingPermissionOverrides?: BookingPermissionOverrides;\n /** Custom permission for booking policies */\n policyPermissionOverrides?: PolicyPermissionOverrides;\n}\n\nexport interface ServicePermissionOverrides {\n /**\n * Permission required to create a service\n * @minLength 1\n * @maxLength 60\n */\n createPermission?: string | null;\n /**\n * Permission required to update a service\n * @minLength 1\n * @maxLength 60\n */\n updatePermission?: string | null;\n}\n\nexport interface BookingPermissionOverrides {\n /**\n * Permission required to create a booking\n * @minLength 1\n * @maxLength 60\n */\n createPermission?: string | null;\n /**\n * Permission required to update a booking\n * @minLength 1\n * @maxLength 60\n */\n updatePermission?: string | null;\n}\n\nexport interface PolicyPermissionOverrides {\n /**\n * Permission required to create a policy\n * @minLength 1\n * @maxLength 60\n */\n createPermission?: string | null;\n /**\n * Permission required to update a policy\n * @minLength 1\n * @maxLength 60\n */\n updatePermission?: string | null;\n}\n\nexport interface FormsConfig {\n /**\n * The namespace of the Wix Forms app to be used for forms integration within the Bookings platform.\n * If none is provided, the default Wix Bookings app namespace (`wix.bookings.v2.bookings`) will be used.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string | null;\n}\n\nexport interface AutomationsConfig {\n /** Flag to enable or disable Bookings automations */\n bookingsAutomationsEnabled?: boolean | null;\n /**\n * Overrides for triggers names\n * @maxSize 50\n */\n triggerOverrides?: TriggerOverride[];\n /**\n * Overrides for field names\n * @maxSize 100\n */\n globalFieldOverrides?: FieldOverride[];\n}\n\nexport interface TriggerOverride {\n /**\n * The key of the source trigger to be overridden\n * suported keys:\n * \"wix_bookings-appointment_declined\"\n * \"wix_bookings-appointment_confirmed\"\n * \"wix_bookings-any_check_in\"\n * \"wix_bookings-booking_canceled\"\n * \"wix_bookings-appointment_requires_confirmation\"\n * \"wix_bookings-sessions_booked\"\n * \"wix_bookings-session_starts\"\n * \"wix_bookings-session_updated\"\n * @minLength 1\n * @maxLength 100\n */\n sourceTriggerKey?: string | null;\n /**\n * The key of the target trigger to use as the override\n * @minLength 1\n * @maxLength 100\n */\n targetTriggerKey?: string | null;\n}\n\nexport interface FieldOverride {\n /**\n * The name of the source field to be overridden\n * @minLength 1\n * @maxLength 100\n */\n sourceFieldName?: string | null;\n /**\n * The name of the target field to use as the override\n * @minLength 1\n * @maxLength 100\n */\n targetFieldName?: string | null;\n}\n\n/** A component that represents a Wix Vibe UI component editing configuration */\nexport interface WixVibeComponent {\n /**\n * @minLength 3\n * @maxLength 100\n */\n htmlCodeTag?: string;\n /**\n * The name of the component\n * @minLength 3\n * @maxLength 50\n */\n name?: string;\n /**\n * Description of the component functionality\n * @maxLength 300\n * @minLength 3\n */\n description?: string;\n /** Custom editor actions available for this component on selection */\n customActions?: Record<string, CustomAction>;\n /**\n * Collection ID for inline edit functionality\n * @maxLength 50\n */\n inlineEditCollectionId?: string;\n}\n\n/** Configuration for custom editor actions */\nexport interface CustomAction extends CustomActionActionExecuteOneOf {\n openDashboard?: VibeDashboardAction;\n openCustomPanel?: VibeCustomPanelAction;\n /**\n * Display name for the action\n * @minLength 3\n * @maxLength 50\n */\n displayName?: string;\n actionType?: VibeActionTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface CustomActionActionExecuteOneOf {\n openDashboard?: VibeDashboardAction;\n openCustomPanel?: VibeCustomPanelAction;\n}\n\nexport enum VibeActionType {\n UNKNOWN_ActionType = 'UNKNOWN_ActionType',\n OPEN_DASHBOARD = 'OPEN_DASHBOARD',\n OPEN_CUSTOM_PANEL = 'OPEN_CUSTOM_PANEL',\n}\n\n/** @enumType */\nexport type VibeActionTypeWithLiterals =\n | VibeActionType\n | 'UNKNOWN_ActionType'\n | 'OPEN_DASHBOARD'\n | 'OPEN_CUSTOM_PANEL';\n\n/** Dashboard action configuration */\nexport interface VibeDashboardAction {\n /**\n * Dashboard page identifier\n * @minLength 4\n * @maxLength 50\n */\n pageId?: string;\n}\n\n/** Custom panel action configuration */\nexport interface VibeCustomPanelAction {\n /**\n * Exported component identifier\n * @format GUID\n */\n componentId?: string;\n}\n\nexport interface WixelSPIConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /** Asset type to be handled by this SPI implementation */\n assetType?: AssetTypeWithLiterals;\n /** The expose_export ft */\n exposeExport?: boolean;\n /** Whether shared asset properties computation is enabled for this SPI implementation. */\n exposeSharedAssetProperties?: boolean;\n /** Whether asset copied from template handling is enabled for this SPI implementation. */\n exposeHandleAssetCopiedFromTemplate?: boolean;\n /** Whether publish asset functionality is enabled for this SPI implementation. */\n exposePublishAsset?: boolean;\n /** Whether create asset functionality is enabled for this SPI implementation. */\n exposeCreateAsset?: boolean;\n}\n\nexport enum AssetType {\n UNKNOWN = 'UNKNOWN',\n IMAGE = 'IMAGE',\n VIDEO = 'VIDEO',\n LOGO = 'LOGO',\n EVENT = 'EVENT',\n FORM = 'FORM',\n PDF = 'PDF',\n RICOS = 'RICOS',\n DOC = 'DOC',\n SLIDE = 'SLIDE',\n WIDGET = 'WIDGET',\n FONT = 'FONT',\n ICONS = 'ICONS',\n}\n\n/** @enumType */\nexport type AssetTypeWithLiterals =\n | AssetType\n | 'UNKNOWN'\n | 'IMAGE'\n | 'VIDEO'\n | 'LOGO'\n | 'EVENT'\n | 'FORM'\n | 'PDF'\n | 'RICOS'\n | 'DOC'\n | 'SLIDE'\n | 'WIDGET'\n | 'FONT'\n | 'ICONS';\n\nexport interface StaffSortingProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name for the sorting method\n * @maxLength 100\n */\n methodName?: string;\n /**\n * User-friendly explanation about the sorting method.\n * @maxLength 100\n */\n methodDescription?: string;\n /**\n * Optional. An unique identifier for a component that will create a configuration for the method.\n * @format GUID\n */\n dashboardPluginId?: string | null;\n}\n\nexport interface FunctionEcomDiscountTriggerEligibilityProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n}\n\nexport interface FunctionAssistantToolProviderConfig {\n /**\n * instead of .wix.common.spi.SpiBaseUri deployment_uri = 1;\n * @maxLength 100\n */\n deploymentUri?: string;\n /**\n * Function spi configuration\n * @format GUID\n * @readonly\n */\n functionToolId?: string;\n}\n\nexport interface SiteMapProviderConfig {\n /**\n * URL to dynamic site structure provider service\n * @maxLength 8192\n */\n deploymentUri?: string;\n}\n\nexport interface WixAiGatewaySpiConfig {\n /** Base URI where the endpoints are called. Wix appends the endpoint path to the base URI. */\n baseUri?: SpiBaseUri;\n}\n\nexport interface UrlMapperProviderConfig {\n /** the base URI where all the methods are deployed. E.g. \"https://golden-coupons.com/wix-provider\" */\n baseUri?: SpiBaseUri;\n}\n\n/** A ProviderSuppressionServicePluginConfig is entity which holds dev center app configuration for allowed payment provider on site */\nexport interface ProviderSuppressionServicePluginConfig {\n /**\n * List of allowed payment providers and allowed methods for provider on sites where this app will be installed\n * @minSize 1\n * @maxSize 100\n */\n allowedProviders?: Provider[];\n}\n\nexport interface Provider {\n /**\n * Payment provider id allowed on a site\n * @format GUID\n */\n providerId?: string;\n /**\n * Payment method type ids list of the allow payment methods for the specified provider\n * @minSize 1\n * @maxSize 100\n * @format GUID\n */\n allowedPaymentMethodTypeIds?: string[];\n}\n\nexport interface FormsSPIConfig {\n /**\n * Base URI where the endpoints are called.\n * Wix eCommerce appends the endpoint path to the base URI.\n * For example, to call the Get Forms endpoint at `https://my-forms.com/v1/getForms`,\n * the base URI you provide here is `https://my-forms.com/`.\n * @minLength 1\n * @maxLength 150\n */\n deploymentUri?: string;\n}\n\n/**\n * A component that provides context to children and can be added\n * to any page, container or section in the Editor.\n * The compoent is logical and does not provide any UI.\n * It does however provide props for configuring it in the Editor.\n * The bundles can export the following:\n * method `default` export: the context provider component\n * method `injectAccessTokenGetter`: A way to have an access token injected\n * hooks: The hook method exposed for usage (`useSomeContextName`)\n */\nexport interface EditorContextProvider {\n /**\n * The component type, should be a namespaced: slug.componentName\n * @maxLength 100\n */\n type?: string;\n /** The runtime information needed for this component */\n resources?: EditorContextProviderResources;\n /** The exposed context model for this component */\n context?: ApiContext;\n /** data-api of this element, a map of data-items where the key is the data-item name and the value is the data-item definition. These will be manifested as `props` for the component, always has children as a prop */\n data?: Record<string, DataItem>;\n /** Allows overriding the default settings actions for the data of this component */\n settings?: Action;\n}\n\nexport interface EditorContextProviderResources {\n /** The ESM bundle for this component in runtime */\n client?: Resource;\n /** An ESM bundle for editor experiences, can allow different things like having default data */\n editor?: Resource;\n /** The specifier of how to use thge context this component provides in React */\n contextSpecifier?: ContextSpecifier;\n /** Dependencies on other services and contexts */\n dependencies?: EditorDependencies;\n}\n\n/** A specifier of how to use the context this component provides in React */\nexport interface ContextSpecifier {\n /**\n * The module name in case of public NPM package\n * @maxLength 100\n */\n moduleSpecifier?: string;\n /**\n * The exported hook for components usage\n * @maxLength 100\n */\n hook?: string;\n}\n\nexport interface ApiContext {\n /** A map of keys describing the context provided by this component */\n items?: Record<string, ContextItem>;\n}\n\nexport interface ContextItem extends ContextItemSelectedDataTypeOneOf {\n /** For arrays, the items are defined here */\n arrayItems?: ContextArrayItems;\n /** For data objects, the items are defined here */\n data?: ContextDataItems;\n /** For functions, the function definition is defined here */\n function?: EditorFunction;\n /** The type exposed by the context item (can't be \"container\") */\n dataType?: DataTypeWithLiterals;\n /**\n * The display name of the context item for user facing and AI usage\n * @maxLength 100\n */\n displayName?: string | null;\n /** For sub types that implement parts of context, points to a context provider component type */\n contextImplementor?: ContextImplementor;\n}\n\n/** @oneof */\nexport interface ContextItemSelectedDataTypeOneOf {\n /** For arrays, the items are defined here */\n arrayItems?: ContextArrayItems;\n /** For data objects, the items are defined here */\n data?: ContextDataItems;\n /** For functions, the function definition is defined here */\n function?: EditorFunction;\n}\n\nexport interface ContextImplementor {\n /**\n * The component type to implement the context item\n * @maxLength 100\n */\n componentType?: string;\n /**\n * The prop key the component expects the context to be passed in to it (optional)\n * @maxLength 100\n */\n propKey?: string | null;\n}\n\n/** An array of data items or complex data types */\nexport interface ContextArrayItems extends ContextArrayItemsArrayDataOneOf {\n /**\n * In case of complex objects inside arrays - DEPRECATED\n * @deprecated In case of complex objects inside arrays - DEPRECATED\n * @replacedBy item\n * @targetRemovalDate 2025-12-18\n */\n data?: ContextDataItems;\n /** Specify the type of data inside the array */\n item?: ContextItem;\n}\n\n/** @oneof */\nexport interface ContextArrayItemsArrayDataOneOf {\n /**\n * In case of complex objects inside arrays - DEPRECATED\n * @deprecated In case of complex objects inside arrays - DEPRECATED\n * @replacedBy item\n * @targetRemovalDate 2025-12-18\n */\n data?: ContextDataItems;\n /** Specify the type of data inside the array */\n item?: ContextItem;\n}\n\n/** A map of keys describing the context items provided by this component */\nexport interface ContextDataItems {\n /** A map of keys describing the data items provided by this component */\n items?: Record<string, ContextItem>;\n /** For sub types that implement parts of context, points to a context provider component type */\n contextImplementor?: ContextImplementor;\n}\n\nexport interface EditorFunctionLibrary {\n /**\n * A unique type, uses the codeIdentifer as a prefix and the lib name as a suffix. Example: `wixElements.stringUtilFunctions`\n * @maxLength 100\n */\n type?: string;\n /** The functions definition exposed in this bundle, each key is the function name */\n functions?: Record<string, EditorFunction>;\n /** The bundle information for runtime */\n resources?: FunctionResources;\n /**\n * The display name of the library for human readability\n * @maxLength 100\n */\n name?: string | null;\n /**\n * A description of the librarie's main use cases\n * @maxLength 300\n */\n description?: string | null;\n}\n\nexport interface FunctionResources {\n /** The ESM bundle for this component in runtime */\n client?: Resource;\n /**\n * The module specifier for this library in case it is also available as an NPM package\n * @maxLength 100\n */\n moduleSpecifier?: string | null;\n}\n\nexport interface RuntimeComponentCacheEntityExperiment\n extends RuntimeComponentCacheEntityExperimentExperimentOneOf {\n gradualRollout?: GradualRolloutCacheEntity;\n gradualUpdate?: GradualUpdateCacheEntity;\n gradualDelete?: GradualDeleteCacheEntity;\n partialUpdate?: PartialUpdateCacheEntity;\n /**\n * Spec to conduct on the component\n * @maxLength 128\n */\n spec?: string;\n /**\n * Value the spec should return in order to return the newer component version\n * @maxLength 128\n */\n variantValue?: string;\n}\n\n/** @oneof */\nexport interface RuntimeComponentCacheEntityExperimentExperimentOneOf {\n gradualRollout?: GradualRolloutCacheEntity;\n gradualUpdate?: GradualUpdateCacheEntity;\n gradualDelete?: GradualDeleteCacheEntity;\n partialUpdate?: PartialUpdateCacheEntity;\n}\n\nexport interface GradualRolloutCacheEntity {\n experimentComponent?: RuntimeComponentCacheEntityComponent;\n}\n\nexport interface GradualUpdateCacheEntity {\n experimentComponent?: RuntimeComponentCacheEntityComponent;\n fallbackComponent?: RuntimeComponentCacheEntityComponent;\n}\n\nexport interface GradualDeleteCacheEntity {\n experimentComponent?: RuntimeComponentCacheEntityComponent;\n}\n\nexport interface PartialUpdateCacheEntity {\n experimentComponent?: RuntimeComponentCacheEntityComponent;\n}\n\nexport interface CreatedByCacheEntity {\n /**\n * The id of the entity which created the App\n * @format GUID\n */\n _id?: string;\n /** The type of the entity which created the App (User, App, etc.) */\n type?: string;\n}\n\nexport interface AppData {\n /**\n * Represents the ID of the Application\n * @format GUID\n */\n appId?: string;\n /**\n * Represents the Version of the Application\n * @maxLength 50\n */\n version?: string;\n /**\n * Represents the name of the Application\n * @maxLength 50\n */\n name?: string;\n /**\n * Represents the account id of the Application\n * @format GUID\n */\n accountId?: string;\n /**\n * Represents the namespace of the application\n * @minLength 1\n * @maxLength 150\n */\n namespace?: string | null;\n /** Is Wix application? */\n wixApp?: boolean;\n /**\n * The state of the application\n * @maxLength 50\n */\n status?: string;\n /**\n * The type of application\n * @maxLength 50\n */\n appType?: string;\n /**\n * Represents the Component data enriched with translations and overrides\n * @maxSize 330\n */\n components?: RuntimeComponentCacheEntity[];\n /**\n * The slug of the app. A human readable identifier of the app\n * @minLength 1\n * @maxLength 200\n */\n slug?: string | null;\n /** Indicates if the app is private */\n privateApp?: boolean;\n /** The id and type of the entity which created the App (User, App, etc.) */\n createdBy?: CreatedByCacheEntity;\n /** Represents the time this AppRuntimeData was created */\n _createdDate?: Date | null;\n /** Represents the time this AppRuntimeData was last updated */\n _updatedDate?: Date | null;\n /** Indicates if this app's version is not in draft state */\n draft?: boolean;\n /**\n * Represents the full version (major.minor.build) of the version. Only applicable for State = LOCKED_DRAFT / PRODUCTION\n * @minLength 1\n * @maxLength 50\n */\n fullVersion?: string | null;\n /** Indicates if the app is HIPAA compliant */\n hipaaCompliant?: boolean | null;\n /** Indicates if app is a Companion app */\n companionApp?: boolean | null;\n}\n\nexport interface TranslatedData {\n name?: string | null;\n components?: RuntimeComponentCacheEntityComponent[];\n}\n\nexport interface DeleteUserDefinedFieldsRequest {\n /**\n * Schema ID.\n * @format GUID\n */\n dataExtensionSchemaId: string | null;\n /**\n * List of fields paths to delete. For example, [\"size\", \"personalization.specialInstructions\"].\n * @minSize 1\n * @maxSize 10\n * @maxLength 1000\n */\n fieldsToDelete: string[];\n}\n\nexport interface DeleteUserDefinedFieldsResponse {\n /** Updated schema. */\n dataExtensionSchema?: DataExtensionSchema;\n}\n\nexport interface MessageEnvelope {\n /**\n * App instance ID.\n * @format GUID\n */\n instanceId?: string | null;\n /**\n * Event type.\n * @maxLength 150\n */\n eventType?: string;\n /** The identification type and identity data. */\n identity?: IdentificationData;\n /** Stringify payload. */\n data?: string;\n}\n\nexport interface IdentificationData extends IdentificationDataIdOneOf {\n /**\n * ID of a site visitor that has not logged in to the site.\n * @format GUID\n */\n anonymousVisitorId?: string;\n /**\n * ID of a site visitor that has logged in to the site.\n * @format GUID\n */\n memberId?: string;\n /**\n * ID of a Wix user (site owner, contributor, etc.).\n * @format GUID\n */\n wixUserId?: string;\n /**\n * ID of an app.\n * @format GUID\n */\n appId?: string;\n /** @readonly */\n identityType?: WebhookIdentityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IdentificationDataIdOneOf {\n /**\n * ID of a site visitor that has not logged in to the site.\n * @format GUID\n */\n anonymousVisitorId?: string;\n /**\n * ID of a site visitor that has logged in to the site.\n * @format GUID\n */\n memberId?: string;\n /**\n * ID of a Wix user (site owner, contributor, etc.).\n * @format GUID\n */\n wixUserId?: string;\n /**\n * ID of an app.\n * @format GUID\n */\n appId?: string;\n}\n\nexport enum WebhookIdentityType {\n UNKNOWN = 'UNKNOWN',\n ANONYMOUS_VISITOR = 'ANONYMOUS_VISITOR',\n MEMBER = 'MEMBER',\n WIX_USER = 'WIX_USER',\n APP = 'APP',\n}\n\n/** @enumType */\nexport type WebhookIdentityTypeWithLiterals =\n | WebhookIdentityType\n | 'UNKNOWN'\n | 'ANONYMOUS_VISITOR'\n | 'MEMBER'\n | 'WIX_USER'\n | 'APP';\n\nexport interface BaseEventMetadata {\n /**\n * App instance ID.\n * @format GUID\n */\n instanceId?: string | null;\n /**\n * Event type.\n * @maxLength 150\n */\n eventType?: string;\n /** The identification type and identity data. */\n identity?: IdentificationData;\n}\n\nexport interface EventMetadata extends BaseEventMetadata {\n /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n _id?: string;\n /**\n * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n */\n entityFqdn?: string;\n /**\n * Event action name, placed at the top level to make it easier for users to dispatch messages.\n * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n */\n slug?: string;\n /** ID of the entity associated with the event. */\n entityId?: string;\n /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n eventTime?: Date | null;\n /**\n * Whether the event was triggered as a result of a privacy regulation application\n * (for example, GDPR).\n */\n triggeredByAnonymizeRequest?: boolean | null;\n /** If present, indicates the action that triggered the event. */\n originatedFrom?: string | null;\n /**\n * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.\n */\n entityEventSequence?: string | null;\n}\n\nexport interface DataExtensionSchemaCreatedEnvelope {\n entity: DataExtensionSchema;\n metadata: EventMetadata;\n}\n\n/**\n * Triggered when a data extension schema is created.\n * @permissionScope Manage Stores\n * @permissionScopeId SCOPE.STORES.MANAGE-STORES\n * @permissionScope Manage Bookings Services and Settings\n * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION\n * @permissionScope Manage Events\n * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS\n * @permissionScope Manage Challenges\n * @permissionScopeId SCOPE.CHALLENGES.MANAGE\n * @permissionScope Manage Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.MANAGE-SCHEMAS\n * @permissionScope Manage Portfolio\n * @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO\n * @permissionScope View SEO Settings\n * @permissionScopeId SCOPE.PROMOTE.VIEW-SEO\n * @permissionScope Access Verticals by Automations\n * @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS\n * @permissionScope Read Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.READ-SCHEMAS\n * @permissionScope Manage Restaurants - all permissions\n * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES\n * @permissionScope Set Up Automations\n * @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS\n * @permissionId DATA_EXTENSION_SCHEMA.READ\n * @webhook\n * @eventType wix.data_extensions.v1.data_extension_schema_created\n * @slug created\n */\nexport declare function onDataExtensionSchemaCreated(\n handler: (event: DataExtensionSchemaCreatedEnvelope) => void | Promise<void>\n): void;\n\nexport interface DataExtensionSchemaDeletedEnvelope {\n metadata: EventMetadata;\n}\n\n/**\n * Triggered when a data extension schema is deleted.\n * @permissionScope Manage Stores\n * @permissionScopeId SCOPE.STORES.MANAGE-STORES\n * @permissionScope Manage Bookings Services and Settings\n * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION\n * @permissionScope Manage Events\n * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS\n * @permissionScope Manage Challenges\n * @permissionScopeId SCOPE.CHALLENGES.MANAGE\n * @permissionScope Manage Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.MANAGE-SCHEMAS\n * @permissionScope Manage Portfolio\n * @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO\n * @permissionScope View SEO Settings\n * @permissionScopeId SCOPE.PROMOTE.VIEW-SEO\n * @permissionScope Access Verticals by Automations\n * @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS\n * @permissionScope Read Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.READ-SCHEMAS\n * @permissionScope Manage Restaurants - all permissions\n * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES\n * @permissionScope Set Up Automations\n * @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS\n * @permissionId DATA_EXTENSION_SCHEMA.READ\n * @webhook\n * @eventType wix.data_extensions.v1.data_extension_schema_deleted\n * @slug deleted\n */\nexport declare function onDataExtensionSchemaDeleted(\n handler: (event: DataExtensionSchemaDeletedEnvelope) => void | Promise<void>\n): void;\n\nexport interface DataExtensionSchemaUpdatedEnvelope {\n entity: DataExtensionSchema;\n metadata: EventMetadata;\n /** @hidden */\n modifiedFields: Record<string, any>;\n}\n\n/**\n * Triggered when a data extension schema is updated.\n * @permissionScope Manage Stores\n * @permissionScopeId SCOPE.STORES.MANAGE-STORES\n * @permissionScope Manage Bookings Services and Settings\n * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION\n * @permissionScope Manage Events\n * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS\n * @permissionScope Manage Challenges\n * @permissionScopeId SCOPE.CHALLENGES.MANAGE\n * @permissionScope Manage Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.MANAGE-SCHEMAS\n * @permissionScope Manage Portfolio\n * @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO\n * @permissionScope View SEO Settings\n * @permissionScopeId SCOPE.PROMOTE.VIEW-SEO\n * @permissionScope Access Verticals by Automations\n * @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS\n * @permissionScope Read Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.READ-SCHEMAS\n * @permissionScope Manage Restaurants - all permissions\n * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES\n * @permissionScope Set Up Automations\n * @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS\n * @permissionId DATA_EXTENSION_SCHEMA.READ\n * @webhook\n * @eventType wix.data_extensions.v1.data_extension_schema_updated\n * @slug updated\n */\nexport declare function onDataExtensionSchemaUpdated(\n handler: (event: DataExtensionSchemaUpdatedEnvelope) => void | Promise<void>\n): void;\n\n/**\n * Creates a user-defined data extension schema.\n * @param dataExtensionSchema - Schema to create.\n * @public\n * @requiredField dataExtensionSchema\n * @requiredField dataExtensionSchema.fqdn\n * @requiredField dataExtensionSchema.jsonSchema\n * @requiredField dataExtensionSchema.namespace\n * @permissionId DATA_EXTENSION_SCHEMA.WRITE\n * @applicableIdentity APP\n * @returns Created schema.\n * @fqn wix.infra.dataextensions.v1.DataExtensionSchemaService.CreateDataExtensionSchema\n */\nexport async function createDataExtensionSchema(\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `fqdn` | `jsonSchema` | `namespace`,\n 2\n >\n): Promise<DataExtensionSchema> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n dataExtensionSchema: dataExtensionSchema,\n });\n\n const reqOpts =\n ambassadorWixDataExtensionsV1DataExtensionSchema.createDataExtensionSchema(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)\n ?.dataExtensionSchema!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { dataExtensionSchema: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['dataExtensionSchema']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\n/**\n * Updates a user-defined data extension schema, overriding the existing data.\n * @param dataExtensionSchema - Schema to update.\n * @public\n * @requiredField dataExtensionSchema\n * @requiredField dataExtensionSchema._id\n * @requiredField dataExtensionSchema.jsonSchema\n * @requiredField dataExtensionSchema.revision\n * @param options - Field options. The following fields **must** be passed: `_id`, `jsonSchema`, `revision`.\n * @permissionId DATA_EXTENSION_SCHEMA.WRITE\n * @applicableIdentity APP\n * @fqn wix.infra.dataextensions.v1.DataExtensionSchemaService.UpdateDataExtensionSchema\n */\nexport async function updateDataExtensionSchema(\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `_id` | `jsonSchema` | `revision`,\n 2\n >\n): Promise<UpdateDataExtensionSchemaResponse> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n dataExtensionSchema: dataExtensionSchema,\n });\n\n const reqOpts =\n ambassadorWixDataExtensionsV1DataExtensionSchema.updateDataExtensionSchema(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { dataExtensionSchema: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['dataExtensionSchema']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\n/**\n * Retrieves a list of global and user-defined data extension schemas for a given FQDN.\n * @param fqdn - [Fully qualified domain name](https://dev.wix.com/docs/rest/articles/getting-started/fqdns).\n * @public\n * @requiredField fqdn\n * @permissionId DATA_EXTENSION_SCHEMA.READ\n * @applicableIdentity APP\n * @fqn wix.infra.dataextensions.v1.DataExtensionSchemaService.ListDataExtensionSchemas\n */\nexport async function listDataExtensionSchemas(\n fqdn: string,\n options?: ListDataExtensionSchemasOptions\n): Promise<\n NonNullablePaths<ListDataExtensionSchemasResponse, `dataExtensionSchemas`, 2>\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n fqdn: fqdn,\n namespaces: options?.namespaces,\n fields: options?.fields,\n extensionPoints: options?.extensionPoints,\n });\n\n const reqOpts =\n ambassadorWixDataExtensionsV1DataExtensionSchema.listDataExtensionSchemas(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n fqdn: '$[0]',\n namespaces: '$[1].namespaces',\n fields: '$[1].fields',\n extensionPoints: '$[1].extensionPoints',\n },\n singleArgumentUnchanged: false,\n },\n ['fqdn', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface ListDataExtensionSchemasOptions {\n /**\n * Namespaces within the given entity.\n * @maxSize 100\n * @maxLength 164\n */\n namespaces?: string[];\n /**\n * Additional fields that are hidden by default. For example, fields with `\"x-wix-archived\": true`.\n * @maxSize 5\n */\n fields?: RequestedFieldWithLiterals[];\n /**\n * Extension points within the given entity.\n * @maxSize 20\n * @maxLength 10\n */\n extensionPoints?: string[];\n}\n\n/**\n * Deletes schemas of whitelisted metasite ids\n * @param metaSiteId - Meta site id\n * @public\n * @requiredField metaSiteId\n * @fqn wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteByWhiteListedMetaSite\n */\nexport async function deleteByWhiteListedMetaSite(\n metaSiteId: string\n): Promise<\n NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`, 2>\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n metaSiteId: metaSiteId,\n });\n\n const reqOpts =\n ambassadorWixDataExtensionsV1DataExtensionSchema.deleteByWhiteListedMetaSite(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { metaSiteId: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['metaSiteId']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\n/**\n * Deletes a user defined field from the specified data extension schema.\n * @param dataExtensionSchemaId - Schema ID.\n * @public\n * @requiredField dataExtensionSchemaId\n * @requiredField options\n * @requiredField options.fieldsToDelete\n * @permissionId DATA_EXTENSION_SCHEMA.DELETE_USER_DEFINED_FIELDS\n * @applicableIdentity APP\n * @fqn wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteUserDefinedFields\n */\nexport async function deleteUserDefinedFields(\n dataExtensionSchemaId: string,\n options: NonNullablePaths<DeleteUserDefinedFieldsOptions, `fieldsToDelete`, 2>\n): Promise<DeleteUserDefinedFieldsResponse> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n dataExtensionSchemaId: dataExtensionSchemaId,\n fieldsToDelete: options?.fieldsToDelete,\n });\n\n const reqOpts =\n ambassadorWixDataExtensionsV1DataExtensionSchema.deleteUserDefinedFields(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n dataExtensionSchemaId: '$[0]',\n fieldsToDelete: '$[1].fieldsToDelete',\n },\n singleArgumentUnchanged: false,\n },\n ['dataExtensionSchemaId', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface DeleteUserDefinedFieldsOptions {\n /**\n * List of fields paths to delete. For example, [\"size\", \"personalization.specialInstructions\"].\n * @minSize 1\n * @maxSize 10\n * @maxLength 1000\n */\n fieldsToDelete: string[];\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\nimport {\n _Function,\n _Number,\n _Date,\n _Array,\n _Boolean,\n _Object,\n _String,\n} from './data-extensions-v1-data-extension-schema-schemas.types';\n\nfunction resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'manage._base_domain_': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n _: [\n {\n srcPath: '/_api/schema-service',\n destPath: '',\n },\n ],\n 'editor.wixapps.net': [\n {\n srcPath: '/_api/schema-service',\n destPath: '',\n },\n ],\n 'www.wixapis.com': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_data-extension-schema_schemas';\n\n/** Creates a user-defined data extension schema. */\nexport function createDataExtensionSchema(\n payload: object\n): RequestOptionsFactory<any> {\n function __createDataExtensionSchema({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.CreateDataExtensionSchema',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __createDataExtensionSchema;\n}\n\n/** Updates a user-defined data extension schema, overriding the existing data. */\nexport function updateDataExtensionSchema(\n payload: object\n): RequestOptionsFactory<any> {\n function __updateDataExtensionSchema({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'PUT' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.UpdateDataExtensionSchema',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __updateDataExtensionSchema;\n}\n\n/** Retrieves a list of global and user-defined data extension schemas for a given FQDN. */\nexport function listDataExtensionSchemas(\n payload: object\n): RequestOptionsFactory<any> {\n function __listDataExtensionSchemas({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'GET' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.ListDataExtensionSchemas',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchemas.updatedDate' },\n { path: 'dataExtensionSchemas.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __listDataExtensionSchemas;\n}\n\n/** Deletes schemas of whitelisted metasite ids */\nexport function deleteByWhiteListedMetaSite(\n payload: object\n): RequestOptionsFactory<any> {\n function __deleteByWhiteListedMetaSite({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteByWhiteListedMetaSite',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas/delete-by-white-listed-meta-site',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __deleteByWhiteListedMetaSite;\n}\n\n/** Deletes a user defined field from the specified data extension schema. */\nexport function deleteUserDefinedFields(\n payload: object\n): RequestOptionsFactory<any> {\n function __deleteUserDefinedFields({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteUserDefinedFields',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas/delete-user-defined-fields',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __deleteUserDefinedFields;\n}\n","import {\n createDataExtensionSchema as publicCreateDataExtensionSchema,\n updateDataExtensionSchema as publicUpdateDataExtensionSchema,\n listDataExtensionSchemas as publicListDataExtensionSchemas,\n deleteByWhiteListedMetaSite as publicDeleteByWhiteListedMetaSite,\n deleteUserDefinedFields as publicDeleteUserDefinedFields,\n} from './data-extensions-v1-data-extension-schema-schemas.public.js';\nimport { createRESTModule } from '@wix/sdk-runtime/rest-modules';\nimport { createEventModule } from '@wix/sdk-runtime/event-definition-modules';\nimport {\n BuildRESTFunction,\n MaybeContext,\n BuildEventDefinition,\n} from '@wix/sdk-types';\nimport { onDataExtensionSchemaCreated as publicOnDataExtensionSchemaCreated } from './data-extensions-v1-data-extension-schema-schemas.public.js';\nimport { onDataExtensionSchemaDeleted as publicOnDataExtensionSchemaDeleted } from './data-extensions-v1-data-extension-schema-schemas.public.js';\nimport { onDataExtensionSchemaUpdated as publicOnDataExtensionSchemaUpdated } from './data-extensions-v1-data-extension-schema-schemas.public.js';\n\nexport const createDataExtensionSchema: MaybeContext<\n BuildRESTFunction<typeof publicCreateDataExtensionSchema> &\n typeof publicCreateDataExtensionSchema\n> = /*#__PURE__*/ createRESTModule(publicCreateDataExtensionSchema);\nexport const updateDataExtensionSchema: MaybeContext<\n BuildRESTFunction<typeof publicUpdateDataExtensionSchema> &\n typeof publicUpdateDataExtensionSchema\n> = /*#__PURE__*/ createRESTModule(publicUpdateDataExtensionSchema);\nexport const listDataExtensionSchemas: MaybeContext<\n BuildRESTFunction<typeof publicListDataExtensionSchemas> &\n typeof publicListDataExtensionSchemas\n> = /*#__PURE__*/ createRESTModule(publicListDataExtensionSchemas);\nexport const deleteByWhiteListedMetaSite: MaybeContext<\n BuildRESTFunction<typeof publicDeleteByWhiteListedMetaSite> &\n typeof publicDeleteByWhiteListedMetaSite\n> = /*#__PURE__*/ createRESTModule(publicDeleteByWhiteListedMetaSite);\nexport const deleteUserDefinedFields: MaybeContext<\n BuildRESTFunction<typeof publicDeleteUserDefinedFields> &\n typeof publicDeleteUserDefinedFields\n> = /*#__PURE__*/ createRESTModule(publicDeleteUserDefinedFields);\n/**\n * Triggered when a data extension schema is created.\n */\nexport const onDataExtensionSchemaCreated: BuildEventDefinition<\n typeof publicOnDataExtensionSchemaCreated\n> &\n typeof publicOnDataExtensionSchemaCreated = createEventModule(\n publicOnDataExtensionSchemaCreated\n);\n/**\n * Triggered when a data extension schema is deleted.\n */\nexport const onDataExtensionSchemaDeleted: BuildEventDefinition<\n typeof publicOnDataExtensionSchemaDeleted\n> &\n typeof publicOnDataExtensionSchemaDeleted = createEventModule(\n publicOnDataExtensionSchemaDeleted\n);\n/**\n * Triggered when a data extension schema is updated.\n */\nexport const onDataExtensionSchemaUpdated: BuildEventDefinition<\n typeof publicOnDataExtensionSchemaUpdated\n> &\n typeof publicOnDataExtensionSchemaUpdated = createEventModule(\n publicOnDataExtensionSchemaUpdated\n);\n\nexport {\n DataExtensionSchemaState,\n RequestedField,\n ComponentType,\n WidgetVertical,\n WidgetHorizontal,\n WidgetWidthType,\n Region,\n UnitType,\n HorizontalDocking,\n VerticalDocking,\n SiteMembersSsrCaching,\n MpaNavigation,\n ReplacementType,\n PluginInterface,\n Exposure,\n Maturity,\n HTTPMethod,\n InstallPage,\n RegionType,\n StaticContainer,\n EmbeddedScriptPages,\n EmbeddedScriptPlacement,\n EmbedCategory,\n TemplateDefaultColor,\n ThumbnailsSize,\n BarAlignmentSelected,\n DefaultTextStyle,\n WebComponentDataElementType,\n ScriptType,\n ExtensionType,\n FieldType,\n AccessLevel,\n Order,\n PrimitiveType,\n SimpleType,\n SchemaFieldExposure,\n PartialPaymentRestriction,\n HostContainerId,\n MandatoryField,\n MeasurementSystem,\n Default,\n HookType,\n ActionSPIConfigInterfaceConfigurationType,\n IntegrationType,\n SourceType,\n ExecutionType,\n ExtendingComponentType,\n BackOfficeHostingPlatforms,\n DtsDefinitionType,\n SlotDataType,\n BackOfficeScriptAssetType,\n ViewMode,\n AlgorithmType,\n LockableOperation,\n RestrictedOperation,\n BlockType,\n Domain,\n Status,\n LayoutMode,\n TextInputDisplayType,\n ThumbnailType,\n ImageShape,\n AvatarShape,\n Tag,\n FilterSelectionType,\n FilterOptionsType,\n PaginationMode,\n ChannelType,\n AcceptedDirectMessageType,\n MediaMimeType,\n AcceptedSmsMessageType,\n InitDirection,\n NodeType,\n WidthType,\n PluginContainerDataAlignment,\n ButtonDataType,\n LinkTarget,\n TextAlignment,\n LineStyle,\n DividerDataWidth,\n DividerDataAlignment,\n PDFSettingsViewMode,\n LayoutType,\n Orientation,\n Crop,\n ThumbnailsAlignment,\n GIFType,\n HTMLDataSource,\n StylesPosition,\n MapType,\n ViewRole,\n VoteRole,\n PollLayoutType,\n PollLayoutDirection,\n BackgroundType,\n DecorationType,\n FontType,\n ImageStylesPosition,\n AspectRatio,\n Resizing,\n Placement,\n CardStylesType,\n CardStylesAlignment,\n Layout,\n AppType,\n InitialExpandedItems,\n Direction,\n VerticalAlignment,\n NullValue,\n Scaling,\n LayoutDataImagePosition,\n VerticalAlignmentAlignment,\n ResponsivenessBehaviour,\n DesignTarget,\n TestEnum,\n CalendarType,\n ConnectMethod,\n ListEventFromCalendars,\n SyncToCalendar,\n OAuthAppType,\n OAuthTechnologies,\n NavigationType,\n PingSettingsGroupComponentDataState,\n NotificationTopicState,\n NotificationTopicType,\n RecipientType,\n PlanFormPricingOption,\n PlanFormPricingType,\n PlanFormDefaultSection,\n PlanPeriodUnit,\n TypedDynamicParamType,\n UserNotificationDataRecipientFilterType,\n InitiatorType,\n Level,\n IconType,\n MobileApplication,\n AndroidStyle,\n ExposureRuleType,\n Intent,\n UserNotificationDataType,\n RecipientFilterType,\n Type,\n Environment,\n SchemaScope,\n SchemaFieldFieldType,\n CustomElementScriptType,\n HeightMode,\n FieldFieldType,\n Format,\n StringComponentType,\n ImagePosition,\n Alignment,\n ImageFit,\n NumberOfColumns,\n FirstDayOfWeek,\n NumberComponentType,\n BooleanComponentType,\n ItemType,\n PropertiesTypeEnum,\n ArrayComponentType,\n WixFileComponentType,\n UploadFileFormat,\n UploadFileFormatEnumUploadFileFormat,\n PaymentComponentType,\n ProductType,\n PriceType,\n AddressComponentType,\n DefaultCountryConfigType,\n SchedulingComponentType,\n AppointmentFormat,\n InputType,\n EmailInfoTag,\n PhoneInfoTag,\n AddressInfoTag,\n ConfirmationLevel,\n ContactField,\n DisplayFieldType,\n ChangeableProperty,\n OverrideEntityType,\n Operator,\n Target,\n SubmitSuccessAction,\n TemplateType,\n CustomFieldsType,\n EditableProperties,\n RequiredIndicator,\n RequiredIndicatorPlacement,\n WixCodePublishTaskName,\n ChannelConfigurationChannelType,\n AcceptedMessageTypesAcceptedDirectMessageType,\n AcceptedMessageTypesAcceptedSmsMessageType,\n FactorType,\n MonitoringType,\n Escalation,\n ImportanceLevel,\n Width,\n PanelContentType,\n PanelMode,\n StorageType,\n ConsentCategory,\n StorageDomain,\n Method,\n ParticipantType,\n InterfaceConfigurationType,\n Scope,\n DataType,\n A11yAttributes,\n LinkType,\n ContainerType,\n ResizeDirection,\n RichTextAbilities,\n ImageCategoryTypes,\n VideoCategoryTypes,\n VectorArtCategoryTypes,\n ElementType,\n CssPropertyTypeEnumCssPropertyType,\n CssVariableTypeEnumCssDataType,\n StyleType,\n FilterFunction,\n DisplayValueEnumDisplayValue,\n WritingModeValue,\n BackgroundModeEnum,\n CssDataType,\n ActionType,\n PanelType,\n ActionName,\n SizingType,\n BreakpointEnumBreakpoint,\n ContentResizeDirection,\n Archetype,\n NativeStateType,\n GroupType,\n ImageType,\n CssPropertyType,\n Trigger,\n EffectGroup,\n RestrictionLevel,\n ElementDisplayOption,\n SidebarDataType,\n SidebarEntityType,\n OperatorEnumOperator,\n ParameterType,\n FilterValueDefinitionMode,\n TimeConstraintType,\n ValueConstraintType,\n Category,\n RegionScopeScope,\n VibeActionType,\n AssetType,\n WebhookIdentityType,\n} from './data-extensions-v1-data-extension-schema-schemas.universal.js';\nexport {\n DataExtensionSchema,\n ReindexEvent,\n ReindexField,\n CreateDataExtensionSchemaRequest,\n CreateDataExtensionSchemaResponse,\n UpdateDataExtensionSchemaRequest,\n UpdateDataExtensionSchemaResponse,\n ListDataExtensionSchemasRequest,\n ListDataExtensionSchemasResponse,\n DeleteDemoDataExtensionSchemaRequest,\n DeleteDemoDataExtensionSchemaResponse,\n DeleteGlobalExtensionSchemaRequest,\n DeleteGlobalExtensionSchemaResponse,\n DeleteByWhiteListedMetaSiteRequest,\n DeleteByWhiteListedMetaSiteResponse,\n DomainEvent,\n DomainEventBodyOneOf,\n EntityCreatedEvent,\n RestoreInfo,\n EntityUpdatedEvent,\n EntityDeletedEvent,\n ActionEvent,\n Empty,\n AppRuntimeDataEvent,\n AppRuntimeDataCacheEntity,\n RuntimeComponentCacheEntity,\n RuntimeComponentCacheEntityComponentOneOf,\n RuntimeComponentCacheEntityComponent,\n ComponentData,\n ComponentDataDataOneOf,\n WidgetComponentData,\n FixedPositionOptions,\n WidgetDisplay,\n Position,\n SubPage,\n IsStretched,\n Margins,\n DisplayProperties,\n DisplayValue,\n Docking,\n DockingProperties,\n Height,\n ApiWidth,\n PageComponentData,\n Padding,\n PageReplaceOptions,\n PageReplaceOptionsOptionsOneOf,\n PageReplace,\n ReplacingOptions,\n ReplaceableOptions,\n WidgetOutOfIframeComponentData,\n OutOfIframeData,\n SettingsUrl,\n ErrorReporting,\n ErrorReportingArtifact,\n ApiSlot,\n ExtensionExposure,\n PageOutOfIframeComponentData,\n PlatfromComponentData,\n DashboardComponentData,\n WorkerComponentData,\n StudioComponentData,\n StudioWidgetComponentData,\n StudioWidgetVariation,\n CustomElement,\n CustomElementConsentCategoryOneOf,\n NestedWidgets,\n PresetInfo,\n PresetSize,\n InstallationSettings,\n InstallationSettingsOptionsOneOf,\n MainPresets,\n PageOptions,\n LightboxOptions,\n EditorPresence,\n PresetEditorPresence,\n FocalPoint,\n BaseInfo,\n HelpResources,\n WidgetInstallationSettings,\n WidgetInstallationSettingsTargetContainerOneOf,\n BaseInstallation,\n WidgetInstallation,\n DefaultPresets,\n ComponentModel,\n CodePackageComponentData,\n DashboardPlatfromComponentData,\n EmbeddedScriptComponentData,\n WixDependency,\n WebComponentData,\n Size,\n Settings,\n Tab,\n Container,\n ContainerDataOneOf,\n Main,\n MainPropsData,\n DashboardButton,\n RichTextWithIllustrationVertical,\n Section,\n DrillInListItem,\n DrillItem,\n DrillItemDataOneOf,\n RadioButtonLabeled,\n Condition,\n SingleKeyCondition,\n ColorSelectLabeled,\n ColorSelectLabeledDataOneOf,\n ColorDefinition,\n Thumbnails,\n ThumbnailData,\n SliderLabeled,\n DropDownLabeled,\n ToggleLabeled,\n BarAlignment,\n TextInputLabeled,\n FontFamilyWithColorPicker,\n FontDefinition,\n TextStyle,\n TextStyleDefaultColorOneOf,\n ResetButton,\n WidgetDetails,\n WidgetBehavior,\n ExtensionData,\n SnippetSolutionData,\n DataComponent,\n Field,\n FieldTypeOptionsOneOf,\n ObjectOptions,\n ArrayOptions,\n ArrayOptionsElementTypeOptionsOneOf,\n ObjectField,\n ObjectFieldTypeOptionsOneOf,\n ReferenceOptions,\n MultiReferenceOptions,\n DataPermissions,\n Index,\n IndexField,\n Collection,\n DCConfigData,\n StaticFileComponentData,\n AppConfig,\n SiteConfig,\n MultipleDashboardsComponentData,\n DashboardItem,\n PaymentsGatewayComponentData,\n AutomationTrigger,\n SchemaConfig,\n SchemaField,\n Primitive,\n Simple,\n _Date,\n SchemaFieldType,\n SchemaFieldTypeFieldTypeOneOf,\n InvoicesActionsComponentData,\n DashboardApplicationData,\n Bundle,\n ExperimentGroupWrapper,\n PageDashboardApplicationComponent,\n AppConfiguration,\n HostedComponent,\n ContactLabelsComponentData,\n PredefinedLabel,\n WidgetPluginComponentData,\n PluginMarketData,\n PluginPlacement,\n PluginInstallationSettings,\n CrossSellConfig,\n LocalDeliveryComponentData,\n PaymentServiceProviderConfig,\n PaymentMethod,\n PaymentMethodMethodOneOf,\n HostedPage,\n Logos,\n Color,\n PaymentServiceProviderCredentialsField,\n PaymentServiceProviderCredentialsFieldFieldOneOf,\n SimpleField,\n CheckboxField,\n DropdownField,\n DropdownFieldOption,\n MembershipsSPIConfig,\n LineItemsEnricherConfig,\n ShippingRatesConfig,\n ShippingLabelCarrierSpiConfig,\n PackageType,\n PackageDimension,\n V1Image,\n RestaurantsPOSComponentData,\n CatalogSyncConfiguration,\n ShippingProviderConfig,\n SpiBaseUri,\n AlternativeUri,\n AlertEnricherSpiConfiguration,\n DataExtensionsComponentData,\n GenericHooksConfig,\n GenericHookConfig,\n ActionProviderSPIConfig,\n ActionSPIConfig,\n WidgetComponentOptions,\n GenericOptions,\n WixApiOptions,\n IntegrationOptions,\n ActionSPIConfigImplementedMethods,\n Metadata,\n ActionSPIConfigInterfaceConfiguration,\n ActionSPIConfigInterfaceConfigurationOptionsOneOf,\n Source,\n SourceOptionsOneOf,\n CatalogSPIConfig,\n DiscountConfig,\n BackOfficeExtensionContainer,\n Extendable,\n SlotData,\n SlotDataSlotTypeOneOf,\n DtsDefinitionReference,\n DtsDefinitionReferenceDtsDefinitionOneOf,\n DtsHttpLink,\n DtsContent,\n BlocksData,\n Dimension,\n SlotParams,\n WidgetSlot,\n MenuSlot,\n BackOfficeExtension,\n BackOfficeExtensionExtensionOneOf,\n LegacyBackOfficeExtensionWidget,\n LegacyBackOfficeExtensionWidgetAssetOneOf,\n BackOfficeScriptAsset,\n LegacyBackOfficeMenuItem,\n OpenComponent,\n LegacyBackOfficeMenuItemAction,\n TriggerProviderSPIConfig,\n PreRegisterConfig,\n ProductsPathsConfig,\n CustomScopeConfig,\n GiftCardProviderConfig,\n ExternalFilterProviderConfig,\n RecommendationsProviderConfig,\n AlgorithmConfig,\n DropshippingProviderSPIConfig,\n InvoicesConfig,\n SeoKeywordsSuggestionsSPIConfig,\n CustomTriggerConfig,\n ContentProviderConfig,\n ApplicationAutomationComponent,\n Rule,\n ServiceTrigger,\n TriggerFilter,\n Debounce,\n ServiceAction,\n ConditionBlock,\n Offset,\n OffsetValueOneOf,\n Until,\n Delay,\n DelayTypeOneOf,\n RateLimit,\n ActionCondition,\n Conditions,\n AutomationMetadata,\n OriginInfo,\n BackOfficeSidebarCategory,\n BackOfficePage,\n BackOfficePageAssetOneOf,\n ComponentMetaData,\n Keywords,\n PageAnchor,\n AnchorMetaData,\n UrlParam,\n AdditionalFeesSPIConfig,\n PingNotificationComponentData,\n BookingsPricingProviderConfig,\n AuthenticatorConfig,\n ExpectedInputs,\n PredefinedExpectedInput,\n PredefinedExpectedInputConfiguration,\n PredefinedExpectedInputConfigurationTypeOneOf,\n AdminConfigurableTextInput,\n TextInputSettings,\n IDPConnectionConfig,\n ItemsSelectionProviderConfig,\n LearnMore,\n ImageConfig,\n AvatarConfig,\n SearchField,\n FilterInfo,\n FilterInfoOptionsOneOf,\n StaticFilterOptions,\n StaticFilterOption,\n ProviderFilterOptions,\n ContentDataOverrides,\n TagOverrides,\n SearchParams,\n ContentData,\n AdditionalStepInfo,\n CreateNewItemInfo,\n ItemThumbnail,\n ItemThumbnailOptionsOneOf,\n TagOverridesEntry,\n RenderOverrides,\n SyncedProjectsProviderConfig,\n CommunicationChannelConfiguration,\n ChannelConfiguration,\n ChannelConfigurationMessagingConfigOneOf,\n DirectMessageConfig,\n MediaCapabilities,\n EmailMessageConfig,\n SmsMessageConfig,\n ChannelBranding,\n BrandIcons,\n ChannelIcon,\n ConversationLimitations,\n PostLoginConfig,\n BackOfficeWidget,\n BackOfficeWidgetContentOneOf,\n SocialMarketingDesignSPIConfig,\n FormSubmissionSpiConfig,\n FormsSubmissionsNamespaceConfig,\n FormsPermissions,\n WixOfferingComponentData,\n WixOfferingComponentDataOfferingOneOf,\n BusinessManagerPage,\n DevCenterTestingComponentData,\n DevCenterTestingComponentDataTranslatableOneOfOneOf,\n MessageContainingTranslatables,\n RichContent,\n Node,\n NodeDataOneOf,\n NodeStyle,\n ButtonData,\n StylesBorder,\n Colors,\n PluginContainerData,\n PluginContainerDataWidth,\n PluginContainerDataWidthDataOneOf,\n Spoiler,\n PluginContainerDataHeight,\n Styles,\n V1Link,\n V1LinkDataOneOf,\n Rel,\n CodeBlockData,\n V1TextStyle,\n DividerData,\n FileData,\n FileSource,\n FileSourceDataOneOf,\n PDFSettings,\n GalleryData,\n Media,\n ItemImage,\n ItemVideo,\n Item,\n ItemDataOneOf,\n GalleryOptions,\n GalleryOptionsLayout,\n ItemStyle,\n GalleryOptionsThumbnails,\n GIFData,\n GIF,\n HeadingData,\n HTMLData,\n HTMLDataDataOneOf,\n ImageData,\n ImageDataStylesBorder,\n ImageDataStyles,\n LinkPreviewData,\n LinkPreviewDataStyles,\n MapData,\n MapSettings,\n ParagraphData,\n PollData,\n SettingsPermissions,\n PollOption,\n PollSettings,\n PollLayout,\n OptionLayout,\n Gradient,\n PollDesignBackground,\n PollDesignBackgroundBackgroundOneOf,\n PollDesign,\n OptionDesign,\n Poll,\n PollDataLayout,\n Design,\n TextData,\n Decoration,\n DecorationDataOneOf,\n AnchorData,\n ColorData,\n LinkData,\n MentionData,\n FontSizeData,\n SpoilerData,\n FontFamilyData,\n AppEmbedData,\n AppEmbedDataAppDataOneOf,\n BookingData,\n EventData,\n ButtonStyles,\n ImageStyles,\n RibbonStyles,\n CardStyles,\n PricingData,\n VideoData,\n PlaybackOptions,\n EmbedData,\n Oembed,\n CollapsibleListData,\n TableData,\n Dimensions,\n TableCellData,\n CellStyle,\n BorderColors,\n BorderWidths,\n ListValue,\n AudioData,\n OrderedListData,\n BulletedListData,\n BlockquoteData,\n CaptionData,\n LayoutData,\n LayoutDataBackgroundImage,\n LayoutCellData,\n V1Metadata,\n DocumentStyle,\n TextNodeStyle,\n CustomRefData,\n TranslatedMessageWithUniqueFieldRepeated,\n TranslatedMessageWithIdRepeated,\n DiscoveryMetaData,\n InternalComponentMetadata,\n ComponentsValidatorConfig,\n ComponentTranslationAdditionalFieldsConfig,\n FormSchemaSpiConfig,\n FormsSchemaNamespaceConfig,\n Restrictions,\n ProviderConfig,\n DefaultTaxGroupProviderConfig,\n TaxationCategoryProvider,\n DynamicSiteStructureProviderConfig,\n HeadlessOAuth,\n WixPagesDomainMapping,\n TaxCalculatorSpiConfig,\n TaxCountriesConfig,\n CommentModerationProviderConfig,\n GridAppFilesTransformerConfig,\n PolicyConfig,\n CustomChargesConfig,\n ValidationsSPIConfig,\n ComponentReferenceDataConfig,\n ReviewsProductCatalogProviderConfig,\n SocialMarketingDesignsProviderConfig,\n GbpFeatureConfig,\n CommentFilterProviderConfig,\n TaxIdValidatorConfig,\n TaxTypesConfig,\n PingSettingsGroupComponentData,\n FormSpamSubmissionSpiConfig,\n FormsSpamSubmissionsNamespaceConfig,\n SpamSubmissionPermissions,\n EditorAddon,\n InitialPosition,\n ToolPanelConfig,\n AddonMarketData,\n ExternalDatabaseSpiConfig,\n PaymentSettingsSPIConfig,\n NotificationTopic,\n NotificationPreferencesFilterConfig,\n BookingsResourceTypesProviderConfig,\n BookingsResourceType,\n PricingPlansFormConfiguration,\n TextWithTooltip,\n TooltipSuffix,\n TextWithSuffix,\n TextWithSuffixSuffixOneOf,\n LinkSuffix,\n PreviewCardPlaceholders,\n InputWithPlaceholder,\n CoverImageConfiguration,\n PerksConfiguration,\n CheckboxConfiguration,\n PreviewConfiguration,\n TermsModalConfiguration,\n ThankYouPageInputConfig,\n ThankYouPageRedirectsConfiguration,\n ThankYouPagePreviewConfiguration,\n ThankYouPageModalConfiguration,\n PlanSettingsRowConfiguration,\n TermsAndConditionsConfiguration,\n ThankYouPageConfiguration,\n PlanFormPricingAndDurationSectionDurationInputConfiguration,\n DurationInputConfigurationDurationRenameOptions,\n PlanFormPricingAndDurationSectionInputConfiguration,\n SetupFeeConfiguration,\n FreeTrialConfiguration,\n FreeOptionConfiguration,\n OneTimeOptionConfiguration,\n RecurringOptionConfiguration,\n PlanFormPricingSectionSetupFeeConfiguration,\n PlanFormPricingSectionInputConfiguration,\n RecurringPricingTypeConfigurationFreeTrialConfiguration,\n FreePricingTypeConfiguration,\n OneTimePricingTypeConfiguration,\n RecurringPricingTypeConfiguration,\n DurationRenameOptions,\n DurationInputConfiguration,\n InputConfiguration,\n Illustration,\n IllustrationIllustrationOneOf,\n PlanDuration,\n PlanPriceData,\n PricingRecurring,\n PerkValues,\n PlanPricing,\n PlanPricingPricingModelOneOf,\n PlanFormPreviewSection,\n PlanFormInfoSection,\n PlanFormPlanSettingsSection,\n PlanFormBenefitsSection,\n PlanFormPricingAndDurationSection,\n PlanFormCustomSection,\n PlanFormSection,\n PlanFormSectionSectionOneOf,\n PlanFormTypeMetadata,\n PlanFormPagePermissionsSection,\n PlanFormInitialValue,\n PlanFormPricingSection,\n PlanFormDurationSection,\n PlanFormCustomPricingRulesSection,\n PlanFormStartDateRulesSection,\n UserNotification,\n UserNotificationData,\n TypedDynamicParam,\n WixUsersData,\n SiteContributorsData,\n WixUserData,\n ConstOrDynamicParam,\n ConstOrDynamicParamValueOneOf,\n Url,\n BackofficeActionDeeplink,\n OrderValue,\n NotificationChannels,\n ResponsysEmail,\n VelocityEmail,\n ShoutoutEmail,\n EmailTemplateConfig,\n EmailTemplateConfigProviderOneOf,\n WebFeedContentKeys,\n MobileFeedContentKeys,\n FeedAggregation,\n Icon,\n IconDataOneOf,\n UrlData,\n WebFeedChannel,\n MobileFeedChannel,\n FeedChannelsConfig,\n SharedPlatformMobilePushConfig,\n AndroidMobilePushConfig,\n MobilePushChannelConfig,\n MobilePushContentKeys,\n ExposureRule,\n ExposureRuleRuleOneOf,\n BooleanExperimentExposureRule,\n CustomExperimentExposureRule,\n VoiceContentKeys,\n SmsContentKeys,\n BrowserPushContentKeys,\n EmailChannel,\n FeedChannels,\n MobilePushChannel,\n VoiceChannel,\n SmsChannel,\n BrowserPushChannel,\n LimiterField,\n UserNotificationDataRecipientFilter,\n UserNotificationDataRecipientFilterDataOneOf,\n UserNotificationDataInitiator,\n UserNotificationDataInitiatorDataOneOf,\n UserNotificationDataDeeplink,\n UserNotificationDataDeeplinkOfOneOf,\n UserNotificationDataContext,\n ContactNotification,\n ContactsNotificationData,\n ContactsData,\n ContactData,\n SiteMemberData,\n LiveSiteActionDeeplink,\n RecipientFilter,\n RecipientFilterDataOneOf,\n Initiator,\n InitiatorDataOneOf,\n Deeplink,\n DeeplinkOfOneOf,\n Context,\n UnifiedPage,\n PageInstallationSettings,\n PageInstallation,\n PageContent,\n WidgetAsContent,\n UnifiedPageEditorSettings,\n PageEditorSettings,\n AvailabilityTimeSlotsProviderConfig,\n ProposalEditorProviderConfig,\n CustomReservationsApprovalConfig,\n CommentsContextProviderConfig,\n FormSpamSubmissionReportSpiConfig,\n FormSpamSubmissionReportsNamespaceConfig,\n FormSpamSubmissionReportPermissions,\n VeloActionConfig,\n EventTypeProviderConfig,\n ServiceAvailabilityPolicyProviderConfig,\n SmsActionMessage,\n BookingPolicyProviderConfig,\n MultiServiceBookingPolicyProviderConfig,\n FormSubmissionSpiExtensionConfig,\n FormsSubmissionsExtensionNamespaceConfig,\n AssistantSpiConfig,\n MultilingualTranslationSchema,\n Schema,\n SchemaKey,\n V1SchemaField,\n PreviewFields,\n TaxGroupsProviderConfig,\n AdditionalTaxGroup,\n TaxCalculationConfig,\n BackOfficeModal,\n BackOfficeModalContentOneOf,\n ModalParams,\n DeploymentPipelineProviderConfig,\n CustomElementWidget,\n WidgetData,\n EditorBehaviors,\n SettingsPanel,\n Dashboard,\n WidgetSize,\n WidgetSizeHeight,\n WidgetSizeWidth,\n Preset,\n Breakpoints,\n Breakpoint,\n BackOfficeExtensionWidget,\n BackOfficeExtensionWidgetAssetOneOf,\n BackOfficeExtensionMenuItem,\n NavigateToPageAction,\n OpenModalAction,\n MenuAction,\n MenuActionActionOneOf,\n FormTemplate,\n FormTemplateTemplateTypeOptionsOneOf,\n V2Field,\n V2FieldFieldTypeOptionsOneOf,\n InputField,\n InputFieldInputTypeOptionsOneOf,\n StringType,\n StringTypeFormatOptionsOneOf,\n DateTimeConstraints,\n PhoneConstraints,\n ValidationMessages,\n TextInput,\n MediaItem,\n MediaItemMediaOneOf,\n CommonImage,\n MediaSettings,\n RadioGroup,\n RadioGroupOption,\n CustomOption,\n Dropdown,\n DropdownOption,\n DateTimeInput,\n PhoneInput,\n DateInput,\n TimeInput,\n DatePicker,\n ServicesDropdown,\n ServicesDropdownOption,\n Password,\n NumberType,\n NumberInput,\n RatingInput,\n BooleanType,\n Checkbox,\n ArrayType,\n IntegerType,\n ObjectType,\n PropertiesType,\n PropertiesTypePropertiesTypeOptionsOneOf,\n ArrayTypeArrayItems,\n ArrayTypeArrayItemsItemTypeOptionsOneOf,\n CheckboxGroup,\n CheckboxGroupOption,\n Tags,\n TagsOption,\n FileType,\n FileUpload,\n Signature,\n PaymentType,\n QuantityLimit,\n FixedPriceOptions,\n DynamicPriceOptions,\n Product,\n ProductPriceOptionsOneOf,\n ProductCheckboxGroup,\n ProductCheckboxGroupOption,\n DonationInput,\n DonationInputOption,\n PaymentInput,\n FixedPayment,\n MultilineAddressValidation,\n FieldOverrides,\n FieldsOverrides,\n MultilineAddress,\n AddressLine2,\n DefaultCountryConfig,\n DefaultCountryConfigOptionsOneOf,\n FieldsSettings,\n Appointment,\n AppointmentFormatInfoOneOf,\n Location,\n LocationLocationInfoOneOf,\n InPersonOptions,\n VideoConferenceOptions,\n PhoneOptions,\n FormFieldContactInfo,\n FormFieldContactInfoAdditionalInfoOneOf,\n EmailInfo,\n PhoneInfo,\n AddressInfo,\n CustomFieldInfo,\n SubscriptionInfo,\n _String,\n _StringComponentTypeOptionsOneOf,\n InputField_Number,\n InputField_NumberComponentTypeOptionsOneOf,\n _Boolean,\n _BooleanComponentTypeOptionsOneOf,\n _Array,\n _ArrayComponentTypeOptionsOneOf,\n _Object,\n WixFile,\n WixFileComponentTypeOptionsOneOf,\n Payment,\n PaymentComponentTypeOptionsOneOf,\n Address,\n AddressComponentTypeOptionsOneOf,\n Scheduling,\n SchedulingComponentTypeOptionsOneOf,\n DisplayField,\n DisplayFieldDisplayFieldTypeOptionsOneOf,\n RichContentOptions,\n PageNavigationOptions,\n Step,\n FormLayout,\n BreakPoint,\n ItemLayout,\n ItemLayoutItemOneOf,\n Group,\n Margin,\n BreakPointSection,\n V2Rule,\n RequiredOptions,\n HiddenOptions,\n AllowedValuesOptions,\n FormOverrideFieldOverride,\n FormOverrideFieldOverridePropertyTypeOptionsOneOf,\n ConditionNode,\n ConditionNodeNodeOneOf,\n AndCondition,\n OrCondition,\n V2Condition,\n FormOverride,\n FormOverrideEntityTypeOptionsOneOf,\n SubmitSettings,\n SubmitSettingsSubmitSuccessActionOptionsOneOf,\n ThankYouMessageOptions,\n RedirectOptions,\n ExtensionDetails,\n EditableFields,\n AddCustomFields,\n OverrideTemplateFields,\n DeleteTemplateFields,\n FieldGroup,\n RequiredIndicatorProperties,\n NotificationContent,\n SingleContent,\n GroupedContent,\n BroadcastList,\n Param,\n PayoutsProviderConfig,\n ReviewsEntityCatalogProviderConfig,\n VeloPublishPipelineTaskProviderConfig,\n FunctionsShopPriceSpiConfig,\n Namespace,\n _Function,\n Input,\n BuilderSpi,\n Output,\n State,\n Spi,\n CustomInitialPreset,\n FunctionDefinition,\n Configuration,\n Description,\n CheckoutContentSPIConfig,\n V2CommunicationChannelConfiguration,\n ChannelChannelConfiguration,\n ChannelChannelConfigurationMessagingConfigOneOf,\n DmDirectMessageConfig,\n ChannelMediaCapabilities,\n EmailEmailMessageConfig,\n SmsSmsMessageConfig,\n ChannelChannelBranding,\n ChannelBrandIcons,\n UpstreamWixCommonImage,\n ChannelImplementedMethods,\n WebhookComponentData,\n TopologyComponentData,\n CustomRewardProviderConfig,\n FunctionRecipe,\n BackOfficeExternalUrl,\n FactorConfig,\n DiscountsSPIConfig,\n VeloCustomCss,\n AdaptiveComponentProviderConfig,\n ActionSpiConfig,\n InventorySpiConfig,\n Monitoring,\n MonitoringOptionsOneOf,\n SentryOptions,\n Project,\n PanoramaOptions,\n PluginConfig,\n Consequence,\n Constraint,\n UnifiedLightbox,\n LightboxEditorSettings,\n LightboxCloseOptions,\n LightboxContent,\n PageWidgetAsContent,\n FormSpiExtensionConfig,\n SchemaGroup,\n SchemaGroupElement,\n Panel,\n PanelSelectedContentTypeOneOf,\n PanelSize,\n CodePanel,\n PurchaseValidationsConfig,\n BrowserStorage,\n SdkDefinition,\n SiteWidgetSlot,\n EventValidationProviderConfig,\n ValidationTarget,\n ClientSideService,\n Npm,\n Definition,\n Implementation,\n BillingSettingsConfig,\n PaymentDateModification,\n PatternsWizard,\n ApplicationProfileProviderConfig,\n V1ImplementedMethods,\n ApplicationProfile,\n TextToSpeechActionMessage,\n AudienceProviderConfig,\n InterfaceConfiguration,\n InterfaceConfigurationOfTypeOneOf,\n WidgetComponent,\n ItemSelection,\n ImplementedMethods,\n PriceSPIConfig,\n StartDateLimitsSPIConfig,\n StartDateRulesSPIConfig,\n TicketReservationsSpiConfig,\n DisputeServicePluginConfig,\n FeesSPIConfig,\n EditorReactComponent,\n Resources,\n ClientResources,\n EditorDependencies,\n Resource,\n TranslationResources,\n EditorElement,\n DataItem,\n DataItemSelectedDataTypeOneOf,\n Text,\n TextEnum,\n Option,\n _Number,\n A11y,\n Link,\n ArrayItems,\n ArrayItemsArrayDataOneOf,\n DataItems,\n ReactElementContainer,\n ReactElementContainerSelectedContainerTypeOneOf,\n SimpleContainer,\n ContainerLayout,\n ContainerStyleOverrides,\n StyleItemOverrides,\n ContainerBehaviors,\n Slot,\n PlaceHolder,\n RichText,\n Image,\n Video,\n VectorArt,\n EditorFunction,\n FunctionParameter,\n FunctionParameterSelectedDataTypeOneOf,\n FunctionParameterArrayItems,\n FunctionParameterArrayItemsArrayDataOneOf,\n FunctionParameterItems,\n FunctionReturnType,\n FunctionReturnTypeSelectedDataTypeOneOf,\n ElementItem,\n ElementItemSelectedElementTypeOneOf,\n InlineElement,\n StyleItem,\n StyleItemSelectedItemTypeOneOf,\n StyleItemSelectedCssPropertyTypeOneOf,\n StyleItemSelectedCssVariableTypeOneOf,\n Filter,\n BackdropFilter,\n Display,\n WritingMode,\n Background,\n BackgroundBackgroundMediaModeOneOf,\n CustomEnum,\n CustomEnumOption,\n CustomEnumOptionCssProperty,\n CssNumber,\n Behaviors,\n Actions,\n Action,\n Execution,\n ExecutionActionExecuteOneOf,\n DataAction,\n StyleAction,\n EventAction,\n PanelAction,\n PanelActionSelectedPanelTypeOneOf,\n ForwardAction,\n ForwardActionActionOneOf,\n DisplayGroupAction,\n CssPropertyAction,\n CssCustomPropertyAction,\n DashboardAction,\n PresetItem,\n ComponentInitialSize,\n InitialSizeSetting,\n InitialSizeSettingSelectedSizingTypeOneOf,\n DisplayFilters,\n DisplayFilter,\n PresetStyleDefaults,\n StyleItemDefaults,\n ElementStyleDefaults,\n BreakpointPresetStyleOverrides,\n PresetStyleOverrides,\n PresetStyleItemOverrides,\n ElementStyleOverrides,\n EditorElementLayout,\n ContentFill,\n PresetElementDefaults,\n CssPropertyItemDefaults,\n PresetInnerElementDefaults,\n ElementState,\n TargetElement,\n VisibleState,\n DisplayGroupItem,\n DisplayGroupItemSelectedGroupTypeOneOf,\n ItemsGroup,\n ShorthandGroupBackground,\n Coordinates,\n Border,\n Corners,\n Font,\n TextDecoration,\n Gap,\n TextGroup,\n DataGroupsArrayItems,\n ListItem,\n CssPropertyItem,\n CssPropertyItemSelectedCssPropertyTypeOneOf,\n BackgroundImage,\n CssCustomPropertyItem,\n CssCustomPropertyItemSelectedCssPropertyTypeOneOf,\n CustomPropertyEnum,\n CustomPropertyEnumOption,\n CustomPropertyEnumOptionStyle,\n HelpArticle,\n HelpArticleArticleTypeOneOf,\n RefElement,\n DataItemOverrides,\n DataItemOverridesSelectedDataTypeOneOf,\n ImageOverrides,\n VideoOverrides,\n VectorArtOverrides,\n RefInnerElementDefaults,\n CssPropertyItemDefinitionOverrides,\n Interactions,\n InstallationInfo,\n InstallationInfoTargetContainerOneOf,\n MarketplaceSPIConfig,\n FormSchemaDynamicValuesSpiConfig,\n BlogPaywallProviderConfig,\n RewardProviderConfig,\n ProductRestrictionsConfig,\n RestrictionsConfig,\n Restriction,\n FormSubmissionModerationSpiConfig,\n FormSubmissionModerationSpiNamespaceConfig,\n EventBadgesSpiConfig,\n OperationExecutorConfig,\n BackOfficeCustomization,\n Header,\n HeaderConfigOneOf,\n HeaderConfig,\n HeaderConfigHeaderConfigOneOf,\n PlatformHeaderConfig,\n MenuLink,\n Logo,\n MenuDropdown,\n SearchConfig,\n HeaderWidgetConfig,\n Sidebar,\n SidebarConfigOneOf,\n SidebarConfig,\n SidebarChildItem,\n SidebarChildItemItemOneOf,\n SecondLevelCategory,\n SidebarSecondLevelChildItem,\n SidebarSecondLevelChildItemItemOneOf,\n Page,\n FirstLevelCategory,\n SidebarWidgetConfig,\n SidebarRootItem,\n SidebarRootItemItemOneOf,\n SidebarWidget,\n SidebarWidgetConfigOneOf,\n BackOfficeCustomizationSidebarEntity,\n BackOfficeCustomizationSidebarEntityItemOneOf,\n CoreApps,\n LeftPanel,\n LeftPanelWidgetConfig,\n KeepAlivePage,\n ComponentEnricherConfig,\n BackOfficeRestrictedCustomization,\n AppPreviewProviderConfig,\n LegendsSpiConfig,\n NamespaceConfig,\n Permissions,\n CustomPermission,\n NamespaceConfigV2,\n AppDeploymentProviderConfig,\n BackendWorker,\n EventTimeSlotsProviderConfig,\n AppEnvironmentProviderConfig,\n SDKExports,\n SDKExportsNpm,\n ExportMetadata,\n ViewerService,\n ViewerServiceAssets,\n ProviderAccountServicePluginConfig,\n ProviderConfigMessage,\n V2ImplementedMethods,\n FilteringCapability,\n OperatorConfiguration,\n Parameter,\n ParameterValueDefinitionDetailsOneOf,\n StringListOptions,\n StringOption,\n IntListOptions,\n DecimalListOptions,\n BoolListOptions,\n CurrencyCodeListOptions,\n LanguageTagListOptions,\n ItemSelectionOptions,\n TimeConstraintConfiguration,\n TimeConstraintConfigurationValueConstraintsOneOf,\n PredefinedValues,\n MinMaxRange,\n RangeConstraints,\n ProductCatalogProviderConfig,\n SiteMigrationSpiConfig,\n PosProviderSettingsServicePluginConfig,\n ManagedMenuEntities,\n FieldManagementConfig,\n RepeatedFieldOverrideConfig,\n WixVibeCodingInstructions,\n TaxExemptGroupsProviderConfig,\n TaxExemptGroup,\n ExemptRegions,\n V1Region,\n BookingAutomationsConfig,\n V2TriggerOverride,\n TriggerFieldOverride,\n BookingsPlatformConfig,\n PermissionOverrides,\n ServicePermissionOverrides,\n BookingPermissionOverrides,\n PolicyPermissionOverrides,\n FormsConfig,\n AutomationsConfig,\n TriggerOverride,\n FieldOverride,\n WixVibeComponent,\n CustomAction,\n CustomActionActionExecuteOneOf,\n VibeDashboardAction,\n VibeCustomPanelAction,\n WixelSPIConfig,\n StaffSortingProviderConfig,\n FunctionEcomDiscountTriggerEligibilityProviderConfig,\n FunctionAssistantToolProviderConfig,\n SiteMapProviderConfig,\n WixAiGatewaySpiConfig,\n UrlMapperProviderConfig,\n ProviderSuppressionServicePluginConfig,\n Provider,\n FormsSPIConfig,\n EditorContextProvider,\n EditorContextProviderResources,\n ContextSpecifier,\n ApiContext,\n ContextItem,\n ContextItemSelectedDataTypeOneOf,\n ContextImplementor,\n ContextArrayItems,\n ContextArrayItemsArrayDataOneOf,\n ContextDataItems,\n EditorFunctionLibrary,\n FunctionResources,\n RuntimeComponentCacheEntityExperiment,\n RuntimeComponentCacheEntityExperimentExperimentOneOf,\n GradualRolloutCacheEntity,\n GradualUpdateCacheEntity,\n GradualDeleteCacheEntity,\n PartialUpdateCacheEntity,\n CreatedByCacheEntity,\n AppData,\n TranslatedData,\n DeleteUserDefinedFieldsRequest,\n DeleteUserDefinedFieldsResponse,\n MessageEnvelope,\n IdentificationData,\n IdentificationDataIdOneOf,\n BaseEventMetadata,\n EventMetadata,\n DataExtensionSchemaCreatedEnvelope,\n DataExtensionSchemaDeletedEnvelope,\n DataExtensionSchemaUpdatedEnvelope,\n ListDataExtensionSchemasOptions,\n DeleteUserDefinedFieldsOptions,\n} from './data-extensions-v1-data-extension-schema-schemas.universal.js';\nexport {\n DataExtensionSchemaStateWithLiterals,\n RequestedFieldWithLiterals,\n ComponentTypeWithLiterals,\n WidgetVerticalWithLiterals,\n WidgetHorizontalWithLiterals,\n WidgetWidthTypeWithLiterals,\n RegionWithLiterals,\n UnitTypeWithLiterals,\n HorizontalDockingWithLiterals,\n VerticalDockingWithLiterals,\n SiteMembersSsrCachingWithLiterals,\n MpaNavigationWithLiterals,\n ReplacementTypeWithLiterals,\n PluginInterfaceWithLiterals,\n ExposureWithLiterals,\n MaturityWithLiterals,\n HTTPMethodWithLiterals,\n InstallPageWithLiterals,\n RegionTypeWithLiterals,\n StaticContainerWithLiterals,\n EmbeddedScriptPagesWithLiterals,\n EmbeddedScriptPlacementWithLiterals,\n EmbedCategoryWithLiterals,\n TemplateDefaultColorWithLiterals,\n ThumbnailsSizeWithLiterals,\n BarAlignmentSelectedWithLiterals,\n DefaultTextStyleWithLiterals,\n WebComponentDataElementTypeWithLiterals,\n ScriptTypeWithLiterals,\n ExtensionTypeWithLiterals,\n FieldTypeWithLiterals,\n AccessLevelWithLiterals,\n OrderWithLiterals,\n PrimitiveTypeWithLiterals,\n SimpleTypeWithLiterals,\n SchemaFieldExposureWithLiterals,\n PartialPaymentRestrictionWithLiterals,\n HostContainerIdWithLiterals,\n MandatoryFieldWithLiterals,\n MeasurementSystemWithLiterals,\n DefaultWithLiterals,\n HookTypeWithLiterals,\n ActionSPIConfigInterfaceConfigurationTypeWithLiterals,\n IntegrationTypeWithLiterals,\n SourceTypeWithLiterals,\n ExecutionTypeWithLiterals,\n ExtendingComponentTypeWithLiterals,\n BackOfficeHostingPlatformsWithLiterals,\n DtsDefinitionTypeWithLiterals,\n SlotDataTypeWithLiterals,\n BackOfficeScriptAssetTypeWithLiterals,\n ViewModeWithLiterals,\n AlgorithmTypeWithLiterals,\n LockableOperationWithLiterals,\n RestrictedOperationWithLiterals,\n BlockTypeWithLiterals,\n DomainWithLiterals,\n StatusWithLiterals,\n LayoutModeWithLiterals,\n TextInputDisplayTypeWithLiterals,\n ThumbnailTypeWithLiterals,\n ImageShapeWithLiterals,\n AvatarShapeWithLiterals,\n TagWithLiterals,\n FilterSelectionTypeWithLiterals,\n FilterOptionsTypeWithLiterals,\n PaginationModeWithLiterals,\n ChannelTypeWithLiterals,\n AcceptedDirectMessageTypeWithLiterals,\n MediaMimeTypeWithLiterals,\n AcceptedSmsMessageTypeWithLiterals,\n InitDirectionWithLiterals,\n NodeTypeWithLiterals,\n WidthTypeWithLiterals,\n PluginContainerDataAlignmentWithLiterals,\n ButtonDataTypeWithLiterals,\n LinkTargetWithLiterals,\n TextAlignmentWithLiterals,\n LineStyleWithLiterals,\n DividerDataWidthWithLiterals,\n DividerDataAlignmentWithLiterals,\n PDFSettingsViewModeWithLiterals,\n LayoutTypeWithLiterals,\n OrientationWithLiterals,\n CropWithLiterals,\n ThumbnailsAlignmentWithLiterals,\n GIFTypeWithLiterals,\n HTMLDataSourceWithLiterals,\n StylesPositionWithLiterals,\n MapTypeWithLiterals,\n ViewRoleWithLiterals,\n VoteRoleWithLiterals,\n PollLayoutTypeWithLiterals,\n PollLayoutDirectionWithLiterals,\n BackgroundTypeWithLiterals,\n DecorationTypeWithLiterals,\n FontTypeWithLiterals,\n ImageStylesPositionWithLiterals,\n AspectRatioWithLiterals,\n ResizingWithLiterals,\n PlacementWithLiterals,\n CardStylesTypeWithLiterals,\n CardStylesAlignmentWithLiterals,\n LayoutWithLiterals,\n AppTypeWithLiterals,\n InitialExpandedItemsWithLiterals,\n DirectionWithLiterals,\n VerticalAlignmentWithLiterals,\n NullValueWithLiterals,\n ScalingWithLiterals,\n LayoutDataImagePositionWithLiterals,\n VerticalAlignmentAlignmentWithLiterals,\n ResponsivenessBehaviourWithLiterals,\n DesignTargetWithLiterals,\n TestEnumWithLiterals,\n CalendarTypeWithLiterals,\n ConnectMethodWithLiterals,\n ListEventFromCalendarsWithLiterals,\n SyncToCalendarWithLiterals,\n OAuthAppTypeWithLiterals,\n OAuthTechnologiesWithLiterals,\n NavigationTypeWithLiterals,\n PingSettingsGroupComponentDataStateWithLiterals,\n NotificationTopicStateWithLiterals,\n NotificationTopicTypeWithLiterals,\n RecipientTypeWithLiterals,\n PlanFormPricingOptionWithLiterals,\n PlanFormPricingTypeWithLiterals,\n PlanFormDefaultSectionWithLiterals,\n PlanPeriodUnitWithLiterals,\n TypedDynamicParamTypeWithLiterals,\n UserNotificationDataRecipientFilterTypeWithLiterals,\n InitiatorTypeWithLiterals,\n LevelWithLiterals,\n IconTypeWithLiterals,\n MobileApplicationWithLiterals,\n AndroidStyleWithLiterals,\n ExposureRuleTypeWithLiterals,\n IntentWithLiterals,\n UserNotificationDataTypeWithLiterals,\n RecipientFilterTypeWithLiterals,\n TypeWithLiterals,\n EnvironmentWithLiterals,\n SchemaScopeWithLiterals,\n SchemaFieldFieldTypeWithLiterals,\n CustomElementScriptTypeWithLiterals,\n HeightModeWithLiterals,\n FieldFieldTypeWithLiterals,\n FormatWithLiterals,\n StringComponentTypeWithLiterals,\n ImagePositionWithLiterals,\n AlignmentWithLiterals,\n ImageFitWithLiterals,\n NumberOfColumnsWithLiterals,\n FirstDayOfWeekWithLiterals,\n NumberComponentTypeWithLiterals,\n BooleanComponentTypeWithLiterals,\n ItemTypeWithLiterals,\n PropertiesTypeEnumWithLiterals,\n ArrayComponentTypeWithLiterals,\n WixFileComponentTypeWithLiterals,\n UploadFileFormatWithLiterals,\n UploadFileFormatEnumUploadFileFormatWithLiterals,\n PaymentComponentTypeWithLiterals,\n ProductTypeWithLiterals,\n PriceTypeWithLiterals,\n AddressComponentTypeWithLiterals,\n DefaultCountryConfigTypeWithLiterals,\n SchedulingComponentTypeWithLiterals,\n AppointmentFormatWithLiterals,\n InputTypeWithLiterals,\n EmailInfoTagWithLiterals,\n PhoneInfoTagWithLiterals,\n AddressInfoTagWithLiterals,\n ConfirmationLevelWithLiterals,\n ContactFieldWithLiterals,\n DisplayFieldTypeWithLiterals,\n ChangeablePropertyWithLiterals,\n OverrideEntityTypeWithLiterals,\n OperatorWithLiterals,\n TargetWithLiterals,\n SubmitSuccessActionWithLiterals,\n TemplateTypeWithLiterals,\n CustomFieldsTypeWithLiterals,\n EditablePropertiesWithLiterals,\n RequiredIndicatorWithLiterals,\n RequiredIndicatorPlacementWithLiterals,\n WixCodePublishTaskNameWithLiterals,\n ChannelConfigurationChannelTypeWithLiterals,\n AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals,\n AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals,\n FactorTypeWithLiterals,\n MonitoringTypeWithLiterals,\n EscalationWithLiterals,\n ImportanceLevelWithLiterals,\n WidthWithLiterals,\n PanelContentTypeWithLiterals,\n PanelModeWithLiterals,\n StorageTypeWithLiterals,\n ConsentCategoryWithLiterals,\n StorageDomainWithLiterals,\n MethodWithLiterals,\n ParticipantTypeWithLiterals,\n InterfaceConfigurationTypeWithLiterals,\n ScopeWithLiterals,\n DataTypeWithLiterals,\n A11yAttributesWithLiterals,\n LinkTypeWithLiterals,\n ContainerTypeWithLiterals,\n ResizeDirectionWithLiterals,\n RichTextAbilitiesWithLiterals,\n ImageCategoryTypesWithLiterals,\n VideoCategoryTypesWithLiterals,\n VectorArtCategoryTypesWithLiterals,\n ElementTypeWithLiterals,\n CssPropertyTypeEnumCssPropertyTypeWithLiterals,\n CssVariableTypeEnumCssDataTypeWithLiterals,\n StyleTypeWithLiterals,\n FilterFunctionWithLiterals,\n DisplayValueEnumDisplayValueWithLiterals,\n WritingModeValueWithLiterals,\n BackgroundModeEnumWithLiterals,\n CssDataTypeWithLiterals,\n ActionTypeWithLiterals,\n PanelTypeWithLiterals,\n ActionNameWithLiterals,\n SizingTypeWithLiterals,\n BreakpointEnumBreakpointWithLiterals,\n ContentResizeDirectionWithLiterals,\n ArchetypeWithLiterals,\n NativeStateTypeWithLiterals,\n GroupTypeWithLiterals,\n ImageTypeWithLiterals,\n CssPropertyTypeWithLiterals,\n TriggerWithLiterals,\n EffectGroupWithLiterals,\n RestrictionLevelWithLiterals,\n ElementDisplayOptionWithLiterals,\n SidebarDataTypeWithLiterals,\n SidebarEntityTypeWithLiterals,\n OperatorEnumOperatorWithLiterals,\n ParameterTypeWithLiterals,\n FilterValueDefinitionModeWithLiterals,\n TimeConstraintTypeWithLiterals,\n ValueConstraintTypeWithLiterals,\n CategoryWithLiterals,\n RegionScopeScopeWithLiterals,\n VibeActionTypeWithLiterals,\n AssetTypeWithLiterals,\n WebhookIdentityTypeWithLiterals,\n} from './data-extensions-v1-data-extension-schema-schemas.universal.js';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;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","names":["createDataExtensionSchema","deleteByWhiteListedMetaSite","deleteUserDefinedFields","listDataExtensionSchemas","onDataExtensionSchemaCreated","onDataExtensionSchemaDeleted","onDataExtensionSchemaUpdated","updateDataExtensionSchema","import_rename_all_nested_keys","import_timestamp","import_transform_paths","import_timestamp","import_rest_modules","payload","DataExtensionSchemaState","RequestedField","ComponentType","WidgetVertical","WidgetHorizontal","WidgetWidthType","Region","UnitType","HorizontalDocking","VerticalDocking","SiteMembersSsrCaching","MpaNavigation","ReplacementType","PluginInterface","Exposure","Maturity","HTTPMethod","InstallPage","RegionType","StaticContainer","EmbeddedScriptPages","EmbeddedScriptPlacement","EmbedCategory","TemplateDefaultColor","ThumbnailsSize","BarAlignmentSelected","DefaultTextStyle","WebComponentDataElementType","ScriptType","ExtensionType","FieldType","AccessLevel","Order","PrimitiveType","SimpleType","SchemaFieldExposure","PartialPaymentRestriction","HostContainerId","MandatoryField","MeasurementSystem","Default","HookType","ActionSPIConfigInterfaceConfigurationType","IntegrationType","SourceType","ExecutionType","ExtendingComponentType","BackOfficeHostingPlatforms","DtsDefinitionType","SlotDataType","BackOfficeScriptAssetType","ViewMode","AlgorithmType","LockableOperation","RestrictedOperation","BlockType","Domain","Status","LayoutMode","TextInputDisplayType","ThumbnailType","ImageShape","AvatarShape","Tag","FilterSelectionType","FilterOptionsType","PaginationMode","ChannelType","AcceptedDirectMessageType","MediaMimeType","AcceptedSmsMessageType","InitDirection","NodeType","WidthType","PluginContainerDataAlignment","ButtonDataType","LinkTarget","TextAlignment","LineStyle","DividerDataWidth","DividerDataAlignment","PDFSettingsViewMode","LayoutType","Orientation","Crop","ThumbnailsAlignment","GIFType","HTMLDataSource","StylesPosition","MapType","ViewRole","VoteRole","PollLayoutType","PollLayoutDirection","BackgroundType","DecorationType","FontType","ImageStylesPosition","AspectRatio","Resizing","Placement","CardStylesType","CardStylesAlignment","Layout","AppType","InitialExpandedItems","Direction","VerticalAlignment","NullValue","Scaling","LayoutDataImagePosition","VerticalAlignmentAlignment","ResponsivenessBehaviour","DesignTarget","TestEnum","CalendarType","ConnectMethod","ListEventFromCalendars","SyncToCalendar","OAuthAppType","OAuthTechnologies","NavigationType","PingSettingsGroupComponentDataState","NotificationTopicState","NotificationTopicType","RecipientType","PlanFormPricingOption","PlanFormPricingType","PlanFormDefaultSection","PlanPeriodUnit","TypedDynamicParamType","UserNotificationDataRecipientFilterType","InitiatorType","Level","IconType","MobileApplication","AndroidStyle","ExposureRuleType","Intent","UserNotificationDataType","RecipientFilterType","Type","Environment","SchemaScope","SchemaFieldFieldType","CustomElementScriptType","HeightMode","FieldFieldType","Format","StringComponentType","ImagePosition","Alignment","ImageFit","NumberOfColumns","FirstDayOfWeek","NumberComponentType","BooleanComponentType","ItemType","PropertiesTypeEnum","ArrayComponentType","WixFileComponentType","UploadFileFormat","UploadFileFormatEnumUploadFileFormat","PaymentComponentType","ProductType","PriceType","AddressComponentType","DefaultCountryConfigType","SchedulingComponentType","AppointmentFormat","InputType","EmailInfoTag","PhoneInfoTag","AddressInfoTag","ConfirmationLevel","ContactField","DisplayFieldType","ChangeableProperty","OverrideEntityType","Operator","Target","SubmitSuccessAction","TemplateType","CustomFieldsType","EditableProperties","RequiredIndicator","RequiredIndicatorPlacement","WixCodePublishTaskName","ChannelConfigurationChannelType","AcceptedMessageTypesAcceptedDirectMessageType","AcceptedMessageTypesAcceptedSmsMessageType","FactorType","MonitoringType","Escalation","ImportanceLevel","Width","PanelContentType","PanelMode","StorageType","ConsentCategory","StorageDomain","Method","ParticipantType","InterfaceConfigurationType","Scope","DataType","A11yAttributes","LinkType","ContainerType","ResizeDirection","RichTextAbilities","ImageCategoryTypes","VideoCategoryTypes","VectorArtCategoryTypes","ElementType","CssPropertyTypeEnumCssPropertyType","CssVariableTypeEnumCssDataType","StyleType","FilterFunction","DisplayValueEnumDisplayValue","WritingModeValue","BackgroundModeEnum","CssDataType","ActionType","PanelType","ActionName","SizingType","BreakpointEnumBreakpoint","ContentResizeDirection","Archetype","NativeStateType","GroupType","ImageType","CssPropertyType","Trigger","EffectGroup","RestrictionLevel","ElementDisplayOption","SidebarDataType","SidebarEntityType","OperatorEnumOperator","ParameterType","FilterValueDefinitionMode","TimeConstraintType","ValueConstraintType","Category","RegionScopeScope","VibeActionType","AssetType","WebhookIdentityType","createDataExtensionSchema","sdkTransformError","updateDataExtensionSchema","listDataExtensionSchemas","deleteByWhiteListedMetaSite","deleteUserDefinedFields","createDataExtensionSchema","updateDataExtensionSchema","listDataExtensionSchemas","deleteByWhiteListedMetaSite","deleteUserDefinedFields","import_rest_modules","createDataExtensionSchema","updateDataExtensionSchema","listDataExtensionSchemas","deleteByWhiteListedMetaSite","deleteUserDefinedFields","onDataExtensionSchemaCreated","onDataExtensionSchemaDeleted","onDataExtensionSchemaUpdated"]}
|
|
1
|
+
{"version":3,"sources":["../../index.ts","../../src/data-extensions-v1-data-extension-schema-schemas.public.ts","../../src/data-extensions-v1-data-extension-schema-schemas.universal.ts","../../src/data-extensions-v1-data-extension-schema-schemas.http.ts","../../src/data-extensions-v1-data-extension-schema-schemas.context.ts"],"sourcesContent":["export * from './src/data-extensions-v1-data-extension-schema-schemas.context.js';\n","import { renameKeysFromRESTResponseToSDKResponse } from '@wix/sdk-runtime/rename-all-nested-keys';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { EventDefinition, HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport {\n DataExtensionSchema,\n DataExtensionSchemaCreatedEnvelope,\n DataExtensionSchemaDeletedEnvelope,\n DataExtensionSchemaUpdatedEnvelope,\n DeleteByWhiteListedMetaSiteResponse,\n DeleteUserDefinedFieldsOptions,\n DeleteUserDefinedFieldsResponse,\n ListDataExtensionSchemasOptions,\n ListDataExtensionSchemasResponse,\n UpdateDataExtensionSchemaResponse,\n createDataExtensionSchema as universalCreateDataExtensionSchema,\n deleteByWhiteListedMetaSite as universalDeleteByWhiteListedMetaSite,\n deleteUserDefinedFields as universalDeleteUserDefinedFields,\n listDataExtensionSchemas as universalListDataExtensionSchemas,\n updateDataExtensionSchema as universalUpdateDataExtensionSchema,\n} from './data-extensions-v1-data-extension-schema-schemas.universal.js';\n\nexport const __metadata = { PACKAGE_NAME: '@wix/data-extension-schema' };\n\nexport function createDataExtensionSchema(\n httpClient: HttpClient\n): CreateDataExtensionSchemaSignature {\n return (\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `fqdn` | `jsonSchema` | `namespace`,\n 2\n >\n ) =>\n universalCreateDataExtensionSchema(\n dataExtensionSchema,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface CreateDataExtensionSchemaSignature {\n /**\n * Creates a user-defined data extension schema.\n * @param - Schema to create.\n * @returns Created schema.\n */\n (\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `fqdn` | `jsonSchema` | `namespace`,\n 2\n >\n ): Promise<DataExtensionSchema>;\n}\n\nexport function updateDataExtensionSchema(\n httpClient: HttpClient\n): UpdateDataExtensionSchemaSignature {\n return (\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `_id` | `jsonSchema` | `revision`,\n 2\n >\n ) =>\n universalUpdateDataExtensionSchema(\n dataExtensionSchema,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface UpdateDataExtensionSchemaSignature {\n /**\n * Updates a user-defined data extension schema, overriding the existing data.\n * @param - Schema to update.\n * @param - Field options. The following fields **must** be passed: `_id`, `jsonSchema`, `revision`.\n */\n (\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `_id` | `jsonSchema` | `revision`,\n 2\n >\n ): Promise<UpdateDataExtensionSchemaResponse>;\n}\n\nexport function listDataExtensionSchemas(\n httpClient: HttpClient\n): ListDataExtensionSchemasSignature {\n return (fqdn: string, options?: ListDataExtensionSchemasOptions) =>\n universalListDataExtensionSchemas(\n fqdn,\n options,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface ListDataExtensionSchemasSignature {\n /**\n * Retrieves a list of global and user-defined data extension schemas for a given FQDN.\n * @param - [Fully qualified domain name](https://dev.wix.com/docs/rest/articles/getting-started/fqdns).\n */\n (fqdn: string, options?: ListDataExtensionSchemasOptions): Promise<\n NonNullablePaths<\n ListDataExtensionSchemasResponse,\n `dataExtensionSchemas`,\n 2\n >\n >;\n}\n\nexport function deleteByWhiteListedMetaSite(\n httpClient: HttpClient\n): DeleteByWhiteListedMetaSiteSignature {\n return (metaSiteId: string) =>\n universalDeleteByWhiteListedMetaSite(\n metaSiteId,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface DeleteByWhiteListedMetaSiteSignature {\n /**\n * Deletes schemas of whitelisted metasite ids\n * @param - Meta site id\n */\n (metaSiteId: string): Promise<\n NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`, 2>\n >;\n}\n\nexport function deleteUserDefinedFields(\n httpClient: HttpClient\n): DeleteUserDefinedFieldsSignature {\n return (\n dataExtensionSchemaId: string,\n options: NonNullablePaths<\n DeleteUserDefinedFieldsOptions,\n `fieldsToDelete`,\n 2\n >\n ) =>\n universalDeleteUserDefinedFields(\n dataExtensionSchemaId,\n options,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface DeleteUserDefinedFieldsSignature {\n /**\n * Deletes a user defined field from the specified data extension schema.\n * @param - Schema ID.\n */\n (\n dataExtensionSchemaId: string,\n options: NonNullablePaths<\n DeleteUserDefinedFieldsOptions,\n `fieldsToDelete`,\n 2\n >\n ): Promise<DeleteUserDefinedFieldsResponse>;\n}\n\nexport const onDataExtensionSchemaCreated = EventDefinition(\n 'wix.data_extensions.v1.data_extension_schema_created',\n true,\n (event: DataExtensionSchemaCreatedEnvelope) =>\n renameKeysFromRESTResponseToSDKResponse(\n transformPaths(event, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'entity.updatedDate' },\n { path: 'entity.createdDate' },\n { path: 'metadata.eventTime' },\n ],\n },\n ])\n )\n)<DataExtensionSchemaCreatedEnvelope>();\nexport const onDataExtensionSchemaDeleted = EventDefinition(\n 'wix.data_extensions.v1.data_extension_schema_deleted',\n true,\n (event: DataExtensionSchemaDeletedEnvelope) =>\n renameKeysFromRESTResponseToSDKResponse(\n transformPaths(event, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'undefined.updatedDate' },\n { path: 'undefined.createdDate' },\n { path: 'metadata.eventTime' },\n ],\n },\n ])\n )\n)<DataExtensionSchemaDeletedEnvelope>();\nexport const onDataExtensionSchemaUpdated = EventDefinition(\n 'wix.data_extensions.v1.data_extension_schema_updated',\n true,\n (event: DataExtensionSchemaUpdatedEnvelope) =>\n renameKeysFromRESTResponseToSDKResponse(\n transformPaths(event, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'entity.updatedDate' },\n { path: 'entity.createdDate' },\n { path: 'metadata.eventTime' },\n { path: 'modifiedFields.updatedDate' },\n { path: 'modifiedFields.createdDate' },\n ],\n },\n ])\n )\n)<DataExtensionSchemaUpdatedEnvelope>();\n\nexport {\n A11y,\n A11yAttributes,\n AcceptedDirectMessageType,\n AcceptedMessageTypesAcceptedDirectMessageType,\n AcceptedMessageTypesAcceptedSmsMessageType,\n AcceptedSmsMessageType,\n AccessLevel,\n Action,\n ActionCondition,\n ActionEvent,\n ActionName,\n ActionProviderSPIConfig,\n ActionSPIConfig,\n ActionSPIConfigImplementedMethods,\n ActionSPIConfigInterfaceConfiguration,\n ActionSPIConfigInterfaceConfigurationOptionsOneOf,\n ActionSPIConfigInterfaceConfigurationType,\n ActionSpiConfig,\n ActionType,\n Actions,\n AdaptiveComponentProviderConfig,\n AddCustomFields,\n AdditionalFeesSPIConfig,\n AdditionalStepInfo,\n AdditionalTaxGroup,\n AddonMarketData,\n Address,\n AddressComponentType,\n AddressComponentTypeOptionsOneOf,\n AddressInfo,\n AddressInfoTag,\n AddressLine2,\n AdminConfigurableTextInput,\n AlertEnricherSpiConfiguration,\n AlgorithmConfig,\n AlgorithmType,\n Alignment,\n AllowedValuesOptions,\n AlternativeUri,\n AnchorData,\n AnchorMetaData,\n AndCondition,\n AndroidMobilePushConfig,\n AndroidStyle,\n ApiContext,\n ApiSlot,\n ApiWidth,\n AppConfig,\n AppConfiguration,\n AppData,\n AppDeploymentProviderConfig,\n AppEmbedData,\n AppEmbedDataAppDataOneOf,\n AppEnvironmentProviderConfig,\n AppPreviewProviderConfig,\n AppRuntimeDataCacheEntity,\n AppRuntimeDataEvent,\n AppType,\n ApplicationAutomationComponent,\n ApplicationProfile,\n ApplicationProfileProviderConfig,\n Appointment,\n AppointmentFormat,\n AppointmentFormatInfoOneOf,\n Archetype,\n ArrayComponentType,\n ArrayItems,\n ArrayItemsArrayDataOneOf,\n ArrayOptions,\n ArrayOptionsElementTypeOptionsOneOf,\n ArrayType,\n ArrayTypeArrayItems,\n ArrayTypeArrayItemsItemTypeOptionsOneOf,\n AspectRatio,\n AssetType,\n AssistantSpiConfig,\n AudienceProviderConfig,\n AudioData,\n AuthenticatorConfig,\n AutomationMetadata,\n AutomationTrigger,\n AutomationsConfig,\n AvailabilityTimeSlotsProviderConfig,\n AvatarConfig,\n AvatarShape,\n BackOfficeCustomization,\n BackOfficeCustomizationSidebarEntity,\n BackOfficeCustomizationSidebarEntityItemOneOf,\n BackOfficeExtension,\n BackOfficeExtensionContainer,\n BackOfficeExtensionExtensionOneOf,\n BackOfficeExtensionMenuItem,\n BackOfficeExtensionWidget,\n BackOfficeExtensionWidgetAssetOneOf,\n BackOfficeExternalUrl,\n BackOfficeHostingPlatforms,\n BackOfficeModal,\n BackOfficeModalContentOneOf,\n BackOfficePage,\n BackOfficePageAssetOneOf,\n BackOfficeRestrictedCustomization,\n BackOfficeScriptAsset,\n BackOfficeScriptAssetType,\n BackOfficeSidebarCategory,\n BackOfficeWidget,\n BackOfficeWidgetContentOneOf,\n BackdropFilter,\n BackendWorker,\n Background,\n BackgroundBackgroundMediaModeOneOf,\n BackgroundImage,\n BackgroundModeEnum,\n BackgroundType,\n BackofficeActionDeeplink,\n BarAlignment,\n BarAlignmentSelected,\n BaseEventMetadata,\n BaseInfo,\n BaseInstallation,\n Behaviors,\n BillingSettingsConfig,\n BlockType,\n BlockquoteData,\n BlocksData,\n BlogPaywallProviderConfig,\n BookingAutomationsConfig,\n BookingData,\n BookingPermissionOverrides,\n BookingPolicyProviderConfig,\n BookingsPlatformConfig,\n BookingsPricingProviderConfig,\n BookingsResourceType,\n BookingsResourceTypesProviderConfig,\n BoolListOptions,\n BooleanComponentType,\n BooleanExperimentExposureRule,\n BooleanType,\n Border,\n BorderColors,\n BorderWidths,\n BrandIcons,\n BreakPoint,\n BreakPointSection,\n Breakpoint,\n BreakpointEnumBreakpoint,\n BreakpointPresetStyleOverrides,\n Breakpoints,\n BroadcastList,\n BrowserPushChannel,\n BrowserPushContentKeys,\n BrowserStorage,\n BuilderSpi,\n BulletedListData,\n Bundle,\n BusinessManagerPage,\n ButtonData,\n ButtonDataType,\n ButtonStyles,\n CalendarType,\n CaptionData,\n CardStyles,\n CardStylesAlignment,\n CardStylesType,\n CatalogSPIConfig,\n CatalogSyncConfiguration,\n Category,\n CellStyle,\n ChangeableProperty,\n ChannelBrandIcons,\n ChannelBranding,\n ChannelChannelBranding,\n ChannelChannelConfiguration,\n ChannelChannelConfigurationMessagingConfigOneOf,\n ChannelConfiguration,\n ChannelConfigurationChannelType,\n ChannelConfigurationMessagingConfigOneOf,\n ChannelIcon,\n ChannelImplementedMethods,\n ChannelMediaCapabilities,\n ChannelType,\n Checkbox,\n CheckboxConfiguration,\n CheckboxField,\n CheckboxGroup,\n CheckboxGroupOption,\n CheckoutContentSPIConfig,\n ClientResources,\n ClientSideService,\n CodeBlockData,\n CodePackageComponentData,\n CodePanel,\n CollapsibleListData,\n Collection,\n Color,\n ColorData,\n ColorDefinition,\n ColorSelectLabeled,\n ColorSelectLabeledDataOneOf,\n Colors,\n CommentFilterProviderConfig,\n CommentModerationProviderConfig,\n CommentsContextProviderConfig,\n CommonImage,\n CommunicationChannelConfiguration,\n ComponentData,\n ComponentDataDataOneOf,\n ComponentEnricherConfig,\n ComponentInitialSize,\n ComponentMetaData,\n ComponentModel,\n ComponentReferenceDataConfig,\n ComponentTranslationAdditionalFieldsConfig,\n ComponentType,\n ComponentsValidatorConfig,\n Condition,\n ConditionBlock,\n ConditionNode,\n ConditionNodeNodeOneOf,\n Conditions,\n Configuration,\n ConfirmationLevel,\n ConnectMethod,\n ConsentCategory,\n Consequence,\n ConstOrDynamicParam,\n ConstOrDynamicParamValueOneOf,\n Constraint,\n ContactData,\n ContactField,\n ContactLabelsComponentData,\n ContactNotification,\n ContactsData,\n ContactsNotificationData,\n Container,\n ContainerBehaviors,\n ContainerDataOneOf,\n ContainerLayout,\n ContainerStyleOverrides,\n ContainerType,\n ContentData,\n ContentDataOverrides,\n ContentFill,\n ContentProviderConfig,\n ContentResizeDirection,\n Context,\n ContextArrayItems,\n ContextArrayItemsArrayDataOneOf,\n ContextDataItems,\n ContextImplementor,\n ContextItem,\n ContextItemSelectedDataTypeOneOf,\n ContextSpecifier,\n ConversationLimitations,\n Coordinates,\n CoreApps,\n Corners,\n CoverImageConfiguration,\n CreateDataExtensionSchemaRequest,\n CreateDataExtensionSchemaResponse,\n CreateNewItemInfo,\n CreatedByCacheEntity,\n Crop,\n CrossSellConfig,\n CssCustomPropertyAction,\n CssCustomPropertyItem,\n CssCustomPropertyItemSelectedCssPropertyTypeOneOf,\n CssDataType,\n CssNumber,\n CssPropertyAction,\n CssPropertyItem,\n CssPropertyItemDefaults,\n CssPropertyItemDefinitionOverrides,\n CssPropertyItemSelectedCssPropertyTypeOneOf,\n CssPropertyType,\n CssPropertyTypeEnumCssPropertyType,\n CssVariableTypeEnumCssDataType,\n CurrencyCodeListOptions,\n CustomAction,\n CustomActionActionExecuteOneOf,\n CustomChargesConfig,\n CustomElement,\n CustomElementConsentCategoryOneOf,\n CustomElementScriptType,\n CustomElementWidget,\n CustomEnum,\n CustomEnumOption,\n CustomEnumOptionCssProperty,\n CustomExperimentExposureRule,\n CustomFieldInfo,\n CustomFieldsType,\n CustomInitialPreset,\n CustomOption,\n CustomPermission,\n CustomPropertyEnum,\n CustomPropertyEnumOption,\n CustomPropertyEnumOptionStyle,\n CustomRefData,\n CustomReservationsApprovalConfig,\n CustomRewardProviderConfig,\n CustomScopeConfig,\n CustomTriggerConfig,\n DCConfigData,\n Dashboard,\n DashboardAction,\n DashboardApplicationData,\n DashboardButton,\n DashboardComponentData,\n DashboardItem,\n DashboardPlatfromComponentData,\n DataAction,\n DataComponent,\n DataExtensionSchema,\n DataExtensionSchemaCreatedEnvelope,\n DataExtensionSchemaDeletedEnvelope,\n DataExtensionSchemaState,\n DataExtensionSchemaUpdatedEnvelope,\n DataExtensionsComponentData,\n DataGroupsArrayItems,\n DataItem,\n DataItemOverrides,\n DataItemOverridesSelectedDataTypeOneOf,\n DataItemSelectedDataTypeOneOf,\n DataItems,\n DataPermissions,\n DataType,\n DateInput,\n DatePicker,\n DateTimeConstraints,\n DateTimeInput,\n Debounce,\n DecimalListOptions,\n Decoration,\n DecorationDataOneOf,\n DecorationType,\n Deeplink,\n DeeplinkOfOneOf,\n Default,\n DefaultCountryConfig,\n DefaultCountryConfigOptionsOneOf,\n DefaultCountryConfigType,\n DefaultPresets,\n DefaultTaxGroupProviderConfig,\n DefaultTextStyle,\n Definition,\n Delay,\n DelayTypeOneOf,\n DeleteByWhiteListedMetaSiteRequest,\n DeleteByWhiteListedMetaSiteResponse,\n DeleteDemoDataExtensionSchemaRequest,\n DeleteDemoDataExtensionSchemaResponse,\n DeleteGlobalExtensionSchemaRequest,\n DeleteGlobalExtensionSchemaResponse,\n DeleteTemplateFields,\n DeleteUserDefinedFieldsOptions,\n DeleteUserDefinedFieldsRequest,\n DeleteUserDefinedFieldsResponse,\n DeploymentPipelineProviderConfig,\n Description,\n Design,\n DesignTarget,\n DevCenterTestingComponentData,\n DevCenterTestingComponentDataTranslatableOneOfOneOf,\n Dimension,\n Dimensions,\n DirectMessageConfig,\n Direction,\n DiscountConfig,\n DiscountsSPIConfig,\n DiscoveryMetaData,\n Display,\n DisplayField,\n DisplayFieldDisplayFieldTypeOptionsOneOf,\n DisplayFieldType,\n DisplayFilter,\n DisplayFilters,\n DisplayGroupAction,\n DisplayGroupItem,\n DisplayGroupItemSelectedGroupTypeOneOf,\n DisplayProperties,\n DisplayValue,\n DisplayValueEnumDisplayValue,\n DisputeServicePluginConfig,\n DividerData,\n DividerDataAlignment,\n DividerDataWidth,\n DmDirectMessageConfig,\n Docking,\n DockingProperties,\n DocumentStyle,\n Domain,\n DomainEvent,\n DomainEventBodyOneOf,\n DonationInput,\n DonationInputOption,\n DrillInListItem,\n DrillItem,\n DrillItemDataOneOf,\n DropDownLabeled,\n Dropdown,\n DropdownField,\n DropdownFieldOption,\n DropdownOption,\n DropshippingProviderSPIConfig,\n DtsContent,\n DtsDefinitionReference,\n DtsDefinitionReferenceDtsDefinitionOneOf,\n DtsDefinitionType,\n DtsHttpLink,\n DurationInputConfiguration,\n DurationInputConfigurationDurationRenameOptions,\n DurationRenameOptions,\n DynamicPriceOptions,\n DynamicSiteStructureProviderConfig,\n EditableFields,\n EditableProperties,\n EditorAddon,\n EditorBehaviors,\n EditorContextProvider,\n EditorContextProviderResources,\n EditorDependencies,\n EditorElement,\n EditorElementLayout,\n EditorFunction,\n EditorFunctionLibrary,\n EditorPresence,\n EditorReactComponent,\n EffectGroup,\n ElementDisplayOption,\n ElementItem,\n ElementItemSelectedElementTypeOneOf,\n ElementState,\n ElementStyleDefaults,\n ElementStyleOverrides,\n ElementType,\n EmailChannel,\n EmailEmailMessageConfig,\n EmailInfo,\n EmailInfoTag,\n EmailMessageConfig,\n EmailTemplateConfig,\n EmailTemplateConfigProviderOneOf,\n EmbedCategory,\n EmbedData,\n EmbeddedScriptComponentData,\n EmbeddedScriptPages,\n EmbeddedScriptPlacement,\n Empty,\n EntityCreatedEvent,\n EntityDeletedEvent,\n EntityUpdatedEvent,\n Environment,\n ErrorReporting,\n ErrorReportingArtifact,\n Escalation,\n EventAction,\n EventBadgesSpiConfig,\n EventData,\n EventMetadata,\n EventTimeSlotsProviderConfig,\n EventTypeProviderConfig,\n EventValidationProviderConfig,\n Execution,\n ExecutionActionExecuteOneOf,\n ExecutionType,\n ExemptRegions,\n ExpectedInputs,\n ExperimentGroupWrapper,\n ExportMetadata,\n Exposure,\n ExposureRule,\n ExposureRuleRuleOneOf,\n ExposureRuleType,\n Extendable,\n ExtendingComponentType,\n ExtensionData,\n ExtensionDetails,\n ExtensionExposure,\n ExtensionType,\n ExternalDatabaseSpiConfig,\n ExternalFilterProviderConfig,\n FactorConfig,\n FactorType,\n FeedAggregation,\n FeedChannels,\n FeedChannelsConfig,\n FeesSPIConfig,\n Field,\n FieldFieldType,\n FieldGroup,\n FieldManagementConfig,\n FieldOverride,\n FieldOverrides,\n FieldType,\n FieldTypeOptionsOneOf,\n FieldsOverrides,\n FieldsSettings,\n FileData,\n FileSource,\n FileSourceDataOneOf,\n FileType,\n FileUpload,\n Filter,\n FilterFunction,\n FilterInfo,\n FilterInfoOptionsOneOf,\n FilterOptionsType,\n FilterSelectionType,\n FilterValueDefinitionMode,\n FilteringCapability,\n FirstDayOfWeek,\n FirstLevelCategory,\n FixedPayment,\n FixedPositionOptions,\n FixedPriceOptions,\n FocalPoint,\n Font,\n FontDefinition,\n FontFamilyData,\n FontFamilyWithColorPicker,\n FontSizeData,\n FontType,\n FormFieldContactInfo,\n FormFieldContactInfoAdditionalInfoOneOf,\n FormLayout,\n FormOverride,\n FormOverrideEntityTypeOptionsOneOf,\n FormOverrideFieldOverride,\n FormOverrideFieldOverridePropertyTypeOptionsOneOf,\n FormSchemaDynamicValuesSpiConfig,\n FormSchemaSpiConfig,\n FormSpamSubmissionReportPermissions,\n FormSpamSubmissionReportSpiConfig,\n FormSpamSubmissionReportsNamespaceConfig,\n FormSpamSubmissionSpiConfig,\n FormSpiExtensionConfig,\n FormSubmissionModerationSpiConfig,\n FormSubmissionModerationSpiNamespaceConfig,\n FormSubmissionSpiConfig,\n FormSubmissionSpiExtensionConfig,\n FormTemplate,\n FormTemplateTemplateTypeOptionsOneOf,\n Format,\n FormsConfig,\n FormsPermissions,\n FormsSPIConfig,\n FormsSchemaNamespaceConfig,\n FormsSpamSubmissionsNamespaceConfig,\n FormsSubmissionsExtensionNamespaceConfig,\n FormsSubmissionsNamespaceConfig,\n ForwardAction,\n ForwardActionActionOneOf,\n FreeOptionConfiguration,\n FreePricingTypeConfiguration,\n FreeTrialConfiguration,\n FunctionAssistantToolProviderConfig,\n FunctionDefinition,\n FunctionEcomDiscountTriggerEligibilityProviderConfig,\n FunctionParameter,\n FunctionParameterArrayItems,\n FunctionParameterArrayItemsArrayDataOneOf,\n FunctionParameterItems,\n FunctionParameterSelectedDataTypeOneOf,\n FunctionRecipe,\n FunctionResources,\n FunctionReturnType,\n FunctionReturnTypeSelectedDataTypeOneOf,\n FunctionsShopPriceSpiConfig,\n GIF,\n GIFData,\n GIFType,\n GalleryData,\n GalleryOptions,\n GalleryOptionsLayout,\n GalleryOptionsThumbnails,\n Gap,\n GbpFeatureConfig,\n GenericHookConfig,\n GenericHooksConfig,\n GenericOptions,\n GiftCardProviderConfig,\n Gradient,\n GradualDeleteCacheEntity,\n GradualRolloutCacheEntity,\n GradualUpdateCacheEntity,\n GridAppFilesTransformerConfig,\n Group,\n GroupType,\n GroupedContent,\n HTMLData,\n HTMLDataDataOneOf,\n HTMLDataSource,\n HTTPMethod,\n Header,\n HeaderConfig,\n HeaderConfigHeaderConfigOneOf,\n HeaderConfigOneOf,\n HeaderWidgetConfig,\n HeadingData,\n HeadlessOAuth,\n Height,\n HeightMode,\n HelpArticle,\n HelpArticleArticleTypeOneOf,\n HelpResources,\n HiddenOptions,\n HookType,\n HorizontalDocking,\n HostContainerId,\n HostedComponent,\n HostedPage,\n IDPConnectionConfig,\n Icon,\n IconDataOneOf,\n IconType,\n IdentificationData,\n IdentificationDataIdOneOf,\n Illustration,\n IllustrationIllustrationOneOf,\n Image,\n ImageCategoryTypes,\n ImageConfig,\n ImageData,\n ImageDataStyles,\n ImageDataStylesBorder,\n ImageFit,\n ImageOverrides,\n ImagePosition,\n ImageShape,\n ImageStyles,\n ImageStylesPosition,\n ImageType,\n Implementation,\n ImplementedMethods,\n ImportanceLevel,\n InPersonOptions,\n Index,\n IndexField,\n InitDirection,\n InitialExpandedItems,\n InitialPosition,\n InitialSizeSetting,\n InitialSizeSettingSelectedSizingTypeOneOf,\n Initiator,\n InitiatorDataOneOf,\n InitiatorType,\n InlineElement,\n Input,\n InputConfiguration,\n InputField,\n InputFieldInputTypeOptionsOneOf,\n InputField_Number,\n InputField_NumberComponentTypeOptionsOneOf,\n InputType,\n InputWithPlaceholder,\n InstallPage,\n InstallationInfo,\n InstallationInfoTargetContainerOneOf,\n InstallationSettings,\n InstallationSettingsOptionsOneOf,\n IntListOptions,\n IntegerType,\n IntegrationOptions,\n IntegrationType,\n Intent,\n Interactions,\n InterfaceConfiguration,\n InterfaceConfigurationOfTypeOneOf,\n InterfaceConfigurationType,\n InternalComponentMetadata,\n InventorySpiConfig,\n InvoicesActionsComponentData,\n InvoicesConfig,\n IsStretched,\n Item,\n ItemDataOneOf,\n ItemImage,\n ItemLayout,\n ItemLayoutItemOneOf,\n ItemSelection,\n ItemSelectionOptions,\n ItemStyle,\n ItemThumbnail,\n ItemThumbnailOptionsOneOf,\n ItemType,\n ItemVideo,\n ItemsGroup,\n ItemsSelectionProviderConfig,\n KeepAlivePage,\n Keywords,\n LanguageTagListOptions,\n Layout,\n LayoutCellData,\n LayoutData,\n LayoutDataBackgroundImage,\n LayoutDataImagePosition,\n LayoutMode,\n LayoutType,\n LearnMore,\n LeftPanel,\n LeftPanelWidgetConfig,\n LegacyBackOfficeExtensionWidget,\n LegacyBackOfficeExtensionWidgetAssetOneOf,\n LegacyBackOfficeMenuItem,\n LegacyBackOfficeMenuItemAction,\n LegendsSpiConfig,\n Level,\n LightboxCloseOptions,\n LightboxContent,\n LightboxEditorSettings,\n LightboxOptions,\n LimiterField,\n LineItemsEnricherConfig,\n LineStyle,\n Link,\n LinkData,\n LinkPreviewData,\n LinkPreviewDataStyles,\n LinkSuffix,\n LinkTarget,\n LinkType,\n ListDataExtensionSchemasOptions,\n ListDataExtensionSchemasRequest,\n ListDataExtensionSchemasResponse,\n ListEventFromCalendars,\n ListItem,\n ListValue,\n LiveSiteActionDeeplink,\n LocalDeliveryComponentData,\n Location,\n LocationLocationInfoOneOf,\n LockableOperation,\n Logo,\n Logos,\n Main,\n MainPresets,\n MainPropsData,\n ManagedMenuEntities,\n MandatoryField,\n MapData,\n MapSettings,\n MapType,\n Margin,\n Margins,\n MarketplaceSPIConfig,\n Maturity,\n MeasurementSystem,\n Media,\n MediaCapabilities,\n MediaItem,\n MediaItemMediaOneOf,\n MediaMimeType,\n MediaSettings,\n MembershipsSPIConfig,\n MentionData,\n MenuAction,\n MenuActionActionOneOf,\n MenuDropdown,\n MenuLink,\n MenuSlot,\n MessageContainingTranslatables,\n MessageEnvelope,\n Metadata,\n Method,\n MinMaxRange,\n MobileApplication,\n MobileFeedChannel,\n MobileFeedContentKeys,\n MobilePushChannel,\n MobilePushChannelConfig,\n MobilePushContentKeys,\n ModalParams,\n Monitoring,\n MonitoringOptionsOneOf,\n MonitoringType,\n MpaNavigation,\n MultiReferenceOptions,\n MultiServiceBookingPolicyProviderConfig,\n MultilineAddress,\n MultilineAddressValidation,\n MultilingualTranslationSchema,\n MultipleDashboardsComponentData,\n Namespace,\n NamespaceConfig,\n NamespaceConfigV2,\n NativeStateType,\n NavigateToPageAction,\n NavigationType,\n NestedWidgets,\n Node,\n NodeDataOneOf,\n NodeStyle,\n NodeType,\n NotificationChannels,\n NotificationContent,\n NotificationPreferencesFilterConfig,\n NotificationTopic,\n NotificationTopicState,\n NotificationTopicType,\n Npm,\n NullValue,\n NumberComponentType,\n NumberInput,\n NumberOfColumns,\n NumberType,\n OAuthAppType,\n OAuthTechnologies,\n ObjectField,\n ObjectFieldTypeOptionsOneOf,\n ObjectOptions,\n ObjectType,\n Oembed,\n Offset,\n OffsetValueOneOf,\n OneTimeOptionConfiguration,\n OneTimePricingTypeConfiguration,\n OpenComponent,\n OpenModalAction,\n OperationExecutorConfig,\n Operator,\n OperatorConfiguration,\n OperatorEnumOperator,\n Option,\n OptionDesign,\n OptionLayout,\n OrCondition,\n Order,\n OrderValue,\n OrderedListData,\n Orientation,\n OriginInfo,\n OutOfIframeData,\n Output,\n OverrideEntityType,\n OverrideTemplateFields,\n PDFSettings,\n PDFSettingsViewMode,\n PackageDimension,\n PackageType,\n Padding,\n Page,\n PageAnchor,\n PageComponentData,\n PageContent,\n PageDashboardApplicationComponent,\n PageEditorSettings,\n PageInstallation,\n PageInstallationSettings,\n PageNavigationOptions,\n PageOptions,\n PageOutOfIframeComponentData,\n PageReplace,\n PageReplaceOptions,\n PageReplaceOptionsOptionsOneOf,\n PageWidgetAsContent,\n PaginationMode,\n Panel,\n PanelAction,\n PanelActionSelectedPanelTypeOneOf,\n PanelContentType,\n PanelMode,\n PanelSelectedContentTypeOneOf,\n PanelSize,\n PanelType,\n PanoramaOptions,\n ParagraphData,\n Param,\n Parameter,\n ParameterType,\n ParameterValueDefinitionDetailsOneOf,\n PartialPaymentRestriction,\n PartialUpdateCacheEntity,\n ParticipantType,\n Password,\n PatternsWizard,\n Payment,\n PaymentComponentType,\n PaymentComponentTypeOptionsOneOf,\n PaymentDateModification,\n PaymentInput,\n PaymentMethod,\n PaymentMethodMethodOneOf,\n PaymentServiceProviderConfig,\n PaymentServiceProviderCredentialsField,\n PaymentServiceProviderCredentialsFieldFieldOneOf,\n PaymentSettingsSPIConfig,\n PaymentType,\n PaymentsGatewayComponentData,\n PayoutsProviderConfig,\n PerkValues,\n PerksConfiguration,\n PermissionOverrides,\n Permissions,\n PhoneConstraints,\n PhoneInfo,\n PhoneInfoTag,\n PhoneInput,\n PhoneOptions,\n PingNotificationComponentData,\n PingSettingsGroupComponentData,\n PingSettingsGroupComponentDataState,\n PlaceHolder,\n Placement,\n PlanDuration,\n PlanFormBenefitsSection,\n PlanFormCustomPricingRulesSection,\n PlanFormCustomSection,\n PlanFormDefaultSection,\n PlanFormDurationSection,\n PlanFormInfoSection,\n PlanFormInitialValue,\n PlanFormPagePermissionsSection,\n PlanFormPlanSettingsSection,\n PlanFormPreviewSection,\n PlanFormPricingAndDurationSection,\n PlanFormPricingAndDurationSectionDurationInputConfiguration,\n PlanFormPricingAndDurationSectionInputConfiguration,\n PlanFormPricingOption,\n PlanFormPricingSection,\n PlanFormPricingSectionInputConfiguration,\n PlanFormPricingSectionSetupFeeConfiguration,\n PlanFormPricingType,\n PlanFormSection,\n PlanFormSectionSectionOneOf,\n PlanFormStartDateRulesSection,\n PlanFormTypeMetadata,\n PlanPeriodUnit,\n PlanPriceData,\n PlanPricing,\n PlanPricingPricingModelOneOf,\n PlanSettingsRowConfiguration,\n PlatformHeaderConfig,\n PlatfromComponentData,\n PlaybackOptions,\n PluginConfig,\n PluginContainerData,\n PluginContainerDataAlignment,\n PluginContainerDataHeight,\n PluginContainerDataWidth,\n PluginContainerDataWidthDataOneOf,\n PluginInstallationSettings,\n PluginInterface,\n PluginMarketData,\n PluginPlacement,\n PolicyConfig,\n PolicyPermissionOverrides,\n Poll,\n PollData,\n PollDataLayout,\n PollDesign,\n PollDesignBackground,\n PollDesignBackgroundBackgroundOneOf,\n PollLayout,\n PollLayoutDirection,\n PollLayoutType,\n PollOption,\n PollSettings,\n PosProviderSettingsServicePluginConfig,\n Position,\n PostLoginConfig,\n PreRegisterConfig,\n PredefinedExpectedInput,\n PredefinedExpectedInputConfiguration,\n PredefinedExpectedInputConfigurationTypeOneOf,\n PredefinedLabel,\n PredefinedValues,\n Preset,\n PresetEditorPresence,\n PresetElementDefaults,\n PresetInfo,\n PresetInnerElementDefaults,\n PresetItem,\n PresetSize,\n PresetStyleDefaults,\n PresetStyleItemOverrides,\n PresetStyleOverrides,\n PreviewCardPlaceholders,\n PreviewConfiguration,\n PreviewFields,\n PriceSPIConfig,\n PriceType,\n PricingData,\n PricingPlansFormConfiguration,\n PricingRecurring,\n Primitive,\n PrimitiveType,\n Product,\n ProductCatalogProviderConfig,\n ProductCheckboxGroup,\n ProductCheckboxGroupOption,\n ProductPriceOptionsOneOf,\n ProductRestrictionsConfig,\n ProductType,\n ProductsPathsConfig,\n Project,\n PropertiesType,\n PropertiesTypeEnum,\n PropertiesTypePropertiesTypeOptionsOneOf,\n ProposalEditorProviderConfig,\n Provider,\n ProviderAccountServicePluginConfig,\n ProviderConfig,\n ProviderConfigMessage,\n ProviderFilterOptions,\n ProviderSuppressionServicePluginConfig,\n PurchaseValidationsConfig,\n QuantityLimit,\n RadioButtonLabeled,\n RadioGroup,\n RadioGroupOption,\n RangeConstraints,\n RateLimit,\n RatingInput,\n ReactElementContainer,\n ReactElementContainerSelectedContainerTypeOneOf,\n RecipientFilter,\n RecipientFilterDataOneOf,\n RecipientFilterType,\n RecipientType,\n RecommendationsProviderConfig,\n RecurringOptionConfiguration,\n RecurringPricingTypeConfiguration,\n RecurringPricingTypeConfigurationFreeTrialConfiguration,\n RedirectOptions,\n RefElement,\n RefInnerElementDefaults,\n ReferenceOptions,\n Region,\n RegionScopeScope,\n RegionType,\n ReindexEvent,\n ReindexField,\n Rel,\n RenderOverrides,\n RepeatedFieldOverrideConfig,\n ReplaceableOptions,\n ReplacementType,\n ReplacingOptions,\n RequestedField,\n RequiredIndicator,\n RequiredIndicatorPlacement,\n RequiredIndicatorProperties,\n RequiredOptions,\n ResetButton,\n ResizeDirection,\n Resizing,\n Resource,\n Resources,\n ResponsivenessBehaviour,\n ResponsysEmail,\n RestaurantsPOSComponentData,\n RestoreInfo,\n RestrictedOperation,\n Restriction,\n RestrictionLevel,\n Restrictions,\n RestrictionsConfig,\n ReviewsEntityCatalogProviderConfig,\n ReviewsProductCatalogProviderConfig,\n RewardProviderConfig,\n RibbonStyles,\n RichContent,\n RichContentOptions,\n RichText,\n RichTextAbilities,\n RichTextWithIllustrationVertical,\n Rule,\n RuntimeComponentCacheEntity,\n RuntimeComponentCacheEntityComponent,\n RuntimeComponentCacheEntityComponentOneOf,\n RuntimeComponentCacheEntityExperiment,\n RuntimeComponentCacheEntityExperimentExperimentOneOf,\n SDKExports,\n SDKExportsNpm,\n Scaling,\n Scheduling,\n SchedulingComponentType,\n SchedulingComponentTypeOptionsOneOf,\n Schema,\n SchemaConfig,\n SchemaField,\n SchemaFieldExposure,\n SchemaFieldFieldType,\n SchemaFieldType,\n SchemaFieldTypeFieldTypeOneOf,\n SchemaGroup,\n SchemaGroupElement,\n SchemaKey,\n SchemaScope,\n Scope,\n ScriptType,\n SdkDefinition,\n SearchConfig,\n SearchField,\n SearchParams,\n SecondLevelCategory,\n Section,\n SentryOptions,\n SeoKeywordsSuggestionsSPIConfig,\n ServiceAction,\n ServiceAvailabilityPolicyProviderConfig,\n ServicePermissionOverrides,\n ServiceTrigger,\n ServicesDropdown,\n ServicesDropdownOption,\n Settings,\n SettingsPanel,\n SettingsPermissions,\n SettingsUrl,\n SetupFeeConfiguration,\n SharedPlatformMobilePushConfig,\n ShippingLabelCarrierSpiConfig,\n ShippingProviderConfig,\n ShippingRatesConfig,\n ShorthandGroupBackground,\n ShoutoutEmail,\n Sidebar,\n SidebarChildItem,\n SidebarChildItemItemOneOf,\n SidebarConfig,\n SidebarConfigOneOf,\n SidebarDataType,\n SidebarEntityType,\n SidebarRootItem,\n SidebarRootItemItemOneOf,\n SidebarSecondLevelChildItem,\n SidebarSecondLevelChildItemItemOneOf,\n SidebarWidget,\n SidebarWidgetConfig,\n SidebarWidgetConfigOneOf,\n Signature,\n Simple,\n SimpleContainer,\n SimpleField,\n SimpleType,\n SingleContent,\n SingleKeyCondition,\n SiteConfig,\n SiteContributorsData,\n SiteMapProviderConfig,\n SiteMemberData,\n SiteMembersSsrCaching,\n SiteMigrationSpiConfig,\n SiteWidgetSlot,\n Size,\n SizingType,\n SliderLabeled,\n Slot,\n SlotData,\n SlotDataSlotTypeOneOf,\n SlotDataType,\n SlotParams,\n SmsActionMessage,\n SmsChannel,\n SmsContentKeys,\n SmsMessageConfig,\n SmsSmsMessageConfig,\n SnippetSolutionData,\n SocialMarketingDesignSPIConfig,\n SocialMarketingDesignsProviderConfig,\n Source,\n SourceOptionsOneOf,\n SourceType,\n SpamSubmissionPermissions,\n Spi,\n SpiBaseUri,\n Spoiler,\n SpoilerData,\n StaffSortingProviderConfig,\n StartDateLimitsSPIConfig,\n StartDateRulesSPIConfig,\n State,\n StaticContainer,\n StaticFileComponentData,\n StaticFilterOption,\n StaticFilterOptions,\n Status,\n Step,\n StorageDomain,\n StorageType,\n StringComponentType,\n StringListOptions,\n StringOption,\n StringType,\n StringTypeFormatOptionsOneOf,\n StudioComponentData,\n StudioWidgetComponentData,\n StudioWidgetVariation,\n StyleAction,\n StyleItem,\n StyleItemDefaults,\n StyleItemOverrides,\n StyleItemSelectedCssPropertyTypeOneOf,\n StyleItemSelectedCssVariableTypeOneOf,\n StyleItemSelectedItemTypeOneOf,\n StyleType,\n Styles,\n StylesBorder,\n StylesPosition,\n SubPage,\n SubmitSettings,\n SubmitSettingsSubmitSuccessActionOptionsOneOf,\n SubmitSuccessAction,\n SubscriptionInfo,\n SyncToCalendar,\n SyncedProjectsProviderConfig,\n Tab,\n TableCellData,\n TableData,\n Tag,\n TagOverrides,\n TagOverridesEntry,\n Tags,\n TagsOption,\n Target,\n TargetElement,\n TaxCalculationConfig,\n TaxCalculatorSpiConfig,\n TaxCountriesConfig,\n TaxExemptGroup,\n TaxExemptGroupsProviderConfig,\n TaxGroupsProviderConfig,\n TaxIdValidatorConfig,\n TaxTypesConfig,\n TaxationCategoryProvider,\n TemplateDefaultColor,\n TemplateType,\n TermsAndConditionsConfiguration,\n TermsModalConfiguration,\n TestEnum,\n Text,\n TextAlignment,\n TextData,\n TextDecoration,\n TextEnum,\n TextGroup,\n TextInput,\n TextInputDisplayType,\n TextInputLabeled,\n TextInputSettings,\n TextNodeStyle,\n TextStyle,\n TextStyleDefaultColorOneOf,\n TextToSpeechActionMessage,\n TextWithSuffix,\n TextWithSuffixSuffixOneOf,\n TextWithTooltip,\n ThankYouMessageOptions,\n ThankYouPageConfiguration,\n ThankYouPageInputConfig,\n ThankYouPageModalConfiguration,\n ThankYouPagePreviewConfiguration,\n ThankYouPageRedirectsConfiguration,\n ThumbnailData,\n ThumbnailType,\n Thumbnails,\n ThumbnailsAlignment,\n ThumbnailsSize,\n TicketReservationsSpiConfig,\n TimeConstraintConfiguration,\n TimeConstraintConfigurationValueConstraintsOneOf,\n TimeConstraintType,\n TimeInput,\n ToggleLabeled,\n ToolPanelConfig,\n TooltipSuffix,\n TopologyComponentData,\n TranslatedData,\n TranslatedMessageWithIdRepeated,\n TranslatedMessageWithUniqueFieldRepeated,\n TranslationResources,\n Trigger,\n TriggerFieldOverride,\n TriggerFilter,\n TriggerOverride,\n TriggerProviderSPIConfig,\n Type,\n TypedDynamicParam,\n TypedDynamicParamType,\n UnifiedLightbox,\n UnifiedPage,\n UnifiedPageEditorSettings,\n UnitType,\n Until,\n UpdateDataExtensionSchemaRequest,\n UpdateDataExtensionSchemaResponse,\n UploadFileFormat,\n UploadFileFormatEnumUploadFileFormat,\n UpstreamWixCommonImage,\n Url,\n UrlData,\n UrlMapperProviderConfig,\n UrlParam,\n UserNotification,\n UserNotificationData,\n UserNotificationDataContext,\n UserNotificationDataDeeplink,\n UserNotificationDataDeeplinkOfOneOf,\n UserNotificationDataInitiator,\n UserNotificationDataInitiatorDataOneOf,\n UserNotificationDataRecipientFilter,\n UserNotificationDataRecipientFilterDataOneOf,\n UserNotificationDataRecipientFilterType,\n UserNotificationDataType,\n V1Image,\n V1ImplementedMethods,\n V1Link,\n V1LinkDataOneOf,\n V1Metadata,\n V1Region,\n V1SchemaField,\n V1TextStyle,\n V2CommunicationChannelConfiguration,\n V2Condition,\n V2Field,\n V2FieldFieldTypeOptionsOneOf,\n V2ImplementedMethods,\n V2Rule,\n V2TriggerOverride,\n ValidationMessages,\n ValidationTarget,\n ValidationsSPIConfig,\n ValueConstraintType,\n VectorArt,\n VectorArtCategoryTypes,\n VectorArtOverrides,\n VeloActionConfig,\n VeloCustomCss,\n VeloPublishPipelineTaskProviderConfig,\n VelocityEmail,\n VerticalAlignment,\n VerticalAlignmentAlignment,\n VerticalDocking,\n VibeActionType,\n VibeCustomPanelAction,\n VibeDashboardAction,\n Video,\n VideoCategoryTypes,\n VideoConferenceOptions,\n VideoData,\n VideoOverrides,\n ViewMode,\n ViewRole,\n ViewerService,\n ViewerServiceAssets,\n VisibleState,\n VoiceChannel,\n VoiceContentKeys,\n VoteRole,\n WebComponentData,\n WebComponentDataElementType,\n WebFeedChannel,\n WebFeedContentKeys,\n WebhookComponentData,\n WebhookIdentityType,\n WidgetAsContent,\n WidgetBehavior,\n WidgetComponent,\n WidgetComponentData,\n WidgetComponentOptions,\n WidgetData,\n WidgetDetails,\n WidgetDisplay,\n WidgetHorizontal,\n WidgetInstallation,\n WidgetInstallationSettings,\n WidgetInstallationSettingsTargetContainerOneOf,\n WidgetOutOfIframeComponentData,\n WidgetPluginComponentData,\n WidgetSize,\n WidgetSizeHeight,\n WidgetSizeWidth,\n WidgetSlot,\n WidgetVertical,\n WidgetWidthType,\n Width,\n WidthType,\n WixAiGatewaySpiConfig,\n WixApiOptions,\n WixCodePublishTaskName,\n WixDependency,\n WixFile,\n WixFileComponentType,\n WixFileComponentTypeOptionsOneOf,\n WixOfferingComponentData,\n WixOfferingComponentDataOfferingOneOf,\n WixPagesDomainMapping,\n WixUserData,\n WixUsersData,\n WixVibeCodingInstructions,\n WixVibeComponent,\n WixelSPIConfig,\n WorkerComponentData,\n WritingMode,\n WritingModeValue,\n _Array,\n _ArrayComponentTypeOptionsOneOf,\n _Boolean,\n _BooleanComponentTypeOptionsOneOf,\n _Date,\n _Function,\n _Number,\n _Object,\n _String,\n _StringComponentTypeOptionsOneOf,\n} from './data-extensions-v1-data-extension-schema-schemas.universal.js';\n","import { transformError as sdkTransformError } from '@wix/sdk-runtime/transform-error';\nimport {\n renameKeysFromSDKRequestToRESTRequest,\n renameKeysFromRESTResponseToSDKResponse,\n} from '@wix/sdk-runtime/rename-all-nested-keys';\nimport { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport * as ambassadorWixDataExtensionsV1DataExtensionSchema from './data-extensions-v1-data-extension-schema-schemas.http.js';\n\n/** A Data Extension Schema is the [JSON schema](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/the-json-schema) within a [schema plugin extension](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) defining `extendedFields` that are added to a Wix API's service object. */\nexport interface DataExtensionSchema {\n /**\n * Schema ID.\n * @format GUID\n * @readonly\n * @immutable\n */\n _id?: string | null;\n /**\n * FQDN of the entity this schema extends.\n * @immutable\n * @maxLength 255\n */\n fqdn?: string | null;\n /**\n * Namespace for this schema. For example, an app creating schemas might use their app name as a namespace.\n * When a site owner creates a user-defined schema, the namespace is: `_user_fields`.\n * @immutable\n * @maxLength 164\n */\n namespace?: string | null;\n /**\n * Schema definition in [JSON schema format](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/the-json-schema) with the following [vocab](https://docs.json-everything.net/schema/vocabs/) extension:\n * ```\n * {\n * \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n * \"$id\": \"https://wixapis.com/v1/json-schema/extensions\",\n * \"$vocabulary\": {\n * \"https://wixapis.com/v1/json-schema/extensions/vocab/data-extensions\": true\n * },\n * \"$dynamicAnchor\": \"meta\",\n * \"title\": \"Wix' data-extensions vocabulary meta schema\",\n * \"type\": [\n * \"object\",\n * \"boolean\"\n * ],\n * \"properties\": {\n * \"x-wix-permissions\": {\n * \"type\": \"object\",\n * \"description\": \"list of identity types that are allowed reading schema properties\",\n * \"properties\": {\n * \"read\": {\n * \"type\": \"array\",\n * \"items\": {\n * \"type\": \"string\",\n * \"enum\": [\n * \"apps\",\n * \"owning-app\",\n * \"users\",\n * \"users-of-users\"\n * ]\n * }\n * },\n * \"write\": {\n * \"type\": \"array\",\n * \"items\": {\n * \"type\": \"string\",\n * \"enum\": [\n * \"apps\",\n * \"owning-app\",\n * \"users\",\n * \"users-of-users\"\n * ]\n * }\n * }\n * }\n * },\n * \"x-wix-display\": {\n * \"type\": \"object\",\n * \"description\": \"field display properties\",\n * \"schema\": {\n * \"properties\": {\n * \"placeholder\": {\n * \"type\": \"string\",\n * \"maxLength\": 255,\n * \"description\": \"placeholder text for input fields\"\n * },\n * \"label\": {\n * \"type\": \"string\",\n * \"maxLength\": 255,\n * \"description\": \"label of the input fields\"\n * },\n * \"hint\": {\n * \"type\": \"string\",\n * \"maxLength\": 255,\n * \"description\": \"a short explanation that appears next to the input field\"\n * }\n * }\n * }\n * }\n * }\n * }\n * ```\n */\n jsonSchema?: Record<string, any> | null;\n /**\n * Date and time the schema was last updated.\n * @readonly\n */\n _updatedDate?: Date | null;\n /**\n * Date and time the schema was created.\n * @readonly\n */\n _createdDate?: Date | null;\n /**\n * Revision number, which increments by 1 each time the schema is updated. To prevent conflicting changes, the existing revision must be used when updating a schema.\n * @readonly\n */\n revision?: string | null;\n /**\n * Maximum allowed schema size in bytes.\n * @readonly\n */\n maxLimitBytes?: number | null;\n /**\n * Current schema size in bytes.\n * @readonly\n */\n currentSizeBytes?: number | null;\n /**\n * Name of the specific entity field this schema is extending, or `\"ROOT\"` for extensions for the entire entity. Default: `\"ROOT\"`.\n * @internal\n * @immutable\n * @maxLength 20\n */\n extensionPoint?: string;\n}\n\nexport enum DataExtensionSchemaState {}\n\n/** @enumType */\nexport type DataExtensionSchemaStateWithLiterals = DataExtensionSchemaState;\n\nexport interface ReindexEvent {\n /**\n * fqdn of the dext schema that needs reindexing\n * @maxLength 255\n */\n fqdn?: string;\n /**\n * List of fields that needs reindexing\n * @maxSize 100\n */\n fields?: ReindexField[];\n}\n\nexport interface ReindexField {\n /**\n * path of field that needs reindexing\n * @maxLength 2000\n */\n fieldPath?: string;\n /** only reindex records updated after this timestamp */\n reindexSince?: Date | null;\n}\n\nexport interface CreateDataExtensionSchemaRequest {\n /** Schema to create. */\n dataExtensionSchema: DataExtensionSchema;\n}\n\nexport interface CreateDataExtensionSchemaResponse {\n /** Created schema. */\n dataExtensionSchema?: DataExtensionSchema;\n}\n\nexport interface UpdateDataExtensionSchemaRequest {\n /** Schema to update. */\n dataExtensionSchema: DataExtensionSchema;\n}\n\nexport interface UpdateDataExtensionSchemaResponse {\n /** Updated schema. */\n dataExtensionSchema?: DataExtensionSchema;\n}\n\nexport interface ListDataExtensionSchemasRequest {\n /**\n * [Fully qualified domain name](https://dev.wix.com/docs/rest/articles/getting-started/fqdns).\n * @maxLength 255\n */\n fqdn: string;\n /**\n * Namespaces within the given entity.\n * @maxSize 100\n * @maxLength 164\n */\n namespaces?: string[];\n /**\n * Additional fields that are hidden by default. For example, fields with `\"x-wix-archived\": true`.\n * @maxSize 5\n */\n fields?: RequestedFieldWithLiterals[];\n /**\n * Extension points within the given entity.\n * @maxSize 20\n * @maxLength 10\n */\n extensionPoints?: string[];\n}\n\nexport enum RequestedField {\n /** Undefined requested field. */\n UNKNOWN_REQUESTED_FIELD = 'UNKNOWN_REQUESTED_FIELD',\n /** Returns `x-wix-archived` fields in `DataExtensionSchema.json_schema`. */\n ARCHIVED = 'ARCHIVED',\n}\n\n/** @enumType */\nexport type RequestedFieldWithLiterals =\n | RequestedField\n | 'UNKNOWN_REQUESTED_FIELD'\n | 'ARCHIVED';\n\nexport interface ListDataExtensionSchemasResponse {\n /** Requested schemas. */\n dataExtensionSchemas?: DataExtensionSchema[];\n}\n\nexport interface DeleteDemoDataExtensionSchemaRequest {\n /**\n * Schema ID.\n * @format GUID\n */\n dataExtensionSchemaId?: string;\n}\n\nexport interface DeleteDemoDataExtensionSchemaResponse {}\n\nexport interface DeleteGlobalExtensionSchemaRequest {\n /**\n * fqdn\n * @maxLength 255\n */\n fqdn?: string;\n /**\n * namespace\n * @maxLength 164\n */\n namespace?: string;\n /**\n * extension point\n * @maxLength 20\n */\n extensionPoint?: string;\n /** state */\n state?: DataExtensionSchemaStateWithLiterals;\n}\n\nexport interface DeleteGlobalExtensionSchemaResponse {}\n\nexport interface DeleteByWhiteListedMetaSiteRequest {\n /**\n * Meta site id\n * @format GUID\n */\n metaSiteId: string;\n}\n\nexport interface DeleteByWhiteListedMetaSiteResponse {\n /** has more */\n hasMore?: boolean;\n}\n\nexport interface DomainEvent extends DomainEventBodyOneOf {\n createdEvent?: EntityCreatedEvent;\n updatedEvent?: EntityUpdatedEvent;\n deletedEvent?: EntityDeletedEvent;\n actionEvent?: ActionEvent;\n /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n _id?: string;\n /**\n * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n */\n entityFqdn?: string;\n /**\n * Event action name, placed at the top level to make it easier for users to dispatch messages.\n * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n */\n slug?: string;\n /** ID of the entity associated with the event. */\n entityId?: string;\n /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n eventTime?: Date | null;\n /**\n * Whether the event was triggered as a result of a privacy regulation application\n * (for example, GDPR).\n */\n triggeredByAnonymizeRequest?: boolean | null;\n /** If present, indicates the action that triggered the event. */\n originatedFrom?: string | null;\n /**\n * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.\n */\n entityEventSequence?: string | null;\n}\n\n/** @oneof */\nexport interface DomainEventBodyOneOf {\n createdEvent?: EntityCreatedEvent;\n updatedEvent?: EntityUpdatedEvent;\n deletedEvent?: EntityDeletedEvent;\n actionEvent?: ActionEvent;\n}\n\nexport interface EntityCreatedEvent {\n entity?: string;\n}\n\nexport interface RestoreInfo {\n deletedDate?: Date | null;\n}\n\nexport interface EntityUpdatedEvent {\n /**\n * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.\n * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.\n * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.\n */\n currentEntity?: string;\n}\n\nexport interface EntityDeletedEvent {\n /** Entity that was deleted. */\n deletedEntity?: string | null;\n}\n\nexport interface ActionEvent {\n body?: string;\n}\n\nexport interface Empty {}\n\nexport interface AppRuntimeDataEvent {\n appRuntimeData?: AppRuntimeDataCacheEntity;\n isDraft?: boolean;\n}\n\nexport interface AppRuntimeDataCacheEntity {\n appData?: AppData;\n translatedDataMap?: Record<string, TranslatedData>;\n}\n\nexport interface RuntimeComponentCacheEntity\n extends RuntimeComponentCacheEntityComponentOneOf {\n componentEntity?: RuntimeComponentCacheEntityComponent;\n componentExperimentEntity?: RuntimeComponentCacheEntityExperiment;\n}\n\n/** @oneof */\nexport interface RuntimeComponentCacheEntityComponentOneOf {\n componentEntity?: RuntimeComponentCacheEntityComponent;\n componentExperimentEntity?: RuntimeComponentCacheEntityExperiment;\n}\n\nexport interface RuntimeComponentCacheEntityComponent {\n /**\n * The ID of the component\n * @format GUID\n */\n componentId?: string;\n /** The version of the component */\n version?: number;\n /**\n * Component name\n * @maxLength 200\n */\n name?: string | null;\n /** the type of the component */\n type?: ComponentTypeWithLiterals;\n /** the data of the component */\n data?: ComponentData;\n /** The external id of the component */\n externalId?: string | null;\n /** The additional translated keys of the component */\n additionalTranslatedKeys?: Record<string, string>;\n /** Partial update patch value */\n partialUpdatePatch?: string | null;\n /**\n * The external version of the component, if exists. Related to the component's external_id.\n * @maxLength 64\n */\n externalVersion?: string | null;\n}\n\n/** Component type */\nexport enum ComponentType {\n NONE = 'NONE',\n STUDIO = 'STUDIO',\n PLATFORM = 'PLATFORM',\n WORKER = 'WORKER',\n DASHBOARD = 'DASHBOARD',\n WIDGET = 'WIDGET',\n PAGE = 'PAGE',\n DASHBOARD_PLATFORM = 'DASHBOARD_PLATFORM',\n STUDIO_WIDGET = 'STUDIO_WIDGET',\n EMBEDDED_SCRIPT = 'EMBEDDED_SCRIPT',\n EXTENSION = 'EXTENSION',\n SNIPPET_SOLUTION = 'SNIPPET_SOLUTION',\n DATA_COMPONENT = 'DATA_COMPONENT',\n WEB = 'WEB',\n DC_CONFIG = 'DC_CONFIG',\n WIDGET_OUT_OF_IFRAME = 'WIDGET_OUT_OF_IFRAME',\n PAGE_OUT_OF_IFRAME = 'PAGE_OUT_OF_IFRAME',\n STATIC_FILE = 'STATIC_FILE',\n APP_CONFIG = 'APP_CONFIG',\n MULTIPLE_DASHBOARDS = 'MULTIPLE_DASHBOARDS',\n PAYMENTS_GATEWAY = 'PAYMENTS_GATEWAY',\n CODE_PACKAGE = 'CODE_PACKAGE',\n AUTOMATION_TRIGGER = 'AUTOMATION_TRIGGER',\n INVOICES_ACTIONS = 'INVOICES_ACTIONS',\n DASHBOARD_APPLICATION = 'DASHBOARD_APPLICATION',\n CONTACT_LABELS = 'CONTACT_LABELS',\n WIDGET_PLUGIN = 'WIDGET_PLUGIN',\n CROSS_SELL = 'CROSS_SELL',\n LOCAL_DELIVERY = 'LOCAL_DELIVERY',\n PAYMENT_PROVIDER = 'PAYMENT_PROVIDER',\n ECOM_MEMBERSHIPS = 'ECOM_MEMBERSHIPS',\n ECOM_LINE_ITEMS_ENRICHER = 'ECOM_LINE_ITEMS_ENRICHER',\n ECOM_SHIPPING_RATES = 'ECOM_SHIPPING_RATES',\n SHIPPING_LABEL_CARRIER = 'SHIPPING_LABEL_CARRIER',\n RESTAURANTS_POS = 'RESTAURANTS_POS',\n FICTIONAL_SHIPPING_PROVIDER = 'FICTIONAL_SHIPPING_PROVIDER',\n ALERT_ENRICHER = 'ALERT_ENRICHER',\n DATA_EXTENSIONS = 'DATA_EXTENSIONS',\n GENERIC_HOOKS = 'GENERIC_HOOKS',\n AUTOMATIONS_ACTION_PROVIDER = 'AUTOMATIONS_ACTION_PROVIDER',\n ECOM_CATALOG = 'ECOM_CATALOG',\n BACK_OFFICE_EXTENSION_CONTAINER = 'BACK_OFFICE_EXTENSION_CONTAINER',\n BACK_OFFICE_EXTENSION = 'BACK_OFFICE_EXTENSION',\n AUTOMATIONS_TRIGGER_PROVIDER = 'AUTOMATIONS_TRIGGER_PROVIDER',\n IDENTITY_PRE_REGISTRATION = 'IDENTITY_PRE_REGISTRATION',\n PREMIUM_PRODUCTS_PATHS = 'PREMIUM_PRODUCTS_PATHS',\n ECOM_CUSTOM_SCOPE = 'ECOM_CUSTOM_SCOPE',\n GIFT_CARDS_PROVIDER = 'GIFT_CARDS_PROVIDER',\n DEALER_EXTERNAL_FILTER_PROVIDER = 'DEALER_EXTERNAL_FILTER_PROVIDER',\n ECOM_DROPSHIPPING_PROVIDER = 'ECOM_DROPSHIPPING_PROVIDER',\n INVOICES_PROVIDER = 'INVOICES_PROVIDER',\n SEO_KEYWORDS_SUGGESTIONS = 'SEO_KEYWORDS_SUGGESTIONS',\n ECOM_DISCOUNTS_TRIGGER = 'ECOM_DISCOUNTS_TRIGGER',\n MULTILINGUAL_CONTENT_PROVIDER = 'MULTILINGUAL_CONTENT_PROVIDER',\n APPLICATION_AUTOMATION = 'APPLICATION_AUTOMATION',\n BACK_OFFICE_SIDEBAR_CATEGORY = 'BACK_OFFICE_SIDEBAR_CATEGORY',\n BACK_OFFICE_PAGE = 'BACK_OFFICE_PAGE',\n ECOM_ADDITIONAL_FEES = 'ECOM_ADDITIONAL_FEES',\n PING_USER_NOTIFICATION = 'PING_USER_NOTIFICATION',\n ECOM_RECOMMENDATIONS_PROVIDER = 'ECOM_RECOMMENDATIONS_PROVIDER',\n BOOKINGS_PRICING_PROVIDER = 'BOOKINGS_PRICING_PROVIDER',\n IDENTITY_AUTHENTICATOR = 'IDENTITY_AUTHENTICATOR',\n IDENTITY_IDP_CONNECTOR = 'IDENTITY_IDP_CONNECTOR',\n ITEMS_SELECTION_PROVIDER = 'ITEMS_SELECTION_PROVIDER',\n PORTFOLIO_SYNCED_PROJECTS_PROVIDER = 'PORTFOLIO_SYNCED_PROJECTS_PROVIDER',\n COMMUNICATION_CHANNEL = 'COMMUNICATION_CHANNEL',\n IDENTITY_POST_LOGIN = 'IDENTITY_POST_LOGIN',\n BACK_OFFICE_WIDGET = 'BACK_OFFICE_WIDGET',\n SOCIAL_MARKETING_DESIGN = 'SOCIAL_MARKETING_DESIGN',\n FORMS_SUBMISSIONS_PROVIDER = 'FORMS_SUBMISSIONS_PROVIDER',\n WIX_OFFERING = 'WIX_OFFERING',\n DEV_CENTER_TESTING_COMPONENT = 'DEV_CENTER_TESTING_COMPONENT',\n COMPONENTS_VALIDATOR_PROVIDER = 'COMPONENTS_VALIDATOR_PROVIDER',\n COMPONENTS_TRANSLATIONS_ADDITIONAL_FIELDS_PROVIDER = 'COMPONENTS_TRANSLATIONS_ADDITIONAL_FIELDS_PROVIDER',\n FORMS_SCHEMA_PROVIDER = 'FORMS_SCHEMA_PROVIDER',\n BOOKINGS_EXTERNAL_CALENDAR_PROVIDER = 'BOOKINGS_EXTERNAL_CALENDAR_PROVIDER',\n ECOM_DEFAULT_TAXATION_CATEGORY = 'ECOM_DEFAULT_TAXATION_CATEGORY',\n VIEWER_DYNAMIC_SITE_STRUCTURE_PROVIDER = 'VIEWER_DYNAMIC_SITE_STRUCTURE_PROVIDER',\n PING_UOU_NOTIFICATION = 'PING_UOU_NOTIFICATION',\n HEADLESS_OAUTH = 'HEADLESS_OAUTH',\n ECOM_TAX_CALCULATOR_SPI = 'ECOM_TAX_CALCULATOR_SPI',\n COMMENTS_MODERATION_PROVIDER = 'COMMENTS_MODERATION_PROVIDER',\n GRID_APP_FILES_TRANSFORMER = 'GRID_APP_FILES_TRANSFORMER',\n BENEFIT_PROGRAMS_POLICY_PROVIDER = 'BENEFIT_PROGRAMS_POLICY_PROVIDER',\n PREMIUM_CUSTOM_CHARGES = 'PREMIUM_CUSTOM_CHARGES',\n ECOM_VALIDATIONS = 'ECOM_VALIDATIONS',\n COMPONENT_REFERENCE_DATA_PROVIDER = 'COMPONENT_REFERENCE_DATA_PROVIDER',\n WIX_REVIEWS_PRODUCT_CATALOG = 'WIX_REVIEWS_PRODUCT_CATALOG',\n SOCIAL_MARKETING_DESIGNS_PROVIDER = 'SOCIAL_MARKETING_DESIGNS_PROVIDER',\n GOOGLE_BUSINESS_PROFILE_FEATURE_PROVIDER = 'GOOGLE_BUSINESS_PROFILE_FEATURE_PROVIDER',\n COMMENTS_FILTER_PROVIDER = 'COMMENTS_FILTER_PROVIDER',\n BILLING_TAX_ID_VALIDATOR = 'BILLING_TAX_ID_VALIDATOR',\n PING_SETTINGS_GROUP = 'PING_SETTINGS_GROUP',\n FORMS_SPAM_SUBMISSIONS_PROVIDER = 'FORMS_SPAM_SUBMISSIONS_PROVIDER',\n EDITOR_ADDON = 'EDITOR_ADDON',\n EXTERNAL_DATABASE_PROVIDER = 'EXTERNAL_DATABASE_PROVIDER',\n ECOM_PAYMENT_SETTINGS = 'ECOM_PAYMENT_SETTINGS',\n NOTIFICATION_TOPIC = 'NOTIFICATION_TOPIC',\n NOTIFICATION_PREFERENCES_FILTER_PROVIDER = 'NOTIFICATION_PREFERENCES_FILTER_PROVIDER',\n BOOKINGS_RESOURCE_TYPES_PROVIDER = 'BOOKINGS_RESOURCE_TYPES_PROVIDER',\n PRICING_PLANS_FORM_CONFIGURATION = 'PRICING_PLANS_FORM_CONFIGURATION',\n USER_NOTIFICATION = 'USER_NOTIFICATION',\n CONTACT_NOTIFICATION = 'CONTACT_NOTIFICATION',\n UNIFIED_PAGE = 'UNIFIED_PAGE',\n AVAILABILITY_TIME_SLOTS_CONFIGURATION_PROVIDER = 'AVAILABILITY_TIME_SLOTS_CONFIGURATION_PROVIDER',\n PROPOSAL_EDITOR_PROVIDER = 'PROPOSAL_EDITOR_PROVIDER',\n CUSTOM_TABLE_RESERVATIONS_PROVIDER = 'CUSTOM_TABLE_RESERVATIONS_PROVIDER',\n COMMENTS_CONTEXT_PROVIDER = 'COMMENTS_CONTEXT_PROVIDER',\n FORMS_SPAM_SUBMISSION_REPORTS_PROVIDER = 'FORMS_SPAM_SUBMISSION_REPORTS_PROVIDER',\n AUTOMATIONS_VELO_ACTION_PROVIDER = 'AUTOMATIONS_VELO_ACTION_PROVIDER',\n CALENDAR_EVENT_TYPE_PROVIDER = 'CALENDAR_EVENT_TYPE_PROVIDER',\n /** Reserved - previously was `SERVICE_AVAILABILITY_POLICY_PROVIDER` */\n RESERVED = 'RESERVED',\n SMS_ACTION_MESSAGE = 'SMS_ACTION_MESSAGE',\n BOOKING_POLICY_PROVIDER = 'BOOKING_POLICY_PROVIDER',\n MULTI_SERVICE_BOOKING_POLICY_PROVIDER = 'MULTI_SERVICE_BOOKING_POLICY_PROVIDER',\n AI_ASSISTANT = 'AI_ASSISTANT',\n FORMS_SUBMISSIONS_EXTENSION_PROVIDER = 'FORMS_SUBMISSIONS_EXTENSION_PROVIDER',\n MULTILINGUAL_TRANSLATION_SCHEMA = 'MULTILINGUAL_TRANSLATION_SCHEMA',\n TAX_CALCULATION_PROVIDER = 'TAX_CALCULATION_PROVIDER',\n TAX_GROUPS_PROVIDER = 'TAX_GROUPS_PROVIDER',\n BACK_OFFICE_MODAL = 'BACK_OFFICE_MODAL',\n DEPLOYMENT_PIPELINE_PROVIDER = 'DEPLOYMENT_PIPELINE_PROVIDER',\n CUSTOM_ELEMENT_WIDGET = 'CUSTOM_ELEMENT_WIDGET',\n BACK_OFFICE_EXTENSION_WIDGET = 'BACK_OFFICE_EXTENSION_WIDGET',\n BACK_OFFICE_EXTENSION_MENU_ITEM = 'BACK_OFFICE_EXTENSION_MENU_ITEM',\n FORM_TEMPLATE = 'FORM_TEMPLATE',\n NOTIFICATION_CONTENT = 'NOTIFICATION_CONTENT',\n BROADCAST_LIST = 'BROADCAST_LIST',\n PARTNERS_PAYOUTS = 'PARTNERS_PAYOUTS',\n WIX_REVIEWS_ENTITY_CATALOG = 'WIX_REVIEWS_ENTITY_CATALOG',\n VELO_PUBLISH_PIPELINE_TASK_PROVIDER = 'VELO_PUBLISH_PIPELINE_TASK_PROVIDER',\n FUNCTIONS_SHOP_PRICE_PROVIDER = 'FUNCTIONS_SHOP_PRICE_PROVIDER',\n FUNCTION = 'FUNCTION',\n ECOM_CHECKOUT_CONTENT = 'ECOM_CHECKOUT_CONTENT',\n COMMUNICATION_CHANNEL_PROVIDER = 'COMMUNICATION_CHANNEL_PROVIDER',\n WEBHOOK = 'WEBHOOK',\n TOPOLOGY = 'TOPOLOGY',\n LOYALTY_CUSTOM_REWARDS = 'LOYALTY_CUSTOM_REWARDS',\n FUNCTION_RECIPE = 'FUNCTION_RECIPE',\n BACK_OFFICE_EXTERNAL_URL = 'BACK_OFFICE_EXTERNAL_URL',\n IDENTITY_FACTOR = 'IDENTITY_FACTOR',\n ECOM_DISCOUNTS = 'ECOM_DISCOUNTS',\n VELO_CUSTOM_CSS = 'VELO_CUSTOM_CSS',\n DEALER_ADAPTIVE_COMPONENT_PROVIDER = 'DEALER_ADAPTIVE_COMPONENT_PROVIDER',\n AI_ASSISTANT_ACTION = 'AI_ASSISTANT_ACTION',\n ECOM_INVENTORY = 'ECOM_INVENTORY',\n MONITORING = 'MONITORING',\n PAPI_PROVIDER = 'PAPI_PROVIDER',\n UNIFIED_LIGHTBOX = 'UNIFIED_LIGHTBOX',\n FORMS_EXTENSION_PROVIDER = 'FORMS_EXTENSION_PROVIDER',\n MULTILINGUAL_TRANSLATION_SCHEMA_GROUP = 'MULTILINGUAL_TRANSLATION_SCHEMA_GROUP',\n PANEL = 'PANEL',\n PREMIUM_PURCHASE_VALIDATIONS = 'PREMIUM_PURCHASE_VALIDATIONS',\n BROWSER_STORAGE = 'BROWSER_STORAGE',\n SDK_DEFINITION = 'SDK_DEFINITION',\n SITE_WIDGET_SLOT = 'SITE_WIDGET_SLOT',\n CALENDAR_EVENT_VALIDATION_PROVIDER = 'CALENDAR_EVENT_VALIDATION_PROVIDER',\n CLIENT_SIDE_SERVICE = 'CLIENT_SIDE_SERVICE',\n BILLING_SETTINGS = 'BILLING_SETTINGS',\n PATTERNS_WIZARD = 'PATTERNS_WIZARD',\n APPLICATION_PROFILE = 'APPLICATION_PROFILE',\n TEXT_TO_SPEECH_ACTION_MESSAGE = 'TEXT_TO_SPEECH_ACTION_MESSAGE',\n AUDIENCE_PROVIDER = 'AUDIENCE_PROVIDER',\n PRICING_PLANS_PRICE = 'PRICING_PLANS_PRICE',\n PRICING_PLAN_START_DATE_LIMITS = 'PRICING_PLAN_START_DATE_LIMITS',\n PRICING_PLAN_START_DATE_RULES = 'PRICING_PLAN_START_DATE_RULES',\n EVENTS_TICKET_RESERVATIONS = 'EVENTS_TICKET_RESERVATIONS',\n PAYMENTS_DISPUTE_SERVICE_PLUGIN = 'PAYMENTS_DISPUTE_SERVICE_PLUGIN',\n PRICING_PLANS_FEES = 'PRICING_PLANS_FEES',\n EDITOR_REACT_COMPONENT = 'EDITOR_REACT_COMPONENT',\n SUPPLIERS_HUB_MARKETPLACE = 'SUPPLIERS_HUB_MARKETPLACE',\n FORM_SCHEMA_DYNAMIC_VALUES = 'FORM_SCHEMA_DYNAMIC_VALUES',\n BLOG_PAYWALL_PROVIDER = 'BLOG_PAYWALL_PROVIDER',\n LOYALTY_CUSTOM_REWARDS_V2 = 'LOYALTY_CUSTOM_REWARDS_V2',\n STORES_PRODUCT_RESTRICTIONS = 'STORES_PRODUCT_RESTRICTIONS',\n FORM_SUBMISSION_MODERATION = 'FORM_SUBMISSION_MODERATION',\n EVENTS_EVENT_BADGES = 'EVENTS_EVENT_BADGES',\n BILLING_OPERATION = 'BILLING_OPERATION',\n BACK_OFFICE_CUSTOMIZATION = 'BACK_OFFICE_CUSTOMIZATION',\n COMPONENT_ENRICHER_PROVIDER = 'COMPONENT_ENRICHER_PROVIDER',\n BACK_OFFICE_RESTRICTED_CUSTOMIZATION = 'BACK_OFFICE_RESTRICTED_CUSTOMIZATION',\n EDITOR_APP_PREVIEWS_POC = 'EDITOR_APP_PREVIEWS_POC',\n LEGENDS_PERSONA_CONFIGURATION = 'LEGENDS_PERSONA_CONFIGURATION',\n WIX_HOSTING_APP_DEPLOYMENT_PROVIDER = 'WIX_HOSTING_APP_DEPLOYMENT_PROVIDER',\n BACKEND_WORKER = 'BACKEND_WORKER',\n EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER = 'EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER',\n WIX_HOSTING_APP_ENVIRONMENT_PROVIDER = 'WIX_HOSTING_APP_ENVIRONMENT_PROVIDER',\n SDK_EXPORTS = 'SDK_EXPORTS',\n VIEWER_SERVICE = 'VIEWER_SERVICE',\n WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN = 'WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN',\n CONTACTS_SEGMENTS_V2_FILTER_PROVIDER = 'CONTACTS_SEGMENTS_V2_FILTER_PROVIDER',\n ANALYTICS_PRODUCT_CATALOG = 'ANALYTICS_PRODUCT_CATALOG',\n SITE_MIGRATION = 'SITE_MIGRATION',\n RESTAURANTS_POS_PROVIDER_SETTINGS_SERVICE_PLUGIN = 'RESTAURANTS_POS_PROVIDER_SETTINGS_SERVICE_PLUGIN',\n WIX_VIBE_CODING_INSTRUCTIONS = 'WIX_VIBE_CODING_INSTRUCTIONS',\n TAX_EXEMPT_GROUPS_PROVIDER = 'TAX_EXEMPT_GROUPS_PROVIDER',\n BOOKING_AUTOMATIONS_CONFIGURATION = 'BOOKING_AUTOMATIONS_CONFIGURATION',\n WIX_VIBE_COMPONENT = 'WIX_VIBE_COMPONENT',\n WIXEL = 'WIXEL',\n STAFF_SORTING_PROVIDER = 'STAFF_SORTING_PROVIDER',\n FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER = 'FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER',\n FUNCTIONS_ASSISTANT_TOOLS = 'FUNCTIONS_ASSISTANT_TOOLS',\n SITE_MAP_INFO_PROVIDER = 'SITE_MAP_INFO_PROVIDER',\n WIX_AI_GATEWAY_CALLBACK = 'WIX_AI_GATEWAY_CALLBACK',\n URL_MAPPER_PROVIDER = 'URL_MAPPER_PROVIDER',\n PROVIDER_SUPPRESSION_SERVICE_PLUGIN = 'PROVIDER_SUPPRESSION_SERVICE_PLUGIN',\n ECOM_FORMS = 'ECOM_FORMS',\n EDITOR_CONTEXT_PROVIDER = 'EDITOR_CONTEXT_PROVIDER',\n EDITOR_FUNCTION_LIBRARY = 'EDITOR_FUNCTION_LIBRARY',\n BOOKINGS_PLATFORM_CONFIGURATION = 'BOOKINGS_PLATFORM_CONFIGURATION',\n}\n\n/** @enumType */\nexport type ComponentTypeWithLiterals =\n | ComponentType\n | 'NONE'\n | 'STUDIO'\n | 'PLATFORM'\n | 'WORKER'\n | 'DASHBOARD'\n | 'WIDGET'\n | 'PAGE'\n | 'DASHBOARD_PLATFORM'\n | 'STUDIO_WIDGET'\n | 'EMBEDDED_SCRIPT'\n | 'EXTENSION'\n | 'SNIPPET_SOLUTION'\n | 'DATA_COMPONENT'\n | 'WEB'\n | 'DC_CONFIG'\n | 'WIDGET_OUT_OF_IFRAME'\n | 'PAGE_OUT_OF_IFRAME'\n | 'STATIC_FILE'\n | 'APP_CONFIG'\n | 'MULTIPLE_DASHBOARDS'\n | 'PAYMENTS_GATEWAY'\n | 'CODE_PACKAGE'\n | 'AUTOMATION_TRIGGER'\n | 'INVOICES_ACTIONS'\n | 'DASHBOARD_APPLICATION'\n | 'CONTACT_LABELS'\n | 'WIDGET_PLUGIN'\n | 'CROSS_SELL'\n | 'LOCAL_DELIVERY'\n | 'PAYMENT_PROVIDER'\n | 'ECOM_MEMBERSHIPS'\n | 'ECOM_LINE_ITEMS_ENRICHER'\n | 'ECOM_SHIPPING_RATES'\n | 'SHIPPING_LABEL_CARRIER'\n | 'RESTAURANTS_POS'\n | 'FICTIONAL_SHIPPING_PROVIDER'\n | 'ALERT_ENRICHER'\n | 'DATA_EXTENSIONS'\n | 'GENERIC_HOOKS'\n | 'AUTOMATIONS_ACTION_PROVIDER'\n | 'ECOM_CATALOG'\n | 'BACK_OFFICE_EXTENSION_CONTAINER'\n | 'BACK_OFFICE_EXTENSION'\n | 'AUTOMATIONS_TRIGGER_PROVIDER'\n | 'IDENTITY_PRE_REGISTRATION'\n | 'PREMIUM_PRODUCTS_PATHS'\n | 'ECOM_CUSTOM_SCOPE'\n | 'GIFT_CARDS_PROVIDER'\n | 'DEALER_EXTERNAL_FILTER_PROVIDER'\n | 'ECOM_DROPSHIPPING_PROVIDER'\n | 'INVOICES_PROVIDER'\n | 'SEO_KEYWORDS_SUGGESTIONS'\n | 'ECOM_DISCOUNTS_TRIGGER'\n | 'MULTILINGUAL_CONTENT_PROVIDER'\n | 'APPLICATION_AUTOMATION'\n | 'BACK_OFFICE_SIDEBAR_CATEGORY'\n | 'BACK_OFFICE_PAGE'\n | 'ECOM_ADDITIONAL_FEES'\n | 'PING_USER_NOTIFICATION'\n | 'ECOM_RECOMMENDATIONS_PROVIDER'\n | 'BOOKINGS_PRICING_PROVIDER'\n | 'IDENTITY_AUTHENTICATOR'\n | 'IDENTITY_IDP_CONNECTOR'\n | 'ITEMS_SELECTION_PROVIDER'\n | 'PORTFOLIO_SYNCED_PROJECTS_PROVIDER'\n | 'COMMUNICATION_CHANNEL'\n | 'IDENTITY_POST_LOGIN'\n | 'BACK_OFFICE_WIDGET'\n | 'SOCIAL_MARKETING_DESIGN'\n | 'FORMS_SUBMISSIONS_PROVIDER'\n | 'WIX_OFFERING'\n | 'DEV_CENTER_TESTING_COMPONENT'\n | 'COMPONENTS_VALIDATOR_PROVIDER'\n | 'COMPONENTS_TRANSLATIONS_ADDITIONAL_FIELDS_PROVIDER'\n | 'FORMS_SCHEMA_PROVIDER'\n | 'BOOKINGS_EXTERNAL_CALENDAR_PROVIDER'\n | 'ECOM_DEFAULT_TAXATION_CATEGORY'\n | 'VIEWER_DYNAMIC_SITE_STRUCTURE_PROVIDER'\n | 'PING_UOU_NOTIFICATION'\n | 'HEADLESS_OAUTH'\n | 'ECOM_TAX_CALCULATOR_SPI'\n | 'COMMENTS_MODERATION_PROVIDER'\n | 'GRID_APP_FILES_TRANSFORMER'\n | 'BENEFIT_PROGRAMS_POLICY_PROVIDER'\n | 'PREMIUM_CUSTOM_CHARGES'\n | 'ECOM_VALIDATIONS'\n | 'COMPONENT_REFERENCE_DATA_PROVIDER'\n | 'WIX_REVIEWS_PRODUCT_CATALOG'\n | 'SOCIAL_MARKETING_DESIGNS_PROVIDER'\n | 'GOOGLE_BUSINESS_PROFILE_FEATURE_PROVIDER'\n | 'COMMENTS_FILTER_PROVIDER'\n | 'BILLING_TAX_ID_VALIDATOR'\n | 'PING_SETTINGS_GROUP'\n | 'FORMS_SPAM_SUBMISSIONS_PROVIDER'\n | 'EDITOR_ADDON'\n | 'EXTERNAL_DATABASE_PROVIDER'\n | 'ECOM_PAYMENT_SETTINGS'\n | 'NOTIFICATION_TOPIC'\n | 'NOTIFICATION_PREFERENCES_FILTER_PROVIDER'\n | 'BOOKINGS_RESOURCE_TYPES_PROVIDER'\n | 'PRICING_PLANS_FORM_CONFIGURATION'\n | 'USER_NOTIFICATION'\n | 'CONTACT_NOTIFICATION'\n | 'UNIFIED_PAGE'\n | 'AVAILABILITY_TIME_SLOTS_CONFIGURATION_PROVIDER'\n | 'PROPOSAL_EDITOR_PROVIDER'\n | 'CUSTOM_TABLE_RESERVATIONS_PROVIDER'\n | 'COMMENTS_CONTEXT_PROVIDER'\n | 'FORMS_SPAM_SUBMISSION_REPORTS_PROVIDER'\n | 'AUTOMATIONS_VELO_ACTION_PROVIDER'\n | 'CALENDAR_EVENT_TYPE_PROVIDER'\n | 'RESERVED'\n | 'SMS_ACTION_MESSAGE'\n | 'BOOKING_POLICY_PROVIDER'\n | 'MULTI_SERVICE_BOOKING_POLICY_PROVIDER'\n | 'AI_ASSISTANT'\n | 'FORMS_SUBMISSIONS_EXTENSION_PROVIDER'\n | 'MULTILINGUAL_TRANSLATION_SCHEMA'\n | 'TAX_CALCULATION_PROVIDER'\n | 'TAX_GROUPS_PROVIDER'\n | 'BACK_OFFICE_MODAL'\n | 'DEPLOYMENT_PIPELINE_PROVIDER'\n | 'CUSTOM_ELEMENT_WIDGET'\n | 'BACK_OFFICE_EXTENSION_WIDGET'\n | 'BACK_OFFICE_EXTENSION_MENU_ITEM'\n | 'FORM_TEMPLATE'\n | 'NOTIFICATION_CONTENT'\n | 'BROADCAST_LIST'\n | 'PARTNERS_PAYOUTS'\n | 'WIX_REVIEWS_ENTITY_CATALOG'\n | 'VELO_PUBLISH_PIPELINE_TASK_PROVIDER'\n | 'FUNCTIONS_SHOP_PRICE_PROVIDER'\n | 'FUNCTION'\n | 'ECOM_CHECKOUT_CONTENT'\n | 'COMMUNICATION_CHANNEL_PROVIDER'\n | 'WEBHOOK'\n | 'TOPOLOGY'\n | 'LOYALTY_CUSTOM_REWARDS'\n | 'FUNCTION_RECIPE'\n | 'BACK_OFFICE_EXTERNAL_URL'\n | 'IDENTITY_FACTOR'\n | 'ECOM_DISCOUNTS'\n | 'VELO_CUSTOM_CSS'\n | 'DEALER_ADAPTIVE_COMPONENT_PROVIDER'\n | 'AI_ASSISTANT_ACTION'\n | 'ECOM_INVENTORY'\n | 'MONITORING'\n | 'PAPI_PROVIDER'\n | 'UNIFIED_LIGHTBOX'\n | 'FORMS_EXTENSION_PROVIDER'\n | 'MULTILINGUAL_TRANSLATION_SCHEMA_GROUP'\n | 'PANEL'\n | 'PREMIUM_PURCHASE_VALIDATIONS'\n | 'BROWSER_STORAGE'\n | 'SDK_DEFINITION'\n | 'SITE_WIDGET_SLOT'\n | 'CALENDAR_EVENT_VALIDATION_PROVIDER'\n | 'CLIENT_SIDE_SERVICE'\n | 'BILLING_SETTINGS'\n | 'PATTERNS_WIZARD'\n | 'APPLICATION_PROFILE'\n | 'TEXT_TO_SPEECH_ACTION_MESSAGE'\n | 'AUDIENCE_PROVIDER'\n | 'PRICING_PLANS_PRICE'\n | 'PRICING_PLAN_START_DATE_LIMITS'\n | 'PRICING_PLAN_START_DATE_RULES'\n | 'EVENTS_TICKET_RESERVATIONS'\n | 'PAYMENTS_DISPUTE_SERVICE_PLUGIN'\n | 'PRICING_PLANS_FEES'\n | 'EDITOR_REACT_COMPONENT'\n | 'SUPPLIERS_HUB_MARKETPLACE'\n | 'FORM_SCHEMA_DYNAMIC_VALUES'\n | 'BLOG_PAYWALL_PROVIDER'\n | 'LOYALTY_CUSTOM_REWARDS_V2'\n | 'STORES_PRODUCT_RESTRICTIONS'\n | 'FORM_SUBMISSION_MODERATION'\n | 'EVENTS_EVENT_BADGES'\n | 'BILLING_OPERATION'\n | 'BACK_OFFICE_CUSTOMIZATION'\n | 'COMPONENT_ENRICHER_PROVIDER'\n | 'BACK_OFFICE_RESTRICTED_CUSTOMIZATION'\n | 'EDITOR_APP_PREVIEWS_POC'\n | 'LEGENDS_PERSONA_CONFIGURATION'\n | 'WIX_HOSTING_APP_DEPLOYMENT_PROVIDER'\n | 'BACKEND_WORKER'\n | 'EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER'\n | 'WIX_HOSTING_APP_ENVIRONMENT_PROVIDER'\n | 'SDK_EXPORTS'\n | 'VIEWER_SERVICE'\n | 'WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN'\n | 'CONTACTS_SEGMENTS_V2_FILTER_PROVIDER'\n | 'ANALYTICS_PRODUCT_CATALOG'\n | 'SITE_MIGRATION'\n | 'RESTAURANTS_POS_PROVIDER_SETTINGS_SERVICE_PLUGIN'\n | 'WIX_VIBE_CODING_INSTRUCTIONS'\n | 'TAX_EXEMPT_GROUPS_PROVIDER'\n | 'BOOKING_AUTOMATIONS_CONFIGURATION'\n | 'WIX_VIBE_COMPONENT'\n | 'WIXEL'\n | 'STAFF_SORTING_PROVIDER'\n | 'FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER'\n | 'FUNCTIONS_ASSISTANT_TOOLS'\n | 'SITE_MAP_INFO_PROVIDER'\n | 'WIX_AI_GATEWAY_CALLBACK'\n | 'URL_MAPPER_PROVIDER'\n | 'PROVIDER_SUPPRESSION_SERVICE_PLUGIN'\n | 'ECOM_FORMS'\n | 'EDITOR_CONTEXT_PROVIDER'\n | 'EDITOR_FUNCTION_LIBRARY'\n | 'BOOKINGS_PLATFORM_CONFIGURATION';\n\n/** Component data */\nexport interface ComponentData extends ComponentDataDataOneOf {\n /**\n * Create a widget iframe that users can display on their site. We recommend submitting a proposal before using iframes in your app.\n * Learn More: https://devforum.wix.com/en/article/widget-components\n */\n widgetComponentData?: WidgetComponentData;\n /**\n * Display an iframe as a page on a user's site.\n * Learn More: https://dev.wix.com/docs/build-apps/developer-tools/extensions/iframes/guide-to-page-extensions\n */\n pageComponentData?: PageComponentData;\n /**\n * Open an iframe in the Dashboard, or add a link to a page on your platform.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/external-links/about-external-link-extensions\n */\n dashboardComponentData?: DashboardComponentData;\n /**\n * Use an invisible iframe to track activity. It’s added to every page on the site (max. 1).\n * Learn More: https://devforum.wix.com/en/article/worker-components\n */\n workerComponentData?: WorkerComponentData;\n /**\n * Inject a script into a site’s HTML code.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/embedded-scripts/about-embedded-scripts\n */\n embeddedScriptComponentData?: EmbeddedScriptComponentData;\n /**\n * Extend a site’s CMS to store and manage custom data.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/data-collections/about-data-collections-extensions\n */\n dataComponent?: DataComponent;\n /**\n * Display a widget that fits into a predefined slot in a Wix app.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-plugins/about-site-plugin-extensions\n */\n widgetPlugin?: WidgetPluginComponentData;\n /**\n * Provide custom shipping rates to a site's cart and checkout.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/shipping-rates-integration-service-plugin/introduction\n */\n ecomShippingRates?: ShippingRatesConfig;\n /** Extend a Wix entity with custom fields for your app */\n dataExtensions?: DataExtensionsComponentData;\n /**\n * Become a Wix catalog provider and integrate any external repository of sellable items with the Wix eCommerce platform.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/catalog-service-plugin/introduction\n */\n ecomCatalog?: CatalogSPIConfig;\n /**\n * Implement gift card benefits such as balance retrieval, redemption, and voiding transactions.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/gift-cards-service-plugin/introduction\n */\n giftCardsProvider?: GiftCardProviderConfig;\n /**\n * Provide SEO keyword suggestions to site collaborators, report quota usage, and provide a page where users can upgrade their plan.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/marketing/seo-keywords-suggestions-v-1/introduction\n */\n seoKeywordsSuggestions?: SeoKeywordsSuggestionsSPIConfig;\n /**\n * Configure a page for your app that will be embedded in the Wix Dashboard.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-pages/about-dashboard-page-extensions\n */\n backOfficePage?: BackOfficePage;\n /**\n * Provide custom additional fees that are added to a site's cart and checkout.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/additional-fees-service-plugin/introduction\n */\n ecomAdditionalFees?: AdditionalFeesSPIConfig;\n /** Bookings Pricing Provider SPI */\n bookingsPricingProvider?: BookingsPricingProviderConfig;\n /**\n * Apply custom charges to a site based on usage of your app's services.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/app-management/apps/custom-charges-spi/introduction\n */\n premiumCustomCharges?: CustomChargesConfig;\n /**\n * Validate items in a site's cart and checkout based on custom logic.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/wix-e-commerce/validations-integration-spi/introduction\n */\n ecomValidations?: ValidationsSPIConfig;\n /**\n * Build a tool that adds functionality to the Wix editors.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/editor-extensions/about-editor-extensions\n */\n editorAddon?: EditorAddon;\n /** External Database component */\n externalDatabaseProvider?: ExternalDatabaseSpiConfig;\n /**\n * Integrate your service with Wix's payment process to allow merchants to request and use your services on their Wix sites.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/payment-settings-integration-service-plugin/introduction\n */\n ecomPaymentSettings?: PaymentSettingsSPIConfig;\n /**\n * Add a site page that displays selected widgets.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-pages/about-site-page-extensions\n */\n unifiedPage?: UnifiedPage;\n /** Create a reusable modal that can be utilized across multiple pages within your app and in other applications. */\n backOfficeModal?: BackOfficeModal;\n /**\n * Display a draggable widget on a site using a self-hosted custom element.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-widgets/about-site-widget-extensions\n */\n customElementWidget?: CustomElementWidget;\n /**\n * Restriction service plugin for editing products managed by third-party fulfillment apps, such as dropshipping or print-on-demand services\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/stores/service-plugins/product-restrictions-v3/introduction\n */\n storesProductRestrictions?: ProductRestrictionsConfig;\n /**\n * SDK exports for existing app relavent SDK\n * @internal\n */\n sdkExports?: SDKExports;\n}\n\n/** @oneof */\nexport interface ComponentDataDataOneOf {\n /**\n * Create a widget iframe that users can display on their site. We recommend submitting a proposal before using iframes in your app.\n * Learn More: https://devforum.wix.com/en/article/widget-components\n */\n widgetComponentData?: WidgetComponentData;\n /**\n * Display an iframe as a page on a user's site.\n * Learn More: https://dev.wix.com/docs/build-apps/developer-tools/extensions/iframes/guide-to-page-extensions\n */\n pageComponentData?: PageComponentData;\n /**\n * Open an iframe in the Dashboard, or add a link to a page on your platform.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/external-links/about-external-link-extensions\n */\n dashboardComponentData?: DashboardComponentData;\n /**\n * Use an invisible iframe to track activity. It’s added to every page on the site (max. 1).\n * Learn More: https://devforum.wix.com/en/article/worker-components\n */\n workerComponentData?: WorkerComponentData;\n /**\n * Inject a script into a site’s HTML code.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/embedded-scripts/about-embedded-scripts\n */\n embeddedScriptComponentData?: EmbeddedScriptComponentData;\n /**\n * Extend a site’s CMS to store and manage custom data.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/data-collections/about-data-collections-extensions\n */\n dataComponent?: DataComponent;\n /**\n * Display a widget that fits into a predefined slot in a Wix app.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-plugins/about-site-plugin-extensions\n */\n widgetPlugin?: WidgetPluginComponentData;\n /**\n * Provide custom shipping rates to a site's cart and checkout.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/shipping-rates-integration-service-plugin/introduction\n */\n ecomShippingRates?: ShippingRatesConfig;\n /** Extend a Wix entity with custom fields for your app */\n dataExtensions?: DataExtensionsComponentData;\n /**\n * Become a Wix catalog provider and integrate any external repository of sellable items with the Wix eCommerce platform.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/catalog-service-plugin/introduction\n */\n ecomCatalog?: CatalogSPIConfig;\n /**\n * Implement gift card benefits such as balance retrieval, redemption, and voiding transactions.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/gift-cards-service-plugin/introduction\n */\n giftCardsProvider?: GiftCardProviderConfig;\n /**\n * Provide SEO keyword suggestions to site collaborators, report quota usage, and provide a page where users can upgrade their plan.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/marketing/seo-keywords-suggestions-v-1/introduction\n */\n seoKeywordsSuggestions?: SeoKeywordsSuggestionsSPIConfig;\n /**\n * Configure a page for your app that will be embedded in the Wix Dashboard.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-pages/about-dashboard-page-extensions\n */\n backOfficePage?: BackOfficePage;\n /**\n * Provide custom additional fees that are added to a site's cart and checkout.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/additional-fees-service-plugin/introduction\n */\n ecomAdditionalFees?: AdditionalFeesSPIConfig;\n /** Bookings Pricing Provider SPI */\n bookingsPricingProvider?: BookingsPricingProviderConfig;\n /**\n * Apply custom charges to a site based on usage of your app's services.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/app-management/apps/custom-charges-spi/introduction\n */\n premiumCustomCharges?: CustomChargesConfig;\n /**\n * Validate items in a site's cart and checkout based on custom logic.\n * Learn More: https://dev.wix.com/docs/rest/api-reference/wix-e-commerce/validations-integration-spi/introduction\n */\n ecomValidations?: ValidationsSPIConfig;\n /**\n * Build a tool that adds functionality to the Wix editors.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/editor-extensions/about-editor-extensions\n */\n editorAddon?: EditorAddon;\n /** External Database component */\n externalDatabaseProvider?: ExternalDatabaseSpiConfig;\n /**\n * Integrate your service with Wix's payment process to allow merchants to request and use your services on their Wix sites.\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/payment-settings-integration-service-plugin/introduction\n */\n ecomPaymentSettings?: PaymentSettingsSPIConfig;\n /**\n * Add a site page that displays selected widgets.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-pages/about-site-page-extensions\n */\n unifiedPage?: UnifiedPage;\n /** Create a reusable modal that can be utilized across multiple pages within your app and in other applications. */\n backOfficeModal?: BackOfficeModal;\n /**\n * Display a draggable widget on a site using a self-hosted custom element.\n * Learn More: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/site-widgets/about-site-widget-extensions\n */\n customElementWidget?: CustomElementWidget;\n /**\n * Restriction service plugin for editing products managed by third-party fulfillment apps, such as dropshipping or print-on-demand services\n * Learn More: https://dev.wix.com/docs/rest/business-solutions/stores/service-plugins/product-restrictions-v3/introduction\n */\n storesProductRestrictions?: ProductRestrictionsConfig;\n /**\n * SDK exports for existing app relavent SDK\n * @internal\n */\n sdkExports?: SDKExports;\n}\n\n/** An iframe to be displayed on the user’s site */\nexport interface WidgetComponentData {\n /** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */\n fixedPositionOption?: FixedPositionOptions;\n /** Widget will automatically be stretched to this width after installing it */\n widgetWidthType?: WidgetWidthTypeWithLiterals;\n /**\n * Widget width size\n * @max 9999\n */\n width?: number | null;\n /**\n * Widget width height\n * @max 9999\n */\n height?: number | null;\n /**\n * A public link to the widget endpoint\n * @format WEB_URL\n */\n widgetEndpointUrl?: string | null;\n /** A public link to the mobile endpoint */\n widgetMobileEndpointUrl?: string | null;\n /** A public link to the settings endpoint */\n settingsEndpointUrl?: string | null;\n /** A public link to the SEO endpoint */\n seoEndpointUrl?: string | null;\n /** Product display data for this component */\n widgetDisplay?: WidgetDisplay;\n /** When true, this is the default component */\n default?: boolean;\n /** When this is turned on, this page will be added to the site when installing the app, regardless of whether it's the default component or not */\n essential?: boolean;\n /** Published state for this widget */\n published?: boolean;\n /** When true, allow this widget to be added only once */\n addOnlyOnce?: boolean;\n /**\n * This ID is used to identify your widget endpoint in a Wix site. You can use this ID when using methods of the Wix SDK\n * @readonly\n */\n tpaWidgetId?: string;\n /** Where this should be rendered */\n position?: Position;\n /** Article id in settings panel */\n helpId?: string | null;\n /** Default Mobile Height */\n defaultMobileHeight?: number | null;\n /** Min Mobile Height */\n minMobileHeight?: number | null;\n /** Mobile Settings Enabled */\n mobileSettingsEnabled?: boolean;\n /** Mobile article id in settings panel */\n mobileHelpId?: string | null;\n /**\n * Editor setting version. optional values: 1 (old - deprecated) or 2 (new). default value is 2\n * @min 1\n * @max 2\n */\n settingsVersion?: number | null;\n /** If setting version is 1, this will be the public link to the settings endpoint */\n settingsEndpointUrlV1?: string | null;\n /** A public link to the settings endpoint on ADI editor */\n onBoardingSettingsEndpointUrl?: string | null;\n /** The sub pages list for this component to be rendered in */\n subPages?: SubPage[];\n /** If this component should be stretched in relation to a form factor (desktop, tablet, mobile) */\n isStretched?: IsStretched;\n /** Any margins this page should have in relation to a form factor (desktop, tablet, mobile) */\n margins?: Margins;\n /** Any docking this page (horizontal / vertical) should have in relation to a form factor (desktop, tablet, mobile) */\n docking?: Docking;\n /** The height of this page in relation to a form factor (desktop, tablet, mobile) */\n heightBreakPoints?: Height;\n /** The width of this page in relation to a form factor (desktop, tablet, mobile) */\n widthBreakPoints?: ApiWidth;\n /** Keep default and let users stretch widget to full width (GFPP) */\n addStretchButton?: boolean;\n /** toggle to mark whether the editor should revoke an app that contains this component. */\n excludeFromAutoRevoke?: boolean;\n /** should be <%=serviceUrl('your_artifact_id', '<resource-path>')%>, this field will later be used to trasform the settings url field in both the component and the **derived widget** */\n settingsEndpointUrlTemplate?: string | null;\n /** should be <%=serviceUrl('your_artifact_id', '<resource-path>')%>, this field will later be used to trasform the settings url field in both the component and the **derived widget** */\n settingsEndpointUrlV1Template?: string | null;\n}\n\n/** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */\nexport interface FixedPositionOptions {\n /** Vertical widget position in the browser window */\n widgetVertical?: WidgetVerticalWithLiterals;\n /** Horizontal widget position in the browser window */\n widgetHorizontal?: WidgetHorizontalWithLiterals;\n}\n\n/** Vertical widget position in the browser window */\nexport enum WidgetVertical {\n NONE_VERTICAL = 'NONE_VERTICAL',\n TOP = 'TOP',\n CENTER_VERTICAL = 'CENTER_VERTICAL',\n BOTTOM = 'BOTTOM',\n}\n\n/** @enumType */\nexport type WidgetVerticalWithLiterals =\n | WidgetVertical\n | 'NONE_VERTICAL'\n | 'TOP'\n | 'CENTER_VERTICAL'\n | 'BOTTOM';\n\n/** Horizontal widget position in the browser window */\nexport enum WidgetHorizontal {\n NONE_HORIZONTAL = 'NONE_HORIZONTAL',\n LEFT = 'LEFT',\n CENTER_HORIZONTAL = 'CENTER_HORIZONTAL',\n RIGHT = 'RIGHT',\n}\n\n/** @enumType */\nexport type WidgetHorizontalWithLiterals =\n | WidgetHorizontal\n | 'NONE_HORIZONTAL'\n | 'LEFT'\n | 'CENTER_HORIZONTAL'\n | 'RIGHT';\n\n/** Widget will automatically be stretched to this width after installing it */\nexport enum WidgetWidthType {\n NONE_TYPE = 'NONE_TYPE',\n /** A custom width for the widget */\n CUSTOM = 'CUSTOM',\n /** Full width of the browser window */\n FULL = 'FULL',\n}\n\n/** @enumType */\nexport type WidgetWidthTypeWithLiterals =\n | WidgetWidthType\n | 'NONE_TYPE'\n | 'CUSTOM'\n | 'FULL';\n\nexport interface WidgetDisplay {\n name?: string;\n /**\n * short description about the widget\n * @maxLength 300\n */\n shortDescription?: string | null;\n /** images showing off how the widget looks */\n images?: string[];\n /** optional, if no order exist for all components, will be decided by order in array (non-deterministic) */\n order?: number | null;\n price?: number | null;\n variationId?: string | null;\n}\n\nexport interface Position {\n region?: RegionWithLiterals;\n}\n\nexport enum Region {\n no_region = 'no_region',\n header = 'header',\n pageContainer = 'pageContainer',\n footer = 'footer',\n}\n\n/** @enumType */\nexport type RegionWithLiterals =\n | Region\n | 'no_region'\n | 'header'\n | 'pageContainer'\n | 'footer';\n\nexport interface SubPage {\n /** The path of the subpage */\n key?: string;\n /** If it's sub entities are enumerable for querying (for example, a search endpoint is not enumerable) */\n enumerable?: boolean;\n /** Should hide inner routes of this sub page from floating dynamic pages navigation bar */\n hideFromFloatingNavBar?: boolean;\n /** Should hide this sub page from selections in link panel */\n hideFromLinkPanel?: boolean;\n}\n\nexport interface IsStretched {\n desktop?: boolean | null;\n tablet?: boolean | null;\n mobile?: boolean | null;\n}\n\nexport interface Margins {\n desktop?: DisplayProperties;\n tablet?: DisplayProperties;\n mobile?: DisplayProperties;\n}\n\nexport interface DisplayProperties {\n top?: DisplayValue;\n right?: DisplayValue;\n bottom?: DisplayValue;\n left?: DisplayValue;\n}\n\nexport interface DisplayValue {\n type?: UnitTypeWithLiterals;\n value?: number | null;\n}\n\nexport enum UnitType {\n NO_UNIT = 'NO_UNIT',\n AUTO = 'AUTO',\n PX = 'PX',\n VH = 'VH',\n VW = 'VW',\n PERCENTAGE = 'PERCENTAGE',\n}\n\n/** @enumType */\nexport type UnitTypeWithLiterals =\n | UnitType\n | 'NO_UNIT'\n | 'AUTO'\n | 'PX'\n | 'VH'\n | 'VW'\n | 'PERCENTAGE';\n\nexport interface Docking {\n desktop?: DockingProperties;\n tablet?: DockingProperties;\n mobile?: DockingProperties;\n}\n\nexport interface DockingProperties {\n horizontal?: HorizontalDockingWithLiterals;\n vertical?: VerticalDockingWithLiterals;\n}\n\nexport enum HorizontalDocking {\n NO_HDOCKING = 'NO_HDOCKING',\n LEFT_DOCKING = 'LEFT_DOCKING',\n HCENTER = 'HCENTER',\n RIGHT_DOCKING = 'RIGHT_DOCKING',\n}\n\n/** @enumType */\nexport type HorizontalDockingWithLiterals =\n | HorizontalDocking\n | 'NO_HDOCKING'\n | 'LEFT_DOCKING'\n | 'HCENTER'\n | 'RIGHT_DOCKING';\n\nexport enum VerticalDocking {\n NO_VDOCKING = 'NO_VDOCKING',\n TOP_DOCKING = 'TOP_DOCKING',\n VCENTER = 'VCENTER',\n BOTTOM_DOCKING = 'BOTTOM_DOCKING',\n}\n\n/** @enumType */\nexport type VerticalDockingWithLiterals =\n | VerticalDocking\n | 'NO_VDOCKING'\n | 'TOP_DOCKING'\n | 'VCENTER'\n | 'BOTTOM_DOCKING';\n\nexport interface Height {\n desktop?: DisplayValue;\n tablet?: DisplayValue;\n mobile?: DisplayValue;\n}\n\nexport interface ApiWidth {\n desktop?: DisplayValue;\n tablet?: DisplayValue;\n mobile?: DisplayValue;\n}\n\n/** SSR caching configuration for site members */\nexport enum SiteMembersSsrCaching {\n UNKNOWN_SITE_MEMBERS_SSR_CACHING = 'UNKNOWN_SITE_MEMBERS_SSR_CACHING',\n /** SSR caching is allowed when site members are logged in */\n CACHING_ALLOWED = 'CACHING_ALLOWED',\n /** SSR caching is not allowed when site members are logged in */\n CACHING_NOT_ALLOWED = 'CACHING_NOT_ALLOWED',\n}\n\n/** @enumType */\nexport type SiteMembersSsrCachingWithLiterals =\n | SiteMembersSsrCaching\n | 'UNKNOWN_SITE_MEMBERS_SSR_CACHING'\n | 'CACHING_ALLOWED'\n | 'CACHING_NOT_ALLOWED';\n\n/** MPA Navigation configuration */\nexport enum MpaNavigation {\n DEFAULT = 'DEFAULT',\n /** MPA Navigation is enabled for this component */\n ALLOWED = 'ALLOWED',\n /** MPA Navigation is disabled for this component */\n NOT_ALLOWED = 'NOT_ALLOWED',\n}\n\n/** @enumType */\nexport type MpaNavigationWithLiterals =\n | MpaNavigation\n | 'DEFAULT'\n | 'ALLOWED'\n | 'NOT_ALLOWED';\n\n/** An iframe to be displayed as a full page on the user’s site */\nexport interface PageComponentData {\n /** Hide this page from the user’s site menu */\n isHidden?: boolean;\n /** Show in pages menu */\n showInPanel?: boolean | null;\n /** Set page to full width */\n isFullWidth?: boolean;\n /** Keep default and let users stretch page to full width (GFPP) */\n addStrechButton?: boolean;\n /**\n * A public link to the page endpoint\n * @format WEB_URL\n */\n pageEndpointUrl?: string | null;\n /** A public link to the mobile endpoint */\n pageMobileEndpointUrl?: string | null;\n /** A public link to the settings endpoint */\n settingsEndpointUrl?: string | null;\n /** A public link to the SEO endpoint */\n seoEndpointUrl?: string | null;\n /**\n * When true, this is the default component\n * Main visual component. One components must be default (no more than 1 component)\n */\n default?: boolean;\n /**\n * Second visual component\n * When this is turned on, this page will be added to the site when installing the app, regardless of whether it's the default component or not\n */\n essential?: boolean;\n /** Published state for this page */\n published?: boolean;\n /**\n * This ID is used to identify your page endpoint in a Wix site. You can use this ID when using methods of the Wix SDK\n * @readonly\n */\n tpaWidgetId?: string;\n /** Article id in settings panel */\n helpId?: string | null;\n /** Default Mobile Height */\n defaultMobileHeight?: number | null;\n /** Min Mobile Height */\n minMobileHeight?: number | null;\n /** Mobile Settings Enabled */\n mobileSettingsEnabled?: boolean;\n /** Mobile article id in settings panel */\n mobileHelpId?: string | null;\n /**\n * Editor setting version. optional values: 1 (old - deprecated) or 2 (new). default value is 2\n * @min 1\n * @max 2\n */\n settingsVersion?: number | null;\n /** If setting version is 1, this will be the public link to the settings endpoint */\n settingsEndpointUrlV1?: string | null;\n /** A public link to the settings endpoint on ADI editor */\n onBoardingSettingsEndpointUrl?: string | null;\n /** The padding to use in different views */\n padding?: Padding;\n /** The sub pages list for this component to be rendered in */\n subPages?: SubPage[];\n /** toggle to mark whether the editor should revoke an app that contains this component. */\n excludeFromAutoRevoke?: boolean;\n /** Options to mark whether this page is replacing other page or is replaced by other page. */\n pageReplaceOptions?: PageReplaceOptions;\n /** Elements in the editor can be linked to this page (a button for example) */\n linkable?: boolean | null;\n /** Should add the page to site menu. defaults to true (will add the page to site menu) */\n addToSiteMenu?: boolean | null;\n /** Should allow multiple instances of the page (allow duplicate the page). defaults to false (will not allow multiple instances of the page) */\n multiInstanceEnabled?: boolean;\n /**\n * short description about the page\n * @maxLength 300\n */\n shortDescription?: string | null;\n}\n\nexport interface Padding {\n desktop?: DisplayProperties;\n tablet?: DisplayProperties;\n mobile?: DisplayProperties;\n}\n\nexport interface PageReplaceOptions extends PageReplaceOptionsOptionsOneOf {\n replacingOptions?: ReplacingOptions;\n replaceableOptions?: ReplaceableOptions;\n type?: ReplacementTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface PageReplaceOptionsOptionsOneOf {\n replacingOptions?: ReplacingOptions;\n replaceableOptions?: ReplaceableOptions;\n}\n\nexport interface PageReplace {\n /**\n * The app id of the page the app can replace\n * @format GUID\n */\n appId?: string;\n /**\n * The page id the app can replace\n * @format GUID\n */\n pageId?: string;\n}\n\nexport enum ReplacementType {\n UNKNOWN_REPLACEMENT = 'UNKNOWN_REPLACEMENT',\n REPLACING = 'REPLACING',\n REPLACEABLE = 'REPLACEABLE',\n}\n\n/** @enumType */\nexport type ReplacementTypeWithLiterals =\n | ReplacementType\n | 'UNKNOWN_REPLACEMENT'\n | 'REPLACING'\n | 'REPLACEABLE';\n\nexport interface ReplacingOptions {\n /** describe the page and application id that this page will replace. */\n pageReplace?: PageReplace;\n}\n\nexport interface ReplaceableOptions {\n /** toggle to mark whether this page can be replaced by other page or app. */\n isReplaceable?: boolean;\n}\n\n/** A widget out of iframe component that loads directly in the Editor DOM */\nexport interface WidgetOutOfIframeComponentData {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n componentUrl?: string;\n /**\n * Iframe controller URL.\n * @format WEB_URL\n */\n controllerUrl?: string | null;\n /** Information about the widget. */\n widgetData?: WidgetComponentData;\n /**\n * Out of iframe SSR URL.\n * @format WEB_URL\n */\n ssrComponentUrl?: string | null;\n /** Format: `<%=serviceUrl('your_artifact_id', 'component_url_bundle_file')%>`. */\n componentUrlTemplate?: string | null;\n /** Format: `<%=serviceUrl('your_artifact_id', 'controller_url_bundle_file')%>`. */\n controllerUrlTemplate?: string | null;\n /** Out of iframe widget data. */\n outOfIframeData?: OutOfIframeData;\n /** Format: `<%=serviceUrl('your_artifact_id', 'no_css_component_url_bundle_file')%>`. */\n noCssComponentUrlTemplate?: string | null;\n /**\n * Out of iframe no css component URL.\n * @format WEB_URL\n */\n noCssComponentUrl?: string | null;\n /** Whether to support different style param values for different breakpoints. */\n cssPerBreakpoint?: boolean | null;\n /**\n * builderConfig static url.\n * @format WEB_URL\n */\n builderConfigUrl?: string | null;\n /**\n * Builder config URL template. `<%=serviceUrl('your_artifact_id', 'builder_url_bundle_file')%>`\n * @maxLength 512\n */\n builderConfigUrlTemplate?: string | null;\n /** Whether to render the component in the Editor as React (true) or as an iframe (false) */\n ooiInEditor?: boolean | null;\n}\n\n/** Out Of Iframes additional info */\nexport interface OutOfIframeData {\n /** The setting URLs for the app */\n settingsUrls?: SettingsUrl[];\n /** Automatically installed on app installation */\n autoInstall?: boolean;\n /** The info about how to report errors for the App */\n errorReporting?: ErrorReporting;\n /** The list of slots available */\n slots?: ApiSlot[];\n /** if true, ssr will not cache pages that contain this widget */\n ssrCacheExcluded?: boolean;\n /** Should use loadable-components */\n isLoadable?: boolean;\n /**\n * if true, when site member is logged in and this widget is in the page - ssr will not cache it\n * @deprecated if true, when site member is logged in and this widget is in the page - ssr will not cache it\n * @replacedBy site_members_ssr_caching\n * @targetRemovalDate 2025-12-31\n */\n siteMembersSsrCacheExcluded?: boolean;\n /**\n * Controls SSR caching behavior when site members are logged in\n * @deprecated Controls SSR caching behavior when site members are logged in\n * @targetRemovalDate 2026-03-01\n */\n siteMembersSsrCaching?: SiteMembersSsrCachingWithLiterals;\n}\n\n/** An editor settings configuration */\nexport interface SettingsUrl {\n /**\n * The URL for the setting panel\n * @format WEB_URL\n */\n url?: string;\n /** What type of editor this is */\n editorType?: string;\n /** How this view is rendered (mobile, tablet, etc) */\n viewType?: string;\n /** should be <%=serviceUrl('your_artifact_id', '<resource-path>')%>, this field will later be used to trasform the settings url field in both the component and the **derived widget** */\n urlTemplate?: string | null;\n}\n\n/** Error reporting configuration for the App */\nexport interface ErrorReporting {\n /** An error reporting URL to be used by our infra (Example: A sentry DSN url) */\n url?: string;\n /** Optional: Data about the artifact that reports the error. */\n artifact?: ErrorReportingArtifact;\n}\n\n/** Data of the artifact that reports an error. */\nexport interface ErrorReportingArtifact {\n /**\n * The full artifact id of the project which errors are associated with (Example: com.wixpress.my-artifact)\n * @minLength 1\n * @maxLength 255\n */\n fullArtifactId?: string;\n /**\n * The project version which errors are associated with (Example: Falcon fingerprint)\n * @minLength 1\n * @maxLength 255\n */\n version?: string;\n}\n\n/** Definition of slot */\nexport interface ApiSlot {\n /** Role of the slot component (uniquely identifies slot within parent comp; used by Velo) - former \"slotName\" */\n slotRole?: string;\n /** The list of interfaces that should be implemented by a plugin in order to fit the slot */\n pluginInterfaces?: PluginInterfaceWithLiterals[];\n /** Id of the slot component (a.k.a. Velo role) */\n slotId?: string;\n}\n\n/** The types of public APIs exposed by the Plugin */\nexport enum PluginInterface {\n /** No public APIs exposed */\n NONE_INTERFACE = 'NONE_INTERFACE',\n /** The slot requires the REVIEWS interface to be implemented by the plugin. The plugin specifies the implementation of the REVIEWS interface */\n REVIEWS = 'REVIEWS',\n /** The slot requires the RATINGS_SUMMARY interface to be implemented by the plugin. The plugin specifies the implementation of the RATINGS_SUMMARY interface */\n RATINGS_SUMMARY = 'RATINGS_SUMMARY',\n /** The slot requires the RATINGS_SUMMARY_OOI_LIST interface to be implemented by the plugin. The plugin specifies the implementation of the RATINGS_SUMMARY_OOI_LIST interface */\n RATINGS_SUMMARY_OOI_LIST = 'RATINGS_SUMMARY_OOI_LIST',\n /** The slot requires the BOOKINGS_SERVICE interface to be implemented by the plugin. The plugin specifies the implementation of the BOOKINGS_SERVICE interface */\n BOOKINGS_SERVICE = 'BOOKINGS_SERVICE',\n /** The slot requires the BOOKINGS_FORM interface to be implemented by the plugin. The plugin specifies the implementation of the BOOKINGS_FORM interface */\n BOOKINGS_FORM = 'BOOKINGS_FORM',\n /** The slot requires the BASE interface to be implemented by the plugin. The plugin specifies the implementation of the BASE interface */\n BASE = 'BASE',\n /** The slot requires the EVENT interface to be implemented by the plugin. The plugin specifies the implementation of the EVENT interface */\n EVENT = 'EVENT',\n /** The slot requires the PRODUCT interface to be implemented by the plugin. The plugin specifies the implementation of the PRODUCT interface */\n PRODUCT = 'PRODUCT',\n /** The slot requires the CHECKOUT interface to be implemented by the plugin. The plugin specifies the implementation of the CHECKOUT interface */\n CHECKOUT = 'CHECKOUT',\n /** The slot requires the CATEGORY interface to be implemented by the plugin. The plugin specifies the implementation of the CATEGORY interface */\n CATEGORY = 'CATEGORY',\n /** The slot requires the BOOKINGS_CALENDAR interface to be implemented by the plugin. The plugin specifies the implementation of the BOOKINGS_CALENDAR interface */\n BOOKINGS_CALENDAR = 'BOOKINGS_CALENDAR',\n /** The slot requires the CART interface to be implemented by the plugin. The plugin specifies the implementation of the CART interface */\n CART = 'CART',\n}\n\n/** @enumType */\nexport type PluginInterfaceWithLiterals =\n | PluginInterface\n | 'NONE_INTERFACE'\n | 'REVIEWS'\n | 'RATINGS_SUMMARY'\n | 'RATINGS_SUMMARY_OOI_LIST'\n | 'BOOKINGS_SERVICE'\n | 'BOOKINGS_FORM'\n | 'BASE'\n | 'EVENT'\n | 'PRODUCT'\n | 'CHECKOUT'\n | 'CATEGORY'\n | 'BOOKINGS_CALENDAR'\n | 'CART';\n\nexport interface ExtensionExposure {\n /** Determines if the component is production ready */\n maturity?: MaturityWithLiterals;\n}\n\nexport enum Exposure {\n /** Unexposed. to be used by dev team only */\n PRIVATE = 'PRIVATE',\n /** Exposed internally */\n INTERNAL = 'INTERNAL',\n /** Exposed to the world */\n PUBLIC = 'PUBLIC',\n}\n\n/** @enumType */\nexport type ExposureWithLiterals = Exposure | 'PRIVATE' | 'INTERNAL' | 'PUBLIC';\n\nexport enum Maturity {\n /** Immature. subject to breaking changes */\n ALPHA = 'ALPHA',\n /** Ready for integration. 2 weeks notice before breaking changes are applied */\n BETA = 'BETA',\n /** Matured. breaking changes are not acceptable. 3 month notice before sunset */\n GA = 'GA',\n /** Not yet implemented */\n NOT_IMPLEMENTED = 'NOT_IMPLEMENTED',\n}\n\n/** @enumType */\nexport type MaturityWithLiterals =\n | Maturity\n | 'ALPHA'\n | 'BETA'\n | 'GA'\n | 'NOT_IMPLEMENTED';\n\n/** A page out of iframe component that loads directly in the Editor DOM */\nexport interface PageOutOfIframeComponentData {\n /**\n * Out of iframe component URL.\n * @format WEB_URL\n */\n componentUrl?: string;\n /**\n * Out of iframe controller URL.\n * @format WEB_URL\n */\n controllerUrl?: string | null;\n /** Page data. */\n pageData?: PageComponentData;\n /**\n * Out of iframe SSR URL.\n * @format WEB_URL\n */\n ssrComponentUrl?: string | null;\n /** Component URL template. `<%=serviceUrl('your_artifact_id', 'component_url_bundle_file')%>` */\n componentUrlTemplate?: string | null;\n /** Controller URL template. `<%=serviceUrl('your_artifact_id', 'controller_url_bundle_file')%>` */\n controllerUrlTemplate?: string | null;\n /** Data about the out of iframe page. */\n outOfIframeData?: OutOfIframeData;\n /** Setting endpoint URL template. `<%=serviceUrl('your_artifact_id', '<resource-path>')%>`. Used to transform the settings URL field in both the component and the **derived widget**. */\n settingsEndpointUrlTemplate?: string | null;\n /** Setting endpoint URL v1 template. `<%=serviceUrl('your_artifact_id', '<resource-path>')%>`. Used to transform the settings URL field in both the component and the **derived widget**. */\n settingsEndpointUrlV1Template?: string | null;\n /** No css component URL template. `<%=serviceUrl('your_artifact_id', 'no_css_component_url_bundle_file')%>`. */\n noCssComponentUrlTemplate?: string | null;\n /**\n * URL for the out of iframe no CSS component URL.\n * @format WEB_URL\n */\n noCssComponentUrl?: string | null;\n /** Whether to enable support for different style param values for different breakpoints. */\n cssPerBreakpoint?: boolean | null;\n /**\n * builderConfig static url.\n * @format WEB_URL\n */\n builderConfigUrl?: string | null;\n /**\n * Builder config URL template. `<%=serviceUrl('your_artifact_id', 'builder_url_bundle_file')%>`\n * @maxLength 512\n */\n builderConfigUrlTemplate?: string | null;\n /** Whether to render the component in the Editor as React (true) or as an iframe (false) */\n ooiInEditor?: boolean | null;\n}\n\n/** Create a collection of native Editor components that loads directly in the Editor DOM */\nexport interface PlatfromComponentData {\n /**\n * Path to a Javascript file that Editor runs on app install\n * @format WEB_URL\n */\n editorScriptUrl?: string | null;\n /** Path to a Javascript file that viewer runs for page components / widgets and applicative business logic */\n viewerScriptUrl?: string | null;\n /** If true, components of the app wont be added to the editor (only run editor scripts) */\n platformOnly?: boolean;\n /** If the viewer script should run in the Editor */\n enableInEditor?: boolean;\n /** URL to get complex routing decisions at runtime from a platform app. Some spec can be seen here: https://docs.google.com/document/d/1t_3bl9vVMoPVm_I9Sx59LsVUPXi07gihGIg3-F7z8Q0/edit?ts=595512f6#heading=h.9ca9859ng5d */\n routerServiceUrl?: string | null;\n /**\n * Path to a Javascript file that viewer runs for page components / widgets and applicative business logic. Includes verbose logs for Wix runtime.\n * @format WEB_URL\n */\n viewerVerboseScriptUrl?: string | null;\n /** A map of string descriptor the app understands to a versioned URL topology value, can be an API or statics data. Example: `storesCartAPI: https://stores.com/api/v2/cart/ */\n baseUrls?: Record<string, string>;\n /** Used by DAC (gradual roll-out). A map of string descriptor the app understands to a template versioned URL topology value, Example: `storeCSSStuff: https://static.pararstorage.com/services/stores-css-stuff/<%=serviceVersion('your_artifact_id')%>/main.css */\n baseUrlsTemplate?: Record<string, string>;\n /** should be <%=serviceUrl('your_artifact_id', 'viewer_script_url_bundle_file')%> */\n viewerScriptUrlTemplate?: string | null;\n /** If this component should be stretched in relation to a form factor (desktop, tablet, mobile) */\n isStretched?: IsStretched;\n /** Any margins this page should have in relation to a form factor (desktop, tablet, mobile) */\n margins?: Margins;\n /** Any docking this page (horizontal / vertical) should have in relation to a form factor (desktop, tablet, mobile) */\n docking?: Docking;\n /** The height of this page in relation to a form factor (desktop, tablet, mobile) */\n height?: Height;\n /** The width of this page in relation to a form factor (desktop, tablet, mobile) */\n width?: ApiWidth;\n /**\n * Support adding application pages with preset data\n * Vertical endpoint that clones the data\n * https://docs.google.com/document/d/1pUp-d9vVMCTjDdQffBuwh1mBvQacQZy0n6nm2amCMV4/edit\n * @format WEB_URL\n */\n cloneAppDataUrl?: string | null;\n /**\n * False by default\n * If false, data is cloned per app\n * If true, the data is cloned per add component on component addition\n */\n shouldCloneDataPerComponent?: boolean;\n /**\n * Error reporting URL used to report errors at platform level,\n * and as fallback for pageOOI and widgetOOI error reporting\n */\n errorReporting?: ErrorReporting;\n /**\n * A concrete versioned URL of the translation template, contains `{language}` parameter in the path\n * @format WEB_URL\n */\n editorTranslationUrl?: string | null;\n /** A version templated URL of the translation template, contains a <%=serviceVersion('your_artifact_id')%> template and a `{language}` template */\n editorTranslationUrlTemplate?: string | null;\n excludeFromAutoRevoke?: boolean;\n /** dictates if the app has migrated to the new platform API */\n migratedToNewPlatformApi?: boolean;\n /** The HTTP Verb used to call the router, if not set will be POST */\n routerHttpMethod?: HTTPMethodWithLiterals;\n}\n\n/** Add interim support for HTTP methods before a bigger rewrite for Routers as a component */\nexport enum HTTPMethod {\n UNKNOWN_METHOD = 'UNKNOWN_METHOD',\n GET = 'GET',\n POST = 'POST',\n}\n\n/** @enumType */\nexport type HTTPMethodWithLiterals =\n | HTTPMethod\n | 'UNKNOWN_METHOD'\n | 'GET'\n | 'POST';\n\n/**\n * An iframe that opens in the user’s Wix Dashboard,\n * or add a link to open the page directly in your platform.\n */\nexport interface DashboardComponentData {\n /**\n * The dashboard url.\n * @format WEB_URL\n */\n url?: string;\n /**\n * External or Internal dashboard.\n * The user’s Wix Dashboard (recommended) or your platform or site\n */\n embedded?: boolean;\n /**\n * A settings page for users to customize your dashboard\n * @maxLength 300\n */\n settingsPageUrl?: string | null;\n /** @maxLength 300 */\n checkStatusUrl?: string | null;\n published?: boolean | null;\n hideWixSideMenu?: boolean | null;\n}\n\n/** An invisible iframe to track site activity. It’ll be added to every page on the user’s site */\nexport interface WorkerComponentData {\n /**\n * A public link to the worker endpoint\n * @format WEB_URL\n */\n workerEndpointUrl?: string;\n}\n\n/**\n * An extension to platform used by Wix Blocks UI\n * The main component in the Wix Blocks.\n * no manual adding. auto-created only from Wix Blocks\n */\nexport interface StudioComponentData {\n /** Path to a Javascript file that Editor runs on app install */\n editorScriptUrl?: string;\n /** Path to a Javascript file that viewer runs for page components / widgets and applicative business logic */\n viewerScriptUrl?: string;\n /** If true, components of the app wont be added to the editor (only run editor scripts) */\n platformOnly?: boolean;\n /** If the viewer script should run in the Editor */\n enableInEditor?: boolean;\n /** URL to get complex routing decisions at runtime from a platform app. Some spec can be seen here: https://docs.google.com/document/d/1t_3bl9vVMoPVm_I9Sx59LsVUPXi07gihGIg3-F7z8Q0/edit?ts=595512f6#heading=h.9ca9859ng5d */\n routerServiceUrl?: string;\n /** Path to a Javascript file that viewer runs for page components / widgets and applicative business logic. Includes verbose logs for Wix runtime. */\n viewerVerboseScriptUrl?: string;\n /**\n * Instance id of wixCode in the original dev site. used in order to access the widgets code\n * @format GUID\n */\n wixCodeInstanceId?: string;\n /**\n * Id of the grid in wixCode FS where the widgets code is located. used in order to access the widgets code\n * @format GUID\n */\n wixCodeGridId?: string;\n /** Path to a json which contains metaData of the devSite */\n siteHeaderUrl?: string;\n /** A map of string descriptor the app understands to a versioned URL topology value, can be an API or statics data. This may have some values which are NOT URL since Studio computes some values on the fly. */\n baseUrls?: Record<string, string>;\n /** If true, not shown in add panel and apps panel when it is installed */\n hideInAddPanel?: boolean;\n /** if true, this studio component enforce permissions */\n permissionsEnforced?: boolean;\n}\n\n/** A widget component in the Wix Blocks. */\nexport interface StudioWidgetComponentData {\n /** Id of the widget */\n studioWidgetId?: string;\n /** Path to a json which contains the widget data and structure */\n pageJsonFilename?: string;\n /** variationId -> widget variation data */\n variations?: Record<string, StudioWidgetVariation>;\n /** Product display data for this component */\n widgetDisplay?: WidgetDisplay;\n /** If it is required to be installed as part of the app */\n essential?: boolean;\n /** The version of blocks used to build this widget */\n blocksVersion?: string;\n /** If this component should be stretched in relation to a form factor (desktop, tablet, mobile) */\n isStretched?: IsStretched;\n /** Any margins this page should have in relation to a form factor (desktop, tablet, mobile) */\n margins?: Margins;\n /** Any docking this page (horizontal / vertical) should have in relation to a form factor (desktop, tablet, mobile) */\n docking?: Docking;\n /** The height of this page in relation to a form factor (desktop, tablet, mobile) */\n height?: Height;\n /** The width of this page in relation to a form factor (desktop, tablet, mobile) */\n width?: ApiWidth;\n /** Properties of installed custom elements */\n customElement?: CustomElement;\n /** ids of nested widgets in this widget */\n nestedWidgets?: NestedWidgets;\n /** Properties of widget's presets */\n presetsInfo?: PresetInfo[];\n /** Widget properties that affect the way it behaves during installation in a site. */\n installationSettings?: InstallationSettings;\n /** Properties that affect the widget's presence in the editor. */\n editorPresence?: EditorPresence;\n /** Base info of component by shared logic of unified components */\n base?: BaseInfo;\n /** Unified widget installation settings */\n installation?: WidgetInstallationSettings;\n /**\n * Optional: The URL of the widget's code bundle\n * @format WEB_URL\n */\n widgetBundleUrl?: string | null;\n}\n\n/** A variation of a blocks widget */\nexport interface StudioWidgetVariation {\n /** Id of the widget variation */\n _id?: string;\n /** Display name of the variation */\n name?: string;\n /** Path to a json which contains the widget variation data and structure */\n pageJsonFilename?: string;\n}\n\nexport interface CustomElement extends CustomElementConsentCategoryOneOf {\n essential?: boolean;\n /** Related to performance and other functional measurements. */\n functional?: boolean;\n /** Related to analytics about how the site is used in order to improve it. */\n analytics?: boolean;\n /** Related to allowing better customization of the experience to a current visitor. */\n advertising?: boolean;\n /** Boolean to make custom element in this widget be available for free sites */\n allowedForFreeSite?: boolean;\n /** CCPA compliance flag. */\n dataToThirdParty?: boolean;\n}\n\n/** @oneof */\nexport interface CustomElementConsentCategoryOneOf {\n essential?: boolean;\n /** Related to performance and other functional measurements. */\n functional?: boolean;\n /** Related to analytics about how the site is used in order to improve it. */\n analytics?: boolean;\n /** Related to allowing better customization of the experience to a current visitor. */\n advertising?: boolean;\n}\n\n/** Nested widgets */\nexport interface NestedWidgets {\n /**\n * ids of all recursively nested widgets from the same Blocks app\n * @format GUID\n */\n internal?: string[];\n}\n\n/** Preset Info */\nexport interface PresetInfo {\n /** Id of the widget's preset */\n presetId?: string;\n /** Display name of the widget's preset */\n presetName?: string;\n /** The default size used when the preset is added to the stage */\n defaultSize?: PresetSize;\n}\n\n/** Preset Size */\nexport interface PresetSize {\n /** The width of the preset when it's added to the stage */\n width?: DisplayValue;\n /** The height of the preset when it's added to the stage */\n height?: DisplayValue;\n}\n\n/** Settings to control the behavour of widgets when installed in a wix site. */\nexport interface InstallationSettings extends InstallationSettingsOptionsOneOf {\n /** Extra options needed when `install_page` is set to `PAGE`. */\n pageOptions?: PageOptions;\n /** Extra options needed when `install_page` is set to `LIGHTBOX`. */\n lightboxOptions?: LightboxOptions;\n /** How to add the widget automatically to the site. Options could be `NO_PAGE`, `CURRENT`, `PAGE` or `LIGHTBOX`. */\n installPage?: InstallPageWithLiterals;\n /** Controls whether to show or hide the widget in the add panel. */\n showInAddPanel?: boolean | null;\n /** Defines the main preset per breakpoint for the widget. */\n mainPresets?: MainPresets;\n}\n\n/** @oneof */\nexport interface InstallationSettingsOptionsOneOf {\n /** Extra options needed when `install_page` is set to `PAGE`. */\n pageOptions?: PageOptions;\n /** Extra options needed when `install_page` is set to `LIGHTBOX`. */\n lightboxOptions?: LightboxOptions;\n}\n\n/** The page to which a new widget can be added */\nexport enum InstallPage {\n /** Don't add widget to a page */\n NO_PAGE = 'NO_PAGE',\n /** Add widget to the current page in the editor */\n CURRENT = 'CURRENT',\n /** Add widget to a new page in the editor */\n PAGE = 'PAGE',\n /** Add widget to a new lightbox in the editor */\n LIGHTBOX = 'LIGHTBOX',\n}\n\n/** @enumType */\nexport type InstallPageWithLiterals =\n | InstallPage\n | 'NO_PAGE'\n | 'CURRENT'\n | 'PAGE'\n | 'LIGHTBOX';\n\n/** Defines the main preset per breakpoint for the widget. */\nexport interface MainPresets {\n /** The main desktop preset. */\n desktopPresetId?: string;\n /** The main tablet preset. */\n tabletPresetId?: string;\n /** The main mobile preset. */\n mobilePresetId?: string;\n}\n\n/** Options for widgets that are added as a page during installation */\nexport interface PageOptions {\n /** Display name of the page that will be shown in the page menu. */\n pageName?: string;\n /** The page ID used for navigation purposes. Once set cannot be changed. */\n pageId?: string;\n}\n\nexport interface LightboxOptions {\n /** Display name of the lightbox that will be shown in the lightbox menu. */\n lightboxName?: string;\n /** The lightbox ID used for navigation purposes. Once set cannot be changed. */\n lightboxId?: string;\n}\n\nexport interface EditorPresence {\n /** Properties that describe the presence of each of the widget's presets */\n presetsEditorPresence?: PresetEditorPresence[];\n}\n\nexport interface PresetEditorPresence {\n /** Id of the widget's preset */\n presetId?: string;\n /** Controls whether to show or hide the preset in the Add Panel */\n showInAddPanel?: boolean;\n /** Controls whether to show or hide the preset in the Presets Panel */\n showInPresetsPanel?: boolean;\n /** Optional image to show as the preset's thumbnail in the editor, if left empty an automatic snapshot of the preset will be used */\n wixMediaThumbnail?: string;\n /** Another preset id that is a mobile variation of this preset */\n mobilePresetId?: string;\n}\n\nexport interface FocalPoint {\n /** X-coordinate of the focal point. */\n x?: number;\n /** Y-coordinate of the focal point. */\n y?: number;\n /** crop by height */\n height?: number | null;\n /** crop by width */\n width?: number | null;\n}\n\nexport interface BaseInfo {\n /**\n * The name of the component\n * @minLength 1\n * @maxLength 30\n */\n name?: string;\n /** The internal id of the component by the own app */\n _id?: string;\n /**\n * The description of the component by the own app\n * @maxLength 130\n */\n description?: string;\n /** Reference to help articles about the widget */\n helpResources?: HelpResources;\n}\n\nexport interface HelpResources {\n /**\n * The Wix Answers' article related to the component (chosen by own app)\n * @format GUID\n */\n articleId?: string;\n}\n\nexport interface WidgetInstallationSettings\n extends WidgetInstallationSettingsTargetContainerOneOf {\n /** Which static container should the widget be installed at */\n staticContainer?: StaticContainerWithLiterals;\n /**\n * Deprecated, autoAdd should be mapped to static_container HOMEPAGE, essential should be mapped to container. Shared installation settings for unified components\n * @deprecated Deprecated, autoAdd should be mapped to static_container HOMEPAGE, essential should be mapped to container. Shared installation settings for unified components\n * @replacedBy static_container\n * @targetRemovalDate 2026-02-26\n */\n base?: BaseInstallation;\n /**\n * Deprecated, default_preset should be mapped to presets, region is not relevant. Widget installation settings for unified components\n * @deprecated Deprecated, default_preset should be mapped to presets, region is not relevant. Widget installation settings for unified components\n * @replacedBy presets\n * @targetRemovalDate 2026-02-26\n */\n widget?: WidgetInstallation;\n /** Default presets per breakpoint with which the widget should be installed */\n presets?: DefaultPresets;\n}\n\n/** @oneof */\nexport interface WidgetInstallationSettingsTargetContainerOneOf {\n /** Which static container should the widget be installed at */\n staticContainer?: StaticContainerWithLiterals;\n}\n\nexport interface BaseInstallation {\n /** Auto add component to stage */\n autoAdd?: boolean;\n /** Mark component as essential for the existence of the app (force to delete the whole app) */\n essential?: boolean;\n /** Max instances of the component that can be on site */\n maxInstances?: number | null;\n}\n\nexport interface WidgetInstallation {\n /** Preset should be selected defaultly with installation */\n defaultPreset?: MainPresets;\n /** Region of widget */\n region?: RegionTypeWithLiterals;\n}\n\nexport enum RegionType {\n HEADER = 'HEADER',\n BODY = 'BODY',\n FOOTER = 'FOOTER',\n}\n\n/** @enumType */\nexport type RegionTypeWithLiterals = RegionType | 'HEADER' | 'BODY' | 'FOOTER';\n\nexport interface DefaultPresets {\n /**\n * Default preset ID in small (mobile) breakpoint\n * @minLength 1\n * @maxLength 50\n */\n small?: string | null;\n /**\n * Deprecated, use default - Default preset ID in large (desktop) breakpoint\n * @minLength 1\n * @maxLength 50\n * @deprecated Deprecated, use default - Default preset ID in large (desktop) breakpoint\n * @replacedBy default\n * @targetRemovalDate 2025-12-02\n */\n large?: string | null;\n /**\n * Default preset ID\n * @minLength 1\n * @maxLength 50\n */\n default?: string | null;\n}\n\nexport enum StaticContainer {\n UNKNOWN_CONTAINER = 'UNKNOWN_CONTAINER',\n /** Widget should be installed in the homepage */\n HOMEPAGE = 'HOMEPAGE',\n}\n\n/** @enumType */\nexport type StaticContainerWithLiterals =\n | StaticContainer\n | 'UNKNOWN_CONTAINER'\n | 'HOMEPAGE';\n\nexport interface ComponentModel {\n /** The component type of the builder component. */\n componentType?: string;\n /**\n * The component URL of the builder component\n * @format WEB_URL\n */\n componentUrl?: string;\n}\n\n/** A component that indicates the existence of an importable code package in a Wix Blocks application. */\nexport interface CodePackageComponentData {\n /**\n * The GUID to access the package code in the Velo/Wix Code system\n * @format GUID\n */\n gridId?: string;\n /** Name of the package for display */\n displayName?: string;\n /** Name of the package for import */\n importName?: string;\n /** An optional description of this package and what it does */\n description?: string | null;\n}\n\n/** A collection of native components that load directly in the Business Manager */\nexport interface DashboardPlatfromComponentData {\n /**\n * Path to a Javascript file that Dashboard runs on app install\n * @format WEB_URL\n */\n scriptUrl?: string;\n}\n\n/** Inject third party scripts into the user’s site */\nexport interface EmbeddedScriptComponentData {\n /** The script */\n template?: string;\n /** A name that’s unique to this component. Names can include letters and the hyphen (-) character only */\n name?: string;\n /** What category of pages this will be embedded on (single, many, none) */\n pages?: EmbeddedScriptPagesWithLiterals;\n /** Where in the HTML this should be embedded */\n placement?: EmbeddedScriptPlacementWithLiterals;\n /** An article explaining how to activate the script */\n connectArticleUrl?: string;\n /** Type of script you are injecting. This will be used for GDPR and cookie consent purposes */\n embedCategory?: EmbedCategoryWithLiterals;\n /**\n * if the script should be loaded once - default and only supported value is true\n * @readonly\n */\n loadOnce?: boolean;\n /** allow developers to decide if their app script can be install on free sites */\n allowedForFreeSite?: boolean;\n /**\n * The runtime dependencies array to declare the widget packages.\n * @maxSize 50\n */\n dependencies?: WixDependency[];\n}\n\n/** Category of pages this will be embedded on (single, many, none) */\nexport enum EmbeddedScriptPages {\n /** It will not be embedded */\n NONE_PAGES = 'NONE_PAGES',\n /** It will be embedded once */\n ONCE = 'ONCE',\n /** It will be embedded multiple times on specific pages */\n SPECIFIC_PAGES = 'SPECIFIC_PAGES',\n}\n\n/** @enumType */\nexport type EmbeddedScriptPagesWithLiterals =\n | EmbeddedScriptPages\n | 'NONE_PAGES'\n | 'ONCE'\n | 'SPECIFIC_PAGES';\n\n/** Where that embed will be rendered */\nexport enum EmbeddedScriptPlacement {\n /** It will not be rendered */\n NONE_PLACEMENT = 'NONE_PLACEMENT',\n /** In the document head */\n HEAD = 'HEAD',\n /** Prepended before all children already rendered in the body tag */\n BODY_START = 'BODY_START',\n /** Appended after the last child already rendered in the body tag */\n BODY_END = 'BODY_END',\n}\n\n/** @enumType */\nexport type EmbeddedScriptPlacementWithLiterals =\n | EmbeddedScriptPlacement\n | 'NONE_PLACEMENT'\n | 'HEAD'\n | 'BODY_START'\n | 'BODY_END';\n\n/** Embed category defined for Privacy regulation compliance in EU and CCPA in the US */\nexport enum EmbedCategory {\n /** Not categorized yet */\n UNKNOWN = 'UNKNOWN',\n /** Must load regardless of policy */\n ESSENTIAL = 'ESSENTIAL',\n /** Adds optional functionality to the site */\n FUNCTIONAL = 'FUNCTIONAL',\n /** Adds analytics abilities to the site */\n ANALYTICS = 'ANALYTICS',\n /** Adds advertising content or advertising tracking to the site */\n ADVERTISING = 'ADVERTISING',\n}\n\n/** @enumType */\nexport type EmbedCategoryWithLiterals =\n | EmbedCategory\n | 'UNKNOWN'\n | 'ESSENTIAL'\n | 'FUNCTIONAL'\n | 'ANALYTICS'\n | 'ADVERTISING';\n\nexport interface WixDependency {\n /**\n * The fully qualified package name from npm, example: @wix/frontend-location\n * @minLength 2\n * @maxLength 100\n */\n packageName?: string;\n /** The major version of the package (this may be a detail included in the package name, but is conventional in NPM with semver semantics */\n version?: number;\n}\n\n/** A draggable custom element. Add your custom script and generate ui directly in the viewer */\nexport interface WebComponentData {\n /** A link to a preview image we can render in the editor in place of your component */\n imagePreview?: string;\n /** Web component size */\n size?: Size;\n /**\n * This script url should render temp empty state\n * @format WEB_URL\n */\n scriptTag?: string;\n /** Unique tag name to use in order to connect your JS script to your web component */\n tagName?: string;\n /**\n * The settings panel URL for this component\n * @format WEB_URL\n */\n settingsUrl?: string | null;\n /** The editor modal that the user will see */\n modalTitle?: string;\n /** Settings CTA label */\n connectLabel?: string;\n /** Dynamic settings(Graphic Floating Properties Panel settings) */\n gfppSettings?: Settings;\n /** Custom element type PAGE / WIDGET */\n type?: WebComponentDataElementTypeWithLiterals;\n /** Boolean to make this component be available for free sites */\n allowedForFreeSite?: boolean;\n /**\n * A public link to the SEO endpoint\n * @format WEB_URL\n */\n seoUrl?: string | null;\n /** For case that the widget will be used as page */\n slug?: string | null;\n /** For case that the widget will be used as page */\n showPageInMenu?: boolean;\n /** The details of the selected widget to add */\n widget?: WidgetDetails;\n /** Give the option to change the script type */\n scriptType?: ScriptTypeWithLiterals;\n /** Web component default mobile height */\n defaultMobileHeight?: number | null;\n /** Prevent the deletion of the widget when set to true. */\n essential?: boolean;\n /** Toggle to mark whether the editor should revoke an app that contains this component. */\n excludeFromAutoRevoke?: boolean;\n /** defines the widget's behaviour in editor page */\n widgetBehavior?: WidgetBehavior;\n}\n\n/** Web component size */\nexport interface Size {\n /**\n * Height in pixels\n * @max 9999\n */\n height?: number;\n /**\n * Width in pixels\n * @max 9999\n */\n width?: number;\n}\n\n/** Graphic Floating Properties Panel settings */\nexport interface Settings {\n activeTab?: string;\n /** @format WEB_URL */\n fetchInitialData?: string | null;\n tabs?: Tab[];\n}\n\n/** Setting tab definition */\nexport interface Tab {\n label?: string;\n items?: Container[];\n /** hidden tab will not be visible in editor and dev center preview */\n hidden?: boolean;\n}\n\n/** UI Container in page */\nexport interface Container extends ContainerDataOneOf {\n /** containers */\n main?: Main;\n section?: Section;\n drillInListItem?: DrillInListItem;\n /** items */\n thumbnails?: Thumbnails;\n sliderLabeled?: SliderLabeled;\n dropDownLabeled?: DropDownLabeled;\n toggleLabeled?: ToggleLabeled;\n barAlignment?: BarAlignment;\n textInputLabeled?: TextInputLabeled;\n resetButton?: ResetButton;\n fontFamilyWithColorPicker?: FontFamilyWithColorPicker;\n radioButtonLabeled?: RadioButtonLabeled;\n colorSelectLabeled?: ColorSelectLabeled;\n textStyle?: TextStyle;\n}\n\n/** @oneof */\nexport interface ContainerDataOneOf {\n /** containers */\n main?: Main;\n section?: Section;\n drillInListItem?: DrillInListItem;\n /** items */\n thumbnails?: Thumbnails;\n sliderLabeled?: SliderLabeled;\n dropDownLabeled?: DropDownLabeled;\n toggleLabeled?: ToggleLabeled;\n barAlignment?: BarAlignment;\n textInputLabeled?: TextInputLabeled;\n resetButton?: ResetButton;\n fontFamilyWithColorPicker?: FontFamilyWithColorPicker;\n radioButtonLabeled?: RadioButtonLabeled;\n colorSelectLabeled?: ColorSelectLabeled;\n textStyle?: TextStyle;\n}\n\n/** Main 1 */\nexport interface Main {\n items?: MainPropsData[];\n}\n\n/** MainPropsData */\nexport interface MainPropsData {\n dashboardButton?: DashboardButton;\n richTextWithIllustrationVertical?: RichTextWithIllustrationVertical;\n}\n\n/** DashboardButton main 2 */\nexport interface DashboardButton {\n title?: string;\n label?: string;\n}\n\n/** RichTextWithIllustrationVertical main 1 */\nexport interface RichTextWithIllustrationVertical {\n key?: string;\n label?: string;\n text?: string;\n}\n\n/** Section 2 */\nexport interface Section {\n label?: string;\n}\n\n/** DrillInListItem 3 */\nexport interface DrillInListItem {\n items?: DrillItem[];\n label?: string;\n}\n\n/** DrillItem */\nexport interface DrillItem extends DrillItemDataOneOf {\n /** containers */\n section?: Section;\n /** items */\n radioButtonLabeled?: RadioButtonLabeled;\n colorSelectLabeled?: ColorSelectLabeled;\n thumbnails?: Thumbnails;\n sliderLabeled?: SliderLabeled;\n dropDownLabeled?: DropDownLabeled;\n toggleLabeled?: ToggleLabeled;\n barAlignment?: BarAlignment;\n textInputLabeled?: TextInputLabeled;\n fontFamilyWithColorPicker?: FontFamilyWithColorPicker;\n textStyle?: TextStyle;\n}\n\n/** @oneof */\nexport interface DrillItemDataOneOf {\n /** containers */\n section?: Section;\n /** items */\n radioButtonLabeled?: RadioButtonLabeled;\n colorSelectLabeled?: ColorSelectLabeled;\n thumbnails?: Thumbnails;\n sliderLabeled?: SliderLabeled;\n dropDownLabeled?: DropDownLabeled;\n toggleLabeled?: ToggleLabeled;\n barAlignment?: BarAlignment;\n textInputLabeled?: TextInputLabeled;\n fontFamilyWithColorPicker?: FontFamilyWithColorPicker;\n textStyle?: TextStyle;\n}\n\n/** RadioButtonLabeled 12 */\nexport interface RadioButtonLabeled {\n key?: string;\n title?: string;\n value?: string;\n options?: string[];\n description?: string;\n conditions?: Condition[];\n}\n\nexport interface Condition {\n value?: string;\n state?: SingleKeyCondition[];\n}\n\nexport interface SingleKeyCondition {\n key?: string;\n value?: string;\n visible?: boolean;\n}\n\n/** ColorSelectLabeled 13 */\nexport interface ColorSelectLabeled extends ColorSelectLabeledDataOneOf {\n customColor?: ColorDefinition;\n templateColor?: TemplateDefaultColorWithLiterals;\n title?: string;\n key?: string;\n /** @deprecated */\n color?: string;\n defaultData?: ColorDefinition;\n description?: string;\n}\n\n/** @oneof */\nexport interface ColorSelectLabeledDataOneOf {\n customColor?: ColorDefinition;\n templateColor?: TemplateDefaultColorWithLiterals;\n}\n\nexport interface ColorDefinition {\n value?: string;\n opacity?: string;\n}\n\nexport enum TemplateDefaultColor {\n BACKGROUND = 'BACKGROUND',\n SECONDARY_TEXTS = 'SECONDARY_TEXTS',\n MAIN_TEXT_AND_ICONS = 'MAIN_TEXT_AND_ICONS',\n BORDERS_AND_DIVIDERS = 'BORDERS_AND_DIVIDERS',\n BUTTONS_AND_LINKS = 'BUTTONS_AND_LINKS',\n}\n\n/** @enumType */\nexport type TemplateDefaultColorWithLiterals =\n | TemplateDefaultColor\n | 'BACKGROUND'\n | 'SECONDARY_TEXTS'\n | 'MAIN_TEXT_AND_ICONS'\n | 'BORDERS_AND_DIVIDERS'\n | 'BUTTONS_AND_LINKS';\n\n/** Thumbnails 4 */\nexport interface Thumbnails {\n key?: string;\n title?: string;\n value?: string;\n options?: ThumbnailData[];\n size?: ThumbnailsSizeWithLiterals;\n description?: string;\n conditions?: Condition[];\n}\n\n/** Structure for thumbnail */\nexport interface ThumbnailData {\n value?: string;\n /** @format WEB_URL */\n src?: string | null;\n /** @format WEB_URL */\n selectedSrc?: string | null;\n /** @format WEB_URL */\n onHoverSrc?: string | null;\n label?: string;\n}\n\nexport enum ThumbnailsSize {\n SMALL = 'SMALL',\n MEDIUM = 'MEDIUM',\n LARGE = 'LARGE',\n XLARGE = 'XLARGE',\n}\n\n/** @enumType */\nexport type ThumbnailsSizeWithLiterals =\n | ThumbnailsSize\n | 'SMALL'\n | 'MEDIUM'\n | 'LARGE'\n | 'XLARGE';\n\n/** SliderLabeled 5 */\nexport interface SliderLabeled {\n key?: string;\n title?: string;\n size?: string;\n placeholder?: string;\n description?: string;\n minSize?: number;\n maxSize?: number;\n}\n\n/** DropDownLabeled 6 */\nexport interface DropDownLabeled {\n key?: string;\n title?: string;\n value?: string;\n options?: string[];\n description?: string;\n conditions?: Condition[];\n}\n\n/** ToggleLabeled 7 */\nexport interface ToggleLabeled {\n key?: string;\n title?: string;\n value?: boolean;\n description?: string;\n conditions?: Condition[];\n}\n\n/**\n * Elements =========\n * BarAlignment 8\n */\nexport interface BarAlignment {\n /** @deprecated */\n selected?: BarAlignmentSelectedWithLiterals;\n key?: string;\n title?: string;\n description?: string;\n value?: BarAlignmentSelectedWithLiterals;\n conditions?: Condition[];\n}\n\n/** Bar alignment selected value */\nexport enum BarAlignmentSelected {\n ALIGN_LEFT = 'ALIGN_LEFT',\n ALIGN_CENTER = 'ALIGN_CENTER',\n ALIGN_RIGHT = 'ALIGN_RIGHT',\n}\n\n/** @enumType */\nexport type BarAlignmentSelectedWithLiterals =\n | BarAlignmentSelected\n | 'ALIGN_LEFT'\n | 'ALIGN_CENTER'\n | 'ALIGN_RIGHT';\n\n/** TextInputLabeled 9 */\nexport interface TextInputLabeled {\n key?: string;\n title?: string;\n placeholder?: string;\n value?: string;\n description?: string;\n}\n\n/** 11 */\nexport interface FontFamilyWithColorPicker {\n key?: string;\n title?: string;\n description?: string;\n value?: FontDefinition;\n defaultValue?: FontDefinition;\n}\n\n/** defintion and enums */\nexport interface FontDefinition {\n font?: string;\n color?: ColorDefinition;\n}\n\n/** TextStyle 14 */\nexport interface TextStyle extends TextStyleDefaultColorOneOf {\n customColor?: ColorDefinition;\n templateColor?: TemplateDefaultColorWithLiterals;\n key?: string;\n title?: string;\n description?: string;\n defaultTextStyle?: DefaultTextStyleWithLiterals;\n}\n\n/** @oneof */\nexport interface TextStyleDefaultColorOneOf {\n customColor?: ColorDefinition;\n templateColor?: TemplateDefaultColorWithLiterals;\n}\n\nexport enum DefaultTextStyle {\n TITLE = 'TITLE',\n PARAGRAPH = 'PARAGRAPH',\n LOWER_HIERARCHY_TEXTS = 'LOWER_HIERARCHY_TEXTS',\n}\n\n/** @enumType */\nexport type DefaultTextStyleWithLiterals =\n | DefaultTextStyle\n | 'TITLE'\n | 'PARAGRAPH'\n | 'LOWER_HIERARCHY_TEXTS';\n\n/** 10 */\nexport interface ResetButton {\n label?: string;\n}\n\nexport enum WebComponentDataElementType {\n WIDGET = 'WIDGET',\n PAGE = 'PAGE',\n}\n\n/** @enumType */\nexport type WebComponentDataElementTypeWithLiterals =\n | WebComponentDataElementType\n | 'WIDGET'\n | 'PAGE';\n\nexport interface WidgetDetails {\n name?: string | null;\n icon?: string | null;\n description?: string | null;\n}\n\nexport enum ScriptType {\n NO_SCRIPT_TYPE = 'NO_SCRIPT_TYPE',\n MODULE = 'MODULE',\n}\n\n/** @enumType */\nexport type ScriptTypeWithLiterals = ScriptType | 'NO_SCRIPT_TYPE' | 'MODULE';\n\nexport interface WidgetBehavior {\n /** Toggle whether the widget is removable from the page. */\n removable?: boolean;\n /** Toggle whether the widget is duplicatable from the page. */\n duplicatable?: boolean;\n}\n\nexport interface ExtensionData {\n data?: string;\n extensionType?: ExtensionTypeWithLiterals;\n}\n\nexport enum ExtensionType {\n NONE_EXTENSION = 'NONE_EXTENSION',\n PAYMENTS_GATEWAY_EXTENSION = 'PAYMENTS_GATEWAY_EXTENSION',\n COUPONS_EXTENSION = 'COUPONS_EXTENSION',\n DROPSHIPPING_EXTENSION = 'DROPSHIPPING_EXTENSION',\n FULFILMENT_EXTENSION = 'FULFILMENT_EXTENSION',\n DROPSHIPPING_SUPPLIER_EXTENSION = 'DROPSHIPPING_SUPPLIER_EXTENSION',\n FULFILLMENT_CENTER_EXTENSION = 'FULFILLMENT_CENTER_EXTENSION',\n RESTAURANTS_POS_EXTENSION = 'RESTAURANTS_POS_EXTENSION',\n ART_STORE_EXTENSION = 'ART_STORE_EXTENSION',\n ASCEND_AUTOMATION_EXTENSION = 'ASCEND_AUTOMATION_EXTENSION',\n CONTACT_LABELS_EXTENSION = 'CONTACT_LABELS_EXTENSION',\n}\n\n/** @enumType */\nexport type ExtensionTypeWithLiterals =\n | ExtensionType\n | 'NONE_EXTENSION'\n | 'PAYMENTS_GATEWAY_EXTENSION'\n | 'COUPONS_EXTENSION'\n | 'DROPSHIPPING_EXTENSION'\n | 'FULFILMENT_EXTENSION'\n | 'DROPSHIPPING_SUPPLIER_EXTENSION'\n | 'FULFILLMENT_CENTER_EXTENSION'\n | 'RESTAURANTS_POS_EXTENSION'\n | 'ART_STORE_EXTENSION'\n | 'ASCEND_AUTOMATION_EXTENSION'\n | 'CONTACT_LABELS_EXTENSION';\n\nexport interface SnippetSolutionData {\n code?: string;\n instructions?: string;\n}\n\n/** An extension for adding data collections to a site when the app is installed. */\nexport interface DataComponent {\n /**\n * Data collections automatically added to a site when the app is installed.\n * @maxSize 100\n */\n collections?: Collection[];\n}\n\nexport interface Field extends FieldTypeOptionsOneOf {\n /** Metadata for a reference field. */\n referenceOptions?: ReferenceOptions;\n /** Metadata for a multi-reference field. */\n multiReferenceOptions?: MultiReferenceOptions;\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n /**\n * Required. Unique identifier for the field. For example, `firstName`.\n * @minLength 1\n * @maxLength 1000\n */\n key?: string;\n /**\n * Field's display name when displayed in the CMS. For example, `First Name`.\n * @minLength 1\n * @maxLength 1000\n */\n displayName?: string | null;\n /**\n * Required. Field's data type.\n *\n * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).\n */\n type?: FieldTypeWithLiterals;\n /** Whether the field is encrypted. */\n encrypted?: boolean;\n /**\n * Field description.\n * @maxLength 16000\n */\n description?: string | null;\n}\n\n/** @oneof */\nexport interface FieldTypeOptionsOneOf {\n /** Metadata for a reference field. */\n referenceOptions?: ReferenceOptions;\n /** Metadata for a multi-reference field. */\n multiReferenceOptions?: MultiReferenceOptions;\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n}\n\nexport enum FieldType {\n UNKNOWN_FIELD_TYPE = 'UNKNOWN_FIELD_TYPE',\n /** Plain-text string. */\n TEXT = 'TEXT',\n /** Number. */\n NUMBER = 'NUMBER',\n /** Date string in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DD`. */\n DATE = 'DATE',\n /** [JavaScript Date object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) (SDK) or an object in the following format: `\"someFieldKey\": { \"$date\": \"YYYY-MM-DDTHH:mm:ss.sssZ\"}`. */\n DATETIME = 'DATETIME',\n /** Web URL or a [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URL. */\n IMAGE = 'IMAGE',\n /** Boolean `true` or `false` value. */\n BOOLEAN = 'BOOLEAN',\n /** Web URL or a [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URL. */\n DOCUMENT = 'DOCUMENT',\n /** URL in one of the following formats: `http://`, `https://`, `ftp://`, `mailto:`, `sms:`, `tel:`. */\n URL = 'URL',\n /** [Rich-text](https://dev.wix.com/docs/rest/articles/getting-started/rich-text) string that may contain a subset of HTML tags. */\n RICH_TEXT = 'RICH_TEXT',\n /** Web URL or a [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URL. */\n VIDEO = 'VIDEO',\n /** Any field type. */\n ANY = 'ANY',\n /** Array of strings. */\n ARRAY_STRING = 'ARRAY_STRING',\n /** Array of documents: web or [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URLs. */\n ARRAY_DOCUMENT = 'ARRAY_DOCUMENT',\n /** Web URL or a [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URL. */\n AUDIO = 'AUDIO',\n /** Time string in `hh:mm:ss.SSS` format. */\n TIME = 'TIME',\n /** Language codes in [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format. These may include country codes in [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#officially_assigned_code_elements) format. */\n LANGUAGE = 'LANGUAGE',\n /** [Rich content](https://dev.wix.com/docs/ricos/getting-started/introduction). */\n RICH_CONTENT = 'RICH_CONTENT',\n /** Array of web or [Media Manager](https://dev.wix.com/docs/rest/assets/media/media-manager/introduction) URLs. */\n MEDIA_GALLERY = 'MEDIA_GALLERY',\n /** Physical [address object](https://dev.wix.com/docs/api-reference/business-solutions/cms/data-types-in-wix-data#address-object). */\n ADDRESS = 'ADDRESS',\n /**\n * Reference to another item in another collection. See [Query Referenced Data Items](https://dev.wix.com/docs/api-reference/business-solutions/cms/data-items/query-referenced-data-items) to learn about item references.\n *\n * If you select this type, then you must pass the `referencedCollectionId` field as well.\n */\n REFERENCE = 'REFERENCE',\n /** References to multiple items in another collection. See [Query Referenced Data Items](https://dev.wix.com/docs/api-reference/business-solutions/cms/data-items/query-referenced-data-items) to learn about item references. */\n MULTI_REFERENCE = 'MULTI_REFERENCE',\n /** JSON object. */\n OBJECT = 'OBJECT',\n /** Array. */\n ARRAY = 'ARRAY',\n}\n\n/** @enumType */\nexport type FieldTypeWithLiterals =\n | FieldType\n | 'UNKNOWN_FIELD_TYPE'\n | 'TEXT'\n | 'NUMBER'\n | 'DATE'\n | 'DATETIME'\n | 'IMAGE'\n | 'BOOLEAN'\n | 'DOCUMENT'\n | 'URL'\n | 'RICH_TEXT'\n | 'VIDEO'\n | 'ANY'\n | 'ARRAY_STRING'\n | 'ARRAY_DOCUMENT'\n | 'AUDIO'\n | 'TIME'\n | 'LANGUAGE'\n | 'RICH_CONTENT'\n | 'MEDIA_GALLERY'\n | 'ADDRESS'\n | 'REFERENCE'\n | 'MULTI_REFERENCE'\n | 'OBJECT'\n | 'ARRAY';\n\nexport interface ObjectOptions {\n /**\n * Fields within the object.\n * @maxSize 1000\n */\n fields?: ObjectField[];\n}\n\nexport interface ArrayOptions extends ArrayOptionsElementTypeOptionsOneOf {\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n /** Element's data type. */\n elementType?: FieldTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ArrayOptionsElementTypeOptionsOneOf {\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n}\n\nexport interface ObjectField extends ObjectFieldTypeOptionsOneOf {\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n /**\n * Field ID.\n * @minLength 1\n * @maxLength 1000\n */\n key?: string;\n /**\n * Display name for the field.\n * @minLength 1\n * @maxLength 1000\n */\n displayName?: string | null;\n /**\n * Field type.\n *\n * Learn more about [data types in Wix Data](https://dev.wix.com/docs/rest/business-solutions/cms/data-types-in-wix-data).\n */\n type?: FieldTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ObjectFieldTypeOptionsOneOf {\n /** Metadata for an object field. */\n objectOptions?: ObjectOptions;\n /** Metadata for an array field. */\n arrayOptions?: ArrayOptions;\n}\n\nexport interface ReferenceOptions {\n /**\n * Referenced collection ID.\n * @minLength 1\n * @maxLength 256\n */\n referencedCollectionId?: string;\n}\n\nexport interface MultiReferenceOptions {\n /**\n * Referenced collection ID.\n * @minLength 1\n * @maxLength 256\n */\n referencedCollectionId?: string;\n}\n\n/** Data permissions defined by access level for each action. */\nexport interface DataPermissions {\n /** Required. Access level required to read data items. */\n itemRead?: AccessLevelWithLiterals;\n /** Required. Access level required to insert data items. */\n itemInsert?: AccessLevelWithLiterals;\n /** Required. Access level required to update data items. */\n itemUpdate?: AccessLevelWithLiterals;\n /** Required. Access level required to remove data items. */\n itemRemove?: AccessLevelWithLiterals;\n}\n\n/**\n * Describes who can perform certain action.\n * Each level includes all levels below it (except UNDEFINED).\n */\nexport enum AccessLevel {\n /** Not set. */\n UNDEFINED = 'UNDEFINED',\n /** Anyone, including site visitors. */\n ANYONE = 'ANYONE',\n /** Any signed-in user, including site members and collaborators. */\n SITE_MEMBER = 'SITE_MEMBER',\n /** Any signed-in user, but site members only have access to their own items. */\n SITE_MEMBER_AUTHOR = 'SITE_MEMBER_AUTHOR',\n /** Site collaborator that has a role with CMS access permission. */\n CMS_EDITOR = 'CMS_EDITOR',\n /** CMS administrators and users or roles granted special access. */\n PRIVILEGED = 'PRIVILEGED',\n}\n\n/** @enumType */\nexport type AccessLevelWithLiterals =\n | AccessLevel\n | 'UNDEFINED'\n | 'ANYONE'\n | 'SITE_MEMBER'\n | 'SITE_MEMBER_AUTHOR'\n | 'CMS_EDITOR'\n | 'PRIVILEGED';\n\nexport interface Index {\n /**\n * Fields for which the index is defined.\n *\n * Max: 3 fields (for a unique index: 1 field)\n * @minSize 1\n * @maxSize 3\n */\n fields?: IndexField[];\n /**\n * Whether the index enforces uniqueness of values in the field for which it is defined.\n * If `true`, the index can have only one field.\n *\n * Default: `false`\n */\n unique?: boolean;\n}\n\n/**\n * Order determines how values are ordered in the index. This is important when\n * ordering and/or range querying by indexed fields.\n */\nexport enum Order {\n ASC = 'ASC',\n DESC = 'DESC',\n}\n\n/** @enumType */\nexport type OrderWithLiterals = Order | 'ASC' | 'DESC';\n\nexport interface IndexField {\n /**\n * Path of the field to index. For example: `title` or `options.price`.\n * @minLength 1\n * @maxLength 128\n */\n path?: string;\n /**\n * Sort order for the index. Base on how the data is regularly queried.\n *\n * Default: `ASC`\n */\n order?: OrderWithLiterals;\n}\n\nexport interface Collection {\n /**\n * Required. Collection ID suffix. The app namespace is automatically prepended in the CMS.\n * For example, the full ID for `my-products-1` becomes `@company/app-name/my-products-1`.\n * @maxLength 256\n */\n idSuffix?: string;\n /**\n * Collection's display name as shown in the CMS. For example, `My First Collection`.\n * @minLength 1\n * @maxLength 1000\n */\n displayName?: string | null;\n /**\n * Field whose value the CMS displays to represent the collection item when referenced in a different collection.\n * @minLength 1\n * @maxLength 1000\n */\n displayField?: string | null;\n /**\n * Required. Collection's field structure.\n * @minSize 1\n * @maxSize 1000\n */\n fields?: Field[];\n /** Required. Levels of permission for accessing and modifying data, defined by the lowest role needed to perform each action. */\n dataPermissions?: DataPermissions;\n /**\n * Indexes defined for the collection. An index is a map of a collection's data, organized according to specific fields to increase query speed.\n * @maxSize 3\n */\n indexes?: Index[];\n /**\n * Optional initial data to populate the collection with.\n * @maxSize 1000\n */\n initialData?: Record<string, any>[] | null;\n}\n\nexport interface DCConfigData {\n isVisualApp?: boolean;\n}\n\nexport interface StaticFileComponentData {\n /** @format WEB_URL */\n url?: string;\n}\n\nexport interface AppConfig {\n siteConfig?: SiteConfig;\n namespace?: string;\n}\n\nexport interface SiteConfig {\n /**\n * todo: WEB_URL\n * @maxLength 1000\n */\n siteStructureApi?: string | null;\n}\n\n/**\n * Business Manager sidebar category that contains sidebar links.\n * each link in the category opens in the business manager in an iframe.\n */\nexport interface MultipleDashboardsComponentData {\n /** items inside the category */\n items?: DashboardItem[];\n}\n\n/**\n * a single dashboard page,\n * represented in Business Manager as sidebar link that opens in an iframe\n */\nexport interface DashboardItem {\n /** name of the sidebar link of the page */\n label?: string;\n /** data about the current page */\n dashboardData?: DashboardComponentData;\n /** permission to check for this page. */\n permissionId?: string | null;\n}\n\n/** Test component extension */\nexport interface PaymentsGatewayComponentData {\n /**\n * The shop url\n * @format WEB_URL\n */\n shopUrl?: string;\n}\n\nexport interface AutomationTrigger {\n /**\n * The name that will be passed with trigger report event to activate an Automation.\n * @maxLength 80\n */\n name?: string;\n /**\n * The name displayed to the user.\n * @maxLength 80\n */\n displayName?: string;\n /** The schema of the payload that will be passed with trigger when activating an Automation. */\n schemaConfig?: SchemaConfig;\n deploymentUri?: string;\n revision?: number;\n}\n\nexport interface SchemaConfig {\n /** The fields of the payload as sent in the report event */\n fields?: SchemaField[];\n /**\n * Dynamic schema service URL.\n * Dynamic schema is used when user needs to choose specific entities from site to activate the Automation.\n * For example form name, purchased product, etc.\n * @format WEB_URL\n */\n dynamicSchemaUrl?: string | null;\n}\n\nexport interface SchemaField {\n /** The key as it appears on the report event payload. */\n key?: string;\n /** The name displayed to the user. */\n displayName?: string;\n /** The field type */\n fieldType?: SchemaFieldType;\n /** Sample values, values that could show up in the payload of a trigger. */\n sampleValues?: string[];\n /** The field exposure */\n exposure?: SchemaFieldExposureWithLiterals;\n}\n\nexport enum PrimitiveType {\n UNKNOWN_PRIMITIVE_TYPE = 'UNKNOWN_PRIMITIVE_TYPE',\n TEXT = 'TEXT',\n BOOLEAN = 'BOOLEAN',\n NUMBER = 'NUMBER',\n}\n\n/** @enumType */\nexport type PrimitiveTypeWithLiterals =\n | PrimitiveType\n | 'UNKNOWN_PRIMITIVE_TYPE'\n | 'TEXT'\n | 'BOOLEAN'\n | 'NUMBER';\n\nexport enum SimpleType {\n UNKNOWN_SIMPLE_TYPE = 'UNKNOWN_SIMPLE_TYPE',\n MONEY = 'MONEY',\n LINK = 'LINK',\n BACKOFFICE_LINK = 'BACKOFFICE_LINK',\n LIVESITE_LINK = 'LIVESITE_LINK',\n MULTILINGUAL = 'MULTILINGUAL',\n IMAGE_LINK = 'IMAGE_LINK',\n GUID = 'GUID',\n EMAIL = 'EMAIL',\n PHONE = 'PHONE',\n CONTACT_ID = 'CONTACT_ID',\n}\n\n/** @enumType */\nexport type SimpleTypeWithLiterals =\n | SimpleType\n | 'UNKNOWN_SIMPLE_TYPE'\n | 'MONEY'\n | 'LINK'\n | 'BACKOFFICE_LINK'\n | 'LIVESITE_LINK'\n | 'MULTILINGUAL'\n | 'IMAGE_LINK'\n | 'GUID'\n | 'EMAIL'\n | 'PHONE'\n | 'CONTACT_ID';\n\nexport interface Primitive {\n primitiveType?: PrimitiveTypeWithLiterals;\n}\n\nexport interface Simple {\n simpleType?: SimpleTypeWithLiterals;\n}\n\nexport interface _Date {\n /** Default: false, set this to true if the date is normally a future date, like: Invoice expiration date, Membership renewal date */\n allowNegativeOffset?: boolean | null;\n}\n\nexport interface SchemaFieldType extends SchemaFieldTypeFieldTypeOneOf {\n primitive?: Primitive;\n simple?: Simple;\n /**\n * The field value must conform to the following JSON structure { \"timestamp\": string, \"timeZone\": string }, where the timestamp is ISO format UTC, and the time zone is the full name\n * Example: { \"timestamp\": \"2021-03-22T11:41:47.992Z\", timeZone: \"Asia/Jerusalem\" }\n */\n date?: _Date;\n}\n\n/** @oneof */\nexport interface SchemaFieldTypeFieldTypeOneOf {\n primitive?: Primitive;\n simple?: Simple;\n /**\n * The field value must conform to the following JSON structure { \"timestamp\": string, \"timeZone\": string }, where the timestamp is ISO format UTC, and the time zone is the full name\n * Example: { \"timestamp\": \"2021-03-22T11:41:47.992Z\", timeZone: \"Asia/Jerusalem\" }\n */\n date?: _Date;\n}\n\nexport enum SchemaFieldExposure {\n UNKNOWN_EXPOSURE = 'UNKNOWN_EXPOSURE',\n /** Not sent to the action provider */\n SETUP = 'SETUP',\n /** Sent to the action provider and usually hidden from user */\n HIDDEN = 'HIDDEN',\n /** Sent to the action provider and usually shown to user */\n EXPOSED = 'EXPOSED',\n}\n\n/** @enumType */\nexport type SchemaFieldExposureWithLiterals =\n | SchemaFieldExposure\n | 'UNKNOWN_EXPOSURE'\n | 'SETUP'\n | 'HIDDEN'\n | 'EXPOSED';\n\n/** represents Invoices integration policies */\nexport interface InvoicesActionsComponentData {\n /** partial payment restriction on invoice */\n partialPayment?: PartialPaymentRestrictionWithLiterals;\n}\n\n/** Possible Partial Payment Policy Values */\nexport enum PartialPaymentRestriction {\n UNDEFINED = 'UNDEFINED',\n /** Allow Partial Payment */\n ALLOW = 'ALLOW',\n /** Disallow Partial Payment */\n DISALLOW = 'DISALLOW',\n}\n\n/** @enumType */\nexport type PartialPaymentRestrictionWithLiterals =\n | PartialPaymentRestriction\n | 'UNDEFINED'\n | 'ALLOW'\n | 'DISALLOW';\n\n/** Experimental-WIP: Specifies the app module configuration of business manager module */\nexport interface DashboardApplicationData {\n /**\n * List of bundles to be loaded for your module\n * @minSize 1\n */\n bundles?: Bundle[];\n /**\n * Your module id as defined in business-manager-api\n * @minLength 2\n * @maxLength 64\n */\n _id?: string | null;\n /** List of available page components that your module is registering */\n pageComponents?: PageDashboardApplicationComponent[];\n /** The default component to load when another app navigates to your module */\n defaultPageComponentId?: string | null;\n /** Config section that will be provided to your lazy component and component along with all other properties from business-manager, if your config object will contain topology parameter, you'll be able to benefit from statics override machanism */\n config?: AppConfiguration;\n /** Allows an application to declare that when it's opened inside the business-manager without a deeplink the business-manager home should be shown. It currently only affects opening the app from Editor/ADI */\n useHomeAsLandingPage?: boolean | null;\n /** If there are some experiments that define if this page should be enabled, list of experiment lists with OR relationship between them, experiments should be in business manager scope */\n enabledByExperiments?: ExperimentGroupWrapper[];\n /** If this module should load in absence of any pages, by default this won't run */\n loadWithoutPages?: boolean | null;\n /** List of hosted component of the application */\n components?: HostedComponent[];\n}\n\n/** Specifes business manager module file bundle */\nexport interface Bundle {\n /**\n * The JavaScript file to load\n * @format WEB_URL\n */\n file?: string;\n /** If there are some experiments that define if this page should be enabled, list of experiment lists with OR relationship between them, experiments should be in business manager scope */\n enabledByExperiments?: ExperimentGroupWrapper[];\n /**\n * A alternative debug file for debugging issues\n * @format WEB_URL\n */\n debugFile?: string | null;\n}\n\n/** Specifies a list of experiments that have AND relationship between them, and OR relationship between each list */\nexport interface ExperimentGroupWrapper {\n /**\n * list of experiments with AND relationship between them, for false value use ! before experiment spec\n * @minSize 1\n */\n experimentsGroup?: string[];\n}\n\n/** Specifies page components for a business manager module */\nexport interface PageDashboardApplicationComponent {\n /**\n * The id of the page\n * @minLength 1\n */\n _id?: string;\n /**\n * The route of the page, the part of the url after /dashboard/{msid}/ (must be unique in the specific application)\n * @minLength 1\n */\n route?: string;\n /**\n * The name you used to register this component to the ModuleRegistry (must be unique across apps)\n * @minLength 1\n */\n name?: string;\n /** If there are some experiments that define if this page should be enabled, list of experiment lists with OR relationship between them, experiments should be in business manager scope. */\n enabledByExperiments?: ExperimentGroupWrapper[];\n /** Additional routes to the page */\n routeAliases?: string[];\n}\n\n/** Specifies config for topology and config data */\nexport interface AppConfiguration {\n /** A map of topology key to template url */\n topology?: Record<string, string>;\n /** Config section that will be provided to your lazy component and component along with all other properties from business-manager, if your config object will contain topology parameter */\n configData?: Record<string, string>;\n}\n\n/** Specifes business hosted component configuration */\nexport interface HostedComponent {\n /**\n * A unique id for the component, maps between the host and name\n * @minLength 1\n */\n _id?: string;\n /**\n * The component name used in registerComponentWithModuleParams components can be shared by using the same name but a unique id\n * @minLength 1\n */\n name?: string;\n /** Permissions required for the component, this is not strictly enforced */\n requiredPermission?: string;\n /** Represents the collection of components where the component will be hosted, get this value from the host provider. */\n hostContainerId?: HostContainerIdWithLiterals;\n /** If there are some experiments that define if this page should be enabled, list of experiment lists with OR relationship between them, experiments should be in business manager scope */\n enabledByExperiments?: ExperimentGroupWrapper[];\n /** A URI used to send component error events */\n errorReporting?: ErrorReporting;\n}\n\nexport enum HostContainerId {\n BUSINESS_MANAGER = 'BUSINESS_MANAGER',\n BUSINESS_DASHBOARD_HOST = 'BUSINESS_DASHBOARD_HOST',\n SIDEBAR_FOOTER = 'SIDEBAR_FOOTER',\n}\n\n/** @enumType */\nexport type HostContainerIdWithLiterals =\n | HostContainerId\n | 'BUSINESS_MANAGER'\n | 'BUSINESS_DASHBOARD_HOST'\n | 'SIDEBAR_FOOTER';\n\n/** Contact Labels Extensions */\nexport interface ContactLabelsComponentData {\n /** Whether apps can create labels in this namespace. */\n allowAppDefinedLabels?: boolean | null;\n /**\n * Required permissions to manage app-defined labels.\n * Only apps with these permission will be able to create labels in this namespace.\n * Relevant if `allow_app_defined_labels` is `true`.\n */\n permission?: string | null;\n /** Predefined labels that exist on all sites that install the app. */\n predefinedLabels?: PredefinedLabel[];\n}\n\nexport interface PredefinedLabel {\n /**\n * Unique key. Can contain letters, dashes, or underscores.\n * For example, `\"secondary-hobby\"`.\n * @minLength 1\n * @maxLength 50\n */\n key?: string;\n /**\n * Display name.\n * For example, `\"Secondary Hobby\"`.\n * @minLength 1\n * @maxLength 180\n */\n displayName?: string;\n}\n\n/** A component to be rendered within Widget Slots */\nexport interface WidgetPluginComponentData {\n /**\n * ID of the widget used for the plugin component.\n * @format GUID\n */\n referenceComponentId?: string;\n /** APIs implemented by the Plugin's widget. */\n pluginInterfaces?: PluginInterfaceWithLiterals[];\n /** Marketing information about the plugin. */\n marketData?: PluginMarketData;\n /** List of placements where the plugin is allowed to be installed. */\n placements?: PluginPlacement[];\n /** Widget plugin installation settings. */\n installation?: PluginInstallationSettings;\n}\n\n/** Marketing information about the plugin. */\nexport interface PluginMarketData {\n /**\n * Plugin name.\n * @minLength 1\n * @maxLength 50\n */\n name?: string;\n /**\n * Plugin description.\n * @maxLength 130\n */\n description?: string;\n /**\n * Plugin logo. 35x35px in JPG or PNG format.\n * @format WEB_URL\n */\n logoUrl?: string | null;\n}\n\n/** Combination of IDs that uniquely identify a slot in the app component. */\nexport interface PluginPlacement {\n /**\n * Slot app definition ID.\n * @format GUID\n */\n appDefinitionId?: string;\n /**\n * Slot app component ID.\n * @format GUID\n */\n widgetId?: string;\n /**\n * Slot ID.\n * @minLength 1\n */\n slotId?: string;\n}\n\nexport interface PluginInstallationSettings {\n /** Shared installation settings for unified components */\n base?: BaseInstallation;\n}\n\nexport interface CrossSellConfig {\n /** uri for call implementor, could be one of `grpc://<artifact-name>`, `velo://`, `https://` */\n baseUri?: string;\n}\n\n/** Local Delivery component */\nexport interface LocalDeliveryComponentData {\n /**\n * URL for the Delivery provider registration web page.\n * The App Instance and Account Id query parameters are attached to the registration URL\n * so that you can identify your account when accessing the vendor api. [learn more](https://devforum.wix.com/en/article/app-instance)\n * @format WEB_URL\n */\n registrationUrl?: string;\n /**\n * The base URL for all the local delivery api calls.\n * Description of end points and schema can be find in the local delivery documentation.\n */\n apiBaseUri?: string;\n}\n\n/** Configuration for the payment service SPI implementor */\nexport interface PaymentServiceProviderConfig {\n /**\n * Payment service provider to display on Accept payments tab in Business manager\n * @minLength 1\n */\n title?: string;\n /** SPI base url */\n baseUrl?: string;\n /** Available payment methods */\n paymentMethods?: PaymentMethod[];\n /** Provider authentication methods */\n credentialsFields?: PaymentServiceProviderCredentialsField[];\n}\n\nexport interface PaymentMethod extends PaymentMethodMethodOneOf {\n /** Information about hosted page payment method */\n hostedPage?: HostedPage;\n}\n\n/** @oneof */\nexport interface PaymentMethodMethodOneOf {\n /** Information about hosted page payment method */\n hostedPage?: HostedPage;\n}\n\nexport interface HostedPage {\n /**\n * The payment method title to be will be displayed on accept payments tab in business manager as well as on the checkout\n * @minLength 1\n */\n title?: string;\n /** Url to images in different formats and colors */\n logos?: Logos;\n /** Billing address fields that buyer needs to fill in order to process payment with the specified payment method */\n billingAddressMandatoryFields?: MandatoryFieldWithLiterals[];\n}\n\nexport interface Logos {\n /** white theme logos */\n white?: Color;\n /** colored theme logos */\n colored?: Color;\n}\n\nexport interface Color {\n /**\n * URL to SVG image\n * @format WEB_URL\n */\n svg?: string;\n /**\n * URL to PNG image\n * @format WEB_URL\n */\n png?: string;\n}\n\nexport enum MandatoryField {\n ZIPCODE = 'ZIPCODE',\n CITY = 'CITY',\n STATE = 'STATE',\n ADDRESS = 'ADDRESS',\n COUNTRY_CODE = 'COUNTRY_CODE',\n EMAIL = 'EMAIL',\n PHONE = 'PHONE',\n FIRST_NAME = 'FIRST_NAME',\n LAST_NAME = 'LAST_NAME',\n STREET = 'STREET',\n HOUSE_NUMBER = 'HOUSE_NUMBER',\n TAX_IDENTIFIER = 'TAX_IDENTIFIER',\n}\n\n/** @enumType */\nexport type MandatoryFieldWithLiterals =\n | MandatoryField\n | 'ZIPCODE'\n | 'CITY'\n | 'STATE'\n | 'ADDRESS'\n | 'COUNTRY_CODE'\n | 'EMAIL'\n | 'PHONE'\n | 'FIRST_NAME'\n | 'LAST_NAME'\n | 'STREET'\n | 'HOUSE_NUMBER'\n | 'TAX_IDENTIFIER';\n\nexport interface PaymentServiceProviderCredentialsField\n extends PaymentServiceProviderCredentialsFieldFieldOneOf {\n /** text field */\n simpleField?: SimpleField;\n /** checkbox field */\n checkboxField?: CheckboxField;\n /** dropdown field */\n dropdownField?: DropdownField;\n}\n\n/** @oneof */\nexport interface PaymentServiceProviderCredentialsFieldFieldOneOf {\n /** text field */\n simpleField?: SimpleField;\n /** checkbox field */\n checkboxField?: CheckboxField;\n /** dropdown field */\n dropdownField?: DropdownField;\n}\n\nexport interface SimpleField {\n /**\n * field name\n * @minLength 1\n */\n name?: string;\n /**\n * field label\n * @minLength 1\n */\n label?: string;\n}\n\nexport interface CheckboxField {\n /**\n * field name\n * @minLength 1\n */\n name?: string;\n /**\n * field label\n * @minLength 1\n */\n label?: string;\n /** field tooltip */\n tooltip?: string | null;\n}\n\nexport interface DropdownField {\n /**\n * field name\n * @minLength 1\n */\n name?: string;\n /**\n * field label\n * @minLength 1\n */\n label?: string;\n /** specific options */\n options?: DropdownFieldOption[];\n}\n\nexport interface DropdownFieldOption {\n /**\n * option key\n * @minLength 1\n */\n key?: string;\n /**\n * option value\n * @minLength 1\n */\n value?: string;\n}\n\nexport interface MembershipsSPIConfig {\n /** The URL of the SPI implementation */\n deploymentUri?: string;\n /**\n * @minSize 1\n * @maxSize 300\n */\n catalogAppDefIds?: string[];\n}\n\nexport interface LineItemsEnricherConfig {\n /** the base URI where all the methods are deployed. */\n baseUri?: string;\n}\n\nexport interface ShippingRatesConfig {\n /**\n * Base URI where the endpoints are called.\n * Wix eCommerce appends the endpoint path to the base URI.\n * For example, to call the Get Shipping Rates endpoint at `https://my-shipping-provider.com/v1/getRates`,\n * the base URI you provide here is `https://my-shipping-provider.com/`.\n * @minLength 1\n */\n deploymentUri?: string;\n /**\n * Human-readable name of the shipping provider.\n * @minLength 1\n * @maxLength 64\n */\n name?: string;\n /**\n * Description of the shipping provider.\n * @maxLength 200\n */\n description?: string | null;\n /**\n * URL to more info about the shipping provider.\n * @maxLength 200\n */\n learnMoreUrl?: string | null;\n /**\n * URL to reach the shipping provider app's dashboard.\n * @minLength 1\n * @maxLength 2048\n * @format WEB_URL\n */\n dashboardUrl?: string | null;\n /** Whether to require the site owner to define a fallback/default rate. Set to `true` if you do not provide rates as part of the integration. */\n fallbackDefinitionMandatory?: boolean;\n /**\n * Thumbnail image of the shipping rates provider. Displayed in the shipping settings section in the Dashboard.\n * The URL must be of an image uploaded to the [Wix Media Manager](https://support.wix.com/en/article/wix-media-uploading-media-to-the-media-manager).\n * @format WEB_URL\n */\n thumbnailUrl?: string | null;\n}\n\nexport interface ShippingLabelCarrierSpiConfig {\n /** the base URI where all the methods are deployed */\n baseUri?: string;\n /**\n * the countries supported to send from\n * @format COUNTRY\n * @minSize 1\n * @maxSize 300\n */\n originCountries?: string[];\n /**\n * the countries supported to send to\n * @format COUNTRY\n * @minSize 1\n * @maxSize 300\n */\n destinationCountries?: string[];\n /**\n * the currency of the labels\n * @format CURRENCY\n */\n currency?: string;\n /** the measurement system of he labels (Metric or Imperial) */\n measurementSystem?: MeasurementSystemWithLiterals;\n /** does carrier support insurance */\n isInsuranceSupported?: boolean;\n /**\n * preset carrier packages\n * @minSize 1\n * @maxSize 20\n */\n packageTypes?: PackageType[];\n}\n\nexport enum MeasurementSystem {\n Metric = 'Metric',\n Imperial = 'Imperial',\n}\n\n/** @enumType */\nexport type MeasurementSystemWithLiterals =\n | MeasurementSystem\n | 'Metric'\n | 'Imperial';\n\nexport interface PackageType {\n /**\n * carrier id that can be used to get quotes and purchase\n * @maxLength 30\n */\n _id?: string;\n /**\n * display name of the package (translated)\n * @maxLength 100\n */\n name?: string;\n /**\n * description (translated)\n * @maxLength 200\n */\n description?: string;\n /** the dimensions of the package */\n dimension?: PackageDimension;\n /** image of the package (Optional) */\n image?: V1Image;\n}\n\nexport interface PackageDimension {\n /**\n * width of the package\n * @max 120\n */\n width?: number;\n /**\n * length of the package\n * @max 120\n */\n length?: number;\n /**\n * height of the package (Optional)\n * @max 120\n */\n height?: number | null;\n}\n\nexport interface V1Image {\n /** WixMedia image ID. */\n _id?: string;\n /** Image URL. */\n url?: string;\n /**\n * Original image height.\n * @readonly\n */\n height?: number;\n /**\n * Original image width.\n * @readonly\n */\n width?: number;\n /** Image alt text. Optional. */\n altText?: string | null;\n /** Image filename. Optional. */\n filename?: string | null;\n}\n\n/** Restaurants POS component */\nexport interface RestaurantsPOSComponentData {\n /**\n * URL for the Restaurants POS registration web page.\n * The app instance and account ID query parameters are appended to the registration URL so that you can identify an account when accessing the vendor api.\n * [Learn more](https://devforum.wix.com/en/article/app-instance).\n * @format WEB_URL\n */\n registrationUrl?: string;\n /** Base URL for all the Restaurants POS API calls. */\n apiBaseUri?: string;\n /** Configuration parameters defining the behavoiur of the catalog sync. */\n catalogSyncConfiguration?: CatalogSyncConfiguration;\n}\n\nexport interface CatalogSyncConfiguration {\n /** If menu, section, or dish availability will be updated on the POS side or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n entityAvailabilityUpdated?: DefaultWithLiterals;\n /** Whether fulfillment methods will be defined on the POS side or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n fulfillmentMethodsDefinition?: DefaultWithLiterals;\n /** If dish images will be updated on the POS side or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n dishImagesUpdated?: DefaultWithLiterals;\n /** If sorting (Menu/Category/Dish/Options) will be done on the POS side (API order) or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n entitySortingControl?: DefaultWithLiterals;\n /** If labels will be updated on the POS side or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n dishLabelsUpdated?: DefaultWithLiterals;\n /** If min/max amount of choices is to be set on the POS side or on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n dishOptionsMinMaxUpdated?: DefaultWithLiterals;\n /** If dish in/out of stock will be retrieved from POS or updated on [Wix Menus](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/menus/introduction). */\n dishInStockUpdated?: DefaultWithLiterals;\n}\n\nexport enum Default {\n WIX = 'WIX',\n POS = 'POS',\n}\n\n/** @enumType */\nexport type DefaultWithLiterals = Default | 'WIX' | 'POS';\n\nexport interface ShippingProviderConfig {\n /** URI configuration of the deployment */\n deploymentUri?: SpiBaseUri;\n /** User-friendly name of the shipping provider */\n shippingCompanyName?: string;\n /** Cost of making a shipment */\n shippingPrice?: number;\n}\n\nexport interface SpiBaseUri {\n /**\n * Base URI where the methods are called. Wix appends the path to the `baseUri`.\n * For example, to call the Get Shipping Rates method at `https://my-shipping-provider.com/v1/getRates`, the base URI you provide here is `https://my-shipping-provider.com/`.\n * @minLength 6\n * @maxLength 2048\n */\n baseUri?: string;\n /** Alternate, custom URIs to replace the default URIs for specific service plugin methods. */\n alternativeUris?: AlternativeUri[];\n}\n\nexport interface AlternativeUri {\n /**\n * Name of the method to create a custom URI for.\n *\n * For `methodName`, use the name of the method in PascalCase.\n * For example, for Get Shipping Rates use `GetShippingRates`.\n * @minLength 3\n * @maxLength 128\n */\n methodName?: string;\n /**\n * Custom URI that Wix uses to call your server for this method. The path-suffix documented in the method will not be appended to this URI.\n * Must be a secured endpoint beginning with `https://`. For example, `https://www.my-shipping-provider.com/my-shipping-rates`.\n * @minLength 6\n * @maxLength 2048\n */\n absoluteUri?: string;\n}\n\nexport interface AlertEnricherSpiConfiguration {\n deploymentUri?: string;\n}\n\n/** A component holding schema of Data Extensions */\nexport interface DataExtensionsComponentData {\n /** FQDN of the entity that the application extends */\n fqdn?: string;\n /** Schema of the extended fields in JSON Schema compatible format */\n schema?: Record<string, any> | null;\n /**\n * Extension point for this schema. empty string or \"ROOT\" means regular top level schema\n * @maxLength 20\n */\n extensionPoint?: string;\n}\n\nexport interface GenericHooksConfig {\n /**\n * Hook definitions\n * @maxSize 100\n */\n hooks?: GenericHookConfig[];\n}\n\nexport enum HookType {\n UNDEFINED = 'UNDEFINED',\n BEFORE_BLOCKING = 'BEFORE_BLOCKING',\n BEFORE = 'BEFORE',\n AFTER = 'AFTER',\n}\n\n/** @enumType */\nexport type HookTypeWithLiterals =\n | HookType\n | 'UNDEFINED'\n | 'BEFORE_BLOCKING'\n | 'BEFORE'\n | 'AFTER';\n\nexport interface GenericHookConfig {\n /** FQN of proto service */\n serviceFqn?: string;\n /** Name of RPC inside given proto service */\n methodName?: string;\n /**\n * An URI, which uniquely identifies the hook for invocation\n * @format WEB_URL\n */\n uri?: string;\n /** Type of hook */\n hookType?: HookTypeWithLiterals;\n}\n\nexport interface ActionProviderSPIConfig {\n /** URL to action provider service for this action */\n baseUri?: string;\n /** Action service plugin configuration */\n actionConfig?: ActionSPIConfig;\n}\n\nexport interface ActionSPIConfig {\n /**\n * Identifier for this action - human-readable action key - unique per app def ID\n * @minLength 5\n * @maxLength 50\n */\n actionKey?: string;\n /**\n * The action expects the following input\n * The schema is described according to the JSON Schema standard: https://json-schema.org/\n *\n * Example - Add Label to Contact Action input schema:\n * {\n * \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n * \"type\": \"object\",\n * \"title\": \"Add label to contact input schema\",\n * \"description\": \"The schema of the JSON that is sent when invoking this add label to contact action\",\n * \"default\": {},\n * \"examples\": [\n * {\n * \"contactId\": \"a647eb32-c5f4-11ec-9d64-0242ac120002\",\n * \"labelId\": \"1e8b5e5e-dba2-11ec-9d64-0242ac120002\"\n * }\n * ],\n * \"required\": [\n * \"contactId\",\n * \"labelId\"\n * ],\n * \"properties\": {\n * \"contactId\": {\n * \"$id\": \"#/properties/contactId\",\n * \"type\": \"string\",\n * \"format\": \"uuid\",\n * \"title\": \"Contact Id\",\n * \"description\": \"The ID of the contact to apply the label to\",\n * \"default\": \"\",\n * \"identityType\": \"contact\" // can be contact/visitor/user, limited to 1 type per identity.\n * },\n * \"labelId\": {\n * \"$id\": \"#/properties/labelId\",\n * \"type\": \"string\",\n * \"format\": \"uuid\",\n * \"title\": \"Label Id\",\n * \"description\": \"The ID of the label to apply\",\n * \"default\": \"\",\n * }\n * }\n * }\n */\n inputSchema?: Record<string, any> | null;\n /**\n * The output of the action, which will be added to the payload after execution.\n * The schema is described according to the JSON Schema standard: https://json-schema.org/\n *\n * Example - Output of create task action\n * {\n * \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n * \"type\": \"object\",\n * \"title\": \"Create task action schema\",\n * \"description\": \"The schema of the JSON that is sent when invoking this create task action\",\n * \"default\": {},\n * \"examples\": [\n * {\n * \"taskId\": \"a647eb32-c5f4-11ec-9d64-0242ac120002\",\n * }\n * ],\n * \"required\": [\n * \"taskId\"\n * ],\n * \"properties\": {\n * \"taskId\": {\n * \"$id\": \"#/properties/taskId\",\n * \"type\": \"string\",\n * \"format\": \"uuid\",\n * \"title\": \"Contact Id\",\n * \"description\": \"The ID of the task created\",\n * \"default\": \"\",\n * }\n * }\n * }\n */\n outputSchema?: Record<string, any> | null;\n /**\n * Actions display name - human-readable field. Ex. - \"Send SMS\"\n * @minLength 5\n * @maxLength 80\n */\n displayName?: string | null;\n description?: string | null;\n /** Specifies which optional methods were implemented */\n implementedMethods?: ActionSPIConfigImplementedMethods;\n /**\n * Indicates whether we should wait for the action to complete before executing the next actions or finish and\n * expect a callback in the `actionCompleted` method.\n * @deprecated Indicates whether we should wait for the action to complete before executing the next actions or finish and\n * expect a callback in the `actionCompleted` method.\n * @targetRemovalDate 2025-03-10\n */\n executionType?: ExecutionTypeWithLiterals;\n /** Chosen interface for action. */\n interfaceConfiguration?: ActionSPIConfigInterfaceConfiguration;\n /** Icon representing the action in the UI */\n icon?: string;\n /**\n * action id\n * @format GUID\n */\n _id?: string | null;\n}\n\nexport enum ActionSPIConfigInterfaceConfigurationType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n GENERIC = 'GENERIC',\n}\n\n/** @enumType */\nexport type ActionSPIConfigInterfaceConfigurationTypeWithLiterals =\n | ActionSPIConfigInterfaceConfigurationType\n | 'UNKNOWN_TYPE'\n | 'GENERIC';\n\nexport interface WidgetComponentOptions {\n /**\n * Name of provided component\n * @minLength 1\n * @maxLength 80\n */\n componentName?: string;\n}\n\nexport interface GenericOptions {\n /** UI schema */\n uiSchema?: Record<string, any> | null;\n}\n\nexport enum IntegrationType {\n UNKNOWN_INTEGRATION_TYPE = 'UNKNOWN_INTEGRATION_TYPE',\n /** Integration with Wix API methods */\n WIX_API = 'WIX_API',\n}\n\n/** @enumType */\nexport type IntegrationTypeWithLiterals =\n | IntegrationType\n | 'UNKNOWN_INTEGRATION_TYPE'\n | 'WIX_API';\n\nexport enum SourceType {\n UNKNOWN_SOURCE_TYPE = 'UNKNOWN_SOURCE_TYPE',\n /** The input/output schemas are constructed by developers in Dev Center using the self-service flow */\n DEV_CENTER = 'DEV_CENTER',\n /** The input/output schemas are derived from an existing Wix API through the API-to-Action feature */\n WIX_API = 'WIX_API',\n /** The action invokes external API methods based on configuration */\n INTEGRATION = 'INTEGRATION',\n}\n\n/** @enumType */\nexport type SourceTypeWithLiterals =\n | SourceType\n | 'UNKNOWN_SOURCE_TYPE'\n | 'DEV_CENTER'\n | 'WIX_API'\n | 'INTEGRATION';\n\nexport interface WixApiOptions {\n /**\n * Service entity fqdn\n * @minLength 1\n * @maxLength 100\n */\n serviceEntityFqdn?: string;\n /**\n * The service providing the API\n * @minLength 1\n * @maxLength 200\n */\n serviceName?: string;\n /**\n * The method name\n * @minLength 1\n * @maxLength 200\n */\n methodName?: string;\n}\n\nexport interface IntegrationOptions {\n /** The integration type */\n integrationType?: IntegrationTypeWithLiterals;\n}\n\n/** disable-flynt renamed-field-breaking-change */\nexport interface ActionSPIConfigImplementedMethods {\n /** Implements ValidateConfiguration */\n validateConfiguration?: boolean;\n /** Implements DuplicateInputMapping */\n duplicateInputMapping?: boolean;\n /** Implements GenerateApplicationAutomationInputMapping */\n generateApplicationAutomationInputMapping?: boolean;\n /** Implements GetQuotaInfo */\n getQuotaInfo?: boolean;\n /** Implements OnBeforeSave */\n onBeforeSave?: boolean;\n /** Implements OnReset */\n onReset?: boolean;\n /** implements generateActionInputMappingFromTemplate */\n generateActionInputMappingFromTemplate?: boolean;\n /** implements OnRemove */\n onRemove?: boolean;\n /** Implements GetDynamicInputSchema */\n getDynamicInputSchema?: boolean;\n /** Implements MergeInputMappings */\n mergeInputMappings?: boolean;\n /** Implements GetDynamicOutputSchema */\n getDynamicOutputSchema?: boolean;\n /** Implements GenerateInputMappingFromIntent */\n generateInputMappingFromIntent?: boolean;\n}\n\nexport enum ExecutionType {\n UNKNOWN_EXECUTION_TYPE = 'UNKNOWN_EXECUTION_TYPE',\n SYNC = 'SYNC',\n ASYNC = 'ASYNC',\n}\n\n/** @enumType */\nexport type ExecutionTypeWithLiterals =\n | ExecutionType\n | 'UNKNOWN_EXECUTION_TYPE'\n | 'SYNC'\n | 'ASYNC';\n\nexport interface Metadata {\n /** Show action only to advanced mode users (Wix staff) */\n hidden?: boolean;\n}\n\nexport interface ActionSPIConfigInterfaceConfiguration\n extends ActionSPIConfigInterfaceConfigurationOptionsOneOf {\n genericOptions?: GenericOptions;\n /** Type of chosen interface. */\n type?: ActionSPIConfigInterfaceConfigurationTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ActionSPIConfigInterfaceConfigurationOptionsOneOf {\n genericOptions?: GenericOptions;\n}\n\nexport interface Source extends SourceOptionsOneOf {\n /** Wix API options */\n wixApiOptions?: WixApiOptions;\n /** Integration options */\n integrationOptions?: IntegrationOptions;\n /** the source type */\n type?: SourceTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SourceOptionsOneOf {\n /** Wix API options */\n wixApiOptions?: WixApiOptions;\n /** Integration options */\n integrationOptions?: IntegrationOptions;\n}\n\nexport interface CatalogSPIConfig {\n /** Base URI which Wix eCommerce will call to access Catalog service plugin endpoints. For example, to call the Get Catalog Items endpoint at `https://my-external-catalog.com/get-catalog-items`, the base URI you provide here is `https://my-external-catalog.com`. */\n deploymentUri?: string;\n /** Configuration details for discounts applied to all items in the catalog. */\n allItemsDiscount?: DiscountConfig;\n /** Configuration details for discounts applied to specific items in the catalog. */\n specificItemsDiscount?: DiscountConfig;\n}\n\nexport interface DiscountConfig {\n /**\n * Whether the discount is enabled.\n *\n * Default: `false`.\n */\n enabled?: boolean;\n /**\n * Translation key for text to display to the site owner.\n * @minLength 5\n * @maxLength 100\n */\n translationKey?: string;\n}\n\n/** A container (slot) that can be extended by other applications (e.g. widget slot or context menu slot) */\nexport interface BackOfficeExtensionContainer {\n /** Information about the type of slot. */\n extendable?: Extendable;\n /**\n * Default route for the container.\n * @maxLength 400\n */\n defaultRoute?: string | null;\n /** A container (slot) common properties. */\n slotData?: SlotData;\n}\n\n/** Extensibility properties used by containers (slots) */\nexport interface Extendable {\n /** Type of component that this slot accepts. */\n extendedBy?: ExtendingComponentTypeWithLiterals;\n}\n\n/** Which component types can be extended in containers */\nexport enum ExtendingComponentType {\n INVALID = 'INVALID',\n BACK_OFFICE_MENU_ITEM = 'BACK_OFFICE_MENU_ITEM',\n BACK_OFFICE_EXTENSION_WIDGET = 'BACK_OFFICE_EXTENSION_WIDGET',\n}\n\n/** @enumType */\nexport type ExtendingComponentTypeWithLiterals =\n | ExtendingComponentType\n | 'INVALID'\n | 'BACK_OFFICE_MENU_ITEM'\n | 'BACK_OFFICE_EXTENSION_WIDGET';\n\n/** List of back-office hosting platforms */\nexport enum BackOfficeHostingPlatforms {\n NO_HOSTING_PLATFORM = 'NO_HOSTING_PLATFORM',\n /** Site Dashboard (The Wix Dashboard) */\n BUSINESS_MANAGER = 'BUSINESS_MANAGER',\n /** User Account Dashboard */\n ACCOUNT_MANAGER = 'ACCOUNT_MANAGER',\n /** Internal: Dev center */\n DEV_CENTER = 'DEV_CENTER',\n /** Enterprise dashboard (available to enterprise accounts only) */\n ENTERPRISE = 'ENTERPRISE',\n /** Partners dashboard (available to partners accounts only) */\n PARTNERS_DASHBOARD = 'PARTNERS_DASHBOARD',\n /** Employee only financial support dashboard */\n FINANCIALS_INTERNAL_BO = 'FINANCIALS_INTERNAL_BO',\n /** FED Guild POC dashboard */\n FED_GUILD_POC = 'FED_GUILD_POC',\n /** Studio dashboard */\n STUDIO_DASHBOARD = 'STUDIO_DASHBOARD',\n /** Channels dashboard (available to channels accounts only) */\n CHANNELS = 'CHANNELS',\n /** Wix internal dashboard for data tools (proffesional data consumers, i.e Business Analysts, Data Engineers...) */\n DATA_TOOLS = 'DATA_TOOLS',\n /** Internal back-office for payment service provider management */\n PSP_BACKOFFICE = 'PSP_BACKOFFICE',\n /** Rise.ai account dashboard */\n RISE_PLATFORM_ACCOUNT_DASHBOARD = 'RISE_PLATFORM_ACCOUNT_DASHBOARD',\n /** Enterprise demo dashboard (available to possible enterprise accounts for demo purposes) */\n DEMO_DASHBOARD_ENTERPRISE = 'DEMO_DASHBOARD_ENTERPRISE',\n /** A new AI scheduling assistant product dashboard (codename: \"Nownia\") */\n AI_SCHEDULING_ASSISTANT_DASHBOARD = 'AI_SCHEDULING_ASSISTANT_DASHBOARD',\n /** Employee only getting paid cluster dashboard */\n GETTING_PAID = 'GETTING_PAID',\n /** Wix internal dashboard for data (non proffesional data consumers, i.e any Wix Employee that has a need for BI data) */\n DATA = 'DATA',\n /** Dashboard for viral forms/lite events/etc */\n LITE_DASHBOARD = 'LITE_DASHBOARD',\n /** Picasso AI application POC */\n PICASSO_EDITOR = 'PICASSO_EDITOR',\n /** Base44 Host Dashboard POC */\n BASE44_DASHBOARD_POC = 'BASE44_DASHBOARD_POC',\n /** Wixel Editor */\n WIXEL_EDITOR = 'WIXEL_EDITOR',\n /** Base44 Platform */\n BASE44_PLATFORM = 'BASE44_PLATFORM',\n /** Payments by Wix Back Office */\n PAYMENTS_BO = 'PAYMENTS_BO',\n}\n\n/** @enumType */\nexport type BackOfficeHostingPlatformsWithLiterals =\n | BackOfficeHostingPlatforms\n | 'NO_HOSTING_PLATFORM'\n | 'BUSINESS_MANAGER'\n | 'ACCOUNT_MANAGER'\n | 'DEV_CENTER'\n | 'ENTERPRISE'\n | 'PARTNERS_DASHBOARD'\n | 'FINANCIALS_INTERNAL_BO'\n | 'FED_GUILD_POC'\n | 'STUDIO_DASHBOARD'\n | 'CHANNELS'\n | 'DATA_TOOLS'\n | 'PSP_BACKOFFICE'\n | 'RISE_PLATFORM_ACCOUNT_DASHBOARD'\n | 'DEMO_DASHBOARD_ENTERPRISE'\n | 'AI_SCHEDULING_ASSISTANT_DASHBOARD'\n | 'GETTING_PAID'\n | 'DATA'\n | 'LITE_DASHBOARD'\n | 'PICASSO_EDITOR'\n | 'BASE44_DASHBOARD_POC'\n | 'WIXEL_EDITOR'\n | 'BASE44_PLATFORM'\n | 'PAYMENTS_BO';\n\n/** Definitions of common slots properties */\nexport interface SlotData extends SlotDataSlotTypeOneOf {\n /** Widget-specific slot. */\n widgetOptions?: WidgetSlot;\n /** Menu-specific slot. */\n menuOptions?: MenuSlot;\n /**\n * Slot display name.\n * @maxLength 400\n */\n displayName?: string | null;\n /**\n * Slot description.\n * @maxLength 400\n */\n description?: string | null;\n /** Parameters for the slot. */\n slotParams?: SlotParams;\n /**\n * HTTP links to a markdown files.\n * @maxSize 100\n * @format WEB_URL\n */\n mdHttpLinks?: string[];\n type?: SlotDataTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SlotDataSlotTypeOneOf {\n /** Widget-specific slot. */\n widgetOptions?: WidgetSlot;\n /** Menu-specific slot. */\n menuOptions?: MenuSlot;\n}\n\nexport interface DtsDefinitionReference\n extends DtsDefinitionReferenceDtsDefinitionOneOf {\n dtsHttpLinkOptions?: DtsHttpLink;\n dtsContentOptions?: DtsContent;\n type?: DtsDefinitionTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DtsDefinitionReferenceDtsDefinitionOneOf {\n dtsHttpLinkOptions?: DtsHttpLink;\n dtsContentOptions?: DtsContent;\n}\n\nexport enum DtsDefinitionType {\n UNKNOWN = 'UNKNOWN',\n DTS_HTTP_LINK = 'DTS_HTTP_LINK',\n DTS_CONTENT = 'DTS_CONTENT',\n}\n\n/** @enumType */\nexport type DtsDefinitionTypeWithLiterals =\n | DtsDefinitionType\n | 'UNKNOWN'\n | 'DTS_HTTP_LINK'\n | 'DTS_CONTENT';\n\nexport interface DtsHttpLink {\n /**\n * HTTP link to the bundled d.ts file.\n * @maxLength 400\n */\n bundledDtsHttpLink?: string;\n}\n\nexport interface DtsContent {\n /**\n * d.ts file content.\n * @maxLength 2000\n */\n bundledDtsContent?: string;\n}\n\nexport interface BlocksData {\n /** Maximum allowed dimensions. */\n maxDimensionsPixels?: Dimension;\n /** Minimum allowed dimensions. */\n minDimensionsPixels?: Dimension;\n /**\n * Slot placeholder component ID in the document.\n * @maxLength 50\n */\n compRefId?: string | null;\n}\n\nexport interface Dimension {\n /**\n * Width of the component (max: 9999).\n * @max 9999\n */\n width?: number | null;\n /**\n * Height of the component (max: 9999).\n * @max 9999\n */\n height?: number | null;\n}\n\nexport interface SlotParams {\n /** DTS reference for the slot parameters. */\n slotParamsDtsReference?: DtsDefinitionReference;\n /**\n * Named export to use.\n * @maxLength 400\n */\n namedExport?: string | null;\n}\n\nexport enum SlotDataType {\n UNKNOWN = 'UNKNOWN',\n WIDGET = 'WIDGET',\n MENU = 'MENU',\n}\n\n/** @enumType */\nexport type SlotDataTypeWithLiterals =\n | SlotDataType\n | 'UNKNOWN'\n | 'WIDGET'\n | 'MENU';\n\nexport interface WidgetSlot {\n /** Blocks specific data. */\n blocksData?: BlocksData;\n}\n\nexport interface MenuSlot {}\n\n/**\n * A component that enables extending Wix Dashboard Functionality, as defined by ExtendingComponentType.\n * Currently this supports extending menus and extending widget slots (for Wix apps that expose such menus and slots)\n */\nexport interface BackOfficeExtension extends BackOfficeExtensionExtensionOneOf {\n /** Information about a widget extension. */\n widget?: LegacyBackOfficeExtensionWidget;\n /** Information about a menu item extension. */\n menuItem?: LegacyBackOfficeMenuItem;\n /**\n * ID of the slot that hosts the extension.\n * @format GUID\n */\n extends?: string;\n /** Extension title. This is how the extension is referred to in the Wix Dev Center. */\n title?: string;\n /** Extension description. This is how the extension is described in the Wix Dev Center. */\n description?: string | null;\n /** Type of extension. */\n extensionType?: ExtendingComponentTypeWithLiterals;\n /**\n * Platform that hosts the extension.\n *\n * Must be `\"BUSINESS_MANAGER\"`.\n */\n hostingPlatform?: BackOfficeHostingPlatformsWithLiterals;\n}\n\n/** @oneof */\nexport interface BackOfficeExtensionExtensionOneOf {\n /** Information about a widget extension. */\n widget?: LegacyBackOfficeExtensionWidget;\n /** Information about a menu item extension. */\n menuItem?: LegacyBackOfficeMenuItem;\n}\n\n/** The schema of a widget extending a slot exposed in a page in the Wix Dashboard */\nexport interface LegacyBackOfficeExtensionWidget\n extends LegacyBackOfficeExtensionWidgetAssetOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n /**\n * Initial width of the widget while loading, in pixels.\n * Width may be adjusted dynamically based on the content of the widget or limited by the size of the widget's container.\n * @max 9999\n */\n width?: number | null;\n /**\n * Initial height of the widget while loading, in pixels.\n * Height may be adjusted dynamically based on the content of the widget or limited by the size of the widget's container.\n * @max 9999\n */\n height?: number | null;\n}\n\n/** @oneof */\nexport interface LegacyBackOfficeExtensionWidgetAssetOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n}\n\n/** Internal: Specifications for loading an asset via JS in the back office */\nexport interface BackOfficeScriptAsset {\n /**\n * The JavaScript file to load\n * @format WEB_URL\n */\n url?: string;\n /**\n * Namespacing of the component in the Webpack Module Federation registry\n * @minLength 1\n */\n containerId?: string;\n /**\n * Key name for the retrieval of the component\n * @minLength 1\n */\n exportedName?: string;\n /** Optional: What type should by used on <script> tag. */\n scriptType?: BackOfficeScriptAssetTypeWithLiterals;\n}\n\n/** Type attribute for the script tag */\nexport enum BackOfficeScriptAssetType {\n /** Script will be loaded without a type attribute */\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n /** Use \"module\" as the script type */\n MODULE = 'MODULE',\n}\n\n/** @enumType */\nexport type BackOfficeScriptAssetTypeWithLiterals =\n | BackOfficeScriptAssetType\n | 'UNKNOWN_TYPE'\n | 'MODULE';\n\n/** The schema of a menu extension of a slot exposed in a page in the Wix Dashboard */\nexport interface LegacyBackOfficeMenuItem {\n /**\n * [Wix Design System icon key](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full-size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n /** Action that takes places when the menu item is clicked. */\n action?: LegacyBackOfficeMenuItemAction;\n /**\n * Menu item subtitle.\n * @maxLength 200\n */\n subtitle?: string | null;\n}\n\n/** View modes for how to open a component. */\nexport enum ViewMode {\n /** Opens a page in place of the current page. */\n PAGE = 'PAGE',\n /** Opens as a modal on the current page. */\n MODAL = 'MODAL',\n}\n\n/** @enumType */\nexport type ViewModeWithLiterals = ViewMode | 'PAGE' | 'MODAL';\n\n/** the schema of the data needed to open a component from menu extensions */\nexport interface OpenComponent {\n /**\n * ID of the component to open.\n * @format GUID\n */\n componentId?: string;\n /** How the component is opened. */\n viewMode?: ViewModeWithLiterals;\n /** Parameters to navigate to a page or as props for a modal. */\n componentParams?: Record<string, string>;\n}\n\n/** The schema of an action that is onvoked from menu extensions */\nexport interface LegacyBackOfficeMenuItemAction {\n /** Component that opens when the menu item is clicked. */\n openComponent?: OpenComponent;\n}\n\nexport interface TriggerProviderSPIConfig {\n /**\n * The trigger configuration\n *\n * example of a trigger:\n *\n * {\n * appId: \"56cc7843-fdfc-417f-a660-d4af9a2eafe3\",\n * triggerKey: \"form_submit\",\n * displayName: \"Visitor submits a form\",\n * payloadDataSchema: {\n * \"$schema\": \"http://json-schema.org/draft-07/schema\",\n * \"type\": \"object\",\n * \"title\": \"Visitor submits a form Payload Schema\",\n * \"description\": \"The schema of the payload that is part of the triggered event\",\n * \"default\": {},\n * \"examples\": [\n * {\n * \"formId\": \"60d2cd50-1047-4164-884d-8c24fbda84bb\",\n * \"formName\": \"My Cool Form\n * }\n * ],\n * \"properties\": {\n * \"formId\": {\n * \"$id\": \"#/properties/formId\",\n * \"type\": \"string\",\n * \"format\": \"uuid\",\n * \"title\": \"Form ID\",\n * \"description\": \"The form identifier\",\n * \"default\": \"\",\n * \"examples\": [\n * \"60d2cd50-1047-4164-884d-8c24fbda84bb\"\n * ]\n * },\n * \"formName\": {\n * \"$id\": \"#/properties/formName\",\n * \"type\": \"string\",\n * \"title\": \"Form Name\",\n * \"description\": \"The form display name\",\n * \"default\": \"\",\n * \"examples\": [\n * \"My Form\"\n * ]\n * },\n * \"contactId\": {\n * \"$id\": \"#/properties/contactId\",\n * \"type\": \"string\",\n * \"format\": \"uuid\",\n * \"title\": \"Contact Id\",\n * \"description\": \"The Id of the contact which submitted the form\",\n * \"default\": \"\",\n * \"identityType\": \"contact\", // can be contact, visitor, user limited to 1 type per identity,\n * \"name\": \"contact\" // friendly name to be used later on, in order to user that person's data \"contact.firstName\"\n * }\n * },\n * \"required\": [\n * \"formId\",\n * \"formName\",\n * \"contactId\"\n * ],\n * \"additionalProperties\": false\n * }\n * }\n */\n triggerConfig?: Record<string, any> | null;\n /** URL to the trigger provider service */\n baseUri?: string;\n}\n\nexport interface PreRegisterConfig {\n /** the base URI where all the methods are deployed. */\n baseUri?: string;\n}\n\nexport interface ProductsPathsConfig {\n /** implementer's deployment uri */\n deploymentUri?: string;\n}\n\nexport interface CustomScopeConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n}\n\nexport interface GiftCardProviderConfig {\n /** The URL of the SPI implementation */\n deploymentUri?: string;\n}\n\nexport interface ExternalFilterProviderConfig {\n /** the base URI where all the methods are deployed. E.g */\n baseUri?: string;\n}\n\nexport interface RecommendationsProviderConfig {\n /** URI where the application implementing the SPI is deployed. */\n deploymentUri?: string;\n /**\n * App IDs of catalogs for which recommended items can be found.\n * @minSize 1\n * @maxSize 100\n * @minLength 1\n * @maxLength 36\n */\n catalogAppIds?: string[];\n /**\n * The algorithms that this application can use to calculate item recommendations.\n * @minSize 1\n * @maxSize 100\n */\n supportedAlgorithms?: AlgorithmConfig[];\n}\n\nexport interface AlgorithmConfig {\n /**\n * Algorithm name. This value is not translatable.\n * @minLength 1\n * @maxLength 50\n */\n name?: string;\n /**\n * Algorithm description. This describes how the algorithm works and if it has any limitations regarding site content, number of items in the catalog, site traffic, and so on. This value is not translatable.\n * @minLength 1\n * @maxLength 500\n */\n description?: string;\n /**\n * A supplemental `description`. It can be used to help break up and organize information. You can, for example, display this information as a tooltip or as an additional section that is collapsed by default.\n * @minLength 1\n * @maxLength 300\n */\n additionalInfo?: string | null;\n /**\n * Algorithms may have the following types:\n * * `RELATED_ITEMS` - This type of algorithm provides recommendations based on 1 or more other provided items. For example, when an item is added to a cart, the algorithm can suggest other items frequently bought together with that item.\n * * `GLOBAL` - This type of algorithm provides general recommendations based on site or project statistics. For example, bestsellers or new arrivals.\n */\n algorithmType?: AlgorithmTypeWithLiterals;\n /**\n * Algorithm ID. This must be unique for a specific app but does not have to be unique across all apps on the site or in the project.\n * @format GUID\n */\n algorithmId?: string;\n}\n\nexport enum AlgorithmType {\n UNSPECIFIED = 'UNSPECIFIED',\n RELATED_ITEMS = 'RELATED_ITEMS',\n GLOBAL = 'GLOBAL',\n}\n\n/** @enumType */\nexport type AlgorithmTypeWithLiterals =\n | AlgorithmType\n | 'UNSPECIFIED'\n | 'RELATED_ITEMS'\n | 'GLOBAL';\n\nexport interface DropshippingProviderSPIConfig {\n /** name of the dropshipping provider was it appears in relevant screens/mails in eComm Platform */\n name?: string;\n /** The URL of the SPI implementation - not needed in this case */\n deploymentUri?: string;\n /**\n * URI for the thumbnail page\n * @format WEB_URL\n */\n thumbnailUri?: string;\n /**\n * URI of the dashboard page\n * @format WEB_URL\n */\n dashboardUri?: string;\n /** if duplication operation for product is locked */\n duplicateProduct?: LockableOperationWithLiterals;\n /** whether there is a warning or not when price is changed */\n changePrice?: RestrictedOperationWithLiterals;\n /** whether the chagne inventory operations are locked */\n changeInventory?: LockableOperationWithLiterals;\n /** where there is a warning of not when changing options */\n manageOptions?: RestrictedOperationWithLiterals;\n}\n\nexport enum LockableOperation {\n /** When operation lockability is not specified */\n UNSPECIFIED_LOCKABLE = 'UNSPECIFIED_LOCKABLE',\n /** Operation is locked */\n LOCKED = 'LOCKED',\n /** Operation is unlocked */\n UNLOCKED = 'UNLOCKED',\n}\n\n/** @enumType */\nexport type LockableOperationWithLiterals =\n | LockableOperation\n | 'UNSPECIFIED_LOCKABLE'\n | 'LOCKED'\n | 'UNLOCKED';\n\nexport enum RestrictedOperation {\n UNSPECIFIED_RESTRICTED = 'UNSPECIFIED_RESTRICTED',\n ALLOW = 'ALLOW',\n WARN = 'WARN',\n}\n\n/** @enumType */\nexport type RestrictedOperationWithLiterals =\n | RestrictedOperation\n | 'UNSPECIFIED_RESTRICTED'\n | 'ALLOW'\n | 'WARN';\n\nexport interface InvoicesConfig {\n /** Base URI of spi provider */\n baseUri?: string;\n}\n\nexport interface SeoKeywordsSuggestionsSPIConfig {\n /**\n * Base URL of your SEO implementation. Wix sends API requests to endpoints implemented using this URL.\n * @minLength 1\n */\n baseUri?: string;\n /**\n * URL of the page where users can purchase a paid plan. Wix offers a link to this page when you respond with a value of `false` in quota's `paidPlan` property.\n * @format WEB_URL\n */\n upgradeUrl?: string | null;\n /**\n * List of countries you support for SEO analysis.\n * 2-letter country code in [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format.\n * @format COUNTRY\n * @minSize 1\n * @maxSize 250\n */\n supportedCountryCodes?: string[];\n /** Whether there is a quota limit in the service. When `true`, the response includes the quota object. */\n quotaEnabled?: boolean | null;\n /**\n * Your website's landing page.\n * @format WEB_URL\n */\n landingPageUrl?: string;\n}\n\nexport interface CustomTriggerConfig {\n /**\n * Required. Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.\n * For example, to call the Get Eligible Triggers endpoint at `https://my-discount-app.com/v1/get-eligible-triggers`, the base URI you provide here is `https://my-discount-app.com/`.\n */\n deploymentUri?: string;\n}\n\nexport interface ContentProviderConfig {\n /** base uri for each implementer */\n deploymentUri?: string;\n /**\n * a human readable name of the provider\n * @maxLength 64\n */\n providerName?: string;\n /** the maximum items allowed to read and update in a single request */\n maximumReadingBulkSize?: number | null;\n}\n\n/** Automation Component data that is stored in dev center */\nexport interface ApplicationAutomationComponent {\n /** A rule that contains a trigger & some actions */\n rule?: Rule;\n /**\n * Automation name\n * @maxLength 500\n */\n name?: string | null;\n /**\n * Automation description\n * @maxLength 2000\n */\n description?: string | null;\n /** Automation metadata */\n metadata?: AutomationMetadata;\n /** Automation status */\n status?: StatusWithLiterals;\n /** Optional origin that indicates the source of the automation */\n origin?: OriginInfo;\n /**\n * Automation id - points to a V3 Builder automation id\n * @format GUID\n */\n automationId?: string | null;\n /**\n * trigger app id - used for reading easily for cache - v3\n * @format GUID\n */\n triggerAppId?: string | null;\n /**\n * trigger key - used for reading easily for cache - v3\n * @minLength 1\n * @maxLength 100\n */\n triggerKey?: string | null;\n}\n\nexport interface Rule {\n /** an event triggered by visitors on a site, or by a site manager (owner & team). */\n trigger?: ServiceTrigger;\n /**\n * the actions responding to the trigger happening\n * @maxSize 100\n */\n actions?: ServiceAction[];\n}\n\nexport interface ServiceTrigger {\n /**\n * the id of the app defining the trigger\n * @format GUID\n */\n appId?: string;\n /**\n * Identifier for this trigger - human readable action key\n * @maxLength 100\n */\n triggerKey?: string;\n /**\n * optional list of filters on schema fields\n * @maxSize 5\n */\n filters?: TriggerFilter[];\n /**\n * optional - allows to define a trigger whose following actions will be executed only if the same event for the same resource has not in the last X seconds.\n * for example, if the trigger is \"session booked\", the resource is a contact and the timeframe is 3600 seconds (contact hasn't booked another session in the last hour),\n * then the actions will be executed only if the same event (session booked for that contact) has not happened in the last hour.\n * resource id is sent in runtime via the externalEntityId parameter, ReportEvent method.\n */\n debounce?: Debounce;\n}\n\nexport interface TriggerFilter {\n /**\n * the filter identifier\n * @format GUID\n */\n _id?: string | null;\n /**\n * the field key from the schema, for example \"formId\"\n * @minLength 1\n * @maxLength 50\n */\n fieldKey?: string;\n /** filter expression that evaluates to a boolean, for example - {{ contains([\"guid1\",\"guid2\"];formId) }} */\n filterExpression?: string;\n}\n\nexport interface Debounce {\n /**\n * Amount of time in seconds to wait for any additional events to occur before triggering the actions.\n * If no additional events occur within the specified time, the actions will be triggered.\n * If additional events occur within the specified time, the timer will be reset.\n * @min 1\n */\n timeFrameInSeconds?: number;\n /**\n * The field key in the event payload, which indicates the identifier of the entity/event to debounce on\n * For example: if the trigger is \"user logged in\", the resource is a contact and the resource key is \"contactId\",\n * Another example: if the trigger is \"visitor logged in\", the resource is a visitor and the resource key is \"visitorId\".\n * @maxLength 100\n */\n fieldKey?: string;\n}\n\nexport interface ServiceAction {\n /**\n * the id of the action for delayed events\n * @format GUID\n * @readonly\n */\n _id?: string | null;\n /**\n * the id of the app defining the action\n * @format GUID\n */\n appId?: string;\n /**\n * Identifier for this action - human readable action key - unique per app def id\n * @maxLength 80\n */\n actionKey?: string;\n /**\n * input mapping expression for the action inputs\n * for example:\n * `{ \"subject\": \"Thanks for reaching out!\"\n * \"message\": \"Hi {{contact.name.first}}, thanks for contacting our business\"\n * }`\n * where the value for \"contact.name.first\" comes from the trigger's payload\n * @maxLength 5000\n */\n actionConfig?: string;\n /**\n * output mapping expression for the action output\n * for example in get-contact action:\n * `{ \"author\": \"{{$}}\" }`\n * This will map the entire entity of contact under `author` namespace\n * @maxLength 3000\n */\n outputActionConfig?: string | null;\n /** Optional delay configuration for the action */\n delay?: Delay;\n /** allows you define an activation policy - like number of activations in a time frame, or limit by some identifier, like contact (e.g. send email to user only at first login) */\n rateLimit?: RateLimit;\n /**\n * allows the user to define a condition for the action to be executed, if the condition fails the action (and following actions) will not be executed\n * @deprecated allows the user to define a condition for the action to be executed, if the condition fails the action (and following actions) will not be executed\n * @replacedBy conditions\n * @targetRemovalDate 2023-08-01\n */\n condition?: ActionCondition;\n conditions?: Conditions;\n /**\n * allows the user to define a namespace for the action output\n * @minLength 1\n * @maxLength 100\n */\n namespace?: string | null;\n}\n\nexport enum BlockType {\n UNKNOWN = 'UNKNOWN',\n OR = 'OR',\n AND = 'AND',\n}\n\n/** @enumType */\nexport type BlockTypeWithLiterals = BlockType | 'UNKNOWN' | 'OR' | 'AND';\n\nexport interface ConditionBlock {\n type?: BlockTypeWithLiterals;\n /**\n * @minSize 1\n * @maxSize 20\n */\n lineExpressions?: string[];\n}\n\nexport interface Offset extends OffsetValueOneOf {\n /** A delay in seconds */\n seconds?: number;\n /** The key of the field in the trigger payload which contains a delay, in seconds. */\n delayFieldKey?: string;\n}\n\n/** @oneof */\nexport interface OffsetValueOneOf {\n /** A delay in seconds */\n seconds?: number;\n /** The key of the field in the trigger payload which contains a delay, in seconds. */\n delayFieldKey?: string;\n}\n\n/** calculated as date + delay */\nexport interface Until {\n /** The key of the field in the trigger payload which contains the date to delay until */\n dateFieldKey?: string;\n /** Optional: a delay to add together with the date described in the payload */\n offset?: Offset;\n}\n\nexport interface Delay extends DelayTypeOneOf {\n /** A delay which is calculated based on the immediate time when the action is triggered. */\n for?: Offset;\n /** A delay which is calculated based on a date field in the trigger payload. May also be used together with an Offset delay. */\n until?: Until;\n}\n\n/** @oneof */\nexport interface DelayTypeOneOf {\n /** A delay which is calculated based on the immediate time when the action is triggered. */\n for?: Offset;\n /** A delay which is calculated based on a date field in the trigger payload. May also be used together with an Offset delay. */\n until?: Until;\n}\n\nexport interface RateLimit {\n /**\n * time frame in minutes\n * @min 1\n */\n timeFrame?: number | null;\n /**\n * number of activations allowed in the given time frame\n * @min 1\n */\n activations?: number;\n /**\n * limit the activation by an entity, for example activate once per contact. example: {{contact.id}}\n * @minLength 1\n * @maxLength 300\n */\n uniqueIdentifierExpression?: string | null;\n}\n\nexport interface ActionCondition {\n /**\n * entity object is deprecated due to the new approach to conditions\n * the condition expression, for example - {{and(gt(price;10);lt(price;100))}}\n * @minLength 1\n * @maxLength 2000\n */\n conditionExpression?: string;\n}\n\nexport interface Conditions {\n /**\n * condition evaluates to `true` if either of the blocks evaluate to `true` (aka OR between all)\n * @minSize 1\n * @maxSize 10\n */\n conditionBlocks?: ConditionBlock[];\n}\n\nexport interface AutomationMetadata {\n /** Is this Automation hidden on a site? */\n hidden?: boolean;\n /** Can this Automation be deactivated on a site? */\n alwaysActive?: boolean;\n /** Is this Automation's scheduling modification is disabled on a site? */\n schedulingModificationDisabled?: boolean;\n /** Is the removal of this Automation's actions disabled? */\n actionRemovalDisabled?: boolean;\n /** Is conditions editing for this Automation allowed on a site? */\n actionConditionsEditingDisabled?: boolean;\n}\n\nexport enum Domain {\n /** User domain (default) */\n USER = 'USER',\n /** Wix domain */\n WIX = 'WIX',\n}\n\n/** @enumType */\nexport type DomainWithLiterals = Domain | 'USER' | 'WIX';\n\nexport enum Status {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n}\n\n/** @enumType */\nexport type StatusWithLiterals = Status | 'ACTIVE' | 'INACTIVE';\n\nexport interface OriginInfo {\n /**\n * The id of the original automation used to create the preinstalled automation (v3/Builder only)\n * @format GUID\n */\n siteAutomationId?: string;\n /**\n * The site which the automation was originally created in (v3/Builder only)\n * @format GUID\n */\n metaSiteId?: string;\n}\n\n/** Back-office sidebar categories */\nexport interface BackOfficeSidebarCategory {\n /**\n * Category title.\n * @minLength 1\n */\n title?: string;\n /** Sidebar order within the app */\n priority?: number;\n}\n\n/** A page in one of the back-office platforms */\nexport interface BackOfficePage extends BackOfficePageAssetOneOf {\n /** @format WEB_URL */\n iframeUrl?: string;\n /** The route of the page, must be a valid URL path, relative to the app namespace or app id */\n routePath?: string;\n /** Routes that redirect to this page, these paths should include the original path including the namespace or app id */\n previousRoutePaths?: string[];\n /**\n * Page title, also used as sidebar entry label\n * @minLength 1\n */\n title?: string;\n /** False by default, if true, sidebar will be hidden when loading the page */\n fullPage?: boolean;\n /**\n * Optional: category this page belongs to\n * @format GUID\n */\n pageCategoryId?: string | null;\n /** Should the page be shown or hidden in the sidebar, by default a link to the page will be shown */\n hideInSidebar?: boolean;\n /** Sidebar order within the category and app, lower priority means the page is earlier, by default priority is 0, meaning newer pages will appear first */\n priority?: number;\n /**\n * Which page is active in sidebar when this page is loaded\n * @format GUID\n */\n activeSidebarPageId?: string | null;\n /** general component data */\n metaData?: ComponentMetaData;\n /**\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n /**\n * Anchors for direct navigation to specific sections of the page\n * @maxSize 50\n */\n pageAnchors?: PageAnchor[];\n /**\n * Determines how the page layout is rendered.\n * Allowed values: \"standard_view\", \"builder_view\", \"expanded_view\", default: \"standard_view\".\n */\n layoutMode?: LayoutModeWithLiterals;\n}\n\n/** @oneof */\nexport interface BackOfficePageAssetOneOf {\n /** @format WEB_URL */\n iframeUrl?: string;\n}\n\nexport interface ComponentMetaData {\n /**\n * @minLength 1\n * @maxLength 200\n */\n title?: string | null;\n /**\n * @minLength 1\n * @maxLength 200\n */\n description?: string | null;\n /**\n * Searchable keywords\n * @maxSize 100\n */\n keywords?: Keywords[];\n /** Is searchable */\n searchable?: boolean;\n}\n\nexport interface Keywords {\n /** Keyword ID */\n _id?: string;\n /**\n * @minLength 1\n * @maxLength 200\n */\n value?: string;\n}\n\nexport interface PageAnchor {\n /**\n * A URL path relative to the page route for direct navigation to a specific section\n * @minLength 1\n * @maxLength 100\n */\n relativeUrl?: string;\n /**\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n /** metadata for the page anchor */\n metaData?: AnchorMetaData;\n /**\n * anchor ID\n * @maxLength 50\n */\n _id?: string;\n}\n\nexport interface AnchorMetaData {\n /**\n * @minLength 1\n * @maxLength 200\n */\n title?: string | null;\n /**\n * @minLength 1\n * @maxLength 200\n */\n description?: string | null;\n /**\n * anchor keywords\n * @maxSize 100\n */\n keywords?: Keywords[];\n}\n\nexport interface UrlParam {\n /**\n * The name of the parameter\n * @minLength 1\n * @maxLength 100\n */\n name?: string;\n /**\n * The description of the parameter\n * @minLength 1\n * @maxLength 200\n */\n description?: string;\n}\n\nexport enum LayoutMode {\n STANDARD_VIEW = 'STANDARD_VIEW',\n BUILDER_VIEW = 'BUILDER_VIEW',\n EXPANDED_VIEW = 'EXPANDED_VIEW',\n}\n\n/** @enumType */\nexport type LayoutModeWithLiterals =\n | LayoutMode\n | 'STANDARD_VIEW'\n | 'BUILDER_VIEW'\n | 'EXPANDED_VIEW';\n\nexport interface AdditionalFeesSPIConfig {\n /**\n * Base URI where the endpoints are called.\n * Wix eCommerce appends the endpoint path to the base URI.\n * For example, to call the Calculate Additional Fees endpoint at `https://my-additional-fees.com/v1/calculateAdditionalFees`,\n * the base URI you provide here is `https://my-additional-fees.com/`.\n */\n deploymentUri?: string;\n}\n\n/** Describes a notification that can be sent to users */\nexport interface PingNotificationComponentData {}\n\nexport interface BookingsPricingProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /** User-friendly name of the pricing provider */\n pricingProviderName?: string;\n}\n\nexport interface AuthenticatorConfig {\n /** the base URI where all the methods are deployed. */\n baseUri?: string;\n /** Is the enrolment step required (eg. for saving the password, public key, etc.) */\n requireUserEnroll?: boolean;\n /** Information required during the enrollment and authentication processes */\n expectedInputs?: ExpectedInputs;\n}\n\nexport interface ExpectedInputs {\n /** Inputs that will be expected from the user at the start of the process of trying to enroll or authenticate */\n expectedStartInputs?: PredefinedExpectedInput[];\n /** Inputs that may be required during a second step of enroll/authenticate, specified at runtime by sending a Verify response */\n expectedVerifyInputs?: PredefinedExpectedInput[];\n}\n\n/**\n * Specifies an expected input that can be fully configured by the SPI implementor, perhaps with overrides by the admin, _before_ runtime.\n * Notably, this does not include WebAuthn, as that input requires a unique, random challenge to be generated and persisted per request (ie at runtime)\n * in order to be implemented correctly.\n */\nexport interface PredefinedExpectedInput {\n /** The key used to identify the value entered into the input in the user_start_inputs or user_verify_inputs map */\n key?: string;\n /** The name of the input as it should be indicated to the user */\n displayName?: string;\n /** The configuration for the input */\n configuration?: PredefinedExpectedInputConfiguration;\n}\n\nexport interface PredefinedExpectedInputConfiguration\n extends PredefinedExpectedInputConfigurationTypeOneOf {\n textInput?: AdminConfigurableTextInput;\n}\n\n/** @oneof */\nexport interface PredefinedExpectedInputConfigurationTypeOneOf {\n textInput?: AdminConfigurableTextInput;\n}\n\nexport interface AdminConfigurableTextInput {\n /** The default settings for the text input */\n defaultSettings?: TextInputSettings;\n /**\n * Settings that must be have non-null values.\n * This must be a subset of admin_configurable_settings.\n */\n requiredSettings?: string[];\n /**\n * Settings that the admin may override.\n * This must be a valid FieldMask with respect to TextFieldSettings as the root object.\n */\n adminConfigurableSettings?: string[];\n}\n\nexport interface TextInputSettings {\n /** The minimum length required for the user to enter */\n minLength?: number | null;\n /** The maximum length allowed for the user to enter */\n maxLength?: number | null;\n /** A regex that the text entered by the user must match */\n regex?: string | null;\n /** How should the field be displayed to the end user */\n displayType?: TextInputDisplayTypeWithLiterals;\n}\n\nexport enum TextInputDisplayType {\n /** A regular text field */\n TEXT = 'TEXT',\n /** A password field (where the text is hidden visually) */\n PASSWORD = 'PASSWORD',\n /** A field optimized for one time codes */\n CODE = 'CODE',\n}\n\n/** @enumType */\nexport type TextInputDisplayTypeWithLiterals =\n | TextInputDisplayType\n | 'TEXT'\n | 'PASSWORD'\n | 'CODE';\n\nexport interface IDPConnectionConfig {\n /** the base URI where all the methods are deployed. */\n baseUri?: string;\n /** Information required from the admin when he will install the app; */\n requiredConfig?: Record<string, string>;\n}\n\nexport interface ItemsSelectionProviderConfig {\n /**\n * Base URI which Wix calls to retrieve the selected items. For example, `\"deploymentUri\": \"https://my-items.com\"`.\n * @minLength 1\n */\n deploymentUri?: string;\n /**\n * A unique identifier for the provider.\n * @minLength 3\n * @maxLength 250\n */\n key?: string;\n /** Supported search parameters. */\n searchParams?: SearchParams;\n /** Display data such as provider name and icon. */\n contentData?: ContentData;\n /**\n * An array of strings representing the Wix UI pages supported by your SPI implementation. If no tags are listed, Wix assumes that the implementation supports all eligible pages.\n * @maxSize 50\n */\n supportedTags?: TagWithLiterals[];\n /** Configuration settings for how the thumbnail is displayed. */\n itemThumbnail?: ItemThumbnail;\n /** Pagination Mode */\n paginationMode?: PaginationModeWithLiterals;\n /** Optional render overrides for the provider. */\n renderOverrides?: RenderOverrides;\n}\n\nexport interface LearnMore {\n /**\n * The url of the learn more link. If you want a dynamic url according to the user locale, you can add {{locale}} variable within the string.\n * @maxLength 2048\n */\n url?: string;\n /**\n * Optional link label.\n * @maxLength 500\n */\n label?: string | null;\n}\n\nexport enum ThumbnailType {\n UNKNOWN_THUMBNAIL_TYPE = 'UNKNOWN_THUMBNAIL_TYPE',\n IMAGE = 'IMAGE',\n AVATAR = 'AVATAR',\n}\n\n/** @enumType */\nexport type ThumbnailTypeWithLiterals =\n | ThumbnailType\n | 'UNKNOWN_THUMBNAIL_TYPE'\n | 'IMAGE'\n | 'AVATAR';\n\nexport interface ImageConfig {\n shape?: ImageShapeWithLiterals;\n}\n\nexport enum ImageShape {\n UNKNOWN_SHAPE = 'UNKNOWN_SHAPE',\n /** Circle */\n CIRCLE = 'CIRCLE',\n /** Square */\n SQUARE = 'SQUARE',\n /** Rectangle */\n RECTANGLE = 'RECTANGLE',\n}\n\n/** @enumType */\nexport type ImageShapeWithLiterals =\n | ImageShape\n | 'UNKNOWN_SHAPE'\n | 'CIRCLE'\n | 'SQUARE'\n | 'RECTANGLE';\n\nexport interface AvatarConfig {\n shape?: AvatarShapeWithLiterals;\n}\n\nexport enum AvatarShape {\n UNKNOWN_SHAPE = 'UNKNOWN_SHAPE',\n /** Circle */\n CIRCLE = 'CIRCLE',\n /** Square */\n SQUARE = 'SQUARE',\n}\n\n/** @enumType */\nexport type AvatarShapeWithLiterals =\n | AvatarShape\n | 'UNKNOWN_SHAPE'\n | 'CIRCLE'\n | 'SQUARE';\n\nexport interface SearchField {\n /** Supported searchable fields. */\n key?: string;\n /**\n * Item description.\n * @minLength 1\n * @maxLength 100\n */\n description?: string;\n}\n\nexport interface FilterInfo extends FilterInfoOptionsOneOf {\n /** Static hardcoded options */\n staticOptions?: StaticFilterOptions;\n /** The filter options are items of another provider */\n providerOptions?: ProviderFilterOptions;\n /**\n * Key of the filter\n * @minLength 1\n * @maxLength 100\n */\n key?: string;\n /** Optional filter will be shown only for consumers with this tag. Only one filter is allowed per tag. */\n tag?: TagWithLiterals;\n /** The filter selection type. */\n selectionType?: FilterSelectionTypeWithLiterals;\n /** Filter options type. For now only static options are supported */\n optionsType?: FilterOptionsTypeWithLiterals;\n /**\n * Optional placeholder text to display on the filter\n * @maxLength 500\n */\n placeholder?: string | null;\n}\n\n/** @oneof */\nexport interface FilterInfoOptionsOneOf {\n /** Static hardcoded options */\n staticOptions?: StaticFilterOptions;\n /** The filter options are items of another provider */\n providerOptions?: ProviderFilterOptions;\n}\n\nexport enum Tag {\n UNKNOWN_TAG = 'UNKNOWN_TAG',\n EMBEDDABLE = 'EMBEDDABLE',\n ECOM_EDIT_ORDER = 'ECOM_EDIT_ORDER',\n ECOM_CREATE_ORDER = 'ECOM_CREATE_ORDER',\n INBOX = 'INBOX',\n ECOM_CREATE_PAY_LINK = 'ECOM_CREATE_PAY_LINK',\n ECOM_DELIVERY_PROFILES = 'ECOM_DELIVERY_PROFILES',\n ADD_TO_CATEGORY = 'ADD_TO_CATEGORY',\n MY_BUSINESS = 'MY_BUSINESS',\n PIPELINE_LINKED_ENTITY = 'PIPELINE_LINKED_ENTITY',\n GET_PAID = 'GET_PAID',\n PIPELINE_CARD_CATALOG_ITEM = 'PIPELINE_CARD_CATALOG_ITEM',\n}\n\n/** @enumType */\nexport type TagWithLiterals =\n | Tag\n | 'UNKNOWN_TAG'\n | 'EMBEDDABLE'\n | 'ECOM_EDIT_ORDER'\n | 'ECOM_CREATE_ORDER'\n | 'INBOX'\n | 'ECOM_CREATE_PAY_LINK'\n | 'ECOM_DELIVERY_PROFILES'\n | 'ADD_TO_CATEGORY'\n | 'MY_BUSINESS'\n | 'PIPELINE_LINKED_ENTITY'\n | 'GET_PAID'\n | 'PIPELINE_CARD_CATALOG_ITEM';\n\nexport enum FilterSelectionType {\n UNKNOWN_SELECTION = 'UNKNOWN_SELECTION',\n /** Allow to select only a single item */\n SINGLE_SELECTION = 'SINGLE_SELECTION',\n /** Allow to select multiple items */\n MULTIPLE_SELECTION = 'MULTIPLE_SELECTION',\n}\n\n/** @enumType */\nexport type FilterSelectionTypeWithLiterals =\n | FilterSelectionType\n | 'UNKNOWN_SELECTION'\n | 'SINGLE_SELECTION'\n | 'MULTIPLE_SELECTION';\n\nexport enum FilterOptionsType {\n UNKNOWN_FILTER_OPTIONS = 'UNKNOWN_FILTER_OPTIONS',\n /** Static hardcoded options */\n STATIC = 'STATIC',\n PROVIDER = 'PROVIDER',\n}\n\n/** @enumType */\nexport type FilterOptionsTypeWithLiterals =\n | FilterOptionsType\n | 'UNKNOWN_FILTER_OPTIONS'\n | 'STATIC'\n | 'PROVIDER';\n\nexport interface StaticFilterOptions {\n /**\n * List of hardcoded options for a filter\n * @maxSize 50\n */\n data?: StaticFilterOption[];\n}\n\nexport interface StaticFilterOption {\n /**\n * Title of a filter option\n * @minLength 1\n * @maxLength 500\n */\n label?: string;\n /**\n * Value of a filter option\n * @minLength 1\n * @maxLength 100\n */\n value?: string;\n}\n\nexport interface ProviderFilterOptions {\n /**\n * Provider identifier for fetching filter options\n * @minLength 3\n * @maxLength 250\n */\n key?: string;\n}\n\nexport interface ContentDataOverrides {\n /**\n * Provider name.\n * @minLength 1\n * @maxLength 100\n */\n providerName?: string | null;\n}\n\nexport interface TagOverrides {\n /** Additional fields associated with the provider. */\n additionalFields?: Record<string, any> | null;\n /** Display data such as provider name. */\n contentData?: ContentDataOverrides;\n}\n\nexport interface SearchParams {\n /**\n * Supported search parameters.\n * @maxSize 50\n */\n fields?: SearchField[];\n /**\n * Filters for viewing only part of the items. Maximum one filter per tag.\n * @maxSize 100\n */\n filters?: FilterInfo[];\n}\n\nexport interface ContentData {\n /**\n * Provider icon. Choose an icon name from the [Wix Design System](https://www.wixdesignsystem.com/).\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n /**\n * Provider name.\n * @minLength 1\n * @maxLength 100\n */\n providerName?: string;\n /**\n * Item title.\n * @minLength 1\n * @maxLength 100\n */\n title?: string;\n /**\n * Button label.\n * @minLength 1\n * @maxLength 50\n */\n button?: string;\n /**\n * Item description.\n * @minLength 1\n * @maxLength 100\n */\n subtitle?: string | null;\n /** Learn more link. */\n learnMore?: LearnMore;\n}\n\nexport interface AdditionalStepInfo {\n /** ID of the widget associated with the step. */\n widgetId?: string;\n /**\n * Title of the additional step.\n * @minLength 1\n * @maxLength 100\n */\n title?: string;\n /**\n * Subtitle of the additional step.\n * @maxLength 100\n */\n subtitle?: string | null;\n /** Hide item note if exists when showing selected item on additional step header, default: false. */\n hideItemNote?: boolean | null;\n}\n\nexport interface CreateNewItemInfo {\n /** ID of the widget associated with the new item modal. */\n widgetId?: string;\n /**\n * Button label for creating a new item\n * @minLength 1\n * @maxLength 50\n */\n buttonText?: string | null;\n}\n\nexport interface ItemThumbnail extends ItemThumbnailOptionsOneOf {\n /** Configuration specific to images. */\n imageConfig?: ImageConfig;\n /** Configuration specific to avatars. */\n avatarConfig?: AvatarConfig;\n /** Thumbnail type */\n type?: ThumbnailTypeWithLiterals;\n /** Whether the thumbnail is hidden from the UI. */\n hidden?: boolean | null;\n}\n\n/** @oneof */\nexport interface ItemThumbnailOptionsOneOf {\n /** Configuration specific to images. */\n imageConfig?: ImageConfig;\n /** Configuration specific to avatars. */\n avatarConfig?: AvatarConfig;\n}\n\nexport enum PaginationMode {\n UNKNOWN_PAGINATION_MODE = 'UNKNOWN_PAGINATION_MODE',\n CURSOR = 'CURSOR',\n OFFSET = 'OFFSET',\n}\n\n/** @enumType */\nexport type PaginationModeWithLiterals =\n | PaginationMode\n | 'UNKNOWN_PAGINATION_MODE'\n | 'CURSOR'\n | 'OFFSET';\n\nexport interface TagOverridesEntry {\n /** The tag associated with the overrides. */\n tag?: TagWithLiterals;\n /** The overrides for the tag. */\n overrides?: TagOverrides;\n}\n\nexport interface RenderOverrides {\n /** Whether to hide the search bar in the picker UI */\n hideSearch?: boolean | null;\n}\n\nexport interface SyncedProjectsProviderConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: string;\n /**\n * The Provider Name\n * @maxLength 200\n */\n providerName?: string;\n /** which project's fields are synced by the provider, and therefore will not be editable through wix portfolio project page. */\n projectSyncedFields?: string[];\n}\n\nexport interface CommunicationChannelConfiguration {\n deploymentUri?: string;\n config?: ChannelConfiguration;\n}\n\nexport interface ChannelConfiguration\n extends ChannelConfigurationMessagingConfigOneOf {\n directMessageConfig?: DirectMessageConfig;\n emailMessageConfig?: EmailMessageConfig;\n smsMessageConfig?: SmsMessageConfig;\n /** The type of the communication channel */\n type?: ChannelTypeWithLiterals;\n /** Specific provider branding parameters for the channel */\n branding?: ChannelBranding;\n /** Conversation initiation definition */\n conversationLimitations?: ConversationLimitations;\n}\n\n/** @oneof */\nexport interface ChannelConfigurationMessagingConfigOneOf {\n directMessageConfig?: DirectMessageConfig;\n emailMessageConfig?: EmailMessageConfig;\n smsMessageConfig?: SmsMessageConfig;\n}\n\n/** The type of the communication channel */\nexport enum ChannelType {\n UNKNOWN_CHANNEL_TYPE = 'UNKNOWN_CHANNEL_TYPE',\n DIRECT_MESSAGING = 'DIRECT_MESSAGING',\n EMAIL = 'EMAIL',\n SMS = 'SMS',\n}\n\n/** @enumType */\nexport type ChannelTypeWithLiterals =\n | ChannelType\n | 'UNKNOWN_CHANNEL_TYPE'\n | 'DIRECT_MESSAGING'\n | 'EMAIL'\n | 'SMS';\n\nexport interface DirectMessageConfig {\n /** When marked as true, there's no need to list the supported types explicitly */\n acceptAllMessageTypes?: boolean;\n /**\n * Direct message types accepted by the provider. only those types will be sent from Wix\n * If all are excepted this field can be left empty and there's no need to explicitly state types\n */\n acceptedMessageTypes?: AcceptedDirectMessageTypeWithLiterals[];\n /** Elaborates what media types (mime types) and sizes are supported */\n mediaCapabilities?: MediaCapabilities;\n}\n\nexport enum AcceptedDirectMessageType {\n TEXT = 'TEXT',\n MEDIA = 'MEDIA',\n CARD = 'CARD',\n ANNOUNCEMENT = 'ANNOUNCEMENT',\n FORM = 'FORM',\n}\n\n/** @enumType */\nexport type AcceptedDirectMessageTypeWithLiterals =\n | AcceptedDirectMessageType\n | 'TEXT'\n | 'MEDIA'\n | 'CARD'\n | 'ANNOUNCEMENT'\n | 'FORM';\n\nexport interface MediaCapabilities {\n /** When marked as true, there's no need to list the supported types explicitly */\n allMediaTypes?: boolean;\n /**\n * List for supported media types\n * If all are excepted this field can be left empty and there's no need to explicitly state types\n * @maxSize 50\n */\n supportedMediaTypes?: MediaMimeTypeWithLiterals[];\n /** Maximum file size in bytes of a single file in a message */\n maxFileSizeInBytes?: number | null;\n}\n\n/** Mime type for relevant media entities in channels */\nexport enum MediaMimeType {\n UNKNOWN_MIME_TYPE = 'UNKNOWN_MIME_TYPE',\n IMAGE_JPEG = 'IMAGE_JPEG',\n IMAGE_PNG = 'IMAGE_PNG',\n IMAGE_WEBP = 'IMAGE_WEBP',\n VIDEO_MPEG = 'VIDEO_MPEG',\n VIDEO_MP4 = 'VIDEO_MP4',\n VIDEO_3GP = 'VIDEO_3GP',\n AUDIO_AAC = 'AUDIO_AAC',\n AUDIO_MP4 = 'AUDIO_MP4',\n AUDIO_MPEG = 'AUDIO_MPEG',\n AUDIO_OGG = 'AUDIO_OGG',\n AUDIO_OPUS = 'AUDIO_OPUS',\n APPLICATION_PDF = 'APPLICATION_PDF',\n APPLICATION_OCTET_STREAM = 'APPLICATION_OCTET_STREAM',\n}\n\n/** @enumType */\nexport type MediaMimeTypeWithLiterals =\n | MediaMimeType\n | 'UNKNOWN_MIME_TYPE'\n | 'IMAGE_JPEG'\n | 'IMAGE_PNG'\n | 'IMAGE_WEBP'\n | 'VIDEO_MPEG'\n | 'VIDEO_MP4'\n | 'VIDEO_3GP'\n | 'AUDIO_AAC'\n | 'AUDIO_MP4'\n | 'AUDIO_MPEG'\n | 'AUDIO_OGG'\n | 'AUDIO_OPUS'\n | 'APPLICATION_PDF'\n | 'APPLICATION_OCTET_STREAM';\n\nexport interface EmailMessageConfig {\n /** Media (Attachment) types accepted by the provider */\n mediaCapabilities?: MediaCapabilities;\n /** Maximum size in bytes of total media items in a message. */\n maxTotalFilesSizeInBytes?: number | null;\n}\n\nexport interface SmsMessageConfig {\n /** When marked as true, there's no need to list the supported types explicitly */\n acceptAllMessageTypes?: boolean;\n /** SMS message types accepted by the provider. only those types will be sent from Wix */\n acceptedMessageTypes?: AcceptedSmsMessageTypeWithLiterals[];\n /** Elaborates what media types (mime types) and sizes are supported */\n mediaCapabilities?: MediaCapabilities;\n}\n\nexport enum AcceptedSmsMessageType {\n SMS = 'SMS',\n MMS = 'MMS',\n}\n\n/** @enumType */\nexport type AcceptedSmsMessageTypeWithLiterals =\n | AcceptedSmsMessageType\n | 'SMS'\n | 'MMS';\n\nexport interface ChannelBranding {\n /** The name of the channel, e.g. `Facebook` / `SMS` */\n displayName?: string;\n /** Name of the channel provider (Wix, Meta, Google) */\n providerName?: string | null;\n /** Relevant brand icons, used when the channel is integrated */\n brandIcons?: BrandIcons;\n}\n\n/**\n * Brand icons required for correct channel integration\n * todo: 1. which ones are required ?\n * todo: 2. we may need to specify Icons specs (i.e. format and sizes)\n */\nexport interface BrandIcons {\n default?: ChannelIcon;\n vector?: ChannelIcon;\n bwOutlineVector?: ChannelIcon;\n}\n\nexport interface ChannelIcon {\n /** Specific Icon url */\n url?: string | null;\n}\n\nexport interface ConversationLimitations {\n /**\n * Defines who can initiate conversation in this channel.\n * If, `CUSTOMER` is selected, this means that only inbound\n * messages can start a conversation (aka business can only reply and not initiate the first communication).\n */\n initDirection?: InitDirectionWithLiterals;\n}\n\nexport enum InitDirection {\n UNKNOWN_INIT_DIRECTION = 'UNKNOWN_INIT_DIRECTION',\n BUSINESS = 'BUSINESS',\n CUSTOMER = 'CUSTOMER',\n BOTH = 'BOTH',\n}\n\n/** @enumType */\nexport type InitDirectionWithLiterals =\n | InitDirection\n | 'UNKNOWN_INIT_DIRECTION'\n | 'BUSINESS'\n | 'CUSTOMER'\n | 'BOTH';\n\nexport interface PostLoginConfig {\n /** the base URI where all the methods are deployed. */\n baseUri?: string;\n}\n\n/** A general widget in one of the back-office platforms */\nexport interface BackOfficeWidget extends BackOfficeWidgetContentOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n /**\n * Widget title.\n * @minLength 1\n */\n title?: string;\n /**\n * Initial width of the widget while loading, in pixels.\n * Width may be adjusted dynamically based on the content of the widget or limited by the size of the widget's container.\n * @max 9999\n */\n width?: number | null;\n /**\n * Initial height of the widget while loading, in pixels.\n * Height may be adjusted dynamically based on the content of the widget or limited by the size of the widget's container.\n * @max 9999\n */\n height?: number | null;\n}\n\n/** @oneof */\nexport interface BackOfficeWidgetContentOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n}\n\nexport interface SocialMarketingDesignSPIConfig {\n /** The URL of the SPI implementation */\n baseUri?: string;\n /** ID of the provider */\n _id?: string;\n /** Name of the provider */\n name?: string;\n /**\n * URL of the editor\n * @format WEB_URL\n */\n editorUrl?: string;\n /**\n * URL of the templates page\n * @format WEB_URL\n */\n templatesPageUrl?: string;\n /**\n * Provider's icon, to be displayed in UI\n * @format WEB_URL\n */\n iconUrl?: string;\n}\n\nexport interface FormSubmissionSpiConfig {\n /**\n * URI where the SPI Implementer is deployed\n * @maxLength 500\n */\n deploymentUri?: string;\n /**\n * Configuration of namespaces known by implementer\n * @maxSize 3\n */\n namespaceConfigs?: FormsSubmissionsNamespaceConfig[];\n}\n\nexport interface FormsSubmissionsNamespaceConfig {\n /**\n * Namespace name.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /** Permissions associated with this namespace. */\n permissions?: FormsPermissions;\n /** Mark new submission as pending by default. */\n pendingByDefault?: boolean;\n /**\n * Allows to disable automatic contact insert/update on contact mapping provided.\n * On manual contact mapping enabled, the implementer is responsible for mapping the submission to a contact.\n * Out of the box GDPR support is not available for unmapped submissions with contact PII fields.\n */\n manualContactMapping?: boolean;\n /**\n * Delete a PENDING submission after X days.\n * @min 1\n */\n deletePendingAfterDays?: number | null;\n /** Sets a flag that indicates a submission, when exporting, should have signature as image instead of text. */\n exportSignatureAsImage?: boolean;\n}\n\nexport interface FormsPermissions {\n /**\n * Create permission name\n * @maxLength 60\n */\n create?: string;\n /**\n * Delete permission name\n * @maxLength 60\n */\n delete?: string;\n /**\n * Update permission name\n * @maxLength 60\n */\n update?: string;\n /**\n * Read permission name\n * @maxLength 60\n */\n read?: string;\n}\n\n/** Redirects to either a page component in the Business Manager or to a wix answers article */\nexport interface WixOfferingComponentData\n extends WixOfferingComponentDataOfferingOneOf {\n /** Redirects to a page in the Business Manager. */\n businessManagerPage?: BusinessManagerPage;\n /**\n * Redirects to an article with this ID.\n * @format GUID\n */\n articleGuid?: string;\n}\n\n/** @oneof */\nexport interface WixOfferingComponentDataOfferingOneOf {\n /** Redirects to a page in the Business Manager. */\n businessManagerPage?: BusinessManagerPage;\n /**\n * Redirects to an article with this ID.\n * @format GUID\n */\n articleGuid?: string;\n}\n\nexport interface BusinessManagerPage {\n /** ID of the page component to redirect to. */\n componentId?: string;\n /** Redirects to this app state. */\n appState?: string | null;\n /** Whether to show the regular app page in the App Market instead of redirecting to the Business Manager page. */\n showRegularAppPage?: boolean;\n}\n\n/** A component used for testing dev center functionality */\nexport interface DevCenterTestingComponentData\n extends DevCenterTestingComponentDataTranslatableOneOfOneOf {\n translatableString?: string;\n translatableOptionalString?: string | null;\n translatableMessageInOneOf?: MessageContainingTranslatables;\n /** Non translatable field */\n nonTranslatable?: string;\n name?: string;\n /** @maxLength 500 */\n description?: string | null;\n translationsMap?: Record<string, string>;\n translatableMessage?: MessageContainingTranslatables;\n /** @maxSize 500 */\n mapOfTranslatableMessages?: Record<string, MessageContainingTranslatables>;\n baseUri?: string;\n /** @format GUID */\n referenceId?: string | null;\n referenceData?: CustomRefData;\n priceMultiplier?: number;\n responsePrefix?: string;\n /** @maxSize 500 */\n translatedMessagesWithUniqueField?: TranslatedMessageWithUniqueFieldRepeated[];\n /** @maxSize 500 */\n translatedMessagesWithIdField?: TranslatedMessageWithIdRepeated[];\n componentMetadata?: DiscoveryMetaData;\n /** @maxSize 500 */\n repeatedComponentMetadata?: DiscoveryMetaData[];\n /** @maxSize 500 */\n repeatedInternalComponentMetadata?: InternalComponentMetadata[];\n translatableRichContent?: RichContent;\n nonTranslatableRichContent?: RichContent;\n richContentMap?: Record<string, RichContent>;\n exposure?: ExtensionExposure;\n /**\n * @maxSize 500\n * @maxLength 500\n */\n referencedEntity?: string[];\n testEnum?: TestEnumWithLiterals;\n}\n\n/** @oneof */\nexport interface DevCenterTestingComponentDataTranslatableOneOfOneOf {\n translatableString?: string;\n translatableOptionalString?: string | null;\n translatableMessageInOneOf?: MessageContainingTranslatables;\n}\n\nexport interface MessageContainingTranslatables {\n messageName?: string;\n messageDescription?: string | null;\n messageTranslationsMap?: Record<string, string>;\n innerTranslatableRichContent?: RichContent;\n}\n\nexport interface RichContent {\n /** Node objects representing a rich content document. */\n nodes?: Node[];\n /** Object metadata. */\n metadata?: V1Metadata;\n /** Global styling for header, paragraph, block quote, and code block nodes in the object. */\n documentStyle?: DocumentStyle;\n}\n\nexport interface Node extends NodeDataOneOf {\n /** Data for a button node. */\n buttonData?: ButtonData;\n /** Data for a code block node. */\n codeBlockData?: CodeBlockData;\n /** Data for a divider node. */\n dividerData?: DividerData;\n /** Data for a file node. */\n fileData?: FileData;\n /** Data for a gallery node. */\n galleryData?: GalleryData;\n /** Data for a GIF node. */\n gifData?: GIFData;\n /** Data for a heading node. */\n headingData?: HeadingData;\n /** Data for an embedded HTML node. */\n htmlData?: HTMLData;\n /** Data for an image node. */\n imageData?: ImageData;\n /** Data for a link preview node. */\n linkPreviewData?: LinkPreviewData;\n /** @deprecated */\n mapData?: MapData;\n /** Data for a paragraph node. */\n paragraphData?: ParagraphData;\n /** Data for a poll node. */\n pollData?: PollData;\n /** Data for a text node. Used to apply decorations to text. */\n textData?: TextData;\n /** Data for an app embed node. */\n appEmbedData?: AppEmbedData;\n /** Data for a video node. */\n videoData?: VideoData;\n /** Data for an oEmbed node. */\n embedData?: EmbedData;\n /** Data for a collapsible list node. */\n collapsibleListData?: CollapsibleListData;\n /** Data for a table node. */\n tableData?: TableData;\n /** Data for a table cell node. */\n tableCellData?: TableCellData;\n /** Data for a custom external node. */\n externalData?: Record<string, any> | null;\n /** Data for an audio node. */\n audioData?: AudioData;\n /** Data for an ordered list node. */\n orderedListData?: OrderedListData;\n /** Data for a bulleted list node. */\n bulletedListData?: BulletedListData;\n /** Data for a block quote node. */\n blockquoteData?: BlockquoteData;\n /** Data for a caption node. */\n captionData?: CaptionData;\n /** Data for a layout node. Reserved for future use. */\n layoutData?: LayoutData;\n /** Data for a cell node. */\n layoutCellData?: LayoutCellData;\n /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */\n type?: NodeTypeWithLiterals;\n /** Node ID. */\n id?: string;\n /** A list of child nodes. */\n nodes?: Node[];\n /** Padding and background color styling for the node. */\n style?: NodeStyle;\n}\n\n/** @oneof */\nexport interface NodeDataOneOf {\n /** Data for a button node. */\n buttonData?: ButtonData;\n /** Data for a code block node. */\n codeBlockData?: CodeBlockData;\n /** Data for a divider node. */\n dividerData?: DividerData;\n /** Data for a file node. */\n fileData?: FileData;\n /** Data for a gallery node. */\n galleryData?: GalleryData;\n /** Data for a GIF node. */\n gifData?: GIFData;\n /** Data for a heading node. */\n headingData?: HeadingData;\n /** Data for an embedded HTML node. */\n htmlData?: HTMLData;\n /** Data for an image node. */\n imageData?: ImageData;\n /** Data for a link preview node. */\n linkPreviewData?: LinkPreviewData;\n /** @deprecated */\n mapData?: MapData;\n /** Data for a paragraph node. */\n paragraphData?: ParagraphData;\n /** Data for a poll node. */\n pollData?: PollData;\n /** Data for a text node. Used to apply decorations to text. */\n textData?: TextData;\n /** Data for an app embed node. */\n appEmbedData?: AppEmbedData;\n /** Data for a video node. */\n videoData?: VideoData;\n /** Data for an oEmbed node. */\n embedData?: EmbedData;\n /** Data for a collapsible list node. */\n collapsibleListData?: CollapsibleListData;\n /** Data for a table node. */\n tableData?: TableData;\n /** Data for a table cell node. */\n tableCellData?: TableCellData;\n /** Data for a custom external node. */\n externalData?: Record<string, any> | null;\n /** Data for an audio node. */\n audioData?: AudioData;\n /** Data for an ordered list node. */\n orderedListData?: OrderedListData;\n /** Data for a bulleted list node. */\n bulletedListData?: BulletedListData;\n /** Data for a block quote node. */\n blockquoteData?: BlockquoteData;\n /** Data for a caption node. */\n captionData?: CaptionData;\n /** Data for a layout node. Reserved for future use. */\n layoutData?: LayoutData;\n /** Data for a cell node. */\n layoutCellData?: LayoutCellData;\n}\n\nexport enum NodeType {\n PARAGRAPH = 'PARAGRAPH',\n TEXT = 'TEXT',\n HEADING = 'HEADING',\n BULLETED_LIST = 'BULLETED_LIST',\n ORDERED_LIST = 'ORDERED_LIST',\n LIST_ITEM = 'LIST_ITEM',\n BLOCKQUOTE = 'BLOCKQUOTE',\n CODE_BLOCK = 'CODE_BLOCK',\n VIDEO = 'VIDEO',\n DIVIDER = 'DIVIDER',\n FILE = 'FILE',\n GALLERY = 'GALLERY',\n GIF = 'GIF',\n HTML = 'HTML',\n IMAGE = 'IMAGE',\n LINK_PREVIEW = 'LINK_PREVIEW',\n /** @deprecated */\n MAP = 'MAP',\n POLL = 'POLL',\n APP_EMBED = 'APP_EMBED',\n BUTTON = 'BUTTON',\n COLLAPSIBLE_LIST = 'COLLAPSIBLE_LIST',\n TABLE = 'TABLE',\n EMBED = 'EMBED',\n COLLAPSIBLE_ITEM = 'COLLAPSIBLE_ITEM',\n COLLAPSIBLE_ITEM_TITLE = 'COLLAPSIBLE_ITEM_TITLE',\n COLLAPSIBLE_ITEM_BODY = 'COLLAPSIBLE_ITEM_BODY',\n TABLE_CELL = 'TABLE_CELL',\n TABLE_ROW = 'TABLE_ROW',\n EXTERNAL = 'EXTERNAL',\n AUDIO = 'AUDIO',\n CAPTION = 'CAPTION',\n LAYOUT = 'LAYOUT',\n LAYOUT_CELL = 'LAYOUT_CELL',\n}\n\n/** @enumType */\nexport type NodeTypeWithLiterals =\n | NodeType\n | 'PARAGRAPH'\n | 'TEXT'\n | 'HEADING'\n | 'BULLETED_LIST'\n | 'ORDERED_LIST'\n | 'LIST_ITEM'\n | 'BLOCKQUOTE'\n | 'CODE_BLOCK'\n | 'VIDEO'\n | 'DIVIDER'\n | 'FILE'\n | 'GALLERY'\n | 'GIF'\n | 'HTML'\n | 'IMAGE'\n | 'LINK_PREVIEW'\n | 'MAP'\n | 'POLL'\n | 'APP_EMBED'\n | 'BUTTON'\n | 'COLLAPSIBLE_LIST'\n | 'TABLE'\n | 'EMBED'\n | 'COLLAPSIBLE_ITEM'\n | 'COLLAPSIBLE_ITEM_TITLE'\n | 'COLLAPSIBLE_ITEM_BODY'\n | 'TABLE_CELL'\n | 'TABLE_ROW'\n | 'EXTERNAL'\n | 'AUDIO'\n | 'CAPTION'\n | 'LAYOUT'\n | 'LAYOUT_CELL';\n\nexport interface NodeStyle {\n /** The top padding value in pixels. */\n paddingTop?: string | null;\n /** The bottom padding value in pixels. */\n paddingBottom?: string | null;\n /** The background color as a hexadecimal value. */\n backgroundColor?: string | null;\n}\n\nexport interface ButtonData {\n /** Styling for the button's container. */\n containerData?: PluginContainerData;\n /** The button type. */\n type?: ButtonDataTypeWithLiterals;\n /** Styling for the button. */\n styles?: Styles;\n /** The text to display on the button. */\n text?: string | null;\n /** Button link details. */\n link?: V1Link;\n}\n\nexport interface StylesBorder {\n /**\n * Deprecated: Use `borderWidth` in `styles` instead.\n * @deprecated\n */\n width?: number | null;\n /**\n * Deprecated: Use `borderRadius` in `styles` instead.\n * @deprecated\n */\n radius?: number | null;\n}\n\nexport interface Colors {\n /**\n * Deprecated: Use `textColor` in `styles` instead.\n * @deprecated\n */\n text?: string | null;\n /**\n * Deprecated: Use `borderColor` in `styles` instead.\n * @deprecated\n */\n border?: string | null;\n /**\n * Deprecated: Use `backgroundColor` in `styles` instead.\n * @deprecated\n */\n background?: string | null;\n}\n\nexport interface PluginContainerData {\n /** The width of the node when it's displayed. */\n width?: PluginContainerDataWidth;\n /** The node's alignment within its container. */\n alignment?: PluginContainerDataAlignmentWithLiterals;\n /** Spoiler cover settings for the node. */\n spoiler?: Spoiler;\n /** The height of the node when it's displayed. */\n height?: PluginContainerDataHeight;\n /** Sets whether text should wrap around this node when it's displayed. If `textWrap` is `false`, the node takes up the width of its container. Defaults to `true` for all node types except 'DIVIVDER' where it defaults to `false`. */\n textWrap?: boolean | null;\n}\n\nexport enum WidthType {\n /** Width matches the content width */\n CONTENT = 'CONTENT',\n /** Small Width */\n SMALL = 'SMALL',\n /** Width will match the original asset width */\n ORIGINAL = 'ORIGINAL',\n /** coast-to-coast display */\n FULL_WIDTH = 'FULL_WIDTH',\n}\n\n/** @enumType */\nexport type WidthTypeWithLiterals =\n | WidthType\n | 'CONTENT'\n | 'SMALL'\n | 'ORIGINAL'\n | 'FULL_WIDTH';\n\nexport interface PluginContainerDataWidth\n extends PluginContainerDataWidthDataOneOf {\n /**\n * One of the following predefined width options:\n * `CONTENT`: The width of the container matches the content width.\n * `SMALL`: A small width.\n * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.\n * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.\n */\n size?: WidthTypeWithLiterals;\n /** A custom width value in pixels. */\n custom?: string | null;\n}\n\n/** @oneof */\nexport interface PluginContainerDataWidthDataOneOf {\n /**\n * One of the following predefined width options:\n * `CONTENT`: The width of the container matches the content width.\n * `SMALL`: A small width.\n * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.\n * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.\n */\n size?: WidthTypeWithLiterals;\n /** A custom width value in pixels. */\n custom?: string | null;\n}\n\nexport enum PluginContainerDataAlignment {\n /** Center Alignment */\n CENTER = 'CENTER',\n /** Left Alignment */\n LEFT = 'LEFT',\n /** Right Alignment */\n RIGHT = 'RIGHT',\n}\n\n/** @enumType */\nexport type PluginContainerDataAlignmentWithLiterals =\n | PluginContainerDataAlignment\n | 'CENTER'\n | 'LEFT'\n | 'RIGHT';\n\nexport interface Spoiler {\n /** Sets whether the spoiler cover is enabled for this node. Defaults to `false`. */\n enabled?: boolean | null;\n /** The description displayed on top of the spoiler cover. */\n description?: string | null;\n /** The text for the button used to remove the spoiler cover. */\n buttonText?: string | null;\n}\n\nexport interface PluginContainerDataHeight {\n /** A custom height value in pixels. */\n custom?: string | null;\n}\n\nexport enum ButtonDataType {\n /** Regular link button */\n LINK = 'LINK',\n /** Triggers custom action that is defined in plugin configuration by the consumer */\n ACTION = 'ACTION',\n}\n\n/** @enumType */\nexport type ButtonDataTypeWithLiterals = ButtonDataType | 'LINK' | 'ACTION';\n\nexport interface Styles {\n /**\n * Deprecated: Use `borderWidth` and `borderRadius` instead.\n * @deprecated\n */\n border?: StylesBorder;\n /**\n * Deprecated: Use `textColor`, `borderColor` and `backgroundColor` instead.\n * @deprecated\n */\n colors?: Colors;\n /** Border width in pixels. */\n borderWidth?: number | null;\n /**\n * Deprecated: Use `borderWidth` for normal/hover states instead.\n * @deprecated\n */\n borderWidthHover?: number | null;\n /** Border radius in pixels. */\n borderRadius?: number | null;\n /**\n * Border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /**\n * Border color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n borderColorHover?: string | null;\n /**\n * Text color as a hexadecimal value.\n * @format COLOR_HEX\n */\n textColor?: string | null;\n /**\n * Text color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n textColorHover?: string | null;\n /**\n * Background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /**\n * Background color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n backgroundColorHover?: string | null;\n /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */\n buttonSize?: string | null;\n}\n\nexport interface V1Link extends V1LinkDataOneOf {\n /** The absolute URL for the linked document. */\n url?: string;\n /** The target node's ID. Used for linking to another node in this object. */\n anchor?: string;\n /**\n * he HTML `target` attribute value for the link. This property defines where the linked document opens as follows:\n * `SELF` - Default. Opens the linked document in the same frame as the link.\n * `BLANK` - Opens the linked document in a new browser tab or window.\n * `PARENT` - Opens the linked document in the link's parent frame.\n * `TOP` - Opens the linked document in the full body of the link's browser tab or window.\n */\n target?: LinkTargetWithLiterals;\n /** The HTML `rel` attribute value for the link. This object specifies the relationship between the current document and the linked document. */\n rel?: Rel;\n /** A serialized object used for a custom or external link panel. */\n customData?: string | null;\n}\n\n/** @oneof */\nexport interface V1LinkDataOneOf {\n /** The absolute URL for the linked document. */\n url?: string;\n /** The target node's ID. Used for linking to another node in this object. */\n anchor?: string;\n}\n\nexport enum LinkTarget {\n /** Opens the linked document in the same frame as it was clicked (this is default) */\n SELF = 'SELF',\n /** Opens the linked document in a new window or tab */\n BLANK = 'BLANK',\n /** Opens the linked document in the parent frame */\n PARENT = 'PARENT',\n /** Opens the linked document in the full body of the window */\n TOP = 'TOP',\n}\n\n/** @enumType */\nexport type LinkTargetWithLiterals =\n | LinkTarget\n | 'SELF'\n | 'BLANK'\n | 'PARENT'\n | 'TOP';\n\nexport interface Rel {\n /** Indicates to search engine crawlers not to follow the link. Defaults to `false`. */\n nofollow?: boolean | null;\n /** Indicates to search engine crawlers that the link is a paid placement such as sponsored content or an advertisement. Defaults to `false`. */\n sponsored?: boolean | null;\n /** Indicates that this link is user-generated content and isn't necessarily trusted or endorsed by the page’s author. For example, a link in a fourm post. Defaults to `false`. */\n ugc?: boolean | null;\n /** Indicates that this link protect referral information from being passed to the target website. */\n noreferrer?: boolean | null;\n}\n\nexport interface CodeBlockData {\n /** Styling for the code block's text. */\n textStyle?: V1TextStyle;\n}\n\nexport interface V1TextStyle {\n /** Text alignment. Defaults to `AUTO`. */\n textAlignment?: TextAlignmentWithLiterals;\n /** A CSS `line-height` value for the text expressed as a ratio relative to the font size. For example, if the font size is 20px, a `lineHeight` value of `'1.5'`` results in a line height of 30px. */\n lineHeight?: string | null;\n}\n\nexport enum TextAlignment {\n /** browser default, eqivalent to `initial` */\n AUTO = 'AUTO',\n /** Left align */\n LEFT = 'LEFT',\n /** Right align */\n RIGHT = 'RIGHT',\n /** Center align */\n CENTER = 'CENTER',\n /** Text is spaced to line up its left and right edges to the left and right edges of the line box, except for the last line */\n JUSTIFY = 'JUSTIFY',\n}\n\n/** @enumType */\nexport type TextAlignmentWithLiterals =\n | TextAlignment\n | 'AUTO'\n | 'LEFT'\n | 'RIGHT'\n | 'CENTER'\n | 'JUSTIFY';\n\nexport interface DividerData {\n /** Styling for the divider's container. */\n containerData?: PluginContainerData;\n /** Divider line style. */\n lineStyle?: LineStyleWithLiterals;\n /** Divider width. */\n width?: DividerDataWidthWithLiterals;\n /** Divider alignment. */\n alignment?: DividerDataAlignmentWithLiterals;\n}\n\nexport enum LineStyle {\n /** Single Line */\n SINGLE = 'SINGLE',\n /** Double Line */\n DOUBLE = 'DOUBLE',\n /** Dashed Line */\n DASHED = 'DASHED',\n /** Dotted Line */\n DOTTED = 'DOTTED',\n}\n\n/** @enumType */\nexport type LineStyleWithLiterals =\n | LineStyle\n | 'SINGLE'\n | 'DOUBLE'\n | 'DASHED'\n | 'DOTTED';\n\nexport enum DividerDataWidth {\n /** Large line */\n LARGE = 'LARGE',\n /** Medium line */\n MEDIUM = 'MEDIUM',\n /** Small line */\n SMALL = 'SMALL',\n}\n\n/** @enumType */\nexport type DividerDataWidthWithLiterals =\n | DividerDataWidth\n | 'LARGE'\n | 'MEDIUM'\n | 'SMALL';\n\nexport enum DividerDataAlignment {\n /** Center alignment */\n CENTER = 'CENTER',\n /** Left alignment */\n LEFT = 'LEFT',\n /** Right alignment */\n RIGHT = 'RIGHT',\n}\n\n/** @enumType */\nexport type DividerDataAlignmentWithLiterals =\n | DividerDataAlignment\n | 'CENTER'\n | 'LEFT'\n | 'RIGHT';\n\nexport interface FileData {\n /** Styling for the file's container. */\n containerData?: PluginContainerData;\n /** The source for the file's data. */\n src?: FileSource;\n /** File name. */\n name?: string | null;\n /** File type. */\n type?: string | null;\n /**\n * Use `sizeInKb` instead.\n * @deprecated\n */\n size?: number | null;\n /** Settings for PDF files. */\n pdfSettings?: PDFSettings;\n /** File MIME type. */\n mimeType?: string | null;\n /** File path. */\n path?: string | null;\n /** File size in KB. */\n sizeInKb?: string | null;\n}\n\nexport enum PDFSettingsViewMode {\n /** No PDF view */\n NONE = 'NONE',\n /** Full PDF view */\n FULL = 'FULL',\n /** Mini PDF view */\n MINI = 'MINI',\n}\n\n/** @enumType */\nexport type PDFSettingsViewModeWithLiterals =\n | PDFSettingsViewMode\n | 'NONE'\n | 'FULL'\n | 'MINI';\n\nexport interface FileSource extends FileSourceDataOneOf {\n /** The absolute URL for the file's source. */\n url?: string | null;\n /**\n * Custom ID. Use `id` instead.\n * @deprecated\n */\n custom?: string | null;\n /** An ID that's resolved to a URL by a resolver function. */\n id?: string | null;\n /** Indicates whether the file's source is private. Defaults to `false`. */\n private?: boolean | null;\n}\n\n/** @oneof */\nexport interface FileSourceDataOneOf {\n /** The absolute URL for the file's source. */\n url?: string | null;\n /**\n * Custom ID. Use `id` instead.\n * @deprecated\n */\n custom?: string | null;\n /** An ID that's resolved to a URL by a resolver function. */\n id?: string | null;\n}\n\nexport interface PDFSettings {\n /**\n * PDF view mode. One of the following:\n * `NONE` : The PDF isn't displayed.\n * `FULL` : A full page view of the PDF is displayed.\n * `MINI` : A mini view of the PDF is displayed.\n */\n viewMode?: PDFSettingsViewModeWithLiterals;\n /** Sets whether the PDF download button is disabled. Defaults to `false`. */\n disableDownload?: boolean | null;\n /** Sets whether the PDF print button is disabled. Defaults to `false`. */\n disablePrint?: boolean | null;\n}\n\nexport interface GalleryData {\n /** Styling for the gallery's container. */\n containerData?: PluginContainerData;\n /** The items in the gallery. */\n items?: Item[];\n /** Options for defining the gallery's appearance. */\n options?: GalleryOptions;\n /** Sets whether the gallery's expand button is disabled. Defaults to `false`. */\n disableExpand?: boolean | null;\n /** Sets whether the gallery's download button is disabled. Defaults to `false`. */\n disableDownload?: boolean | null;\n}\n\nexport interface Media {\n /** The source for the media's data. */\n src?: FileSource;\n /** Media width in pixels. */\n width?: number | null;\n /** Media height in pixels. */\n height?: number | null;\n /** Media duration in seconds. Only relevant for audio and video files. */\n duration?: number | null;\n}\n\nexport interface ItemImage {\n /** Image file details. */\n media?: Media;\n /** Link details for images that are links. */\n link?: V1Link;\n}\n\nexport interface ItemVideo {\n /** Video file details. */\n media?: Media;\n /** Video thumbnail file details. */\n thumbnail?: Media;\n}\n\nexport interface Item extends ItemDataOneOf {\n /** An image item. */\n image?: ItemImage;\n /** A video item. */\n video?: ItemVideo;\n /** Item title. */\n title?: string | null;\n /** Item's alternative text. */\n altText?: string | null;\n}\n\n/** @oneof */\nexport interface ItemDataOneOf {\n /** An image item. */\n image?: ItemImage;\n /** A video item. */\n video?: ItemVideo;\n}\n\nexport interface GalleryOptions {\n /** Gallery layout. */\n layout?: GalleryOptionsLayout;\n /** Styling for gallery items. */\n item?: ItemStyle;\n /** Styling for gallery thumbnail images. */\n thumbnails?: GalleryOptionsThumbnails;\n}\n\nexport enum LayoutType {\n /** Collage type */\n COLLAGE = 'COLLAGE',\n /** Masonry type */\n MASONRY = 'MASONRY',\n /** Grid type */\n GRID = 'GRID',\n /** Thumbnail type */\n THUMBNAIL = 'THUMBNAIL',\n /** Slider type */\n SLIDER = 'SLIDER',\n /** Slideshow type */\n SLIDESHOW = 'SLIDESHOW',\n /** Panorama type */\n PANORAMA = 'PANORAMA',\n /** Column type */\n COLUMN = 'COLUMN',\n /** Magic type */\n MAGIC = 'MAGIC',\n /** Fullsize images type */\n FULLSIZE = 'FULLSIZE',\n}\n\n/** @enumType */\nexport type LayoutTypeWithLiterals =\n | LayoutType\n | 'COLLAGE'\n | 'MASONRY'\n | 'GRID'\n | 'THUMBNAIL'\n | 'SLIDER'\n | 'SLIDESHOW'\n | 'PANORAMA'\n | 'COLUMN'\n | 'MAGIC'\n | 'FULLSIZE';\n\nexport enum Orientation {\n /** Rows Orientation */\n ROWS = 'ROWS',\n /** Columns Orientation */\n COLUMNS = 'COLUMNS',\n}\n\n/** @enumType */\nexport type OrientationWithLiterals = Orientation | 'ROWS' | 'COLUMNS';\n\nexport enum Crop {\n /** Crop to fill */\n FILL = 'FILL',\n /** Crop to fit */\n FIT = 'FIT',\n}\n\n/** @enumType */\nexport type CropWithLiterals = Crop | 'FILL' | 'FIT';\n\nexport enum ThumbnailsAlignment {\n /** Top alignment */\n TOP = 'TOP',\n /** Right alignment */\n RIGHT = 'RIGHT',\n /** Bottom alignment */\n BOTTOM = 'BOTTOM',\n /** Left alignment */\n LEFT = 'LEFT',\n /** No thumbnail */\n NONE = 'NONE',\n}\n\n/** @enumType */\nexport type ThumbnailsAlignmentWithLiterals =\n | ThumbnailsAlignment\n | 'TOP'\n | 'RIGHT'\n | 'BOTTOM'\n | 'LEFT'\n | 'NONE';\n\nexport interface GalleryOptionsLayout {\n /** Gallery layout type. */\n type?: LayoutTypeWithLiterals;\n /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */\n horizontalScroll?: boolean | null;\n /** Gallery orientation. */\n orientation?: OrientationWithLiterals;\n /** The number of columns to display on full size screens. */\n numberOfColumns?: number | null;\n /** The number of columns to display on mobile screens. */\n mobileNumberOfColumns?: number | null;\n}\n\nexport interface ItemStyle {\n /** Desirable dimension for each item in pixels (behvaior changes according to gallery type) */\n targetSize?: number | null;\n /** Item ratio */\n ratio?: number | null;\n /** Sets how item images are cropped. */\n crop?: CropWithLiterals;\n /** The spacing between items in pixels. */\n spacing?: number | null;\n}\n\nexport interface GalleryOptionsThumbnails {\n /** Thumbnail alignment. */\n placement?: ThumbnailsAlignmentWithLiterals;\n /** Spacing between thumbnails in pixels. */\n spacing?: number | null;\n}\n\nexport interface GIFData {\n /** Styling for the GIF's container. */\n containerData?: PluginContainerData;\n /** The source of the full size GIF. */\n original?: GIF;\n /** The source of the downsized GIF. */\n downsized?: GIF;\n /** Height in pixels. */\n height?: number;\n /** Width in pixels. */\n width?: number;\n /** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */\n gifType?: GIFTypeWithLiterals;\n}\n\nexport interface GIF {\n /**\n * GIF format URL.\n * @format WEB_URL\n */\n gif?: string | null;\n /**\n * MP4 format URL.\n * @format WEB_URL\n */\n mp4?: string | null;\n /**\n * Thumbnail URL.\n * @format WEB_URL\n */\n still?: string | null;\n}\n\nexport enum GIFType {\n NORMAL = 'NORMAL',\n STICKER = 'STICKER',\n}\n\n/** @enumType */\nexport type GIFTypeWithLiterals = GIFType | 'NORMAL' | 'STICKER';\n\nexport interface HeadingData {\n /** Heading level from 1-6. */\n level?: number;\n /** Styling for the heading text. */\n textStyle?: V1TextStyle;\n /** Indentation level from 1-4. */\n indentation?: number | null;\n}\n\nexport interface HTMLData extends HTMLDataDataOneOf {\n /** The URL for the HTML code for the node. */\n url?: string;\n /** The HTML code for the node. */\n html?: string;\n /**\n * Whether this is an AdSense element. Use `source` instead.\n * @deprecated\n */\n isAdsense?: boolean | null;\n /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */\n containerData?: PluginContainerData;\n /** The type of HTML code. */\n source?: HTMLDataSourceWithLiterals;\n /** If container height is aligned with its content height. Defaults to `true`. */\n autoHeight?: boolean | null;\n}\n\n/** @oneof */\nexport interface HTMLDataDataOneOf {\n /** The URL for the HTML code for the node. */\n url?: string;\n /** The HTML code for the node. */\n html?: string;\n /**\n * Whether this is an AdSense element. Use `source` instead.\n * @deprecated\n */\n isAdsense?: boolean | null;\n}\n\nexport enum HTMLDataSource {\n HTML = 'HTML',\n ADSENSE = 'ADSENSE',\n AI = 'AI',\n}\n\n/** @enumType */\nexport type HTMLDataSourceWithLiterals =\n | HTMLDataSource\n | 'HTML'\n | 'ADSENSE'\n | 'AI';\n\nexport interface ImageData {\n /** Styling for the image's container. */\n containerData?: PluginContainerData;\n /** Image file details. */\n image?: Media;\n /** Link details for images that are links. */\n link?: V1Link;\n /** Sets whether the image expands to full screen when clicked. Defaults to `false`. */\n disableExpand?: boolean | null;\n /** Image's alternative text. */\n altText?: string | null;\n /**\n * Deprecated: use Caption node instead.\n * @deprecated\n */\n caption?: string | null;\n /** Sets whether the image's download button is disabled. Defaults to `false`. */\n disableDownload?: boolean | null;\n /** Sets whether the image is decorative and does not need an explanation. Defaults to `false`. */\n decorative?: boolean | null;\n /** Styling for the image. */\n styles?: ImageDataStyles;\n}\n\nexport interface ImageDataStylesBorder {\n /** Border width in pixels. */\n width?: number | null;\n /**\n * Border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n color?: string | null;\n /** Border radius in pixels. */\n radius?: number | null;\n}\n\nexport interface ImageDataStyles {\n /** Border attributes. */\n border?: ImageDataStylesBorder;\n}\n\nexport interface LinkPreviewData {\n /** Styling for the link preview's container. */\n containerData?: PluginContainerData;\n /** Link details. */\n link?: V1Link;\n /** Preview title. */\n title?: string | null;\n /** Preview thumbnail URL. */\n thumbnailUrl?: string | null;\n /** Preview description. */\n description?: string | null;\n /** The preview content as HTML. */\n html?: string | null;\n /** Styling for the link preview. */\n styles?: LinkPreviewDataStyles;\n}\n\nexport enum StylesPosition {\n /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */\n START = 'START',\n /** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */\n END = 'END',\n /** Thumbnail positioned at the top */\n TOP = 'TOP',\n /** Thumbnail hidden and not displayed */\n HIDDEN = 'HIDDEN',\n}\n\n/** @enumType */\nexport type StylesPositionWithLiterals =\n | StylesPosition\n | 'START'\n | 'END'\n | 'TOP'\n | 'HIDDEN';\n\nexport interface LinkPreviewDataStyles {\n /**\n * Background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /**\n * Title color as a hexadecimal value.\n * @format COLOR_HEX\n */\n titleColor?: string | null;\n /**\n * Subtitle color as a hexadecimal value.\n * @format COLOR_HEX\n */\n subtitleColor?: string | null;\n /**\n * Link color as a hexadecimal value.\n * @format COLOR_HEX\n */\n linkColor?: string | null;\n /** Border width in pixels. */\n borderWidth?: number | null;\n /** Border radius in pixels. */\n borderRadius?: number | null;\n /**\n * Border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /** Position of thumbnail. Defaults to `START`. */\n thumbnailPosition?: StylesPositionWithLiterals;\n}\n\nexport interface MapData {\n /** Styling for the map's container. */\n containerData?: PluginContainerData;\n /** Map settings. */\n mapSettings?: MapSettings;\n}\n\nexport interface MapSettings {\n /** The address to display on the map. */\n address?: string | null;\n /** Sets whether the map is draggable. */\n draggable?: boolean | null;\n /** Sets whether the location marker is visible. */\n marker?: boolean | null;\n /** Sets whether street view control is enabled. */\n streetViewControl?: boolean | null;\n /** Sets whether zoom control is enabled. */\n zoomControl?: boolean | null;\n /** Location latitude. */\n lat?: number | null;\n /** Location longitude. */\n lng?: number | null;\n /** Location name. */\n locationName?: string | null;\n /** Sets whether view mode control is enabled. */\n viewModeControl?: boolean | null;\n /** Initial zoom value. */\n initialZoom?: number | null;\n /** Map type. `HYBRID` is a combination of the `ROADMAP` and `SATELLITE` map types. */\n mapType?: MapTypeWithLiterals;\n}\n\nexport enum MapType {\n /** Roadmap map type */\n ROADMAP = 'ROADMAP',\n /** Satellite map type */\n SATELITE = 'SATELITE',\n /** Hybrid map type */\n HYBRID = 'HYBRID',\n /** Terrain map type */\n TERRAIN = 'TERRAIN',\n}\n\n/** @enumType */\nexport type MapTypeWithLiterals =\n | MapType\n | 'ROADMAP'\n | 'SATELITE'\n | 'HYBRID'\n | 'TERRAIN';\n\nexport interface ParagraphData {\n /** Styling for the paragraph text. */\n textStyle?: V1TextStyle;\n /** Indentation level from 1-4. */\n indentation?: number | null;\n /** Paragraph level */\n level?: number | null;\n}\n\nexport interface PollData {\n /** Styling for the poll's container. */\n containerData?: PluginContainerData;\n /** Poll data. */\n poll?: Poll;\n /** Layout settings for the poll and voting options. */\n layout?: PollDataLayout;\n /** Styling for the poll and voting options. */\n design?: Design;\n}\n\nexport enum ViewRole {\n /** Only Poll creator can view the results */\n CREATOR = 'CREATOR',\n /** Anyone who voted can see the results */\n VOTERS = 'VOTERS',\n /** Anyone can see the results, even if one didn't vote */\n EVERYONE = 'EVERYONE',\n}\n\n/** @enumType */\nexport type ViewRoleWithLiterals = ViewRole | 'CREATOR' | 'VOTERS' | 'EVERYONE';\n\nexport enum VoteRole {\n /** Logged in member */\n SITE_MEMBERS = 'SITE_MEMBERS',\n /** Anyone */\n ALL = 'ALL',\n}\n\n/** @enumType */\nexport type VoteRoleWithLiterals = VoteRole | 'SITE_MEMBERS' | 'ALL';\n\nexport interface SettingsPermissions {\n /** Sets who can view the poll results. */\n view?: ViewRoleWithLiterals;\n /** Sets who can vote. */\n vote?: VoteRoleWithLiterals;\n /** Sets whether one voter can vote multiple times. Defaults to `false`. */\n allowMultipleVotes?: boolean | null;\n}\n\nexport interface PollOption {\n /** Option ID. */\n id?: string | null;\n /** Option title. */\n title?: string | null;\n /** The image displayed with the option. */\n image?: Media;\n}\n\nexport interface PollSettings {\n /** Permissions settings for voting. */\n permissions?: SettingsPermissions;\n /** Sets whether voters are displayed in the vote results. Defaults to `true`. */\n showVoters?: boolean | null;\n /** Sets whether the vote count is displayed. Defaults to `true`. */\n showVotesCount?: boolean | null;\n}\n\nexport enum PollLayoutType {\n /** List */\n LIST = 'LIST',\n /** Grid */\n GRID = 'GRID',\n}\n\n/** @enumType */\nexport type PollLayoutTypeWithLiterals = PollLayoutType | 'LIST' | 'GRID';\n\nexport enum PollLayoutDirection {\n /** Left-to-right */\n LTR = 'LTR',\n /** Right-to-left */\n RTL = 'RTL',\n}\n\n/** @enumType */\nexport type PollLayoutDirectionWithLiterals =\n | PollLayoutDirection\n | 'LTR'\n | 'RTL';\n\nexport interface PollLayout {\n /** The layout for displaying the voting options. */\n type?: PollLayoutTypeWithLiterals;\n /** The direction of the text displayed in the voting options. Text can be displayed either right-to-left or left-to-right. */\n direction?: PollLayoutDirectionWithLiterals;\n /** Sets whether to display the main poll image. Defaults to `false`. */\n enableImage?: boolean | null;\n}\n\nexport interface OptionLayout {\n /** Sets whether to display option images. Defaults to `false`. */\n enableImage?: boolean | null;\n}\n\nexport enum BackgroundType {\n /** Color background type */\n COLOR = 'COLOR',\n /** Image background type */\n IMAGE = 'IMAGE',\n /** Gradiant background type */\n GRADIENT = 'GRADIENT',\n}\n\n/** @enumType */\nexport type BackgroundTypeWithLiterals =\n | BackgroundType\n | 'COLOR'\n | 'IMAGE'\n | 'GRADIENT';\n\nexport interface Gradient {\n /** The gradient angle in degrees. */\n angle?: number | null;\n /**\n * The start color as a hexademical value.\n * @format COLOR_HEX\n */\n startColor?: string | null;\n /**\n * The end color as a hexademical value.\n * @format COLOR_HEX\n */\n lastColor?: string | null;\n}\n\nexport interface PollDesignBackground\n extends PollDesignBackgroundBackgroundOneOf {\n /**\n * The background color as a hexademical value.\n * @format COLOR_HEX\n */\n color?: string | null;\n /** An image to use for the background. */\n image?: Media;\n /** Details for a gradient background. */\n gradient?: Gradient;\n /** Background type. For each option, include the relevant details. */\n type?: BackgroundTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface PollDesignBackgroundBackgroundOneOf {\n /**\n * The background color as a hexademical value.\n * @format COLOR_HEX\n */\n color?: string | null;\n /** An image to use for the background. */\n image?: Media;\n /** Details for a gradient background. */\n gradient?: Gradient;\n}\n\nexport interface PollDesign {\n /** Background styling. */\n background?: PollDesignBackground;\n /** Border radius in pixels. */\n borderRadius?: number | null;\n}\n\nexport interface OptionDesign {\n /** Border radius in pixels. */\n borderRadius?: number | null;\n}\n\nexport interface Poll {\n /** Poll ID. */\n id?: string | null;\n /** Poll title. */\n title?: string | null;\n /** Poll creator ID. */\n creatorId?: string | null;\n /** Main poll image. */\n image?: Media;\n /** Voting options. */\n options?: PollOption[];\n /** The poll's permissions and display settings. */\n settings?: PollSettings;\n}\n\nexport interface PollDataLayout {\n /** Poll layout settings. */\n poll?: PollLayout;\n /** Voting otpions layout settings. */\n options?: OptionLayout;\n}\n\nexport interface Design {\n /** Styling for the poll. */\n poll?: PollDesign;\n /** Styling for voting options. */\n options?: OptionDesign;\n}\n\nexport interface TextData {\n /** The text to apply decorations to. */\n text?: string;\n /** The decorations to apply. */\n decorations?: Decoration[];\n}\n\n/** Adds appearence changes to text */\nexport interface Decoration extends DecorationDataOneOf {\n /** Data for an anchor link decoration. */\n anchorData?: AnchorData;\n /** Data for a color decoration. */\n colorData?: ColorData;\n /** Data for an external link decoration. */\n linkData?: LinkData;\n /** Data for a mention decoration. */\n mentionData?: MentionData;\n /** Data for a font size decoration. */\n fontSizeData?: FontSizeData;\n /** Font weight for a bold decoration. */\n fontWeightValue?: number | null;\n /** Data for an italic decoration. Defaults to `true`. */\n italicData?: boolean | null;\n /** Data for an underline decoration. Defaults to `true`. */\n underlineData?: boolean | null;\n /** Data for a spoiler decoration. */\n spoilerData?: SpoilerData;\n /** Data for a strikethrough decoration. Defaults to `true`. */\n strikethroughData?: boolean | null;\n /** Data for a superscript decoration. Defaults to `true`. */\n superscriptData?: boolean | null;\n /** Data for a subscript decoration. Defaults to `true`. */\n subscriptData?: boolean | null;\n /** Data for a font family decoration. */\n fontFamilyData?: FontFamilyData;\n /** The type of decoration to apply. */\n type?: DecorationTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DecorationDataOneOf {\n /** Data for an anchor link decoration. */\n anchorData?: AnchorData;\n /** Data for a color decoration. */\n colorData?: ColorData;\n /** Data for an external link decoration. */\n linkData?: LinkData;\n /** Data for a mention decoration. */\n mentionData?: MentionData;\n /** Data for a font size decoration. */\n fontSizeData?: FontSizeData;\n /** Font weight for a bold decoration. */\n fontWeightValue?: number | null;\n /** Data for an italic decoration. Defaults to `true`. */\n italicData?: boolean | null;\n /** Data for an underline decoration. Defaults to `true`. */\n underlineData?: boolean | null;\n /** Data for a spoiler decoration. */\n spoilerData?: SpoilerData;\n /** Data for a strikethrough decoration. Defaults to `true`. */\n strikethroughData?: boolean | null;\n /** Data for a superscript decoration. Defaults to `true`. */\n superscriptData?: boolean | null;\n /** Data for a subscript decoration. Defaults to `true`. */\n subscriptData?: boolean | null;\n /** Data for a font family decoration. */\n fontFamilyData?: FontFamilyData;\n}\n\nexport enum DecorationType {\n BOLD = 'BOLD',\n ITALIC = 'ITALIC',\n UNDERLINE = 'UNDERLINE',\n SPOILER = 'SPOILER',\n ANCHOR = 'ANCHOR',\n MENTION = 'MENTION',\n LINK = 'LINK',\n COLOR = 'COLOR',\n FONT_SIZE = 'FONT_SIZE',\n EXTERNAL = 'EXTERNAL',\n STRIKETHROUGH = 'STRIKETHROUGH',\n SUPERSCRIPT = 'SUPERSCRIPT',\n SUBSCRIPT = 'SUBSCRIPT',\n FONT_FAMILY = 'FONT_FAMILY',\n}\n\n/** @enumType */\nexport type DecorationTypeWithLiterals =\n | DecorationType\n | 'BOLD'\n | 'ITALIC'\n | 'UNDERLINE'\n | 'SPOILER'\n | 'ANCHOR'\n | 'MENTION'\n | 'LINK'\n | 'COLOR'\n | 'FONT_SIZE'\n | 'EXTERNAL'\n | 'STRIKETHROUGH'\n | 'SUPERSCRIPT'\n | 'SUBSCRIPT'\n | 'FONT_FAMILY';\n\nexport interface AnchorData {\n /** The target node's ID. */\n anchor?: string;\n}\n\nexport interface ColorData {\n /** The text's background color as a hexadecimal value. */\n background?: string | null;\n /** The text's foreground color as a hexadecimal value. */\n foreground?: string | null;\n}\n\nexport interface LinkData {\n /** Link details. */\n link?: V1Link;\n}\n\nexport interface MentionData {\n /** The mentioned user's name. */\n name?: string;\n /** The version of the user's name that appears after the `@` character in the mention. */\n slug?: string;\n /** Mentioned user's ID. */\n id?: string | null;\n}\n\nexport interface FontSizeData {\n /** The units used for the font size. */\n unit?: FontTypeWithLiterals;\n /** Font size value. */\n value?: number | null;\n}\n\nexport enum FontType {\n PX = 'PX',\n EM = 'EM',\n}\n\n/** @enumType */\nexport type FontTypeWithLiterals = FontType | 'PX' | 'EM';\n\nexport interface SpoilerData {\n /** Spoiler ID. */\n id?: string | null;\n}\n\nexport interface FontFamilyData {\n /** @maxLength 1000 */\n value?: string | null;\n}\n\nexport interface AppEmbedData extends AppEmbedDataAppDataOneOf {\n /** Data for embedded Wix Bookings content. */\n bookingData?: BookingData;\n /** Data for embedded Wix Events content. */\n eventData?: EventData;\n /** The type of Wix App content being embedded. */\n type?: AppTypeWithLiterals;\n /** The ID of the embedded content. */\n itemId?: string | null;\n /** The name of the embedded content. */\n name?: string | null;\n /**\n * Deprecated: Use `image` instead.\n * @deprecated\n */\n imageSrc?: string | null;\n /** The URL for the embedded content. */\n url?: string | null;\n /** An image for the embedded content. */\n image?: Media;\n /** Whether to hide the image. */\n hideImage?: boolean | null;\n /** Whether to hide the title. */\n hideTitle?: boolean | null;\n /** Whether to hide the price. */\n hidePrice?: boolean | null;\n /** Whether to hide the description (Event and Booking). */\n hideDescription?: boolean | null;\n /** Whether to hide the date and time (Event). */\n hideDateTime?: boolean | null;\n /** Whether to hide the location (Event). */\n hideLocation?: boolean | null;\n /** Whether to hide the duration (Booking). */\n hideDuration?: boolean | null;\n /** Whether to hide the button. */\n hideButton?: boolean | null;\n /** Whether to hide the ribbon. */\n hideRibbon?: boolean | null;\n /** Button styling options. */\n buttonStyles?: ButtonStyles;\n /** Image styling options. */\n imageStyles?: ImageStyles;\n /** Ribbon styling options. */\n ribbonStyles?: RibbonStyles;\n /** Card styling options. */\n cardStyles?: CardStyles;\n /** Styling for the app embed's container. */\n containerData?: PluginContainerData;\n /** Pricing data for embedded Wix App content. */\n pricingData?: PricingData;\n}\n\n/** @oneof */\nexport interface AppEmbedDataAppDataOneOf {\n /** Data for embedded Wix Bookings content. */\n bookingData?: BookingData;\n /** Data for embedded Wix Events content. */\n eventData?: EventData;\n}\n\nexport enum ImageStylesPosition {\n /** Image positioned at the start (left in LTR layouts, right in RTL layouts) */\n START = 'START',\n /** Image positioned at the end (right in LTR layouts, left in RTL layouts) */\n END = 'END',\n /** Image positioned at the top */\n TOP = 'TOP',\n}\n\n/** @enumType */\nexport type ImageStylesPositionWithLiterals =\n | ImageStylesPosition\n | 'START'\n | 'END'\n | 'TOP';\n\nexport enum AspectRatio {\n /** 1:1 aspect ratio */\n SQUARE = 'SQUARE',\n /** 16:9 aspect ratio */\n RECTANGLE = 'RECTANGLE',\n}\n\n/** @enumType */\nexport type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';\n\nexport enum Resizing {\n /** Fill the container, may crop the image */\n FILL = 'FILL',\n /** Fit the image within the container */\n FIT = 'FIT',\n}\n\n/** @enumType */\nexport type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';\n\nexport enum Placement {\n /** Ribbon placed on the image */\n IMAGE = 'IMAGE',\n /** Ribbon placed on the product information */\n PRODUCT_INFO = 'PRODUCT_INFO',\n}\n\n/** @enumType */\nexport type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';\n\nexport enum CardStylesType {\n /** Card with visible border and background */\n CONTAINED = 'CONTAINED',\n /** Card without visible border */\n FRAMELESS = 'FRAMELESS',\n}\n\n/** @enumType */\nexport type CardStylesTypeWithLiterals =\n | CardStylesType\n | 'CONTAINED'\n | 'FRAMELESS';\n\nexport enum CardStylesAlignment {\n /** Content aligned to start (left in LTR layouts, right in RTL layouts) */\n START = 'START',\n /** Content centered */\n CENTER = 'CENTER',\n /** Content aligned to end (right in LTR layouts, left in RTL layouts) */\n END = 'END',\n}\n\n/** @enumType */\nexport type CardStylesAlignmentWithLiterals =\n | CardStylesAlignment\n | 'START'\n | 'CENTER'\n | 'END';\n\nexport enum Layout {\n /** Elements stacked vertically */\n STACKED = 'STACKED',\n /** Elements arranged horizontally */\n SIDE_BY_SIDE = 'SIDE_BY_SIDE',\n}\n\n/** @enumType */\nexport type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';\n\nexport enum AppType {\n PRODUCT = 'PRODUCT',\n EVENT = 'EVENT',\n BOOKING = 'BOOKING',\n}\n\n/** @enumType */\nexport type AppTypeWithLiterals = AppType | 'PRODUCT' | 'EVENT' | 'BOOKING';\n\nexport interface BookingData {\n /** Booking duration in minutes. */\n durations?: string | null;\n}\n\nexport interface EventData {\n /** Event schedule. */\n scheduling?: string | null;\n /** Event location. */\n location?: string | null;\n}\n\nexport interface ButtonStyles {\n /** Text to display on the button. */\n buttonText?: string | null;\n /** Border width in pixels. */\n borderWidth?: number | null;\n /** Border radius in pixels. */\n borderRadius?: number | null;\n /**\n * Border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /**\n * Text color as a hexadecimal value.\n * @format COLOR_HEX\n */\n textColor?: string | null;\n /**\n * Background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /**\n * Border color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n borderColorHover?: string | null;\n /**\n * Text color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n textColorHover?: string | null;\n /**\n * Background color as a hexadecimal value (hover state).\n * @format COLOR_HEX\n */\n backgroundColorHover?: string | null;\n /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */\n buttonSize?: string | null;\n}\n\nexport interface ImageStyles {\n /** Whether to hide the image. */\n hideImage?: boolean | null;\n /** Position of image. Defaults to `START`. */\n imagePosition?: ImageStylesPositionWithLiterals;\n /** Aspect ratio for the image. Defaults to `SQUARE`. */\n aspectRatio?: AspectRatioWithLiterals;\n /** How the image should be resized. Defaults to `FILL`. */\n resizing?: ResizingWithLiterals;\n /**\n * Image border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /** Image border width in pixels. */\n borderWidth?: number | null;\n /** Image border radius in pixels. */\n borderRadius?: number | null;\n}\n\nexport interface RibbonStyles {\n /** Text to display on the ribbon. */\n ribbonText?: string | null;\n /**\n * Ribbon background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /**\n * Ribbon text color as a hexadecimal value.\n * @format COLOR_HEX\n */\n textColor?: string | null;\n /**\n * Ribbon border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /** Ribbon border width in pixels. */\n borderWidth?: number | null;\n /** Ribbon border radius in pixels. */\n borderRadius?: number | null;\n /** Placement of the ribbon. Defaults to `IMAGE`. */\n ribbonPlacement?: PlacementWithLiterals;\n}\n\nexport interface CardStyles {\n /**\n * Card background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /**\n * Card border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /** Card border width in pixels. */\n borderWidth?: number | null;\n /** Card border radius in pixels. */\n borderRadius?: number | null;\n /** Card type. Defaults to `CONTAINED`. */\n type?: CardStylesTypeWithLiterals;\n /** Content alignment. Defaults to `START`. */\n alignment?: CardStylesAlignmentWithLiterals;\n /** Layout for title and price. Defaults to `STACKED`. */\n titlePriceLayout?: LayoutWithLiterals;\n /**\n * Title text color as a hexadecimal value.\n * @format COLOR_HEX\n */\n titleColor?: string | null;\n /**\n * Text color as a hexadecimal value.\n * @format COLOR_HEX\n */\n textColor?: string | null;\n}\n\nexport interface PricingData {\n /**\n * Minimum numeric price value as string (e.g., \"10.99\").\n * @decimalValue options { maxScale:2 }\n */\n valueFrom?: string | null;\n /**\n * Maximum numeric price value as string (e.g., \"19.99\").\n * @decimalValue options { maxScale:2 }\n */\n valueTo?: string | null;\n /**\n * Numeric price value as string after discount application (e.g., \"15.99\").\n * @decimalValue options { maxScale:2 }\n */\n discountedValue?: string | null;\n /**\n * Currency of the value in ISO 4217 format (e.g., \"USD\", \"EUR\").\n * @format CURRENCY\n */\n currency?: string | null;\n /**\n * Pricing plan ID.\n * @format GUID\n */\n pricingPlanId?: string | null;\n}\n\nexport interface VideoData {\n /** Styling for the video's container. */\n containerData?: PluginContainerData;\n /** Video details. */\n video?: Media;\n /** Video thumbnail details. */\n thumbnail?: Media;\n /** Sets whether the video's download button is disabled. Defaults to `false`. */\n disableDownload?: boolean | null;\n /** Video title. */\n title?: string | null;\n /** Video options. */\n options?: PlaybackOptions;\n}\n\nexport interface PlaybackOptions {\n /** Sets whether the media will automatically start playing. */\n autoPlay?: boolean | null;\n /** Sets whether media's will be looped. */\n playInLoop?: boolean | null;\n /** Sets whether media's controls will be shown. */\n showControls?: boolean | null;\n}\n\nexport interface EmbedData {\n /** Styling for the oEmbed node's container. */\n containerData?: PluginContainerData;\n /** An [oEmbed](https://www.oembed.com) object. */\n oembed?: Oembed;\n /** Origin asset source. */\n src?: string | null;\n}\n\nexport interface Oembed {\n /** The resource type. */\n type?: string | null;\n /** The width of the resource specified in the `url` property in pixels. */\n width?: number | null;\n /** The height of the resource specified in the `url` property in pixels. */\n height?: number | null;\n /** Resource title. */\n title?: string | null;\n /** The source URL for the resource. */\n url?: string | null;\n /** HTML for embedding a video player. The HTML should have no padding or margins. */\n html?: string | null;\n /** The name of the author or owner of the resource. */\n authorName?: string | null;\n /** The URL for the author or owner of the resource. */\n authorUrl?: string | null;\n /** The name of the resource provider. */\n providerName?: string | null;\n /** The URL for the resource provider. */\n providerUrl?: string | null;\n /** The URL for a thumbnail image for the resource. If this property is defined, `thumbnailWidth` and `thumbnailHeight` must also be defined. */\n thumbnailUrl?: string | null;\n /** The width of the resource's thumbnail image. If this property is defined, `thumbnailUrl` and `thumbnailHeight` must also be defined. */\n thumbnailWidth?: string | null;\n /** The height of the resource's thumbnail image. If this property is defined, `thumbnailUrl` and `thumbnailWidth`must also be defined. */\n thumbnailHeight?: string | null;\n /** The URL for an embedded viedo. */\n videoUrl?: string | null;\n /** The oEmbed version number. This value must be `1.0`. */\n version?: string | null;\n}\n\nexport interface CollapsibleListData {\n /** Styling for the collapsible list's container. */\n containerData?: PluginContainerData;\n /** If `true`, only one item can be expanded at a time. Defaults to `false`. */\n expandOnlyOne?: boolean | null;\n /** Sets which items are expanded when the page loads. */\n initialExpandedItems?: InitialExpandedItemsWithLiterals;\n /** The direction of the text in the list. Either left-to-right or right-to-left. */\n direction?: DirectionWithLiterals;\n /** If `true`, The collapsible item will appear in search results as an FAQ. */\n isQapageData?: boolean | null;\n}\n\nexport enum InitialExpandedItems {\n /** First item will be expended initally */\n FIRST = 'FIRST',\n /** All items will expended initally */\n ALL = 'ALL',\n /** All items collapsed initally */\n NONE = 'NONE',\n}\n\n/** @enumType */\nexport type InitialExpandedItemsWithLiterals =\n | InitialExpandedItems\n | 'FIRST'\n | 'ALL'\n | 'NONE';\n\nexport enum Direction {\n /** Left-to-right */\n LTR = 'LTR',\n /** Right-to-left */\n RTL = 'RTL',\n}\n\n/** @enumType */\nexport type DirectionWithLiterals = Direction | 'LTR' | 'RTL';\n\nexport interface TableData {\n /** Styling for the table's container. */\n containerData?: PluginContainerData;\n /** The table's dimensions. */\n dimensions?: Dimensions;\n /**\n * Deprecated: Use `rowHeader` and `columnHeader` instead.\n * @deprecated\n */\n header?: boolean | null;\n /** Sets whether the table's first row is a header. Defaults to `false`. */\n rowHeader?: boolean | null;\n /** Sets whether the table's first column is a header. Defaults to `false`. */\n columnHeader?: boolean | null;\n /** The spacing between cells in pixels. Defaults to `0`. */\n cellSpacing?: number | null;\n /**\n * Padding in pixels for cells. Follows CSS order: top, right, bottom, left.\n * @maxSize 4\n */\n cellPadding?: number[];\n}\n\nexport interface Dimensions {\n /** An array representing relative width of each column in relation to the other columns. */\n colsWidthRatio?: number[];\n /** An array representing the height of each row in pixels. */\n rowsHeight?: number[];\n /** An array representing the minimum width of each column in pixels. */\n colsMinWidth?: number[];\n}\n\nexport interface TableCellData {\n /** Styling for the cell's background color and text alignment. */\n cellStyle?: CellStyle;\n /** The cell's border colors. */\n borderColors?: BorderColors;\n /** Defines how many columns the cell spans. Default: 1. */\n colspan?: number | null;\n /** Defines how many rows the cell spans. Default: 1. */\n rowspan?: number | null;\n /** The cell's border widths. */\n borderWidths?: BorderWidths;\n}\n\nexport enum VerticalAlignment {\n /** Top alignment */\n TOP = 'TOP',\n /** Middle alignment */\n MIDDLE = 'MIDDLE',\n /** Bottom alignment */\n BOTTOM = 'BOTTOM',\n}\n\n/** @enumType */\nexport type VerticalAlignmentWithLiterals =\n | VerticalAlignment\n | 'TOP'\n | 'MIDDLE'\n | 'BOTTOM';\n\nexport interface CellStyle {\n /** Vertical alignment for the cell's text. */\n verticalAlignment?: VerticalAlignmentWithLiterals;\n /**\n * Cell background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n}\n\nexport interface BorderColors {\n /**\n * Left border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n left?: string | null;\n /**\n * Right border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n right?: string | null;\n /**\n * Top border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n top?: string | null;\n /**\n * Bottom border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n bottom?: string | null;\n}\n\nexport interface BorderWidths {\n /** Left border width in pixels. */\n left?: number | null;\n /** Right border width in pixels. */\n right?: number | null;\n /** Top border width in pixels. */\n top?: number | null;\n /** Bottom border width in pixels. */\n bottom?: number | null;\n}\n\n/**\n * `NullValue` is a singleton enumeration to represent the null value for the\n * `Value` type union.\n *\n * The JSON representation for `NullValue` is JSON `null`.\n */\nexport enum NullValue {\n /** Null value. */\n NULL_VALUE = 'NULL_VALUE',\n}\n\n/** @enumType */\nexport type NullValueWithLiterals = NullValue | 'NULL_VALUE';\n\n/**\n * `ListValue` is a wrapper around a repeated field of values.\n *\n * The JSON representation for `ListValue` is JSON array.\n */\nexport interface ListValue {\n /** Repeated field of dynamically typed values. */\n values?: any[];\n}\n\nexport interface AudioData {\n /** Styling for the audio node's container. */\n containerData?: PluginContainerData;\n /** Audio file details. */\n audio?: Media;\n /** Sets whether the audio node's download button is disabled. Defaults to `false`. */\n disableDownload?: boolean | null;\n /** Cover image. */\n coverImage?: Media;\n /** Track name. */\n name?: string | null;\n /** Author name. */\n authorName?: string | null;\n /** An HTML version of the audio node. */\n html?: string | null;\n}\n\nexport interface OrderedListData {\n /** Indentation level from 0-4. */\n indentation?: number;\n /** Offset level from 0-4. */\n offset?: number | null;\n /** List start number. */\n start?: number | null;\n}\n\nexport interface BulletedListData {\n /** Indentation level from 0-4. */\n indentation?: number;\n /** Offset level from 0-4. */\n offset?: number | null;\n}\n\nexport interface BlockquoteData {\n /** Indentation level from 1-4. */\n indentation?: number;\n}\n\nexport interface CaptionData {\n textStyle?: V1TextStyle;\n}\n\nexport interface LayoutData {\n /**\n * Background color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backgroundColor?: string | null;\n /** Background image. */\n backgroundImage?: LayoutDataBackgroundImage;\n /**\n * Border color as a hexadecimal value.\n * @format COLOR_HEX\n */\n borderColor?: string | null;\n /** Border width in pixels. */\n borderWidth?: number | null;\n /** Border */\n borderRadius?: number | null;\n /**\n * Backdrop color as a hexadecimal value.\n * @format COLOR_HEX\n */\n backdropColor?: string | null;\n /** Backdrop image.radius in pixels. */\n backdropImage?: LayoutDataBackgroundImage;\n /** Backdrop top padding. */\n backdropPaddingTop?: number | null;\n /** Backdrop bottom padding */\n backdropPaddingBottom?: number | null;\n /** Horizontal and vertical gap between columns */\n gap?: number | null;\n /**\n * Padding in pixels for cells. Follows CSS order: top, right, bottom, left\n * @maxSize 4\n */\n cellPadding?: number[];\n /** Vertical alignment for the cell's items. */\n cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;\n /** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */\n responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;\n /** Size in pixels when responsiveness_behaviour applies */\n responsivenessBreakpoint?: number | null;\n /** Styling for the layout's container. */\n containerData?: PluginContainerData;\n /** Defines where selected design propertied applies to */\n designTarget?: DesignTargetWithLiterals;\n}\n\nexport enum Scaling {\n /** Auto image scaling */\n AUTO = 'AUTO',\n /** Contain image scaling */\n CONTAIN = 'CONTAIN',\n /** Cover image scaling */\n COVER = 'COVER',\n}\n\n/** @enumType */\nexport type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';\n\nexport enum LayoutDataImagePosition {\n /** Image positioned at the center */\n CENTER = 'CENTER',\n /** Image positioned on the left */\n CENTER_LEFT = 'CENTER_LEFT',\n /** Image positioned on the right */\n CENTER_RIGHT = 'CENTER_RIGHT',\n /** Image positioned at the center top */\n TOP = 'TOP',\n /** Image positioned at the top left */\n TOP_LEFT = 'TOP_LEFT',\n /** Image positioned at the top right */\n TOP_RIGHT = 'TOP_RIGHT',\n /** Image positioned at the center bottom */\n BOTTOM = 'BOTTOM',\n /** Image positioned at the bottom left */\n BOTTOM_LEFT = 'BOTTOM_LEFT',\n /** Image positioned at the bottom right */\n BOTTOM_RIGHT = 'BOTTOM_RIGHT',\n}\n\n/** @enumType */\nexport type LayoutDataImagePositionWithLiterals =\n | LayoutDataImagePosition\n | 'CENTER'\n | 'CENTER_LEFT'\n | 'CENTER_RIGHT'\n | 'TOP'\n | 'TOP_LEFT'\n | 'TOP_RIGHT'\n | 'BOTTOM'\n | 'BOTTOM_LEFT'\n | 'BOTTOM_RIGHT';\n\nexport interface LayoutDataBackgroundImage {\n /** Background image. */\n media?: Media;\n /** Background image opacity. */\n opacity?: number | null;\n /** Background image scaling. */\n scaling?: ScalingWithLiterals;\n /** Position of background. Defaults to `CENTER`. */\n position?: LayoutDataImagePositionWithLiterals;\n}\n\nexport enum VerticalAlignmentAlignment {\n /** Top alignment */\n TOP = 'TOP',\n /** Middle alignment */\n MIDDLE = 'MIDDLE',\n /** Bottom alignment */\n BOTTOM = 'BOTTOM',\n}\n\n/** @enumType */\nexport type VerticalAlignmentAlignmentWithLiterals =\n | VerticalAlignmentAlignment\n | 'TOP'\n | 'MIDDLE'\n | 'BOTTOM';\n\nexport enum ResponsivenessBehaviour {\n /** Stacking of columns */\n STACK = 'STACK',\n /** Wrapping of columns */\n WRAP = 'WRAP',\n}\n\n/** @enumType */\nexport type ResponsivenessBehaviourWithLiterals =\n | ResponsivenessBehaviour\n | 'STACK'\n | 'WRAP';\n\nexport enum DesignTarget {\n /** Design applied to layout */\n LAYOUT = 'LAYOUT',\n /** Design applied to cells */\n CELL = 'CELL',\n}\n\n/** @enumType */\nexport type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';\n\nexport interface LayoutCellData {\n /** Size of the cell in 12 columns grid. */\n colSpan?: number | null;\n}\n\nexport interface V1Metadata {\n /** Schema version. */\n version?: number;\n /**\n * When the object was created.\n * @readonly\n * @deprecated\n */\n createdTimestamp?: Date | null;\n /**\n * When the object was most recently updated.\n * @deprecated\n */\n updatedTimestamp?: Date | null;\n /** Object ID. */\n _id?: string | null;\n}\n\nexport interface DocumentStyle {\n /** Styling for H1 nodes. */\n headerOne?: TextNodeStyle;\n /** Styling for H2 nodes. */\n headerTwo?: TextNodeStyle;\n /** Styling for H3 nodes. */\n headerThree?: TextNodeStyle;\n /** Styling for H4 nodes. */\n headerFour?: TextNodeStyle;\n /** Styling for H5 nodes. */\n headerFive?: TextNodeStyle;\n /** Styling for H6 nodes. */\n headerSix?: TextNodeStyle;\n /** Styling for paragraph nodes. */\n paragraph?: TextNodeStyle;\n /** Styling for block quote nodes. */\n blockquote?: TextNodeStyle;\n /** Styling for code block nodes. */\n codeBlock?: TextNodeStyle;\n}\n\nexport interface TextNodeStyle {\n /** The decorations to apply to the node. */\n decorations?: Decoration[];\n /** Padding and background color for the node. */\n nodeStyle?: NodeStyle;\n /** Line height for text in the node. */\n lineHeight?: string | null;\n}\n\nexport interface CustomRefData {\n title?: string;\n anotherTitle?: string;\n}\n\nexport interface TranslatedMessageWithUniqueFieldRepeated {\n uniqueField?: string;\n message?: string;\n}\n\nexport interface TranslatedMessageWithIdRepeated {\n _id?: string;\n message?: string;\n}\n\nexport interface DiscoveryMetaData {\n /**\n * @minLength 1\n * @maxLength 200\n */\n title?: string | null;\n /**\n * @minLength 1\n * @maxLength 200\n */\n description?: string | null;\n /**\n * Searchable keywords\n * @maxSize 100\n */\n keywords?: Keywords[];\n /** Is searchable */\n searchable?: boolean;\n}\n\nexport interface InternalComponentMetadata {\n componentMetadata?: DiscoveryMetaData;\n /** @maxSize 500 */\n repeatedComponentMetadata?: DiscoveryMetaData[];\n}\n\nexport enum TestEnum {\n UNKNOWN_TEST_ENUM = 'UNKNOWN_TEST_ENUM',\n FIRST_TEST = 'FIRST_TEST',\n SECOND_TEST = 'SECOND_TEST',\n}\n\n/** @enumType */\nexport type TestEnumWithLiterals =\n | TestEnum\n | 'UNKNOWN_TEST_ENUM'\n | 'FIRST_TEST'\n | 'SECOND_TEST';\n\n/** SPI config - defines the relation between implementer URL and which types it is validates */\nexport interface ComponentsValidatorConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /**\n * Component types that will be validated\n * @minSize 1\n * @maxSize 100\n */\n componentValidationTypes?: ComponentTypeWithLiterals[];\n /** Indicates whether the validation should affect real production */\n testMode?: boolean;\n}\n\nexport interface ComponentTranslationAdditionalFieldsConfig {\n deploymentUri?: string;\n}\n\nexport interface FormSchemaSpiConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /**\n * Configuration of namespaces known by implementer\n * @maxSize 3\n */\n namespaceConfigs?: FormsSchemaNamespaceConfig[];\n}\n\nexport interface FormsSchemaNamespaceConfig {\n /**\n * Namespace name.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /** Permissions associated with this namespace. */\n permissions?: FormsPermissions;\n /** Enable client specific form validation for the namespace, more info in ValidateFormSchema. */\n schemaValidationEnabled?: boolean;\n /** Restrictions associated with this namespace. */\n restrictions?: Restrictions;\n /** Enable translations with multilingual */\n multilingualEnabled?: boolean;\n /** Attempt to select unique name for form */\n uniqueName?: boolean;\n}\n\nexport interface Restrictions {\n /**\n * Maximum amount of forms allowed per namespace.\n * @max 15000\n */\n maxFormsAmount?: number;\n /**\n * Maximum amount of fields allowed per form.\n * @max 200\n */\n maxFieldsAmount?: number;\n}\n\nexport interface ProviderConfig {\n /**\n * The name of the calendar provider.\n * @minLength 1\n */\n name?: string;\n /** The base URI in which all methods are deployed. */\n baseUri?: string;\n /** The provided calendar type. */\n calendarType?: CalendarTypeWithLiterals;\n /**\n * Connect methods used to connect to the calendar.\n * @minSize 1\n */\n connectMethods?: ConnectMethodWithLiterals[];\n /** Whether the sync configuration can be updated. */\n canUpdateSyncConfig?: boolean;\n /** Whether events can be listed from the external calendar to the Wix calendar. */\n listEventFromCalendars?: ListEventFromCalendarsWithLiterals;\n /** Whether Wix calendar sessions can be synced to the external calendar. */\n syncToCalendar?: SyncToCalendarWithLiterals;\n}\n\nexport enum CalendarType {\n UNDEFINED = 'UNDEFINED',\n GOOGLE = 'GOOGLE',\n I_CAL = 'I_CAL',\n MICROSOFT = 'MICROSOFT',\n OTHER = 'OTHER',\n}\n\n/** @enumType */\nexport type CalendarTypeWithLiterals =\n | CalendarType\n | 'UNDEFINED'\n | 'GOOGLE'\n | 'I_CAL'\n | 'MICROSOFT'\n | 'OTHER';\n\nexport enum ConnectMethod {\n OAUTH = 'OAUTH',\n CREDENTIALS = 'CREDENTIALS',\n}\n\n/** @enumType */\nexport type ConnectMethodWithLiterals = ConnectMethod | 'OAUTH' | 'CREDENTIALS';\n\nexport enum ListEventFromCalendars {\n /** Listing events from the external calendar is not supported. */\n LIST_NOT_SUPPORTED = 'LIST_NOT_SUPPORTED',\n /** Listing events from the primary external calendar only. */\n LIST_FROM_PRIMARY_CALENDAR_ONLY = 'LIST_FROM_PRIMARY_CALENDAR_ONLY',\n /**\n * Listing events from specific external calendars.\n * The external calendars can be listed using the `ExternalCalendarProvider.ListCalendars` API.\n */\n LIST_FROM_SPECIFIC_CALENDARS = 'LIST_FROM_SPECIFIC_CALENDARS',\n}\n\n/** @enumType */\nexport type ListEventFromCalendarsWithLiterals =\n | ListEventFromCalendars\n | 'LIST_NOT_SUPPORTED'\n | 'LIST_FROM_PRIMARY_CALENDAR_ONLY'\n | 'LIST_FROM_SPECIFIC_CALENDARS';\n\nexport enum SyncToCalendar {\n /** Syncing Wix calendar sessions to the external calendar is not supported. */\n SYNC_NOT_SUPPORTED = 'SYNC_NOT_SUPPORTED',\n /** Syncing Wix calendar sessions to the primary external calendar only. */\n SYNC_TO_PRIMARY_CALENDAR_ONLY = 'SYNC_TO_PRIMARY_CALENDAR_ONLY',\n /** Syncing Wix calendar sessions to a new external calendar. */\n SYNC_TO_DEDICATED_CALENDAR = 'SYNC_TO_DEDICATED_CALENDAR',\n}\n\n/** @enumType */\nexport type SyncToCalendarWithLiterals =\n | SyncToCalendar\n | 'SYNC_NOT_SUPPORTED'\n | 'SYNC_TO_PRIMARY_CALENDAR_ONLY'\n | 'SYNC_TO_DEDICATED_CALENDAR';\n\nexport interface DefaultTaxGroupProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /** User-friendly name of the tax category */\n taxationCategory?: string;\n additionalCategories?: Record<string, TaxationCategoryProvider>;\n}\n\nexport interface TaxationCategoryProvider {\n taxationCategory?: string;\n /**\n * must be a unique GUID for the category\n * @format GUID\n */\n taxationCategoryUuid?: string;\n}\n\nexport interface DynamicSiteStructureProviderConfig {\n /** URL to dynamic site structure provider service */\n deploymentUri?: string;\n}\n\nexport interface HeadlessOAuth {\n /**\n * ID of the site that uses the component.\n * @format GUID\n */\n siteId?: string;\n /** Allowlist of domains that can be redirected to after a login. */\n allowedDomains?: string[];\n /** Component description. */\n description?: string | null;\n /**\n * Login URL to automatically redirect users to from Wix pages.\n * @format WEB_URL\n */\n loginUrl?: string | null;\n /**\n * Array of URIs that can be redirected to after oAuth2 authorization.\n * @maxLength 2048\n */\n allowedRedirectUris?: string[];\n /** Whether a user can resolve the [app secret](https://dev.wix.com/docs/rest/internal-only/dev-center-platform/app-service/introduction). */\n blockSecretGeneration?: boolean;\n /**\n * Logout URL that is invoked when users logout from wix pages.\n * @format WEB_URL\n */\n logoutUrl?: string | null;\n /** OAuth application type. */\n applicationType?: OAuthAppTypeWithLiterals;\n /** OAuth technology used by the application. */\n technology?: OAuthTechnologiesWithLiterals;\n /**\n * List of domain mappings from external domains to Wix domains.\n *\n * When a user accesses a non-Wix domain, they can be automatically forwarded to the corresponding\n * Wix domain based on these mappings. This enables domain-level redirection from\n * external domains to Wix-hosted pages.\n * @maxSize 15\n */\n wixPagesDomainsMappings?: WixPagesDomainMapping[];\n /**\n * Redirect url for Wix-hosted pages.\n * @maxLength 1024\n */\n redirectUrlWixPages?: string | null;\n}\n\n/** Types of OAuth application. */\nexport enum OAuthAppType {\n /** OAuth app type is not specified. */\n OAUTH_APP_TYPE_UNSPECIFIED = 'OAUTH_APP_TYPE_UNSPECIFIED',\n /** OAuth app type is a web application. */\n WEB_APP = 'WEB_APP',\n /** OAuth app type is a mobile application. */\n MOBILE = 'MOBILE',\n /** OAuth app type is some other type of application. */\n OTHER = 'OTHER',\n}\n\n/** @enumType */\nexport type OAuthAppTypeWithLiterals =\n | OAuthAppType\n | 'OAUTH_APP_TYPE_UNSPECIFIED'\n | 'WEB_APP'\n | 'MOBILE'\n | 'OTHER';\n\n/** OAuth technology used by the oauth application. */\nexport enum OAuthTechnologies {\n /** The OAuth technology is not specified. */\n OAUTH_TECHNOLOGY_UNSPECIFIED = 'OAUTH_TECHNOLOGY_UNSPECIFIED',\n /** OAuth technology using JavaScript. */\n JAVASCRIPT = 'JAVASCRIPT',\n /** OAuth technology using Angular. */\n ANGULAR = 'ANGULAR',\n /** OAuth technology using Vue.js. */\n VUE = 'VUE',\n /** OAuth technology using React. */\n REACT = 'REACT',\n /** OAuth technology using React Native. */\n REACT_NATIVE = 'REACT_NATIVE',\n /** OAuth technology using iOS. */\n IOS = 'IOS',\n /** OAuth technology using Android. */\n ANDROID = 'ANDROID',\n /** OAuth technology using some other kind of technology. */\n OTHER_TECHNOLOGY = 'OTHER_TECHNOLOGY',\n}\n\n/** @enumType */\nexport type OAuthTechnologiesWithLiterals =\n | OAuthTechnologies\n | 'OAUTH_TECHNOLOGY_UNSPECIFIED'\n | 'JAVASCRIPT'\n | 'ANGULAR'\n | 'VUE'\n | 'REACT'\n | 'REACT_NATIVE'\n | 'IOS'\n | 'ANDROID'\n | 'OTHER_TECHNOLOGY';\n\nexport interface WixPagesDomainMapping {\n /** @maxLength 2048 */\n origin?: string;\n /** @maxLength 2048 */\n destination?: string;\n}\n\nexport interface TaxCalculatorSpiConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /** User-friendly name of the tax calculator */\n calculatorDisplayName?: string;\n /** list of countries and boolean represents if its a white list or black list (supported or unsupported countries) */\n taxCountriesConfig?: TaxCountriesConfig;\n}\n\nexport interface TaxCountriesConfig {\n /**\n * list of countries\n * @format COUNTRY\n */\n countries?: string[];\n /** represents if the calculator supports tax in those countries or not */\n isSupported?: boolean;\n}\n\nexport interface CommentModerationProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: string;\n /** List of app ids which moderation implementation supports */\n supportedAppIds?: string[];\n}\n\nexport interface GridAppFilesTransformerConfig {\n /** URI where the SPI Implementer is deployed */\n uriConfig?: SpiBaseUri;\n /**\n * Transformation layout which should match to value from\n * [GridAppLayout](https://github.com/wix-private/wix-code/blob/master/editor/wix-code-ide-server-ng/proto/wix/velo/ide/v1/grid_app_layout.proto) enum.\n * The new values should be added via PR.\n */\n layout?: string;\n /**\n * List of paths which requires content transformation to GridApp format\n * @maxSize 10\n */\n filesContentToTransformToGridApp?: string[];\n /**\n * List of paths which requires content transformation to Layout format\n * @maxSize 10\n */\n filesContentToTransformToLayout?: string[];\n}\n\nexport interface PolicyConfig {\n /** URI where the SPI Implementer is deployed */\n uriConfig?: SpiBaseUri;\n}\n\nexport interface CustomChargesConfig {\n /**\n * Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.\n *\n * For example, to call the Premium Custom Charges endpoint at `https://custom-charges.com/v1/premium-custom-charges`, the base URI you provide here is `https://custom-charges.com/`.\n */\n baseUri?: SpiBaseUri;\n}\n\nexport interface ValidationsSPIConfig {\n /** Whether to validate the cart page in addition to the checkout page. Default: `false` */\n validateInCart?: boolean;\n /**\n * Required. Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.\n * For example, to call the Get Validation Violations endpoint at `https://my-validations.com/v1/get-violations`, the base URI you provide here is `https://my-validations.com`.\n * @minLength 1\n */\n deploymentUri?: string;\n}\n\n/** SPI config - defines the relation between implementer URL and which types it saves */\nexport interface ComponentReferenceDataConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /**\n * Component types that contains external (reference) data that is NOT saved in DevCenter.\n * @minSize 1\n * @maxSize 100\n */\n supportedComponentTypes?: ComponentTypeWithLiterals[];\n}\n\n/** Configuration for ReviewsProductCatalogProvider */\nexport interface ReviewsProductCatalogProviderConfig {\n /** URI where the SPI Implementer is deployed */\n uriConfig?: SpiBaseUri;\n /** Namespace of catalog provider */\n namespace?: string;\n /** Flag that indicates if verified reviews are enabled */\n isVerifiedReviewsEnabled?: boolean;\n}\n\nexport interface SocialMarketingDesignsProviderConfig {\n /**\n * The URL of the SPI implementation\n * @minLength 1\n * @maxLength 1024\n */\n baseUri?: string;\n /**\n * Name of the provider\n * @minLength 1\n * @maxLength 1024\n */\n name?: string;\n /**\n * Component id (from dev center) of the editor\n * @format GUID\n */\n editorComponentId?: string;\n /**\n * Provider's icon, to be displayed in UI\n * @format WEB_URL\n */\n iconUrl?: string;\n /** How the Prover should be opened */\n navigationType?: NavigationTypeWithLiterals;\n /** Is delete design implemented by the provider */\n deleteDesignEnabled?: boolean;\n /** If the provider manages designs */\n manageDesigns?: boolean;\n}\n\nexport enum NavigationType {\n NAVIGATE = 'NAVIGATE',\n MODAL = 'MODAL',\n}\n\n/** @enumType */\nexport type NavigationTypeWithLiterals = NavigationType | 'NAVIGATE' | 'MODAL';\n\nexport interface GbpFeatureConfig {\n baseUri?: SpiBaseUri;\n}\n\nexport interface CommentFilterProviderConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /** List of app ids for which FilterComment should be invoked */\n supportedAppIds?: string[];\n}\n\nexport interface TaxIdValidatorConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /** User-friendly name of the tax id validator */\n validationProvider?: string;\n /** Configuration of supported tax types */\n taxTypesConfig?: TaxTypesConfig;\n}\n\nexport interface TaxTypesConfig {\n /** List of supported tax types, as provided in ValidateTaxIdRequest and persisted in TaxIdValidationService */\n supportedTaxTypes?: string[];\n}\n\n/** Describes a setting group of a notification */\nexport interface PingSettingsGroupComponentData {\n title?: string;\n /** the description of the setting group */\n description?: string | null;\n /** the default state of the setting group */\n state?: PingSettingsGroupComponentDataStateWithLiterals;\n}\n\nexport enum PingSettingsGroupComponentDataState {\n UNKNOWN_STATE = 'UNKNOWN_STATE',\n DEFAULT_ON = 'DEFAULT_ON',\n DEFAULT_OFF = 'DEFAULT_OFF',\n}\n\n/** @enumType */\nexport type PingSettingsGroupComponentDataStateWithLiterals =\n | PingSettingsGroupComponentDataState\n | 'UNKNOWN_STATE'\n | 'DEFAULT_ON'\n | 'DEFAULT_OFF';\n\nexport interface FormSpamSubmissionSpiConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /**\n * Configuration of namespaces known by implementer\n * @maxSize 3\n */\n namespaceConfigs?: FormsSpamSubmissionsNamespaceConfig[];\n}\n\nexport interface FormsSpamSubmissionsNamespaceConfig {\n /**\n * Namespace name.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /** Permissions associated with this namespace. */\n permissions?: SpamSubmissionPermissions;\n /**\n * Disables Wix spam submissions filter.\n * Spam submissions are persisted in spam submissions storage to support marking submissions as not spam.\n */\n wixSpamFilterDisabled?: boolean;\n}\n\nexport interface SpamSubmissionPermissions {\n /**\n * Create permission name\n * @maxLength 50\n */\n create?: string;\n /**\n * Delete permission name\n * @maxLength 50\n */\n delete?: string;\n /**\n * Update permission name\n * @maxLength 50\n */\n update?: string;\n /**\n * Read permission name\n * @maxLength 50\n */\n read?: string;\n /**\n * Report as not spam permission name\n * @maxLength 50\n */\n reportNotSpam?: string;\n}\n\n/** Editor Add-on component */\nexport interface EditorAddon {\n /**\n * Deprecated, use editor_script\n * @format WEB_URL\n * @deprecated Deprecated, use editor_script\n * @replacedBy editor_script\n * @targetRemovalDate 2025-06-01\n */\n editorScriptUrl?: string;\n /** Tool panel configuration. */\n toolPanelConfig?: ToolPanelConfig;\n /** Information to display in the addons market. */\n marketData?: AddonMarketData;\n /**\n * Optional, path to a Javascript file that will run in Editor environment\n * @format WEB_URL\n */\n editorScript?: string | null;\n /** Toggle to mark whether the editor should revoke an app that contains this component. */\n excludeFromAutoRevoke?: boolean;\n}\n\nexport interface InitialPosition {\n /** Offset from the left. For example, `\"50px\"`. */\n x?: string;\n /** Offset from the top. For example, `\"50px\"`. */\n y?: string;\n}\n\nexport interface ToolPanelConfig {\n /**\n * Iframe URL that hosts the add-on tool panel's content.\n * @format WEB_URL\n */\n url?: string;\n /** Addon tool panel width. */\n width?: string;\n /** Addon tool panel height. */\n height?: string;\n /**\n * Initial position of the opened panel.\n * Offset from top left corner of the container.\n */\n initialPosition?: InitialPosition;\n}\n\nexport interface AddonMarketData {\n /**\n * Addon name.\n * @minLength 5\n */\n name?: string;\n /**\n * Deprecated, use teaser\n * @minLength 10\n * @deprecated\n * @replacedBy teaser\n * @targetRemovalDate 2025-06-01\n */\n description?: string;\n /**\n * URL source of the addon's icon. Must be 36px x 36px in JPG or PNG format.\n * @format WEB_URL\n */\n iconUrl?: string | null;\n /** Author's name. */\n author?: string;\n /**\n * Addon teaser.\n * @minLength 10\n * @maxLength 60\n */\n teaser?: string | null;\n}\n\nexport interface ExternalDatabaseSpiConfig {\n /** The URI where the service provider is deployed. */\n uriConfig?: SpiBaseUri;\n /** The namespace of the external database. This can be used to access collections within the database, for example `namespace/collectionId`. */\n namespace?: string;\n}\n\nexport interface PaymentSettingsSPIConfig {\n /**\n * Base URI where the endpoints are called. Wix eCommerce appends the endpoint path to the base URI.\n * For example, to call the Get Payment Settings endpoint at `https://my-payment-settings.com/v1/payment-settings`, the base URI you provide here is `https://my-payment-settings.com/`.\n */\n deploymentUri?: string;\n /**\n * The fallback value that is used for [`requires3dSecure`](https://support.wix.com/en/article/about-3d-secure-3ds-payments-with-third-party-payment-providers) if the service plugin call fails.\n *\n * Default: `false`\n */\n fallbackValueForRequires3dSecure?: boolean;\n}\n\n/** Describes topic of a notification */\nexport interface NotificationTopic {\n /** the description of the topic */\n description?: string | null;\n /** the default state of the topic */\n state?: NotificationTopicStateWithLiterals;\n /** the type of the topic */\n type?: NotificationTopicTypeWithLiterals;\n /**\n * The recipients' types indicate that this topic is relevant.\n * @maxSize 10\n */\n supportedRecipientTypes?: RecipientTypeWithLiterals[];\n}\n\nexport enum NotificationTopicState {\n UNKNOWN_STATE = 'UNKNOWN_STATE',\n DEFAULT_ON = 'DEFAULT_ON',\n DEFAULT_OFF = 'DEFAULT_OFF',\n}\n\n/** @enumType */\nexport type NotificationTopicStateWithLiterals =\n | NotificationTopicState\n | 'UNKNOWN_STATE'\n | 'DEFAULT_ON'\n | 'DEFAULT_OFF';\n\nexport enum NotificationTopicType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n PROMOTIONAL = 'PROMOTIONAL',\n TRANSACTIONAL = 'TRANSACTIONAL',\n}\n\n/** @enumType */\nexport type NotificationTopicTypeWithLiterals =\n | NotificationTopicType\n | 'UNKNOWN_TYPE'\n | 'PROMOTIONAL'\n | 'TRANSACTIONAL';\n\n/** Recipient type */\nexport enum RecipientType {\n /** Wix User */\n WIX_USER = 'WIX_USER',\n /** Contact */\n CONTACT = 'CONTACT',\n}\n\n/** @enumType */\nexport type RecipientTypeWithLiterals = RecipientType | 'WIX_USER' | 'CONTACT';\n\nexport interface NotificationPreferencesFilterConfig {\n /** the base URI where all the methods are deployed. E.g. \"https://golden-coupons.com/wix-provider\" */\n baseUri?: SpiBaseUri;\n}\n\n/** This config provides details of the resource types that are managed by an app implementing this component SPI. */\nexport interface BookingsResourceTypesProviderConfig {\n /**\n * References of the resource types that are managed by the app that implements this component SPI.\n * @maxSize 10\n */\n bookingsResourceTypes?: BookingsResourceType[];\n}\n\nexport interface BookingsResourceType {\n /**\n * The ID of the resource type. Must be a GUID that is unique within the app.\n * @format GUID\n */\n _id?: string | null;\n /**\n * The name of the resource type. This can be any string, such as 'staff' or 'table'.\n * @minLength 1\n * @maxLength 40\n */\n name?: string | null;\n}\n\nexport interface PricingPlansFormConfiguration {\n /** *Plan preview** section configuration. */\n planPreview?: PlanFormPreviewSection;\n /** *Plan info** section configuration. */\n infoSection?: PlanFormInfoSection;\n /** *Settings** section configuration. */\n settingsSection?: PlanFormPlanSettingsSection;\n /** *Benefits** section configuration. */\n benefitsSection?: PlanFormBenefitsSection;\n /**\n * *Pricing options** section configuration.\n * DEPRECATED: Use pricing_section and duration_section instead. Will be removed in future versions.\n * @deprecated *Pricing options** section configuration.\n * DEPRECATED: Use pricing_section and duration_section instead. Will be removed in future versions.\n * @replacedBy pricing_section & duration_section\n * @targetRemovalDate 2025-11-30\n */\n pricingAndDurationSection?: PlanFormPricingAndDurationSection;\n /**\n * Custom sections for the form.\n * @maxSize 99\n */\n customSections?: PlanFormCustomSection[];\n /**\n * Order in which sections will be rendered. Can include default section IDs or custom section component IDs.\n * Visible sections that don't exist in this array are displayed below others in default oder.\n * @maxSize 99\n */\n sectionOrder?: PlanFormSection[];\n /** Custom plan form metadata. */\n metadata?: PlanFormTypeMetadata;\n /** *Page permissions** section configuration. */\n pagePermissions?: PlanFormPagePermissionsSection;\n /** Initial plan data for form defaults. */\n initialPlanValue?: PlanFormInitialValue;\n /**\n * Unique custom form name.\n * @minLength 1\n * @maxLength 100\n */\n formName?: string;\n /** *Pricing** section configuration. */\n pricingSection?: PlanFormPricingSection;\n /** *Duration** section configuration. */\n durationSection?: PlanFormDurationSection;\n /** *Custom pricing rules** Functions based pricing rules section configuration. */\n customPricingRulesSection?: PlanFormCustomPricingRulesSection;\n /** *Start date** functions based start date rules section configuration. */\n startDateRulesSection?: PlanFormStartDateRulesSection;\n}\n\nexport interface TextWithTooltip {\n /** Displayed text. */\n text?: string;\n /** Tooltip to show next to text. */\n tooltip?: TooltipSuffix;\n}\n\nexport interface TooltipSuffix {\n /** Tooltip content. */\n text?: string;\n}\n\nexport interface TextWithSuffix extends TextWithSuffixSuffixOneOf {\n /** Tooltip to show next to the text. */\n suffixTooltip?: TooltipSuffix;\n /** Link to show next to the text. */\n suffixLink?: LinkSuffix;\n /** Whether to hide the element. */\n hide?: boolean;\n /** Displayed text. */\n text?: string;\n}\n\n/** @oneof */\nexport interface TextWithSuffixSuffixOneOf {\n /** Tooltip to show next to the text. */\n suffixTooltip?: TooltipSuffix;\n /** Link to show next to the text. */\n suffixLink?: LinkSuffix;\n}\n\nexport interface LinkSuffix {\n /** Whether to hide the element. */\n hide?: boolean;\n /** Link text. */\n text?: string;\n /** External URL to open on link click. */\n url?: string;\n /** Text that is passed to click BI event as `referral_info` field. */\n referralInfo?: string;\n}\n\nexport interface PreviewCardPlaceholders {\n /** Placeholder plan name for preview. */\n name?: string;\n}\n\nexport interface InputWithPlaceholder {\n /** Input label. */\n label?: TextWithTooltip;\n /** Input placeholder. */\n placeholder?: string;\n}\n\nexport interface CoverImageConfiguration {\n /** Whether to hide the cover image input. */\n hide?: boolean;\n /** Cover image input label. */\n label?: TextWithTooltip;\n}\n\nexport interface PerksConfiguration {\n /** Whether to hide the **Perks** subsection. */\n hide?: boolean;\n /** *Perks** subsection title. */\n title?: TextWithTooltip;\n /** Perks input placeholder. */\n placeholder?: string;\n}\n\nexport interface CheckboxConfiguration {\n /** Policy agreement checkbox input label. */\n label?: string;\n /** Policy checkbox toggle configuration. */\n acceptRequiredToggle?: TextWithTooltip;\n /** Checked by default toggle configuration. */\n acceptedByDefaultToggle?: TextWithTooltip;\n}\n\nexport interface PreviewConfiguration {\n /** Preview card title. */\n title?: string;\n /** Preview card subtitle. */\n subtitle?: string;\n /** Label for checkbox in preview. */\n checkboxLabel?: string;\n /** Text for **Buy now** in preview. */\n buttonText?: string;\n}\n\nexport interface TermsModalConfiguration {\n /** Modal title. */\n title?: string;\n /** Modal subtitle. */\n subtitle?: string;\n /** Save button text. */\n primaryButtonText?: string;\n /** Cancel button text. */\n secondaryButtonText?: string;\n /** Terms and conditions input configuration. */\n input?: InputWithPlaceholder;\n /** Policy agreement checkbox input configuration. */\n checkbox?: CheckboxConfiguration;\n /** Terms and conditions preview configuration. */\n preview?: PreviewConfiguration;\n /** Modal footer text. */\n footer?: string;\n}\n\nexport interface ThankYouPageInputConfig {\n /** Whether to hide input. */\n hide?: boolean;\n /** Label config. */\n label?: TextWithTooltip;\n}\n\nexport interface ThankYouPageRedirectsConfiguration {\n /** Whether to hide redirects. */\n hide?: boolean;\n /** Redirects field label. */\n label?: TextWithTooltip;\n /** Home Page option label. */\n homePageOption?: string;\n /** Other Page option label. */\n redirectUrlOption?: string;\n}\n\nexport interface ThankYouPagePreviewConfiguration {\n /** Preview card title. */\n title?: string;\n /** Preview card subtitle. */\n subtitle?: string;\n}\n\nexport interface ThankYouPageModalConfiguration {\n /** Modal title. */\n title?: string;\n /** Modal subtitle. */\n subtitle?: TextWithSuffix;\n /** Save button text. */\n primaryButtonText?: string;\n /** Cancel button text. */\n secondaryButtonText?: string;\n /** Reset default button text. */\n resetButtonText?: string;\n /** Thank you page title input configuration. */\n titleInput?: ThankYouPageInputConfig;\n /** Thank you page content input configuration. */\n messageInput?: ThankYouPageInputConfig;\n /** Thank you page button text input configuration. */\n buttonTextInput?: ThankYouPageInputConfig;\n /** Thank you page button action field configuration. */\n redirects?: ThankYouPageRedirectsConfiguration;\n /** Thank you page preview configuration. */\n preview?: ThankYouPagePreviewConfiguration;\n}\n\nexport interface PlanSettingsRowConfiguration {\n /** Whether to hide the row. */\n hide?: boolean;\n /** Row title. */\n title?: TextWithTooltip;\n /** Row subtitle. */\n subtitle?: TextWithTooltip;\n}\n\nexport interface TermsAndConditionsConfiguration {\n /** Whether to hide the row. */\n hide?: boolean;\n /** Row title. */\n title?: TextWithTooltip;\n /** Row subtitle. */\n subtitle?: TextWithTooltip;\n /** \"Plan policies\" modal configuration. */\n modal?: TermsModalConfiguration;\n}\n\nexport interface ThankYouPageConfiguration {\n /** Whether to hide the row. */\n hide?: boolean;\n /** Row title. */\n title?: TextWithTooltip;\n /** Row subtitle. */\n subtitle?: TextWithTooltip;\n /** \"\\Thank you page modal configuration. */\n modal?: ThankYouPageModalConfiguration;\n}\n\nexport interface PlanFormPricingAndDurationSectionDurationInputConfiguration {\n /** Duration dropdown label. */\n label?: TextWithTooltip;\n /** Duration dropdown placeholder. */\n placeholder?: string;\n /** Labels for duration dropdown options. */\n renameOptions?: DurationInputConfigurationDurationRenameOptions;\n}\n\nexport interface DurationInputConfigurationDurationRenameOptions {\n /** Text for \"Forever\" duration option. */\n forever?: string;\n /** Text for \"Custom\" duration option. */\n custom?: string;\n}\n\nexport interface PlanFormPricingAndDurationSectionInputConfiguration {\n /** Input label. */\n label?: TextWithTooltip;\n}\n\nexport interface SetupFeeConfiguration {\n /** Hide **Setup fee** toggle. */\n hide?: boolean;\n /** Setup fee toggle label. */\n label?: TextWithTooltip;\n /** Setup fee amount input configuration. */\n amount?: InputWithPlaceholder;\n /** Setup fee name input configuration. */\n name?: InputWithPlaceholder;\n}\n\nexport interface FreeTrialConfiguration {\n /** Whether to hide the **Free trial** toggle. */\n hide?: boolean;\n /** Free trial toggle label. */\n label?: TextWithTooltip;\n /** Free trial duration dropdown configuration. */\n duration?: PlanFormPricingAndDurationSectionInputConfiguration;\n}\n\nexport interface FreeOptionConfiguration {\n /** Whether to hide the **Free** option. */\n hide?: boolean;\n /** Option title. */\n title?: string;\n /** Option subtitle. */\n subtitle?: string;\n /** Plan duration dropdown configuration. */\n duration?: PlanFormPricingAndDurationSectionDurationInputConfiguration;\n /** Custom duration period dropdown configuration. */\n customDurationPeriod?: PlanFormPricingAndDurationSectionInputConfiguration;\n /** Custom duration input configuration. */\n customDurationInput?: PlanFormPricingAndDurationSectionInputConfiguration;\n}\n\nexport interface OneTimeOptionConfiguration {\n /** Whether to hide the One-time payment option. */\n hide?: boolean;\n /** Option title. */\n title?: string;\n /** Option subtitle. */\n subtitle?: string;\n /** Plan duration dropdown configuration. */\n duration?: PlanFormPricingAndDurationSectionDurationInputConfiguration;\n /** Custom duration period dropdown configuration. */\n customDurationPeriod?: PlanFormPricingAndDurationSectionInputConfiguration;\n /** Custom duration input configuration. */\n customDurationInput?: PlanFormPricingAndDurationSectionInputConfiguration;\n /** Price input configuration. */\n price?: InputWithPlaceholder;\n /** Setup fee field configuration. */\n setupFee?: SetupFeeConfiguration;\n}\n\nexport interface RecurringOptionConfiguration {\n /** Whether to hide the \"recurring\" option. */\n hide?: boolean;\n /** Option title. */\n title?: string;\n /** Option subtitle. */\n subtitle?: string;\n /** Plan duration dropdown configuration. */\n duration?: PlanFormPricingAndDurationSectionDurationInputConfiguration;\n /** Price input configuration. */\n price?: InputWithPlaceholder;\n /** Setup fee field configuration. */\n setupFee?: SetupFeeConfiguration;\n /** Free trial field configuration. */\n freeTrial?: FreeTrialConfiguration;\n /** Frequency dropdown configuration. */\n frequency?: PlanFormPricingAndDurationSectionInputConfiguration;\n /** Custom frequency input configuration. */\n customFrequency?: PlanFormPricingAndDurationSectionInputConfiguration;\n}\n\nexport enum PlanFormPricingOption {\n FREE = 'FREE',\n ONE_TIME = 'ONE_TIME',\n RECURRING = 'RECURRING',\n}\n\n/** @enumType */\nexport type PlanFormPricingOptionWithLiterals =\n | PlanFormPricingOption\n | 'FREE'\n | 'ONE_TIME'\n | 'RECURRING';\n\nexport interface PlanFormPricingSectionSetupFeeConfiguration {\n /** Hide **Setup fee** toggle. */\n hide?: boolean;\n /** Setup fee toggle label. */\n label?: TextWithTooltip;\n /** Setup fee amount input configuration. */\n amount?: InputWithPlaceholder;\n /** Setup fee name input configuration. */\n name?: InputWithPlaceholder;\n}\n\nexport interface PlanFormPricingSectionInputConfiguration {\n /** Input label. */\n label?: TextWithTooltip;\n}\n\nexport interface RecurringPricingTypeConfigurationFreeTrialConfiguration {\n /** Whether to hide the **Free trial** toggle. */\n hide?: boolean;\n /** Free trial toggle label. */\n label?: TextWithTooltip;\n /** Free trial duration dropdown configuration. */\n duration?: PlanFormPricingSectionInputConfiguration;\n}\n\nexport interface FreePricingTypeConfiguration {\n /** Whether to hide the **Free** type. */\n hide?: boolean;\n /**\n * Type title.\n * @maxLength 40\n */\n title?: string;\n /**\n * Type subtitle.\n * @maxLength 60\n */\n subtitle?: string;\n}\n\nexport interface OneTimePricingTypeConfiguration {\n /** Whether to hide the **One-time payment** type. */\n hide?: boolean;\n /**\n * Type title.\n * @maxLength 40\n */\n title?: string;\n /**\n * Type subtitle.\n * @maxLength 60\n */\n subtitle?: string;\n /** Price input configuration. */\n price?: InputWithPlaceholder;\n /** Setup fee field configuration. */\n setupFee?: PlanFormPricingSectionSetupFeeConfiguration;\n}\n\nexport interface RecurringPricingTypeConfiguration {\n /** Whether to hide the **Recurring** type. */\n hide?: boolean;\n /**\n * Type title.\n * @maxLength 40\n */\n title?: string;\n /**\n * Type subtitle.\n * @maxLength 60\n */\n subtitle?: string;\n /** Price input configuration. */\n price?: InputWithPlaceholder;\n /** Setup fee field configuration. */\n setupFee?: PlanFormPricingSectionSetupFeeConfiguration;\n /** Free trial field configuration. */\n freeTrial?: RecurringPricingTypeConfigurationFreeTrialConfiguration;\n /** Frequency dropdown configuration. */\n frequency?: PlanFormPricingSectionInputConfiguration;\n /** Custom frequency input configuration. */\n customFrequency?: PlanFormPricingSectionInputConfiguration;\n}\n\nexport enum PlanFormPricingType {\n FREE = 'FREE',\n ONE_TIME = 'ONE_TIME',\n RECURRING = 'RECURRING',\n}\n\n/** @enumType */\nexport type PlanFormPricingTypeWithLiterals =\n | PlanFormPricingType\n | 'FREE'\n | 'ONE_TIME'\n | 'RECURRING';\n\nexport interface DurationRenameOptions {\n /**\n * Text for \"Forever\" duration option.\n * @maxLength 16\n */\n forever?: string;\n /**\n * Text for \"Custom\" duration option.\n * @maxLength 16\n */\n custom?: string;\n}\n\nexport interface DurationInputConfiguration {\n /** Duration dropdown label. */\n label?: TextWithTooltip;\n /**\n * Duration dropdown placeholder.\n * @maxLength 16\n */\n placeholder?: string;\n /** Labels for duration dropdown options. */\n renameOptions?: DurationRenameOptions;\n}\n\nexport interface InputConfiguration {\n /** Input label. */\n label?: TextWithTooltip;\n}\n\nexport enum PlanFormDefaultSection {\n INFO = 'INFO',\n BENEFITS = 'BENEFITS',\n PAGE_PERMISSIONS = 'PAGE_PERMISSIONS',\n PRICING_AND_DURATION = 'PRICING_AND_DURATION',\n ADVANCED_SETTINGS = 'ADVANCED_SETTINGS',\n PRICING = 'PRICING',\n DURATION = 'DURATION',\n CUSTOM_PRICING_RULES = 'CUSTOM_PRICING_RULES',\n START_DATE_RULES = 'START_DATE_RULES',\n}\n\n/** @enumType */\nexport type PlanFormDefaultSectionWithLiterals =\n | PlanFormDefaultSection\n | 'INFO'\n | 'BENEFITS'\n | 'PAGE_PERMISSIONS'\n | 'PRICING_AND_DURATION'\n | 'ADVANCED_SETTINGS'\n | 'PRICING'\n | 'DURATION'\n | 'CUSTOM_PRICING_RULES'\n | 'START_DATE_RULES';\n\nexport interface Illustration extends IllustrationIllustrationOneOf {\n /**\n * Custom exported component ID to be rendered as an illustration.\n * @format GUID\n */\n componentId?: string;\n /** 96x96px image. Used in type choice modal. */\n src?: string;\n}\n\n/** @oneof */\nexport interface IllustrationIllustrationOneOf {\n /**\n * Custom exported component ID to be rendered as an illustration.\n * @format GUID\n */\n componentId?: string;\n /** 96x96px image. Used in type choice modal. */\n src?: string;\n}\n\nexport interface PlanDuration {\n /** Amount of a duration `unit` in a single payment cycle. */\n count?: number;\n /** Unit of time for the cycle duration. */\n unit?: PlanPeriodUnitWithLiterals;\n}\n\n/** Pedefined basic time unit. */\nexport enum PlanPeriodUnit {\n DAY = 'DAY',\n WEEK = 'WEEK',\n MONTH = 'MONTH',\n YEAR = 'YEAR',\n}\n\n/** @enumType */\nexport type PlanPeriodUnitWithLiterals =\n | PlanPeriodUnit\n | 'DAY'\n | 'WEEK'\n | 'MONTH'\n | 'YEAR';\n\nexport interface PlanPriceData {\n /** Monetary amount. Decimal string with a period as a decimal separator. For example, `3.99`. */\n value?: string;\n /** Currency code. Must be valid ISO 4217 currency code. For example, USD. */\n currency?: string;\n}\n\nexport interface PricingRecurring {\n /** Length of one payment cycle. */\n cycleDuration?: PlanDuration;\n /**\n * Amount of payment cycles this subscription is valid for.\n *\n * `0` indicates unlimited or until it is canceled.\n */\n cycleCount?: number;\n}\n\nexport interface PerkValues {\n /**\n * List of perks.\n * @maxSize 99\n */\n values?: string[];\n}\n\nexport interface PlanPricing extends PlanPricingPricingModelOneOf {\n /** Plan has recurring payments. */\n subscription?: PricingRecurring;\n /** One time payment. Plan is valid for the specified duration. */\n singlePaymentForDuration?: PlanDuration;\n /** One time payment. Plan is valid until it is canceled. */\n singlePaymentUnlimited?: boolean;\n /** Amount for a single payment. */\n price?: PlanPriceData;\n}\n\n/** @oneof */\nexport interface PlanPricingPricingModelOneOf {\n /** Plan has recurring payments. */\n subscription?: PricingRecurring;\n /** One time payment. Plan is valid for the specified duration. */\n singlePaymentForDuration?: PlanDuration;\n /** One time payment. Plan is valid until it is canceled. */\n singlePaymentUnlimited?: boolean;\n}\n\nexport interface PlanFormPreviewSection {\n /** Whether to hide the **Preview** section. */\n hide?: boolean;\n /** Preview card title. */\n title?: TextWithTooltip;\n /** Preview card subtitle. */\n subtitle?: TextWithSuffix;\n /** Placeholders for previewed plan. */\n placeholders?: PreviewCardPlaceholders;\n /** Stick **Preview** section to the right while scrolling. As a result, all other sections will be narrower. */\n isSticky?: boolean | null;\n}\n\nexport interface PlanFormInfoSection {\n /** Whether to hide the **Info** section. If `true`, remaining fields are ignored. */\n hide?: boolean;\n /** Tooltip title. */\n title?: TextWithTooltip;\n /** Tooltip subtitle. */\n subtitle?: TextWithSuffix;\n /** Plan name input configuration. */\n name?: InputWithPlaceholder;\n /** Plan tagline input configuration. */\n tagline?: InputWithPlaceholder;\n /** Cover image configuration. */\n coverImage?: CoverImageConfiguration;\n /** Plan perks configuration. */\n perks?: PerksConfiguration;\n}\n\nexport interface PlanFormPlanSettingsSection {\n /** Whether to hide the **Advanced settings** section. */\n hide?: boolean;\n /** Section title configuration. */\n title?: TextWithTooltip;\n /** Section subtitle configuration. */\n subtitle?: TextWithSuffix;\n /** Configuration for \"Limit to 1 purchase per person\" plan setting. */\n singlePurchase?: PlanSettingsRowConfiguration;\n /** Configuration for \"Allow plan cancellation\" plan setting. */\n allowCancellation?: PlanSettingsRowConfiguration;\n /** Configuration for \"Let people set start date\" plan setting. */\n customStartDate?: PlanSettingsRowConfiguration;\n /** Configuration for \"Add a policy\" plan setting. */\n termsAndConditions?: TermsAndConditionsConfiguration;\n /** Configuration for \"Collect additional info\" plan setting. */\n customForms?: PlanSettingsRowConfiguration;\n /** Configuration for \"Customize a Thank You page\" plan setting. */\n thankYouPage?: ThankYouPageConfiguration;\n}\n\nexport interface PlanFormBenefitsSection {\n /** Hide **Benefits** section. */\n hide?: boolean;\n /** *Benefits** section title. */\n title?: TextWithTooltip;\n /** *Benefits** section subtitle. */\n subtitle?: TextWithSuffix;\n /** Suffix link configuration. Rendered at the right side of section header. */\n suffix?: LinkSuffix;\n /**\n * Hide specific benefits from the section.\n * @maxSize 99\n */\n hiddenBenefits?: string[];\n}\n\nexport interface PlanFormPricingAndDurationSection {\n /** Whether to hide **Pricing and Duration** section. */\n hide?: boolean;\n /** Section title. */\n title?: TextWithTooltip;\n /** Section subtitle. */\n subtitle?: TextWithSuffix;\n /** Free pricing option configuration. */\n freePricingOption?: FreeOptionConfiguration;\n /** One-time payment pricing option configuration. */\n oneTimeOption?: OneTimeOptionConfiguration;\n /** Recurring pricing option configuration. */\n recurringOption?: RecurringOptionConfiguration;\n /**\n * Order in which pricing options should be displayed.\n * @maxSize 99\n */\n pricingOptionOrder?: PlanFormPricingOptionWithLiterals[];\n}\n\nexport interface PlanFormCustomSection {\n /**\n * ID of dashboard extension component.\n * Extensions should have the following container ID: `fb869315-532f-4057-9049-e316f94e192f`\n * @format GUID\n */\n componentId?: string;\n}\n\nexport interface PlanFormSection extends PlanFormSectionSectionOneOf {\n /** Extension component ID. */\n componentId?: string;\n /** Default section name. */\n sectionName?: PlanFormDefaultSectionWithLiterals;\n}\n\n/** @oneof */\nexport interface PlanFormSectionSectionOneOf {\n /** Extension component ID. */\n componentId?: string;\n /** Default section name. */\n sectionName?: PlanFormDefaultSectionWithLiterals;\n}\n\nexport interface PlanFormTypeMetadata {\n /** Configuration name. */\n title?: string;\n /** Plan type subtitle. Used in type choice modal. */\n subtitle?: string;\n /** Plan type description. Used in type choice modal. */\n description?: string;\n /** Plan type illustration. Used in type choice modal. */\n illustration?: Illustration;\n /** Your business manager module ID. */\n moduleId?: string;\n}\n\nexport interface PlanFormPagePermissionsSection {\n /** Whether to hide the **Page permissions** section. */\n hide?: boolean;\n}\n\nexport interface PlanFormInitialValue {\n /** Plan name. */\n name?: string | null;\n /** Plan description. */\n description?: string | null;\n /** What is included with this plan. */\n perks?: PerkValues;\n /** Plan price, payment schedule, and expiration. */\n pricing?: PlanPricing;\n /** Whether the plan is public. */\n public?: boolean | null;\n /**\n * Number of times the same buyer can purchase the plan.\n *\n * Supported values:\n * - `null | 0`: No limitation.\n * - `1`: Limit of one purchase per buyer.\n */\n maxPurchasesPerBuyer?: number | null;\n /** Whether the buyer can start the plan at a future date. */\n allowFutureStartDate?: boolean | null;\n /** Whether the buyer is allowed to cancel their plan. */\n buyerCanCancel?: boolean | null;\n /**\n * Any terms and conditions that apply to the plan. This information will be displayed during checkout.\n * @maxLength 3000\n */\n termsAndConditions?: string | null;\n /** Additional plan data. */\n clientData?: Record<string, string>;\n}\n\nexport interface PlanFormPricingSection {\n /** Whether to hide **Pricing** section. */\n hide?: boolean;\n /** Section title. */\n title?: TextWithTooltip;\n /** Section subtitle. */\n subtitle?: TextWithSuffix;\n /** Free pricing type configuration. */\n freePricingType?: FreePricingTypeConfiguration;\n /** One-time payment pricing type configuration. */\n oneTimeType?: OneTimePricingTypeConfiguration;\n /** Recurring pricing type configuration. */\n recurringType?: RecurringPricingTypeConfiguration;\n /**\n * Order in which pricing types should be displayed.\n * @maxSize 99\n */\n pricingTypeOrder?: PlanFormPricingTypeWithLiterals[];\n}\n\nexport interface PlanFormDurationSection {\n /** Whether to hide **Duration** section. */\n hide?: boolean;\n /** Section title. */\n title?: TextWithTooltip;\n /** Section subtitle. */\n subtitle?: TextWithSuffix;\n /** Plan duration dropdown configuration. */\n duration?: DurationInputConfiguration;\n /** Custom duration period dropdown configuration - only for **One-time** & **Free** plan types. */\n customDurationPeriod?: InputConfiguration;\n /** Custom duration input configuration - only for **One-time** & **Free** plan types. */\n customDurationInput?: InputConfiguration;\n}\n\nexport interface PlanFormCustomPricingRulesSection {\n /** Whether to hide the **Custom pricing rules** section. */\n hide?: boolean;\n}\n\nexport interface PlanFormStartDateRulesSection {\n /** Whether to hide the **Start date** section. */\n hide?: boolean;\n}\n\n/** Describes user notifications */\nexport interface UserNotification {\n referenceData?: UserNotificationData;\n}\n\nexport interface UserNotificationData {\n /** description */\n description?: string | null;\n /**\n * topic id\n * @minLength 1\n * @format GUID\n */\n topicId?: string | null;\n /** channels */\n channels?: NotificationChannels;\n /** icon */\n icon?: Icon;\n /** intent */\n intent?: IntentWithLiterals;\n /** limiter field */\n limiterField?: LimiterField;\n /** recipient filter */\n recipientFilter?: UserNotificationDataRecipientFilter;\n /** initiator */\n initiator?: UserNotificationDataInitiator;\n /** single deeplink */\n singleDeeplink?: UserNotificationDataDeeplink;\n /** grouped deeplink */\n groupedDeeplink?: UserNotificationDataDeeplink;\n /** context */\n context?: UserNotificationDataContext;\n /** type */\n type?: UserNotificationDataTypeWithLiterals;\n}\n\nexport interface TypedDynamicParam {\n /**\n * name\n * @minLength 1\n */\n name?: string;\n /** dynamic param type */\n dynamicParamType?: TypedDynamicParamTypeWithLiterals;\n}\n\nexport enum TypedDynamicParamType {\n STRING = 'STRING',\n ARRAY = 'ARRAY',\n}\n\n/** @enumType */\nexport type TypedDynamicParamTypeWithLiterals =\n | TypedDynamicParamType\n | 'STRING'\n | 'ARRAY';\n\nexport enum UserNotificationDataRecipientFilterType {\n WIX_USERS = 'WIX_USERS',\n SITE_CONTRIBUTORS = 'SITE_CONTRIBUTORS',\n}\n\n/** @enumType */\nexport type UserNotificationDataRecipientFilterTypeWithLiterals =\n | UserNotificationDataRecipientFilterType\n | 'WIX_USERS'\n | 'SITE_CONTRIBUTORS';\n\nexport interface WixUsersData {\n /** id */\n _id?: TypedDynamicParam;\n}\n\nexport interface SiteContributorsData {\n /** @minSize 1 */\n permissions?: string[];\n}\n\nexport enum InitiatorType {\n WIX_USER = 'WIX_USER',\n WIX_APP = 'WIX_APP',\n}\n\n/** @enumType */\nexport type InitiatorTypeWithLiterals = InitiatorType | 'WIX_USER' | 'WIX_APP';\n\nexport interface WixUserData {\n /**\n * dynamic param name\n * @minLength 1\n */\n dynamicParamName?: string;\n}\n\nexport interface ConstOrDynamicParam extends ConstOrDynamicParamValueOneOf {\n /**\n * dynamic param name\n * @minLength 1\n */\n dynamicParamName?: string;\n /**\n * constant\n * @minLength 1\n */\n constant?: string;\n}\n\n/** @oneof */\nexport interface ConstOrDynamicParamValueOneOf {\n /**\n * dynamic param name\n * @minLength 1\n */\n dynamicParamName?: string;\n /**\n * constant\n * @minLength 1\n */\n constant?: string;\n}\n\nexport interface Url {\n constOrDynamicParam?: ConstOrDynamicParam;\n}\n\nexport interface BackofficeActionDeeplink {\n /**\n * app ID\n * @minLength 1\n */\n appId?: string;\n /** params */\n params?: Record<string, ConstOrDynamicParam>;\n}\n\nexport enum Level {\n ACCOUNT = 'ACCOUNT',\n SITE = 'SITE',\n}\n\n/** @enumType */\nexport type LevelWithLiterals = Level | 'ACCOUNT' | 'SITE';\n\nexport interface OrderValue {\n /** can be const/dynamicParamName */\n value?: ConstOrDynamicParam;\n /**\n * order\n * @min 1\n */\n order?: number;\n}\n\nexport interface NotificationChannels {\n /** email */\n email?: EmailChannel;\n /** feed */\n feed?: FeedChannels;\n /** mobile push */\n mobilePush?: MobilePushChannel;\n /** voice */\n voice?: VoiceChannel;\n /** sms */\n sms?: SmsChannel;\n /** browser push */\n browserPush?: BrowserPushChannel;\n contentMap?: Record<string, string>;\n}\n\nexport interface ResponsysEmail {\n /**\n * responsys email\n * @minLength 1\n */\n responsysTemplate?: string;\n}\n\nexport interface VelocityEmail {\n /**\n * velocity module name\n * @minLength 1\n */\n velocityModuleName?: string;\n /**\n * template file\n * @minLength 1\n */\n templateFile?: string;\n}\n\nexport interface ShoutoutEmail {\n /**\n * template ID\n * @minLength 1\n */\n templateId?: string;\n /**\n * stream by\n * @minLength 1\n */\n streamBy?: string;\n /**\n * template msid\n * @minLength 1\n */\n templateMsid?: string;\n}\n\nexport interface EmailTemplateConfig extends EmailTemplateConfigProviderOneOf {\n /** responsys email */\n responsysEmail?: ResponsysEmail;\n}\n\n/** @oneof */\nexport interface EmailTemplateConfigProviderOneOf {\n /** responsys email */\n responsysEmail?: ResponsysEmail;\n}\n\nexport interface WebFeedContentKeys {\n /** title */\n title?: string | null;\n /** message */\n message?: string | null;\n /** action */\n action?: string | null;\n /** group of two message */\n groupOfTwoMessage?: string | null;\n /** group of many message */\n groupOfManyMessage?: string | null;\n /** group of many action */\n groupOfManyAction?: string | null;\n}\n\nexport interface MobileFeedContentKeys {\n /** title */\n title?: string | null;\n /** message */\n message?: string | null;\n /** action */\n action?: string | null;\n /** group of two message */\n groupOfTwoMessage?: string | null;\n /** group of many message */\n groupOfManyMessage?: string | null;\n /** group of many action */\n groupOfManyAction?: string | null;\n}\n\nexport interface FeedAggregation {\n /**\n * group key\n * @minLength 1\n */\n groupKey?: string;\n /**\n * window\n * @minLength 1\n */\n window?: string;\n /** icon */\n icon?: Icon;\n}\n\nexport interface Icon extends IconDataOneOf {\n /** url data */\n urlData?: UrlData;\n /** icon type */\n type?: IconTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IconDataOneOf {\n /** url data */\n urlData?: UrlData;\n}\n\nexport enum IconType {\n URL = 'URL',\n SPOUT = 'SPOUT',\n INITIATOR = 'INITIATOR',\n}\n\n/** @enumType */\nexport type IconTypeWithLiterals = IconType | 'URL' | 'SPOUT' | 'INITIATOR';\n\nexport interface UrlData {\n /**\n * actual url\n * @format WEB_URL\n */\n url?: string;\n}\n\nexport interface WebFeedChannel {\n /** content_keys */\n contentKeys?: WebFeedContentKeys;\n}\n\nexport interface MobileFeedChannel {\n /** content keys */\n contentKeys?: MobileFeedContentKeys;\n}\n\nexport interface FeedChannelsConfig {\n /** aggregation */\n aggregation?: FeedAggregation;\n}\n\nexport interface SharedPlatformMobilePushConfig {\n /** sound */\n sound?: string;\n /** group key */\n groupKey?: string | null;\n /** ttl */\n ttl?: number | null;\n /** target application */\n targetApplication?: MobileApplicationWithLiterals;\n}\n\nexport enum MobileApplication {\n UNKNOWN_MOBILE_APPLICATION = 'UNKNOWN_MOBILE_APPLICATION',\n OWNER = 'OWNER',\n SPACES = 'SPACES',\n DINE = 'DINE',\n FITNESS = 'FITNESS',\n WIX_LIFE = 'WIX_LIFE',\n WIX_PARTNERS = 'WIX_PARTNERS',\n BRANDED = 'BRANDED',\n WIX_STUDIO = 'WIX_STUDIO',\n NO_SPECIFIC_TARGET_APP = 'NO_SPECIFIC_TARGET_APP',\n}\n\n/** @enumType */\nexport type MobileApplicationWithLiterals =\n | MobileApplication\n | 'UNKNOWN_MOBILE_APPLICATION'\n | 'OWNER'\n | 'SPACES'\n | 'DINE'\n | 'FITNESS'\n | 'WIX_LIFE'\n | 'WIX_PARTNERS'\n | 'BRANDED'\n | 'WIX_STUDIO'\n | 'NO_SPECIFIC_TARGET_APP';\n\nexport interface AndroidMobilePushConfig {\n /** sub group key */\n subGroupKey?: string | null;\n /** style */\n style?: AndroidStyleWithLiterals;\n /** grouped deeplink pattern */\n groupedDeeplinkPattern?: string | null;\n}\n\nexport enum AndroidStyle {\n BIG_TEXT = 'BIG_TEXT',\n MESSAGING = 'MESSAGING',\n INBOX = 'INBOX',\n}\n\n/** @enumType */\nexport type AndroidStyleWithLiterals =\n | AndroidStyle\n | 'BIG_TEXT'\n | 'MESSAGING'\n | 'INBOX';\n\nexport interface MobilePushChannelConfig {\n /** shared */\n shared?: SharedPlatformMobilePushConfig;\n /** android */\n android?: AndroidMobilePushConfig;\n}\n\nexport interface MobilePushContentKeys {\n /** title */\n title?: string | null;\n /** message */\n message?: string | null;\n /** group of many title */\n groupOfManyTitle?: string | null;\n /** group of many message */\n groupOfManyMessage?: string | null;\n /** master group name override */\n masterGroupNameOverride?: string | null;\n}\n\nexport interface ExposureRule extends ExposureRuleRuleOneOf {\n /** boolean experiment exposure rule */\n booleanExperimentExposureRule?: BooleanExperimentExposureRule;\n /** custom experiment exposure rule */\n customExperimentExposureRule?: CustomExperimentExposureRule;\n /** type */\n type?: ExposureRuleTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ExposureRuleRuleOneOf {\n /** boolean experiment exposure rule */\n booleanExperimentExposureRule?: BooleanExperimentExposureRule;\n /** custom experiment exposure rule */\n customExperimentExposureRule?: CustomExperimentExposureRule;\n}\n\nexport enum ExposureRuleType {\n OPEN_TO_ALL = 'OPEN_TO_ALL',\n OPEN_TO_NONE = 'OPEN_TO_NONE',\n BOOLEAN_EXPERIMENT = 'BOOLEAN_EXPERIMENT',\n CUSTOM_EXPERIMENT = 'CUSTOM_EXPERIMENT',\n}\n\n/** @enumType */\nexport type ExposureRuleTypeWithLiterals =\n | ExposureRuleType\n | 'OPEN_TO_ALL'\n | 'OPEN_TO_NONE'\n | 'BOOLEAN_EXPERIMENT'\n | 'CUSTOM_EXPERIMENT';\n\nexport interface BooleanExperimentExposureRule {\n /** spec */\n spec?: string;\n}\n\nexport interface CustomExperimentExposureRule {\n /** spec */\n spec?: string;\n /** default value */\n defaultValue?: string;\n /** expected value */\n expectedValue?: string;\n}\n\nexport interface VoiceContentKeys {\n /** message */\n message?: string | null;\n}\n\nexport interface SmsContentKeys {\n /** message */\n message?: string | null;\n}\n\nexport interface BrowserPushContentKeys {\n /** title */\n title?: string | null;\n /** message */\n message?: string | null;\n}\n\nexport interface EmailChannel {\n /** config */\n config?: EmailTemplateConfig;\n}\n\nexport interface FeedChannels {\n /** web feed */\n webFeed?: WebFeedChannel;\n /** mobile feed */\n mobileFeed?: MobileFeedChannel;\n /** config */\n config?: FeedChannelsConfig;\n}\n\nexport interface MobilePushChannel {\n /** config */\n config?: MobilePushChannelConfig;\n /** content_keys */\n contentKeys?: MobilePushContentKeys;\n}\n\nexport interface VoiceChannel {\n /** content keys */\n contentKeys?: VoiceContentKeys;\n}\n\nexport interface SmsChannel {\n /** content_keys */\n contentKeys?: SmsContentKeys;\n}\n\nexport interface BrowserPushChannel {\n /** content_keys */\n contentKeys?: BrowserPushContentKeys;\n}\n\nexport enum Intent {\n MARKETING = 'MARKETING',\n TRANSACTIONAL = 'TRANSACTIONAL',\n}\n\n/** @enumType */\nexport type IntentWithLiterals = Intent | 'MARKETING' | 'TRANSACTIONAL';\n\nexport interface LimiterField {\n /** dynamic param name */\n dynamicParamName?: string;\n}\n\nexport interface UserNotificationDataRecipientFilter\n extends UserNotificationDataRecipientFilterDataOneOf {\n /** wix users data */\n wixUsersData?: WixUsersData;\n /** site contributors data */\n siteContributorsData?: SiteContributorsData;\n /** recipient filter type */\n type?: UserNotificationDataRecipientFilterTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface UserNotificationDataRecipientFilterDataOneOf {\n /** wix users data */\n wixUsersData?: WixUsersData;\n /** site contributors data */\n siteContributorsData?: SiteContributorsData;\n}\n\nexport interface UserNotificationDataInitiator\n extends UserNotificationDataInitiatorDataOneOf {\n /** wix user data */\n wixUserData?: WixUserData;\n /** initiator type */\n type?: InitiatorTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface UserNotificationDataInitiatorDataOneOf {\n /** wix user data */\n wixUserData?: WixUserData;\n}\n\nexport interface UserNotificationDataDeeplink\n extends UserNotificationDataDeeplinkOfOneOf {\n /** url */\n url?: Url;\n}\n\n/** @oneof */\nexport interface UserNotificationDataDeeplinkOfOneOf {\n /** url */\n url?: Url;\n}\n\nexport interface UserNotificationDataContext {\n level?: LevelWithLiterals;\n /** params */\n params?: Record<string, OrderValue>;\n}\n\nexport enum UserNotificationDataType {\n REGULAR = 'REGULAR',\n ALERT_WARNING = 'ALERT_WARNING',\n ALERT_INFO = 'ALERT_INFO',\n}\n\n/** @enumType */\nexport type UserNotificationDataTypeWithLiterals =\n | UserNotificationDataType\n | 'REGULAR'\n | 'ALERT_WARNING'\n | 'ALERT_INFO';\n\n/** Describes contact notifications */\nexport interface ContactNotification {\n /** @format GUID */\n referenceId?: string | null;\n referenceData?: ContactsNotificationData;\n}\n\nexport interface ContactsNotificationData {\n /**\n * name\n * @minLength 1\n */\n name?: string | null;\n /** description */\n description?: string | null;\n /**\n * topic id\n * @minLength 1\n */\n topicId?: string | null;\n /** channels */\n channels?: NotificationChannels;\n /** icon */\n icon?: Icon;\n /** limiter field */\n limiterField?: LimiterField;\n /** recipient filter */\n recipientFilter?: RecipientFilter;\n /** initiator */\n initiator?: Initiator;\n /** single deeplink */\n singleDeeplink?: Deeplink;\n /** grouped deeplink */\n groupedDeeplink?: Deeplink;\n /** context */\n context?: Context;\n}\n\nexport enum RecipientFilterType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n CONTACTS = 'CONTACTS',\n}\n\n/** @enumType */\nexport type RecipientFilterTypeWithLiterals =\n | RecipientFilterType\n | 'UNKNOWN_TYPE'\n | 'CONTACTS';\n\nexport interface ContactsData {\n /** id */\n _id?: TypedDynamicParam;\n}\n\nexport enum Type {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n CONTACT = 'CONTACT',\n SITE_MEMBER = 'SITE_MEMBER',\n}\n\n/** @enumType */\nexport type TypeWithLiterals =\n | Type\n | 'UNKNOWN_TYPE'\n | 'CONTACT'\n | 'SITE_MEMBER';\n\nexport interface ContactData {\n /**\n * dynamic param name\n * @minLength 1\n */\n dynamicParamName?: string;\n}\n\nexport interface SiteMemberData {\n /**\n * dynamic param name\n * @minLength 1\n */\n dynamicParamName?: string;\n}\n\nexport interface LiveSiteActionDeeplink {\n /** app page ID */\n appPageId?: string | null;\n /** path */\n path?: string | null;\n /** language */\n language?: ConstOrDynamicParam;\n /** hash fragment */\n hashFragment?: ConstOrDynamicParam;\n /** query params */\n queryParams?: Record<string, ConstOrDynamicParam>;\n}\n\nexport interface RecipientFilter extends RecipientFilterDataOneOf {\n /** contacts data */\n contactsData?: ContactsData;\n /** recipient filter type */\n type?: RecipientFilterTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface RecipientFilterDataOneOf {\n /** contacts data */\n contactsData?: ContactsData;\n}\n\nexport interface Initiator extends InitiatorDataOneOf {\n /** contact data */\n contactData?: ContactData;\n /** site member data */\n siteMemberData?: SiteMemberData;\n /** initiator type */\n type?: TypeWithLiterals;\n}\n\n/** @oneof */\nexport interface InitiatorDataOneOf {\n /** contact data */\n contactData?: ContactData;\n /** site member data */\n siteMemberData?: SiteMemberData;\n}\n\nexport interface Deeplink extends DeeplinkOfOneOf {\n /** url */\n url?: Url;\n}\n\n/** @oneof */\nexport interface DeeplinkOfOneOf {\n /** url */\n url?: Url;\n}\n\nexport interface Context {\n /** params */\n params?: Record<string, OrderValue>;\n}\n\nexport interface UnifiedPage {\n /** Base info of component by shared logic of unified components */\n base?: BaseInfo;\n /**\n * Page installation settings\n * @deprecated Page installation settings\n * @replacedBy editor_settings\n * @targetRemovalDate 2026-02-26\n */\n installation?: PageInstallationSettings;\n /** Page replacing options (replacer \\ replacing \\ none) */\n pageReplace?: PageReplaceOptions;\n /** Content of page */\n content?: PageContent;\n /** Settings for how the page integrates with the editor */\n editorSettings?: UnifiedPageEditorSettings;\n}\n\nexport interface PageInstallationSettings {\n /** Shared installation settings for unified components */\n base?: BaseInstallation;\n /** Page installation settings for unified components */\n page?: PageInstallation;\n}\n\nexport interface PageInstallation {\n /**\n * slug of the page (last part of url that point to the page)\n * @minLength 1\n * @maxLength 200\n */\n slug?: string;\n /** Should add page to site menu */\n addToSiteMenu?: boolean;\n /** Can page be linked through link panel */\n linkable?: boolean;\n}\n\nexport interface PageContent {\n /** Widgets to add as content in page */\n widgets?: WidgetAsContent[];\n}\n\nexport interface WidgetAsContent {\n /**\n * GUID of widget to use as content of page\n * @format GUID\n */\n widgetGuid?: string;\n /** The preset should be used */\n preset?: MainPresets;\n /** Mark widget as essential for the existence of the app (force to delete the whole app) */\n essential?: boolean | null;\n}\n\nexport interface UnifiedPageEditorSettings {\n /** Basic editor settings that are relevant to all page types */\n base?: PageEditorSettings;\n /**\n * slug of the page (last part of url that point to the page)\n * @minLength 1\n * @maxLength 200\n */\n slug?: string | null;\n}\n\nexport interface PageEditorSettings {\n /** Add the page to the site menu */\n addToSiteMenu?: boolean | null;\n /** Can a page be linked through the link panel */\n linkable?: boolean | null;\n /** Can a page be duplicated in the editor (if no essential widget is added in the container) */\n duplicatable?: boolean | null;\n}\n\nexport interface AvailabilityTimeSlotsProviderConfig {\n /** URI where the SPI Implementer is deployed. */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the provider.\n * @maxLength 100\n */\n providerName?: string | null;\n}\n\nexport interface ProposalEditorProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of ProposalEditor provider\n * @maxLength 100\n */\n providerName?: string;\n}\n\nexport interface CustomReservationsApprovalConfig {\n /** URI where the SPI Implementer is deployed */\n uriConfig?: SpiBaseUri;\n /** @minLength 2 */\n name?: string;\n}\n\nexport interface CommentsContextProviderConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /** Comments Environment */\n environment?: EnvironmentWithLiterals;\n /** Feature toggle to indicate if method GetCommentContextResources is implemented */\n toggleResourceProviderEnabled?: boolean;\n}\n\nexport enum Environment {\n LIVE_SITE = 'LIVE_SITE',\n BUSINESS_MANAGER = 'BUSINESS_MANAGER',\n}\n\n/** @enumType */\nexport type EnvironmentWithLiterals =\n | Environment\n | 'LIVE_SITE'\n | 'BUSINESS_MANAGER';\n\nexport interface FormSpamSubmissionReportSpiConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /**\n * Configuration of namespaces known by implementer\n * @maxSize 3\n */\n namespaceConfigs?: FormSpamSubmissionReportsNamespaceConfig[];\n}\n\nexport interface FormSpamSubmissionReportsNamespaceConfig {\n /**\n * Namespace name.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /** Permissions associated with this namespace. */\n permissions?: FormSpamSubmissionReportPermissions;\n}\n\nexport interface FormSpamSubmissionReportPermissions {\n /**\n * Create permission name\n * @maxLength 60\n */\n create?: string;\n /**\n * Delete permission name\n * @maxLength 60\n */\n delete?: string;\n /**\n * Update permission name\n * @maxLength 60\n */\n update?: string;\n /**\n * Read permission name\n * @maxLength 60\n */\n read?: string;\n /**\n * Report as not spam permission name\n * @maxLength 60\n */\n reportNotSpam?: string;\n /**\n * Report as not spam permission name\n * @maxLength 60\n */\n checkForSpam?: string;\n}\n\nexport interface VeloActionConfig {\n baseUri?: SpiBaseUri;\n}\n\nexport interface EventTypeProviderConfig {\n /**\n * The name of the event type.\n * Must be globally unique.\n */\n eventTypeName?: string;\n /**\n * Whether the events of this type should be hidden from query results if no type filter is provided.\n * Default is false.\n */\n eventTypeHiddenFromQuery?: boolean;\n}\n\nexport interface ServiceAvailabilityPolicyProviderConfig {\n /** URI where the SPI Implementer is deployed. */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the provider.\n * @maxLength 100\n */\n providerName?: string | null;\n}\n\n/** a translated sms text sent to UOU */\nexport interface SmsActionMessage {\n /**\n * sms text\n * @minLength 1\n */\n body?: string;\n}\n\nexport interface BookingPolicyProviderConfig {\n /** URI where the SPI Implementer is deployed. */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the provider.\n * @maxLength 100\n */\n providerName?: string | null;\n}\n\nexport interface MultiServiceBookingPolicyProviderConfig {\n /** URI where the SPI Implementer is deployed. */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the provider.\n * @maxLength 100\n */\n providerName?: string | null;\n}\n\nexport interface FormSubmissionSpiExtensionConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * Namespace names.\n * @maxSize 10\n */\n namespaceConfigs?: FormsSubmissionsExtensionNamespaceConfig[];\n}\n\nexport interface FormsSubmissionsExtensionNamespaceConfig {\n /**\n * Targeted namespace, with what submissions should trigger defined methods.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /**\n * The ID of the specific form that will trigger the defined methods when a submission is made.\n * This field is optional. If not provided, submissions from all forms will trigger the methods.\n * @format GUID\n */\n formId?: string | null;\n /** Enable submission validation. */\n submissionValidationEnabled?: boolean;\n}\n\nexport interface AssistantSpiConfig {\n /**\n * The deployment uri of the assistant\n * @maxLength 1000\n */\n deploymentUri?: string;\n /**\n * The name of the assistant\n * @minLength 1\n * @maxLength 100\n */\n assistantName?: string;\n /** The expose_benchmark_tests of the assistant */\n exposeBenchmarkTests?: boolean;\n /** The expose_dynamic_knowledge of the assistant */\n exposeDynamicKnowledge?: boolean;\n}\n\nexport interface MultilingualTranslationSchema {}\n\nexport interface Schema {\n /**\n * Translation schema ID.\n * @readonly\n * @format GUID\n */\n _id?: string | null;\n /** Translation schema unique key identifier. */\n key?: SchemaKey;\n /**\n * List of fields for the translation schema. This property uses a string to map to a `SchemaField` (`Map<string, SchemaField>`). The string serves as a key, which you'll need to access each field in the schema and when adding translation content.\n * @minSize 1\n * @maxSize 1000\n */\n fields?: Record<string, V1SchemaField>;\n /** Fields displayed in content previews. For example, a product name for a product translation schema. */\n previewFields?: PreviewFields;\n /**\n * Whether the translation schema is hidden from the site.\n *\n * Default: `false`\n */\n hidden?: boolean | null;\n /**\n * Translation schema name displayed in the [Translation Manager](https://support.wix.com/en/article/wix-multilingual-using-the-translation-manager).\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * A reference to the parent schema. For example, if the schema is for a menu item, this property would contain the schema ID of the menu it belongs to.\n * @format GUID\n */\n parentId?: string | null;\n /**\n * Revision number, which increments by 1 each time the schema is updated. To prevent conflicting changes, the existing `revision` must be used when updating a schema.\n * @readonly\n */\n revision?: string | null;\n /**\n * Date and time the translation schema was created.\n * @readonly\n */\n _createdDate?: Date | null;\n /**\n * Date and time the translation schema was updated.\n * @readonly\n */\n _updatedDate?: Date | null;\n /**\n * Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.\n *\n * Default: `false`\n */\n duplicateContent?: boolean | null;\n}\n\nexport interface SchemaKey {\n /**\n * ID of the app that created the schema.\n * @format GUID\n * @readonly\n */\n appId?: string;\n /**\n * A unique name defined by the app developer to differentiate translation schemas for various entities within their app. For example, if an app developer is creating a translation schema for blog posts, the `entityType` can be `'blog-posts'`.\n * @minLength 1\n * @maxLength 80\n * @immutable\n */\n entityType?: string;\n /**\n * Scope of the translation schema.\n * Supported values:\n * + `GLOBAL`: A global schema for all sites.\n * + `SITE`: A custom schema for a specific site.\n * @immutable\n */\n scope?: SchemaScopeWithLiterals;\n}\n\nexport enum SchemaScope {\n UNKNOWN_SCOPE = 'UNKNOWN_SCOPE',\n /** Global schema for all sites. */\n GLOBAL = 'GLOBAL',\n /** Custom schema for a specific site. */\n SITE = 'SITE',\n}\n\n/** @enumType */\nexport type SchemaScopeWithLiterals =\n | SchemaScope\n | 'UNKNOWN_SCOPE'\n | 'GLOBAL'\n | 'SITE';\n\nexport interface V1SchemaField {\n /**\n * Field ID. Validated according to Regex `^[A-Za-z0-9-_)(]+$`. Field IDs may contain parentheses to reference repeated items, such as images. These parentheses can't be nested and each opening parenthesis must be followed by a closing one. For example, `title()()` is valid, while `title)(` and `title(())` aren't valid. The value inside the parenthesis is validated according to Regex `^[^)(\\\\]\\\\[\\\\.]+$`.\n * @minLength 1\n * @maxLength 1000\n * @readonly\n */\n _id?: string;\n /** **Required.** Field type. */\n type?: SchemaFieldFieldTypeWithLiterals;\n /**\n * Field name displayed in the [Translation Manager](https://support.wix.com/en/article/wix-multilingual-using-the-translation-manager).\n * @maxLength 1000\n */\n displayName?: string | null;\n /**\n * Field group name.\n * @maxLength 1000\n */\n groupName?: string | null;\n /**\n * Field minimum text length.\n * @min 1\n */\n minLength?: number | null;\n /**\n * Field maximum text length.\n * @min 1\n */\n maxLength?: number | null;\n /**\n * Field format. Content is validated based on the format set here in the field schema. For example, if the format is `EMAIL`, then the content for this field must be a valid email address.\n * @minLength 2\n * @maxLength 20\n */\n format?: string | null;\n /** Whether the field is hidden from the site. Hidden fields are still validated. */\n hidden?: boolean;\n /** Whether the field is read-only, and not intended to be translated. For example, an image. Use this field when you want an image to remain in the [Translation Manager](https://support.wix.com/en/article/wix-multilingual-using-the-translation-manager) for context, but without being translated. */\n displayOnly?: boolean;\n /** Field index. Use for cases where the order of the fields are relevant. */\n index?: number | null;\n}\n\nexport enum SchemaFieldFieldType {\n /** Undefined field type */\n UNDEFINED_TYPE = 'UNDEFINED_TYPE',\n /** Short plain text displayed as a single line in the UI. */\n SHORT_TEXT = 'SHORT_TEXT',\n /** Long plain text displayed as multiple lines in the UI. */\n LONG_TEXT = 'LONG_TEXT',\n /** Long text including styles, images, and links. */\n HTML = 'HTML',\n /** Rich-Content using the Wix Ricos format. */\n RICH_CONTENT = 'RICH_CONTENT',\n /** Wix Media Manager image. */\n IMAGE = 'IMAGE',\n /** Image URL without metadata. */\n IMAGE_LINK = 'IMAGE_LINK',\n /** Wix Media Manager video. */\n VIDEO = 'VIDEO',\n /** Wix Media Manager document. */\n DOCUMENT = 'DOCUMENT',\n}\n\n/** @enumType */\nexport type SchemaFieldFieldTypeWithLiterals =\n | SchemaFieldFieldType\n | 'UNDEFINED_TYPE'\n | 'SHORT_TEXT'\n | 'LONG_TEXT'\n | 'HTML'\n | 'RICH_CONTENT'\n | 'IMAGE'\n | 'IMAGE_LINK'\n | 'VIDEO'\n | 'DOCUMENT';\n\nexport interface PreviewFields {\n /**\n * ID of the field representing the schema's title.\n * @maxLength 1000\n */\n titleFieldId?: string | null;\n /**\n * ID of the field representing the schema's image.\n * @maxLength 1000\n */\n imageFieldId?: string | null;\n}\n\nexport interface TaxGroupsProviderConfig {\n /** Base URI of the service plugin implementation. Since no endpoint is calling this path, it may be left blank. */\n deploymentUri?: SpiBaseUri;\n /**\n * Name of the default tax group for this app. All products retrieved from this app will be categorized, by default, with this group name.\n * The `id` for this tax group is the app's ID.\n * @maxLength 100\n */\n defaultTaxGroup?: string;\n /**\n * Additional tax groups to be added to a site's tax settings when the app is installed.\n * Each `additionalTaxGroup` must include an `id` and a `name`.\n */\n additionalTaxGroups?: Record<string, AdditionalTaxGroup>;\n}\n\nexport interface AdditionalTaxGroup {\n /**\n * Tax group name.\n * @maxLength 100\n */\n name?: string;\n /**\n * Unique tax group ID.\n * @format GUID\n */\n _id?: string;\n}\n\nexport interface TaxCalculationConfig {\n /**\n * Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.\n *\n * For example, to call the Calculate Tax endpoint at https://my-tax-calc.com/v1/calculate-tax, the base URI you provide here is `\"https://my-tax-calc.com/\"`.\n */\n deploymentUri?: SpiBaseUri;\n /**\n * Display name of the tax calculator.\n * @minLength 1\n * @maxLength 200\n */\n calculatorDisplayName?: string;\n /**\n * List of countries, in [ISO-3166 alpha-1](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format, that the calculator does not support.\n * @format COUNTRY\n * @maxSize 195\n */\n unsupportedCountries?: string[];\n}\n\n/** A modal in one of the back-office platforms */\nexport interface BackOfficeModal extends BackOfficeModalContentOneOf {\n /**\n * Iframe URL that hosts the modal's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n /**\n * Platform that hosts the modal.\n *\n * Must be `\"BUSINESS_MANAGER\"`.\n */\n hostingPlatform?: BackOfficeHostingPlatformsWithLiterals;\n /**\n * Modal title.\n * @minLength 1\n */\n title?: string;\n /**\n * Initial width of the modal while loading, in pixels.\n * Width may be adjusted dynamically based on the content of the modal or limited by the size of the modal's container.\n * @max 9999\n */\n width?: number | null;\n /**\n * Initial height of the modal while loading, in pixels.\n * Height may be adjusted dynamically based on the content of the modal or limited by the size of the modal's container.\n * @max 9999\n */\n height?: number | null;\n /** general component data */\n metaData?: ComponentMetaData;\n /**\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n}\n\n/** @oneof */\nexport interface BackOfficeModalContentOneOf {\n /**\n * Iframe URL that hosts the modal's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n}\n\nexport interface ModalParams {\n /**\n * Named export to use.\n * @maxLength 400\n */\n namedExport?: string | null;\n}\n\nexport interface DeploymentPipelineProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentPipelineUri?: SpiBaseUri;\n /**\n * The deployment pipeline implementer id\n * @format GUID\n */\n deploymentPipelineId?: string;\n}\n\nexport interface CustomElementWidget {\n /** Base info of component by shared logic of unified components */\n base?: BaseInfo;\n /** Unified widget installation settings */\n installation?: WidgetInstallationSettings;\n /** The extension data for this component */\n widgetData?: WidgetData;\n /** The widget's editor behaviors */\n behaviors?: EditorBehaviors;\n /** The size of the widget */\n size?: WidgetSize;\n /**\n * The runtime dependencies array to declare the widget packages.\n * @maxSize 50\n */\n dependencies?: WixDependency[];\n /**\n * The array of this widget's presets\n * @maxSize 50\n */\n presets?: Preset[];\n}\n\nexport interface WidgetData {\n /**\n * The script url that should render on the widget\n * @format WEB_URL\n */\n scriptUrl?: string;\n /**\n * Unique tag name to use in order to connect your JS script to your web component\n * @minLength 2\n * @maxLength 64\n */\n tagName?: string;\n /** Type of JavaScript modularization approach used in the custom element */\n scriptType?: CustomElementScriptTypeWithLiterals;\n}\n\nexport enum CustomElementScriptType {\n NONE = 'NONE',\n /** CommonJS modularization approach */\n COMMON_JS = 'COMMON_JS',\n /** ES Module modularization approach */\n ES_MODULE = 'ES_MODULE',\n}\n\n/** @enumType */\nexport type CustomElementScriptTypeWithLiterals =\n | CustomElementScriptType\n | 'NONE'\n | 'COMMON_JS'\n | 'ES_MODULE';\n\nexport interface EditorBehaviors {\n /** The settings behavior definition for the widget */\n settings?: SettingsPanel;\n /** The dashboard behavior definition for the widget */\n dashboard?: Dashboard;\n}\n\nexport interface SettingsPanel {\n /**\n * The settings panel URL for this component\n * @format WEB_URL\n */\n settingsUrl?: string | null;\n}\n\nexport interface Dashboard {\n /**\n * The dashboard page guid for the widget manage of the widget\n * @format GUID\n */\n dashboardPageComponentId?: string;\n}\n\nexport interface WidgetSize {\n /** define the size of the widget's height */\n height?: WidgetSizeHeight;\n /** define the size of the widget's width */\n width?: WidgetSizeWidth;\n}\n\nexport enum HeightMode {\n UNKNOWN = 'UNKNOWN',\n /** Height is calculated by content */\n AUTO = 'AUTO',\n /** Height is fixed require size in px */\n FIXED = 'FIXED',\n}\n\n/** @enumType */\nexport type HeightModeWithLiterals = HeightMode | 'UNKNOWN' | 'AUTO' | 'FIXED';\n\nexport interface WidgetSizeHeight {\n /** Height calculation mode */\n heightMode?: HeightModeWithLiterals;\n /**\n * Default height in pixels\n * @max 9999\n */\n defaultHeight?: number;\n}\n\nexport interface WidgetSizeWidth {\n /** Boolean to set stretch, will place the widget stretched to the full width of the container */\n allowStretch?: boolean;\n /**\n * Default width in pixels\n * @max 9999\n */\n defaultWidth?: number;\n /** Boolean to set stretch by default on installation, if true will place the widget stretched to the full width of the container */\n stretchByDefault?: boolean;\n}\n\nexport interface Preset {\n /**\n * The id of the preset\n * @minLength 1\n * @maxLength 50\n */\n _id?: string;\n /**\n * Display name of the preset\n * @minLength 1\n * @maxLength 30\n */\n name?: string;\n /** Defines data for screen size for the preset */\n breakpoints?: Breakpoints;\n /**\n * URL of an image to show as the preset's thumbnail in the editor\n * @format WEB_URL\n */\n thumbnailUrl?: string | null;\n}\n\nexport interface Breakpoints {\n /** Defines data for small screen size */\n small?: Breakpoint;\n /** Defines data for medium screen size */\n medium?: Breakpoint;\n /** Defines data for large screen size */\n large?: Breakpoint;\n}\n\nexport interface Breakpoint {\n /** The size of the preset */\n size?: WidgetSize;\n /**\n * A different preset id to be used according to breakpoint\n * @maxLength 50\n */\n presetId?: string;\n}\n\n/** A component that enables extending Wix dashboard functionality. */\nexport interface BackOfficeExtensionWidget\n extends BackOfficeExtensionWidgetAssetOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n /**\n * Platform that hosts the widget.\n *\n * Must be `\"BUSINESS_MANAGER\"`.\n */\n hostingPlatform?: BackOfficeHostingPlatformsWithLiterals;\n /**\n * Slot ID for the plugin's container.\n * @format GUID\n */\n extends?: string;\n /** Extension description. */\n description?: string | null;\n /** Extension title. */\n title?: string;\n /**\n * Initial height of the widget while loading, in pixels.\n * Height may be adjusted dynamically based on the content of the widget or limited by the size of the widget's container.\n * @max 9999\n */\n height?: number | null;\n}\n\n/** @oneof */\nexport interface BackOfficeExtensionWidgetAssetOneOf {\n /**\n * Iframe URL that hosts the widget's content.\n * @format WEB_URL\n */\n iframeUrl?: string;\n}\n\n/** A component that enables extending a Wix dashboard menu. */\nexport interface BackOfficeExtensionMenuItem {\n /**\n * Platform that hosts the modal.\n *\n * Must be `\"BUSINESS_MANAGER\"`.\n */\n hostingPlatform?: BackOfficeHostingPlatformsWithLiterals;\n /**\n * Slot ID for the plugin's container.\n * @format GUID\n */\n extends?: string;\n /** Extension description. */\n description?: string | null;\n /** Extension title. */\n title?: string;\n /**\n * Menu item subtitle.\n * @maxLength 200\n */\n subtitle?: string | null;\n /**\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n /** Action that takes places when the menu item is clicked. */\n action?: MenuAction;\n}\n\nexport interface NavigateToPageAction {\n /**\n * ID for the target [page](https://dev.wix.com/docs/sdk/host-modules/dashboard/page-ids).\n * @format GUID\n */\n pageId?: string;\n /** Relative URL to append to the base page URL. May include path segments, search params, and hash. */\n relativeUrl?: string | null;\n}\n\nexport interface OpenModalAction {\n /**\n * ID of the modal to open.\n * @format GUID\n */\n componentId?: string;\n /** Modal parameters. */\n componentParams?: Record<string, string>;\n}\n\nexport interface MenuAction extends MenuActionActionOneOf {\n navigateToPage?: NavigateToPageAction;\n openModal?: OpenModalAction;\n}\n\n/** @oneof */\nexport interface MenuActionActionOneOf {\n navigateToPage?: NavigateToPageAction;\n openModal?: OpenModalAction;\n}\n\n/**\n * Form templates represent an entity that can be used as a source when creating a new form,\n * as well as used as common, extendable form.\n */\nexport interface FormTemplate extends FormTemplateTemplateTypeOptionsOneOf {\n /** Extension configuration.. */\n extendableOptions?: ExtensionDetails;\n /**\n * Form template ID.\n * @format GUID\n */\n _id?: string;\n /**\n * Namespace under which all forms from this template are created.\n * Namespaces can be used to aggregate multiple forms into single set according to use case / business rules / product.\n * @minLength 10\n * @maxLength 50\n * @immutable\n */\n namespace?: string;\n /**\n * List of form fields.\n * @maxSize 100\n */\n fields?: V2Field[];\n /**\n * Fields which were soft deleted, but can be restored by user.\n * @maxSize 100\n */\n deletedFields?: V2Field[];\n /**\n * Steps of the form, determinating layout of the form\n * @maxSize 100\n */\n steps?: Step[];\n /**\n * Form rules, can be applied to layout and items properties.\n * @maxSize 100\n */\n rules?: V2Rule[];\n /**\n * Name that will be assigned to a created template.\n * @minLength 1\n * @maxLength 200\n */\n name?: string | null;\n /** Settings for actions to be taken after form submission. */\n submitSettings?: SubmitSettings;\n /**\n * Specifies the template purpose\n * @immutable\n */\n templateType?: TemplateTypeWithLiterals;\n /**\n * Date of creation.\n * @readonly\n */\n _createdDate?: Date | null;\n /**\n * Date of last update.\n * @readonly\n */\n _updatedDate?: Date | null;\n /**\n * Settings for field groups.\n * @maxSize 50\n */\n fieldGroups?: FieldGroup[];\n /** Required indicator properties. */\n requiredIndicatorProperties?: RequiredIndicatorProperties;\n}\n\n/** @oneof */\nexport interface FormTemplateTemplateTypeOptionsOneOf {\n /** Extension configuration.. */\n extendableOptions?: ExtensionDetails;\n}\n\nexport interface V2Field extends V2FieldFieldTypeOptionsOneOf {\n /** Field accept input of data */\n inputOptions?: InputField;\n /** Field for displaying information such as header or text paragraph */\n displayOptions?: DisplayField;\n /**\n * Field id.\n * @format GUID\n * @immutable\n */\n _id?: string;\n /**\n * Whether the field is hidden.\n * Default: false\n */\n hidden?: boolean;\n /**\n * Custom identification of field, can be used to specify exceptional behaviour of client for specific field\n * @maxLength 50\n */\n identifier?: string | null;\n /**\n * Type of the field\n * @readonly\n */\n fieldType?: FieldFieldTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface V2FieldFieldTypeOptionsOneOf {\n /** Field accept input of data */\n inputOptions?: InputField;\n /** Field for displaying information such as header or text paragraph */\n displayOptions?: DisplayField;\n}\n\nexport enum FieldFieldType {\n UNKNOWN_FIELD_TYPE = 'UNKNOWN_FIELD_TYPE',\n INPUT = 'INPUT',\n DISPLAY = 'DISPLAY',\n}\n\n/** @enumType */\nexport type FieldFieldTypeWithLiterals =\n | FieldFieldType\n | 'UNKNOWN_FIELD_TYPE'\n | 'INPUT'\n | 'DISPLAY';\n\nexport interface InputField extends InputFieldInputTypeOptionsOneOf {\n /** Input return string as value */\n stringOptions?: _String;\n /** Input return number as value */\n numberOptions?: InputField_Number;\n /** Input return boolean as value */\n booleanOptions?: _Boolean;\n /** Input return array as value */\n arrayOptions?: _Array;\n /** Input return object as value */\n objectOptions?: _Object;\n /** Input return \"Wix file\" as value */\n wixFileOptions?: WixFile;\n /** Input returns selected products as value. */\n paymentOptions?: Payment;\n /** Input returns multiline address as value. */\n multilineAddressOptions?: Address;\n /** Input returns scheduling as value. */\n schedulingOptions?: Scheduling;\n /** Input returns multiline address as value. */\n addressOptions?: Address;\n /**\n * Definition of a target where the value of field belongs.\n * @minLength 1\n * @maxLength 200\n * @immutable\n */\n target?: string;\n /**\n * Mark the field as containing personal information. This will encrypt user data when storing it.\n * Default: false\n */\n pii?: boolean;\n /**\n * Whether the field is required.\n * Default: false\n */\n required?: boolean;\n /**\n * Type of the input field\n * @readonly\n */\n inputType?: InputTypeWithLiterals;\n /** Mapping to contacts, telling to what contact property field input value should be saved. */\n contactMapping?: FormFieldContactInfo;\n /**\n * Whether the field is read only.\n * Default: false\n */\n readOnly?: boolean;\n}\n\n/** @oneof */\nexport interface InputFieldInputTypeOptionsOneOf {\n /** Input return string as value */\n stringOptions?: _String;\n /** Input return number as value */\n numberOptions?: InputField_Number;\n /** Input return boolean as value */\n booleanOptions?: _Boolean;\n /** Input return array as value */\n arrayOptions?: _Array;\n /** Input return object as value */\n objectOptions?: _Object;\n /** Input return \"Wix file\" as value */\n wixFileOptions?: WixFile;\n /** Input returns selected products as value. */\n paymentOptions?: Payment;\n /** Input returns multiline address as value. */\n multilineAddressOptions?: Address;\n /** Input returns scheduling as value. */\n schedulingOptions?: Scheduling;\n /** Input returns multiline address as value. */\n addressOptions?: Address;\n}\n\nexport interface StringType extends StringTypeFormatOptionsOneOf {\n /** DATE format options */\n dateOptions?: DateTimeConstraints;\n /** DATE_TIME format options */\n dateTimeOptions?: DateTimeConstraints;\n /** TIME format options */\n timeOptions?: DateTimeConstraints;\n /** DATE_OPTIONAL_TIME format options */\n dateOptionalTimeOptions?: DateTimeConstraints;\n /** PHONE format options */\n phoneOptions?: PhoneConstraints;\n /**\n * Minimum length.\n * @max 20000\n */\n minLength?: number | null;\n /**\n * Maximum length.\n * @max 20000\n */\n maxLength?: number | null;\n /**\n * Pattern for a regular expression match.\n * @maxLength 500\n */\n pattern?: string | null;\n /** Format of a string. */\n format?: FormatWithLiterals;\n /**\n * List of allowed values.\n * @maxSize 500\n * @maxLength 20000\n */\n enum?: string[] | null;\n /** Custom error messages displayed when validation fails. */\n validationMessages?: ValidationMessages;\n}\n\n/** @oneof */\nexport interface StringTypeFormatOptionsOneOf {\n /** DATE format options */\n dateOptions?: DateTimeConstraints;\n /** DATE_TIME format options */\n dateTimeOptions?: DateTimeConstraints;\n /** TIME format options */\n timeOptions?: DateTimeConstraints;\n /** DATE_OPTIONAL_TIME format options */\n dateOptionalTimeOptions?: DateTimeConstraints;\n /** PHONE format options */\n phoneOptions?: PhoneConstraints;\n}\n\nexport enum Format {\n /** Unknown format. */\n UNKNOWN_FORMAT = 'UNKNOWN_FORMAT',\n /** Date format. */\n DATE = 'DATE',\n /** Time format. */\n TIME = 'TIME',\n /** Date and time format. */\n DATE_TIME = 'DATE_TIME',\n /** Email format. */\n EMAIL = 'EMAIL',\n /** URL format. */\n URL = 'URL',\n /** UUID format. */\n UUID = 'UUID',\n /** Phone number format. */\n PHONE = 'PHONE',\n /** URI format. */\n URI = 'URI',\n /** Hostname format. */\n HOSTNAME = 'HOSTNAME',\n /** Hexadecimal color code format. */\n COLOR_HEX = 'COLOR_HEX',\n /** Currency format. */\n CURRENCY = 'CURRENCY',\n /** Language code format. */\n LANGUAGE = 'LANGUAGE',\n /** Date with optional time format. */\n DATE_OPTIONAL_TIME = 'DATE_OPTIONAL_TIME',\n}\n\n/** @enumType */\nexport type FormatWithLiterals =\n | Format\n | 'UNKNOWN_FORMAT'\n | 'DATE'\n | 'TIME'\n | 'DATE_TIME'\n | 'EMAIL'\n | 'URL'\n | 'UUID'\n | 'PHONE'\n | 'URI'\n | 'HOSTNAME'\n | 'COLOR_HEX'\n | 'CURRENCY'\n | 'LANGUAGE'\n | 'DATE_OPTIONAL_TIME';\n\nexport interface DateTimeConstraints {\n /**\n * Support static constrains defined as ISO date/time format, as well as\n * dynamic calculations can be performed using special keywords such as \"$now\" to represent the current date and time.\n * The dynamic calculation supports expressions like \"$now+2d\" (2 days in the future), \"$now-1h\" (1 hour in the past), etc.\n * The regex pattern for dynamic calculations is: \\$now([+-]\\d{1,2})([yMdmh])\n * @maxLength 50\n */\n minimum?: string | null;\n /**\n * Support static constrains defined as ISO date/time format, as well as\n * dynamic calculations can be performed using special keywords such as \"$now\" to represent the current date and time.\n * The dynamic calculation supports expressions like \"$now+2d\" (2 days in the future), \"$now-1h\" (1 hour in the past), etc.\n * The regex pattern for dynamic calculations is: \\$now([+-]\\d{1,2})([yMdmh])\n * @maxLength 50\n */\n maximum?: string | null;\n}\n\nexport interface PhoneConstraints {\n /**\n * Country codes for phone number that are allowed\n * @maxSize 250\n * @maxLength 2\n */\n allowedCountryCodes?: string[];\n}\n\nexport interface ValidationMessages {\n /**\n * Error message shown when the pattern validation fails.\n *\n * This message is displayed to users when their input doesn't match the specified regex pattern.\n * @maxLength 200\n */\n pattern?: string | null;\n}\n\nexport enum StringComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n TEXT_INPUT = 'TEXT_INPUT',\n RADIO_GROUP = 'RADIO_GROUP',\n DROPDOWN = 'DROPDOWN',\n DATE_TIME = 'DATE_TIME',\n PHONE_INPUT = 'PHONE_INPUT',\n DATE_INPUT = 'DATE_INPUT',\n TIME_INPUT = 'TIME_INPUT',\n DATE_PICKER = 'DATE_PICKER',\n SERVICES_DROPDOWN = 'SERVICES_DROPDOWN',\n PASSWORD = 'PASSWORD',\n}\n\n/** @enumType */\nexport type StringComponentTypeWithLiterals =\n | StringComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'TEXT_INPUT'\n | 'RADIO_GROUP'\n | 'DROPDOWN'\n | 'DATE_TIME'\n | 'PHONE_INPUT'\n | 'DATE_INPUT'\n | 'TIME_INPUT'\n | 'DATE_PICKER'\n | 'SERVICES_DROPDOWN'\n | 'PASSWORD';\n\nexport interface TextInput {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Placeholder for the value input\n * @maxLength 100\n */\n placeholder?: string | null;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Default value for the text input\n * @maxLength 20000\n */\n default?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface MediaItem extends MediaItemMediaOneOf {\n /** WixMedia image. */\n image?: CommonImage;\n}\n\n/** @oneof */\nexport interface MediaItemMediaOneOf {\n /** WixMedia image. */\n image?: CommonImage;\n}\n\nexport interface CommonImage {\n /**\n * WixMedia image ID.\n * @maxLength 100\n */\n _id?: string;\n /**\n * Image URL.\n * @maxLength 2000\n */\n url?: string;\n /**\n * Original image height.\n * @readonly\n */\n height?: number;\n /**\n * Original image width.\n * @readonly\n */\n width?: number;\n /**\n * Image alt text.\n * @maxLength 1000\n */\n altText?: string | null;\n /**\n * Image filename.\n * @readonly\n * @maxLength 1000\n */\n filename?: string | null;\n}\n\nexport interface MediaSettings {\n /**\n * Specifies where image should be displayed.\n * Default: BELOW\n */\n imagePosition?: ImagePositionWithLiterals;\n /**\n * Specifies image alignment.\n * Default: CENTER\n */\n imageAlignment?: AlignmentWithLiterals;\n /**\n * Defines how an image should be resized to fit.\n * Default: COVER\n */\n imageFit?: ImageFitWithLiterals;\n}\n\nexport enum ImagePosition {\n /** Undefined position. */\n UNKNOWN_IMAGE_POSITION = 'UNKNOWN_IMAGE_POSITION',\n /** Above label. */\n ABOVE = 'ABOVE',\n /** Below label. */\n BELOW = 'BELOW',\n}\n\n/** @enumType */\nexport type ImagePositionWithLiterals =\n | ImagePosition\n | 'UNKNOWN_IMAGE_POSITION'\n | 'ABOVE'\n | 'BELOW';\n\nexport enum Alignment {\n /** Undefined alignment. */\n UNKNOWN_ALIGNMENT = 'UNKNOWN_ALIGNMENT',\n /** Left. */\n LEFT = 'LEFT',\n /** Center. */\n CENTER = 'CENTER',\n /** Right. */\n RIGHT = 'RIGHT',\n}\n\n/** @enumType */\nexport type AlignmentWithLiterals =\n | Alignment\n | 'UNKNOWN_ALIGNMENT'\n | 'LEFT'\n | 'CENTER'\n | 'RIGHT';\n\nexport enum ImageFit {\n UNKNOWN_IMAGE_FIT = 'UNKNOWN_IMAGE_FIT',\n /** Image is scaled to maintain its aspect ratio while filling the element's entire content box. Portions of the image may be clipped if the aspect ratios do not match. */\n COVER = 'COVER',\n /** Image is resized to fill the element's content box. Aspect ratio may not be preserved. */\n CONTAIN = 'CONTAIN',\n}\n\n/** @enumType */\nexport type ImageFitWithLiterals =\n | ImageFit\n | 'UNKNOWN_IMAGE_FIT'\n | 'COVER'\n | 'CONTAIN';\n\nexport interface RadioGroup {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Flag identifying to show option allowing input custom value\n * List of options to select from\n * @maxSize 400\n */\n options?: RadioGroupOption[];\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n /**\n * Specifies the number of columns used to display the selections within the component.\n * Default: ONE\n */\n numberOfColumns?: NumberOfColumnsWithLiterals;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface RadioGroupOption {\n /**\n * Selectable option label\n * @maxLength 400\n */\n label?: string | null;\n /**\n * Selectable option value, which is saved to DB.\n * @maxLength 20000\n */\n value?: string | null;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n /**\n * Option id. Used as binding for translations\n * @format GUID\n * @immutable\n */\n _id?: string;\n}\n\nexport interface CustomOption {\n /**\n * Label of custom option input\n * @maxLength 350\n */\n label?: string | null;\n /**\n * Placeholder of custom option input\n * @maxLength 100\n */\n placeholder?: string | null;\n}\n\nexport enum NumberOfColumns {\n /** Undefined number of columns. */\n UNKNOWN = 'UNKNOWN',\n /** Zero columns. */\n ZERO = 'ZERO',\n /** One column. */\n ONE = 'ONE',\n /** Two columns. */\n TWO = 'TWO',\n /** Three columns. */\n THREE = 'THREE',\n}\n\n/** @enumType */\nexport type NumberOfColumnsWithLiterals =\n | NumberOfColumns\n | 'UNKNOWN'\n | 'ZERO'\n | 'ONE'\n | 'TWO'\n | 'THREE';\n\nexport interface Dropdown {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * List of options to select from\n * @maxSize 400\n */\n options?: DropdownOption[];\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n /**\n * Placeholder of dropdown input\n * @maxLength 100\n */\n placeholder?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface DropdownOption {\n /**\n * Selectable option label\n * @maxLength 400\n */\n label?: string | null;\n /**\n * Selectable option value, which is saved to DB.\n * @maxLength 20000\n */\n value?: string | null;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n /**\n * Option id. Used as binding for translations\n * @format GUID\n * @immutable\n */\n _id?: string;\n}\n\nexport interface DateTimeInput {\n /**\n * Label of the field. Displayed text for the date/time input.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. Additional information about the date/time input. */\n description?: RichContent;\n /**\n * Flag identifying whether to show or hide the label.\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Flag identifying whether to show or hide the placeholder.\n * Default: true\n */\n showPlaceholder?: boolean | null;\n /**\n * Flag indicating whether to use the 24-hour time format.\n * Default: false.\n */\n use24HourFormat?: boolean;\n /**\n * Default value for the date time input.\n * @format LOCAL_DATE_TIME\n */\n default?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n /**\n * Flag identifying whether to show or hide the date labels.\n * Default: true\n */\n showDateLabels?: boolean | null;\n}\n\nexport interface PhoneInput {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Placeholder for the value input\n * @maxLength 100\n */\n placeholder?: string | null;\n /**\n * Flag identifying to show label or not\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Default value of the country code\n * @minLength 1\n * @maxLength 5\n */\n defaultCountryCode?: string | null;\n /**\n * Flag identifying to show country flag or not\n * Default: false\n */\n showCountryFlag?: boolean;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface DateInput {\n /**\n * Label of the field. Displayed text for the date/time input.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. Additional information about the date/time input. */\n description?: RichContent;\n /**\n * Flag identifying whether to show or hide the label.\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Flag identifying whether to show or hide the placeholder.\n * Default: true\n */\n showPlaceholder?: boolean | null;\n /**\n * Default value for the date input.\n * @format LOCAL_DATE\n */\n default?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n /**\n * Flag identifying whether to show or hide the date labels.\n * Default: true\n */\n showDateLabels?: boolean | null;\n}\n\nexport interface TimeInput {\n /**\n * Label of the field. Displayed text for the date/time input.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. Additional information about the date/time input. */\n description?: RichContent;\n /**\n * Flag identifying whether to show or hide the label.\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Flag identifying whether to show or hide the placeholder.\n * Default: true\n */\n showPlaceholder?: boolean | null;\n /**\n * Flag indicating whether to use the 24-hour time format.\n * Default: false.\n */\n use24HourFormat?: boolean;\n /**\n * Default value for the time input.\n * @format LOCAL_TIME\n */\n default?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface DatePicker {\n /**\n * Label of the field. Displayed text for the date/time input.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. Additional information about the date/time input. */\n description?: RichContent;\n /**\n * Flag identifying whether to show or hide the label.\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Placeholder of date picker input\n * @maxLength 100\n */\n placeholder?: string | null;\n /** First day of the week displayed on date picker. */\n firstDayOfWeek?: FirstDayOfWeekWithLiterals;\n /**\n * Default value for the date picker.\n * @format LOCAL_DATE\n */\n default?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport enum FirstDayOfWeek {\n /** First day of the week is Monday. */\n MONDAY = 'MONDAY',\n /** First day of the week is Sunday. */\n SUNDAY = 'SUNDAY',\n}\n\n/** @enumType */\nexport type FirstDayOfWeekWithLiterals = FirstDayOfWeek | 'MONDAY' | 'SUNDAY';\n\nexport interface ServicesDropdown {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Placeholder of services dropdown input\n * @maxLength 100\n */\n placeholder?: string | null;\n /**\n * List of service options to select from\n * @maxSize 400\n */\n options?: ServicesDropdownOption[];\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n}\n\nexport interface ServicesDropdownOption {\n /**\n * Service name/label\n * @maxLength 400\n */\n label?: string | null;\n /**\n * Option id. Used as binding for translations. Corresponds to the Service ID.\n * @format GUID\n * @immutable\n */\n _id?: string;\n /**\n * Selectable option value, which is saved to DB. Corresponds to the Service ID.\n * @format GUID\n * @immutable\n */\n value?: string | null;\n}\n\nexport interface Password {\n /**\n * Field label.\n * @maxLength 350\n */\n label?: string | null;\n /** Additional description or instructions for the field. */\n description?: RichContent;\n /**\n * Placeholder text shown inside the field when it's empty.\n * Useful for providing a hint about the expected format or content.\n * @maxLength 100\n */\n placeholder?: string | null;\n /**\n * Whether to display the field label.\n *\n * Default: `true`\n */\n showLabel?: boolean | null;\n /**\n * Default value for the field. This value is pre-populated in the field when the form loads.\n * @maxLength 20000\n */\n default?: string | null;\n /** Media content associated with the field, such as an image. */\n media?: MediaItem;\n /** Configuration for the media content. */\n mediaSettings?: MediaSettings;\n}\n\nexport interface NumberType {\n /** Inclusive maximum value. */\n maximum?: number | null;\n /** Inclusive minimum value. */\n minimum?: number | null;\n /** Multiple of value. */\n multipleOf?: number | null;\n /**\n * List of allowed values.\n * @maxSize 500\n */\n enum?: number[] | null;\n}\n\nexport enum NumberComponentType {\n UNKNOWN = 'UNKNOWN',\n NUMBER_INPUT = 'NUMBER_INPUT',\n RATING_INPUT = 'RATING_INPUT',\n}\n\n/** @enumType */\nexport type NumberComponentTypeWithLiterals =\n | NumberComponentType\n | 'UNKNOWN'\n | 'NUMBER_INPUT'\n | 'RATING_INPUT';\n\nexport interface NumberInput {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Placeholder for the value input\n * @maxLength 100\n */\n placeholder?: string | null;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Default value for the number input */\n default?: number | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface RatingInput {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Default rating\n * @min 1\n * @max 5\n */\n defaultValue?: number | null;\n /**\n * Flag identifying to hide label or not\n * Default: true\n */\n showLabel?: boolean | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface BooleanType {\n /**\n * List of allowed values.\n * @maxSize 2\n */\n enum?: boolean[];\n}\n\nexport enum BooleanComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n CHECKBOX = 'CHECKBOX',\n}\n\n/** @enumType */\nexport type BooleanComponentTypeWithLiterals =\n | BooleanComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'CHECKBOX';\n\nexport interface Checkbox {\n /** Label of the field */\n label?: RichContent;\n /**\n * Flag identifying if checked by default\n * Default: false\n */\n checked?: boolean;\n}\n\nexport interface ArrayType {\n /**\n * Maximum amount of array elements.\n * @max 1000\n */\n maxItems?: number | null;\n /**\n * Minimum amount of array elements.\n * @max 1000\n */\n minItems?: number | null;\n /** Type of items allowed in array. */\n items?: ArrayTypeArrayItems;\n}\n\nexport enum ItemType {\n UNKNOWN_ITEM_TYPE = 'UNKNOWN_ITEM_TYPE',\n STRING = 'STRING',\n NUMBER = 'NUMBER',\n BOOLEAN = 'BOOLEAN',\n INTEGER = 'INTEGER',\n OBJECT = 'OBJECT',\n}\n\n/** @enumType */\nexport type ItemTypeWithLiterals =\n | ItemType\n | 'UNKNOWN_ITEM_TYPE'\n | 'STRING'\n | 'NUMBER'\n | 'BOOLEAN'\n | 'INTEGER'\n | 'OBJECT';\n\nexport interface IntegerType {\n /** Maximum value. */\n maximum?: number | null;\n /** Minimum value. */\n minimum?: number | null;\n /** Multiple of value. */\n multipleOf?: number | null;\n /**\n * List of allowed values.\n * @maxSize 500\n */\n enum?: number[] | null;\n}\n\nexport interface ObjectType {\n /** Description of object properties. */\n properties?: Record<string, PropertiesType>;\n}\n\nexport enum PropertiesTypeEnum {\n UNKNOWN_PROPERTY_TYPE = 'UNKNOWN_PROPERTY_TYPE',\n STRING = 'STRING',\n NUMBER = 'NUMBER',\n BOOLEAN = 'BOOLEAN',\n INTEGER = 'INTEGER',\n ARRAY = 'ARRAY',\n}\n\n/** @enumType */\nexport type PropertiesTypeEnumWithLiterals =\n | PropertiesTypeEnum\n | 'UNKNOWN_PROPERTY_TYPE'\n | 'STRING'\n | 'NUMBER'\n | 'BOOLEAN'\n | 'INTEGER'\n | 'ARRAY';\n\nexport interface PropertiesType\n extends PropertiesTypePropertiesTypeOptionsOneOf {\n /** String type validation for property. */\n stringOptions?: StringType;\n /** Number type validation for property. */\n numberOptions?: NumberType;\n /** Boolean type validation for property. */\n booleanOptions?: BooleanType;\n /** Integer type validation for property. */\n integerOptions?: IntegerType;\n /** Array type validation for property. */\n arrayOptions?: ArrayType;\n /**\n * Type of object properties\n * @readonly\n */\n propertiesType?: PropertiesTypeEnumWithLiterals;\n /** Whether the property is required. */\n required?: boolean;\n}\n\n/** @oneof */\nexport interface PropertiesTypePropertiesTypeOptionsOneOf {\n /** String type validation for property. */\n stringOptions?: StringType;\n /** Number type validation for property. */\n numberOptions?: NumberType;\n /** Boolean type validation for property. */\n booleanOptions?: BooleanType;\n /** Integer type validation for property. */\n integerOptions?: IntegerType;\n /** Array type validation for property. */\n arrayOptions?: ArrayType;\n}\n\nexport interface ArrayTypeArrayItems\n extends ArrayTypeArrayItemsItemTypeOptionsOneOf {\n /** String type validation for items. */\n stringOptions?: StringType;\n /** Number type validation for items. */\n numberOptions?: NumberType;\n /** Boolean type validation for items. */\n booleanOptions?: BooleanType;\n /** Integer type validation for items. */\n integerOptions?: IntegerType;\n /** Object type validation for items */\n objectOptions?: ObjectType;\n /**\n * Type of array items\n * @readonly\n */\n itemType?: ItemTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ArrayTypeArrayItemsItemTypeOptionsOneOf {\n /** String type validation for items. */\n stringOptions?: StringType;\n /** Number type validation for items. */\n numberOptions?: NumberType;\n /** Boolean type validation for items. */\n booleanOptions?: BooleanType;\n /** Integer type validation for items. */\n integerOptions?: IntegerType;\n /** Object type validation for items */\n objectOptions?: ObjectType;\n}\n\nexport enum ArrayComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n CHECKBOX_GROUP = 'CHECKBOX_GROUP',\n TAGS = 'TAGS',\n}\n\n/** @enumType */\nexport type ArrayComponentTypeWithLiterals =\n | ArrayComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'CHECKBOX_GROUP'\n | 'TAGS';\n\nexport interface CheckboxGroup {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * List of options to select from\n * @maxSize 400\n */\n options?: CheckboxGroupOption[];\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n /**\n * Specifies the number of columns used to display the selections within the component.\n * Default: ONE\n */\n numberOfColumns?: NumberOfColumnsWithLiterals;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface CheckboxGroupOption {\n /**\n * Selectable option label\n * @maxLength 400\n */\n label?: string | null;\n /** Selectable option value, which is saved to DB. */\n value?: any;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n /**\n * Option id. Used as binding for translations\n * @format GUID\n * @immutable\n */\n _id?: string;\n /** Media item. Media, associated with option, like image. */\n media?: MediaItem;\n}\n\nexport interface Tags {\n /**\n * Label of the field\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * List of options to select from\n * @maxSize 400\n */\n options?: TagsOption[];\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n /**\n * Specifies the number of columns used to display the selections within the component.\n * Default: ONE\n */\n numberOfColumns?: NumberOfColumnsWithLiterals;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface TagsOption {\n /**\n * Selectable option label\n * @maxLength 400\n */\n label?: string | null;\n /** Selectable option value, which is saved to DB. */\n value?: any;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n /**\n * Option id. Used as binding for translations\n * @format GUID\n * @immutable\n */\n _id?: string;\n /** Media item. Media, associated with option, like image. */\n media?: MediaItem;\n}\n\nexport enum WixFileComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n FILE_UPLOAD = 'FILE_UPLOAD',\n SIGNATURE = 'SIGNATURE',\n}\n\n/** @enumType */\nexport type WixFileComponentTypeWithLiterals =\n | WixFileComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'FILE_UPLOAD'\n | 'SIGNATURE';\n\nexport interface FileType {\n /**\n * Amount of files allowed to upload\n * @min 1\n * @max 30\n */\n fileLimit?: number;\n /**\n * Supported file formats for upload\n * @maxSize 5\n */\n uploadFileFormats?: UploadFileFormatWithLiterals[];\n}\n\nexport enum UploadFileFormat {\n /** Undefined upload file format. */\n UNKNOWN_UPLOAD_FILE_FORMAT = 'UNKNOWN_UPLOAD_FILE_FORMAT',\n /** Video files. */\n VIDEO = 'VIDEO',\n /** Image files. */\n IMAGE = 'IMAGE',\n /** Audio files. */\n AUDIO = 'AUDIO',\n /** Document files. */\n DOCUMENT = 'DOCUMENT',\n /** Archive files. */\n ARCHIVE = 'ARCHIVE',\n}\n\n/** @enumType */\nexport type UploadFileFormatWithLiterals =\n | UploadFileFormat\n | 'UNKNOWN_UPLOAD_FILE_FORMAT'\n | 'VIDEO'\n | 'IMAGE'\n | 'AUDIO'\n | 'DOCUMENT'\n | 'ARCHIVE';\n\nexport interface FileUpload {\n /**\n * Selectable option label\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field */\n description?: RichContent;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Text on upload button\n * @maxLength 500\n */\n buttonText?: string | null;\n /**\n * Amount of files allowed to upload\n * @min 1\n * @max 30\n */\n fileLimit?: number;\n /**\n * Supported file formats for upload\n * @maxSize 5\n */\n uploadFileFormats?: UploadFileFormatEnumUploadFileFormatWithLiterals[];\n /**\n * Custom text which appears when file is uploaded, if missing file name will be shown\n * @maxLength 255\n */\n explanationText?: string | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport enum UploadFileFormatEnumUploadFileFormat {\n /** Undefined upload file format. */\n UNDEFINED = 'UNDEFINED',\n /** Video files. */\n VIDEO = 'VIDEO',\n /** Image files. */\n IMAGE = 'IMAGE',\n /** Audio files. */\n AUDIO = 'AUDIO',\n /** Document files. */\n DOCUMENT = 'DOCUMENT',\n /** Archive files. */\n ARCHIVE = 'ARCHIVE',\n}\n\n/** @enumType */\nexport type UploadFileFormatEnumUploadFileFormatWithLiterals =\n | UploadFileFormatEnumUploadFileFormat\n | 'UNDEFINED'\n | 'VIDEO'\n | 'IMAGE'\n | 'AUDIO'\n | 'DOCUMENT'\n | 'ARCHIVE';\n\nexport interface Signature {\n /**\n * Selectable option label\n * @maxLength 350\n */\n label?: string | null;\n /**\n * Flag identifying to hide label or not\n * Default: true\n */\n showLabel?: boolean | null;\n /** Description of the field */\n description?: RichContent;\n /** Is image upload enabled */\n imageUploadEnabled?: boolean;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport enum PaymentComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n CHECKBOX_GROUP = 'CHECKBOX_GROUP',\n DONATION_INPUT = 'DONATION_INPUT',\n PAYMENT_INPUT = 'PAYMENT_INPUT',\n FIXED_PAYMENT = 'FIXED_PAYMENT',\n}\n\n/** @enumType */\nexport type PaymentComponentTypeWithLiterals =\n | PaymentComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'CHECKBOX_GROUP'\n | 'DONATION_INPUT'\n | 'PAYMENT_INPUT'\n | 'FIXED_PAYMENT';\n\nexport interface PaymentType {\n /**\n * Field mapped to products.\n * @minSize 1\n * @maxSize 100\n */\n products?: Product[];\n /**\n * Minimum amount of different products.\n * @max 100\n */\n minItems?: number | null;\n /**\n * Maximum amount of different products.\n * @max 100\n */\n maxItems?: number | null;\n}\n\nexport enum ProductType {\n /** Unknown product type. */\n UNKNOWN = 'UNKNOWN',\n /** Shippable (physical) product. */\n SHIPPABLE = 'SHIPPABLE',\n /** Digital product. */\n DIGITAL = 'DIGITAL',\n}\n\n/** @enumType */\nexport type ProductTypeWithLiterals =\n | ProductType\n | 'UNKNOWN'\n | 'SHIPPABLE'\n | 'DIGITAL';\n\nexport enum PriceType {\n /** Unknown price type. */\n UNKNOWN = 'UNKNOWN',\n /** Fixed price. */\n FIXED_PRICE = 'FIXED_PRICE',\n /** Dynamic price from price range. */\n DYNAMIC_PRICE = 'DYNAMIC_PRICE',\n}\n\n/** @enumType */\nexport type PriceTypeWithLiterals =\n | PriceType\n | 'UNKNOWN'\n | 'FIXED_PRICE'\n | 'DYNAMIC_PRICE';\n\nexport interface QuantityLimit {\n /**\n * Minimum quantity.\n * @min 1\n * @max 100000\n */\n minimum?: number | null;\n /**\n * Maximum quantity.\n * @min 1\n * @max 100000\n */\n maximum?: number | null;\n}\n\nexport interface FixedPriceOptions {\n /**\n * Fixed price monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99).\n * @decimalValue options { gte:0.00, maxScale:2 }\n */\n price?: string;\n}\n\nexport interface DynamicPriceOptions {\n /**\n * Minimal price monetary amount.\n * @decimalValue options { gte:0.00, maxScale:2 }\n */\n minPrice?: string;\n /**\n * Maximal price monetary amount.\n * @decimalValue options { gte:0.00, maxScale:2 }\n */\n maxPrice?: string | null;\n}\n\nexport interface Product extends ProductPriceOptionsOneOf {\n /** Fixed price options. */\n fixedPriceOptions?: FixedPriceOptions;\n /** Dynamic price options. */\n dynamicPriceOptions?: DynamicPriceOptions;\n /**\n * Product ID.\n * @format GUID\n * @readonly\n */\n _id?: string;\n /** Product type. */\n productType?: ProductTypeWithLiterals;\n /** Price type. */\n priceType?: PriceTypeWithLiterals;\n /** Quantity limit. */\n quantityLimit?: QuantityLimit;\n}\n\n/** @oneof */\nexport interface ProductPriceOptionsOneOf {\n /** Fixed price options. */\n fixedPriceOptions?: FixedPriceOptions;\n /** Dynamic price options. */\n dynamicPriceOptions?: DynamicPriceOptions;\n}\n\nexport interface ProductCheckboxGroup {\n /**\n * Label of the field.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. */\n description?: RichContent;\n /**\n * List of options to select from.\n * @maxSize 400\n */\n options?: ProductCheckboxGroupOption[];\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Defines how an image should be resized to fit within its option.\n * Default: COVER\n */\n imageFit?: ImageFitWithLiterals;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface ProductCheckboxGroupOption {\n /**\n * Selectable option label.\n * @maxLength 400\n */\n label?: string | null;\n /** Selectable option value, which is saved to DB. Corresponds to product id, found in field's products list. */\n value?: any;\n /**\n * Option id. Used as binding for translations.\n * @format GUID\n * @immutable\n */\n _id?: string;\n /** Media item. Media, associated with option, like image. */\n media?: MediaItem;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n}\n\nexport interface DonationInput {\n /**\n * Label of the field.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. */\n description?: RichContent;\n /**\n * List of options to select from.\n * @maxSize 400\n */\n options?: DonationInputOption[];\n /** Option which can be specified by UoU, enabled when this object is specified. */\n customOption?: CustomOption;\n /**\n * Specifies the number of columns used to display the selections within the component.\n * Default: ONE\n */\n numberOfColumns?: NumberOfColumnsWithLiterals;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface DonationInputOption {\n /**\n * Selectable option value, which is saved to DB. Corresponds to product id, found in field's products list.\n * @format GUID\n */\n value?: string;\n /** Flag identifying that option should be selected by default */\n default?: boolean;\n}\n\nexport interface PaymentInput {\n /**\n * Label of the field.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. */\n description?: RichContent;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /**\n * Placeholder of custom option input\n * @maxLength 100\n */\n placeholder?: string | null;\n /** Default value for the payment input */\n default?: number | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport interface FixedPayment {\n /**\n * Label of the field.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. */\n description?: RichContent;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n /** Media item. Media, associated with field, like image. */\n media?: MediaItem;\n /** Settings for media item */\n mediaSettings?: MediaSettings;\n}\n\nexport enum AddressComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n MULTILINE_ADDRESS = 'MULTILINE_ADDRESS',\n}\n\n/** @enumType */\nexport type AddressComponentTypeWithLiterals =\n | AddressComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'MULTILINE_ADDRESS';\n\nexport interface MultilineAddressValidation {\n /**\n * Allowed countries. No countries treated as all.\n * @format COUNTRY\n * @maxSize 200\n */\n allowedCountries?: string[];\n /** Fields overrides. */\n fields?: FieldsOverrides;\n}\n\nexport interface FieldOverrides {\n /** Whether the field is required. */\n required?: boolean;\n}\n\nexport interface FieldsOverrides {\n /** Subdivision. */\n subdivision?: FieldOverrides;\n /** City. */\n city?: FieldOverrides;\n /** Postal code. */\n postalCode?: FieldOverrides;\n /** Street name. */\n streetName?: FieldOverrides;\n /** Street number. */\n streetNumber?: FieldOverrides;\n /** Address line. */\n addressLine?: FieldOverrides;\n /** Address line 2. */\n addressLine2?: FieldOverrides;\n /** Country. */\n country?: FieldOverrides;\n}\n\nexport interface MultilineAddress {\n /**\n * Label of the field.\n * @maxLength 350\n */\n label?: string | null;\n /** Description of the field. */\n description?: RichContent;\n /** Show country flags. */\n showCountryFlags?: boolean;\n /** Default country configuration. */\n defaultCountryConfig?: DefaultCountryConfig;\n /** Fields settings. */\n fieldSettings?: FieldsSettings;\n /** Autocomplete enabled for address line field. */\n autocompleteEnabled?: boolean;\n /**\n * Flag identifying whether to show or hide the address labels.\n * Default: true\n */\n showAddressLabels?: boolean | null;\n /**\n * Flag identifying whether to show or hide the label.\n * Default: true\n */\n showLabel?: boolean | null;\n}\n\nexport enum DefaultCountryConfigType {\n /** Unknown default country config type. */\n UNKNOWN_DEFAULT_COUNTRY = 'UNKNOWN_DEFAULT_COUNTRY',\n /** Country is determined by customer's IP address. */\n BY_IP = 'BY_IP',\n /** Pre-selected default country. */\n COUNTRY = 'COUNTRY',\n}\n\n/** @enumType */\nexport type DefaultCountryConfigTypeWithLiterals =\n | DefaultCountryConfigType\n | 'UNKNOWN_DEFAULT_COUNTRY'\n | 'BY_IP'\n | 'COUNTRY';\n\nexport interface AddressLine2 {\n /** Show address line 2 field. */\n show?: boolean;\n}\n\nexport interface DefaultCountryConfig extends DefaultCountryConfigOptionsOneOf {\n /**\n * Country.\n * @format COUNTRY\n */\n countryOptions?: string;\n /** Default country type. */\n type?: DefaultCountryConfigTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DefaultCountryConfigOptionsOneOf {\n /**\n * Country.\n * @format COUNTRY\n */\n countryOptions?: string;\n}\n\nexport interface FieldsSettings {\n /** Address line 2. */\n addressLine2?: AddressLine2;\n}\n\nexport enum SchedulingComponentType {\n UNKNOWN_COMPONENT_TYPE = 'UNKNOWN_COMPONENT_TYPE',\n APPOINTMENT = 'APPOINTMENT',\n}\n\n/** @enumType */\nexport type SchedulingComponentTypeWithLiterals =\n | SchedulingComponentType\n | 'UNKNOWN_COMPONENT_TYPE'\n | 'APPOINTMENT';\n\nexport interface Appointment extends AppointmentFormatInfoOneOf {\n /** In person options for the appointment */\n inPersonOptions?: InPersonOptions;\n /** Online video conference options for the appointment */\n videoConferenceOptions?: VideoConferenceOptions;\n /** Phone options for the appointment */\n phoneOptions?: PhoneOptions;\n /**\n * Label of the field\n * @maxLength 255\n */\n label?: string | null;\n /**\n * Name of the appointment\n * @minLength 1\n * @maxLength 400\n */\n name?: string | null;\n /**\n * Duration of the appointment in minutes\n * @min 1\n * @max 44639\n */\n durationInMinutes?: number | null;\n /** Indicates whether manual approval is required for the appointment */\n manualApprovalRequired?: boolean | null;\n /**\n * ID of the staff members providing the appointment\n * @maxSize 220\n * @format GUID\n */\n staffIds?: string[] | null;\n /** The format of the appointment */\n format?: AppointmentFormatWithLiterals;\n /** Description of the field */\n description?: RichContent;\n /**\n * Flag identifying to hide or not label\n * Default: true\n */\n showLabel?: boolean | null;\n}\n\n/** @oneof */\nexport interface AppointmentFormatInfoOneOf {\n /** In person options for the appointment */\n inPersonOptions?: InPersonOptions;\n /** Online video conference options for the appointment */\n videoConferenceOptions?: VideoConferenceOptions;\n /** Phone options for the appointment */\n phoneOptions?: PhoneOptions;\n}\n\nexport interface Location extends LocationLocationInfoOneOf {\n /**\n * Custom address details\n * @maxLength 512\n */\n customAddress?: string | null;\n /**\n * ID of a business location\n * @format GUID\n */\n businessLocationId?: string | null;\n}\n\n/** @oneof */\nexport interface LocationLocationInfoOneOf {\n /**\n * Custom address details\n * @maxLength 512\n */\n customAddress?: string | null;\n /**\n * ID of a business location\n * @format GUID\n */\n businessLocationId?: string | null;\n}\n\nexport enum AppointmentFormat {\n UNKNOWN_FORMAT_TYPE = 'UNKNOWN_FORMAT_TYPE',\n IN_PERSON = 'IN_PERSON',\n VIDEO_CONFERENCE = 'VIDEO_CONFERENCE',\n PHONE = 'PHONE',\n}\n\n/** @enumType */\nexport type AppointmentFormatWithLiterals =\n | AppointmentFormat\n | 'UNKNOWN_FORMAT_TYPE'\n | 'IN_PERSON'\n | 'VIDEO_CONFERENCE'\n | 'PHONE';\n\nexport interface InPersonOptions {\n /**\n * The locations details\n * @minSize 1\n * @maxSize 1\n */\n locations?: Location[];\n}\n\nexport interface VideoConferenceOptions {\n /**\n * Description or instructions for the online video conference\n * @maxLength 512\n */\n description?: string | null;\n}\n\nexport interface PhoneOptions {\n /**\n * Description or instructions for the phone appointment\n * @maxLength 512\n */\n description?: string | null;\n}\n\nexport enum InputType {\n UNKNOWN_INPUT_TYPE = 'UNKNOWN_INPUT_TYPE',\n STRING = 'STRING',\n NUMBER = 'NUMBER',\n BOOLEAN = 'BOOLEAN',\n ARRAY = 'ARRAY',\n OBJECT = 'OBJECT',\n WIX_FILE = 'WIX_FILE',\n PAYMENT = 'PAYMENT',\n SCHEDULING = 'SCHEDULING',\n ADDRESS = 'ADDRESS',\n}\n\n/** @enumType */\nexport type InputTypeWithLiterals =\n | InputType\n | 'UNKNOWN_INPUT_TYPE'\n | 'STRING'\n | 'NUMBER'\n | 'BOOLEAN'\n | 'ARRAY'\n | 'OBJECT'\n | 'WIX_FILE'\n | 'PAYMENT'\n | 'SCHEDULING'\n | 'ADDRESS';\n\nexport interface FormFieldContactInfo\n extends FormFieldContactInfoAdditionalInfoOneOf {\n /** Email info. */\n emailInfo?: EmailInfo;\n /** Phone info. */\n phoneInfo?: PhoneInfo;\n /** Address info. */\n addressInfo?: AddressInfo;\n /** Custom field info. */\n customFieldInfo?: CustomFieldInfo;\n /** Subscription info */\n subscriptionInfo?: SubscriptionInfo;\n /** Field mapped to contacts. */\n contactField?: ContactFieldWithLiterals;\n}\n\n/** @oneof */\nexport interface FormFieldContactInfoAdditionalInfoOneOf {\n /** Email info. */\n emailInfo?: EmailInfo;\n /** Phone info. */\n phoneInfo?: PhoneInfo;\n /** Address info. */\n addressInfo?: AddressInfo;\n /** Custom field info. */\n customFieldInfo?: CustomFieldInfo;\n /** Subscription info */\n subscriptionInfo?: SubscriptionInfo;\n}\n\nexport enum EmailInfoTag {\n UNTAGGED = 'UNTAGGED',\n MAIN = 'MAIN',\n}\n\n/** @enumType */\nexport type EmailInfoTagWithLiterals = EmailInfoTag | 'UNTAGGED' | 'MAIN';\n\nexport enum PhoneInfoTag {\n UNTAGGED = 'UNTAGGED',\n MAIN = 'MAIN',\n}\n\n/** @enumType */\nexport type PhoneInfoTagWithLiterals = PhoneInfoTag | 'UNTAGGED' | 'MAIN';\n\nexport enum AddressInfoTag {\n UNTAGGED = 'UNTAGGED',\n HOME = 'HOME',\n}\n\n/** @enumType */\nexport type AddressInfoTagWithLiterals = AddressInfoTag | 'UNTAGGED' | 'HOME';\n\nexport enum ConfirmationLevel {\n UNKNOWN_CONFIRMATION_LEVEL = 'UNKNOWN_CONFIRMATION_LEVEL',\n SINGLE_CONFIRMATION = 'SINGLE_CONFIRMATION',\n DOUBLE_CONFIRMATION = 'DOUBLE_CONFIRMATION',\n}\n\n/** @enumType */\nexport type ConfirmationLevelWithLiterals =\n | ConfirmationLevel\n | 'UNKNOWN_CONFIRMATION_LEVEL'\n | 'SINGLE_CONFIRMATION'\n | 'DOUBLE_CONFIRMATION';\n\nexport enum ContactField {\n UNKNOWN_CONTACT_FIELD = 'UNKNOWN_CONTACT_FIELD',\n FIRST_NAME = 'FIRST_NAME',\n LAST_NAME = 'LAST_NAME',\n COMPANY = 'COMPANY',\n POSITION = 'POSITION',\n EMAIL = 'EMAIL',\n PHONE = 'PHONE',\n ADDRESS = 'ADDRESS',\n BIRTHDATE = 'BIRTHDATE',\n CUSTOM_FIELD = 'CUSTOM_FIELD',\n SUBSCRIPTION = 'SUBSCRIPTION',\n VAT_ID = 'VAT_ID',\n}\n\n/** @enumType */\nexport type ContactFieldWithLiterals =\n | ContactField\n | 'UNKNOWN_CONTACT_FIELD'\n | 'FIRST_NAME'\n | 'LAST_NAME'\n | 'COMPANY'\n | 'POSITION'\n | 'EMAIL'\n | 'PHONE'\n | 'ADDRESS'\n | 'BIRTHDATE'\n | 'CUSTOM_FIELD'\n | 'SUBSCRIPTION'\n | 'VAT_ID';\n\nexport interface EmailInfo {\n /** Email tag. */\n tag?: EmailInfoTagWithLiterals;\n}\n\nexport interface PhoneInfo {\n /** Phone tag. */\n tag?: PhoneInfoTagWithLiterals;\n}\n\nexport interface AddressInfo {\n /** Address tag. */\n tag?: AddressInfoTagWithLiterals;\n}\n\nexport interface CustomFieldInfo {\n /**\n * Custom field key.\n * @minLength 1\n * @maxLength 500\n */\n key?: string;\n}\n\nexport interface SubscriptionInfo {\n /**\n * Subscription consent opt in level, either single or double confirmation.\n * Default: SINGLE_CONFIRMATION\n */\n confirmationLevel?: ConfirmationLevelWithLiterals;\n}\n\nexport interface _String extends _StringComponentTypeOptionsOneOf {\n /** Text input field */\n textInputOptions?: TextInput;\n /** Selection field as radio group */\n radioGroupOptions?: RadioGroup;\n /** Selection field as drop down */\n dropdownOptions?: Dropdown;\n /** Field for selecting date and/or time */\n dateTimeOptions?: DateTimeInput;\n /** Phone input field */\n phoneInputOptions?: PhoneInput;\n /** Dropdown based component for selecting date */\n dateInputOptions?: DateInput;\n /** Field for selecting time */\n timeInputOptions?: TimeInput;\n /** Calendar type component for selecting date */\n datePickerOptions?: DatePicker;\n /** Dropdown for selecting services */\n servicesDropdownOptions?: ServicesDropdown;\n /** Password component settings. */\n passwordOptions?: Password;\n /** Validation of field output value. */\n validation?: StringType;\n /**\n * Component type of the string input field\n * @readonly\n */\n componentType?: StringComponentTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface _StringComponentTypeOptionsOneOf {\n /** Text input field */\n textInputOptions?: TextInput;\n /** Selection field as radio group */\n radioGroupOptions?: RadioGroup;\n /** Selection field as drop down */\n dropdownOptions?: Dropdown;\n /** Field for selecting date and/or time */\n dateTimeOptions?: DateTimeInput;\n /** Phone input field */\n phoneInputOptions?: PhoneInput;\n /** Dropdown based component for selecting date */\n dateInputOptions?: DateInput;\n /** Field for selecting time */\n timeInputOptions?: TimeInput;\n /** Calendar type component for selecting date */\n datePickerOptions?: DatePicker;\n /** Dropdown for selecting services */\n servicesDropdownOptions?: ServicesDropdown;\n /** Password component settings. */\n passwordOptions?: Password;\n}\n\nexport interface InputField_Number\n extends InputField_NumberComponentTypeOptionsOneOf {\n /** Number value input field */\n numberInputOptions?: NumberInput;\n /** Rating value input field */\n ratingInputOptions?: RatingInput;\n /** Validation of field output value. */\n validation?: NumberType;\n /**\n * Component type of the number input field\n * @readonly\n */\n componentType?: NumberComponentTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface InputField_NumberComponentTypeOptionsOneOf {\n /** Number value input field */\n numberInputOptions?: NumberInput;\n /** Rating value input field */\n ratingInputOptions?: RatingInput;\n}\n\nexport interface _Boolean extends _BooleanComponentTypeOptionsOneOf {\n /** Checkbox input field */\n checkboxOptions?: Checkbox;\n /** Validation of field output value. */\n validation?: BooleanType;\n /**\n * Component type of the boolean input field\n * @readonly\n */\n componentType?: BooleanComponentTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface _BooleanComponentTypeOptionsOneOf {\n /** Checkbox input field */\n checkboxOptions?: Checkbox;\n}\n\nexport interface _Array extends _ArrayComponentTypeOptionsOneOf {\n /** Checkbox group input field */\n checkboxGroupOptions?: CheckboxGroup;\n /** Tags input field */\n tagsOptions?: Tags;\n /** Validation of array type. */\n validation?: ArrayType;\n /**\n * Component type of the array input field\n * @readonly\n */\n componentType?: ArrayComponentTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface _ArrayComponentTypeOptionsOneOf {\n /** Checkbox group input field */\n checkboxGroupOptions?: CheckboxGroup;\n /** Tags input field */\n tagsOptions?: Tags;\n}\n\nexport interface _Object {\n /** Validation of object type. */\n validation?: ObjectType;\n}\n\nexport interface WixFile extends WixFileComponentTypeOptionsOneOf {\n /** File upload input field */\n fileUploadOptions?: FileUpload;\n /** Signature input field */\n signatureOptions?: Signature;\n /**\n * Component type of the array input field\n * @readonly\n */\n componentType?: WixFileComponentTypeWithLiterals;\n /** Validation of field type. */\n validation?: FileType;\n}\n\n/** @oneof */\nexport interface WixFileComponentTypeOptionsOneOf {\n /** File upload input field */\n fileUploadOptions?: FileUpload;\n /** Signature input field */\n signatureOptions?: Signature;\n}\n\nexport interface Payment extends PaymentComponentTypeOptionsOneOf {\n /** Checkbox group input field. */\n checkboxGroupOptions?: ProductCheckboxGroup;\n /** Donation input field. */\n donationInputOptions?: DonationInput;\n /** Payment input field. */\n paymentInputOptions?: PaymentInput;\n /** Fixed payment field. */\n fixedPaymentOptions?: FixedPayment;\n /**\n * Component type of the payment input field.\n * @readonly\n */\n componentType?: PaymentComponentTypeWithLiterals;\n /** Validation of payment type. */\n validation?: PaymentType;\n}\n\n/** @oneof */\nexport interface PaymentComponentTypeOptionsOneOf {\n /** Checkbox group input field. */\n checkboxGroupOptions?: ProductCheckboxGroup;\n /** Donation input field. */\n donationInputOptions?: DonationInput;\n /** Payment input field. */\n paymentInputOptions?: PaymentInput;\n /** Fixed payment field. */\n fixedPaymentOptions?: FixedPayment;\n}\n\nexport interface Address extends AddressComponentTypeOptionsOneOf {\n /** Multiline address input field. */\n multilineAddressOptions?: MultilineAddress;\n /**\n * Component type of the multiline address field.\n * @readonly\n */\n componentType?: AddressComponentTypeWithLiterals;\n /** Validation of multiline address field output value. */\n validation?: MultilineAddressValidation;\n}\n\n/** @oneof */\nexport interface AddressComponentTypeOptionsOneOf {\n /** Multiline address input field. */\n multilineAddressOptions?: MultilineAddress;\n}\n\nexport interface Scheduling extends SchedulingComponentTypeOptionsOneOf {\n /** Appointment input field */\n appointmentOptions?: Appointment;\n /**\n * Component type of the scheduling input field\n * @readonly\n */\n componentType?: SchedulingComponentTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SchedulingComponentTypeOptionsOneOf {\n /** Appointment input field */\n appointmentOptions?: Appointment;\n}\n\nexport interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {\n /** Component displaying rich content */\n richContentOptions?: RichContentOptions;\n /** Page navigation component resolving as navigation or submit buttons */\n pageNavigationOptions?: PageNavigationOptions;\n /** Type of the display field */\n displayFieldType?: DisplayFieldTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DisplayFieldDisplayFieldTypeOptionsOneOf {\n /** Component displaying rich content */\n richContentOptions?: RichContentOptions;\n /** Page navigation component resolving as navigation or submit buttons */\n pageNavigationOptions?: PageNavigationOptions;\n}\n\nexport enum DisplayFieldType {\n UNKNOWN_FIELD_TYPE = 'UNKNOWN_FIELD_TYPE',\n RICH_CONTENT = 'RICH_CONTENT',\n PAGE_NAVIGATION = 'PAGE_NAVIGATION',\n LOGIN_BAR = 'LOGIN_BAR',\n}\n\n/** @enumType */\nexport type DisplayFieldTypeWithLiterals =\n | DisplayFieldType\n | 'UNKNOWN_FIELD_TYPE'\n | 'RICH_CONTENT'\n | 'PAGE_NAVIGATION'\n | 'LOGIN_BAR';\n\nexport interface RichContentOptions {\n /** Content of the header */\n richContent?: RichContent;\n /** Number of paragraphs visible. Other part is hidden under expandable section. If not provided all text visible. */\n maxShownParagraphs?: number | null;\n}\n\nexport interface PageNavigationOptions {\n /**\n * When button is not on last page it behaves as switch between pages page, text of label to go to next page.\n * @maxLength 65\n */\n nextPageText?: string | null;\n /**\n * When button is not on last page it behaves as switch between pages page, text of label to go to previous page.\n * @maxLength 65\n */\n previousPageText?: string | null;\n /**\n * Text on the button when button is submitting a form\n * @maxLength 65\n */\n submitText?: string | null;\n}\n\nexport interface Step {\n /**\n * Step ID.\n * @format GUID\n * @immutable\n */\n _id?: string;\n /**\n * Name of the step.\n * @maxLength 200\n */\n name?: string | null;\n /** Is step hidden */\n hidden?: boolean;\n /** Form step properties */\n layout?: FormLayout;\n}\n\nexport interface FormLayout {\n /** Layout for large break point. */\n large?: BreakPoint;\n /** Layout for medium break point. */\n medium?: BreakPoint;\n /** Layout for small break point. */\n small?: BreakPoint;\n}\n\nexport interface BreakPoint {\n /**\n * Description of layouts for items.\n * @maxSize 500\n */\n items?: ItemLayout[];\n /** Amount of columns of layout grid. */\n columns?: number | null;\n /** Row height of layout grid. */\n rowHeight?: number | null;\n /** Description of elements margins. */\n margin?: Margin;\n /** Description of elements paddings. */\n padding?: Margin;\n /**\n * Sections of the layout, which allow manage fields\n * @maxSize 100\n */\n sections?: BreakPointSection[];\n}\n\nexport interface ItemLayout extends ItemLayoutItemOneOf {\n /**\n * Form field reference id.\n * @format GUID\n */\n fieldId?: string;\n /** Group info, defining that this item is a group of multiple fields */\n group?: Group;\n /** Horizontal coordinate in the grid. */\n row?: number | null;\n /** Vertical coordinate in the grid. */\n column?: number | null;\n /** Height. */\n width?: number | null;\n /** Width. */\n height?: number | null;\n}\n\n/** @oneof */\nexport interface ItemLayoutItemOneOf {\n /**\n * Form field reference id.\n * @format GUID\n */\n fieldId?: string;\n /** Group info, defining that this item is a group of multiple fields */\n group?: Group;\n}\n\nexport interface Group {\n /**\n * Field group reference id.\n * @format GUID\n */\n groupId?: string;\n /**\n * Description of layouts for items.\n * @minSize 1\n * @maxSize 500\n */\n items?: ItemLayout[];\n}\n\nexport interface Margin {\n /** Horizontal value. */\n horizontal?: number | null;\n /** Vertical value. */\n vertical?: number | null;\n}\n\nexport interface BreakPointSection {\n /**\n * Id of the section\n * @format GUID\n * @minLength 1\n */\n _id?: string;\n /** Horizontal coordinate in the grid. */\n row?: number | null;\n /**\n * A list of field identifiers that are permitted to be placed within a section.\n * The section will only accept fields with IDs specified in this list.\n * If the section encounters the $new key within the list,\n * it allows the inclusion of fields not explicitly listed,\n * enabling dynamic addition of new fields.\n * @maxSize 100\n * @maxLength 100\n */\n allowedFieldIds?: string[];\n}\n\nexport interface V2Rule {\n /**\n * Id of the rule\n * @format GUID\n * @immutable\n */\n _id?: string;\n /** Rule on which item properties or layouts will be changed. */\n expression?: ConditionNode;\n /**\n * Form items with defined properties that will be\n * changed when given condition is resolved to true.\n * @maxSize 500\n */\n overrides?: FormOverride[];\n /**\n * Name of the rule\n * @maxLength 200\n */\n name?: string | null;\n}\n\n/** Enum for different types of changeable properties. */\nexport enum ChangeableProperty {\n /** Unknown property type. */\n UNKNOWN = 'UNKNOWN',\n /** Required property type. */\n REQUIRED = 'REQUIRED',\n /** Hidden property type. */\n HIDDEN = 'HIDDEN',\n /** Allowed values property type. */\n ALLOWED_VALUES = 'ALLOWED_VALUES',\n}\n\n/** @enumType */\nexport type ChangeablePropertyWithLiterals =\n | ChangeableProperty\n | 'UNKNOWN'\n | 'REQUIRED'\n | 'HIDDEN'\n | 'ALLOWED_VALUES';\n\nexport interface RequiredOptions {\n /** Value of required property */\n value?: boolean;\n}\n\nexport interface HiddenOptions {\n /** Value of hidden property */\n value?: boolean;\n}\n\nexport interface AllowedValuesOptions {\n /**\n * Allowed values\n * @maxSize 300\n * @maxLength 200\n */\n value?: string[];\n}\n\nexport enum OverrideEntityType {\n UNKNOWN = 'UNKNOWN',\n FIELD = 'FIELD',\n}\n\n/** @enumType */\nexport type OverrideEntityTypeWithLiterals =\n | OverrideEntityType\n | 'UNKNOWN'\n | 'FIELD';\n\nexport interface FormOverrideFieldOverride\n extends FormOverrideFieldOverridePropertyTypeOptionsOneOf {\n /** Required property overrides */\n requiredOptions?: RequiredOptions;\n /** Hidden property overrides */\n hiddenOptions?: HiddenOptions;\n /** Allowed values property overrides */\n allowedValuesOptions?: AllowedValuesOptions;\n /**\n * Overridden entity id\n * @immutable\n * @format GUID\n */\n fieldId?: string;\n /** Form entity properties path with new value, that will be changed on condition. */\n propertyType?: ChangeablePropertyWithLiterals;\n}\n\n/** @oneof */\nexport interface FormOverrideFieldOverridePropertyTypeOptionsOneOf {\n /** Required property overrides */\n requiredOptions?: RequiredOptions;\n /** Hidden property overrides */\n hiddenOptions?: HiddenOptions;\n /** Allowed values property overrides */\n allowedValuesOptions?: AllowedValuesOptions;\n}\n\nexport interface ConditionNode extends ConditionNodeNodeOneOf {\n /** A compound condition that requires all conditions to be true. */\n and?: AndCondition;\n /** A compound condition that requires at least one condition to be true. */\n or?: OrCondition;\n /** A single condition in the rule. */\n condition?: V2Condition;\n}\n\n/** @oneof */\nexport interface ConditionNodeNodeOneOf {\n /** A compound condition that requires all conditions to be true. */\n and?: AndCondition;\n /** A compound condition that requires at least one condition to be true. */\n or?: OrCondition;\n /** A single condition in the rule. */\n condition?: V2Condition;\n}\n\nexport interface AndCondition {\n /**\n * The list of conditions that must all be true.\n * @minSize 1\n * @maxSize 100\n */\n conditions?: ConditionNode[];\n}\n\nexport interface OrCondition {\n /**\n * The list of conditions where at least one must be true.\n * @minSize 1\n * @maxSize 100\n */\n conditions?: ConditionNode[];\n}\n\nexport interface V2Condition {\n /**\n * The property name to be evaluated, supports dot notation for nested properties.\n * @maxLength 100\n */\n fact?: string;\n /** The operator to use for comparison. */\n operator?: OperatorWithLiterals;\n /**\n * The value to compare against.\n * @maxLength 500\n */\n value?: string;\n}\n\nexport enum Operator {\n UNKNOWN = 'UNKNOWN',\n EQUAL = 'EQUAL',\n NOT_EQUAL = 'NOT_EQUAL',\n EMPTY = 'EMPTY',\n NOT_EMPTY = 'NOT_EMPTY',\n CONTAINS = 'CONTAINS',\n NOT_CONTAINS = 'NOT_CONTAINS',\n LESS_THAN = 'LESS_THAN',\n LESS_THAN_OR_EQUALS = 'LESS_THAN_OR_EQUALS',\n GREATER_THAN = 'GREATER_THAN',\n GREATER_THAN_OR_EQUALS = 'GREATER_THAN_OR_EQUALS',\n BEFORE = 'BEFORE',\n BEFORE_OR_EQUAL = 'BEFORE_OR_EQUAL',\n AFTER = 'AFTER',\n AFTER_OR_EQUAL = 'AFTER_OR_EQUAL',\n BETWEEN = 'BETWEEN',\n ANY = 'ANY',\n ARRAY_EQUAL = 'ARRAY_EQUAL',\n ARRAY_NOT_EQUAL = 'ARRAY_NOT_EQUAL',\n CHECKED = 'CHECKED',\n NOT_CHECKED = 'NOT_CHECKED',\n IN = 'IN',\n NOT_IN = 'NOT_IN',\n IS_DATE_OLDER_THAN = 'IS_DATE_OLDER_THAN',\n IS_DATE_OLDER_THAN_OR_EQUAL = 'IS_DATE_OLDER_THAN_OR_EQUAL',\n IS_DATE_NEWER_THAN = 'IS_DATE_NEWER_THAN',\n IS_DATE_NEWER_THAN_OR_EQUAL = 'IS_DATE_NEWER_THAN_OR_EQUAL',\n}\n\n/** @enumType */\nexport type OperatorWithLiterals =\n | Operator\n | 'UNKNOWN'\n | 'EQUAL'\n | 'NOT_EQUAL'\n | 'EMPTY'\n | 'NOT_EMPTY'\n | 'CONTAINS'\n | 'NOT_CONTAINS'\n | 'LESS_THAN'\n | 'LESS_THAN_OR_EQUALS'\n | 'GREATER_THAN'\n | 'GREATER_THAN_OR_EQUALS'\n | 'BEFORE'\n | 'BEFORE_OR_EQUAL'\n | 'AFTER'\n | 'AFTER_OR_EQUAL'\n | 'BETWEEN'\n | 'ANY'\n | 'ARRAY_EQUAL'\n | 'ARRAY_NOT_EQUAL'\n | 'CHECKED'\n | 'NOT_CHECKED'\n | 'IN'\n | 'NOT_IN'\n | 'IS_DATE_OLDER_THAN'\n | 'IS_DATE_OLDER_THAN_OR_EQUAL'\n | 'IS_DATE_NEWER_THAN'\n | 'IS_DATE_NEWER_THAN_OR_EQUAL';\n\nexport interface FormOverride extends FormOverrideEntityTypeOptionsOneOf {\n /** Field override properties. */\n fieldOptions?: FormOverrideFieldOverride;\n /**\n * Override entity type.\n * @immutable\n */\n entityType?: OverrideEntityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface FormOverrideEntityTypeOptionsOneOf {\n /** Field override properties. */\n fieldOptions?: FormOverrideFieldOverride;\n}\n\nexport interface SubmitSettings\n extends SubmitSettingsSubmitSuccessActionOptionsOneOf {\n /** Options for showing a thank you message after submission. */\n thankYouMessageOptions?: ThankYouMessageOptions;\n /** Options for redirecting to a URL after submission. */\n redirectOptions?: RedirectOptions;\n /** Action that is triggered after a successful form submission. */\n submitSuccessAction?: SubmitSuccessActionWithLiterals;\n}\n\n/** @oneof */\nexport interface SubmitSettingsSubmitSuccessActionOptionsOneOf {\n /** Options for showing a thank you message after submission. */\n thankYouMessageOptions?: ThankYouMessageOptions;\n /** Options for redirecting to a URL after submission. */\n redirectOptions?: RedirectOptions;\n}\n\nexport enum Target {\n /** Unknown target. */\n UNKNOWN_TARGET = 'UNKNOWN_TARGET',\n /** Open in the same browser tab. */\n SELF = 'SELF',\n /** Open in a new browser tab. */\n BLANK = 'BLANK',\n}\n\n/** @enumType */\nexport type TargetWithLiterals = Target | 'UNKNOWN_TARGET' | 'SELF' | 'BLANK';\n\nexport enum SubmitSuccessAction {\n /** Unknown submit success action. */\n UNKNOWN_SUBMIT_SUCCESS_ACTION = 'UNKNOWN_SUBMIT_SUCCESS_ACTION',\n /** No action will be taken after submission. */\n NO_ACTION = 'NO_ACTION',\n /** A thank you message will be shown after submission. */\n THANK_YOU_MESSAGE = 'THANK_YOU_MESSAGE',\n /** The user will be redirected to a URL after submission. */\n REDIRECT = 'REDIRECT',\n}\n\n/** @enumType */\nexport type SubmitSuccessActionWithLiterals =\n | SubmitSuccessAction\n | 'UNKNOWN_SUBMIT_SUCCESS_ACTION'\n | 'NO_ACTION'\n | 'THANK_YOU_MESSAGE'\n | 'REDIRECT';\n\nexport interface ThankYouMessageOptions {\n /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */\n durationInSeconds?: number | null;\n /** The message shown after form submission. */\n richContent?: RichContent;\n}\n\nexport interface RedirectOptions {\n /**\n * The URL to which the user should be redirected after a successful form submission.\n * @maxLength 2000\n */\n redirectUrl?: string | null;\n /** How the URL should be opened. */\n target?: TargetWithLiterals;\n}\n\nexport enum TemplateType {\n UNKNOWN = 'UNKNOWN',\n /** a template, which can be extended by a site specific form with custom properties */\n EXTENDABLE = 'EXTENDABLE',\n /** a template, from which a demo form is created */\n DEMO = 'DEMO',\n /**\n * a form input, having more than one field.\n * E.g. address (country, state, street, postal code), or phone number (country code, number)\n */\n FORM_INPUT = 'FORM_INPUT',\n}\n\n/** @enumType */\nexport type TemplateTypeWithLiterals =\n | TemplateType\n | 'UNKNOWN'\n | 'EXTENDABLE'\n | 'DEMO'\n | 'FORM_INPUT';\n\nexport interface ExtensionDetails {\n /** Allow user to add/remove custom field, not present in template */\n addCustomFields?: AddCustomFields;\n /** Allow user to override properties of already existing template fields */\n overrideTemplateFields?: OverrideTemplateFields;\n /** Allow user to delete specific fields */\n deleteTemplateFields?: DeleteTemplateFields;\n}\n\nexport enum CustomFieldsType {\n /** Allow user to add/remove any custom field, not present in template */\n ANY = 'ANY',\n}\n\n/** @enumType */\nexport type CustomFieldsTypeWithLiterals = CustomFieldsType | 'ANY';\n\nexport enum EditableProperties {\n UNKNOWN = 'UNKNOWN',\n /** Change property responsible for field requirement */\n REQUIRED = 'REQUIRED',\n /** Change property responsible for field visibility */\n HIDDEN = 'HIDDEN',\n /** Change property of field label */\n LABEL = 'LABEL',\n /** Change property of field placeholder */\n PLACEHOLDER = 'PLACEHOLDER',\n /** Change property of field description */\n DESCRIPTION = 'DESCRIPTION',\n /**\n * Change property of validation specifying max/min boundaries for input value\n * maxLength/minLength for string, max/min for number.\n */\n INPUT_VALUE_LIMITS = 'INPUT_VALUE_LIMITS',\n /** Change property responsible for field default value */\n DEFAULT_VALUE = 'DEFAULT_VALUE',\n}\n\n/** @enumType */\nexport type EditablePropertiesWithLiterals =\n | EditableProperties\n | 'UNKNOWN'\n | 'REQUIRED'\n | 'HIDDEN'\n | 'LABEL'\n | 'PLACEHOLDER'\n | 'DESCRIPTION'\n | 'INPUT_VALUE_LIMITS'\n | 'DEFAULT_VALUE';\n\nexport interface EditableFields {\n /**\n * List of editable properties for field\n * @maxSize 10\n */\n properties?: EditablePropertiesWithLiterals[];\n}\n\nexport interface AddCustomFields {\n /** Field types which can be added */\n fieldType?: CustomFieldsTypeWithLiterals;\n}\n\nexport interface OverrideTemplateFields {\n /** Editable properties by field id. */\n editableFields?: Record<string, EditableFields>;\n}\n\nexport interface DeleteTemplateFields {\n /**\n * List of ids, of fields which can be deleted\n * @format GUID\n * @maxSize 100\n */\n deletableFieldIds?: string[];\n}\n\nexport interface FieldGroup {\n /**\n * Id of group, on layout\n * @format GUID\n */\n _id?: string;\n /**\n * Label of group\n * @maxLength 350\n */\n label?: string | null;\n}\n\nexport interface RequiredIndicatorProperties {\n /** Required indicator. */\n requiredIndicator?: RequiredIndicatorWithLiterals;\n /** Required indicator placement. */\n requiredIndicatorPlacement?: RequiredIndicatorPlacementWithLiterals;\n}\n\nexport enum RequiredIndicator {\n /** Unknown required indicator. */\n UNKNOWN_INDICATOR = 'UNKNOWN_INDICATOR',\n /** Asterisk (*). */\n ASTERISK = 'ASTERISK',\n /** Text (default: \"Required\"). */\n TEXT = 'TEXT',\n /** None. */\n NONE = 'NONE',\n}\n\n/** @enumType */\nexport type RequiredIndicatorWithLiterals =\n | RequiredIndicator\n | 'UNKNOWN_INDICATOR'\n | 'ASTERISK'\n | 'TEXT'\n | 'NONE';\n\nexport enum RequiredIndicatorPlacement {\n /** Unknown required indicator placement. */\n UNKNOWN_PLACEMENT = 'UNKNOWN_PLACEMENT',\n /** After field title. */\n AFTER_FIELD_TITLE = 'AFTER_FIELD_TITLE',\n /** Before field title. */\n BEFORE_FIELD_TITLE = 'BEFORE_FIELD_TITLE',\n}\n\n/** @enumType */\nexport type RequiredIndicatorPlacementWithLiterals =\n | RequiredIndicatorPlacement\n | 'UNKNOWN_PLACEMENT'\n | 'AFTER_FIELD_TITLE'\n | 'BEFORE_FIELD_TITLE';\n\n/** Describes a setting group of a notification */\nexport interface NotificationContent {\n single?: SingleContent;\n grouped?: GroupedContent;\n}\n\n/** notification content. */\nexport interface SingleContent {\n /** Title. */\n title?: string | null;\n /** Text that appears in the nofication. */\n message?: string;\n /** Action that can be triggered in the notification. */\n action?: string | null;\n}\n\n/** notification content. */\nexport interface GroupedContent {\n /** Title. */\n title?: string | null;\n /** Message. */\n message?: string;\n /** Action. */\n action?: string | null;\n}\n\n/** Describes topic of a notification */\nexport interface BroadcastList {\n /** @maxSize 20 */\n params?: Param[];\n}\n\nexport interface Param {\n _id?: string;\n displayName?: string;\n}\n\nexport interface PayoutsProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n}\n\n/** Configuration for ReviewsEntityCatalogProvider */\nexport interface ReviewsEntityCatalogProviderConfig {\n /** URI where the SPI Implementer is deployed */\n uriConfig?: SpiBaseUri;\n /**\n * Namespace of catalog provider\n * @maxLength 100\n */\n namespace?: string;\n /** Flag that indicates if verified reviews are enabled */\n verifiedReviewsEnabled?: boolean;\n}\n\nexport interface VeloPublishPipelineTaskProviderConfig {\n /** URI where the SPI Implementer is deployed */\n baseUri?: SpiBaseUri;\n /**\n * The Velo Task name\n * @maxSize 100\n */\n implementerTasksNames?: WixCodePublishTaskNameWithLiterals[];\n}\n\nexport enum WixCodePublishTaskName {\n /** unknown */\n UNKNOWN = 'UNKNOWN',\n /** user code bundle */\n USER_CODE_BUNDLE = 'USER_CODE_BUNDLE',\n /** exported functions analysis */\n EXPORTED_FUNCTIONS_ANALYSIS = 'EXPORTED_FUNCTIONS_ANALYSIS',\n /** imported namespaces analysis */\n IMPORTED_NAMESPACES_ANALYSIS = 'IMPORTED_NAMESPACES_ANALYSIS',\n /** page details analysis */\n PAGE_DETAILS_ANALYSIS = 'PAGE_DETAILS_ANALYSIS',\n /** user code validation */\n USER_CODE_VALIDATION = 'USER_CODE_VALIDATION',\n /** code packages dependencies registration */\n CODE_PACKAGES_REGISTRATION = 'CODE_PACKAGES_REGISTRATION',\n}\n\n/** @enumType */\nexport type WixCodePublishTaskNameWithLiterals =\n | WixCodePublishTaskName\n | 'UNKNOWN'\n | 'USER_CODE_BUNDLE'\n | 'EXPORTED_FUNCTIONS_ANALYSIS'\n | 'IMPORTED_NAMESPACES_ANALYSIS'\n | 'PAGE_DETAILS_ANALYSIS'\n | 'USER_CODE_VALIDATION'\n | 'CODE_PACKAGES_REGISTRATION';\n\nexport interface FunctionsShopPriceSpiConfig {\n /** Uri config */\n uriConfig?: SpiBaseUri;\n /**\n * function shop id\n * @format GUID\n */\n functionShopId?: string | null;\n /** Namespace */\n namespace?: Namespace;\n /**\n * Repeated namespace case\n * @maxSize 100\n */\n namespaces?: Namespace[];\n /**\n * String name\n * @maxLength 100\n */\n shopName?: string | null;\n /** Simple double */\n shopNumber?: number | null;\n}\n\nexport interface Namespace {\n /**\n * Namespace name\n * @maxLength 100\n */\n name?: string | null;\n /**\n * Additional function shop id\n * @format GUID\n */\n functionShopId?: string | null;\n}\n\n/**\n * A component that describes a Function\n * Design is highly influenced by business schema api\n */\nexport interface _Function {\n /**\n * Function method definitions\n * @maxSize 100\n */\n definitions?: FunctionDefinition[];\n /** Function configuration */\n configuration?: Configuration;\n /** Function description */\n description?: Description;\n}\n\nexport interface Input {\n /**\n * Schema definition: https://json-schema.org/draft/2020-12/schema\n * Protobuf does not support `$` variables -- cannot define the json-schema in protobuf\n */\n schema?: Record<string, any> | null;\n /** UI definition */\n ui?: Record<string, any> | null;\n /**\n * Input display description\n * @maxLength 100\n */\n displayDescription?: string | null;\n /** Builder SPI */\n builderSpi?: BuilderSpi;\n}\n\nexport interface BuilderSpi {\n /**\n * SPI url called from Function Builder\n * @maxLength 1000\n */\n baseUri?: string | null;\n /** Whether SPI supports appending Input Schema dynamically */\n dynamicSchemaFetchingEnabled?: boolean | null;\n}\n\nexport interface Output {\n /**\n * Schema definition: https://json-schema.org/draft/2020-12/schema\n * Protobuf does not support `$` variables -- cannot define the json-schema in protobuf\n */\n schema?: Record<string, any> | null;\n /** UI definition */\n ui?: Record<string, any> | null;\n /** Defined state */\n defined?: State;\n /** Empty state */\n empty?: State;\n}\n\nexport interface State {\n /**\n * State description\n * @maxLength 100\n */\n description?: string | null;\n}\n\nexport interface Spi {\n /**\n * SPI fqdn\n * @maxLength 200\n */\n fqdn?: string | null;\n /**\n * Configuration based on dev center SPI component configuration\n * Schema definition: https://json-schema.org/draft/2020-12/schema\n */\n schema?: Record<string, any> | null;\n /** UI definition */\n ui?: Record<string, any> | null;\n}\n\nexport interface CustomInitialPreset {\n /**\n * Custom initial function template extension id\n * @format GUID\n */\n functionTemplateExtensionId?: string | null;\n /** Indicates whether the custom initial preset with a custom function template is enabled; if false, the blank function template is used */\n enabled?: boolean | null;\n}\n\n/**\n * Function definition\n * IMPORTANT! Initial product will support only single function definition\n */\nexport interface FunctionDefinition {\n /**\n * Method\n * @maxLength 255\n */\n method?: string;\n /** Function input. */\n input?: Input;\n /** Function output. */\n output?: Output;\n /**\n * @format GUID\n * @readonly\n */\n triggerId?: string | null;\n}\n\nexport interface Configuration {\n /** Function can be implemented multiple times on single site */\n multipleInstancesAllowed?: boolean | null;\n /** Spi configuration */\n spi?: Spi;\n /** The custom initial preset to use when building a function from scratch */\n customInitialPreset?: CustomInitialPreset;\n}\n\nexport interface Description {\n /** @maxLength 600 */\n aboutDescription?: string | null;\n /**\n * Description of how it works\n * @maxLength 1000\n */\n howItWorksDescription?: string | null;\n /**\n * Description of the outcome\n * @maxLength 600\n */\n outcomeDescription?: string | null;\n /** Representative image */\n representativeImage?: string;\n /**\n * Title of the builderless function template selection modal\n * @maxLength 50\n */\n builderlessTemplateSelectionModalTitle?: string | null;\n /**\n * Subtitle of the builderless function template selection modal\n * @maxLength 200\n */\n builderlessTemplateSelectionModalSubtitle?: string | null;\n}\n\nexport interface CheckoutContentSPIConfig {\n /**\n * Base URI where the endpoints are called. Wix eCommerce appends the endpoint path to the base URI.\n * @minLength 1\n * @maxLength 1000\n */\n deploymentUri?: string;\n /**\n * Text to display in place of the \"Continue shopping\" link.\n * @maxLength 30\n */\n continueShoppingLink?: string | null;\n /**\n * Text to display in place of the \"Order summary\" title.\n * @minLength 1\n * @maxLength 30\n */\n orderSummary?: string | null;\n /**\n * Text to display in place of the \"Customer details\" title.\n * @minLength 1\n * @maxLength 30\n */\n customerDetails?: string | null;\n /**\n * Text to display in place of the \"Review and place order\" title.\n * @minLength 1\n * @maxLength 50\n */\n reviewAndPlaceOrder?: string | null;\n /**\n * Text to display in place of the \"Place order\" button.\n * @minLength 1\n * @maxLength 50\n */\n placeOrderButton?: string | null;\n /**\n * Text to display in place of the \"Place order & pay\" button.\n * @minLength 1\n * @maxLength 50\n */\n placeOrderPayButton?: string | null;\n}\n\nexport interface V2CommunicationChannelConfiguration {\n /**\n * The channel provider URI that will be called in runtime\n * @maxLength 2000\n */\n deploymentUri?: string;\n /** The main configuration of the channel */\n config?: ChannelChannelConfiguration;\n /** States whether or not specific methods were implemented by the provider in order to know whether to call them in runtime */\n implementedMethods?: ChannelImplementedMethods;\n}\n\nexport interface ChannelChannelConfiguration\n extends ChannelChannelConfigurationMessagingConfigOneOf {\n /** Direct messaging configuration */\n directMessagingConfig?: DmDirectMessageConfig;\n /** Email messaging configuration */\n emailConfig?: EmailEmailMessageConfig;\n /** Sms messaging configuration */\n smsConfig?: SmsSmsMessageConfig;\n /**\n * kebab-case channel identifier. Allows the provider to register multiple channels with the same provider app.\n * @minLength 1\n * @maxLength 50\n */\n channelKey?: string;\n /** The type of the communication channel */\n type?: ChannelConfigurationChannelTypeWithLiterals;\n /** Specific provider branding parameters for the channel */\n branding?: ChannelChannelBranding;\n /**\n * Indicates if the channel is HIPAA compliant\n * @readonly\n */\n hipaaCompliant?: boolean;\n}\n\n/** @oneof */\nexport interface ChannelChannelConfigurationMessagingConfigOneOf {\n /** Direct messaging configuration */\n directMessagingConfig?: DmDirectMessageConfig;\n /** Email messaging configuration */\n emailConfig?: EmailEmailMessageConfig;\n /** Sms messaging configuration */\n smsConfig?: SmsSmsMessageConfig;\n}\n\n/** The type of the communication channel */\nexport enum ChannelConfigurationChannelType {\n UNKNOWN_CHANNEL_TYPE = 'UNKNOWN_CHANNEL_TYPE',\n DIRECT_MESSAGING = 'DIRECT_MESSAGING',\n EMAIL = 'EMAIL',\n SMS = 'SMS',\n}\n\n/** @enumType */\nexport type ChannelConfigurationChannelTypeWithLiterals =\n | ChannelConfigurationChannelType\n | 'UNKNOWN_CHANNEL_TYPE'\n | 'DIRECT_MESSAGING'\n | 'EMAIL'\n | 'SMS';\n\nexport interface DmDirectMessageConfig {\n /**\n * Direct message types accepted by the provider.\n * Only supported types will be sent to the provider.\n * If the provider supports all message types, this field can be empty.\n * @maxSize 100\n */\n acceptedMessageTypes?: AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals[];\n /** Supported media types (mime types) and sizes */\n mediaCapabilities?: ChannelMediaCapabilities;\n /** Defines whether or not sending messages will be available for recipients without contact Id */\n allowAnonymousRecipients?: boolean;\n /**\n * TODO: we might consider changing/removing this field on next phases due to a strong dependency on Wix live site\n * Indicates whether or not the channel requires a live Wix website for a proper end to end channel functionality,\n * (for example, a live site is required for chat use case)\n */\n requireLiveSite?: boolean;\n}\n\n/** 'TEXT' type is assumed to be always supported, hence not explicitly annotated. */\nexport enum AcceptedMessageTypesAcceptedDirectMessageType {\n UNKNOWN_DIRECT_MESSAGE_TYPE = 'UNKNOWN_DIRECT_MESSAGE_TYPE',\n MEDIA = 'MEDIA',\n CARD = 'CARD',\n MINIMAL = 'MINIMAL',\n FORM = 'FORM',\n SYSTEM = 'SYSTEM',\n}\n\n/** @enumType */\nexport type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals =\n | AcceptedMessageTypesAcceptedDirectMessageType\n | 'UNKNOWN_DIRECT_MESSAGE_TYPE'\n | 'MEDIA'\n | 'CARD'\n | 'MINIMAL'\n | 'FORM'\n | 'SYSTEM';\n\nexport interface ChannelMediaCapabilities {\n /** When marked as true, 'supported_media_types' will be ignored. */\n allMediaTypes?: boolean;\n /** Maximal file size in bytes of a single file in a message */\n maxFileSizeInBytes?: number | null;\n /**\n * List for supported media MIME types. Used when allMediaTypes is set to `false`\n * Allowed MIME types must be according to the format as described here:\n * https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types\n * @maxSize 50\n * @maxLength 255\n */\n supportedMediaTypes?: string[];\n}\n\nexport interface EmailEmailMessageConfig {\n /** Supported media types (mime types) and sizes */\n mediaCapabilities?: ChannelMediaCapabilities;\n /** Maximal size in bytes of total media items in a message. */\n maxTotalFilesSizeInBytes?: number | null;\n}\n\nexport interface SmsSmsMessageConfig {\n /**\n * SMS message types accepted by the provider. Only supported types will be sent to the provider.\n * @minSize 1\n * @maxSize 100\n */\n acceptedMessageTypes?: AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals[];\n /** Supported media types (mime types) and sizes */\n mediaCapabilities?: ChannelMediaCapabilities;\n /** Optional - maximum sms message length in characters, if not given, will be unlimited */\n maxCharacters?: string | null;\n}\n\nexport enum AcceptedMessageTypesAcceptedSmsMessageType {\n UNKNOWN_SMS_MESSAGE_TYPE = 'UNKNOWN_SMS_MESSAGE_TYPE',\n SMS = 'SMS',\n MMS = 'MMS',\n}\n\n/** @enumType */\nexport type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals =\n | AcceptedMessageTypesAcceptedSmsMessageType\n | 'UNKNOWN_SMS_MESSAGE_TYPE'\n | 'SMS'\n | 'MMS';\n\nexport interface ChannelChannelBranding {\n /**\n * The name of the channel, e.g. `Facebook` / `SMS`\n * @minLength 1\n * @maxLength 100\n */\n displayName?: string;\n /**\n * The name of the channel provider (e.g. Wix, Meta, Google)\n * @minLength 1\n * @maxLength 100\n */\n providerName?: string;\n /**\n * The description of the channel\n * @minLength 1\n * @maxLength 500\n */\n description?: string | null;\n /** Relevant brand icons */\n brandIcons?: ChannelBrandIcons;\n}\n\n/** Brand icons required for correct channel integration */\nexport interface ChannelBrandIcons {\n /** Channel branding vector Icon */\n vectorImage?: UpstreamWixCommonImage;\n /** Channel branding Black & White Icon */\n bwOutlineVectorImage?: UpstreamWixCommonImage;\n}\n\nexport interface UpstreamWixCommonImage {\n /**\n * WixMedia image ID.\n * @maxLength 2000\n */\n _id?: string | null;\n /**\n * Image URL.\n * @format WEB_URL\n * @readonly\n */\n url?: string | null;\n}\n\nexport interface ChannelImplementedMethods {\n /** Implements getQuotaInfo */\n getQuotaInfo?: boolean;\n /** Implements validateSendingEligibility */\n validateSendingEligibility?: boolean;\n /** Implements updateMessageStatus */\n updateMessageStatus?: boolean;\n}\n\nexport interface WebhookComponentData {\n /**\n * The slug of the webhook, as in webhooks catalog\n * @minLength 1\n * @maxLength 128\n */\n webhookSlug?: string;\n /**\n * The callback url to be called when the webhook is triggered\n * @format WEB_URL\n */\n callbackUrl?: string;\n}\n\n/** A component that holds topology data for an application. */\nexport interface TopologyComponentData {\n /**\n * Records of topology\n * @format WEB_URL\n */\n topology?: Record<string, string>;\n}\n\nexport interface CustomRewardProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the custom reward\n * @maxLength 100\n */\n rewardName?: string;\n /**\n * User-friendly description of the custom reward\n * @maxLength 500\n */\n rewardDescription?: string;\n}\n\n/** Wix Users can choose to create a \"Function\" component according to predefined recipes for smoother user experience */\nexport interface FunctionRecipe {\n /**\n * Description of the function recipe\n * @maxLength 300\n */\n displayDescription?: string;\n /**\n * Meta site from which template function was taken to create a recipe\n * @format GUID\n */\n originMetaSiteId?: string;\n /**\n * Function in the meta site which was used as a template to create a recipe\n * @format GUID\n */\n originFunctionId?: string;\n /**\n * \"Function\" component/extension that this recipe is about\n * @format GUID\n */\n functionExtensionId?: string;\n /**\n * Created function id\n * @format GUID\n */\n functionId?: string | null;\n /**\n * Builderless flow form template id\n * @format GUID\n */\n formTemplateExtensionId?: string | null;\n}\n\n/** A backoffice component for external url`s */\nexport interface BackOfficeExternalUrl {\n /**\n * the external url to be opened\n * @maxLength 250\n */\n url?: string | null;\n /** general component data */\n metaData?: ComponentMetaData;\n /**\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n iconKey?: string | null;\n}\n\nexport interface FactorConfig {\n /** the base URI where all the methods are deployed. */\n uriConfig?: SpiBaseUri;\n /** the type of the factor */\n factorType?: FactorTypeWithLiterals;\n /** whether the factor supports verify without enrolling first */\n supportsVerifyWithoutEnroll?: boolean;\n /** whether the factor implementer requires enrollment */\n enrollRequired?: boolean;\n}\n\nexport enum FactorType {\n /** Unknown factor type. */\n UNKNOWN_FACTOR_TYPE = 'UNKNOWN_FACTOR_TYPE',\n /** Requires a password. */\n PASSWORD = 'PASSWORD',\n /** Requires a code sent via SMS. */\n SMS = 'SMS',\n /** Requires a code sent by phone call. */\n CALL = 'CALL',\n /** Requires a code sent by email. */\n EMAIL = 'EMAIL',\n /** Requires authentication via an authenticator app. */\n TOTP = 'TOTP',\n /** Requires authentication via a push notification. */\n PUSH = 'PUSH',\n /** Requires authentication via WebAuthn/passkey. */\n WEBAUTHN = 'WEBAUTHN',\n /** Requires a recovery code. */\n RECOVERY_CODE = 'RECOVERY_CODE',\n}\n\n/** @enumType */\nexport type FactorTypeWithLiterals =\n | FactorType\n | 'UNKNOWN_FACTOR_TYPE'\n | 'PASSWORD'\n | 'SMS'\n | 'CALL'\n | 'EMAIL'\n | 'TOTP'\n | 'PUSH'\n | 'WEBAUTHN'\n | 'RECOVERY_CODE';\n\nexport interface DiscountsSPIConfig {\n /**\n * Base URI where the endpoints are called.\n * Wix eCommerce appends the endpoint path to the base URI.\n * @minLength 1\n * @maxLength 200\n */\n deploymentUri?: string;\n}\n\nexport interface VeloCustomCss {\n /**\n * The grid id containing the css\n * @format GUID\n */\n gridId?: string;\n /**\n * Path to the css file in the grid\n * @minLength 2\n * @maxLength 255\n */\n filePath?: string;\n}\n\nexport interface AdaptiveComponentProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * identifier for SPI implementer\n * @format GUID\n */\n implementerConfigId?: string;\n}\n\nexport interface ActionSpiConfig {\n /**\n * The deployment uri of the assistant action\n * @maxLength 1000\n */\n deploymentUri?: string;\n /**\n * The name of the assistant action\n * @minLength 1\n * @maxLength 100\n */\n actionName?: string;\n}\n\nexport interface InventorySpiConfig {\n /**\n * Base URI where the endpoints are called.\n * Wix eCommerce appends the endpoint path to the base URI.\n * @minLength 1\n * @maxLength 200\n */\n deploymentUri?: string;\n}\n\nexport interface Monitoring extends MonitoringOptionsOneOf {\n /** Sentry provider options */\n sentryOptions?: SentryOptions;\n /** Panorama provider options */\n panoramaOptions?: PanoramaOptions;\n /** Provider type */\n type?: MonitoringTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface MonitoringOptionsOneOf {\n /** Sentry provider options */\n sentryOptions?: SentryOptions;\n /** Panorama provider options */\n panoramaOptions?: PanoramaOptions;\n}\n\nexport interface SentryOptions {\n /**\n * The sentry DSN\n * @minLength 1\n * @maxLength 255\n */\n dsn?: string;\n}\n\nexport interface Project {\n /**\n * Group id (e.g. com.wixpress)\n * @minLength 1\n * @maxLength 100\n */\n groupId?: string;\n /**\n * Short artifact id\n * @minLength 1\n * @maxLength 100\n */\n artifactId?: string;\n /**\n * Build fingerprint\n * @minLength 1\n * @maxLength 100\n */\n fingerprint?: string;\n}\n\nexport enum MonitoringType {\n UNKNOWN_PROVIDER = 'UNKNOWN_PROVIDER',\n SENTRY = 'SENTRY',\n PANORAMA = 'PANORAMA',\n}\n\n/** @enumType */\nexport type MonitoringTypeWithLiterals =\n | MonitoringType\n | 'UNKNOWN_PROVIDER'\n | 'SENTRY'\n | 'PANORAMA';\n\nexport interface PanoramaOptions {\n /** Sentry config */\n sentry?: SentryOptions;\n /** Project config */\n project?: Project;\n}\n\nexport interface PluginConfig {\n /** @maxLength 1000 */\n deploymentUri?: string;\n /**\n * has to be unique across all plugins\n * @maxLength 1024\n */\n pluginName?: string;\n /**\n * has to be unique across all plugins\n * @maxLength 1024\n */\n pluginDisplayName?: string;\n startingEnforcementDate?: Date | null;\n importanceLevel?: ImportanceLevelWithLiterals;\n /** @maxSize 100 */\n constraints?: Constraint[];\n}\n\nexport interface Consequence {\n escalation?: EscalationWithLiterals;\n /** days to resolve the violation */\n daysToResolve?: number | null;\n}\n\nexport enum Escalation {\n BREAK_BUILD = 'BREAK_BUILD',\n BLOCK_ROLLOUT = 'BLOCK_ROLLOUT',\n BLOCK_FUTURE_ROLLOUT = 'BLOCK_FUTURE_ROLLOUT',\n OPEN_BUG_SLA = 'OPEN_BUG_SLA',\n /** only shows violation in papi-dashboard */\n VISIBILITY = 'VISIBILITY',\n}\n\n/** @enumType */\nexport type EscalationWithLiterals =\n | Escalation\n | 'BREAK_BUILD'\n | 'BLOCK_ROLLOUT'\n | 'BLOCK_FUTURE_ROLLOUT'\n | 'OPEN_BUG_SLA'\n | 'VISIBILITY';\n\nexport enum ImportanceLevel {\n LOW = 'LOW',\n MEDIUM = 'MEDIUM',\n HIGH = 'HIGH',\n}\n\n/** @enumType */\nexport type ImportanceLevelWithLiterals =\n | ImportanceLevel\n | 'LOW'\n | 'MEDIUM'\n | 'HIGH';\n\nexport interface Constraint {\n /** @maxLength 1024 */\n _id?: string;\n /** @maxSize 10 */\n consequences?: Consequence[];\n /**\n * link to FAQ docs\n * @maxLength 1024\n */\n faqLink?: string;\n /**\n * override the default cta for the constraint\n * @maxLength 1024\n */\n overrideCtaMessage?: string | null;\n}\n\nexport interface UnifiedLightbox {\n /** Base info of component by shared logic of unified components */\n base?: BaseInfo;\n /** Settings for how the lightbox integrates with the editor */\n editorSettings?: LightboxEditorSettings;\n /** Options for how to close the lightbox component */\n closeOptions?: LightboxCloseOptions;\n /** Content of a lightbox */\n content?: LightboxContent;\n}\n\nexport interface LightboxEditorSettings {\n /** Basic editor settings that are relevant to all page types */\n base?: PageEditorSettings;\n}\n\nexport interface LightboxCloseOptions {\n /** If true or unset, the lightbox will be closed when overlay is clicked */\n closeOnOverlayClick?: boolean | null;\n /** Show an X button that closes the lightbox component */\n showXButton?: boolean | null;\n}\n\nexport interface LightboxContent {\n /**\n * Widgets to add as content in a lightbox\n * @maxSize 1\n */\n widgets?: PageWidgetAsContent[];\n}\n\nexport interface PageWidgetAsContent {\n /**\n * GUID of widget to use as content of page\n * @format GUID\n */\n widgetGuid?: string;\n /** The preset should be used */\n preset?: MainPresets;\n /** Mark widget as essential for the existence of the app (force to delete the whole app) */\n essential?: boolean;\n}\n\nexport interface FormSpiExtensionConfig {\n /**\n * Deployment URI where the endpoints are called. Wix Forms appends the endpoint path to the deployment URI.\n * For example, to call the Override Form endpoint at `https://my-form.com/v4/forms/override`,\n * the `deploymentUri` you provide here is `https://my-form.com/`.\n */\n deploymentUri?: SpiBaseUri;\n /**\n * The app which the form belongs to. For example, the namespace for the Wix Forms app is `wix.form_app.form`.\n *\n * Call `Get Form` to retrieve the namespace.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /**\n * The IDs of the specific forms that will trigger the defined methods when a form is requested on the API.\n * This field is optional. If empty, requests for all forms will trigger the methods.\n * @maxSize 100\n * @format GUID\n */\n formIds?: string[];\n}\n\nexport interface SchemaGroup {\n /**\n * SchemaGroup ID. Field is read only.\n * @format GUID\n * @readonly\n */\n _id?: string | null;\n /**\n * Date and time the SchemaGroup was created. Field is read only.\n * @readonly\n */\n _createdDate?: Date | null;\n /**\n * Date and time the SchemaGroup was last updated. Field is read only.\n * @readonly\n */\n _updatedDate?: Date | null;\n /**\n * Name of the SchemaGroup. Max symbol length is 100. Field is translatable.\n * @maxLength 100\n */\n name?: string | null;\n /**\n * List of Schemas.\n * @maxSize 50\n */\n groupElements?: SchemaGroupElement[];\n}\n\nexport interface SchemaGroupElement {\n /**\n * ID of the Schema. If the schema group uses an element from another existing group, the reference id to that group has to be provided here.\n * @format GUID\n */\n _id?: string | null;\n /** Position of the schema group element. */\n position?: number | null;\n}\n\nexport interface Panel extends PanelSelectedContentTypeOneOf {\n /**\n * The URL to the html page of the panel in case of iFrame\n * @format WEB_URL\n */\n url?: string;\n /**\n * The title of the panel\n * @minLength 1\n * @maxLength 200\n */\n displayName?: string;\n /** Optional: The size of the panel (not affecting overlay panel mode) */\n size?: PanelSize;\n /** The selected panel content type */\n contentType?: PanelContentTypeWithLiterals;\n /** The selected panel mode - draggable is default */\n panelMode?: PanelModeWithLiterals;\n}\n\n/** @oneof */\nexport interface PanelSelectedContentTypeOneOf {\n /**\n * The URL to the html page of the panel in case of iFrame\n * @format WEB_URL\n */\n url?: string;\n}\n\nexport interface PanelSize {\n /**\n * height of the panel in px\n * @min 150\n */\n height?: number | null;\n /** width of the panel */\n width?: WidthWithLiterals;\n}\n\nexport enum Width {\n SMALL = 'SMALL',\n MEDIUM = 'MEDIUM',\n LARGE = 'LARGE',\n}\n\n/** @enumType */\nexport type WidthWithLiterals = Width | 'SMALL' | 'MEDIUM' | 'LARGE';\n\n/** Represents the options for panel content types */\nexport enum PanelContentType {\n UNKNOWN_PanelContentType = 'UNKNOWN_PanelContentType',\n url = 'url',\n}\n\n/** @enumType */\nexport type PanelContentTypeWithLiterals =\n | PanelContentType\n | 'UNKNOWN_PanelContentType'\n | 'url';\n\n/** Represents the information needed for code panels */\nexport interface CodePanel {\n /**\n * The url for the panel code\n * @format WEB_URL\n */\n bundleUrl?: string;\n /**\n * The url for the panel css\n * @format WEB_URL\n */\n cssUrl?: string | null;\n}\n\n/** Represents the options for panel display modes */\nexport enum PanelMode {\n /** default - A non-blocking panel that allows interaction with the underlying interface */\n UNKNOWN_PanelMode = 'UNKNOWN_PanelMode',\n /** A blocking panel that overlays, typically used for modal-like experiences */\n overlay = 'overlay',\n}\n\n/** @enumType */\nexport type PanelModeWithLiterals = PanelMode | 'UNKNOWN_PanelMode' | 'overlay';\n\nexport interface PurchaseValidationsConfig {\n /** deployment URI */\n uriConfig?: SpiBaseUri;\n}\n\nexport interface BrowserStorage {\n /** The type of browser storage used */\n type?: StorageTypeWithLiterals;\n /**\n * The name of the storage item in the browser (as can be seen in DEV Console)\n * @maxLength 100\n */\n name?: string;\n /**\n * A human friendly description of the storage item and what it is used for.\n * > This is for allowing users to display consent pages on their sites with this information.\n * @minLength 10\n * @maxLength 500\n */\n description?: string;\n /**\n * The consent category to which the storage item belongs.\n * This defines when this storage item is allowed to be used in a visitor session.\n * > This is legally important for complying with EU privacy law, so make sure to define this carefully.\n */\n consentCategory?: ConsentCategoryWithLiterals;\n /** Where this storage item will be set in the browser (User domain or the App domain) */\n domain?: StorageDomainWithLiterals;\n}\n\n/** The type of storage we are declaring */\nexport enum StorageType {\n UNKNOWN_STORAGE_TYPE = 'UNKNOWN_STORAGE_TYPE',\n /** A [cookie](https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie) we store in the browser */\n COOKIE = 'COOKIE',\n /** A [localStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage) item that persists across tabs in the domain */\n LOCALSTORAGE = 'LOCALSTORAGE',\n /** A [sessionStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage) item for a specific tab in the domain */\n SESSIONSTORAGE = 'SESSIONSTORAGE',\n /** An item in [IndexDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) */\n INDEXDB = 'INDEXDB',\n}\n\n/** @enumType */\nexport type StorageTypeWithLiterals =\n | StorageType\n | 'UNKNOWN_STORAGE_TYPE'\n | 'COOKIE'\n | 'LOCALSTORAGE'\n | 'SESSIONSTORAGE'\n | 'INDEXDB';\n\n/** The category for EU and US Privacy Law classification */\nexport enum ConsentCategory {\n /** This is an invalid value, you must classify your storage item. */\n UNKNOWN_CATEGORY = 'UNKNOWN_CATEGORY',\n /** Is required for your app to function and does not use the data to do any tracking. */\n essential = 'essential',\n /** Related to performanc and functional additions that are niceities but the app can work without. */\n functional = 'functional',\n /** Related to analytics and may including tracking sessions and vistors to the site. */\n analytics = 'analytics',\n /** Related to advertising, upselling and marketing data collected to be used. */\n advertising = 'advertising',\n}\n\n/** @enumType */\nexport type ConsentCategoryWithLiterals =\n | ConsentCategory\n | 'UNKNOWN_CATEGORY'\n | 'essential'\n | 'functional'\n | 'analytics'\n | 'advertising';\n\nexport enum StorageDomain {\n UNKNOWN_STORAGE_DOMAIN = 'UNKNOWN_STORAGE_DOMAIN',\n /** Storing the values in the domain of the website the app is installed on */\n SITE_DOMAIN = 'SITE_DOMAIN',\n /** Storing the values in the Wix Backoffice domain */\n WIX_DOMAIN = 'WIX_DOMAIN',\n /** Storing the values as 3rd party in the application domain */\n APP_DOMAIN = 'APP_DOMAIN',\n}\n\n/** @enumType */\nexport type StorageDomainWithLiterals =\n | StorageDomain\n | 'UNKNOWN_STORAGE_DOMAIN'\n | 'SITE_DOMAIN'\n | 'WIX_DOMAIN'\n | 'APP_DOMAIN';\n\n/** Describe SDK module definition for an app */\nexport interface SdkDefinition {\n /**\n * The SDK module name, for example \"ecom\"\n * @maxLength 100\n */\n sdkModuleName?: string;\n}\n\n/** A container (slot) that can be extended by other applications (e.g. widget plugin) */\nexport interface SiteWidgetSlot {\n /** A container (slot) common properties. */\n slotData?: SlotData;\n /**\n * Name of the slot. Displayed to users when selecting a Plugin Placement, Must be unique within its parent component.\n * @minLength 2\n * @maxLength 50\n */\n slotKeyName?: string | null;\n}\n\n/** Configuration for the event validation provider. */\nexport interface EventValidationProviderConfig {\n /** The base URI to reach the provider's service. */\n baseUri?: SpiBaseUri;\n /**\n * List of validation targets specifying the methods to validate and optional filters.\n * @minSize 1\n * @maxSize 10\n */\n validationTargets?: ValidationTarget[];\n}\n\nexport interface ValidationTarget {\n /** The method to validate. */\n method?: MethodWithLiterals;\n /**\n * Optional WQL filter applied to the events for validation.\n * Only events matching this filter will be validated.\n * Supported event fields:\n * - `appId`\n */\n filter?: Record<string, any> | null;\n}\n\nexport enum Method {\n /** Validate an event before creation. */\n CREATE = 'CREATE',\n /** Validate an event before update. */\n UPDATE = 'UPDATE',\n /** Validate an event before cancel. */\n CANCEL = 'CANCEL',\n}\n\n/** @enumType */\nexport type MethodWithLiterals = Method | 'CREATE' | 'UPDATE' | 'CANCEL';\n\n/** Client Service is a broad category encompassing any value, function, or feature that an application needs. A service is typically a class with a narrow, well-defined purpose. A component is one type of class that can use DI. */\nexport interface ClientSideService {\n /**\n * ID of a UI service.\n * @format GUID\n */\n _id?: string;\n /**\n * Exported name of a service\n * @minLength 2\n * @maxLength 100\n */\n exportedName?: string;\n /** Definition of a service */\n definition?: Definition;\n /** Implementation metadata of a service, a service with no runtime definition will be considered as an atom. */\n implementation?: Implementation;\n}\n\nexport interface Npm {\n /**\n * Npm package name\n * @minLength 2\n * @maxLength 100\n */\n packageName?: string;\n /**\n * Npm semantic version\n * @minLength 2\n * @maxLength 100\n */\n packageVersion?: string;\n /**\n * Package entry point, default to main entry\n * @minLength 2\n * @maxLength 100\n */\n specifier?: string | null;\n /**\n * Imported name, default to default import\n * @minLength 2\n * @maxLength 100\n */\n importedName?: string | null;\n}\n\nexport interface Definition {\n /** Reflecting a service definition using npm package */\n npm?: Npm;\n}\n\nexport interface Implementation {\n /** Reflecting a service runtime using npm package */\n npm?: Npm;\n /**\n * Bundle URL\n * @format WEB_URL\n */\n bundleUrl?: string | null;\n /**\n * reference to other client side services\n * @format GUID\n * @maxSize 100\n */\n serviceDependencies?: string[];\n}\n\nexport interface BillingSettingsConfig {\n /**\n * name of the subscription type was it appears in relevant screens in Billing Platform\n * @minLength 1\n * @maxLength 200\n */\n subscriptionType?: string;\n /** whether subscriptions end date can be updated */\n allowSubscriptionExtension?: boolean;\n /** whether subscription can be canceled not only immediately, but also at end of billing cycle by turning off auto-renew */\n allowAutoRenewOff?: boolean;\n /** whether changes can be made to the payment schedule and under what conditions. */\n paymentDateModification?: PaymentDateModification;\n}\n\nexport interface PaymentDateModification {\n /**\n * Indicates whether the merchant can modify the payment date.\n * A value of true permits changes, while false means the payment date cannot be altered.\n */\n allowed?: boolean;\n /**\n * Specifies if adjustments to the price are enabled when the payment date is modified.\n * If true, changing the date to an earlier one results in proration,\n * while changing it to a later date incurs an extra charge.\n * Irrelevant if allowed is false.\n */\n priceAdjustmentEnabled?: boolean;\n}\n\n/** A component holding configuration of Patterns Wizard */\nexport interface PatternsWizard {\n /** Configuration of the patterns wizard */\n config?: Record<string, any> | null;\n}\n\nexport interface ApplicationProfileProviderConfig {\n /** URI where the SPI implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /** Implemented methods */\n implementedMethods?: V1ImplementedMethods;\n /** default application profile */\n defaultApplicationProfile?: ApplicationProfile;\n}\n\nexport interface V1ImplementedMethods {\n /** Implement QueryApplicationProfiles */\n getMyApplicationProfile?: boolean;\n}\n\nexport interface ApplicationProfile {\n /**\n * name\n * @maxLength 200\n * @readonly\n */\n name?: string | null;\n /**\n * image url\n * @format WEB_URL\n * @readonly\n */\n imageUrl?: string | null;\n}\n\n/** a translated TextToSpeech payload sent to UOU */\nexport interface TextToSpeechActionMessage {\n /**\n * Text-to-speech message body. Should be a valid SSML as string.\n * See https://www.w3.org/TR/speech-synthesis/\n * i.e. <speak>\\r\\nHi, testing text to speech.\\r\\n</speak>\n * i.e. <speak>\\r\\n<audio src=\\\"https://storage.googleapis.com/wix-restaurants/audio/beep.mp3\\\"/>\\r\\nA new order was received.\\r\\n</speak>\n * @minLength 1\n * @maxLength 5000\n */\n body?: string;\n}\n\nexport interface AudienceProviderConfig {\n /** notification preference filter SPI configuration */\n baseUri?: SpiBaseUri;\n /**\n * Provider key\n * @minLength 1\n * @maxLength 50\n */\n key?: string;\n /**\n * The name of the audience provider, e.g. `Blog Post Subscribers` / `Contacts Labels`\n * @minLength 1\n * @maxLength 100\n */\n displayName?: string;\n /** Type of participant. Each audience provider can support only one type of recipient */\n participantType?: ParticipantTypeWithLiterals;\n /** Standard json schema which describe the json the provider should get in the Resolve end point */\n inputSchema?: Record<string, any> | null;\n /**\n * Interface configuration\n * If empty default interface configuration will be auto generated based on the input schema\n */\n interfaceConfiguration?: InterfaceConfiguration;\n /** Specifying which optional methods are implemented. */\n implementedMethods?: ImplementedMethods;\n /**\n * Define the scopes which the provider audience is relevant\n * @maxSize 10\n */\n scopes?: ScopeWithLiterals[];\n}\n\nexport enum ParticipantType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n WIX_USER = 'WIX_USER',\n CONTACT = 'CONTACT',\n ANONYMOUS = 'ANONYMOUS',\n}\n\n/** @enumType */\nexport type ParticipantTypeWithLiterals =\n | ParticipantType\n | 'UNKNOWN_TYPE'\n | 'WIX_USER'\n | 'CONTACT'\n | 'ANONYMOUS';\n\nexport interface InterfaceConfiguration\n extends InterfaceConfigurationOfTypeOneOf {\n /** Should be filled if the provider implements its own custom UI */\n widgetComponentConfiguration?: WidgetComponent;\n /** Type of interface configuration */\n type?: InterfaceConfigurationTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface InterfaceConfigurationOfTypeOneOf {\n /** Should be filled if the provider implements its own custom UI */\n widgetComponentConfiguration?: WidgetComponent;\n}\n\nexport enum InterfaceConfigurationType {\n /** Widget component built by the provider */\n WIDGET_COMPONENT = 'WIDGET_COMPONENT',\n /** Item Selection, in case the provider implemented item selection component */\n ITEM_SELECTION = 'ITEM_SELECTION',\n}\n\n/** @enumType */\nexport type InterfaceConfigurationTypeWithLiterals =\n | InterfaceConfigurationType\n | 'WIDGET_COMPONENT'\n | 'ITEM_SELECTION';\n\nexport interface WidgetComponent {\n /**\n * widget component id\n * @format GUID\n */\n componentId?: string;\n}\n\nexport interface ItemSelection {\n /**\n * Item selection provider key\n * @minLength 1\n * @maxLength 100\n */\n providerKey?: string;\n /**\n * Mapping between item selection ids array to correlate input schema field\n * @minLength 1\n * @maxLength 25\n */\n schemaIdsFieldName?: string;\n}\n\nexport interface ImplementedMethods {\n /** Implements countParticipants */\n countParticipants?: boolean;\n}\n\nexport enum Scope {\n /** Provider audience is available only in scope of specific site */\n SPECIFIC_SITE = 'SPECIFIC_SITE',\n /** Provider audience is available only in scope of non specific site */\n NON_SPECIFIC_SITE = 'NON_SPECIFIC_SITE',\n}\n\n/** @enumType */\nexport type ScopeWithLiterals = Scope | 'SPECIFIC_SITE' | 'NON_SPECIFIC_SITE';\n\n/** Config for the Price SPI */\nexport interface PriceSPIConfig {\n /**\n * Pricing plan for which the SPI method should optionally apply\n * @format GUID\n */\n planId?: string;\n /** Required. Base URI where the endpoints are called. Wix appends the endpoint path to the base URI. */\n uriConfig?: SpiBaseUri;\n}\n\nexport interface StartDateLimitsSPIConfig {\n /** Base URI where the endpoints are called. Wix appends the endpoint path to the base URI. */\n baseUri?: SpiBaseUri;\n /**\n * Pricing plan for which the SPI method should apply\n * @format GUID\n */\n planId?: string;\n}\n\nexport interface StartDateRulesSPIConfig {\n /** Base URI where the endpoints are called. Wix appends the endpoint path to the base URI. */\n baseUri?: SpiBaseUri;\n /**\n * Pricing plan for which the SPI method should apply\n * @format GUID\n */\n planId?: string;\n}\n\nexport interface TicketReservationsSpiConfig {\n /** URI where the SPI Implementer is deployed. */\n baseUri?: SpiBaseUri;\n}\n\n/** Configuration for the dispute service plugin implementor */\nexport interface DisputeServicePluginConfig {\n /**\n * Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.\n * For example, to call the Accept Dispute endpoint at https://my-payments.com/disputes/v1/accept-dispute, the base URI you provide here is https://my-payments.com/disputes.\n */\n baseUri?: SpiBaseUri;\n}\n\n/** Config for the Fees SPI */\nexport interface FeesSPIConfig {\n /**\n * Pricing plan for which the SPI method should optionally apply\n * @format GUID\n */\n planId?: string;\n /** Required. Base URI where the endpoints are called. Wix appends the endpoint path to the base URI. */\n uriConfig?: SpiBaseUri;\n}\n\n/** The full model for an imported component set in DEV Center */\nexport interface EditorReactComponent {\n /**\n * The type of component to present in the Page tree, will be prefixed with AppSlug\n * @maxLength 100\n * @minLength 1\n */\n type?: string;\n /**\n * The public description of the component do display\n * @maxLength 300\n * @minLength 3\n */\n description?: string;\n /** List of component resources. This comprises any runtime code we need to load and execute for the component. */\n resources?: Resources;\n /** The configuration describing the component abilities and behaviors on the Editor stage */\n editorElement?: EditorElement;\n /** The installation settings of the component */\n installation?: InstallationInfo;\n}\n\nexport interface Resources {\n /** The bundle we will load and render in the browser in the site */\n client?: ClientResources;\n /**\n * An optional client definition of the component we will load and render in the editor, *it replaces the client bundle.*\n * The main use case is to control the live site component and enable different experiences in the editor.\n * For example, supporting `states` manipulation:\n * Show calendar in the editor\n * Open drop down in the editor\n */\n editor?: ClientResources;\n /** The bundle for SSR, should not include any DOM API references */\n server?: Resource;\n /** The optional component SDK to expose to Velo Users to interact with the component */\n sdk?: Resource;\n /** Details for how to load translations for the component */\n translations?: TranslationResources;\n /** The optional interactions configuration JSON file */\n interactions?: Resource;\n}\n\nexport interface ClientResources {\n /**\n * A URL to an ESM javascript bundle. It's default export should be the component\n * @format WEB_URL\n */\n componentUrl?: string;\n /**\n * A URL to the CSS file that is the default layout and style for the component\n * @format WEB_URL\n */\n cssUrl?: string | null;\n /**\n * A list of service dependencies required by the component, example: ['@wix/environment']\n * @maxLength 80\n * @maxSize 20\n * @deprecated A list of service dependencies required by the component, example: ['@wix/environment']\n * @replacedBy dependencies\n * @targetRemovalDate 2025-12-30\n */\n serviceDependencies?: string[];\n /**\n * A module specifier for the component’s react code.\n * @maxLength 100\n */\n moduleSpecifier?: string | null;\n /** Dependencies on services and contexts */\n dependencies?: EditorDependencies;\n}\n\nexport interface EditorDependencies {\n /**\n * A list of service dependencies required by the component, example: ['@wix/environment']\n * @maxLength 80\n * @maxSize 20\n */\n serviceDependencies?: string[];\n /**\n * Dependencies on context providers in order to work\n * @maxLength 80\n * @maxSize 20\n */\n contextDependencies?: string[];\n /**\n * Dependencies on components that we want as externals in our bundle, example: wixEditorElements.AppWidget\n * @maxLength 80\n * @maxSize 20\n */\n componentDependencies?: string[];\n}\n\nexport interface Resource {\n /**\n * A URL to an ESM javascript bundle\n * @format WEB_URL\n */\n url?: string;\n}\n\nexport interface TranslationResources {\n /**\n * The URL that we will add the language to for fetching translations, example: `https://somecdn.com/translations/`\n * @format WEB_URL\n */\n basePath?: string;\n /**\n * The list of supported languages according to the [ISO-639-1 specification](https://en.wikipedia.org/wiki/ISO_639-1)\n * @format LANGUAGE\n * @maxSize 37\n */\n languages?: string[];\n}\n\nexport interface EditorElement {\n /**\n * DOM Query selector for this element that we can use to find it when rendering it (preferably a className)\n * @minLength 4\n * @maxLength 300\n */\n selector?: string;\n /**\n * Human friendly name on the editor stage when the component is in interaction with the user\n * @maxLength 50\n */\n displayName?: string;\n /** data-api of this element, a map of data-items where the key is the data-item name and the value is the data-item definition. These will be manifested as `props` for the component */\n data?: Record<string, DataItem>;\n /** elements-map of this element, a map of inner-elements where the key is the element name and the value is the element definition */\n elements?: Record<string, ElementItem>;\n /** Native actions specified for the component */\n actions?: Actions;\n /** Custom actions specified for the component, allowing for flexibility beyond native actions */\n customActions?: Record<string, Action>;\n /** Component presets definition. Canonically useful for different layout or theming */\n presets?: Record<string, PresetItem>;\n /** Layout capabilities of the component */\n layout?: EditorElementLayout;\n /** The Archetype this component adheres to, to be used for classification by AI models */\n archetype?: ArchetypeWithLiterals;\n /** A map with definitions of states that this element can be edited in */\n states?: Record<string, ElementState>;\n /** Interactions of the component supports */\n interactions?: Interactions;\n /**\n * Display filters for the Element, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The Element is the first in line to affect the display, Preset and State are after it\n */\n displayFilters?: DisplayFilters;\n /** Display groups for the element, used to group elements in the editor for better UX */\n displayGroups?: Record<string, DisplayGroupItem>;\n /** A map of CSS properties that this element supports, where the key is the CSS property name and the value is the CSS property definition */\n cssProperties?: Record<string, CssPropertyItem>;\n /** A map of CSS properties that this element supports, where the key is the CSS property name and the value is the CSS property definition */\n cssCustomProperties?: Record<string, CssCustomPropertyItem>;\n /** A reference to a help article for this element */\n helpArticle?: HelpArticle;\n}\n\nexport interface DataItem extends DataItemSelectedDataTypeOneOf {\n /** An optional object to define limitations on the text input */\n text?: Text;\n /** A required list of options to supply to the users to choose from */\n textEnum?: TextEnum;\n /** An optional set of restrictions to apply to the number */\n number?: _Number;\n /** A required list of types we want to user to be able to specify, empty means all possible A11Y values */\n a11y?: A11y;\n /** A definition of what links should be supported */\n link?: Link;\n /** An array of a data type */\n arrayItems?: ArrayItems;\n /** A container in which to render another component */\n container?: ReactElementContainer;\n /** A definition of what rich text abilities should be supported */\n richText?: RichText;\n /** A definition of what images should be supported */\n image?: Image;\n /** A definition of what videos should be supported */\n video?: Video;\n /** A definition of what vector arts should be supported */\n vectorArt?: VectorArt;\n /** An definition of a nested data-object */\n data?: DataItems;\n /** A definition of a custom function */\n function?: EditorFunction;\n /** Defines the type of data we are configuring */\n dataType?: DataTypeWithLiterals;\n /**\n * Display name of this data item\n * @maxLength 100\n */\n displayName?: string | null;\n /** The default value of this data item (only for display purposes). */\n defaultValue?: any;\n /** Disables the ability to delete this data-item value in the Editor UI */\n disableDeletion?: boolean | null;\n}\n\n/** @oneof */\nexport interface DataItemSelectedDataTypeOneOf {\n /** An optional object to define limitations on the text input */\n text?: Text;\n /** A required list of options to supply to the users to choose from */\n textEnum?: TextEnum;\n /** An optional set of restrictions to apply to the number */\n number?: _Number;\n /** A required list of types we want to user to be able to specify, empty means all possible A11Y values */\n a11y?: A11y;\n /** A definition of what links should be supported */\n link?: Link;\n /** An array of a data type */\n arrayItems?: ArrayItems;\n /** A container in which to render another component */\n container?: ReactElementContainer;\n /** A definition of what rich text abilities should be supported */\n richText?: RichText;\n /** A definition of what images should be supported */\n image?: Image;\n /** A definition of what videos should be supported */\n video?: Video;\n /** A definition of what vector arts should be supported */\n vectorArt?: VectorArt;\n /** An definition of a nested data-object */\n data?: DataItems;\n /** A definition of a custom function */\n function?: EditorFunction;\n}\n\nexport enum DataType {\n UNKNOWN_DataType = 'UNKNOWN_DataType',\n /** A simple text value */\n text = 'text',\n /** A list of predefined textual values to choose from */\n textEnum = 'textEnum',\n /** Any number */\n number = 'number',\n /** true / false value */\n booleanValue = 'booleanValue',\n /** An object containing the selected A11Y fields chosen */\n a11y = 'a11y',\n /** A Wix Link object type */\n link = 'link',\n /** A Wix Image object type */\n image = 'image',\n /** A Wix Video object type */\n video = 'video',\n /** A Wix Sanitized Vector Art object */\n vectorArt = 'vectorArt',\n /** A Wix Audio object */\n audio = 'audio',\n /** DEPRECATED - use the `data` dataType instead. A [JSON Schema definition](https://json-schema.org/specification) the developer understands in his code (useful for complex props). Some limitation may apply. */\n schema = 'schema',\n /** Local date output ISO-8601 extended local date format (YYYY-MM-DD) */\n localDate = 'localDate',\n /** Local time output ISO-8601 extended local time format (hh:mm[:ss][.sss]) */\n localTime = 'localTime',\n /** Local Date Time output ISO-8601 extended local date-time format (YYYY-MM-DDThh:mm[:ss][.sss]) */\n localDateTime = 'localDateTime',\n /** a URL with scheme http or https */\n webUrl = 'webUrl',\n /** standard email address according to [RFC 5321, section 4.1.2](https://datatracker.ietf.org/doc/html/rfc5321#section-4.1.2) */\n email = 'email',\n /** a validation format designed to match phone numbers with a variety of common characters, including digits (0-9), spaces, parentheses, plus sign, hyphens, and periods */\n phone = 'phone',\n /** hostname according to IANA */\n hostname = 'hostname',\n /** A valid `regex` pattern supplied by the User */\n regex = 'regex',\n /** A unique identifier */\n guid = 'guid',\n /** a HTML text with css inline styling */\n richText = 'richText',\n /** A container place in the component that will be passed in as {children} or a function prop, depending on the case */\n container = 'container',\n /** An array type of data */\n arrayItems = 'arrayItems',\n /** selected `direction` for the component according to (HTML `dir` attribute)[https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/dir] */\n direction = 'direction',\n /** A list of menu-items */\n menuItems = 'menuItems',\n /** A complex data type that can be used to define a data structure, such as an object or a map */\n data = 'data',\n /** A custom function that can be used to call a function from a custom library */\n 'function' = 'function',\n /** Standard [onClick handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event), can also handle: `()=>void` */\n onClick = 'onClick',\n /** Standard input event [onChange](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) for text inputs, can also handle: `(value: string) => void` */\n onChange = 'onChange',\n /** Standard [onKeyPress handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keypress_event), can also handle: `(event: KeyboardEvent) => void` */\n onKeyPress = 'onKeyPress',\n /** Standard [onKeyUp handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keyup_event), can also handle: `(event: KeyboardEvent) => void` */\n onKeyUp = 'onKeyUp',\n /** Standard [onSubmit handler](https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit_event), can also handle: `() => void` */\n onSubmit = 'onSubmit',\n}\n\n/** @enumType */\nexport type DataTypeWithLiterals =\n | DataType\n | 'UNKNOWN_DataType'\n | 'text'\n | 'textEnum'\n | 'number'\n | 'booleanValue'\n | 'a11y'\n | 'link'\n | 'image'\n | 'video'\n | 'vectorArt'\n | 'audio'\n | 'schema'\n | 'localDate'\n | 'localTime'\n | 'localDateTime'\n | 'webUrl'\n | 'email'\n | 'phone'\n | 'hostname'\n | 'regex'\n | 'guid'\n | 'richText'\n | 'container'\n | 'arrayItems'\n | 'direction'\n | 'menuItems'\n | 'data'\n | 'function'\n | 'onClick'\n | 'onChange'\n | 'onKeyPress'\n | 'onKeyUp'\n | 'onSubmit';\n\nexport interface Text {\n /** Indicates maximum length allowed for the text */\n maxLength?: number | null;\n /** Indicates minimum length required for the text */\n minLength?: number | null;\n /**\n * A regex pattern that the text must comply with\n * @maxLength 100\n */\n pattern?: string | null;\n}\n\nexport interface TextEnum {\n /**\n * list of valid enum items\n * @maxSize 100\n */\n options?: Option[];\n}\n\nexport interface Option {\n /**\n * actual text value for this item\n * @maxLength 100\n */\n value?: string;\n /**\n * display name for this text item\n * @maxLength 100\n */\n displayName?: string;\n}\n\nexport interface _Number {\n /**\n * @deprecated\n * @replacedBy min\n * @targetRemovalDate 2025-11-30\n */\n minimum?: number | null;\n /**\n * Indicates minimum value required for the number\n * @format DECIMAL_VALUE\n */\n min?: string | null;\n /**\n * @deprecated\n * @replacedBy max\n * @targetRemovalDate 2025-11-30\n */\n maximum?: number | null;\n /**\n * Indicates maximum value allowed for the number\n * @format DECIMAL_VALUE\n */\n max?: string | null;\n /**\n * @deprecated\n * @replacedBy multiplier\n * @targetRemovalDate 2025-11-30\n */\n multipleOf?: number | null;\n /**\n * The multiplier for the number value\n * @format DECIMAL_VALUE\n */\n multiplier?: string | null;\n}\n\nexport interface A11y {\n /**\n * A collection of attributes that will be stated in the manifest\n * @maxSize 100\n */\n attributes?: A11yAttributesWithLiterals[];\n}\n\nexport enum A11yAttributes {\n Unknown_AriaAttributes = 'Unknown_AriaAttributes',\n /** The value used for tabIndex attribute */\n tabIndex = 'tabIndex',\n /** The value used for aria-level */\n ariaLevel = 'ariaLevel',\n /** The value used for aria-expanded */\n ariaExpanded = 'ariaExpanded',\n /** The value used for aria-disabled */\n ariaDisabled = 'ariaDisabled',\n /** The value used for aria-atomic */\n ariaAtomic = 'ariaAtomic',\n /** The value used for aria-hidden */\n ariaHidden = 'ariaHidden',\n /** The value used for aria-busy */\n ariaBusy = 'ariaBusy',\n /** Indicates if should add Multiline instructions to aria-label */\n multiline = 'multiline',\n /** Indicates if should add Autocomplete instructions to aria-label */\n ariaAutocomplete = 'ariaAutocomplete',\n /** The value used for aria-pressed */\n ariaPressed = 'ariaPressed',\n /** The value used for aria-haspopup */\n ariaHaspopup = 'ariaHaspopup',\n /** The value used for aria-relevant */\n ariaRelevant = 'ariaRelevant',\n /** The value used for role attribute */\n role = 'role',\n /** The value used for aria-live */\n ariaLive = 'ariaLive',\n /** The value used for aria-current */\n ariaCurrent = 'ariaCurrent',\n /** The text used for aria-label */\n ariaLabel = 'ariaLabel',\n /** The text used for aria-roledescription */\n ariaRoledescription = 'ariaRoledescription',\n /** The value used for aria-describedby */\n ariaDescribedby = 'ariaDescribedby',\n /** The value used for aria-labelledby */\n ariaLabelledby = 'ariaLabelledby',\n /** The text used for aria-errormessage */\n ariaErrormessage = 'ariaErrormessage',\n /** The text used for aria-owns */\n ariaOwns = 'ariaOwns',\n /** The text used for aria-controls */\n ariaControls = 'ariaControls',\n /** The HTML tag to use for the element */\n tag = 'tag',\n /** The value used for aria-multiline */\n ariaMultiline = 'ariaMultiline',\n /** The value used for aria-invalid */\n ariaInvalid = 'ariaInvalid',\n}\n\n/** @enumType */\nexport type A11yAttributesWithLiterals =\n | A11yAttributes\n | 'Unknown_AriaAttributes'\n | 'tabIndex'\n | 'ariaLevel'\n | 'ariaExpanded'\n | 'ariaDisabled'\n | 'ariaAtomic'\n | 'ariaHidden'\n | 'ariaBusy'\n | 'multiline'\n | 'ariaAutocomplete'\n | 'ariaPressed'\n | 'ariaHaspopup'\n | 'ariaRelevant'\n | 'role'\n | 'ariaLive'\n | 'ariaCurrent'\n | 'ariaLabel'\n | 'ariaRoledescription'\n | 'ariaDescribedby'\n | 'ariaLabelledby'\n | 'ariaErrormessage'\n | 'ariaOwns'\n | 'ariaControls'\n | 'tag'\n | 'ariaMultiline'\n | 'ariaInvalid';\n\nexport interface Link {\n /**\n * A collection of possible link types that the component supports. Only one of the types will make it to the component after input.\n * @maxSize 12\n */\n linkTypes?: LinkTypeWithLiterals[];\n}\n\nexport enum LinkType {\n UNKNOWN_LinkType = 'UNKNOWN_LinkType',\n /** A link to another website */\n externalLink = 'externalLink',\n /** A link to an item on the current page */\n anchorLink = 'anchorLink',\n /** A valid email link (`mailto:example@example.com`) */\n emailLink = 'emailLink',\n /** A valid phone link (`phone:11111111111`) */\n phoneLink = 'phoneLink',\n /** A link to a page in Wix that needs to be selected dynamically */\n dynamicPageLink = 'dynamicPageLink',\n /** A link to another page on the site */\n pageLink = 'pageLink',\n /** A link to open a whatsapp conversation */\n whatsAppLink = 'whatsAppLink',\n /** A link to a PDF file hosted by Wix */\n documentLink = 'documentLink',\n /** A link that opens a lightbox */\n popupLink = 'popupLink',\n /** A link that directs the user to an address on google maps */\n addressLink = 'addressLink',\n /** A link that scrolls to the top/bottom of the page */\n edgeAnchorLinks = 'edgeAnchorLinks',\n /** A link that directs the user to wix login dialog */\n loginToWixLink = 'loginToWixLink',\n}\n\n/** @enumType */\nexport type LinkTypeWithLiterals =\n | LinkType\n | 'UNKNOWN_LinkType'\n | 'externalLink'\n | 'anchorLink'\n | 'emailLink'\n | 'phoneLink'\n | 'dynamicPageLink'\n | 'pageLink'\n | 'whatsAppLink'\n | 'documentLink'\n | 'popupLink'\n | 'addressLink'\n | 'edgeAnchorLinks'\n | 'loginToWixLink';\n\n/** An array of data items or complex data types */\nexport interface ArrayItems extends ArrayItemsArrayDataOneOf {\n /** The definition of multiple data items in each item of the Array */\n data?: DataItems;\n /** For a single data type in the array */\n dataItem?: DataItem;\n /** The maximum size of the Array (there will be a size limit in the Storage as well) */\n maxSize?: number | null;\n}\n\n/** @oneof */\nexport interface ArrayItemsArrayDataOneOf {\n /** The definition of multiple data items in each item of the Array */\n data?: DataItems;\n /** For a single data type in the array */\n dataItem?: DataItem;\n}\n\nexport interface DataItems {\n /**\n * For an array of complex object types\n * Each item in the array, will contain all this data structure\n */\n items?: Record<string, DataItem>;\n}\n\n/**\n * A container is a place to add components to in the editor\n * There are a few different types of containers supported\n */\nexport interface ReactElementContainer\n extends ReactElementContainerSelectedContainerTypeOneOf {\n /** A container element that will be passed in as children, it is composed in the editor */\n simple?: SimpleContainer;\n /** A Slot for targeting slot implementors, gets the API implementation by the host (definition in DEV Center for both) */\n slot?: Slot;\n /** Placeholder for components targeting a specific area (definition in DEV Center) */\n placeholder?: PlaceHolder;\n /**\n * A DOM Selector that will allow us to target it in the editor\n * @minLength 2\n * @maxLength 100\n */\n selector?: string;\n /** The type of Container to be rendered */\n containerType?: ContainerTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ReactElementContainerSelectedContainerTypeOneOf {\n /** A container element that will be passed in as children, it is composed in the editor */\n simple?: SimpleContainer;\n /** A Slot for targeting slot implementors, gets the API implementation by the host (definition in DEV Center for both) */\n slot?: Slot;\n /** Placeholder for components targeting a specific area (definition in DEV Center) */\n placeholder?: PlaceHolder;\n}\n\nexport enum ContainerType {\n /** An undefined container type, is invalid */\n UNKNOWN_CONTAINER_TYPE = 'UNKNOWN_CONTAINER_TYPE',\n /** A simple container that can support adding and layouting elements in the editor */\n simple = 'simple',\n /** A slot declared by a component in DEV Center that allows integrations with a Props API from the host */\n slot = 'slot',\n /** A container to add elements targeting a specific product use case, exposed in DEV Center */\n placeholder = 'placeholder',\n /** A container that can be used to render a template multiple times */\n template = 'template',\n}\n\n/** @enumType */\nexport type ContainerTypeWithLiterals =\n | ContainerType\n | 'UNKNOWN_CONTAINER_TYPE'\n | 'simple'\n | 'slot'\n | 'placeholder'\n | 'template';\n\nexport interface SimpleContainer {\n /** Layout configuration for the container, can be used to configure the editing of the container and the layout. */\n layout?: ContainerLayout;\n /** Style configuration for the container, can be used to disable style properties, or change their display name. */\n style?: ContainerStyleOverrides;\n /** Behavior configuration for the container, can be used to disable selection of the container. */\n behaviors?: ContainerBehaviors;\n /**\n * An optional override of the display name of the container.\n * @maxLength 50\n */\n displayName?: string | null;\n}\n\nexport interface ContainerLayout {\n /** Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout. */\n resizeDirection?: ResizeDirectionWithLiterals;\n}\n\nexport enum ResizeDirection {\n /** Default value when direction is not specified */\n UNKNOWN_ResizeDirection = 'UNKNOWN_ResizeDirection',\n /** Component can only be resized horizontally */\n horizontal = 'horizontal',\n /** Component can only be resized vertically */\n vertical = 'vertical',\n /** Component can be resized both horizontally and vertically */\n horizontalAndVertical = 'horizontalAndVertical',\n /** Component maintains its aspect ratio while resizing */\n aspectRatio = 'aspectRatio',\n /** Component cannot be resized in any direction */\n none = 'none',\n}\n\n/** @enumType */\nexport type ResizeDirectionWithLiterals =\n | ResizeDirection\n | 'UNKNOWN_ResizeDirection'\n | 'horizontal'\n | 'vertical'\n | 'horizontalAndVertical'\n | 'aspectRatio'\n | 'none';\n\nexport interface ContainerStyleOverrides {\n /** The border style of the container, can be used to disable editing of the border, or change the display name. */\n border?: StyleItemOverrides;\n /** The border radius style of the container, can be used to disable editing of the border radius, or change the display name. */\n borderRadius?: StyleItemOverrides;\n /** The shadow style of the container, can be used to disable editing of the shadow, or change the display name. */\n shadow?: StyleItemOverrides;\n /** The background style of the container, can be used to disable editing of the background, or change the display name. */\n background?: StyleItemOverrides;\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface StyleItemOverrides {\n /** Disables the ability to edit this style-item */\n disableEditing?: boolean | null;\n /** Overrides the default value of this style-item */\n defaultValue?: any;\n /** Overrides the default values for the style-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n /**\n * Overrides Display displayName of this style-item\n * @maxLength 100\n */\n displayName?: string | null;\n}\n\nexport interface ContainerBehaviors {\n /** Whether the container should be selectable in the editor. */\n selectable?: boolean | null;\n}\n\nexport interface Slot {\n /**\n * The slot definition that this container should accept as defined in DEV Center\n * @format GUID\n */\n slotId?: string;\n}\n\nexport interface PlaceHolder {\n /**\n * The placeholder definition that this container should accept as defined in DEV Center\n * @format GUID\n */\n placeholderId?: string;\n}\n\n/** rich text data type allow manipulation of text with html & inline styles */\nexport interface RichText {\n /**\n * A collection of possible rich text abilities that the component supports. Only one of the types will make it to the component after input.\n * @maxSize 22\n */\n abilities?: RichTextAbilitiesWithLiterals[];\n}\n\nexport enum RichTextAbilities {\n UNKNOWN_RichTextAbilities = 'UNKNOWN_RichTextAbilities',\n /** selected theme font, also changing the html tag */\n font = 'font',\n /** font family of the text */\n fontFamily = 'fontFamily',\n /** font size of the text */\n fontSize = 'fontSize',\n /** italic / normal */\n fontStyle = 'fontStyle',\n /** bold / normal / 100-900 */\n fontWeight = 'fontWeight',\n /** underline / line-through */\n textDecoration = 'textDecoration',\n /** color of the text */\n color = 'color',\n /** background color of the text */\n backgroundColor = 'backgroundColor',\n /** letter spacing of the text */\n letterSpacing = 'letterSpacing',\n /** left / center / right / justify */\n textAlign = 'textAlign',\n /** rtl/ltr */\n direction = 'direction',\n /** indent of the text */\n marginStart = 'marginStart',\n /** outdent of the text */\n marginEnd = 'marginEnd',\n /** special data: */\n bulletedList = 'bulletedList',\n /** implemented with <ol> */\n numberedList = 'numberedList',\n /** h1,h2,h3,h4,h5,h6,p,blockquote */\n seoTag = 'seoTag',\n}\n\n/** @enumType */\nexport type RichTextAbilitiesWithLiterals =\n | RichTextAbilities\n | 'UNKNOWN_RichTextAbilities'\n | 'font'\n | 'fontFamily'\n | 'fontSize'\n | 'fontStyle'\n | 'fontWeight'\n | 'textDecoration'\n | 'color'\n | 'backgroundColor'\n | 'letterSpacing'\n | 'textAlign'\n | 'direction'\n | 'marginStart'\n | 'marginEnd'\n | 'bulletedList'\n | 'numberedList'\n | 'seoTag';\n\nexport interface Image {\n /** media manager categories to open media manager filtered by the component needs */\n category?: ImageCategoryTypesWithLiterals;\n}\n\n/** Categories to open media manager filtered by the component needs */\nexport enum ImageCategoryTypes {\n /** Default value when image category is not specified */\n UNKNOWN_CategoryName = 'UNKNOWN_CategoryName',\n /** Images - mapped to IMAGE */\n IMAGE = 'IMAGE',\n /** Background Images - mapped to BG_IMAGE */\n IMAGE_BACKGROUND = 'IMAGE_BACKGROUND',\n}\n\n/** @enumType */\nexport type ImageCategoryTypesWithLiterals =\n | ImageCategoryTypes\n | 'UNKNOWN_CategoryName'\n | 'IMAGE'\n | 'IMAGE_BACKGROUND';\n\nexport interface Video {\n /** media manager categories to open media manager filtered by the component needs */\n category?: VideoCategoryTypesWithLiterals;\n}\n\nexport enum VideoCategoryTypes {\n /** Default value when video category is not specified */\n UNKNOWN_VideoCategoryTypes = 'UNKNOWN_VideoCategoryTypes',\n /** Videos without transparency - mapped to VIDEO */\n VIDEO_OPAQUE = 'VIDEO_OPAQUE',\n}\n\n/** @enumType */\nexport type VideoCategoryTypesWithLiterals =\n | VideoCategoryTypes\n | 'UNKNOWN_VideoCategoryTypes'\n | 'VIDEO_OPAQUE';\n\nexport interface VectorArt {\n /** media manager categories to open media manager filtered by the component needs */\n category?: VectorArtCategoryTypesWithLiterals;\n}\n\nexport enum VectorArtCategoryTypes {\n /** Default value when vector art category is not specified */\n UNKNOWN_VectorArtCategoryTypes = 'UNKNOWN_VectorArtCategoryTypes',\n /** Vector Art (both basic and art shapes) - mapped to VECTOR_ART */\n SHAPE_ALL = 'SHAPE_ALL',\n /** Basic Shapes - mapped to SHAPE_BASIC */\n SHAPE_BASIC = 'SHAPE_BASIC',\n /** Vector Art Shapes - mapped to SHAPE_ART */\n SHAPE_ART = 'SHAPE_ART',\n /** Social Icons - deprecated use SHAPE_SOCIAL instead */\n ICON_SOCIAL = 'ICON_SOCIAL',\n /** Location Icons - mapped to SHAPE_LOCATION */\n SHAPE_LOCATION = 'SHAPE_LOCATION',\n /** Documents Icons - mapped to SHAPE_DOCUMENTS */\n SHAPE_DOCUMENTS = 'SHAPE_DOCUMENTS',\n /** Social Icons - mapped to SHAPE_SOCIAL from type SVG */\n SHAPE_SOCIAL = 'SHAPE_SOCIAL',\n /** Arrow Icons - mapped to SHAPE_ARROWS */\n SHAPE_ARROWS = 'SHAPE_ARROWS',\n}\n\n/** @enumType */\nexport type VectorArtCategoryTypesWithLiterals =\n | VectorArtCategoryTypes\n | 'UNKNOWN_VectorArtCategoryTypes'\n | 'SHAPE_ALL'\n | 'SHAPE_BASIC'\n | 'SHAPE_ART'\n | 'ICON_SOCIAL'\n | 'SHAPE_LOCATION'\n | 'SHAPE_DOCUMENTS'\n | 'SHAPE_SOCIAL'\n | 'SHAPE_ARROWS';\n\nexport interface EditorFunction {\n /**\n * The Parameters expected by the function, can be empty\n * @maxSize 10\n */\n parameters?: FunctionParameter[];\n /** The result of the function, can be empty for void return */\n returns?: FunctionReturnType;\n /** Whether the function returns a promise with the type of the result */\n async?: boolean | null;\n /**\n * The display name of the function for paneles\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * The description of the function for human readability\n * @maxLength 300\n */\n description?: string | null;\n}\n\nexport interface FunctionParameter\n extends FunctionParameterSelectedDataTypeOneOf {\n /** In case of an array */\n arrayItems?: FunctionParameterArrayItems;\n /** In case of a complex object */\n data?: FunctionParameterItems;\n /** In case of a function */\n function?: EditorFunction;\n /** The type of the Parameter, does not include containers */\n dataType?: DataTypeWithLiterals;\n /** Whether the Parameter is optional, limitations of Javascript apply, only the last parameters can be optional */\n optional?: boolean | null;\n /**\n * The display name of the Parameter for human readability\n * @maxLength 100\n */\n displayName?: string | null;\n /** @maxLength 100 */\n description?: string | null;\n}\n\n/** @oneof */\nexport interface FunctionParameterSelectedDataTypeOneOf {\n /** In case of an array */\n arrayItems?: FunctionParameterArrayItems;\n /** In case of a complex object */\n data?: FunctionParameterItems;\n /** In case of a function */\n function?: EditorFunction;\n}\n\n/** An array of data items or complex data types */\nexport interface FunctionParameterArrayItems\n extends FunctionParameterArrayItemsArrayDataOneOf {\n /** For a single data type in the array, including another array */\n item?: FunctionParameter;\n}\n\n/** @oneof */\nexport interface FunctionParameterArrayItemsArrayDataOneOf {\n /** For a single data type in the array, including another array */\n item?: FunctionParameter;\n}\n\nexport interface FunctionParameterItems {\n /**\n * For an array of complex object types\n * Each item in the array, will contain all this data structure\n */\n items?: Record<string, FunctionParameter>;\n}\n\nexport interface FunctionReturnType\n extends FunctionReturnTypeSelectedDataTypeOneOf {\n /** In case of an array */\n arrayItems?: FunctionParameterArrayItems;\n /** In case of a complex object */\n data?: FunctionParameterItems;\n /** The type of the return value, does not include containers */\n dataType?: DataTypeWithLiterals;\n /**\n * The display name of the return type for human readability\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * The description of the function return type for human readability\n * @maxLength 100\n */\n description?: string | null;\n}\n\n/** @oneof */\nexport interface FunctionReturnTypeSelectedDataTypeOneOf {\n /** In case of an array */\n arrayItems?: FunctionParameterArrayItems;\n /** In case of a complex object */\n data?: FunctionParameterItems;\n}\n\nexport interface ElementItem extends ElementItemSelectedElementTypeOneOf {\n /** An new element definition */\n inlineElement?: InlineElement;\n /** A reference to the used element with overrides */\n refElement?: RefElement;\n /** Defines the type of element we are configuring */\n elementType?: ElementTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ElementItemSelectedElementTypeOneOf {\n /** An new element definition */\n inlineElement?: InlineElement;\n /** A reference to the used element with overrides */\n refElement?: RefElement;\n}\n\nexport enum ElementType {\n UNKNOWN_ElementType = 'UNKNOWN_ElementType',\n /** An element that was written as part of the component */\n inlineElement = 'inlineElement',\n /** An element provided by the Wix ecosystem that we are reusing. These elements must exist in the Wix DEV Center. */\n refElement = 'refElement',\n}\n\n/** @enumType */\nexport type ElementTypeWithLiterals =\n | ElementType\n | 'UNKNOWN_ElementType'\n | 'inlineElement'\n | 'refElement';\n\nexport interface InlineElement {\n /**\n * Relative DOM Query selector for this element to the component root. We assume nesting by it's parent elements for CSS Vars scoping.\n * @minLength 4\n * @maxLength 300\n */\n selector?: string;\n /**\n * Human friendly name on the editor stage when the component is in interaction with the user\n * @maxLength 50\n */\n displayName?: string;\n /** style-api of this element, a map of style-items where the key is the style-item name and the value is the style-item definition. These will be manifested as CSS vars in the scope of the component and prefixed with `--` */\n style?: Record<string, StyleItem>;\n /** data-api of this element, a map of data-items where the key is the data-item name and the value is the data-item definition */\n data?: Record<string, DataItem>;\n /** elements-map of this element, a map of inner-elements where the key is the element name and the value is the element definition */\n elements?: Record<string, ElementItem>;\n /** editor-behaviors-api of this inner-element, will determine which type of editor experiences this inner-element should support */\n behaviors?: Behaviors;\n /** Collection of the native actions specified for the concrete component */\n actions?: Actions;\n /** Custom actions specified for the component, allowing for flexibility beyond native actions */\n customActions?: Record<string, Action>;\n /** Component presets definition. Canonically useful for different layout or theming */\n presets?: Record<string, PresetItem>;\n /** The Archetype this component adheres to, to be used for classification by AI models */\n archetype?: ArchetypeWithLiterals;\n /** A map with definitions of states that this element can be edited in */\n states?: Record<string, ElementState>;\n /** A reference to a state that needs to be triggered in order for this element to be visible */\n visibleState?: VisibleState;\n /**\n * Display filters for the Element, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The Element is the first in line to affect the display, Preset and State are after it\n */\n displayFilters?: DisplayFilters;\n /** Display groups for the element, used to group elements in the editor for better UX */\n displayGroups?: Record<string, DisplayGroupItem>;\n /** A map of css-properties that this element supports, where the key is the CSS property name and the value is the CSS property definition */\n cssProperties?: Record<string, CssPropertyItem>;\n /** A map of css-custom-properties that this element supports, where the key is the CSS property name and the value is the CSS property definition */\n cssCustomProperties?: Record<string, CssCustomPropertyItem>;\n /** A reference to a help article for this element */\n helpArticle?: HelpArticle;\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future, add new types and definitions in css_properties.proto */\nexport interface StyleItem\n extends StyleItemSelectedItemTypeOneOf,\n StyleItemSelectedCssPropertyTypeOneOf,\n StyleItemSelectedCssVariableTypeOneOf {\n /**\n * DEPRECATED: use cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @deprecated DEPRECATED: use cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @replacedBy cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @targetRemovalDate 2025-08-01\n */\n cssPropertyType?: CssPropertyTypeEnumCssPropertyTypeWithLiterals;\n /**\n * DEPRECATED: use cssCustomProperties instead\n * @deprecated DEPRECATED: use cssCustomProperties instead\n * @replacedBy cssCustomProperties\n * @targetRemovalDate 2025-08-01\n */\n cssVariableType?: CssVariableTypeEnumCssDataTypeWithLiterals;\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n /** Additional options to refine the customEnum style item */\n customEnum?: CustomEnum;\n /** Additional options to refine the number style item */\n number?: CssNumber;\n /**\n * The type of the style-item, used to define the type of the css property or css variable\n * @deprecated The type of the style-item, used to define the type of the css property or css variable\n * @replacedBy cssPropertyType or cssVariableType\n * @targetRemovalDate 2025-08-01\n */\n styleType?: StyleTypeWithLiterals;\n /** The default value for the style-item when the component is in the \"regular\" state */\n defaultValue?: any;\n /** The default values for the style-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n /**\n * Will be used as displayName of this style-item\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * DEPRECATED - use cssCustomProperties instead\n * @deprecated DEPRECATED - use cssCustomProperties instead\n * @replacedBy cssCustomProperties\n * @targetRemovalDate 2025-08-01\n */\n cssCustomProperty?: boolean | null;\n}\n\n/** @oneof */\nexport interface StyleItemSelectedItemTypeOneOf {\n /**\n * DEPRECATED: use cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @deprecated DEPRECATED: use cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @replacedBy cssProperties or cssCustomProperties depends if you need this as inline css-property or as a css variable\n * @targetRemovalDate 2025-08-01\n */\n cssPropertyType?: CssPropertyTypeEnumCssPropertyTypeWithLiterals;\n /**\n * DEPRECATED: use cssCustomProperties instead\n * @deprecated DEPRECATED: use cssCustomProperties instead\n * @replacedBy cssCustomProperties\n * @targetRemovalDate 2025-08-01\n */\n cssVariableType?: CssVariableTypeEnumCssDataTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface StyleItemSelectedCssPropertyTypeOneOf {\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n}\n\n/** @oneof */\nexport interface StyleItemSelectedCssVariableTypeOneOf {\n /** Additional options to refine the customEnum style item */\n customEnum?: CustomEnum;\n /** Additional options to refine the number style item */\n number?: CssNumber;\n}\n\n/** The supported [CSS Property Types](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference#index) in Javascript naming format */\nexport enum CssPropertyTypeEnumCssPropertyType {\n UNKNOWN_CssPropertyType = 'UNKNOWN_CssPropertyType',\n /** background properties */\n background = 'background',\n backgroundSize = 'backgroundSize',\n backgroundColor = 'backgroundColor',\n backgroundImage = 'backgroundImage',\n backgroundClip = 'backgroundClip',\n backgroundOrigin = 'backgroundOrigin',\n backgroundPosition = 'backgroundPosition',\n backgroundRepeat = 'backgroundRepeat',\n backgroundAttachment = 'backgroundAttachment',\n fill = 'fill',\n fillOpacity = 'fillOpacity',\n /** margin properties */\n margin = 'margin',\n marginTop = 'marginTop',\n marginRight = 'marginRight',\n marginBottom = 'marginBottom',\n marginLeft = 'marginLeft',\n marginInlineStart = 'marginInlineStart',\n marginInlineEnd = 'marginInlineEnd',\n /** padding properties */\n padding = 'padding',\n paddingTop = 'paddingTop',\n paddingRight = 'paddingRight',\n paddingBottom = 'paddingBottom',\n paddingLeft = 'paddingLeft',\n paddingInlineStart = 'paddingInlineStart',\n paddingInlineEnd = 'paddingInlineEnd',\n /** border properties */\n border = 'border',\n borderWidth = 'borderWidth',\n borderStyle = 'borderStyle',\n borderColor = 'borderColor',\n borderTop = 'borderTop',\n borderTopColor = 'borderTopColor',\n borderTopWidth = 'borderTopWidth',\n borderTopStyle = 'borderTopStyle',\n borderRight = 'borderRight',\n borderRightColor = 'borderRightColor',\n borderRightWidth = 'borderRightWidth',\n borderRightStyle = 'borderRightStyle',\n borderBottom = 'borderBottom',\n borderBottomColor = 'borderBottomColor',\n borderBottomWidth = 'borderBottomWidth',\n borderBottomStyle = 'borderBottomStyle',\n borderLeft = 'borderLeft',\n borderLeftColor = 'borderLeftColor',\n borderLeftWidth = 'borderLeftWidth',\n borderLeftStyle = 'borderLeftStyle',\n borderInlineStart = 'borderInlineStart',\n borderInlineStartColor = 'borderInlineStartColor',\n borderInlineStartWidth = 'borderInlineStartWidth',\n borderInlineStartStyle = 'borderInlineStartStyle',\n borderInlineEnd = 'borderInlineEnd',\n borderInlineEndColor = 'borderInlineEndColor',\n borderInlineEndWidth = 'borderInlineEndWidth',\n borderInlineEndStyle = 'borderInlineEndStyle',\n borderRadius = 'borderRadius',\n borderTopLeftRadius = 'borderTopLeftRadius',\n borderTopRightRadius = 'borderTopRightRadius',\n borderBottomRightRadius = 'borderBottomRightRadius',\n borderBottomLeftRadius = 'borderBottomLeftRadius',\n borderStartStartRadius = 'borderStartStartRadius',\n borderStartEndRadius = 'borderStartEndRadius',\n borderEndStartRadius = 'borderEndStartRadius',\n borderEndEndRadius = 'borderEndEndRadius',\n /** text properties */\n font = 'font',\n fontFamily = 'fontFamily',\n fontSize = 'fontSize',\n fontStretch = 'fontStretch',\n fontStyle = 'fontStyle',\n fontVariant = 'fontVariant',\n fontWeight = 'fontWeight',\n lineHeight = 'lineHeight',\n color = 'color',\n letterSpacing = 'letterSpacing',\n writingMode = 'writingMode',\n textAlign = 'textAlign',\n textTransform = 'textTransform',\n textShadow = 'textShadow',\n textOverflow = 'textOverflow',\n textIndent = 'textIndent',\n textDecoration = 'textDecoration',\n textDecorationColor = 'textDecorationColor',\n textDecorationLine = 'textDecorationLine',\n textDecorationStyle = 'textDecorationStyle',\n textDecorationThickness = 'textDecorationThickness',\n /** general box properties */\n boxShadow = 'boxShadow',\n opacity = 'opacity',\n overflow = 'overflow',\n /** layout properties */\n display = 'display',\n alignSelf = 'alignSelf',\n justifyContent = 'justifyContent',\n alignItems = 'alignItems',\n flexDirection = 'flexDirection',\n gap = 'gap',\n height = 'height',\n width = 'width',\n columnGap = 'columnGap',\n rowGap = 'rowGap',\n /** filters */\n filter = 'filter',\n backdropFilter = 'backdropFilter',\n /** media sizing & alignment */\n objectFit = 'objectFit',\n objectPosition = 'objectPosition',\n /** blending & compositing */\n mixBlendMode = 'mixBlendMode',\n isolation = 'isolation',\n /** stroke properties */\n stroke = 'stroke',\n strokeWidth = 'strokeWidth',\n strokeOpacity = 'strokeOpacity',\n}\n\n/** @enumType */\nexport type CssPropertyTypeEnumCssPropertyTypeWithLiterals =\n | CssPropertyTypeEnumCssPropertyType\n | 'UNKNOWN_CssPropertyType'\n | 'background'\n | 'backgroundSize'\n | 'backgroundColor'\n | 'backgroundImage'\n | 'backgroundClip'\n | 'backgroundOrigin'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundAttachment'\n | 'fill'\n | 'fillOpacity'\n | 'margin'\n | 'marginTop'\n | 'marginRight'\n | 'marginBottom'\n | 'marginLeft'\n | 'marginInlineStart'\n | 'marginInlineEnd'\n | 'padding'\n | 'paddingTop'\n | 'paddingRight'\n | 'paddingBottom'\n | 'paddingLeft'\n | 'paddingInlineStart'\n | 'paddingInlineEnd'\n | 'border'\n | 'borderWidth'\n | 'borderStyle'\n | 'borderColor'\n | 'borderTop'\n | 'borderTopColor'\n | 'borderTopWidth'\n | 'borderTopStyle'\n | 'borderRight'\n | 'borderRightColor'\n | 'borderRightWidth'\n | 'borderRightStyle'\n | 'borderBottom'\n | 'borderBottomColor'\n | 'borderBottomWidth'\n | 'borderBottomStyle'\n | 'borderLeft'\n | 'borderLeftColor'\n | 'borderLeftWidth'\n | 'borderLeftStyle'\n | 'borderInlineStart'\n | 'borderInlineStartColor'\n | 'borderInlineStartWidth'\n | 'borderInlineStartStyle'\n | 'borderInlineEnd'\n | 'borderInlineEndColor'\n | 'borderInlineEndWidth'\n | 'borderInlineEndStyle'\n | 'borderRadius'\n | 'borderTopLeftRadius'\n | 'borderTopRightRadius'\n | 'borderBottomRightRadius'\n | 'borderBottomLeftRadius'\n | 'borderStartStartRadius'\n | 'borderStartEndRadius'\n | 'borderEndStartRadius'\n | 'borderEndEndRadius'\n | 'font'\n | 'fontFamily'\n | 'fontSize'\n | 'fontStretch'\n | 'fontStyle'\n | 'fontVariant'\n | 'fontWeight'\n | 'lineHeight'\n | 'color'\n | 'letterSpacing'\n | 'writingMode'\n | 'textAlign'\n | 'textTransform'\n | 'textShadow'\n | 'textOverflow'\n | 'textIndent'\n | 'textDecoration'\n | 'textDecorationColor'\n | 'textDecorationLine'\n | 'textDecorationStyle'\n | 'textDecorationThickness'\n | 'boxShadow'\n | 'opacity'\n | 'overflow'\n | 'display'\n | 'alignSelf'\n | 'justifyContent'\n | 'alignItems'\n | 'flexDirection'\n | 'gap'\n | 'height'\n | 'width'\n | 'columnGap'\n | 'rowGap'\n | 'filter'\n | 'backdropFilter'\n | 'objectFit'\n | 'objectPosition'\n | 'mixBlendMode'\n | 'isolation'\n | 'stroke'\n | 'strokeWidth'\n | 'strokeOpacity';\n\n/** The supported [CSS Data Types](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Types) in Javascript naming format */\nexport enum CssVariableTypeEnumCssDataType {\n UNKNOWN_CssDataType = 'UNKNOWN_CssDataType',\n number = 'number',\n length = 'length',\n color = 'color',\n angle = 'angle',\n percentage = 'percentage',\n lengthPercentage = 'lengthPercentage',\n blendMode = 'blendMode',\n customEnum = 'customEnum',\n string = 'string',\n time = 'time',\n}\n\n/** @enumType */\nexport type CssVariableTypeEnumCssDataTypeWithLiterals =\n | CssVariableTypeEnumCssDataType\n | 'UNKNOWN_CssDataType'\n | 'number'\n | 'length'\n | 'color'\n | 'angle'\n | 'percentage'\n | 'lengthPercentage'\n | 'blendMode'\n | 'customEnum'\n | 'string'\n | 'time';\n\n/** The supported [CSS Property Types & CSS Data Types](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference#index) in Javascript naming format */\nexport enum StyleType {\n UNKNOWN_StyleType = 'UNKNOWN_StyleType',\n /** css-data-types */\n number = 'number',\n string = 'string',\n angle = 'angle',\n length = 'length',\n percentage = 'percentage',\n lengthPercentage = 'lengthPercentage',\n blendMode = 'blendMode',\n customEnum = 'customEnum',\n time = 'time',\n /** background properties */\n background = 'background',\n backgroundSize = 'backgroundSize',\n backgroundColor = 'backgroundColor',\n backgroundImage = 'backgroundImage',\n backgroundClip = 'backgroundClip',\n backgroundOrigin = 'backgroundOrigin',\n backgroundPosition = 'backgroundPosition',\n backgroundRepeat = 'backgroundRepeat',\n backgroundAttachment = 'backgroundAttachment',\n /** margin properties */\n margin = 'margin',\n marginTop = 'marginTop',\n marginRight = 'marginRight',\n marginBottom = 'marginBottom',\n marginLeft = 'marginLeft',\n marginInlineStart = 'marginInlineStart',\n marginInlineEnd = 'marginInlineEnd',\n /** padding properties */\n padding = 'padding',\n paddingTop = 'paddingTop',\n paddingRight = 'paddingRight',\n paddingBottom = 'paddingBottom',\n paddingLeft = 'paddingLeft',\n paddingInlineStart = 'paddingInlineStart',\n paddingInlineEnd = 'paddingInlineEnd',\n /** border properties */\n border = 'border',\n borderWidth = 'borderWidth',\n borderStyle = 'borderStyle',\n borderColor = 'borderColor',\n borderTop = 'borderTop',\n borderTopColor = 'borderTopColor',\n borderTopWidth = 'borderTopWidth',\n borderTopStyle = 'borderTopStyle',\n borderRight = 'borderRight',\n borderRightColor = 'borderRightColor',\n borderRightWidth = 'borderRightWidth',\n borderRightStyle = 'borderRightStyle',\n borderBottom = 'borderBottom',\n borderBottomColor = 'borderBottomColor',\n borderBottomWidth = 'borderBottomWidth',\n borderBottomStyle = 'borderBottomStyle',\n borderLeft = 'borderLeft',\n borderLeftColor = 'borderLeftColor',\n borderLeftWidth = 'borderLeftWidth',\n borderLeftStyle = 'borderLeftStyle',\n borderInlineStart = 'borderInlineStart',\n borderInlineStartColor = 'borderInlineStartColor',\n borderInlineStartWidth = 'borderInlineStartWidth',\n borderInlineStartStyle = 'borderInlineStartStyle',\n borderInlineEnd = 'borderInlineEnd',\n borderInlineEndColor = 'borderInlineEndColor',\n borderInlineEndWidth = 'borderInlineEndWidth',\n borderInlineEndStyle = 'borderInlineEndStyle',\n /** border-radius properties */\n borderRadius = 'borderRadius',\n borderTopLeftRadius = 'borderTopLeftRadius',\n borderTopRightRadius = 'borderTopRightRadius',\n borderBottomRightRadius = 'borderBottomRightRadius',\n borderBottomLeftRadius = 'borderBottomLeftRadius',\n borderStartStartRadius = 'borderStartStartRadius',\n borderStartEndRadius = 'borderStartEndRadius',\n borderEndStartRadius = 'borderEndStartRadius',\n borderEndEndRadius = 'borderEndEndRadius',\n /** font properties */\n font = 'font',\n fontFamily = 'fontFamily',\n fontSize = 'fontSize',\n fontStretch = 'fontStretch',\n fontStyle = 'fontStyle',\n fontVariant = 'fontVariant',\n fontWeight = 'fontWeight',\n lineHeight = 'lineHeight',\n /** text properties */\n color = 'color',\n letterSpacing = 'letterSpacing',\n writingMode = 'writingMode',\n textAlign = 'textAlign',\n textTransform = 'textTransform',\n textShadow = 'textShadow',\n textOverflow = 'textOverflow',\n textIndent = 'textIndent',\n /** text-decoration properties */\n textDecoration = 'textDecoration',\n textDecorationColor = 'textDecorationColor',\n textDecorationLine = 'textDecorationLine',\n textDecorationStyle = 'textDecorationStyle',\n textDecorationThickness = 'textDecorationThickness',\n /** box related properties */\n boxShadow = 'boxShadow',\n opacity = 'opacity',\n overflow = 'overflow',\n overflowX = 'overflowX',\n overflowY = 'overflowY',\n /** layout properties */\n display = 'display',\n alignSelf = 'alignSelf',\n justifyContent = 'justifyContent',\n alignItems = 'alignItems',\n flexDirection = 'flexDirection',\n height = 'height',\n width = 'width',\n gap = 'gap',\n columnGap = 'columnGap',\n rowGap = 'rowGap',\n /** filters */\n filter = 'filter',\n backdropFilter = 'backdropFilter',\n /** media sizing & alignment */\n objectFit = 'objectFit',\n objectPosition = 'objectPosition',\n /** blending & compositing */\n mixBlendMode = 'mixBlendMode',\n isolation = 'isolation',\n /** stroke properties */\n stroke = 'stroke',\n strokeWidth = 'strokeWidth',\n strokeOpacity = 'strokeOpacity',\n /** fill properties */\n fill = 'fill',\n fillOpacity = 'fillOpacity',\n}\n\n/** @enumType */\nexport type StyleTypeWithLiterals =\n | StyleType\n | 'UNKNOWN_StyleType'\n | 'number'\n | 'string'\n | 'angle'\n | 'length'\n | 'percentage'\n | 'lengthPercentage'\n | 'blendMode'\n | 'customEnum'\n | 'time'\n | 'background'\n | 'backgroundSize'\n | 'backgroundColor'\n | 'backgroundImage'\n | 'backgroundClip'\n | 'backgroundOrigin'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundAttachment'\n | 'margin'\n | 'marginTop'\n | 'marginRight'\n | 'marginBottom'\n | 'marginLeft'\n | 'marginInlineStart'\n | 'marginInlineEnd'\n | 'padding'\n | 'paddingTop'\n | 'paddingRight'\n | 'paddingBottom'\n | 'paddingLeft'\n | 'paddingInlineStart'\n | 'paddingInlineEnd'\n | 'border'\n | 'borderWidth'\n | 'borderStyle'\n | 'borderColor'\n | 'borderTop'\n | 'borderTopColor'\n | 'borderTopWidth'\n | 'borderTopStyle'\n | 'borderRight'\n | 'borderRightColor'\n | 'borderRightWidth'\n | 'borderRightStyle'\n | 'borderBottom'\n | 'borderBottomColor'\n | 'borderBottomWidth'\n | 'borderBottomStyle'\n | 'borderLeft'\n | 'borderLeftColor'\n | 'borderLeftWidth'\n | 'borderLeftStyle'\n | 'borderInlineStart'\n | 'borderInlineStartColor'\n | 'borderInlineStartWidth'\n | 'borderInlineStartStyle'\n | 'borderInlineEnd'\n | 'borderInlineEndColor'\n | 'borderInlineEndWidth'\n | 'borderInlineEndStyle'\n | 'borderRadius'\n | 'borderTopLeftRadius'\n | 'borderTopRightRadius'\n | 'borderBottomRightRadius'\n | 'borderBottomLeftRadius'\n | 'borderStartStartRadius'\n | 'borderStartEndRadius'\n | 'borderEndStartRadius'\n | 'borderEndEndRadius'\n | 'font'\n | 'fontFamily'\n | 'fontSize'\n | 'fontStretch'\n | 'fontStyle'\n | 'fontVariant'\n | 'fontWeight'\n | 'lineHeight'\n | 'color'\n | 'letterSpacing'\n | 'writingMode'\n | 'textAlign'\n | 'textTransform'\n | 'textShadow'\n | 'textOverflow'\n | 'textIndent'\n | 'textDecoration'\n | 'textDecorationColor'\n | 'textDecorationLine'\n | 'textDecorationStyle'\n | 'textDecorationThickness'\n | 'boxShadow'\n | 'opacity'\n | 'overflow'\n | 'overflowX'\n | 'overflowY'\n | 'display'\n | 'alignSelf'\n | 'justifyContent'\n | 'alignItems'\n | 'flexDirection'\n | 'height'\n | 'width'\n | 'gap'\n | 'columnGap'\n | 'rowGap'\n | 'filter'\n | 'backdropFilter'\n | 'objectFit'\n | 'objectPosition'\n | 'mixBlendMode'\n | 'isolation'\n | 'stroke'\n | 'strokeWidth'\n | 'strokeOpacity'\n | 'fill'\n | 'fillOpacity';\n\nexport interface Filter {\n /**\n * List of filter functions in case of reducing the abilities exposed to the User\n * @maxSize 100\n */\n filterFunctions?: FilterFunctionWithLiterals[];\n}\n\nexport enum FilterFunction {\n UNKNOWN_FilterFunctions = 'UNKNOWN_FilterFunctions',\n /** The value used for blur filter */\n blur = 'blur',\n /** The value used for brightness filter */\n brightness = 'brightness',\n /** The value used for contrast filter */\n contrast = 'contrast',\n /** The value used for drop-shadow filter */\n drop_shadow = 'drop_shadow',\n /** The value used for grayscale filter */\n grayscale = 'grayscale',\n /** The value used for hue-rotate filter */\n hue_rotate = 'hue_rotate',\n /** The value used for invert filter */\n invert = 'invert',\n /** The value used for opacity filter */\n opacity = 'opacity',\n /** The value used for sepia filter */\n sepia = 'sepia',\n /** The value used for saturate filter */\n saturate = 'saturate',\n}\n\n/** @enumType */\nexport type FilterFunctionWithLiterals =\n | FilterFunction\n | 'UNKNOWN_FilterFunctions'\n | 'blur'\n | 'brightness'\n | 'contrast'\n | 'drop_shadow'\n | 'grayscale'\n | 'hue_rotate'\n | 'invert'\n | 'opacity'\n | 'sepia'\n | 'saturate';\n\nexport interface BackdropFilter {\n /**\n * List of filter functions in case of reducing the abilities exposed to the User\n * @maxSize 100\n */\n filterFunctions?: FilterFunctionWithLiterals[];\n}\n\nexport interface Display {\n /**\n * list of display values in case we want to reduce the abilities exposed to the User\n * @maxSize 20\n */\n displayValues?: DisplayValueEnumDisplayValueWithLiterals[];\n}\n\nexport enum DisplayValueEnumDisplayValue {\n UNKNOWN_DisplayValue = 'UNKNOWN_DisplayValue',\n none = 'none',\n block = 'block',\n inline = 'inline',\n flow = 'flow',\n flowRoot = 'flowRoot',\n table = 'table',\n flex = 'flex',\n grid = 'grid',\n list_item = 'list_item',\n contents = 'contents',\n inline_block = 'inline_block',\n inline_table = 'inline_table',\n inline_flex = 'inline_flex',\n inline_grid = 'inline_grid',\n}\n\n/** @enumType */\nexport type DisplayValueEnumDisplayValueWithLiterals =\n | DisplayValueEnumDisplayValue\n | 'UNKNOWN_DisplayValue'\n | 'none'\n | 'block'\n | 'inline'\n | 'flow'\n | 'flowRoot'\n | 'table'\n | 'flex'\n | 'grid'\n | 'list_item'\n | 'contents'\n | 'inline_block'\n | 'inline_table'\n | 'inline_flex'\n | 'inline_grid';\n\nexport interface WritingMode {\n /**\n * list of writing-mode values in case we want to reduce the abilities exposed to the User\n * @maxSize 20\n */\n writingModeValues?: WritingModeValueWithLiterals[];\n}\n\nexport enum WritingModeValue {\n UNKNOWN_WritingModeValue = 'UNKNOWN_WritingModeValue',\n horizontalTb = 'horizontalTb',\n verticalRl = 'verticalRl',\n verticalLr = 'verticalLr',\n sidewaysRl = 'sidewaysRl',\n sidewaysLr = 'sidewaysLr',\n}\n\n/** @enumType */\nexport type WritingModeValueWithLiterals =\n | WritingModeValue\n | 'UNKNOWN_WritingModeValue'\n | 'horizontalTb'\n | 'verticalRl'\n | 'verticalLr'\n | 'sidewaysRl'\n | 'sidewaysLr';\n\nexport interface Background extends BackgroundBackgroundMediaModeOneOf {\n /** The image media manager category to open media manager filtered by the component needs */\n imageCategory?: ImageCategoryTypesWithLiterals;\n /** The Shape Divider media manager category to open media manager filtered by the component needs */\n vectorArtCategory?: VectorArtCategoryTypesWithLiterals;\n}\n\n/** @oneof */\nexport interface BackgroundBackgroundMediaModeOneOf {\n /** The image media manager category to open media manager filtered by the component needs */\n imageCategory?: ImageCategoryTypesWithLiterals;\n /** The Shape Divider media manager category to open media manager filtered by the component needs */\n vectorArtCategory?: VectorArtCategoryTypesWithLiterals;\n}\n\nexport enum BackgroundModeEnum {\n UNKNOWN_BackgroundModeEnum = 'UNKNOWN_BackgroundModeEnum',\n}\n\n/** @enumType */\nexport type BackgroundModeEnumWithLiterals =\n | BackgroundModeEnum\n | 'UNKNOWN_BackgroundModeEnum';\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface CustomEnum {\n /**\n * DEPRECATED: use cssDataType instead\n * @deprecated DEPRECATED: use cssDataType instead\n * @replacedBy cssDataType\n * @targetRemovalDate 2025-08-01\n */\n cssVariableType?: CssVariableTypeEnumCssDataTypeWithLiterals;\n /** The type of the custom enum, used to define the type of the values allowed in the enum */\n cssDataType?: CssDataTypeWithLiterals;\n /**\n * The allowed value options for this custom enum\n * @maxSize 100\n */\n options?: CustomEnumOption[];\n}\n\nexport enum CssDataType {\n UNKNOWN_CssDataType = 'UNKNOWN_CssDataType',\n number = 'number',\n string = 'string',\n angle = 'angle',\n color = 'color',\n length = 'length',\n percentage = 'percentage',\n lengthPercentage = 'lengthPercentage',\n blendMode = 'blendMode',\n customEnum = 'customEnum',\n time = 'time',\n}\n\n/** @enumType */\nexport type CssDataTypeWithLiterals =\n | CssDataType\n | 'UNKNOWN_CssDataType'\n | 'number'\n | 'string'\n | 'angle'\n | 'color'\n | 'length'\n | 'percentage'\n | 'lengthPercentage'\n | 'blendMode'\n | 'customEnum'\n | 'time';\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface CustomEnumOption {\n /**\n * the enum value\n * @maxLength 100\n */\n value?: string;\n /**\n * Will be used as displayName of this enum option\n * @maxLength 100\n */\n displayName?: string;\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface CustomEnumOptionCssProperty {\n /**\n * the css property\n * @maxLength 100\n */\n property?: string;\n /**\n * the css value\n * @maxLength 300\n */\n value?: string;\n}\n\nexport interface CssNumber {\n /**\n * @deprecated\n * @replacedBy min\n * @targetRemovalDate 2025-11-30\n */\n minimum?: number | null;\n /**\n * Indicates minimum value required for the number\n * @format DECIMAL_VALUE\n */\n min?: string | null;\n /**\n * @deprecated\n * @replacedBy max\n * @targetRemovalDate 2025-11-30\n */\n maximum?: number | null;\n /**\n * Indicates maximum value allowed for the number\n * @format DECIMAL_VALUE\n */\n max?: string | null;\n /**\n * @deprecated\n * @replacedBy multiplier\n * @targetRemovalDate 2025-11-30\n */\n multipleOf?: number | null;\n /**\n * The multiplier for the number value\n * @format DECIMAL_VALUE\n */\n multiplier?: string | null;\n}\n\nexport interface Behaviors {\n /** Determines if the inner-element can be selectable in the editor */\n selectable?: boolean | null;\n /** Determines if the inner-element can be removed from the component */\n removable?: boolean | null;\n}\n\n/** List of the native actions */\nexport interface Actions {\n /** Allows enabling / disabling and overriding the settings action */\n settings?: Action;\n /** Allows enabling / disabling and overriding the design action */\n design?: Action;\n /** Allows enabling / disabling and overriding the media action */\n media?: Action;\n /** Allows enabling / disabling and overriding the manageItems action */\n manageItems?: Action;\n /** Allows enabling / disabling and overriding the dashboard action */\n dashboard?: DashboardAction;\n /** Allows enabling / disabling and overriding the manageMenu action */\n manageMenu?: Action;\n /** Allows enabling / disabling and overriding the container action */\n container?: Action;\n}\n\nexport interface Action {\n /**\n * The public human-readable name given to the action by the developer.\n * @maxLength 50\n */\n displayName?: string;\n /** A model definition for declaring a concrete instructions action will perform */\n execution?: Execution;\n}\n\nexport interface Execution extends ExecutionActionExecuteOneOf {\n /** Executes an action that manipulates component's data */\n data?: DataAction;\n /**\n * Executes an action that manipulates component's style\n * @deprecated Executes an action that manipulates component's style\n * @replacedBy cssProperty or cssCustomProperty\n * @targetRemovalDate 2025-08-01\n */\n style?: StyleAction;\n /** Executes an event-based action. Triggered event should be intercepted in the editor script */\n event?: EventAction;\n /** Opens a URL inside an iframe panel */\n panel?: PanelAction;\n /** Executes an action on a target element (based on path) */\n forward?: ForwardAction;\n /** Executes an action that is connected to a display-group */\n displayGroup?: DisplayGroupAction;\n /** Executes an action that points into a specific css-property-key, */\n cssProperty?: CssPropertyAction;\n /** Executes an action that points into a specific css-custom-property-key, */\n cssCustomProperty?: CssCustomPropertyAction;\n /** The action type allows to determine the return type of the execution function */\n actionType?: ActionTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface ExecutionActionExecuteOneOf {\n /** Executes an action that manipulates component's data */\n data?: DataAction;\n /**\n * Executes an action that manipulates component's style\n * @deprecated Executes an action that manipulates component's style\n * @replacedBy cssProperty or cssCustomProperty\n * @targetRemovalDate 2025-08-01\n */\n style?: StyleAction;\n /** Executes an event-based action. Triggered event should be intercepted in the editor script */\n event?: EventAction;\n /** Opens a URL inside an iframe panel */\n panel?: PanelAction;\n /** Executes an action on a target element (based on path) */\n forward?: ForwardAction;\n /** Executes an action that is connected to a display-group */\n displayGroup?: DisplayGroupAction;\n /** Executes an action that points into a specific css-property-key, */\n cssProperty?: CssPropertyAction;\n /** Executes an action that points into a specific css-custom-property-key, */\n cssCustomProperty?: CssCustomPropertyAction;\n}\n\nexport enum ActionType {\n UNKNOWN_ActionType = 'UNKNOWN_ActionType',\n data = 'data',\n event = 'event',\n panel = 'panel',\n forward = 'forward',\n style = 'style',\n displayGroup = 'displayGroup',\n cssProperty = 'cssProperty',\n cssCustomProperty = 'cssCustomProperty',\n}\n\n/** @enumType */\nexport type ActionTypeWithLiterals =\n | ActionType\n | 'UNKNOWN_ActionType'\n | 'data'\n | 'event'\n | 'panel'\n | 'forward'\n | 'style'\n | 'displayGroup'\n | 'cssProperty'\n | 'cssCustomProperty';\n\n/**\n * Represents an action that points into a specific data-item-key,\n * the outcome of clicking such action will be determined by the editor\n */\nexport interface DataAction {\n /**\n * Points to the data item within the component’s data structure\n * @minLength 1\n * @maxLength 50\n */\n dataItemKey?: string;\n}\n\n/** DEPRECATED - use CssPropertyAction or CssCustomPropertyAction */\nexport interface StyleAction {\n /**\n * Points to the style item within the component’s style structure\n * @minLength 1\n * @maxLength 50\n */\n styleItemKey?: string;\n}\n\n/** Executes an event-based action. Triggered event should be intercepted in the editor script */\nexport interface EventAction {\n /**\n * Name of the event to be handled by the editor script\n * @minLength 1\n * @maxLength 50\n */\n event?: string;\n}\n\n/** Represents a URL-based action that opens a panel */\nexport interface PanelAction extends PanelActionSelectedPanelTypeOneOf {\n /**\n * For using a panel defined in dev-center\n * @format GUID\n */\n panelId?: string;\n /** The selected panel reference type */\n panelType?: PanelTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface PanelActionSelectedPanelTypeOneOf {\n /**\n * For using a panel defined in dev-center\n * @format GUID\n */\n panelId?: string;\n}\n\n/** list of possible panel types */\nexport enum PanelType {\n UNKNOWN_PanelType = 'UNKNOWN_PanelType',\n panelId = 'panelId',\n}\n\n/** @enumType */\nexport type PanelTypeWithLiterals = PanelType | 'UNKNOWN_PanelType' | 'panelId';\n\n/** Represents an action that targets another element within the component */\nexport interface ForwardAction extends ForwardActionActionOneOf {\n /**\n * Used when actionType is custom\n * @minLength 1\n * @maxLength 50\n */\n custom?: string;\n /** Specifies the action names (one of the natives or custom) */\n actionName?: ActionNameWithLiterals;\n /**\n * Path to the target element\n * @minLength 1\n * @maxLength 500\n */\n elementPath?: string;\n}\n\n/** @oneof */\nexport interface ForwardActionActionOneOf {\n /**\n * Used when actionType is custom\n * @minLength 1\n * @maxLength 50\n */\n custom?: string;\n}\n\nexport enum ActionName {\n UNKNOWN_ActionName = 'UNKNOWN_ActionName',\n /** Manage the component settings, this usually aligns with component data */\n settings = 'settings',\n /** Manage the `style` information */\n design = 'design',\n /** Manage any media type `data` defined in the component */\n media = 'media',\n /** Manage items in the component data */\n manageItems = 'manageItems',\n /** Open the apps default dashboard page, or select one if there is more than one */\n dashboard = 'dashboard',\n /** actionName to be triggered from the defined custom actions */\n custom = 'custom',\n /** Manage Menu Items */\n manageMenu = 'manageMenu',\n /** Shows the container actions, or select one if there is more than one */\n container = 'container',\n}\n\n/** @enumType */\nexport type ActionNameWithLiterals =\n | ActionName\n | 'UNKNOWN_ActionName'\n | 'settings'\n | 'design'\n | 'media'\n | 'manageItems'\n | 'dashboard'\n | 'custom'\n | 'manageMenu'\n | 'container';\n\n/**\n * Represents an action that points into a specific display-group-key,\n * the outcome will make the chosen display group visible to the user for changing the groups values in the component\n */\nexport interface DisplayGroupAction {\n /**\n * The display group to be used\n * @minLength 1\n * @maxLength 50\n */\n displayGroupKey?: string;\n}\n\n/**\n * Represents an action that points into a single css-property,\n * the outcome of clicking such action will be determined by the editor\n */\nexport interface CssPropertyAction {\n /**\n * Points to the style item within the component’s css-properties map\n * @minLength 1\n * @maxLength 50\n */\n cssPropertyKey?: string;\n}\n\n/**\n * Represents an action that points into a single css-custom-property,\n * the outcome of clicking such action will be determined by the editor\n */\nexport interface CssCustomPropertyAction {\n /**\n * Points to the style item within the component’s css-custom-properties map\n * @minLength 1\n * @maxLength 50\n */\n cssCustomPropertyKey?: string;\n}\n\nexport interface DashboardAction {\n /**\n * The public human-readable name given to the action by the developer.\n * @maxLength 50\n */\n displayName?: string;\n /**\n * Optional pageId of the dashboard in case there is more than one\n * @minLength 4\n * @maxLength 50\n */\n dashboardPageId?: string;\n /** A model definition for declaring a concrete instructions action will perform */\n execution?: Execution;\n}\n\nexport interface PresetItem {\n /**\n * DEPRECATED - use preset_css_url instead\n * @format WEB_URL\n * @minLength 13\n * @maxLength 500\n * @deprecated DEPRECATED - use preset_css_url instead\n * @replacedBy preset_css_url\n * @targetRemovalDate 2025-08-01\n */\n cssUrl?: string;\n /**\n * Preset name for displaying purposes in the editor\n * @maxLength 100\n */\n displayName?: string;\n /**\n * A URL to the preset thumbnail file\n * @format WEB_URL\n * @maxLength 500\n */\n thumbnailUrl?: string | null;\n /** Optional initial size of the component when switching into this preset */\n initialSize?: ComponentInitialSize;\n /**\n * Display filters for the Preset, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The Preset is the second in line to affect the display, Element is before and State is after it\n * @deprecated Display filters for the Preset, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The Preset is the second in line to affect the display, Element is before and State is after it\n * @replacedBy preset_defaults\n * @targetRemovalDate 2025-08-01\n */\n displayFilters?: DisplayFilters;\n /**\n * The default styles for this preset and the inner elements\n * @deprecated The default styles for this preset and the inner elements\n * @replacedBy preset_defaults\n * @targetRemovalDate 2025-08-01\n */\n styleDefaults?: PresetStyleDefaults;\n /** The style overrides for this preset and the inner elements */\n styleOverrides?: BreakpointPresetStyleOverrides;\n /**\n * Show this preset in panel only on specified breakpoints\n * (undefined/empty list = all breakpoints, list with values = only those breakpoints)\n * TODO: MaxSize is 2, because we only support small and large breakpoints for now\n * @maxSize 2\n */\n optimizedFor?: BreakpointEnumBreakpointWithLiterals[];\n /**\n * Optional editor layout behaviors we want to apply when this preset is selected\n * @deprecated Optional editor layout behaviors we want to apply when this preset is selected\n * @replacedBy preset_defaults\n * @targetRemovalDate 2025-08-01\n */\n layout?: EditorElementLayout;\n /**\n * A URL to the CSS file of this preset, to be used when you need to apply many css-changes or default-values to the DOM when this preset is selected, optional\n * @format WEB_URL\n * @maxLength 500\n */\n presetCssUrl?: string | null;\n /** All the default values that needs to be set when the preset is selected */\n presetDefaults?: PresetElementDefaults;\n}\n\nexport interface ComponentInitialSize {\n /** The component initial width setting */\n width?: InitialSizeSetting;\n /** The component initial height setting */\n height?: InitialSizeSetting;\n /**\n * The component will always keep the relationship between width and height when rendered\n * Only usable if width and height were set as 'pixels'\n */\n preserveAspectRatio?: boolean | null;\n}\n\nexport interface InitialSizeSetting\n extends InitialSizeSettingSelectedSizingTypeOneOf {\n /**\n * The value we should set as initial size in pixels\n * @min 1\n */\n pixels?: number;\n /** The initial size type */\n sizingType?: SizingTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface InitialSizeSettingSelectedSizingTypeOneOf {\n /**\n * The value we should set as initial size in pixels\n * @min 1\n */\n pixels?: number;\n}\n\nexport enum SizingType {\n UNKNOWN_SizingType = 'UNKNOWN_SizingType',\n /** Initial size should fit to the [content size](https://developer.mozilla.org/en-US/docs/Web/CSS/fit-content) */\n content = 'content',\n /** Initial size should stretch to the parent size and will keep tracking it unless a user changes it */\n stretched = 'stretched',\n /** Initial size should be set in pixels */\n pixels = 'pixels',\n}\n\n/** @enumType */\nexport type SizingTypeWithLiterals =\n | SizingType\n | 'UNKNOWN_SizingType'\n | 'content'\n | 'stretched'\n | 'pixels';\n\n/**\n * DisplayFilters is a collection of display filters that can be used to hide or show elements in the editor.\n * It is used to control the visibility of elements in the editor.\n * It is used to control the visibility of style items of elements in the editor.\n * It is used to control the visibility of data items of elements in the editor.\n * It is used to control the visibility of custom actions of elements in the editor.\n * The logical order of filtering is done from where the filter is defined.\n * Element takes first priority in narrowing the list, then the Preset and last is the State\n */\nexport interface DisplayFilters {\n /** DisplayFilter for elements, defines which elements to hide or show, uses the element key in the elements map, optional */\n elements?: DisplayFilter;\n /** DisplayFilter for data, defines which data items to hide or show, uses the dataItem key in the data map, optional */\n data?: DisplayFilter;\n /** DisplayFilter for custom actions, defines which custom actions to hide or show, uses the customAction key in the customActions map, optional */\n customActions?: DisplayFilter;\n /** DisplayFilter for actions, defines which actions to hide or show, uses the key in the action map, optional */\n actions?: DisplayFilter;\n /** DisplayFilter for css-properties, defines which properties to hide or show in the editor, uses the css-property name, optional */\n cssProperties?: DisplayFilter;\n /** DisplayFilter for css-custom-properties, defines which css-custom-properties to hide or show in the editor, uses the key in the css-custom-properties map, optional */\n cssCustomProperties?: DisplayFilter;\n /** DisplayFilter for states, defines which states to hide or show, uses the state key in the states map, optional */\n states?: DisplayFilter;\n}\n\n/**\n * The logic of the display filter is to define the minimal requirement\n * You can only provide one of the two fields, `hide` or `show`, but not both.\n * hide: *All items* not listed here will be shown by the editor. Useful for hiding a small list of items\n * show: *Only items* listed here will be show by the editor. Useful for hiding a large list of items\n */\nexport interface DisplayFilter {\n /**\n * Selected items to hide\n * @maxSize 100\n * @maxLength 80\n */\n hide?: string[];\n /**\n * Selected items to show\n * @maxSize 100\n * @maxLength 80\n */\n show?: string[];\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface PresetStyleDefaults {\n /** The default styles for this preset */\n style?: Record<string, StyleItemDefaults>;\n /** The default styles of inner elements for this preset */\n elements?: Record<string, ElementStyleDefaults>;\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface StyleItemDefaults {\n /** The default value of this style item */\n defaultValue?: any;\n /** The default values for the style-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n}\n\n/** DEPRECATED: This message is deprecated and will be removed in the future */\nexport interface ElementStyleDefaults {\n /** The default styles for an element */\n style?: Record<string, StyleItemDefaults>;\n /** The default preset and styles for inner elements */\n elements?: Record<string, ElementStyleDefaults>;\n}\n\nexport interface BreakpointPresetStyleOverrides {\n /** The style overrides values for the default breakpoint, which will cascade to all other breakpoints (if not overridden) */\n default?: PresetStyleOverrides;\n /** The style overrides values for the small (mobile) breakpoint */\n small?: PresetStyleOverrides;\n}\n\nexport interface PresetStyleOverrides {\n /**\n * The style overrides for this preset\n * @deprecated The style overrides for this preset\n * @replacedBy cssProperties or cssCustomProperties\n * @targetRemovalDate 2025-08-01\n */\n style?: Record<string, PresetStyleItemOverrides>;\n /** The style overrides of inner elements for this preset */\n elements?: Record<string, ElementStyleOverrides>;\n /** The default values for the element css-properties when the preset is selected */\n cssProperties?: Record<string, PresetStyleItemOverrides>;\n /** The default values for the element css-custom-properties when the preset is selected */\n cssCustomProperties?: Record<string, PresetStyleItemOverrides>;\n}\n\nexport interface PresetStyleItemOverrides {\n /** The override value of this style item */\n value?: any;\n /** The override values for the style item when the component is in one of the defined states */\n statesValues?: Record<string, any>;\n}\n\nexport interface ElementStyleOverrides {\n /**\n * The override preset for an element\n * @maxLength 100\n */\n presetKey?: string | null;\n /**\n * The override styles for an element\n * @deprecated The override styles for an element\n * @replacedBy cssProperties or cssCustomProperties\n * @targetRemovalDate 2025-08-01\n */\n style?: Record<string, PresetStyleItemOverrides>;\n /** The override preset and styles for inner elements */\n elements?: Record<string, ElementStyleOverrides>;\n /** The default values for the element css-properties when the preset is selected */\n cssProperties?: Record<string, PresetStyleItemOverrides>;\n /** The default values for the element css-custom-properties when the preset is selected */\n cssCustomProperties?: Record<string, PresetStyleItemOverrides>;\n}\n\nexport enum BreakpointEnumBreakpoint {\n UNKNOWN_Breakpoint = 'UNKNOWN_Breakpoint',\n /** Represents the small (mobile) breakpoint */\n small = 'small',\n /** Represents the large (desktop) breakpoint */\n large = 'large',\n}\n\n/** @enumType */\nexport type BreakpointEnumBreakpointWithLiterals =\n | BreakpointEnumBreakpoint\n | 'UNKNOWN_Breakpoint'\n | 'small'\n | 'large';\n\n/** Top-level message containing all layout capabilities */\nexport interface EditorElementLayout {\n /** The resizing capabilities this component can supports */\n resizeDirection?: ResizeDirectionWithLiterals;\n /** Describes the ability of content to impact on the size of this component */\n contentResizeDirection?: ContentResizeDirectionWithLiterals;\n /** Will control the availability of the stretch capability for this component */\n disableStretching?: boolean | null;\n /** Will control the availability of freely positioning this component */\n disablePositioning?: boolean | null;\n /** Will control if the editor allows rotating the element */\n disableRotation?: boolean | null;\n /** Information related to content that fills the whole component visible space */\n contentFill?: ContentFill;\n /** Will control the availability of the duplicate capability for this component */\n disableDuplication?: boolean | null;\n}\n\nexport enum ContentResizeDirection {\n /** Default value when content resize behavior is not specified */\n UNKNOWN_ContentResizeDirection = 'UNKNOWN_ContentResizeDirection',\n /** Component's width will automatically adjust based on its content */\n horizontal = 'horizontal',\n /** Component's height will automatically adjust based on its content */\n vertical = 'vertical',\n /** Component's width and height will automatically adjust based on its content */\n horizontalAndVertical = 'horizontalAndVertical',\n /** Component's size will not be affected by its content */\n none = 'none',\n}\n\n/** @enumType */\nexport type ContentResizeDirectionWithLiterals =\n | ContentResizeDirection\n | 'UNKNOWN_ContentResizeDirection'\n | 'horizontal'\n | 'vertical'\n | 'horizontalAndVertical'\n | 'none';\n\nexport interface ContentFill {\n /**\n * The key of the data-item that holds the content that fills the whole component visible space, using this will provide a better layout experiences for such components\n * Restricted to data-items that hold specific data-types: \"image\", \"video\", \"vectorArt\", \"container\"\n * @maxLength 100\n */\n dataItemKey?: string | null;\n}\n\nexport interface PresetElementDefaults {\n /**\n * The element display name when the preset is selected\n * @maxLength 100\n */\n displayName?: string | null;\n /** The default values for the element css-properties when the preset is selected */\n cssProperties?: Record<string, CssPropertyItemDefaults>;\n /** The default values for the element css-custom-properties when the preset is selected */\n cssCustomProperties?: Record<string, CssPropertyItemDefaults>;\n /** The default styles for the inner elements when the preset is selected */\n elements?: Record<string, PresetInnerElementDefaults>;\n /** Optional editor layout behaviors we want to apply when this preset is selected */\n layout?: EditorElementLayout;\n /**\n * Display filters for the Preset, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The Preset is the second in line to affect the display, Element is before and State is after it\n */\n displayFilters?: DisplayFilters;\n}\n\nexport interface CssPropertyItemDefaults {\n /** The default value of this css-property-item */\n defaultValue?: any;\n /** The default values for the css-property-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n}\n\nexport interface PresetInnerElementDefaults {\n /** The default values for the element css-properties */\n cssProperties?: Record<string, CssPropertyItemDefaults>;\n /** The default values for the element css-custom-properties */\n cssCustomProperties?: Record<string, CssPropertyItemDefaults>;\n /** The default preset and styles for inner elements */\n elements?: Record<string, PresetInnerElementDefaults>;\n}\n\nexport enum Archetype {\n UNKNOWN_Archetype = 'UNKNOWN_Archetype',\n Button = 'Button',\n LoginButton = 'LoginButton',\n Image = 'Image',\n Gallery = 'Gallery',\n Video = 'Video',\n Audio = 'Audio',\n Text = 'Text',\n TextInput = 'TextInput',\n RichTextEditor = 'RichTextEditor',\n SignatureInput = 'SignatureInput',\n Checkbox = 'Checkbox',\n RadioGroup = 'RadioGroup',\n Switch = 'Switch',\n Dropdown = 'Dropdown',\n DatePicker = 'DatePicker',\n TimePicker = 'TimePicker',\n Ratings = 'Ratings',\n RatingInput = 'RatingInput',\n Menu = 'Menu',\n Pagination = 'Pagination',\n Slider = 'Slider',\n Container = 'Container',\n Carousel = 'Carousel',\n Accordion = 'Accordion',\n Tabs = 'Tabs',\n ProgressBar = 'ProgressBar',\n Upload = 'Upload',\n Social = 'Social',\n Breadcrumbs = 'Breadcrumbs',\n SearchBox = 'SearchBox',\n Map = 'Map',\n Line = 'Line',\n Logo = 'Logo',\n Avatar = 'Avatar',\n Captcha = 'Captcha',\n VectorArt = 'VectorArt',\n AnimatedGraphic = 'AnimatedGraphic',\n Cart = 'Cart',\n ContactForm = 'ContactForm',\n Frame = 'Frame',\n Divider = 'Divider',\n}\n\n/** @enumType */\nexport type ArchetypeWithLiterals =\n | Archetype\n | 'UNKNOWN_Archetype'\n | 'Button'\n | 'LoginButton'\n | 'Image'\n | 'Gallery'\n | 'Video'\n | 'Audio'\n | 'Text'\n | 'TextInput'\n | 'RichTextEditor'\n | 'SignatureInput'\n | 'Checkbox'\n | 'RadioGroup'\n | 'Switch'\n | 'Dropdown'\n | 'DatePicker'\n | 'TimePicker'\n | 'Ratings'\n | 'RatingInput'\n | 'Menu'\n | 'Pagination'\n | 'Slider'\n | 'Container'\n | 'Carousel'\n | 'Accordion'\n | 'Tabs'\n | 'ProgressBar'\n | 'Upload'\n | 'Social'\n | 'Breadcrumbs'\n | 'SearchBox'\n | 'Map'\n | 'Line'\n | 'Logo'\n | 'Avatar'\n | 'Captcha'\n | 'VectorArt'\n | 'AnimatedGraphic'\n | 'Cart'\n | 'ContactForm'\n | 'Frame'\n | 'Divider';\n\nexport interface ElementState {\n /**\n * Display name of this state\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * The class-name to apply when this state is applied\n * @maxLength 100\n */\n className?: string | null;\n /** The pseudo-class to used to target this state in the browser */\n pseudoClass?: NativeStateTypeWithLiterals;\n /** The state props to apply when this state is applied */\n props?: Record<string, any>;\n /**\n * Display filters for the state, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor\n * The state is the last item to affect the display, Element and Preset are before it\n */\n displayFilters?: DisplayFilters;\n /** The element that needs to be targeted when this state is applied */\n target?: TargetElement;\n}\n\nexport enum NativeStateType {\n UNKNOWN_NativeStateType = 'UNKNOWN_NativeStateType',\n /** native browser \"hover\" state */\n hover = 'hover',\n /** native browser \"focus\" state */\n focus = 'focus',\n /** native browser \"disabled\" state */\n disabled = 'disabled',\n /** native browser \"invalid\" state */\n invalid = 'invalid',\n}\n\n/** @enumType */\nexport type NativeStateTypeWithLiterals =\n | NativeStateType\n | 'UNKNOWN_NativeStateType'\n | 'hover'\n | 'focus'\n | 'disabled'\n | 'invalid';\n\nexport interface TargetElement {\n /**\n * The path to the element that needs to be targeted when this state is applied.\n * @minLength 1\n * @maxLength 500\n */\n elementPath?: string;\n}\n\nexport interface VisibleState {\n /**\n * The key of the state that will trigger the visibility of this element\n * @minLength 1\n * @maxLength 100\n */\n stateKey?: string;\n /**\n * The path to the element that owns the relevant state to trigger, path pattern \"/elementkey/elementkey\"\n * @minLength 1\n * @maxLength 500\n */\n elementPath?: string;\n}\n\nexport interface DisplayGroupItem\n extends DisplayGroupItemSelectedGroupTypeOneOf {\n /** A group that contains cssCustomProperties items that used one of the supported css-data-types (length, angle, number, ..._) */\n cssDataType?: ItemsGroup;\n /** A group that contains data items */\n data?: ItemsGroup;\n /** A group that contains preset items, which will be displayed in the editor as a category in the presets panel */\n presets?: ItemsGroup;\n /** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used mostly for ordering purposes */\n cssCustomProperties?: ItemsGroup;\n /** A group that contains other displayGroups items that use the same groupType, should be used mostly for ordering purposes */\n displayGroups?: ItemsGroup;\n /** A group that contains background items */\n background?: ShorthandGroupBackground;\n /** A group that contains margin items */\n margin?: Coordinates;\n /** A group that contains padding items */\n padding?: Coordinates;\n /** A group that contains border items */\n border?: Border;\n /** A group that contains border-top items */\n borderTop?: Border;\n /** A group that contains border-right items */\n borderRight?: Border;\n /** A group that contains border-bottom items */\n borderBottom?: Border;\n /** A group that contains border-left items */\n borderLeft?: Border;\n /** A group that contains border-inline-start items */\n borderInlineStart?: Border;\n /** A group that contains border-inline-end items */\n borderInlineEnd?: Border;\n /** A group that contains border-radius items */\n borderRadius?: Corners;\n /** A group that contains font items */\n font?: Font;\n /** A group that contains text-decoration items */\n textDecoration?: TextDecoration;\n /** A group that contains gap items */\n gap?: Gap;\n /** A group that contains border-color items */\n borderColor?: Coordinates;\n /** A group that contains border-width items */\n borderWidth?: Coordinates;\n /** A group that contains border-style items */\n borderStyle?: Coordinates;\n /** a group that contains items related to text */\n text?: TextGroup;\n /** A group that contains data-items related to arrayItems, will be used for enhancing the editor experience when editing them */\n arrayItems?: DataGroupsArrayItems;\n /** A group that contains common data-items that are used within array-item objects, will be used for enhancing the editor experience when editing them */\n listItem?: ListItem;\n /**\n * Display name for this Group\n * @maxLength 20\n */\n displayName?: string | null;\n /** The type of the group, used to determine the group that will be displayed in the editor */\n groupType?: GroupTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DisplayGroupItemSelectedGroupTypeOneOf {\n /** A group that contains cssCustomProperties items that used one of the supported css-data-types (length, angle, number, ..._) */\n cssDataType?: ItemsGroup;\n /** A group that contains data items */\n data?: ItemsGroup;\n /** A group that contains preset items, which will be displayed in the editor as a category in the presets panel */\n presets?: ItemsGroup;\n /** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used mostly for ordering purposes */\n cssCustomProperties?: ItemsGroup;\n /** A group that contains other displayGroups items that use the same groupType, should be used mostly for ordering purposes */\n displayGroups?: ItemsGroup;\n /** A group that contains background items */\n background?: ShorthandGroupBackground;\n /** A group that contains margin items */\n margin?: Coordinates;\n /** A group that contains padding items */\n padding?: Coordinates;\n /** A group that contains border items */\n border?: Border;\n /** A group that contains border-top items */\n borderTop?: Border;\n /** A group that contains border-right items */\n borderRight?: Border;\n /** A group that contains border-bottom items */\n borderBottom?: Border;\n /** A group that contains border-left items */\n borderLeft?: Border;\n /** A group that contains border-inline-start items */\n borderInlineStart?: Border;\n /** A group that contains border-inline-end items */\n borderInlineEnd?: Border;\n /** A group that contains border-radius items */\n borderRadius?: Corners;\n /** A group that contains font items */\n font?: Font;\n /** A group that contains text-decoration items */\n textDecoration?: TextDecoration;\n /** A group that contains gap items */\n gap?: Gap;\n /** A group that contains border-color items */\n borderColor?: Coordinates;\n /** A group that contains border-width items */\n borderWidth?: Coordinates;\n /** A group that contains border-style items */\n borderStyle?: Coordinates;\n /** a group that contains items related to text */\n text?: TextGroup;\n /** A group that contains data-items related to arrayItems, will be used for enhancing the editor experience when editing them */\n arrayItems?: DataGroupsArrayItems;\n /** A group that contains common data-items that are used within array-item objects, will be used for enhancing the editor experience when editing them */\n listItem?: ListItem;\n}\n\nexport enum GroupType {\n UNKNOWN_GroupType = 'UNKNOWN_GroupType',\n cssDataType = 'cssDataType',\n /** Deprecated, use `data` instead; */\n dataType = 'dataType',\n /** Deprecated, use `presets` instead */\n preset = 'preset',\n data = 'data',\n presets = 'presets',\n cssCustomProperties = 'cssCustomProperties',\n displayGroups = 'displayGroups',\n /** Style Shorthand Groups */\n background = 'background',\n margin = 'margin',\n padding = 'padding',\n border = 'border',\n borderTop = 'borderTop',\n borderRight = 'borderRight',\n borderBottom = 'borderBottom',\n borderLeft = 'borderLeft',\n borderRadius = 'borderRadius',\n borderInlineStart = 'borderInlineStart',\n borderInlineEnd = 'borderInlineEnd',\n borderColor = 'borderColor',\n borderWidth = 'borderWidth',\n borderStyle = 'borderStyle',\n font = 'font',\n textDecoration = 'textDecoration',\n gap = 'gap',\n /** Mixed Variables Groups */\n text = 'text',\n /** Data Groups */\n arrayItems = 'arrayItems',\n /** Deprecated, use `listItem` instead */\n arrayItem = 'arrayItem',\n listItem = 'listItem',\n}\n\n/** @enumType */\nexport type GroupTypeWithLiterals =\n | GroupType\n | 'UNKNOWN_GroupType'\n | 'cssDataType'\n | 'dataType'\n | 'preset'\n | 'data'\n | 'presets'\n | 'cssCustomProperties'\n | 'displayGroups'\n | 'background'\n | 'margin'\n | 'padding'\n | 'border'\n | 'borderTop'\n | 'borderRight'\n | 'borderBottom'\n | 'borderLeft'\n | 'borderRadius'\n | 'borderInlineStart'\n | 'borderInlineEnd'\n | 'borderColor'\n | 'borderWidth'\n | 'borderStyle'\n | 'font'\n | 'textDecoration'\n | 'gap'\n | 'text'\n | 'arrayItems'\n | 'arrayItem'\n | 'listItem';\n\nexport interface ItemsGroup {\n /**\n * A list of items that should be in this group\n * @maxSize 300\n * @maxLength 100\n */\n items?: string[];\n}\n\nexport interface ShorthandGroupBackground {\n /**\n * Stores the background-color property of the background shorthand\n * @maxLength 100\n */\n backgroundColor?: string | null;\n /**\n * Stores the background-image property of the background shorthand\n * @maxLength 100\n */\n backgroundImage?: string | null;\n /**\n * Stores the background-position property of the background shorthand\n * @maxLength 100\n */\n backgroundPosition?: string | null;\n /**\n * Stores the background-size property of the background shorthand\n * @maxLength 100\n */\n backgroundSize?: string | null;\n /**\n * Stores the background-repeat property of the background shorthand\n * @maxLength 100\n */\n backgroundRepeat?: string | null;\n /**\n * Stores the background-origin property of the background shorthand\n * @maxLength 100\n */\n backgroundOrigin?: string | null;\n /**\n * Stores the background-clip property of the background shorthand\n * @maxLength 100\n */\n backgroundClip?: string | null;\n /**\n * Stores the background shorthand item itself, should be used when you want to achieve with this group partial editing of the background shorthand\n * @maxLength 100\n */\n background?: string | null;\n}\n\nexport interface Coordinates {\n /**\n * Stores the top coordinate of the property shorthand\n * @maxLength 100\n */\n top?: string | null;\n /**\n * Stores the right coordinate of the property shorthand\n * @maxLength 100\n */\n right?: string | null;\n /**\n * Stores the bottom coordinate of the property shorthand\n * @maxLength 100\n */\n bottom?: string | null;\n /**\n * Stores the left coordinate of the property shorthand\n * @maxLength 100\n */\n left?: string | null;\n /**\n * Stores the coordinates item of this shorthand\n * @maxLength 100\n */\n sides?: string | null;\n}\n\nexport interface Border {\n /**\n * Stores the width property of a border shorthand\n * @maxLength 100\n */\n width?: string | null;\n /**\n * Stores the style property of a border shorthand\n * @maxLength 100\n */\n style?: string | null;\n /**\n * Stores the color property of a border shorthand\n * @maxLength 100\n */\n color?: string | null;\n /**\n * Stores the border shorthand item itself, should be used when you want to achieve with this group partial editing of the border shorthand\n * @maxLength 100\n */\n border?: string | null;\n}\n\nexport interface Corners {\n /**\n * Stores the top-left property of the shorthand\n * @maxLength 100\n */\n topLeft?: string | null;\n /**\n * Stores the top-right property of the shorthand\n * @maxLength 100\n */\n topRight?: string | null;\n /**\n * Stores the bottom-right property of the shorthand\n * @maxLength 100\n */\n bottomRight?: string | null;\n /**\n * Stores the bottom-left property of the shorthand\n * @maxLength 100\n */\n bottomLeft?: string | null;\n /**\n * Stores the corners item of this shorthand\n * @maxLength 100\n */\n corners?: string | null;\n}\n\nexport interface Font {\n /**\n * Stores the font-style property of the font shorthand\n * @maxLength 100\n */\n fontStyle?: string | null;\n /**\n * Stores the font-variant property of the font shorthand\n * @maxLength 100\n */\n fontVariant?: string | null;\n /**\n * Stores the font-weight property of the font shorthand\n * @maxLength 100\n */\n fontWeight?: string | null;\n /**\n * Stores the font-size property of the font shorthand\n * @maxLength 100\n */\n fontSize?: string | null;\n /**\n * Stores the line-height property of the font shorthand\n * @maxLength 100\n */\n lineHeight?: string | null;\n /**\n * Stores the font-family property of the font shorthand\n * @maxLength 100\n */\n fontFamily?: string | null;\n /**\n * Stores the font shorthand item itself, should be used when you want to achieve with this group partial editing of the font shorthand\n * @maxLength 100\n */\n font?: string | null;\n}\n\nexport interface TextDecoration {\n /**\n * Stores the text-decoration-line property of the text-decoration shorthand\n * @maxLength 100\n */\n textDecorationLine?: string | null;\n /**\n * Stores the text-decoration-color property of the text-decoration shorthand\n * @maxLength 100\n */\n textDecorationColor?: string | null;\n /**\n * Stores the text-decoration-style property of the text-decoration shorthand\n * @maxLength 100\n */\n textDecorationStyle?: string | null;\n /**\n * Stores the text-decoration-thickness property of the text-decoration shorthand\n * @maxLength 100\n */\n textDecorationThickness?: string | null;\n /**\n * Stores the textDecoration shorthand item itself, should be used when you want to achieve with this group partial editing of the textDecoration shorthand\n * @maxLength 100\n */\n textDecoration?: string | null;\n}\n\nexport interface Gap {\n /**\n * Stores the row-gap property of the gap shorthand\n * @maxLength 100\n */\n rowGap?: string | null;\n /**\n * Stores the column-gap property of the gap shorthand\n * @maxLength 100\n */\n columnGap?: string | null;\n /**\n * Stores the gap shorthand item itself, should be used when you want to achieve with this group partial editing of the gap shorthand\n * @maxLength 100\n */\n gap?: string | null;\n}\n\nexport interface TextGroup {\n /**\n * Stores the font shorthand item itself, should be used when you want to achieve with this group partial editing of the font shorthand\n * @maxLength 100\n */\n font?: string | null;\n /**\n * Stores the font-style property for this text group\n * @maxLength 100\n */\n fontStyle?: string | null;\n /**\n * Stores the font-variant property for this text group\n * @maxLength 100\n */\n fontVariant?: string | null;\n /**\n * Stores the font-weight property of the font shorthand\n * @maxLength 100\n */\n fontWeight?: string | null;\n /**\n * Stores the font-size property for this text group\n * @maxLength 100\n */\n fontSize?: string | null;\n /**\n * Stores the line-height property for this text group\n * @maxLength 100\n */\n lineHeight?: string | null;\n /**\n * Stores the font-family property for this text group\n * @maxLength 100\n */\n fontFamily?: string | null;\n /**\n * Stores the color property for this text group\n * @maxLength 100\n */\n color?: string | null;\n /**\n * Stores the letter-spacing property for this text group\n * @maxLength 100\n */\n letterSpacing?: string | null;\n /**\n * Stores the text-align property for this text group\n * @maxLength 100\n */\n textAlign?: string | null;\n /**\n * Stores the text-transform property for this text group\n * @maxLength 100\n */\n textTransform?: string | null;\n /**\n * Stores the text-shadow property for this text group\n * @maxLength 100\n */\n textShadow?: string | null;\n /**\n * Stores the text-decoration-line property for this text group\n * @maxLength 100\n */\n textDecorationLine?: string | null;\n /**\n * Stores the writing-mode property for this text group\n * @maxLength 100\n */\n writingMode?: string | null;\n /**\n * Stores the direction data-item for this text group\n * @maxLength 100\n */\n direction?: string | null;\n /**\n * Stores the a11y data-item for this text group\n * @maxLength 100\n */\n a11y?: string | null;\n}\n\nexport interface DataGroupsArrayItems {\n /**\n * Stores the name of the 'arrayItems'\n * @maxLength 100\n */\n arrayItems?: string | null;\n /**\n * Stores the data-item of the currently selected index within the array items\n * @maxLength 100\n */\n selectedItemIndex?: string | null;\n}\n\nexport interface ListItem {\n /**\n * Stores the name of the 'arrayItems' that stores the list of items\n * @maxLength 100\n */\n arrayItems?: string | null;\n /**\n * Stores the key of the 'text' data-item that will be used for label of this list-item\n * @maxLength 100\n */\n label?: string | null;\n /**\n * Stores the key of the 'text', 'link' or 'webUrl' data-item that will be used for subtitle of this list-item\n * @maxLength 100\n */\n subtitle?: string | null;\n /**\n * Stores the key of the 'vectorArt' or 'image' data-item that will be used for thumbnail of this list-item\n * @maxLength 100\n */\n thumbnail?: string | null;\n}\n\nexport interface CssPropertyItem\n extends CssPropertyItemSelectedCssPropertyTypeOneOf {\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n /** Additional options to refine the background-image variable */\n backgroundImage?: BackgroundImage;\n /**\n * Will be used as displayName of this css-property-item\n * @maxLength 100\n */\n displayName?: string | null;\n /** The default value for the css-property-item when the component is in the \"regular\" state */\n defaultValue?: any;\n /** The default values for the css-property-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n}\n\n/** @oneof */\nexport interface CssPropertyItemSelectedCssPropertyTypeOneOf {\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n /** Additional options to refine the background-image variable */\n backgroundImage?: BackgroundImage;\n}\n\nexport interface BackgroundImage {\n /**\n * The image types allowed for this background-image property\n * @maxSize 6\n */\n imageTypes?: ImageTypeWithLiterals[];\n}\n\nexport enum ImageType {\n UNKNOWN_ImageType = 'UNKNOWN_ImageType',\n url = 'url',\n image = 'image',\n imageSet = 'imageSet',\n crossFade = 'crossFade',\n element = 'element',\n gradient = 'gradient',\n}\n\n/** @enumType */\nexport type ImageTypeWithLiterals =\n | ImageType\n | 'UNKNOWN_ImageType'\n | 'url'\n | 'image'\n | 'imageSet'\n | 'crossFade'\n | 'element'\n | 'gradient';\n\nexport interface CssCustomPropertyItem\n extends CssCustomPropertyItemSelectedCssPropertyTypeOneOf {\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n /** Additional options to refine the background-image variable */\n backgroundImage?: BackgroundImage;\n /** Additional options to refine the customEnum item */\n customEnum?: CustomPropertyEnum;\n /** Additional options to refine the number item */\n number?: CssNumber;\n /**\n * The type of the value this css-custom-property will store, can be either\n * [CSS properties](https://developer.mozilla.org/en-US/docs/Web/CSS/Properties) or\n * [CSS data types](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Values_and_Units/CSS_data_types) in Javascript naming format\n */\n cssPropertyType?: CssPropertyTypeWithLiterals;\n /**\n * Will be used as displayName of this css-property-item\n * @maxLength 100\n */\n displayName?: string | null;\n /** The default value for the css-property-item when the component is in the \"regular\" state */\n defaultValue?: any;\n /** The default values for the css-property-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n}\n\n/** @oneof */\nexport interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {\n /** Additional options to refine the filter variable */\n filter?: Filter;\n /** Additional options to refine the backdropFilter variable */\n backdropFilter?: BackdropFilter;\n /** Additional options to refine the display variable */\n display?: Display;\n /** Additional options to refine the writingMode variable */\n writingMode?: WritingMode;\n /** Additional options to refine the background variable */\n background?: Background;\n /** Additional options to refine the background-image variable */\n backgroundImage?: BackgroundImage;\n /** Additional options to refine the customEnum item */\n customEnum?: CustomPropertyEnum;\n /** Additional options to refine the number item */\n number?: CssNumber;\n}\n\n/**\n * The supported [CSS Property Types & CSS Data Types](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference#index) and\n * [CSS Data Types](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Values_and_Units/CSS_data_types) in Javascript naming format\n */\nexport enum CssPropertyType {\n UNKNOWN_CssPropertyType = 'UNKNOWN_CssPropertyType',\n /** css-data-types */\n number = 'number',\n string = 'string',\n angle = 'angle',\n length = 'length',\n percentage = 'percentage',\n lengthPercentage = 'lengthPercentage',\n blendMode = 'blendMode',\n customEnum = 'customEnum',\n time = 'time',\n /** background properties */\n background = 'background',\n backgroundSize = 'backgroundSize',\n backgroundColor = 'backgroundColor',\n backgroundImage = 'backgroundImage',\n backgroundClip = 'backgroundClip',\n backgroundOrigin = 'backgroundOrigin',\n backgroundPosition = 'backgroundPosition',\n backgroundRepeat = 'backgroundRepeat',\n backgroundAttachment = 'backgroundAttachment',\n /** margin properties */\n margin = 'margin',\n marginTop = 'marginTop',\n marginRight = 'marginRight',\n marginBottom = 'marginBottom',\n marginLeft = 'marginLeft',\n marginInlineStart = 'marginInlineStart',\n marginInlineEnd = 'marginInlineEnd',\n /** padding properties */\n padding = 'padding',\n paddingTop = 'paddingTop',\n paddingRight = 'paddingRight',\n paddingBottom = 'paddingBottom',\n paddingLeft = 'paddingLeft',\n paddingInlineStart = 'paddingInlineStart',\n paddingInlineEnd = 'paddingInlineEnd',\n /** border properties */\n border = 'border',\n borderWidth = 'borderWidth',\n borderStyle = 'borderStyle',\n borderColor = 'borderColor',\n borderTop = 'borderTop',\n borderTopColor = 'borderTopColor',\n borderTopWidth = 'borderTopWidth',\n borderTopStyle = 'borderTopStyle',\n borderRight = 'borderRight',\n borderRightColor = 'borderRightColor',\n borderRightWidth = 'borderRightWidth',\n borderRightStyle = 'borderRightStyle',\n borderBottom = 'borderBottom',\n borderBottomColor = 'borderBottomColor',\n borderBottomWidth = 'borderBottomWidth',\n borderBottomStyle = 'borderBottomStyle',\n borderLeft = 'borderLeft',\n borderLeftColor = 'borderLeftColor',\n borderLeftWidth = 'borderLeftWidth',\n borderLeftStyle = 'borderLeftStyle',\n borderInlineStart = 'borderInlineStart',\n borderInlineStartColor = 'borderInlineStartColor',\n borderInlineStartWidth = 'borderInlineStartWidth',\n borderInlineStartStyle = 'borderInlineStartStyle',\n borderInlineEnd = 'borderInlineEnd',\n borderInlineEndColor = 'borderInlineEndColor',\n borderInlineEndWidth = 'borderInlineEndWidth',\n borderInlineEndStyle = 'borderInlineEndStyle',\n /** border-radius properties */\n borderRadius = 'borderRadius',\n borderTopLeftRadius = 'borderTopLeftRadius',\n borderTopRightRadius = 'borderTopRightRadius',\n borderBottomRightRadius = 'borderBottomRightRadius',\n borderBottomLeftRadius = 'borderBottomLeftRadius',\n borderStartStartRadius = 'borderStartStartRadius',\n borderStartEndRadius = 'borderStartEndRadius',\n borderEndStartRadius = 'borderEndStartRadius',\n borderEndEndRadius = 'borderEndEndRadius',\n /** font properties */\n font = 'font',\n fontFamily = 'fontFamily',\n fontSize = 'fontSize',\n fontStretch = 'fontStretch',\n fontStyle = 'fontStyle',\n fontVariant = 'fontVariant',\n fontWeight = 'fontWeight',\n lineHeight = 'lineHeight',\n /** text properties */\n color = 'color',\n letterSpacing = 'letterSpacing',\n writingMode = 'writingMode',\n textAlign = 'textAlign',\n textTransform = 'textTransform',\n textShadow = 'textShadow',\n textOverflow = 'textOverflow',\n textIndent = 'textIndent',\n /** text-decoration properties */\n textDecoration = 'textDecoration',\n textDecorationColor = 'textDecorationColor',\n textDecorationLine = 'textDecorationLine',\n textDecorationStyle = 'textDecorationStyle',\n textDecorationThickness = 'textDecorationThickness',\n /** box related properties */\n boxShadow = 'boxShadow',\n opacity = 'opacity',\n overflow = 'overflow',\n /** layout properties */\n display = 'display',\n alignSelf = 'alignSelf',\n justifyContent = 'justifyContent',\n alignItems = 'alignItems',\n flexDirection = 'flexDirection',\n height = 'height',\n width = 'width',\n gap = 'gap',\n columnGap = 'columnGap',\n rowGap = 'rowGap',\n /** filters */\n filter = 'filter',\n backdropFilter = 'backdropFilter',\n /** media sizing & alignment */\n objectFit = 'objectFit',\n objectPosition = 'objectPosition',\n /** blending & compositing */\n mixBlendMode = 'mixBlendMode',\n isolation = 'isolation',\n /** stroke properties */\n stroke = 'stroke',\n strokeWidth = 'strokeWidth',\n strokeOpacity = 'strokeOpacity',\n /** fill properties */\n fill = 'fill',\n fillOpacity = 'fillOpacity',\n}\n\n/** @enumType */\nexport type CssPropertyTypeWithLiterals =\n | CssPropertyType\n | 'UNKNOWN_CssPropertyType'\n | 'number'\n | 'string'\n | 'angle'\n | 'length'\n | 'percentage'\n | 'lengthPercentage'\n | 'blendMode'\n | 'customEnum'\n | 'time'\n | 'background'\n | 'backgroundSize'\n | 'backgroundColor'\n | 'backgroundImage'\n | 'backgroundClip'\n | 'backgroundOrigin'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundAttachment'\n | 'margin'\n | 'marginTop'\n | 'marginRight'\n | 'marginBottom'\n | 'marginLeft'\n | 'marginInlineStart'\n | 'marginInlineEnd'\n | 'padding'\n | 'paddingTop'\n | 'paddingRight'\n | 'paddingBottom'\n | 'paddingLeft'\n | 'paddingInlineStart'\n | 'paddingInlineEnd'\n | 'border'\n | 'borderWidth'\n | 'borderStyle'\n | 'borderColor'\n | 'borderTop'\n | 'borderTopColor'\n | 'borderTopWidth'\n | 'borderTopStyle'\n | 'borderRight'\n | 'borderRightColor'\n | 'borderRightWidth'\n | 'borderRightStyle'\n | 'borderBottom'\n | 'borderBottomColor'\n | 'borderBottomWidth'\n | 'borderBottomStyle'\n | 'borderLeft'\n | 'borderLeftColor'\n | 'borderLeftWidth'\n | 'borderLeftStyle'\n | 'borderInlineStart'\n | 'borderInlineStartColor'\n | 'borderInlineStartWidth'\n | 'borderInlineStartStyle'\n | 'borderInlineEnd'\n | 'borderInlineEndColor'\n | 'borderInlineEndWidth'\n | 'borderInlineEndStyle'\n | 'borderRadius'\n | 'borderTopLeftRadius'\n | 'borderTopRightRadius'\n | 'borderBottomRightRadius'\n | 'borderBottomLeftRadius'\n | 'borderStartStartRadius'\n | 'borderStartEndRadius'\n | 'borderEndStartRadius'\n | 'borderEndEndRadius'\n | 'font'\n | 'fontFamily'\n | 'fontSize'\n | 'fontStretch'\n | 'fontStyle'\n | 'fontVariant'\n | 'fontWeight'\n | 'lineHeight'\n | 'color'\n | 'letterSpacing'\n | 'writingMode'\n | 'textAlign'\n | 'textTransform'\n | 'textShadow'\n | 'textOverflow'\n | 'textIndent'\n | 'textDecoration'\n | 'textDecorationColor'\n | 'textDecorationLine'\n | 'textDecorationStyle'\n | 'textDecorationThickness'\n | 'boxShadow'\n | 'opacity'\n | 'overflow'\n | 'display'\n | 'alignSelf'\n | 'justifyContent'\n | 'alignItems'\n | 'flexDirection'\n | 'height'\n | 'width'\n | 'gap'\n | 'columnGap'\n | 'rowGap'\n | 'filter'\n | 'backdropFilter'\n | 'objectFit'\n | 'objectPosition'\n | 'mixBlendMode'\n | 'isolation'\n | 'stroke'\n | 'strokeWidth'\n | 'strokeOpacity'\n | 'fill'\n | 'fillOpacity';\n\nexport interface CustomPropertyEnum {\n /** The type of the css-custom-property, used to define the type of the values allowed in the enum */\n cssPropertyType?: CssPropertyTypeWithLiterals;\n /**\n * The allowed value options for this custom enum\n * @maxSize 100\n */\n options?: CustomPropertyEnumOption[];\n}\n\nexport interface CustomPropertyEnumOption {\n /**\n * the enum value\n * @maxLength 100\n */\n value?: string;\n /**\n * Will be used as displayName of this enum option\n * @maxLength 100\n */\n displayName?: string | null;\n}\n\nexport interface CustomPropertyEnumOptionStyle {\n /**\n * the css property\n * @minLength 1\n * @maxLength 100\n */\n property?: string;\n /**\n * the css value\n * @minLength 1\n * @maxLength 300\n */\n value?: string;\n}\n\nexport interface HelpArticle extends HelpArticleArticleTypeOneOf {\n /**\n * A URL to an external help article\n * @format WEB_URL\n */\n url?: string | null;\n}\n\n/** @oneof */\nexport interface HelpArticleArticleTypeOneOf {\n /**\n * A URL to an external help article\n * @format WEB_URL\n */\n url?: string | null;\n}\n\nexport interface RefElement {\n /**\n * The type of the referenced element. Must exist in the Wix Dev Center and be fully typed (`appSlug.componentType`).\n * @minLength 4\n * @maxLength 100\n */\n type?: string;\n /**\n * The override of the used element selector, full path from root\n * @minLength 4\n * @maxLength 300\n */\n selector?: string;\n /**\n * The override of the used element displayName\n * @maxLength 50\n */\n displayName?: string;\n /** The override of the used element style */\n style?: Record<string, StyleItemOverrides>;\n /** The override of the used element data */\n data?: Record<string, DataItemOverrides>;\n /** The override of the used element behaviors */\n behaviors?: Behaviors;\n /** The override of the used element native actions */\n actions?: Actions;\n /** The override of the used element custom actions */\n customActions?: Record<string, Action>;\n /** A reference to a state that needs to be triggered in order for this element to be visible */\n visibleState?: VisibleState;\n /**\n * This is where you can override the display filter defined by the original element\n * The override is per field. So you can override: style items, data items, custom actions and elements or just some of them.\n * Any item not overridden will be inherited from the original element\n */\n displayFilters?: DisplayFilters;\n /** The default style & data for inner elements */\n elements?: Record<string, RefInnerElementDefaults>;\n /** A map of definition overrides for the css-properties that this element supports */\n cssProperties?: Record<string, CssPropertyItemDefinitionOverrides>;\n /** A map of definition overrides for the css-custom-properties that this element supports */\n cssCustomProperties?: Record<string, CssPropertyItemDefinitionOverrides>;\n /** A reference to a help article for this element */\n helpArticle?: HelpArticle;\n}\n\nexport interface DataItemOverrides\n extends DataItemOverridesSelectedDataTypeOneOf {\n /** Overrides the definition of what images should be supported */\n image?: ImageOverrides;\n /** Overrides the definition of what videos should be supported */\n video?: VideoOverrides;\n /** Overrides the definition of what vector arts should be supported */\n vectorArt?: VectorArtOverrides;\n /** Disables the ability to edit this data-item */\n disableEditing?: boolean | null;\n /** Overrides the default value of this data-item */\n defaultValue?: any;\n /**\n * Overrides the display name of this data-item\n * @maxLength 100\n */\n displayName?: string | null;\n /** Overrides the ability to delete this data-item value in the Editor UI */\n disableDeletion?: boolean | null;\n}\n\n/** @oneof */\nexport interface DataItemOverridesSelectedDataTypeOneOf {\n /** Overrides the definition of what images should be supported */\n image?: ImageOverrides;\n /** Overrides the definition of what videos should be supported */\n video?: VideoOverrides;\n /** Overrides the definition of what vector arts should be supported */\n vectorArt?: VectorArtOverrides;\n}\n\nexport interface ImageOverrides {\n /** media manager categories to open media manager filtered by the overriding component needs */\n category?: ImageCategoryTypesWithLiterals;\n}\n\nexport interface VideoOverrides {\n /** media manager categories to open media manager filtered by the overriding component needs */\n category?: VideoCategoryTypesWithLiterals;\n}\n\nexport interface VectorArtOverrides {\n /** media manager categories to open media manager filtered by the overriding component needs */\n category?: VectorArtCategoryTypesWithLiterals;\n}\n\nexport interface RefInnerElementDefaults {\n /** The default data for an element */\n data?: Record<string, any>;\n /** The default preset and styles for inner elements */\n elements?: Record<string, RefInnerElementDefaults>;\n /** A map of default values for the css-properties that this element supports */\n cssProperties?: Record<string, CssPropertyItemDefaults>;\n /** A map of default values for the css-properties that this element supports */\n cssCustomProperties?: Record<string, CssPropertyItemDefaults>;\n}\n\nexport interface CssPropertyItemDefinitionOverrides {\n /**\n * Will be used as displayName of this css-property-item\n * @maxLength 100\n */\n displayName?: string | null;\n /** Disables the ability to edit this css-property-item */\n disableEditing?: boolean | null;\n /** The default value for the css-property-item when the component is in the \"regular\" state */\n defaultValue?: any;\n /** The default values for the css-property-item when the component is in one of the defined states */\n statesDefaultValues?: Record<string, any>;\n}\n\nexport interface Interactions {\n /** @maxSize 7 */\n triggers?: TriggerWithLiterals[];\n /** @maxSize 1 */\n effectGroups?: EffectGroupWithLiterals[];\n}\n\nexport enum Trigger {\n UNKNOWN_TRIGGER = 'UNKNOWN_TRIGGER',\n /** When a compoent is hovered */\n hover = 'hover',\n /** When a component is clicked */\n click = 'click',\n /** When the component enters the viewport */\n viewEnter = 'viewEnter',\n /** Used for infinite-loop animations - mapped to `state` type of https://drafts.csswg.org/css-animations-2/#animation-trigger-type */\n pageVisible = 'pageVisible',\n /** Mapped to native ViewTimeline */\n viewProgress = 'viewProgress',\n /** Mapped to pointermove events on the element */\n pointerMove = 'pointerMove',\n /** Mapped to animationend events */\n animationEnd = 'animationEnd',\n}\n\n/** @enumType */\nexport type TriggerWithLiterals =\n | Trigger\n | 'UNKNOWN_TRIGGER'\n | 'hover'\n | 'click'\n | 'viewEnter'\n | 'pageVisible'\n | 'viewProgress'\n | 'pointerMove'\n | 'animationEnd';\n\nexport enum EffectGroup {\n UNKNOWN_EFFECT_GROUP = 'UNKNOWN_EFFECT_GROUP',\n /** Effects that are applied to the background layer of the component */\n background = 'background',\n}\n\n/** @enumType */\nexport type EffectGroupWithLiterals =\n | EffectGroup\n | 'UNKNOWN_EFFECT_GROUP'\n | 'background';\n\nexport interface InstallationInfo extends InstallationInfoTargetContainerOneOf {\n /** Which static container should the component be installed at */\n staticContainer?: StaticContainerWithLiterals;\n /** Default presets per breakpoint with which the component should be installed */\n presets?: DefaultPresets;\n /** Initial size with which the component should be added to the stage */\n initialSize?: ComponentInitialSize;\n}\n\n/** @oneof */\nexport interface InstallationInfoTargetContainerOneOf {\n /** Which static container should the component be installed at */\n staticContainer?: StaticContainerWithLiterals;\n}\n\nexport interface MarketplaceSPIConfig {\n /** URI where the SPI implementer is deployed */\n deploymentUri?: SpiBaseUri;\n}\n\nexport interface FormSchemaDynamicValuesSpiConfig {\n /** URI where the SPI Implementer is deployed. */\n uriConfig?: SpiBaseUri;\n /**\n * Form ID which contains dynamic fields.\n * @format GUID\n */\n formId?: string;\n /**\n * Field IDs which trigger loading of dynamic values.\n * @maxSize 100\n * @format GUID\n */\n fieldsIds?: string[];\n}\n\nexport interface BlogPaywallProviderConfig {\n /** Uri config */\n uriConfig?: SpiBaseUri;\n}\n\nexport interface RewardProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * Name of the reward that will be visible to the end users\n * @maxLength 100\n */\n rewardName?: string;\n /**\n * Description of the reward that will be visible to the end users, describing how the reward works\n * @maxLength 500\n */\n rewardDescription?: string;\n}\n\nexport interface ProductRestrictionsConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /** Product restrictions configuration. */\n productRestrictionsConfig?: RestrictionsConfig;\n}\n\nexport interface RestrictionsConfig {\n /**\n * Prices restrictions.\n *\n * Affected fields:\n * * `variantsInfo.variants.price.actualPrice.amount`\n * * `variantsInfo.variants.price.compareAtPrice.amount`\n * * `inventory.trackingMethod.quantity`\n */\n prices?: Restriction;\n /**\n * Options restrictions.\n *\n * Affected field: `options` (all nested fields except `linkedMedia`)\n */\n options?: Restriction;\n /**\n * Modifier restrictions.\n *\n * Affected field: `modifiers` (all nested fields except `linkedMedia`)\n */\n modifiers?: Restriction;\n /**\n * Inventory restrictions.\n *\n * Affected fields:\n * * `variantsInfo.variants.sku`\n * * `variantsInfo.variants.barcode`\n * * `inventory.trackingMethod.quantity`\n */\n inventory?: Restriction;\n /**\n * Pre order restrictions.\n *\n * Affected field: `inventory.preorderInfo`\n */\n preOrder?: Restriction;\n /** Whether to disallow product duplication or display a warning when duplicating a product. */\n duplicateProduct?: Restriction;\n}\n\nexport interface Restriction {\n /** Restriction level. */\n restrictionLevel?: RestrictionLevelWithLiterals;\n}\n\nexport enum RestrictionLevel {\n UNKNOWN_RESTRICTION_TYPE = 'UNKNOWN_RESTRICTION_TYPE',\n /** Users can edit the product field after acknowledging a warning modal. */\n WARNING = 'WARNING',\n /** Users **cannot** edit the product field. */\n LOCKED = 'LOCKED',\n}\n\n/** @enumType */\nexport type RestrictionLevelWithLiterals =\n | RestrictionLevel\n | 'UNKNOWN_RESTRICTION_TYPE'\n | 'WARNING'\n | 'LOCKED';\n\nexport interface FormSubmissionModerationSpiConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * Namespace names.\n * @maxSize 10\n */\n namespaceConfigs?: FormSubmissionModerationSpiNamespaceConfig[];\n}\n\nexport interface FormSubmissionModerationSpiNamespaceConfig {\n /**\n * The app which the form submissions belong to. For example, the namespace for the Wix Forms app is `wix.form_app.form`.\n *\n * Call `Get Submission` to retrieve the namespace.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string;\n /**\n * The ID of the specific form that will trigger form moderation.\n * This field is optional. If not provided, submissions from all forms will trigger the moderation.\n * @format GUID\n */\n formId?: string | null;\n /** Enable submission moderation. */\n submissionModerationEnabled?: boolean;\n}\n\nexport interface EventBadgesSpiConfig {\n /** URI where the SPI Implementer is deployed. */\n baseUri?: SpiBaseUri;\n /**\n * Events for which the SPI method should apply. If empty, applies to all events.\n * @maxSize 100\n * @format GUID\n */\n eventId?: string[];\n}\n\nexport interface OperationExecutorConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n}\n\n/** Back-office Customization */\nexport interface BackOfficeCustomization {\n /** Optional Header customization, if not provided the default header will be used */\n header?: Header;\n /** Optional sidebar customization, if not provided the default sidebar will be used */\n sidebar?: Sidebar;\n /** Optional sidepanel customization, if not provided, sidePanel will not be shown */\n leftPanel?: LeftPanel;\n /**\n * Optional list of page IDs that should kept alive on the client.\n * @maxSize 2\n */\n keepAlivePages?: KeepAlivePage[];\n}\n\nexport interface Header extends HeaderConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: HeaderConfig;\n displayOption?: ElementDisplayOptionWithLiterals;\n}\n\n/** @oneof */\nexport interface HeaderConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: HeaderConfig;\n}\n\nexport enum ElementDisplayOption {\n UNKNOWN_OPTION = 'UNKNOWN_OPTION',\n REMOVE = 'REMOVE',\n CUSTOMIZED = 'CUSTOMIZED',\n}\n\n/** @enumType */\nexport type ElementDisplayOptionWithLiterals =\n | ElementDisplayOption\n | 'UNKNOWN_OPTION'\n | 'REMOVE'\n | 'CUSTOMIZED';\n\n/** Header configuration, you can provide extensionId or using our platform header */\nexport interface HeaderConfig extends HeaderConfigHeaderConfigOneOf {\n platform?: PlatformHeaderConfig;\n widget?: HeaderWidgetConfig;\n /**\n * @min 48\n * @max 70\n */\n defaultHeight?: number | null;\n}\n\n/** @oneof */\nexport interface HeaderConfigHeaderConfigOneOf {\n platform?: PlatformHeaderConfig;\n widget?: HeaderWidgetConfig;\n}\n\n/** Platform header customization option */\nexport interface PlatformHeaderConfig {\n /**\n * Sidebar skin from WDS, dark, light.\n * @maxLength 20\n */\n theme?: string | null;\n /** Header logo */\n logo?: Logo;\n /**\n * Header menuItems / Popovers\n * @maxSize 10\n */\n menuDropdowns?: MenuDropdown[];\n /** Header platformized search configuration */\n searchConfig?: SearchConfig;\n}\n\n/** MenuItems links */\nexport interface MenuLink {\n /**\n * Link title\n * @minLength 2\n * @maxLength 100\n */\n title?: string;\n /**\n * Link url\n * @format WEB_URL\n */\n url?: string;\n}\n\n/** option to customize your header logo */\nexport interface Logo {\n /**\n * Logo image url\n * @format WEB_URL\n */\n imageUrl?: string;\n /**\n * Target url, choose where to navigate when clicking on the logo\n * @format WEB_URL\n */\n targetUrl?: string | null;\n}\n\n/** Header menu dropdown, (popover) */\nexport interface MenuDropdown {\n /**\n * MenuItem title\n * @minLength 2\n * @maxLength 50\n */\n title?: string;\n /**\n * Menu dropdown links\n * @maxSize 20\n */\n links?: MenuLink[];\n}\n\nexport interface SearchConfig {\n /** Weather include platformized search in header or not */\n visible?: boolean;\n}\n\n/** Header widget configuration, provide extensionId */\nexport interface HeaderWidgetConfig {\n /** @format GUID */\n extensionId?: string;\n}\n\nexport interface Sidebar extends SidebarConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: SidebarConfig;\n displayOption?: ElementDisplayOptionWithLiterals;\n}\n\n/** @oneof */\nexport interface SidebarConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: SidebarConfig;\n}\n\n/** Backoffice sidebar castomization options */\nexport interface SidebarConfig {\n /**\n * List of root sidebar items, categories or separators, if empty default sidebar will be shown\n * @maxSize 100\n */\n sidebarItems?: SidebarRootItem[];\n /**\n * Sidebar skin from WDS, dark, light.\n * @maxLength 20\n */\n theme?: string | null;\n /** Option to override sidebar header with customize extension */\n sidebarHeader?: SidebarWidget;\n /** Option to override sidebar footer with customize extension */\n sidebarFooter?: SidebarWidget;\n /**\n * List of sidebar entities that cannot be hidden by a restricted customization extension\n * @maxSize 200\n */\n nonRemovableSidebarEntities?: BackOfficeCustomizationSidebarEntity[];\n /**\n * ID of the top-level category where pages of private apps will be added\n * @maxLength 50\n */\n categoryIdForPrivateAppPages?: string | null;\n}\n\n/**\n * First Inner level of sidebar item, can contain pages or separators or categories\n * For separator no need to set item\n */\nexport interface SidebarChildItem extends SidebarChildItemItemOneOf {\n category?: SecondLevelCategory;\n page?: Page;\n type?: SidebarDataTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SidebarChildItemItemOneOf {\n category?: SecondLevelCategory;\n page?: Page;\n}\n\nexport enum SidebarDataType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n CATEGORY = 'CATEGORY',\n PAGE = 'PAGE',\n SEPARATOR = 'SEPARATOR',\n}\n\n/** @enumType */\nexport type SidebarDataTypeWithLiterals =\n | SidebarDataType\n | 'UNKNOWN_TYPE'\n | 'CATEGORY'\n | 'PAGE'\n | 'SEPARATOR';\n\n/** Represents sidebar category of second level */\nexport interface SecondLevelCategory {\n /**\n * Category id, should be unique\n * @format GUID\n */\n categoryId?: string;\n /**\n * Category label\n * @minLength 2\n * @maxLength 50\n */\n label?: string;\n /**\n * Category children, consist of pages, separators or categories, categories can be a child only on root level\n * @maxSize 100\n */\n children?: SidebarSecondLevelChildItem[];\n}\n\n/**\n * Second Inner level of sidebar item, can contain pages or separators\n * For separator no need to set item\n */\nexport interface SidebarSecondLevelChildItem\n extends SidebarSecondLevelChildItemItemOneOf {\n page?: Page;\n type?: SidebarDataTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SidebarSecondLevelChildItemItemOneOf {\n page?: Page;\n}\n\n/** Represents page item in the sidebar */\nexport interface Page {\n /** @format GUID */\n pageId?: string;\n}\n\n/** Represents sidebar category of root level */\nexport interface FirstLevelCategory {\n /**\n * Category id, should be unique\n * @minLength 4\n * @maxLength 36\n */\n categoryId?: string;\n /**\n * Category label\n * @minLength 2\n * @maxLength 50\n */\n label?: string;\n /**\n * Category icon, supported only on root level, will be ignores otherwise\n * [Wix Design System icon](https://www.wix-pages.com/wix-design-system-employees/?path=/story/foundations-icons--icons).\n * Use the full size key. The icon will be rendered in an appropriate size.\n * @minLength 3\n * @maxLength 50\n */\n icon?: string | null;\n /**\n * Category children, consist of pages, separators or categories, categories can be a child only on root level\n * @maxSize 100\n */\n children?: SidebarChildItem[];\n}\n\n/** Option to supply extension that will be shown in the sidebar */\nexport interface SidebarWidgetConfig {\n /** @format GUID */\n extensionId?: string | null;\n}\n\n/** Root level sidebar item, can be category or separator (when not setting category) */\nexport interface SidebarRootItem extends SidebarRootItemItemOneOf {\n category?: FirstLevelCategory;\n type?: SidebarDataTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface SidebarRootItemItemOneOf {\n category?: FirstLevelCategory;\n}\n\n/** Sidebar widget configuration */\nexport interface SidebarWidget extends SidebarWidgetConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: SidebarWidgetConfig;\n /** Widget display option */\n displayOption?: ElementDisplayOptionWithLiterals;\n}\n\n/** @oneof */\nexport interface SidebarWidgetConfigOneOf {\n /** Only set if option == CUSTOMIZED */\n customized?: SidebarWidgetConfig;\n}\n\n/** Represents a sidebar entity in a back office sidebar, used to configure required/hidden entities */\nexport interface BackOfficeCustomizationSidebarEntity\n extends BackOfficeCustomizationSidebarEntityItemOneOf {\n /**\n * Category id\n * @minLength 1\n * @maxLength 50\n */\n categoryId?: string | null;\n /**\n * Page id\n * @format GUID\n */\n pageId?: string | null;\n /**\n * App id\n * @format GUID\n */\n appId?: string | null;\n /** Sidebar entity type */\n type?: SidebarEntityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface BackOfficeCustomizationSidebarEntityItemOneOf {\n /**\n * Category id\n * @minLength 1\n * @maxLength 50\n */\n categoryId?: string | null;\n /**\n * Page id\n * @format GUID\n */\n pageId?: string | null;\n /**\n * App id\n * @format GUID\n */\n appId?: string | null;\n}\n\n/** Type of sidebar entity in a back office sidebar (cluster/category/page) */\nexport enum SidebarEntityType {\n UNKNOWN_TYPE = 'UNKNOWN_TYPE',\n CATEGORY = 'CATEGORY',\n PAGE = 'PAGE',\n APP = 'APP',\n}\n\n/** @enumType */\nexport type SidebarEntityTypeWithLiterals =\n | SidebarEntityType\n | 'UNKNOWN_TYPE'\n | 'CATEGORY'\n | 'PAGE'\n | 'APP';\n\nexport interface CoreApps {\n /**\n * List of core appIds to include in the dashboard. Only appIds present in the host's coreAppId list are allowed.\n * @maxSize 500\n * @format GUID\n */\n coreAppIds?: string[];\n}\n\nexport interface LeftPanel {\n widget?: LeftPanelWidgetConfig;\n /**\n * @min 300\n * @max 600\n */\n defaultWidth?: number | null;\n}\n\n/** sidePanel widget configuration, provide extensionId */\nexport interface LeftPanelWidgetConfig {\n /** @format GUID */\n extensionId?: string;\n}\n\nexport interface KeepAlivePage {\n /** @format GUID */\n pageId?: string;\n}\n\n/** SPI config - defines the relation between implementer URL and which types it is validates */\nexport interface ComponentEnricherConfig {\n /**\n * URI where the SPI Implementer is deployed\n * @maxLength 400\n */\n deploymentUri?: string;\n /**\n * Component types that will be enriched\n * @minSize 1\n * @maxSize 100\n */\n componentEnrichmentTypes?: ComponentTypeWithLiterals[];\n /** @maxSize 100 */\n componentTypesToView?: ComponentTypeWithLiterals[];\n}\n\n/** Back-office Restricted Customization */\nexport interface BackOfficeRestrictedCustomization {\n /**\n * List of entities to hide from sidebar\n * @maxSize 200\n */\n sidebarEntitiesToHide?: BackOfficeCustomizationSidebarEntity[];\n}\n\nexport interface AppPreviewProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * Used to redirect to app overview\n * @maxLength 50\n */\n slug?: string | null;\n}\n\nexport interface LegendsSpiConfig {\n /**\n * URI where the SPI Implementer is deployed.\n * @maxLength 1000\n */\n deploymentUri?: string;\n /**\n * Legacy configuration of namespaces known by implementer.\n * @maxSize 5\n */\n namespaceConfigs?: NamespaceConfig[];\n /** Configuration of namespaces known by implementer V2. */\n namespaceConfigsV2?: NamespaceConfigV2;\n}\n\nexport interface NamespaceConfig {\n /**\n * Namespace name.\n * @maxLength 100\n */\n namespace?: string;\n /** PersonaService permissions associated with this namespace. */\n personaPermissions?: Permissions;\n /** KnowledgeService permissions associated with this namespace. */\n knowledgePermissions?: Permissions;\n /** MediaService permissions associated with this namespace. */\n mediaPermissions?: Permissions;\n /** PersonaChatService permissions associated with this namespace. */\n chatPermissions?: Permissions;\n /** AvatarService permissions associated with this namespace. */\n avatarPermissions?: Permissions;\n /** PitchService permissions associated with this namespace. */\n pitchPermissions?: Permissions;\n /** VoiceService permissions associated with this namespace. */\n voicePermissions?: Permissions;\n /** PersonaInsightsService permissions associated with this namespace. */\n personaInsightsPermissions?: Permissions;\n /** PersonaTopicClusteringService permissions associated with this namespace. */\n personaTopicClusteringPermissions?: Permissions;\n}\n\nexport interface Permissions {\n /**\n * Create permission.\n * @maxLength 50\n */\n create?: string;\n /**\n * Read permission.\n * @maxLength 50\n */\n read?: string;\n /**\n * Update permission.\n * @maxLength 50\n */\n update?: string;\n /**\n * Delete permission.\n * @maxLength 50\n */\n delete?: string;\n /**\n * Custom permissions\n * @maxSize 10\n */\n custom?: CustomPermission[];\n}\n\nexport interface CustomPermission {\n /**\n * The name of the custom permission.\n * @maxLength 50\n */\n name?: string;\n /**\n * The description of the custom permission.\n * @maxLength 50\n */\n permission?: string;\n}\n\nexport interface NamespaceConfigV2 {\n /**\n * Namespace name.\n * @maxLength 200\n */\n namespace?: string;\n /** Map of service name to its permissions. */\n servicePermissions?: Record<string, Permissions>;\n}\n\nexport interface AppDeploymentProviderConfig {\n /** URI where the SPI implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * `true` if SPI implementer provides custom permission checks API calls\n *\n * Default: `false`\n */\n toggleIsPermitted?: boolean;\n /**\n * `true` if SPI implementer provides override cloud provider logic for CreateAppDeployment API calls\n *\n * Default: `false`\n */\n toggleOverrideCloudProvider?: boolean;\n}\n\nexport interface BackendWorker {\n /**\n * BAAS deployment ID\n * @format GUID\n */\n deploymentId?: string;\n /**\n * BAAS deployment URL\n * @format WEB_URL\n */\n deploymentUrl?: string | null;\n /**\n * User assigned label\n * @maxLength 200\n */\n label?: string | null;\n /**\n * Deployment git commit hash\n * @maxLength 40\n */\n commitHash?: string | null;\n}\n\nexport interface EventTimeSlotsProviderConfig {\n /** Reserved. */\n deploymentUri?: SpiBaseUri;\n /**\n * Filter to base retrieved events on, for bookings it could be `{\"type\": \"CLASS\"}`.\n * See the [supported filters article](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters)\n * for a complete list of supported filters.\n */\n eventFilter?: Record<string, any> | null;\n /**\n * event service id field, that will be used to map the event.\n * i.e. \"externalScheduleId\"\n * @maxLength 100\n */\n eventServiceIdField?: string | null;\n /** whether listExcludedServiceIds is enabled. */\n toggleListExcludedServiceIdsEnabled?: boolean;\n}\n\nexport interface AppEnvironmentProviderConfig {\n /** URI where the SPI implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * `true` if SPI implementer provides custom permission checks API calls\n *\n * Default: `false`\n */\n toggleIsAppEnvironmentPermitted?: boolean;\n}\n\n/** SDK exports specify the metadata of a module. */\nexport interface SDKExports {\n /** Npm data that */\n importMetadata?: SDKExportsNpm;\n /** The export definition of a module */\n exportMetadata?: ExportMetadata;\n /** The maturity of the SDK exports */\n exposureAndMaturity?: ExtensionExposure;\n /** Map peer dependency package name to its version */\n peerDependencies?: Record<string, string>;\n /** Map dev dependency package name to its version */\n devDependencies?: Record<string, string>;\n /**\n * List of peer dependency package names that are optional\n * @maxLength 200\n * @maxSize 200\n */\n optionalPeerDependencies?: string[];\n}\n\nexport interface SDKExportsNpm {\n /**\n * Npm package name\n * @minLength 2\n * @maxLength 100\n */\n packageName?: string;\n /**\n * Npm semantic version\n * @minLength 2\n * @maxLength 100\n */\n packageVersion?: string;\n /**\n * Package entry point, default to main entry\n * @minLength 2\n * @maxLength 100\n */\n specifier?: string | null;\n /**\n * Imported name, default to default import\n * @minLength 2\n * @maxLength 100\n */\n importedName?: string | null;\n}\n\nexport interface ExportMetadata {\n /**\n * Exported name of a module\n * @maxLength 100\n */\n exportedName?: string | null;\n /**\n * Package entry point, default to main entry\n * @minLength 2\n * @maxLength 100\n */\n relativeSpecifier?: string | null;\n}\n\n/** A service to be used by components and apps in the viewer and editor */\nexport interface ViewerService {\n /**\n * A unique package name of the service,@wix/site-environment, to be used when calling the `getService` API\n * @minLength 7\n * @maxLength 80\n */\n packageName?: string;\n /** The viewer implemenation of this service, *bundle* is required */\n viewer?: ViewerServiceAssets;\n /** The optional editor implementation of this service, optional (if you need a different version for the editor) */\n editor?: ViewerServiceAssets;\n /**\n * A short description of this service\n * @maxLength 50\n */\n description?: string | null;\n /**\n * A link to documentation by the article Id, example: \"https://dev.wix.com/docs/editor/components/viewer-service\"\n * @format WEB_URL\n */\n docLink?: string | null;\n}\n\nexport interface ViewerServiceAssets {\n /**\n * The bundle of this javascript resource in production, example: \"https://static.parastorage.com/services/wix-site-environment/1.0.0/bundle.min.js\"\n * @format WEB_URL\n */\n bundle?: string;\n /**\n * The package names of other *Wix* services this service may depend on based on their unique package name, example: [\"@wix/site-environment\", \"@wix/site-language\"]\n * @maxSize 20\n * @maxLength 80\n */\n dependencies?: string[];\n}\n\nexport interface ProviderAccountServicePluginConfig {\n /** The base URI where all the methods are deployed. */\n baseUri?: SpiBaseUri;\n}\n\nexport interface ProviderConfigMessage {\n /** Base URI for the provider */\n baseUri?: SpiBaseUri;\n /** Specifies which optional SPI methods this provider implements. */\n implementedMethods?: V2ImplementedMethods;\n /**\n * A list of capabilities supported by the provider.\n * Can be used in conjunction with ListFilteringCapabilities.\n * When a provider first integrates with segments, we allow to pass empty filtering_capabilities, and to gradually add capabilities.\n * a provider with 0 capabilities will not be shown in the UI.\n * @maxSize 20\n */\n filteringCapabilities?: FilteringCapability[];\n /**\n * Human-readable name of the provider for UI display (e.g., \"Wix eCommerce\", \"Customer Reviews\")\n * @maxLength 100\n */\n name?: string;\n /**\n * description explaining what this provider offers\n * @maxLength 500\n */\n description?: string;\n /**\n * identifier of the specific component. Allows a single app to have multiple providers.\n * @minLength 1\n * @maxLength 20\n */\n key?: string | null;\n}\n\nexport interface V2ImplementedMethods {\n /**\n * whether or not the provider supports dynamic capabilities.\n * If true, ListFilteringCapabilities will be called to fetch dynamic capabilities.\n * if both dynamic and static capabilities are declared, the list of capabilities will be merged.\n */\n listFilteringCapabilities?: boolean;\n}\n\n/** Capability for supported filters */\nexport interface FilteringCapability {\n /**\n * Name of the attribute that can be filtered (e.g., \"email\", \"age\", \"last_purchase_date\").\n * For custom fields, may include type and format information (e.g., \"_user_fields.custom_field_name.string.date\").\n * Maximum length supports Data Extension field names up to 64 characters with type/format qualifiers.\n * @maxLength 100\n */\n attributeName?: string;\n /**\n * Human-readable display name for the attribute shown in UI.\n * @maxLength 64\n */\n displayName?: string;\n /**\n * Description explaining what this attribute represents.\n * @maxLength 200\n */\n description?: string;\n /**\n * operators and parameters supported for this attribute.\n * @maxSize 20\n */\n operatorConfigurations?: OperatorConfiguration[];\n /**\n * Optional time constraints that can be applied to this filter.\n * @maxSize 10\n */\n supportedTimeConstraints?: TimeConstraintConfiguration[];\n /** The filter requires a time constraint. */\n timeConstraintRequired?: boolean;\n /** The category of the filtering capability. */\n category?: CategoryWithLiterals;\n}\n\n/** Operator definition with its required parameters. */\nexport interface OperatorConfiguration {\n /**\n * List of operators supported for this configuration (e.g., EQ, GT, IN).\n * @maxSize 10\n * @minSize 1\n */\n supportedOperators?: OperatorEnumOperatorWithLiterals[];\n /**\n * Parameters required for this operator (e.g., multiple parameters for \"BETWEEN\").\n * @maxSize 5\n */\n parameters?: Parameter[];\n}\n\n/**\n * Supported filter operators.\n * These are used by the API to define a filter and by the SPI to declare supported operations.\n * NOTICE: this list is not exhaustive and may change over time.\n */\nexport enum OperatorEnumOperator {\n UNKNOWN_OPERATOR = 'UNKNOWN_OPERATOR',\n /** [Comparison] Matches values that are equal to a specified value. */\n EQ = 'EQ',\n /** [Comparison] Matches all values that are not equal to a specified value. */\n NEQ = 'NEQ',\n /** [Comparison] Matches values that are greater than a specified value. */\n GT = 'GT',\n /** [Comparison] Matches values that are greater than or equal to a specified value. */\n GTE = 'GTE',\n /** [Comparison] Matches values that are less than a specified value. */\n LT = 'LT',\n /** [Comparison] Matches values that are less than or equal to a specified value. */\n LTE = 'LTE',\n /** [Comparison] Matches values that fall within a specified range (inclusive). */\n BETWEEN = 'BETWEEN',\n /** [Comparison] Matches any of the values specified in an array. */\n IN = 'IN',\n /** [Comparison] Matches none of the values specified in an array. */\n NIN = 'NIN',\n /** [Existence] Matches values that are empty (e.g., empty string, null). */\n EMPTY = 'EMPTY',\n /** [Existence] Matches values that are not empty (e.g., non-empty string, not null). */\n NOT_EMPTY = 'NOT_EMPTY',\n /** [String] Matches values that start with a specified prefix. */\n STARTS_WITH = 'STARTS_WITH',\n /** [Array] Matches values that contain all specified items in an array. */\n WITH_ALL = 'WITH_ALL',\n /** [Array] Matches values that contain at least one of the specified items in an array. */\n WITH_SOME_OF = 'WITH_SOME_OF',\n /**\n * matches any value.\n * Example usage - \"user bought ANY product\"\n */\n ANY = 'ANY',\n /**\n * [Array] Negation of WITH_SOME_OF - matches when the contact's values contain\n * none of the specified items. Returns true for contacts with empty/no values.\n */\n WITH_NONE_OF = 'WITH_NONE_OF',\n}\n\n/** @enumType */\nexport type OperatorEnumOperatorWithLiterals =\n | OperatorEnumOperator\n | 'UNKNOWN_OPERATOR'\n | 'EQ'\n | 'NEQ'\n | 'GT'\n | 'GTE'\n | 'LT'\n | 'LTE'\n | 'BETWEEN'\n | 'IN'\n | 'NIN'\n | 'EMPTY'\n | 'NOT_EMPTY'\n | 'STARTS_WITH'\n | 'WITH_ALL'\n | 'WITH_SOME_OF'\n | 'ANY'\n | 'WITH_NONE_OF';\n\n/** Parameter definition for parameterized filters */\nexport interface Parameter extends ParameterValueDefinitionDetailsOneOf {\n /** For STRING_LIST */\n stringListOptions?: StringListOptions;\n /** For INT64_LIST */\n intListOptions?: IntListOptions;\n /** For DECIMAL_LIST */\n decimalListOptions?: DecimalListOptions;\n /** For BOOL_LIST */\n boolListOptions?: BoolListOptions;\n /** For CURRENCY_CODE_LIST */\n currencyListOptions?: CurrencyCodeListOptions;\n /** For LANGUAGE_LIST */\n languageTagListOptions?: LanguageTagListOptions;\n /** For ITEM_SELECTION */\n itemSelectionOptions?: ItemSelectionOptions;\n /**\n * Name or identifier of the parameter.\n * @maxLength 30\n */\n name?: string;\n /**\n * Human-readable display name for the parameter shown in UI.\n * @maxLength 30\n */\n displayName?: string;\n /** Data type of the parameter value. */\n type?: ParameterTypeWithLiterals;\n /** Whether this parameter is required for the operation. */\n mandatory?: boolean;\n /** Whether this parameter can accept multiple values (e.g., for IN operator). */\n repeated?: boolean;\n /**\n * The primary mode determining how values are defined.\n * This drives the 'value_definition_details' oneof.\n */\n definitionMode?: FilterValueDefinitionModeWithLiterals;\n}\n\n/** @oneof */\nexport interface ParameterValueDefinitionDetailsOneOf {\n /** For STRING_LIST */\n stringListOptions?: StringListOptions;\n /** For INT64_LIST */\n intListOptions?: IntListOptions;\n /** For DECIMAL_LIST */\n decimalListOptions?: DecimalListOptions;\n /** For BOOL_LIST */\n boolListOptions?: BoolListOptions;\n /** For CURRENCY_CODE_LIST */\n currencyListOptions?: CurrencyCodeListOptions;\n /** For LANGUAGE_LIST */\n languageTagListOptions?: LanguageTagListOptions;\n /** For ITEM_SELECTION */\n itemSelectionOptions?: ItemSelectionOptions;\n}\n\n/** Supported parameter data types */\nexport enum ParameterType {\n UNKNOWN_PARAMETER_TYPE = 'UNKNOWN_PARAMETER_TYPE',\n STRING = 'STRING',\n INT = 'INT',\n DECIMAL = 'DECIMAL',\n BOOL = 'BOOL',\n /** ISO 4217 currency codes */\n CURRENCY = 'CURRENCY',\n /** ISO 639-1 language code */\n LANGUAGE = 'LANGUAGE',\n /** Money type with amount and currency */\n MONEY = 'MONEY',\n /** Country with optional subdivision */\n COUNTRY_WITH_SUBDIVISION = 'COUNTRY_WITH_SUBDIVISION',\n}\n\n/** @enumType */\nexport type ParameterTypeWithLiterals =\n | ParameterType\n | 'UNKNOWN_PARAMETER_TYPE'\n | 'STRING'\n | 'INT'\n | 'DECIMAL'\n | 'BOOL'\n | 'CURRENCY'\n | 'LANGUAGE'\n | 'MONEY'\n | 'COUNTRY_WITH_SUBDIVISION';\n\n/**\n * This new enum becomes the primary driver for the 'value_definition_details' oneof.\n * It explicitly lists each way a filter parameter's values can be defined.\n */\nexport enum FilterValueDefinitionMode {\n UNKNOWN_FILTER_VALUE_DEFINITION_MODE = 'UNKNOWN_FILTER_VALUE_DEFINITION_MODE',\n /**\n * For \"any value\": Relies on 'FilterParameterDefinition.fundamental_data_type'.\n * No specific message will be set in the 'value_definition_details' oneof.\n */\n ANY_VALUE_OF_SPECIFIED_TYPE = 'ANY_VALUE_OF_SPECIFIED_TYPE',\n /** pikachu */\n ITEM_SELECTION = 'ITEM_SELECTION',\n STRING_LIST = 'STRING_LIST',\n INT_LIST = 'INT_LIST',\n DECIMAL_LIST = 'DECIMAL_LIST',\n BOOL_LIST = 'BOOL_LIST',\n CURRENCY_LIST = 'CURRENCY_LIST',\n LANGUAGE_TAG_LIST = 'LANGUAGE_TAG_LIST',\n}\n\n/** @enumType */\nexport type FilterValueDefinitionModeWithLiterals =\n | FilterValueDefinitionMode\n | 'UNKNOWN_FILTER_VALUE_DEFINITION_MODE'\n | 'ANY_VALUE_OF_SPECIFIED_TYPE'\n | 'ITEM_SELECTION'\n | 'STRING_LIST'\n | 'INT_LIST'\n | 'DECIMAL_LIST'\n | 'BOOL_LIST'\n | 'CURRENCY_LIST'\n | 'LANGUAGE_TAG_LIST';\n\nexport interface StringListOptions {\n /**\n * List of predefined string options that can be selected.\n * @maxSize 20\n */\n options?: StringOption[];\n}\n\nexport interface StringOption {\n /**\n * Internal value/key used in filter evaluation.\n * @maxLength 50\n */\n value?: string;\n /**\n * Human-readable display name shown in UI.\n * @maxLength 50\n */\n displayName?: string;\n}\n\nexport interface IntListOptions {\n /**\n * List of predefined integer values that can be selected.\n * @maxSize 20\n */\n values?: string[];\n}\n\nexport interface DecimalListOptions {\n /**\n * List of predefined decimal values that can be selected.\n * Uses string representation of decimals for accuracy.\n * @maxSize 20\n * @maxLength 50\n */\n values?: string[];\n}\n\nexport interface BoolListOptions {\n /**\n * List of predefined boolean values that can be selected.\n * @maxSize 2\n */\n values?: boolean[];\n}\n\nexport interface CurrencyCodeListOptions {\n /**\n * List of predefined currency codes that can be selected.\n * ISO 4217 alphabetic codes (e.g., \"USD\", \"EUR\", \"GBP\").\n * @maxSize 20\n * @format CURRENCY\n */\n values?: string[];\n}\n\nexport interface LanguageTagListOptions {\n /**\n * List of predefined language codes that can be selected.\n * ISO 639-1 language codes (e.g., \"en\", \"es\", \"fr\").\n * @maxSize 20\n * @format LANGUAGE_TAG\n */\n values?: string[];\n}\n\nexport interface ItemSelectionOptions {\n /** @maxLength 200 */\n entityReference?: string;\n}\n\n/** TimeConstraintCapability and related messages for detailed time constraint validation */\nexport interface TimeConstraintConfiguration\n extends TimeConstraintConfigurationValueConstraintsOneOf {\n /** For LAST_DAYS, NEXT_DAYS - only specific allowed values */\n predefinedValuesOptions?: PredefinedValues;\n /** For LAST_DAYS, NEXT_DAYS - any value within a min-max range */\n minMaxRangeOptions?: MinMaxRange;\n /** For BETWEEN - range validation */\n rangeOptions?: RangeConstraints;\n /** The type of time constraint */\n type?: TimeConstraintTypeWithLiterals;\n /** The type of value constraint to apply */\n valueConstraintType?: ValueConstraintTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface TimeConstraintConfigurationValueConstraintsOneOf {\n /** For LAST_DAYS, NEXT_DAYS - only specific allowed values */\n predefinedValuesOptions?: PredefinedValues;\n /** For LAST_DAYS, NEXT_DAYS - any value within a min-max range */\n minMaxRangeOptions?: MinMaxRange;\n /** For BETWEEN - range validation */\n rangeOptions?: RangeConstraints;\n}\n\n/**\n * Supported time-window types for a capability.\n * These are used by the API to define a filter and by the SPI to declare supported time constraints.\n */\nexport enum TimeConstraintType {\n UNKNOWN_TIME_CONSTRAINT_TYPE = 'UNKNOWN_TIME_CONSTRAINT_TYPE',\n /** In the last given days. */\n LAST_DAYS = 'LAST_DAYS',\n /** In the next given days. */\n NEXT_DAYS = 'NEXT_DAYS',\n /** Between two specific dates: fromDate and toDate must be set */\n BETWEEN = 'BETWEEN',\n /** Today */\n TODAY = 'TODAY',\n /** This month */\n THIS_MONTH = 'THIS_MONTH',\n /** On or after a specific date: fromDate must be set */\n ON_OR_AFTER = 'ON_OR_AFTER',\n /** On or before a specific date: toDate must be set */\n ON_OR_BEFORE = 'ON_OR_BEFORE',\n /** In the last given months. */\n LAST_MONTHS = 'LAST_MONTHS',\n /** In the next given months. */\n NEXT_MONTHS = 'NEXT_MONTHS',\n}\n\n/** @enumType */\nexport type TimeConstraintTypeWithLiterals =\n | TimeConstraintType\n | 'UNKNOWN_TIME_CONSTRAINT_TYPE'\n | 'LAST_DAYS'\n | 'NEXT_DAYS'\n | 'BETWEEN'\n | 'TODAY'\n | 'THIS_MONTH'\n | 'ON_OR_AFTER'\n | 'ON_OR_BEFORE'\n | 'LAST_MONTHS'\n | 'NEXT_MONTHS';\n\n/** Enum for the different types of value constraints */\nexport enum ValueConstraintType {\n UNKNOWN_VALUE_CONSTRAINT_TYPE = 'UNKNOWN_VALUE_CONSTRAINT_TYPE',\n /** No constraints - user can enter any value */\n NONE = 'NONE',\n /** Provider supports only specific predefined values */\n PREDEFINED_VALUES = 'PREDEFINED_VALUES',\n /** Provider supports any value within a min-max range */\n MIN_MAX_RANGE = 'MIN_MAX_RANGE',\n /** Provider supports range constraints for date ranges */\n RANGE = 'RANGE',\n}\n\n/** @enumType */\nexport type ValueConstraintTypeWithLiterals =\n | ValueConstraintType\n | 'UNKNOWN_VALUE_CONSTRAINT_TYPE'\n | 'NONE'\n | 'PREDEFINED_VALUES'\n | 'MIN_MAX_RANGE'\n | 'RANGE';\n\n/** List of specific allowed values (e.g., [1, 3, 7, 30]) */\nexport interface PredefinedValues {\n /**\n * List of allowed values for the constraint\n * @maxSize 10\n * @min 1\n */\n allowedValues?: number[];\n}\n\n/** Minimum and maximum allowed value (inclusive) */\nexport interface MinMaxRange {\n /**\n * Minimum value for the constraint\n * @min 1\n */\n minValue?: number;\n /**\n * Maximum value for the constraint\n * @min 1\n */\n maxValue?: number;\n}\n\n/** Constraints for TIME_CONSTRAINT_BETWEEN (date range selection) */\nexport interface RangeConstraints {\n /**\n * Maximum allowed range in days (e.g., max 365 days between start and end)\n * @min 1\n */\n maxRangeDays?: number | null;\n}\n\nexport enum Category {\n UNKNOWN_CATEGORY = 'UNKNOWN_CATEGORY',\n CONTACT_ATTRIBUTES = 'CONTACT_ATTRIBUTES',\n CONTACT_ACTIVITIES = 'CONTACT_ACTIVITIES',\n EMAIL_MARKETING = 'EMAIL_MARKETING',\n MESSAGING_CAMPAIGNS = 'MESSAGING_CAMPAIGNS',\n BOOKING_SERVICES = 'BOOKING_SERVICES',\n STORES = 'STORES',\n EVENTS = 'EVENTS',\n PRICING_PLANS = 'PRICING_PLANS',\n ECOMMERCE = 'ECOMMERCE',\n GETTING_PAID = 'GETTING_PAID',\n OTHER = 'OTHER',\n}\n\n/** @enumType */\nexport type CategoryWithLiterals =\n | Category\n | 'UNKNOWN_CATEGORY'\n | 'CONTACT_ATTRIBUTES'\n | 'CONTACT_ACTIVITIES'\n | 'EMAIL_MARKETING'\n | 'MESSAGING_CAMPAIGNS'\n | 'BOOKING_SERVICES'\n | 'STORES'\n | 'EVENTS'\n | 'PRICING_PLANS'\n | 'ECOMMERCE'\n | 'GETTING_PAID'\n | 'OTHER';\n\nexport interface ProductCatalogProviderConfig {\n /** base uri */\n baseUri?: SpiBaseUri;\n}\n\nexport interface SiteMigrationSpiConfig {\n /**\n * @minLength 1\n * @maxLength 200\n */\n deploymentUri?: string;\n}\n\nexport interface PosProviderSettingsServicePluginConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * display name\n * @minLength 1\n * @maxLength 100\n */\n displayName?: string | null;\n /**\n * Configuration specifying which fields of each menu-related entity\n * are managed by the POS and therefore disabled in the Wix UI.\n * Only fields listed here are considered disabled; all others remain editable in Wix.\n */\n managedMenuEntities?: ManagedMenuEntities;\n}\n\nexport interface ManagedMenuEntities {\n /** menu override config */\n menu?: FieldManagementConfig;\n /** section override config */\n section?: FieldManagementConfig;\n /** item override config */\n item?: FieldManagementConfig;\n /** modifier group override config */\n modifierGroup?: FieldManagementConfig;\n /** modifier override config */\n modifier?: FieldManagementConfig;\n /** variant override config */\n variant?: FieldManagementConfig;\n /** label override config */\n label?: FieldManagementConfig;\n}\n\n/** Configuration for disabling entity fields in Wix UI (i.e., fields managed by the POS). */\nexport interface FieldManagementConfig {\n /**\n * Fields that are fully managed by the provider.\n * Applies to all field types — scalar, message, and repeated.\n * If a repeated field is listed here, the entire list and its nested content are disabled in Wix UI.\n * @maxSize 100\n * @maxLength 100\n */\n disabledFields?: string[];\n /**\n * Advanced configuration for repeated fields.\n * Use to customize add/remove or reorder behavior.\n * The key is the **path to the repeated field**, and the value is config for list-level behavior.\n * Can be used even if the field is in `disabled_fields`.\n */\n fieldConfigs?: Record<string, RepeatedFieldOverrideConfig>;\n}\n\n/** Controls list-level behavior for repeated fields. */\nexport interface RepeatedFieldOverrideConfig {\n /** If false, disables adding or removing elements in the repeated field. */\n addOrRemoveEnabled?: boolean | null;\n /** If true, allows users to reorder elements in the Wix UI (even if add/remove is disabled). */\n reorderEnabled?: boolean | null;\n}\n\n/** A component that represents a set of instructions for Wix Vibe to execute on app installation */\nexport interface WixVibeCodingInstructions {\n /**\n * System prompt for execution by Vibe\n * @minLength 20\n * @maxLength 10000\n */\n systemPrompt?: string;\n /**\n * Coding instructions module\n * @minLength 1\n * @maxLength 1000\n */\n module?: string | null;\n}\n\nexport interface TaxExemptGroupsProviderConfig {\n /** Base URI of the service plugin implementation. Since no endpoint is calling this path, it may be left blank. */\n deploymentUri?: SpiBaseUri;\n /** @maxSize 100 */\n taxExemptGroups?: TaxExemptGroup[];\n}\n\nexport interface TaxExemptGroup {\n /**\n * Name of the exempt tax group.\n * @maxLength 100\n */\n exemptTaxGroupName?: string;\n /**\n * Unique tax exempt group ID.\n * @format GUID\n */\n _id?: string;\n /**\n * Supported exempt regions\n * Contacts that are buying in those regions will be exempt from paying taxes.\n */\n exemptRegions?: ExemptRegions;\n}\n\n/** The exempt regions could apply automatically to all regions or to specific regions. */\nexport interface ExemptRegions {\n /** Scope of regions, when worldwide is selected, the regions list will be empty. */\n regionScope?: RegionScopeScopeWithLiterals;\n /**\n * The list of exempt regions, if specific regions scope is used.\n * @maxSize 200\n */\n regions?: V1Region[];\n}\n\nexport enum RegionScopeScope {\n /** Specific regions where tax exempt is applicable. */\n SPECIFIC_REGIONS = 'SPECIFIC_REGIONS',\n /** Tax exempt is applicable to all regions, no need to specify them. */\n WORLDWIDE = 'WORLDWIDE',\n}\n\n/** @enumType */\nexport type RegionScopeScopeWithLiterals =\n | RegionScopeScope\n | 'SPECIFIC_REGIONS'\n | 'WORLDWIDE';\n\nexport interface V1Region {\n /**\n * 2-letters code.\n * @format COUNTRY\n */\n countryCode?: string;\n /**\n * subdivisions - Usually a state, region, prefecture, or province code, according to [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2).\n * If empty, the rule applies to the entire region.\n * @maxSize 100\n * @minLength 1\n * @maxLength 50\n */\n subdivisions?: string[];\n}\n\nexport interface BookingAutomationsConfig {\n /** URI where the SPI Implementer is deployed. */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name of the provider.\n * @maxLength 100\n */\n providerName?: string | null;\n /** Whether the booking automations are enabled for the app's users. Default is true. */\n enabled?: boolean | null;\n /** Whether to allow triggering booking automations. Default is true. */\n allowBookingAutomationTriggering?: boolean | null;\n /**\n * Map of booking automation triggers to the corresponding automation trigger key to use instead.\n * @maxSize 50\n */\n triggerOverrides?: Record<string, V2TriggerOverride>;\n /**\n * 📝 PAYLOAD FIELD OVERRIDES\n *\n * Customize specific data fields in automation trigger payloads without\n * changing the entire trigger. This allows fine-grained data transformation.\n *\n * KEY FORMAT: Original field name in payload (e.g., \"staff_member_name\")\n * VALUE: TriggerFieldOverride containing the replacement field key\n *\n * COMMON FIELD MAPPINGS:\n * • \"staff_member_name\" → \"host_name\"\n * • \"service_name\" → \"meeting_name\"\n *\n * EXAMPLE:\n * {\n * \"staff_member_name\": {\n * \"automation_trigger_field_key\": \"consultant_name\"\n * },\n * \"service_name\": {\n * \"automation_trigger_field_key\": \"consultation_type\"\n * }\n * }\n *\n * LIMITS: Maximum 100 field overrides per field\n * NOTE: Field overrides apply to ALL triggers\n * @maxSize 100\n */\n triggerFieldOverrides?: Record<string, TriggerFieldOverride>;\n}\n\n/** Represents an override for a booking automation trigger. */\nexport interface V2TriggerOverride {\n /**\n * The automation trigger key to use instead of the default one for the given booking automation trigger.\n * @minLength 1\n * @maxLength 100\n */\n automationTriggerKey?: string;\n}\n\n/**\n * ========================================\n * FIELD OVERRIDE SPECIFICATION\n * ========================================\n *\n * Defines a replacement field key for granular payload data transformation.\n * Field overrides allow you to substitute specific data fields in automation\n * trigger payloads without changing the entire trigger or its behavior.\n *\n * FIELD MAPPING FLOW:\n * 1. Booking automation triggers with standard payload\n * 2. System checks for field overrides\n * 3. If field override exists → Replace field key with new field key\n * 4. If no override → Use original field value\n * 5. Continue with automation execution\n *\n * TRANSFORMATION SCOPE:\n * • Applies to ALL automation triggers\n * • Only affects data payload content, not trigger behavior\n * • Preserves original trigger timing and conditions\n * • Maintains automation flow and dependencies\n *\n * COMMON FIELD MAPPING SCENARIOS:\n * • Terminology alignment: \"staff_member_name\" → \"host_name\"\n * • Schema consistency: \"service_name\" → \"meeting_name\"\n */\nexport interface TriggerFieldOverride {\n /**\n * 🏷️ REPLACEMENT FIELD IDENTIFIER\n *\n * The field key in your app's automation data schema that should be used\n * instead of the original booking automation field. This enables seamless\n * data transformation to match your app's terminology and requirements.\n *\n * FIELD KEY REQUIREMENTS:\n * ✓ Must exist in your app's automation data schema\n * ✓ Should be compatible with the original field's data type\n * ✓ Must follow consistent naming conventions\n * ✓ Should provide meaningful business context\n *\n * MAPPING EXAMPLES:\n *\n * TERMINOLOGY ALIGNMENT:\n * • \"host_name\" (for \"staff_member_name\")\n * • \"attendee_name\" (for \"client_name\")\n * • \"consultation_type\" (for \"service_name\")\n *\n * BUSINESS CONTEXT:\n * • \"lead_email\" (for \"client_email\")\n * • \"opportunity_value\" (for \"booking_price\")\n * • \"meeting_duration_minutes\" (for \"booking_duration\")\n *\n * INTEGRATION CONSISTENCY:\n * • \"customer_contact\" (for \"client_email\")\n * • \"appointment_location\" (for \"booking_location\")\n * • \"session_datetime\" (for \"booking_date\" + \"booking_time\")\n *\n * VALIDATION:\n * • Length: 1-100 characters\n * • Must be valid field identifier\n * • Should maintain data type compatibility\n * • Must exist in target automation schema\n * @minLength 1\n * @maxLength 100\n */\n automationTriggerFieldKey?: string;\n}\n\nexport interface BookingsPlatformConfig {\n /** Reserved for future use */\n deploymentUri?: SpiBaseUri;\n /** Permission overrides for actions within the Bookings platform */\n permissionOverrides?: PermissionOverrides;\n /** Configuration for Wix Forms integration within the Bookings platform */\n formsConfiguration?: FormsConfig;\n /** Configuration for Automations integration within the Bookings platform */\n automationsConfiguration?: AutomationsConfig;\n}\n\nexport interface PermissionOverrides {\n /** Custom permission for services */\n servicePermissionOverrides?: ServicePermissionOverrides;\n /** Custom permission for bookings */\n bookingPermissionOverrides?: BookingPermissionOverrides;\n /** Custom permission for booking policies */\n policyPermissionOverrides?: PolicyPermissionOverrides;\n}\n\nexport interface ServicePermissionOverrides {\n /**\n * Permission required to create a service\n * @minLength 1\n * @maxLength 60\n */\n createPermission?: string | null;\n /**\n * Permission required to update a service\n * @minLength 1\n * @maxLength 60\n */\n updatePermission?: string | null;\n}\n\nexport interface BookingPermissionOverrides {\n /**\n * Permission required to create a booking\n * @minLength 1\n * @maxLength 60\n */\n createPermission?: string | null;\n /**\n * Permission required to update a booking\n * @minLength 1\n * @maxLength 60\n */\n updatePermission?: string | null;\n}\n\nexport interface PolicyPermissionOverrides {\n /**\n * Permission required to create a policy\n * @minLength 1\n * @maxLength 60\n */\n createPermission?: string | null;\n /**\n * Permission required to update a policy\n * @minLength 1\n * @maxLength 60\n */\n updatePermission?: string | null;\n}\n\nexport interface FormsConfig {\n /**\n * The namespace of the Wix Forms app to be used for forms integration within the Bookings platform.\n * If none is provided, the default Wix Bookings app namespace (`wix.bookings.v2.bookings`) will be used.\n * @minLength 10\n * @maxLength 50\n */\n namespace?: string | null;\n}\n\nexport interface AutomationsConfig {\n /** Flag to enable or disable Bookings automations */\n bookingsAutomationsEnabled?: boolean | null;\n /**\n * Overrides for triggers names\n * @maxSize 50\n */\n triggerOverrides?: TriggerOverride[];\n /**\n * Overrides for field names\n * @maxSize 100\n */\n globalFieldOverrides?: FieldOverride[];\n}\n\nexport interface TriggerOverride {\n /**\n * The key of the source trigger to be overridden\n * suported keys:\n * \"wix_bookings-appointment_declined\"\n * \"wix_bookings-appointment_confirmed\"\n * \"wix_bookings-any_check_in\"\n * \"wix_bookings-booking_canceled\"\n * \"wix_bookings-appointment_requires_confirmation\"\n * \"wix_bookings-sessions_booked\"\n * \"wix_bookings-session_starts\"\n * \"wix_bookings-session_updated\"\n * @minLength 1\n * @maxLength 100\n */\n sourceTriggerKey?: string | null;\n /**\n * The key of the target trigger to use as the override\n * @minLength 1\n * @maxLength 100\n */\n targetTriggerKey?: string | null;\n}\n\nexport interface FieldOverride {\n /**\n * The name of the source field to be overridden\n * @minLength 1\n * @maxLength 100\n */\n sourceFieldName?: string | null;\n /**\n * The name of the target field to use as the override\n * @minLength 1\n * @maxLength 100\n */\n targetFieldName?: string | null;\n}\n\n/** A component that represents a Wix Vibe UI component editing configuration */\nexport interface WixVibeComponent {\n /**\n * @minLength 3\n * @maxLength 100\n */\n htmlCodeTag?: string;\n /**\n * The name of the component\n * @minLength 3\n * @maxLength 50\n */\n name?: string;\n /**\n * Description of the component functionality\n * @maxLength 300\n * @minLength 3\n */\n description?: string;\n /** Custom editor actions available for this component on selection */\n customActions?: Record<string, CustomAction>;\n /**\n * Collection ID for inline edit functionality\n * @maxLength 50\n */\n inlineEditCollectionId?: string;\n}\n\n/** Configuration for custom editor actions */\nexport interface CustomAction extends CustomActionActionExecuteOneOf {\n openDashboard?: VibeDashboardAction;\n openCustomPanel?: VibeCustomPanelAction;\n /**\n * Display name for the action\n * @minLength 3\n * @maxLength 50\n */\n displayName?: string;\n actionType?: VibeActionTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface CustomActionActionExecuteOneOf {\n openDashboard?: VibeDashboardAction;\n openCustomPanel?: VibeCustomPanelAction;\n}\n\nexport enum VibeActionType {\n UNKNOWN_ActionType = 'UNKNOWN_ActionType',\n OPEN_DASHBOARD = 'OPEN_DASHBOARD',\n OPEN_CUSTOM_PANEL = 'OPEN_CUSTOM_PANEL',\n}\n\n/** @enumType */\nexport type VibeActionTypeWithLiterals =\n | VibeActionType\n | 'UNKNOWN_ActionType'\n | 'OPEN_DASHBOARD'\n | 'OPEN_CUSTOM_PANEL';\n\n/** Dashboard action configuration */\nexport interface VibeDashboardAction {\n /**\n * Dashboard page identifier\n * @minLength 4\n * @maxLength 50\n */\n pageId?: string;\n}\n\n/** Custom panel action configuration */\nexport interface VibeCustomPanelAction {\n /**\n * Exported component identifier\n * @format GUID\n */\n componentId?: string;\n}\n\nexport interface WixelSPIConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /** Asset type to be handled by this SPI implementation */\n assetType?: AssetTypeWithLiterals;\n /** The expose_export ft */\n exposeExport?: boolean;\n /** Whether shared asset properties computation is enabled for this SPI implementation. */\n exposeSharedAssetProperties?: boolean;\n /** Whether asset copied from template handling is enabled for this SPI implementation. */\n exposeHandleAssetCopiedFromTemplate?: boolean;\n /** Whether publish asset functionality is enabled for this SPI implementation. */\n exposePublishAsset?: boolean;\n /** Whether create asset functionality is enabled for this SPI implementation. */\n exposeCreateAsset?: boolean;\n}\n\nexport enum AssetType {\n UNKNOWN = 'UNKNOWN',\n IMAGE = 'IMAGE',\n VIDEO = 'VIDEO',\n LOGO = 'LOGO',\n EVENT = 'EVENT',\n FORM = 'FORM',\n PDF = 'PDF',\n RICOS = 'RICOS',\n DOC = 'DOC',\n SLIDE = 'SLIDE',\n WIDGET = 'WIDGET',\n FONT = 'FONT',\n ICONS = 'ICONS',\n}\n\n/** @enumType */\nexport type AssetTypeWithLiterals =\n | AssetType\n | 'UNKNOWN'\n | 'IMAGE'\n | 'VIDEO'\n | 'LOGO'\n | 'EVENT'\n | 'FORM'\n | 'PDF'\n | 'RICOS'\n | 'DOC'\n | 'SLIDE'\n | 'WIDGET'\n | 'FONT'\n | 'ICONS';\n\nexport interface StaffSortingProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n /**\n * User-friendly name for the sorting method\n * @maxLength 100\n */\n methodName?: string;\n /**\n * User-friendly explanation about the sorting method.\n * @maxLength 100\n */\n methodDescription?: string;\n /**\n * Optional. An unique identifier for a component that will create a configuration for the method.\n * @format GUID\n */\n dashboardPluginId?: string | null;\n}\n\nexport interface FunctionEcomDiscountTriggerEligibilityProviderConfig {\n /** URI where the SPI Implementer is deployed */\n deploymentUri?: SpiBaseUri;\n}\n\nexport interface FunctionAssistantToolProviderConfig {\n /**\n * instead of .wix.common.spi.SpiBaseUri deployment_uri = 1;\n * @maxLength 100\n */\n deploymentUri?: string;\n /**\n * Function spi configuration\n * @format GUID\n * @readonly\n */\n functionToolId?: string;\n}\n\nexport interface SiteMapProviderConfig {\n /**\n * URL to dynamic site structure provider service\n * @maxLength 8192\n */\n deploymentUri?: string;\n}\n\nexport interface WixAiGatewaySpiConfig {\n /** Base URI where the endpoints are called. Wix appends the endpoint path to the base URI. */\n baseUri?: SpiBaseUri;\n}\n\nexport interface UrlMapperProviderConfig {\n /** the base URI where all the methods are deployed. E.g. \"https://golden-coupons.com/wix-provider\" */\n baseUri?: SpiBaseUri;\n}\n\n/** A ProviderSuppressionServicePluginConfig is entity which holds dev center app configuration for allowed payment provider on site */\nexport interface ProviderSuppressionServicePluginConfig {\n /**\n * List of allowed payment providers and allowed methods for provider on sites where this app will be installed\n * @minSize 1\n * @maxSize 100\n */\n allowedProviders?: Provider[];\n}\n\nexport interface Provider {\n /**\n * Payment provider id allowed on a site\n * @format GUID\n */\n providerId?: string;\n /**\n * Payment method type ids list of the allow payment methods for the specified provider\n * @minSize 1\n * @maxSize 100\n * @format GUID\n */\n allowedPaymentMethodTypeIds?: string[];\n}\n\nexport interface FormsSPIConfig {\n /**\n * Base URI where the endpoints are called.\n * Wix eCommerce appends the endpoint path to the base URI.\n * For example, to call the Get Forms endpoint at `https://my-forms.com/v1/getForms`,\n * the base URI you provide here is `https://my-forms.com/`.\n * @minLength 1\n * @maxLength 150\n */\n deploymentUri?: string;\n}\n\n/**\n * A component that provides context to children and can be added\n * to any page, container or section in the Editor.\n * The compoent is logical and does not provide any UI.\n * It does however provide props for configuring it in the Editor.\n * The bundles can export the following:\n * method `default` export: the context provider component\n * method `injectAccessTokenGetter`: A way to have an access token injected\n * hooks: The hook method exposed for usage (`useSomeContextName`)\n */\nexport interface EditorContextProvider {\n /**\n * The component type, should be a namespaced: slug.componentName\n * @maxLength 100\n */\n type?: string;\n /** The runtime information needed for this component */\n resources?: EditorContextProviderResources;\n /** The exposed context model for this component */\n context?: ApiContext;\n /** data-api of this element, a map of data-items where the key is the data-item name and the value is the data-item definition. These will be manifested as `props` for the component, always has children as a prop */\n data?: Record<string, DataItem>;\n /** Allows overriding the default settings actions for the data of this component */\n settings?: Action;\n}\n\nexport interface EditorContextProviderResources {\n /** The ESM bundle for this component in runtime */\n client?: Resource;\n /** An ESM bundle for editor experiences, can allow different things like having default data */\n editor?: Resource;\n /** The specifier of how to use thge context this component provides in React */\n contextSpecifier?: ContextSpecifier;\n /** Dependencies on other services and contexts */\n dependencies?: EditorDependencies;\n}\n\n/** A specifier of how to use the context this component provides in React */\nexport interface ContextSpecifier {\n /**\n * The module name in case of public NPM package\n * @maxLength 100\n */\n moduleSpecifier?: string;\n /**\n * The exported hook for components usage\n * @maxLength 100\n */\n hook?: string;\n}\n\nexport interface ApiContext {\n /** A map of keys describing the context provided by this component */\n items?: Record<string, ContextItem>;\n}\n\nexport interface ContextItem extends ContextItemSelectedDataTypeOneOf {\n /** For arrays, the items are defined here */\n arrayItems?: ContextArrayItems;\n /** For data objects, the items are defined here */\n data?: ContextDataItems;\n /** For functions, the function definition is defined here */\n function?: EditorFunction;\n /** The type exposed by the context item (can't be \"container\") */\n dataType?: DataTypeWithLiterals;\n /**\n * The display name of the context item for user facing and AI usage\n * @maxLength 100\n */\n displayName?: string | null;\n /** For sub types that implement parts of context, points to a context provider component type */\n contextImplementor?: ContextImplementor;\n}\n\n/** @oneof */\nexport interface ContextItemSelectedDataTypeOneOf {\n /** For arrays, the items are defined here */\n arrayItems?: ContextArrayItems;\n /** For data objects, the items are defined here */\n data?: ContextDataItems;\n /** For functions, the function definition is defined here */\n function?: EditorFunction;\n}\n\nexport interface ContextImplementor {\n /**\n * The component type to implement the context item\n * @maxLength 100\n */\n componentType?: string;\n /**\n * The prop key the component expects the context to be passed in to it (optional)\n * @maxLength 100\n */\n propKey?: string | null;\n}\n\n/** An array of data items or complex data types */\nexport interface ContextArrayItems extends ContextArrayItemsArrayDataOneOf {\n /** Specify the type of data inside the array */\n item?: ContextItem;\n}\n\n/** @oneof */\nexport interface ContextArrayItemsArrayDataOneOf {\n /** Specify the type of data inside the array */\n item?: ContextItem;\n}\n\n/** A map of keys describing the context items provided by this component */\nexport interface ContextDataItems {\n /** A map of keys describing the data items provided by this component */\n items?: Record<string, ContextItem>;\n /** For sub types that implement parts of context, points to a context provider component type */\n contextImplementor?: ContextImplementor;\n}\n\nexport interface EditorFunctionLibrary {\n /**\n * A unique type, uses the codeIdentifer as a prefix and the lib name as a suffix. Example: `wixElements.stringUtilFunctions`\n * @maxLength 100\n */\n type?: string;\n /** The functions definition exposed in this bundle, each key is the function name */\n functions?: Record<string, EditorFunction>;\n /** The bundle information for runtime */\n resources?: FunctionResources;\n /**\n * The display name of the library for human readability\n * @maxLength 100\n */\n name?: string | null;\n /**\n * A description of the librarie's main use cases\n * @maxLength 300\n */\n description?: string | null;\n}\n\nexport interface FunctionResources {\n /** The ESM bundle for this component in runtime */\n client?: Resource;\n /**\n * The module specifier for this library in case it is also available as an NPM package\n * @maxLength 100\n */\n moduleSpecifier?: string | null;\n}\n\nexport interface RuntimeComponentCacheEntityExperiment\n extends RuntimeComponentCacheEntityExperimentExperimentOneOf {\n gradualRollout?: GradualRolloutCacheEntity;\n gradualUpdate?: GradualUpdateCacheEntity;\n gradualDelete?: GradualDeleteCacheEntity;\n partialUpdate?: PartialUpdateCacheEntity;\n /**\n * Spec to conduct on the component\n * @maxLength 128\n */\n spec?: string;\n /**\n * Value the spec should return in order to return the newer component version\n * @maxLength 128\n */\n variantValue?: string;\n}\n\n/** @oneof */\nexport interface RuntimeComponentCacheEntityExperimentExperimentOneOf {\n gradualRollout?: GradualRolloutCacheEntity;\n gradualUpdate?: GradualUpdateCacheEntity;\n gradualDelete?: GradualDeleteCacheEntity;\n partialUpdate?: PartialUpdateCacheEntity;\n}\n\nexport interface GradualRolloutCacheEntity {\n experimentComponent?: RuntimeComponentCacheEntityComponent;\n}\n\nexport interface GradualUpdateCacheEntity {\n experimentComponent?: RuntimeComponentCacheEntityComponent;\n fallbackComponent?: RuntimeComponentCacheEntityComponent;\n}\n\nexport interface GradualDeleteCacheEntity {\n experimentComponent?: RuntimeComponentCacheEntityComponent;\n}\n\nexport interface PartialUpdateCacheEntity {\n experimentComponent?: RuntimeComponentCacheEntityComponent;\n}\n\nexport interface CreatedByCacheEntity {\n /**\n * The id of the entity which created the App\n * @format GUID\n */\n _id?: string;\n /** The type of the entity which created the App (User, App, etc.) */\n type?: string;\n}\n\nexport interface AppData {\n /**\n * Represents the ID of the Application\n * @format GUID\n */\n appId?: string;\n /**\n * Represents the Version of the Application\n * @maxLength 50\n */\n version?: string;\n /**\n * Represents the name of the Application\n * @maxLength 50\n */\n name?: string;\n /**\n * Represents the account id of the Application\n * @format GUID\n */\n accountId?: string;\n /**\n * Represents the namespace of the application\n * @minLength 1\n * @maxLength 150\n */\n namespace?: string | null;\n /** Is Wix application? */\n wixApp?: boolean;\n /**\n * The state of the application\n * @maxLength 50\n */\n status?: string;\n /**\n * The type of application\n * @maxLength 50\n */\n appType?: string;\n /**\n * Represents the Component data enriched with translations and overrides\n * @maxSize 340\n */\n components?: RuntimeComponentCacheEntity[];\n /**\n * The slug of the app. A human readable identifier of the app\n * @minLength 1\n * @maxLength 200\n */\n slug?: string | null;\n /** Indicates if the app is private */\n privateApp?: boolean;\n /** The id and type of the entity which created the App (User, App, etc.) */\n createdBy?: CreatedByCacheEntity;\n /** Represents the time this AppRuntimeData was created */\n _createdDate?: Date | null;\n /** Represents the time this AppRuntimeData was last updated */\n _updatedDate?: Date | null;\n /** Indicates if this app's version is not in draft state */\n draft?: boolean;\n /**\n * Represents the full version (major.minor.build) of the version. Only applicable for State = LOCKED_DRAFT / PRODUCTION\n * @minLength 1\n * @maxLength 50\n */\n fullVersion?: string | null;\n /** Indicates if the app is HIPAA compliant */\n hipaaCompliant?: boolean | null;\n /** Indicates if app is a Companion app */\n companionApp?: boolean | null;\n}\n\nexport interface TranslatedData {\n name?: string | null;\n components?: RuntimeComponentCacheEntityComponent[];\n}\n\nexport interface DeleteUserDefinedFieldsRequest {\n /**\n * Schema ID.\n * @format GUID\n */\n dataExtensionSchemaId: string | null;\n /**\n * List of fields paths to delete. For example, [\"size\", \"personalization.specialInstructions\"].\n * @minSize 1\n * @maxSize 10\n * @maxLength 1000\n */\n fieldsToDelete: string[];\n}\n\nexport interface DeleteUserDefinedFieldsResponse {\n /** Updated schema. */\n dataExtensionSchema?: DataExtensionSchema;\n}\n\nexport interface MessageEnvelope {\n /**\n * App instance ID.\n * @format GUID\n */\n instanceId?: string | null;\n /**\n * Event type.\n * @maxLength 150\n */\n eventType?: string;\n /** The identification type and identity data. */\n identity?: IdentificationData;\n /** Stringify payload. */\n data?: string;\n}\n\nexport interface IdentificationData extends IdentificationDataIdOneOf {\n /**\n * ID of a site visitor that has not logged in to the site.\n * @format GUID\n */\n anonymousVisitorId?: string;\n /**\n * ID of a site visitor that has logged in to the site.\n * @format GUID\n */\n memberId?: string;\n /**\n * ID of a Wix user (site owner, contributor, etc.).\n * @format GUID\n */\n wixUserId?: string;\n /**\n * ID of an app.\n * @format GUID\n */\n appId?: string;\n /** @readonly */\n identityType?: WebhookIdentityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IdentificationDataIdOneOf {\n /**\n * ID of a site visitor that has not logged in to the site.\n * @format GUID\n */\n anonymousVisitorId?: string;\n /**\n * ID of a site visitor that has logged in to the site.\n * @format GUID\n */\n memberId?: string;\n /**\n * ID of a Wix user (site owner, contributor, etc.).\n * @format GUID\n */\n wixUserId?: string;\n /**\n * ID of an app.\n * @format GUID\n */\n appId?: string;\n}\n\nexport enum WebhookIdentityType {\n UNKNOWN = 'UNKNOWN',\n ANONYMOUS_VISITOR = 'ANONYMOUS_VISITOR',\n MEMBER = 'MEMBER',\n WIX_USER = 'WIX_USER',\n APP = 'APP',\n}\n\n/** @enumType */\nexport type WebhookIdentityTypeWithLiterals =\n | WebhookIdentityType\n | 'UNKNOWN'\n | 'ANONYMOUS_VISITOR'\n | 'MEMBER'\n | 'WIX_USER'\n | 'APP';\n\nexport interface BaseEventMetadata {\n /**\n * App instance ID.\n * @format GUID\n */\n instanceId?: string | null;\n /**\n * Event type.\n * @maxLength 150\n */\n eventType?: string;\n /** The identification type and identity data. */\n identity?: IdentificationData;\n}\n\nexport interface EventMetadata extends BaseEventMetadata {\n /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n _id?: string;\n /**\n * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n */\n entityFqdn?: string;\n /**\n * Event action name, placed at the top level to make it easier for users to dispatch messages.\n * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n */\n slug?: string;\n /** ID of the entity associated with the event. */\n entityId?: string;\n /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n eventTime?: Date | null;\n /**\n * Whether the event was triggered as a result of a privacy regulation application\n * (for example, GDPR).\n */\n triggeredByAnonymizeRequest?: boolean | null;\n /** If present, indicates the action that triggered the event. */\n originatedFrom?: string | null;\n /**\n * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.\n */\n entityEventSequence?: string | null;\n}\n\nexport interface DataExtensionSchemaCreatedEnvelope {\n entity: DataExtensionSchema;\n metadata: EventMetadata;\n}\n\n/**\n * Triggered when a data extension schema is created.\n * @permissionScope Manage Stores\n * @permissionScopeId SCOPE.STORES.MANAGE-STORES\n * @permissionScope Manage Bookings Services and Settings\n * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION\n * @permissionScope Manage Events\n * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS\n * @permissionScope Manage Challenges\n * @permissionScopeId SCOPE.CHALLENGES.MANAGE\n * @permissionScope Manage Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.MANAGE-SCHEMAS\n * @permissionScope Manage Portfolio\n * @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO\n * @permissionScope View SEO Settings\n * @permissionScopeId SCOPE.PROMOTE.VIEW-SEO\n * @permissionScope Access Verticals by Automations\n * @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS\n * @permissionScope Read Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.READ-SCHEMAS\n * @permissionScope Manage Restaurants - all permissions\n * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES\n * @permissionScope Set Up Automations\n * @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS\n * @permissionId DATA_EXTENSION_SCHEMA.READ\n * @webhook\n * @eventType wix.data_extensions.v1.data_extension_schema_created\n * @slug created\n */\nexport declare function onDataExtensionSchemaCreated(\n handler: (event: DataExtensionSchemaCreatedEnvelope) => void | Promise<void>\n): void;\n\nexport interface DataExtensionSchemaDeletedEnvelope {\n metadata: EventMetadata;\n}\n\n/**\n * Triggered when a data extension schema is deleted.\n * @permissionScope Manage Stores\n * @permissionScopeId SCOPE.STORES.MANAGE-STORES\n * @permissionScope Manage Bookings Services and Settings\n * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION\n * @permissionScope Manage Events\n * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS\n * @permissionScope Manage Challenges\n * @permissionScopeId SCOPE.CHALLENGES.MANAGE\n * @permissionScope Manage Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.MANAGE-SCHEMAS\n * @permissionScope Manage Portfolio\n * @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO\n * @permissionScope View SEO Settings\n * @permissionScopeId SCOPE.PROMOTE.VIEW-SEO\n * @permissionScope Access Verticals by Automations\n * @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS\n * @permissionScope Read Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.READ-SCHEMAS\n * @permissionScope Manage Restaurants - all permissions\n * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES\n * @permissionScope Set Up Automations\n * @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS\n * @permissionId DATA_EXTENSION_SCHEMA.READ\n * @webhook\n * @eventType wix.data_extensions.v1.data_extension_schema_deleted\n * @slug deleted\n */\nexport declare function onDataExtensionSchemaDeleted(\n handler: (event: DataExtensionSchemaDeletedEnvelope) => void | Promise<void>\n): void;\n\nexport interface DataExtensionSchemaUpdatedEnvelope {\n entity: DataExtensionSchema;\n metadata: EventMetadata;\n /** @hidden */\n modifiedFields: Record<string, any>;\n}\n\n/**\n * Triggered when a data extension schema is updated.\n * @permissionScope Manage Stores\n * @permissionScopeId SCOPE.STORES.MANAGE-STORES\n * @permissionScope Manage Bookings Services and Settings\n * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION\n * @permissionScope Manage Events\n * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS\n * @permissionScope Manage Challenges\n * @permissionScopeId SCOPE.CHALLENGES.MANAGE\n * @permissionScope Manage Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.MANAGE-SCHEMAS\n * @permissionScope Manage Portfolio\n * @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO\n * @permissionScope View SEO Settings\n * @permissionScopeId SCOPE.PROMOTE.VIEW-SEO\n * @permissionScope Access Verticals by Automations\n * @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS\n * @permissionScope Read Data Extensions Schemas\n * @permissionScopeId SCOPE.DATAEXTENSIONS.READ-SCHEMAS\n * @permissionScope Manage Restaurants - all permissions\n * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES\n * @permissionScope Set Up Automations\n * @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS\n * @permissionId DATA_EXTENSION_SCHEMA.READ\n * @webhook\n * @eventType wix.data_extensions.v1.data_extension_schema_updated\n * @slug updated\n */\nexport declare function onDataExtensionSchemaUpdated(\n handler: (event: DataExtensionSchemaUpdatedEnvelope) => void | Promise<void>\n): void;\n\n/**\n * Creates a user-defined data extension schema.\n * @param dataExtensionSchema - Schema to create.\n * @public\n * @requiredField dataExtensionSchema\n * @requiredField dataExtensionSchema.fqdn\n * @requiredField dataExtensionSchema.jsonSchema\n * @requiredField dataExtensionSchema.namespace\n * @permissionId DATA_EXTENSION_SCHEMA.WRITE\n * @applicableIdentity APP\n * @returns Created schema.\n * @fqn wix.infra.dataextensions.v1.DataExtensionSchemaService.CreateDataExtensionSchema\n */\nexport async function createDataExtensionSchema(\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `fqdn` | `jsonSchema` | `namespace`,\n 2\n >\n): Promise<DataExtensionSchema> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n dataExtensionSchema: dataExtensionSchema,\n });\n\n const reqOpts =\n ambassadorWixDataExtensionsV1DataExtensionSchema.createDataExtensionSchema(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)\n ?.dataExtensionSchema!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { dataExtensionSchema: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['dataExtensionSchema']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\n/**\n * Updates a user-defined data extension schema, overriding the existing data.\n * @param dataExtensionSchema - Schema to update.\n * @public\n * @requiredField dataExtensionSchema\n * @requiredField dataExtensionSchema._id\n * @requiredField dataExtensionSchema.jsonSchema\n * @requiredField dataExtensionSchema.revision\n * @param options - Field options. The following fields **must** be passed: `_id`, `jsonSchema`, `revision`.\n * @permissionId DATA_EXTENSION_SCHEMA.WRITE\n * @applicableIdentity APP\n * @fqn wix.infra.dataextensions.v1.DataExtensionSchemaService.UpdateDataExtensionSchema\n */\nexport async function updateDataExtensionSchema(\n dataExtensionSchema: NonNullablePaths<\n DataExtensionSchema,\n `_id` | `jsonSchema` | `revision`,\n 2\n >\n): Promise<UpdateDataExtensionSchemaResponse> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n dataExtensionSchema: dataExtensionSchema,\n });\n\n const reqOpts =\n ambassadorWixDataExtensionsV1DataExtensionSchema.updateDataExtensionSchema(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { dataExtensionSchema: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['dataExtensionSchema']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\n/**\n * Retrieves a list of global and user-defined data extension schemas for a given FQDN.\n * @param fqdn - [Fully qualified domain name](https://dev.wix.com/docs/rest/articles/getting-started/fqdns).\n * @public\n * @requiredField fqdn\n * @permissionId DATA_EXTENSION_SCHEMA.READ\n * @applicableIdentity APP\n * @fqn wix.infra.dataextensions.v1.DataExtensionSchemaService.ListDataExtensionSchemas\n */\nexport async function listDataExtensionSchemas(\n fqdn: string,\n options?: ListDataExtensionSchemasOptions\n): Promise<\n NonNullablePaths<ListDataExtensionSchemasResponse, `dataExtensionSchemas`, 2>\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n fqdn: fqdn,\n namespaces: options?.namespaces,\n fields: options?.fields,\n extensionPoints: options?.extensionPoints,\n });\n\n const reqOpts =\n ambassadorWixDataExtensionsV1DataExtensionSchema.listDataExtensionSchemas(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n fqdn: '$[0]',\n namespaces: '$[1].namespaces',\n fields: '$[1].fields',\n extensionPoints: '$[1].extensionPoints',\n },\n singleArgumentUnchanged: false,\n },\n ['fqdn', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface ListDataExtensionSchemasOptions {\n /**\n * Namespaces within the given entity.\n * @maxSize 100\n * @maxLength 164\n */\n namespaces?: string[];\n /**\n * Additional fields that are hidden by default. For example, fields with `\"x-wix-archived\": true`.\n * @maxSize 5\n */\n fields?: RequestedFieldWithLiterals[];\n /**\n * Extension points within the given entity.\n * @maxSize 20\n * @maxLength 10\n */\n extensionPoints?: string[];\n}\n\n/**\n * Deletes schemas of whitelisted metasite ids\n * @param metaSiteId - Meta site id\n * @public\n * @requiredField metaSiteId\n * @fqn wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteByWhiteListedMetaSite\n */\nexport async function deleteByWhiteListedMetaSite(\n metaSiteId: string\n): Promise<\n NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`, 2>\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n metaSiteId: metaSiteId,\n });\n\n const reqOpts =\n ambassadorWixDataExtensionsV1DataExtensionSchema.deleteByWhiteListedMetaSite(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { metaSiteId: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['metaSiteId']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\n/**\n * Deletes a user defined field from the specified data extension schema.\n * @param dataExtensionSchemaId - Schema ID.\n * @public\n * @requiredField dataExtensionSchemaId\n * @requiredField options\n * @requiredField options.fieldsToDelete\n * @permissionId DATA_EXTENSION_SCHEMA.DELETE_USER_DEFINED_FIELDS\n * @applicableIdentity APP\n * @fqn wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteUserDefinedFields\n */\nexport async function deleteUserDefinedFields(\n dataExtensionSchemaId: string,\n options: NonNullablePaths<DeleteUserDefinedFieldsOptions, `fieldsToDelete`, 2>\n): Promise<DeleteUserDefinedFieldsResponse> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n dataExtensionSchemaId: dataExtensionSchemaId,\n fieldsToDelete: options?.fieldsToDelete,\n });\n\n const reqOpts =\n ambassadorWixDataExtensionsV1DataExtensionSchema.deleteUserDefinedFields(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n dataExtensionSchemaId: '$[0]',\n fieldsToDelete: '$[1].fieldsToDelete',\n },\n singleArgumentUnchanged: false,\n },\n ['dataExtensionSchemaId', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface DeleteUserDefinedFieldsOptions {\n /**\n * List of fields paths to delete. For example, [\"size\", \"personalization.specialInstructions\"].\n * @minSize 1\n * @maxSize 10\n * @maxLength 1000\n */\n fieldsToDelete: string[];\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\nimport {\n _Function,\n _Number,\n _Date,\n _Array,\n _Boolean,\n _Object,\n _String,\n} from './data-extensions-v1-data-extension-schema-schemas.types';\n\nfunction resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'manage._base_domain_': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n _: [\n {\n srcPath: '/_api/schema-service',\n destPath: '',\n },\n ],\n 'editor.wixapps.net': [\n {\n srcPath: '/_api/schema-service',\n destPath: '',\n },\n ],\n 'www.wixapis.com': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_data-extension-schema_schemas';\n\n/** Creates a user-defined data extension schema. */\nexport function createDataExtensionSchema(\n payload: object\n): RequestOptionsFactory<any> {\n function __createDataExtensionSchema({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.CreateDataExtensionSchema',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __createDataExtensionSchema;\n}\n\n/** Updates a user-defined data extension schema, overriding the existing data. */\nexport function updateDataExtensionSchema(\n payload: object\n): RequestOptionsFactory<any> {\n function __updateDataExtensionSchema({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'PUT' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.UpdateDataExtensionSchema',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __updateDataExtensionSchema;\n}\n\n/** Retrieves a list of global and user-defined data extension schemas for a given FQDN. */\nexport function listDataExtensionSchemas(\n payload: object\n): RequestOptionsFactory<any> {\n function __listDataExtensionSchemas({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'GET' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.ListDataExtensionSchemas',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchemas.updatedDate' },\n { path: 'dataExtensionSchemas.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __listDataExtensionSchemas;\n}\n\n/** Deletes schemas of whitelisted metasite ids */\nexport function deleteByWhiteListedMetaSite(\n payload: object\n): RequestOptionsFactory<any> {\n function __deleteByWhiteListedMetaSite({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteByWhiteListedMetaSite',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas/delete-by-white-listed-meta-site',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __deleteByWhiteListedMetaSite;\n}\n\n/** Deletes a user defined field from the specified data extension schema. */\nexport function deleteUserDefinedFields(\n payload: object\n): RequestOptionsFactory<any> {\n function __deleteUserDefinedFields({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteUserDefinedFields',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas/delete-user-defined-fields',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __deleteUserDefinedFields;\n}\n","import {\n createDataExtensionSchema as publicCreateDataExtensionSchema,\n updateDataExtensionSchema as publicUpdateDataExtensionSchema,\n listDataExtensionSchemas as publicListDataExtensionSchemas,\n deleteByWhiteListedMetaSite as publicDeleteByWhiteListedMetaSite,\n deleteUserDefinedFields as publicDeleteUserDefinedFields,\n} from './data-extensions-v1-data-extension-schema-schemas.public.js';\nimport { createRESTModule } from '@wix/sdk-runtime/rest-modules';\nimport { createEventModule } from '@wix/sdk-runtime/event-definition-modules';\nimport {\n BuildRESTFunction,\n MaybeContext,\n BuildEventDefinition,\n} from '@wix/sdk-types';\nimport { onDataExtensionSchemaCreated as publicOnDataExtensionSchemaCreated } from './data-extensions-v1-data-extension-schema-schemas.public.js';\nimport { onDataExtensionSchemaDeleted as publicOnDataExtensionSchemaDeleted } from './data-extensions-v1-data-extension-schema-schemas.public.js';\nimport { onDataExtensionSchemaUpdated as publicOnDataExtensionSchemaUpdated } from './data-extensions-v1-data-extension-schema-schemas.public.js';\n\nexport const createDataExtensionSchema: MaybeContext<\n BuildRESTFunction<typeof publicCreateDataExtensionSchema> &\n typeof publicCreateDataExtensionSchema\n> = /*#__PURE__*/ createRESTModule(publicCreateDataExtensionSchema);\nexport const updateDataExtensionSchema: MaybeContext<\n BuildRESTFunction<typeof publicUpdateDataExtensionSchema> &\n typeof publicUpdateDataExtensionSchema\n> = /*#__PURE__*/ createRESTModule(publicUpdateDataExtensionSchema);\nexport const listDataExtensionSchemas: MaybeContext<\n BuildRESTFunction<typeof publicListDataExtensionSchemas> &\n typeof publicListDataExtensionSchemas\n> = /*#__PURE__*/ createRESTModule(publicListDataExtensionSchemas);\nexport const deleteByWhiteListedMetaSite: MaybeContext<\n BuildRESTFunction<typeof publicDeleteByWhiteListedMetaSite> &\n typeof publicDeleteByWhiteListedMetaSite\n> = /*#__PURE__*/ createRESTModule(publicDeleteByWhiteListedMetaSite);\nexport const deleteUserDefinedFields: MaybeContext<\n BuildRESTFunction<typeof publicDeleteUserDefinedFields> &\n typeof publicDeleteUserDefinedFields\n> = /*#__PURE__*/ createRESTModule(publicDeleteUserDefinedFields);\n/**\n * Triggered when a data extension schema is created.\n */\nexport const onDataExtensionSchemaCreated: BuildEventDefinition<\n typeof publicOnDataExtensionSchemaCreated\n> &\n typeof publicOnDataExtensionSchemaCreated = createEventModule(\n publicOnDataExtensionSchemaCreated\n);\n/**\n * Triggered when a data extension schema is deleted.\n */\nexport const onDataExtensionSchemaDeleted: BuildEventDefinition<\n typeof publicOnDataExtensionSchemaDeleted\n> &\n typeof publicOnDataExtensionSchemaDeleted = createEventModule(\n publicOnDataExtensionSchemaDeleted\n);\n/**\n * Triggered when a data extension schema is updated.\n */\nexport const onDataExtensionSchemaUpdated: BuildEventDefinition<\n typeof publicOnDataExtensionSchemaUpdated\n> &\n typeof publicOnDataExtensionSchemaUpdated = createEventModule(\n publicOnDataExtensionSchemaUpdated\n);\n\nexport {\n DataExtensionSchemaState,\n RequestedField,\n ComponentType,\n WidgetVertical,\n WidgetHorizontal,\n WidgetWidthType,\n Region,\n UnitType,\n HorizontalDocking,\n VerticalDocking,\n SiteMembersSsrCaching,\n MpaNavigation,\n ReplacementType,\n PluginInterface,\n Exposure,\n Maturity,\n HTTPMethod,\n InstallPage,\n RegionType,\n StaticContainer,\n EmbeddedScriptPages,\n EmbeddedScriptPlacement,\n EmbedCategory,\n TemplateDefaultColor,\n ThumbnailsSize,\n BarAlignmentSelected,\n DefaultTextStyle,\n WebComponentDataElementType,\n ScriptType,\n ExtensionType,\n FieldType,\n AccessLevel,\n Order,\n PrimitiveType,\n SimpleType,\n SchemaFieldExposure,\n PartialPaymentRestriction,\n HostContainerId,\n MandatoryField,\n MeasurementSystem,\n Default,\n HookType,\n ActionSPIConfigInterfaceConfigurationType,\n IntegrationType,\n SourceType,\n ExecutionType,\n ExtendingComponentType,\n BackOfficeHostingPlatforms,\n DtsDefinitionType,\n SlotDataType,\n BackOfficeScriptAssetType,\n ViewMode,\n AlgorithmType,\n LockableOperation,\n RestrictedOperation,\n BlockType,\n Domain,\n Status,\n LayoutMode,\n TextInputDisplayType,\n ThumbnailType,\n ImageShape,\n AvatarShape,\n Tag,\n FilterSelectionType,\n FilterOptionsType,\n PaginationMode,\n ChannelType,\n AcceptedDirectMessageType,\n MediaMimeType,\n AcceptedSmsMessageType,\n InitDirection,\n NodeType,\n WidthType,\n PluginContainerDataAlignment,\n ButtonDataType,\n LinkTarget,\n TextAlignment,\n LineStyle,\n DividerDataWidth,\n DividerDataAlignment,\n PDFSettingsViewMode,\n LayoutType,\n Orientation,\n Crop,\n ThumbnailsAlignment,\n GIFType,\n HTMLDataSource,\n StylesPosition,\n MapType,\n ViewRole,\n VoteRole,\n PollLayoutType,\n PollLayoutDirection,\n BackgroundType,\n DecorationType,\n FontType,\n ImageStylesPosition,\n AspectRatio,\n Resizing,\n Placement,\n CardStylesType,\n CardStylesAlignment,\n Layout,\n AppType,\n InitialExpandedItems,\n Direction,\n VerticalAlignment,\n NullValue,\n Scaling,\n LayoutDataImagePosition,\n VerticalAlignmentAlignment,\n ResponsivenessBehaviour,\n DesignTarget,\n TestEnum,\n CalendarType,\n ConnectMethod,\n ListEventFromCalendars,\n SyncToCalendar,\n OAuthAppType,\n OAuthTechnologies,\n NavigationType,\n PingSettingsGroupComponentDataState,\n NotificationTopicState,\n NotificationTopicType,\n RecipientType,\n PlanFormPricingOption,\n PlanFormPricingType,\n PlanFormDefaultSection,\n PlanPeriodUnit,\n TypedDynamicParamType,\n UserNotificationDataRecipientFilterType,\n InitiatorType,\n Level,\n IconType,\n MobileApplication,\n AndroidStyle,\n ExposureRuleType,\n Intent,\n UserNotificationDataType,\n RecipientFilterType,\n Type,\n Environment,\n SchemaScope,\n SchemaFieldFieldType,\n CustomElementScriptType,\n HeightMode,\n FieldFieldType,\n Format,\n StringComponentType,\n ImagePosition,\n Alignment,\n ImageFit,\n NumberOfColumns,\n FirstDayOfWeek,\n NumberComponentType,\n BooleanComponentType,\n ItemType,\n PropertiesTypeEnum,\n ArrayComponentType,\n WixFileComponentType,\n UploadFileFormat,\n UploadFileFormatEnumUploadFileFormat,\n PaymentComponentType,\n ProductType,\n PriceType,\n AddressComponentType,\n DefaultCountryConfigType,\n SchedulingComponentType,\n AppointmentFormat,\n InputType,\n EmailInfoTag,\n PhoneInfoTag,\n AddressInfoTag,\n ConfirmationLevel,\n ContactField,\n DisplayFieldType,\n ChangeableProperty,\n OverrideEntityType,\n Operator,\n Target,\n SubmitSuccessAction,\n TemplateType,\n CustomFieldsType,\n EditableProperties,\n RequiredIndicator,\n RequiredIndicatorPlacement,\n WixCodePublishTaskName,\n ChannelConfigurationChannelType,\n AcceptedMessageTypesAcceptedDirectMessageType,\n AcceptedMessageTypesAcceptedSmsMessageType,\n FactorType,\n MonitoringType,\n Escalation,\n ImportanceLevel,\n Width,\n PanelContentType,\n PanelMode,\n StorageType,\n ConsentCategory,\n StorageDomain,\n Method,\n ParticipantType,\n InterfaceConfigurationType,\n Scope,\n DataType,\n A11yAttributes,\n LinkType,\n ContainerType,\n ResizeDirection,\n RichTextAbilities,\n ImageCategoryTypes,\n VideoCategoryTypes,\n VectorArtCategoryTypes,\n ElementType,\n CssPropertyTypeEnumCssPropertyType,\n CssVariableTypeEnumCssDataType,\n StyleType,\n FilterFunction,\n DisplayValueEnumDisplayValue,\n WritingModeValue,\n BackgroundModeEnum,\n CssDataType,\n ActionType,\n PanelType,\n ActionName,\n SizingType,\n BreakpointEnumBreakpoint,\n ContentResizeDirection,\n Archetype,\n NativeStateType,\n GroupType,\n ImageType,\n CssPropertyType,\n Trigger,\n EffectGroup,\n RestrictionLevel,\n ElementDisplayOption,\n SidebarDataType,\n SidebarEntityType,\n OperatorEnumOperator,\n ParameterType,\n FilterValueDefinitionMode,\n TimeConstraintType,\n ValueConstraintType,\n Category,\n RegionScopeScope,\n VibeActionType,\n AssetType,\n WebhookIdentityType,\n} from './data-extensions-v1-data-extension-schema-schemas.universal.js';\nexport {\n DataExtensionSchema,\n ReindexEvent,\n ReindexField,\n CreateDataExtensionSchemaRequest,\n CreateDataExtensionSchemaResponse,\n UpdateDataExtensionSchemaRequest,\n UpdateDataExtensionSchemaResponse,\n ListDataExtensionSchemasRequest,\n ListDataExtensionSchemasResponse,\n DeleteDemoDataExtensionSchemaRequest,\n DeleteDemoDataExtensionSchemaResponse,\n DeleteGlobalExtensionSchemaRequest,\n DeleteGlobalExtensionSchemaResponse,\n DeleteByWhiteListedMetaSiteRequest,\n DeleteByWhiteListedMetaSiteResponse,\n DomainEvent,\n DomainEventBodyOneOf,\n EntityCreatedEvent,\n RestoreInfo,\n EntityUpdatedEvent,\n EntityDeletedEvent,\n ActionEvent,\n Empty,\n AppRuntimeDataEvent,\n AppRuntimeDataCacheEntity,\n RuntimeComponentCacheEntity,\n RuntimeComponentCacheEntityComponentOneOf,\n RuntimeComponentCacheEntityComponent,\n ComponentData,\n ComponentDataDataOneOf,\n WidgetComponentData,\n FixedPositionOptions,\n WidgetDisplay,\n Position,\n SubPage,\n IsStretched,\n Margins,\n DisplayProperties,\n DisplayValue,\n Docking,\n DockingProperties,\n Height,\n ApiWidth,\n PageComponentData,\n Padding,\n PageReplaceOptions,\n PageReplaceOptionsOptionsOneOf,\n PageReplace,\n ReplacingOptions,\n ReplaceableOptions,\n WidgetOutOfIframeComponentData,\n OutOfIframeData,\n SettingsUrl,\n ErrorReporting,\n ErrorReportingArtifact,\n ApiSlot,\n ExtensionExposure,\n PageOutOfIframeComponentData,\n PlatfromComponentData,\n DashboardComponentData,\n WorkerComponentData,\n StudioComponentData,\n StudioWidgetComponentData,\n StudioWidgetVariation,\n CustomElement,\n CustomElementConsentCategoryOneOf,\n NestedWidgets,\n PresetInfo,\n PresetSize,\n InstallationSettings,\n InstallationSettingsOptionsOneOf,\n MainPresets,\n PageOptions,\n LightboxOptions,\n EditorPresence,\n PresetEditorPresence,\n FocalPoint,\n BaseInfo,\n HelpResources,\n WidgetInstallationSettings,\n WidgetInstallationSettingsTargetContainerOneOf,\n BaseInstallation,\n WidgetInstallation,\n DefaultPresets,\n ComponentModel,\n CodePackageComponentData,\n DashboardPlatfromComponentData,\n EmbeddedScriptComponentData,\n WixDependency,\n WebComponentData,\n Size,\n Settings,\n Tab,\n Container,\n ContainerDataOneOf,\n Main,\n MainPropsData,\n DashboardButton,\n RichTextWithIllustrationVertical,\n Section,\n DrillInListItem,\n DrillItem,\n DrillItemDataOneOf,\n RadioButtonLabeled,\n Condition,\n SingleKeyCondition,\n ColorSelectLabeled,\n ColorSelectLabeledDataOneOf,\n ColorDefinition,\n Thumbnails,\n ThumbnailData,\n SliderLabeled,\n DropDownLabeled,\n ToggleLabeled,\n BarAlignment,\n TextInputLabeled,\n FontFamilyWithColorPicker,\n FontDefinition,\n TextStyle,\n TextStyleDefaultColorOneOf,\n ResetButton,\n WidgetDetails,\n WidgetBehavior,\n ExtensionData,\n SnippetSolutionData,\n DataComponent,\n Field,\n FieldTypeOptionsOneOf,\n ObjectOptions,\n ArrayOptions,\n ArrayOptionsElementTypeOptionsOneOf,\n ObjectField,\n ObjectFieldTypeOptionsOneOf,\n ReferenceOptions,\n MultiReferenceOptions,\n DataPermissions,\n Index,\n IndexField,\n Collection,\n DCConfigData,\n StaticFileComponentData,\n AppConfig,\n SiteConfig,\n MultipleDashboardsComponentData,\n DashboardItem,\n PaymentsGatewayComponentData,\n AutomationTrigger,\n SchemaConfig,\n SchemaField,\n Primitive,\n Simple,\n _Date,\n SchemaFieldType,\n SchemaFieldTypeFieldTypeOneOf,\n InvoicesActionsComponentData,\n DashboardApplicationData,\n Bundle,\n ExperimentGroupWrapper,\n PageDashboardApplicationComponent,\n AppConfiguration,\n HostedComponent,\n ContactLabelsComponentData,\n PredefinedLabel,\n WidgetPluginComponentData,\n PluginMarketData,\n PluginPlacement,\n PluginInstallationSettings,\n CrossSellConfig,\n LocalDeliveryComponentData,\n PaymentServiceProviderConfig,\n PaymentMethod,\n PaymentMethodMethodOneOf,\n HostedPage,\n Logos,\n Color,\n PaymentServiceProviderCredentialsField,\n PaymentServiceProviderCredentialsFieldFieldOneOf,\n SimpleField,\n CheckboxField,\n DropdownField,\n DropdownFieldOption,\n MembershipsSPIConfig,\n LineItemsEnricherConfig,\n ShippingRatesConfig,\n ShippingLabelCarrierSpiConfig,\n PackageType,\n PackageDimension,\n V1Image,\n RestaurantsPOSComponentData,\n CatalogSyncConfiguration,\n ShippingProviderConfig,\n SpiBaseUri,\n AlternativeUri,\n AlertEnricherSpiConfiguration,\n DataExtensionsComponentData,\n GenericHooksConfig,\n GenericHookConfig,\n ActionProviderSPIConfig,\n ActionSPIConfig,\n WidgetComponentOptions,\n GenericOptions,\n WixApiOptions,\n IntegrationOptions,\n ActionSPIConfigImplementedMethods,\n Metadata,\n ActionSPIConfigInterfaceConfiguration,\n ActionSPIConfigInterfaceConfigurationOptionsOneOf,\n Source,\n SourceOptionsOneOf,\n CatalogSPIConfig,\n DiscountConfig,\n BackOfficeExtensionContainer,\n Extendable,\n SlotData,\n SlotDataSlotTypeOneOf,\n DtsDefinitionReference,\n DtsDefinitionReferenceDtsDefinitionOneOf,\n DtsHttpLink,\n DtsContent,\n BlocksData,\n Dimension,\n SlotParams,\n WidgetSlot,\n MenuSlot,\n BackOfficeExtension,\n BackOfficeExtensionExtensionOneOf,\n LegacyBackOfficeExtensionWidget,\n LegacyBackOfficeExtensionWidgetAssetOneOf,\n BackOfficeScriptAsset,\n LegacyBackOfficeMenuItem,\n OpenComponent,\n LegacyBackOfficeMenuItemAction,\n TriggerProviderSPIConfig,\n PreRegisterConfig,\n ProductsPathsConfig,\n CustomScopeConfig,\n GiftCardProviderConfig,\n ExternalFilterProviderConfig,\n RecommendationsProviderConfig,\n AlgorithmConfig,\n DropshippingProviderSPIConfig,\n InvoicesConfig,\n SeoKeywordsSuggestionsSPIConfig,\n CustomTriggerConfig,\n ContentProviderConfig,\n ApplicationAutomationComponent,\n Rule,\n ServiceTrigger,\n TriggerFilter,\n Debounce,\n ServiceAction,\n ConditionBlock,\n Offset,\n OffsetValueOneOf,\n Until,\n Delay,\n DelayTypeOneOf,\n RateLimit,\n ActionCondition,\n Conditions,\n AutomationMetadata,\n OriginInfo,\n BackOfficeSidebarCategory,\n BackOfficePage,\n BackOfficePageAssetOneOf,\n ComponentMetaData,\n Keywords,\n PageAnchor,\n AnchorMetaData,\n UrlParam,\n AdditionalFeesSPIConfig,\n PingNotificationComponentData,\n BookingsPricingProviderConfig,\n AuthenticatorConfig,\n ExpectedInputs,\n PredefinedExpectedInput,\n PredefinedExpectedInputConfiguration,\n PredefinedExpectedInputConfigurationTypeOneOf,\n AdminConfigurableTextInput,\n TextInputSettings,\n IDPConnectionConfig,\n ItemsSelectionProviderConfig,\n LearnMore,\n ImageConfig,\n AvatarConfig,\n SearchField,\n FilterInfo,\n FilterInfoOptionsOneOf,\n StaticFilterOptions,\n StaticFilterOption,\n ProviderFilterOptions,\n ContentDataOverrides,\n TagOverrides,\n SearchParams,\n ContentData,\n AdditionalStepInfo,\n CreateNewItemInfo,\n ItemThumbnail,\n ItemThumbnailOptionsOneOf,\n TagOverridesEntry,\n RenderOverrides,\n SyncedProjectsProviderConfig,\n CommunicationChannelConfiguration,\n ChannelConfiguration,\n ChannelConfigurationMessagingConfigOneOf,\n DirectMessageConfig,\n MediaCapabilities,\n EmailMessageConfig,\n SmsMessageConfig,\n ChannelBranding,\n BrandIcons,\n ChannelIcon,\n ConversationLimitations,\n PostLoginConfig,\n BackOfficeWidget,\n BackOfficeWidgetContentOneOf,\n SocialMarketingDesignSPIConfig,\n FormSubmissionSpiConfig,\n FormsSubmissionsNamespaceConfig,\n FormsPermissions,\n WixOfferingComponentData,\n WixOfferingComponentDataOfferingOneOf,\n BusinessManagerPage,\n DevCenterTestingComponentData,\n DevCenterTestingComponentDataTranslatableOneOfOneOf,\n MessageContainingTranslatables,\n RichContent,\n Node,\n NodeDataOneOf,\n NodeStyle,\n ButtonData,\n StylesBorder,\n Colors,\n PluginContainerData,\n PluginContainerDataWidth,\n PluginContainerDataWidthDataOneOf,\n Spoiler,\n PluginContainerDataHeight,\n Styles,\n V1Link,\n V1LinkDataOneOf,\n Rel,\n CodeBlockData,\n V1TextStyle,\n DividerData,\n FileData,\n FileSource,\n FileSourceDataOneOf,\n PDFSettings,\n GalleryData,\n Media,\n ItemImage,\n ItemVideo,\n Item,\n ItemDataOneOf,\n GalleryOptions,\n GalleryOptionsLayout,\n ItemStyle,\n GalleryOptionsThumbnails,\n GIFData,\n GIF,\n HeadingData,\n HTMLData,\n HTMLDataDataOneOf,\n ImageData,\n ImageDataStylesBorder,\n ImageDataStyles,\n LinkPreviewData,\n LinkPreviewDataStyles,\n MapData,\n MapSettings,\n ParagraphData,\n PollData,\n SettingsPermissions,\n PollOption,\n PollSettings,\n PollLayout,\n OptionLayout,\n Gradient,\n PollDesignBackground,\n PollDesignBackgroundBackgroundOneOf,\n PollDesign,\n OptionDesign,\n Poll,\n PollDataLayout,\n Design,\n TextData,\n Decoration,\n DecorationDataOneOf,\n AnchorData,\n ColorData,\n LinkData,\n MentionData,\n FontSizeData,\n SpoilerData,\n FontFamilyData,\n AppEmbedData,\n AppEmbedDataAppDataOneOf,\n BookingData,\n EventData,\n ButtonStyles,\n ImageStyles,\n RibbonStyles,\n CardStyles,\n PricingData,\n VideoData,\n PlaybackOptions,\n EmbedData,\n Oembed,\n CollapsibleListData,\n TableData,\n Dimensions,\n TableCellData,\n CellStyle,\n BorderColors,\n BorderWidths,\n ListValue,\n AudioData,\n OrderedListData,\n BulletedListData,\n BlockquoteData,\n CaptionData,\n LayoutData,\n LayoutDataBackgroundImage,\n LayoutCellData,\n V1Metadata,\n DocumentStyle,\n TextNodeStyle,\n CustomRefData,\n TranslatedMessageWithUniqueFieldRepeated,\n TranslatedMessageWithIdRepeated,\n DiscoveryMetaData,\n InternalComponentMetadata,\n ComponentsValidatorConfig,\n ComponentTranslationAdditionalFieldsConfig,\n FormSchemaSpiConfig,\n FormsSchemaNamespaceConfig,\n Restrictions,\n ProviderConfig,\n DefaultTaxGroupProviderConfig,\n TaxationCategoryProvider,\n DynamicSiteStructureProviderConfig,\n HeadlessOAuth,\n WixPagesDomainMapping,\n TaxCalculatorSpiConfig,\n TaxCountriesConfig,\n CommentModerationProviderConfig,\n GridAppFilesTransformerConfig,\n PolicyConfig,\n CustomChargesConfig,\n ValidationsSPIConfig,\n ComponentReferenceDataConfig,\n ReviewsProductCatalogProviderConfig,\n SocialMarketingDesignsProviderConfig,\n GbpFeatureConfig,\n CommentFilterProviderConfig,\n TaxIdValidatorConfig,\n TaxTypesConfig,\n PingSettingsGroupComponentData,\n FormSpamSubmissionSpiConfig,\n FormsSpamSubmissionsNamespaceConfig,\n SpamSubmissionPermissions,\n EditorAddon,\n InitialPosition,\n ToolPanelConfig,\n AddonMarketData,\n ExternalDatabaseSpiConfig,\n PaymentSettingsSPIConfig,\n NotificationTopic,\n NotificationPreferencesFilterConfig,\n BookingsResourceTypesProviderConfig,\n BookingsResourceType,\n PricingPlansFormConfiguration,\n TextWithTooltip,\n TooltipSuffix,\n TextWithSuffix,\n TextWithSuffixSuffixOneOf,\n LinkSuffix,\n PreviewCardPlaceholders,\n InputWithPlaceholder,\n CoverImageConfiguration,\n PerksConfiguration,\n CheckboxConfiguration,\n PreviewConfiguration,\n TermsModalConfiguration,\n ThankYouPageInputConfig,\n ThankYouPageRedirectsConfiguration,\n ThankYouPagePreviewConfiguration,\n ThankYouPageModalConfiguration,\n PlanSettingsRowConfiguration,\n TermsAndConditionsConfiguration,\n ThankYouPageConfiguration,\n PlanFormPricingAndDurationSectionDurationInputConfiguration,\n DurationInputConfigurationDurationRenameOptions,\n PlanFormPricingAndDurationSectionInputConfiguration,\n SetupFeeConfiguration,\n FreeTrialConfiguration,\n FreeOptionConfiguration,\n OneTimeOptionConfiguration,\n RecurringOptionConfiguration,\n PlanFormPricingSectionSetupFeeConfiguration,\n PlanFormPricingSectionInputConfiguration,\n RecurringPricingTypeConfigurationFreeTrialConfiguration,\n FreePricingTypeConfiguration,\n OneTimePricingTypeConfiguration,\n RecurringPricingTypeConfiguration,\n DurationRenameOptions,\n DurationInputConfiguration,\n InputConfiguration,\n Illustration,\n IllustrationIllustrationOneOf,\n PlanDuration,\n PlanPriceData,\n PricingRecurring,\n PerkValues,\n PlanPricing,\n PlanPricingPricingModelOneOf,\n PlanFormPreviewSection,\n PlanFormInfoSection,\n PlanFormPlanSettingsSection,\n PlanFormBenefitsSection,\n PlanFormPricingAndDurationSection,\n PlanFormCustomSection,\n PlanFormSection,\n PlanFormSectionSectionOneOf,\n PlanFormTypeMetadata,\n PlanFormPagePermissionsSection,\n PlanFormInitialValue,\n PlanFormPricingSection,\n PlanFormDurationSection,\n PlanFormCustomPricingRulesSection,\n PlanFormStartDateRulesSection,\n UserNotification,\n UserNotificationData,\n TypedDynamicParam,\n WixUsersData,\n SiteContributorsData,\n WixUserData,\n ConstOrDynamicParam,\n ConstOrDynamicParamValueOneOf,\n Url,\n BackofficeActionDeeplink,\n OrderValue,\n NotificationChannels,\n ResponsysEmail,\n VelocityEmail,\n ShoutoutEmail,\n EmailTemplateConfig,\n EmailTemplateConfigProviderOneOf,\n WebFeedContentKeys,\n MobileFeedContentKeys,\n FeedAggregation,\n Icon,\n IconDataOneOf,\n UrlData,\n WebFeedChannel,\n MobileFeedChannel,\n FeedChannelsConfig,\n SharedPlatformMobilePushConfig,\n AndroidMobilePushConfig,\n MobilePushChannelConfig,\n MobilePushContentKeys,\n ExposureRule,\n ExposureRuleRuleOneOf,\n BooleanExperimentExposureRule,\n CustomExperimentExposureRule,\n VoiceContentKeys,\n SmsContentKeys,\n BrowserPushContentKeys,\n EmailChannel,\n FeedChannels,\n MobilePushChannel,\n VoiceChannel,\n SmsChannel,\n BrowserPushChannel,\n LimiterField,\n UserNotificationDataRecipientFilter,\n UserNotificationDataRecipientFilterDataOneOf,\n UserNotificationDataInitiator,\n UserNotificationDataInitiatorDataOneOf,\n UserNotificationDataDeeplink,\n UserNotificationDataDeeplinkOfOneOf,\n UserNotificationDataContext,\n ContactNotification,\n ContactsNotificationData,\n ContactsData,\n ContactData,\n SiteMemberData,\n LiveSiteActionDeeplink,\n RecipientFilter,\n RecipientFilterDataOneOf,\n Initiator,\n InitiatorDataOneOf,\n Deeplink,\n DeeplinkOfOneOf,\n Context,\n UnifiedPage,\n PageInstallationSettings,\n PageInstallation,\n PageContent,\n WidgetAsContent,\n UnifiedPageEditorSettings,\n PageEditorSettings,\n AvailabilityTimeSlotsProviderConfig,\n ProposalEditorProviderConfig,\n CustomReservationsApprovalConfig,\n CommentsContextProviderConfig,\n FormSpamSubmissionReportSpiConfig,\n FormSpamSubmissionReportsNamespaceConfig,\n FormSpamSubmissionReportPermissions,\n VeloActionConfig,\n EventTypeProviderConfig,\n ServiceAvailabilityPolicyProviderConfig,\n SmsActionMessage,\n BookingPolicyProviderConfig,\n MultiServiceBookingPolicyProviderConfig,\n FormSubmissionSpiExtensionConfig,\n FormsSubmissionsExtensionNamespaceConfig,\n AssistantSpiConfig,\n MultilingualTranslationSchema,\n Schema,\n SchemaKey,\n V1SchemaField,\n PreviewFields,\n TaxGroupsProviderConfig,\n AdditionalTaxGroup,\n TaxCalculationConfig,\n BackOfficeModal,\n BackOfficeModalContentOneOf,\n ModalParams,\n DeploymentPipelineProviderConfig,\n CustomElementWidget,\n WidgetData,\n EditorBehaviors,\n SettingsPanel,\n Dashboard,\n WidgetSize,\n WidgetSizeHeight,\n WidgetSizeWidth,\n Preset,\n Breakpoints,\n Breakpoint,\n BackOfficeExtensionWidget,\n BackOfficeExtensionWidgetAssetOneOf,\n BackOfficeExtensionMenuItem,\n NavigateToPageAction,\n OpenModalAction,\n MenuAction,\n MenuActionActionOneOf,\n FormTemplate,\n FormTemplateTemplateTypeOptionsOneOf,\n V2Field,\n V2FieldFieldTypeOptionsOneOf,\n InputField,\n InputFieldInputTypeOptionsOneOf,\n StringType,\n StringTypeFormatOptionsOneOf,\n DateTimeConstraints,\n PhoneConstraints,\n ValidationMessages,\n TextInput,\n MediaItem,\n MediaItemMediaOneOf,\n CommonImage,\n MediaSettings,\n RadioGroup,\n RadioGroupOption,\n CustomOption,\n Dropdown,\n DropdownOption,\n DateTimeInput,\n PhoneInput,\n DateInput,\n TimeInput,\n DatePicker,\n ServicesDropdown,\n ServicesDropdownOption,\n Password,\n NumberType,\n NumberInput,\n RatingInput,\n BooleanType,\n Checkbox,\n ArrayType,\n IntegerType,\n ObjectType,\n PropertiesType,\n PropertiesTypePropertiesTypeOptionsOneOf,\n ArrayTypeArrayItems,\n ArrayTypeArrayItemsItemTypeOptionsOneOf,\n CheckboxGroup,\n CheckboxGroupOption,\n Tags,\n TagsOption,\n FileType,\n FileUpload,\n Signature,\n PaymentType,\n QuantityLimit,\n FixedPriceOptions,\n DynamicPriceOptions,\n Product,\n ProductPriceOptionsOneOf,\n ProductCheckboxGroup,\n ProductCheckboxGroupOption,\n DonationInput,\n DonationInputOption,\n PaymentInput,\n FixedPayment,\n MultilineAddressValidation,\n FieldOverrides,\n FieldsOverrides,\n MultilineAddress,\n AddressLine2,\n DefaultCountryConfig,\n DefaultCountryConfigOptionsOneOf,\n FieldsSettings,\n Appointment,\n AppointmentFormatInfoOneOf,\n Location,\n LocationLocationInfoOneOf,\n InPersonOptions,\n VideoConferenceOptions,\n PhoneOptions,\n FormFieldContactInfo,\n FormFieldContactInfoAdditionalInfoOneOf,\n EmailInfo,\n PhoneInfo,\n AddressInfo,\n CustomFieldInfo,\n SubscriptionInfo,\n _String,\n _StringComponentTypeOptionsOneOf,\n InputField_Number,\n InputField_NumberComponentTypeOptionsOneOf,\n _Boolean,\n _BooleanComponentTypeOptionsOneOf,\n _Array,\n _ArrayComponentTypeOptionsOneOf,\n _Object,\n WixFile,\n WixFileComponentTypeOptionsOneOf,\n Payment,\n PaymentComponentTypeOptionsOneOf,\n Address,\n AddressComponentTypeOptionsOneOf,\n Scheduling,\n SchedulingComponentTypeOptionsOneOf,\n DisplayField,\n DisplayFieldDisplayFieldTypeOptionsOneOf,\n RichContentOptions,\n PageNavigationOptions,\n Step,\n FormLayout,\n BreakPoint,\n ItemLayout,\n ItemLayoutItemOneOf,\n Group,\n Margin,\n BreakPointSection,\n V2Rule,\n RequiredOptions,\n HiddenOptions,\n AllowedValuesOptions,\n FormOverrideFieldOverride,\n FormOverrideFieldOverridePropertyTypeOptionsOneOf,\n ConditionNode,\n ConditionNodeNodeOneOf,\n AndCondition,\n OrCondition,\n V2Condition,\n FormOverride,\n FormOverrideEntityTypeOptionsOneOf,\n SubmitSettings,\n SubmitSettingsSubmitSuccessActionOptionsOneOf,\n ThankYouMessageOptions,\n RedirectOptions,\n ExtensionDetails,\n EditableFields,\n AddCustomFields,\n OverrideTemplateFields,\n DeleteTemplateFields,\n FieldGroup,\n RequiredIndicatorProperties,\n NotificationContent,\n SingleContent,\n GroupedContent,\n BroadcastList,\n Param,\n PayoutsProviderConfig,\n ReviewsEntityCatalogProviderConfig,\n VeloPublishPipelineTaskProviderConfig,\n FunctionsShopPriceSpiConfig,\n Namespace,\n _Function,\n Input,\n BuilderSpi,\n Output,\n State,\n Spi,\n CustomInitialPreset,\n FunctionDefinition,\n Configuration,\n Description,\n CheckoutContentSPIConfig,\n V2CommunicationChannelConfiguration,\n ChannelChannelConfiguration,\n ChannelChannelConfigurationMessagingConfigOneOf,\n DmDirectMessageConfig,\n ChannelMediaCapabilities,\n EmailEmailMessageConfig,\n SmsSmsMessageConfig,\n ChannelChannelBranding,\n ChannelBrandIcons,\n UpstreamWixCommonImage,\n ChannelImplementedMethods,\n WebhookComponentData,\n TopologyComponentData,\n CustomRewardProviderConfig,\n FunctionRecipe,\n BackOfficeExternalUrl,\n FactorConfig,\n DiscountsSPIConfig,\n VeloCustomCss,\n AdaptiveComponentProviderConfig,\n ActionSpiConfig,\n InventorySpiConfig,\n Monitoring,\n MonitoringOptionsOneOf,\n SentryOptions,\n Project,\n PanoramaOptions,\n PluginConfig,\n Consequence,\n Constraint,\n UnifiedLightbox,\n LightboxEditorSettings,\n LightboxCloseOptions,\n LightboxContent,\n PageWidgetAsContent,\n FormSpiExtensionConfig,\n SchemaGroup,\n SchemaGroupElement,\n Panel,\n PanelSelectedContentTypeOneOf,\n PanelSize,\n CodePanel,\n PurchaseValidationsConfig,\n BrowserStorage,\n SdkDefinition,\n SiteWidgetSlot,\n EventValidationProviderConfig,\n ValidationTarget,\n ClientSideService,\n Npm,\n Definition,\n Implementation,\n BillingSettingsConfig,\n PaymentDateModification,\n PatternsWizard,\n ApplicationProfileProviderConfig,\n V1ImplementedMethods,\n ApplicationProfile,\n TextToSpeechActionMessage,\n AudienceProviderConfig,\n InterfaceConfiguration,\n InterfaceConfigurationOfTypeOneOf,\n WidgetComponent,\n ItemSelection,\n ImplementedMethods,\n PriceSPIConfig,\n StartDateLimitsSPIConfig,\n StartDateRulesSPIConfig,\n TicketReservationsSpiConfig,\n DisputeServicePluginConfig,\n FeesSPIConfig,\n EditorReactComponent,\n Resources,\n ClientResources,\n EditorDependencies,\n Resource,\n TranslationResources,\n EditorElement,\n DataItem,\n DataItemSelectedDataTypeOneOf,\n Text,\n TextEnum,\n Option,\n _Number,\n A11y,\n Link,\n ArrayItems,\n ArrayItemsArrayDataOneOf,\n DataItems,\n ReactElementContainer,\n ReactElementContainerSelectedContainerTypeOneOf,\n SimpleContainer,\n ContainerLayout,\n ContainerStyleOverrides,\n StyleItemOverrides,\n ContainerBehaviors,\n Slot,\n PlaceHolder,\n RichText,\n Image,\n Video,\n VectorArt,\n EditorFunction,\n FunctionParameter,\n FunctionParameterSelectedDataTypeOneOf,\n FunctionParameterArrayItems,\n FunctionParameterArrayItemsArrayDataOneOf,\n FunctionParameterItems,\n FunctionReturnType,\n FunctionReturnTypeSelectedDataTypeOneOf,\n ElementItem,\n ElementItemSelectedElementTypeOneOf,\n InlineElement,\n StyleItem,\n StyleItemSelectedItemTypeOneOf,\n StyleItemSelectedCssPropertyTypeOneOf,\n StyleItemSelectedCssVariableTypeOneOf,\n Filter,\n BackdropFilter,\n Display,\n WritingMode,\n Background,\n BackgroundBackgroundMediaModeOneOf,\n CustomEnum,\n CustomEnumOption,\n CustomEnumOptionCssProperty,\n CssNumber,\n Behaviors,\n Actions,\n Action,\n Execution,\n ExecutionActionExecuteOneOf,\n DataAction,\n StyleAction,\n EventAction,\n PanelAction,\n PanelActionSelectedPanelTypeOneOf,\n ForwardAction,\n ForwardActionActionOneOf,\n DisplayGroupAction,\n CssPropertyAction,\n CssCustomPropertyAction,\n DashboardAction,\n PresetItem,\n ComponentInitialSize,\n InitialSizeSetting,\n InitialSizeSettingSelectedSizingTypeOneOf,\n DisplayFilters,\n DisplayFilter,\n PresetStyleDefaults,\n StyleItemDefaults,\n ElementStyleDefaults,\n BreakpointPresetStyleOverrides,\n PresetStyleOverrides,\n PresetStyleItemOverrides,\n ElementStyleOverrides,\n EditorElementLayout,\n ContentFill,\n PresetElementDefaults,\n CssPropertyItemDefaults,\n PresetInnerElementDefaults,\n ElementState,\n TargetElement,\n VisibleState,\n DisplayGroupItem,\n DisplayGroupItemSelectedGroupTypeOneOf,\n ItemsGroup,\n ShorthandGroupBackground,\n Coordinates,\n Border,\n Corners,\n Font,\n TextDecoration,\n Gap,\n TextGroup,\n DataGroupsArrayItems,\n ListItem,\n CssPropertyItem,\n CssPropertyItemSelectedCssPropertyTypeOneOf,\n BackgroundImage,\n CssCustomPropertyItem,\n CssCustomPropertyItemSelectedCssPropertyTypeOneOf,\n CustomPropertyEnum,\n CustomPropertyEnumOption,\n CustomPropertyEnumOptionStyle,\n HelpArticle,\n HelpArticleArticleTypeOneOf,\n RefElement,\n DataItemOverrides,\n DataItemOverridesSelectedDataTypeOneOf,\n ImageOverrides,\n VideoOverrides,\n VectorArtOverrides,\n RefInnerElementDefaults,\n CssPropertyItemDefinitionOverrides,\n Interactions,\n InstallationInfo,\n InstallationInfoTargetContainerOneOf,\n MarketplaceSPIConfig,\n FormSchemaDynamicValuesSpiConfig,\n BlogPaywallProviderConfig,\n RewardProviderConfig,\n ProductRestrictionsConfig,\n RestrictionsConfig,\n Restriction,\n FormSubmissionModerationSpiConfig,\n FormSubmissionModerationSpiNamespaceConfig,\n EventBadgesSpiConfig,\n OperationExecutorConfig,\n BackOfficeCustomization,\n Header,\n HeaderConfigOneOf,\n HeaderConfig,\n HeaderConfigHeaderConfigOneOf,\n PlatformHeaderConfig,\n MenuLink,\n Logo,\n MenuDropdown,\n SearchConfig,\n HeaderWidgetConfig,\n Sidebar,\n SidebarConfigOneOf,\n SidebarConfig,\n SidebarChildItem,\n SidebarChildItemItemOneOf,\n SecondLevelCategory,\n SidebarSecondLevelChildItem,\n SidebarSecondLevelChildItemItemOneOf,\n Page,\n FirstLevelCategory,\n SidebarWidgetConfig,\n SidebarRootItem,\n SidebarRootItemItemOneOf,\n SidebarWidget,\n SidebarWidgetConfigOneOf,\n BackOfficeCustomizationSidebarEntity,\n BackOfficeCustomizationSidebarEntityItemOneOf,\n CoreApps,\n LeftPanel,\n LeftPanelWidgetConfig,\n KeepAlivePage,\n ComponentEnricherConfig,\n BackOfficeRestrictedCustomization,\n AppPreviewProviderConfig,\n LegendsSpiConfig,\n NamespaceConfig,\n Permissions,\n CustomPermission,\n NamespaceConfigV2,\n AppDeploymentProviderConfig,\n BackendWorker,\n EventTimeSlotsProviderConfig,\n AppEnvironmentProviderConfig,\n SDKExports,\n SDKExportsNpm,\n ExportMetadata,\n ViewerService,\n ViewerServiceAssets,\n ProviderAccountServicePluginConfig,\n ProviderConfigMessage,\n V2ImplementedMethods,\n FilteringCapability,\n OperatorConfiguration,\n Parameter,\n ParameterValueDefinitionDetailsOneOf,\n StringListOptions,\n StringOption,\n IntListOptions,\n DecimalListOptions,\n BoolListOptions,\n CurrencyCodeListOptions,\n LanguageTagListOptions,\n ItemSelectionOptions,\n TimeConstraintConfiguration,\n TimeConstraintConfigurationValueConstraintsOneOf,\n PredefinedValues,\n MinMaxRange,\n RangeConstraints,\n ProductCatalogProviderConfig,\n SiteMigrationSpiConfig,\n PosProviderSettingsServicePluginConfig,\n ManagedMenuEntities,\n FieldManagementConfig,\n RepeatedFieldOverrideConfig,\n WixVibeCodingInstructions,\n TaxExemptGroupsProviderConfig,\n TaxExemptGroup,\n ExemptRegions,\n V1Region,\n BookingAutomationsConfig,\n V2TriggerOverride,\n TriggerFieldOverride,\n BookingsPlatformConfig,\n PermissionOverrides,\n ServicePermissionOverrides,\n BookingPermissionOverrides,\n PolicyPermissionOverrides,\n FormsConfig,\n AutomationsConfig,\n TriggerOverride,\n FieldOverride,\n WixVibeComponent,\n CustomAction,\n CustomActionActionExecuteOneOf,\n VibeDashboardAction,\n VibeCustomPanelAction,\n WixelSPIConfig,\n StaffSortingProviderConfig,\n FunctionEcomDiscountTriggerEligibilityProviderConfig,\n FunctionAssistantToolProviderConfig,\n SiteMapProviderConfig,\n WixAiGatewaySpiConfig,\n UrlMapperProviderConfig,\n ProviderSuppressionServicePluginConfig,\n Provider,\n FormsSPIConfig,\n EditorContextProvider,\n EditorContextProviderResources,\n ContextSpecifier,\n ApiContext,\n ContextItem,\n ContextItemSelectedDataTypeOneOf,\n ContextImplementor,\n ContextArrayItems,\n ContextArrayItemsArrayDataOneOf,\n ContextDataItems,\n EditorFunctionLibrary,\n FunctionResources,\n RuntimeComponentCacheEntityExperiment,\n RuntimeComponentCacheEntityExperimentExperimentOneOf,\n GradualRolloutCacheEntity,\n GradualUpdateCacheEntity,\n GradualDeleteCacheEntity,\n PartialUpdateCacheEntity,\n CreatedByCacheEntity,\n AppData,\n TranslatedData,\n DeleteUserDefinedFieldsRequest,\n DeleteUserDefinedFieldsResponse,\n MessageEnvelope,\n IdentificationData,\n IdentificationDataIdOneOf,\n BaseEventMetadata,\n EventMetadata,\n DataExtensionSchemaCreatedEnvelope,\n DataExtensionSchemaDeletedEnvelope,\n DataExtensionSchemaUpdatedEnvelope,\n ListDataExtensionSchemasOptions,\n DeleteUserDefinedFieldsOptions,\n} from './data-extensions-v1-data-extension-schema-schemas.universal.js';\nexport {\n DataExtensionSchemaStateWithLiterals,\n RequestedFieldWithLiterals,\n ComponentTypeWithLiterals,\n WidgetVerticalWithLiterals,\n WidgetHorizontalWithLiterals,\n WidgetWidthTypeWithLiterals,\n RegionWithLiterals,\n UnitTypeWithLiterals,\n HorizontalDockingWithLiterals,\n VerticalDockingWithLiterals,\n SiteMembersSsrCachingWithLiterals,\n MpaNavigationWithLiterals,\n ReplacementTypeWithLiterals,\n PluginInterfaceWithLiterals,\n ExposureWithLiterals,\n MaturityWithLiterals,\n HTTPMethodWithLiterals,\n InstallPageWithLiterals,\n RegionTypeWithLiterals,\n StaticContainerWithLiterals,\n EmbeddedScriptPagesWithLiterals,\n EmbeddedScriptPlacementWithLiterals,\n EmbedCategoryWithLiterals,\n TemplateDefaultColorWithLiterals,\n ThumbnailsSizeWithLiterals,\n BarAlignmentSelectedWithLiterals,\n DefaultTextStyleWithLiterals,\n WebComponentDataElementTypeWithLiterals,\n ScriptTypeWithLiterals,\n ExtensionTypeWithLiterals,\n FieldTypeWithLiterals,\n AccessLevelWithLiterals,\n OrderWithLiterals,\n PrimitiveTypeWithLiterals,\n SimpleTypeWithLiterals,\n SchemaFieldExposureWithLiterals,\n PartialPaymentRestrictionWithLiterals,\n HostContainerIdWithLiterals,\n MandatoryFieldWithLiterals,\n MeasurementSystemWithLiterals,\n DefaultWithLiterals,\n HookTypeWithLiterals,\n ActionSPIConfigInterfaceConfigurationTypeWithLiterals,\n IntegrationTypeWithLiterals,\n SourceTypeWithLiterals,\n ExecutionTypeWithLiterals,\n ExtendingComponentTypeWithLiterals,\n BackOfficeHostingPlatformsWithLiterals,\n DtsDefinitionTypeWithLiterals,\n SlotDataTypeWithLiterals,\n BackOfficeScriptAssetTypeWithLiterals,\n ViewModeWithLiterals,\n AlgorithmTypeWithLiterals,\n LockableOperationWithLiterals,\n RestrictedOperationWithLiterals,\n BlockTypeWithLiterals,\n DomainWithLiterals,\n StatusWithLiterals,\n LayoutModeWithLiterals,\n TextInputDisplayTypeWithLiterals,\n ThumbnailTypeWithLiterals,\n ImageShapeWithLiterals,\n AvatarShapeWithLiterals,\n TagWithLiterals,\n FilterSelectionTypeWithLiterals,\n FilterOptionsTypeWithLiterals,\n PaginationModeWithLiterals,\n ChannelTypeWithLiterals,\n AcceptedDirectMessageTypeWithLiterals,\n MediaMimeTypeWithLiterals,\n AcceptedSmsMessageTypeWithLiterals,\n InitDirectionWithLiterals,\n NodeTypeWithLiterals,\n WidthTypeWithLiterals,\n PluginContainerDataAlignmentWithLiterals,\n ButtonDataTypeWithLiterals,\n LinkTargetWithLiterals,\n TextAlignmentWithLiterals,\n LineStyleWithLiterals,\n DividerDataWidthWithLiterals,\n DividerDataAlignmentWithLiterals,\n PDFSettingsViewModeWithLiterals,\n LayoutTypeWithLiterals,\n OrientationWithLiterals,\n CropWithLiterals,\n ThumbnailsAlignmentWithLiterals,\n GIFTypeWithLiterals,\n HTMLDataSourceWithLiterals,\n StylesPositionWithLiterals,\n MapTypeWithLiterals,\n ViewRoleWithLiterals,\n VoteRoleWithLiterals,\n PollLayoutTypeWithLiterals,\n PollLayoutDirectionWithLiterals,\n BackgroundTypeWithLiterals,\n DecorationTypeWithLiterals,\n FontTypeWithLiterals,\n ImageStylesPositionWithLiterals,\n AspectRatioWithLiterals,\n ResizingWithLiterals,\n PlacementWithLiterals,\n CardStylesTypeWithLiterals,\n CardStylesAlignmentWithLiterals,\n LayoutWithLiterals,\n AppTypeWithLiterals,\n InitialExpandedItemsWithLiterals,\n DirectionWithLiterals,\n VerticalAlignmentWithLiterals,\n NullValueWithLiterals,\n ScalingWithLiterals,\n LayoutDataImagePositionWithLiterals,\n VerticalAlignmentAlignmentWithLiterals,\n ResponsivenessBehaviourWithLiterals,\n DesignTargetWithLiterals,\n TestEnumWithLiterals,\n CalendarTypeWithLiterals,\n ConnectMethodWithLiterals,\n ListEventFromCalendarsWithLiterals,\n SyncToCalendarWithLiterals,\n OAuthAppTypeWithLiterals,\n OAuthTechnologiesWithLiterals,\n NavigationTypeWithLiterals,\n PingSettingsGroupComponentDataStateWithLiterals,\n NotificationTopicStateWithLiterals,\n NotificationTopicTypeWithLiterals,\n RecipientTypeWithLiterals,\n PlanFormPricingOptionWithLiterals,\n PlanFormPricingTypeWithLiterals,\n PlanFormDefaultSectionWithLiterals,\n PlanPeriodUnitWithLiterals,\n TypedDynamicParamTypeWithLiterals,\n UserNotificationDataRecipientFilterTypeWithLiterals,\n InitiatorTypeWithLiterals,\n LevelWithLiterals,\n IconTypeWithLiterals,\n MobileApplicationWithLiterals,\n AndroidStyleWithLiterals,\n ExposureRuleTypeWithLiterals,\n IntentWithLiterals,\n UserNotificationDataTypeWithLiterals,\n RecipientFilterTypeWithLiterals,\n TypeWithLiterals,\n EnvironmentWithLiterals,\n SchemaScopeWithLiterals,\n SchemaFieldFieldTypeWithLiterals,\n CustomElementScriptTypeWithLiterals,\n HeightModeWithLiterals,\n FieldFieldTypeWithLiterals,\n FormatWithLiterals,\n StringComponentTypeWithLiterals,\n ImagePositionWithLiterals,\n AlignmentWithLiterals,\n ImageFitWithLiterals,\n NumberOfColumnsWithLiterals,\n FirstDayOfWeekWithLiterals,\n NumberComponentTypeWithLiterals,\n BooleanComponentTypeWithLiterals,\n ItemTypeWithLiterals,\n PropertiesTypeEnumWithLiterals,\n ArrayComponentTypeWithLiterals,\n WixFileComponentTypeWithLiterals,\n UploadFileFormatWithLiterals,\n UploadFileFormatEnumUploadFileFormatWithLiterals,\n PaymentComponentTypeWithLiterals,\n ProductTypeWithLiterals,\n PriceTypeWithLiterals,\n AddressComponentTypeWithLiterals,\n DefaultCountryConfigTypeWithLiterals,\n SchedulingComponentTypeWithLiterals,\n AppointmentFormatWithLiterals,\n InputTypeWithLiterals,\n EmailInfoTagWithLiterals,\n PhoneInfoTagWithLiterals,\n AddressInfoTagWithLiterals,\n ConfirmationLevelWithLiterals,\n ContactFieldWithLiterals,\n DisplayFieldTypeWithLiterals,\n ChangeablePropertyWithLiterals,\n OverrideEntityTypeWithLiterals,\n OperatorWithLiterals,\n TargetWithLiterals,\n SubmitSuccessActionWithLiterals,\n TemplateTypeWithLiterals,\n CustomFieldsTypeWithLiterals,\n EditablePropertiesWithLiterals,\n RequiredIndicatorWithLiterals,\n RequiredIndicatorPlacementWithLiterals,\n WixCodePublishTaskNameWithLiterals,\n ChannelConfigurationChannelTypeWithLiterals,\n AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals,\n AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals,\n FactorTypeWithLiterals,\n MonitoringTypeWithLiterals,\n EscalationWithLiterals,\n ImportanceLevelWithLiterals,\n WidthWithLiterals,\n PanelContentTypeWithLiterals,\n PanelModeWithLiterals,\n StorageTypeWithLiterals,\n ConsentCategoryWithLiterals,\n StorageDomainWithLiterals,\n MethodWithLiterals,\n ParticipantTypeWithLiterals,\n InterfaceConfigurationTypeWithLiterals,\n ScopeWithLiterals,\n DataTypeWithLiterals,\n A11yAttributesWithLiterals,\n LinkTypeWithLiterals,\n ContainerTypeWithLiterals,\n ResizeDirectionWithLiterals,\n RichTextAbilitiesWithLiterals,\n ImageCategoryTypesWithLiterals,\n VideoCategoryTypesWithLiterals,\n VectorArtCategoryTypesWithLiterals,\n ElementTypeWithLiterals,\n CssPropertyTypeEnumCssPropertyTypeWithLiterals,\n CssVariableTypeEnumCssDataTypeWithLiterals,\n StyleTypeWithLiterals,\n FilterFunctionWithLiterals,\n DisplayValueEnumDisplayValueWithLiterals,\n WritingModeValueWithLiterals,\n BackgroundModeEnumWithLiterals,\n CssDataTypeWithLiterals,\n ActionTypeWithLiterals,\n PanelTypeWithLiterals,\n ActionNameWithLiterals,\n SizingTypeWithLiterals,\n BreakpointEnumBreakpointWithLiterals,\n ContentResizeDirectionWithLiterals,\n ArchetypeWithLiterals,\n NativeStateTypeWithLiterals,\n GroupTypeWithLiterals,\n ImageTypeWithLiterals,\n CssPropertyTypeWithLiterals,\n TriggerWithLiterals,\n EffectGroupWithLiterals,\n RestrictionLevelWithLiterals,\n ElementDisplayOptionWithLiterals,\n SidebarDataTypeWithLiterals,\n SidebarEntityTypeWithLiterals,\n OperatorEnumOperatorWithLiterals,\n ParameterTypeWithLiterals,\n FilterValueDefinitionModeWithLiterals,\n TimeConstraintTypeWithLiterals,\n ValueConstraintTypeWithLiterals,\n CategoryWithLiterals,\n RegionScopeScopeWithLiterals,\n VibeActionTypeWithLiterals,\n AssetTypeWithLiterals,\n WebhookIdentityTypeWithLiterals,\n} from './data-extensions-v1-data-extension-schema-schemas.universal.js';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;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","names":["createDataExtensionSchema","deleteByWhiteListedMetaSite","deleteUserDefinedFields","listDataExtensionSchemas","onDataExtensionSchemaCreated","onDataExtensionSchemaDeleted","onDataExtensionSchemaUpdated","updateDataExtensionSchema","import_rename_all_nested_keys","import_timestamp","import_transform_paths","import_timestamp","import_rest_modules","payload","DataExtensionSchemaState","RequestedField","ComponentType","WidgetVertical","WidgetHorizontal","WidgetWidthType","Region","UnitType","HorizontalDocking","VerticalDocking","SiteMembersSsrCaching","MpaNavigation","ReplacementType","PluginInterface","Exposure","Maturity","HTTPMethod","InstallPage","RegionType","StaticContainer","EmbeddedScriptPages","EmbeddedScriptPlacement","EmbedCategory","TemplateDefaultColor","ThumbnailsSize","BarAlignmentSelected","DefaultTextStyle","WebComponentDataElementType","ScriptType","ExtensionType","FieldType","AccessLevel","Order","PrimitiveType","SimpleType","SchemaFieldExposure","PartialPaymentRestriction","HostContainerId","MandatoryField","MeasurementSystem","Default","HookType","ActionSPIConfigInterfaceConfigurationType","IntegrationType","SourceType","ExecutionType","ExtendingComponentType","BackOfficeHostingPlatforms","DtsDefinitionType","SlotDataType","BackOfficeScriptAssetType","ViewMode","AlgorithmType","LockableOperation","RestrictedOperation","BlockType","Domain","Status","LayoutMode","TextInputDisplayType","ThumbnailType","ImageShape","AvatarShape","Tag","FilterSelectionType","FilterOptionsType","PaginationMode","ChannelType","AcceptedDirectMessageType","MediaMimeType","AcceptedSmsMessageType","InitDirection","NodeType","WidthType","PluginContainerDataAlignment","ButtonDataType","LinkTarget","TextAlignment","LineStyle","DividerDataWidth","DividerDataAlignment","PDFSettingsViewMode","LayoutType","Orientation","Crop","ThumbnailsAlignment","GIFType","HTMLDataSource","StylesPosition","MapType","ViewRole","VoteRole","PollLayoutType","PollLayoutDirection","BackgroundType","DecorationType","FontType","ImageStylesPosition","AspectRatio","Resizing","Placement","CardStylesType","CardStylesAlignment","Layout","AppType","InitialExpandedItems","Direction","VerticalAlignment","NullValue","Scaling","LayoutDataImagePosition","VerticalAlignmentAlignment","ResponsivenessBehaviour","DesignTarget","TestEnum","CalendarType","ConnectMethod","ListEventFromCalendars","SyncToCalendar","OAuthAppType","OAuthTechnologies","NavigationType","PingSettingsGroupComponentDataState","NotificationTopicState","NotificationTopicType","RecipientType","PlanFormPricingOption","PlanFormPricingType","PlanFormDefaultSection","PlanPeriodUnit","TypedDynamicParamType","UserNotificationDataRecipientFilterType","InitiatorType","Level","IconType","MobileApplication","AndroidStyle","ExposureRuleType","Intent","UserNotificationDataType","RecipientFilterType","Type","Environment","SchemaScope","SchemaFieldFieldType","CustomElementScriptType","HeightMode","FieldFieldType","Format","StringComponentType","ImagePosition","Alignment","ImageFit","NumberOfColumns","FirstDayOfWeek","NumberComponentType","BooleanComponentType","ItemType","PropertiesTypeEnum","ArrayComponentType","WixFileComponentType","UploadFileFormat","UploadFileFormatEnumUploadFileFormat","PaymentComponentType","ProductType","PriceType","AddressComponentType","DefaultCountryConfigType","SchedulingComponentType","AppointmentFormat","InputType","EmailInfoTag","PhoneInfoTag","AddressInfoTag","ConfirmationLevel","ContactField","DisplayFieldType","ChangeableProperty","OverrideEntityType","Operator","Target","SubmitSuccessAction","TemplateType","CustomFieldsType","EditableProperties","RequiredIndicator","RequiredIndicatorPlacement","WixCodePublishTaskName","ChannelConfigurationChannelType","AcceptedMessageTypesAcceptedDirectMessageType","AcceptedMessageTypesAcceptedSmsMessageType","FactorType","MonitoringType","Escalation","ImportanceLevel","Width","PanelContentType","PanelMode","StorageType","ConsentCategory","StorageDomain","Method","ParticipantType","InterfaceConfigurationType","Scope","DataType","A11yAttributes","LinkType","ContainerType","ResizeDirection","RichTextAbilities","ImageCategoryTypes","VideoCategoryTypes","VectorArtCategoryTypes","ElementType","CssPropertyTypeEnumCssPropertyType","CssVariableTypeEnumCssDataType","StyleType","FilterFunction","DisplayValueEnumDisplayValue","WritingModeValue","BackgroundModeEnum","CssDataType","ActionType","PanelType","ActionName","SizingType","BreakpointEnumBreakpoint","ContentResizeDirection","Archetype","NativeStateType","GroupType","ImageType","CssPropertyType","Trigger","EffectGroup","RestrictionLevel","ElementDisplayOption","SidebarDataType","SidebarEntityType","OperatorEnumOperator","ParameterType","FilterValueDefinitionMode","TimeConstraintType","ValueConstraintType","Category","RegionScopeScope","VibeActionType","AssetType","WebhookIdentityType","createDataExtensionSchema","sdkTransformError","updateDataExtensionSchema","listDataExtensionSchemas","deleteByWhiteListedMetaSite","deleteUserDefinedFields","createDataExtensionSchema","updateDataExtensionSchema","listDataExtensionSchemas","deleteByWhiteListedMetaSite","deleteUserDefinedFields","import_rest_modules","createDataExtensionSchema","updateDataExtensionSchema","listDataExtensionSchemas","deleteByWhiteListedMetaSite","deleteUserDefinedFields","onDataExtensionSchemaCreated","onDataExtensionSchemaDeleted","onDataExtensionSchemaUpdated"]}
|