@wix/auto_sdk_events_forms 1.0.62 → 1.0.64
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.d.ts +1 -1
- package/build/cjs/index.js +1 -12
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +37 -3
- package/build/cjs/index.typings.js +1 -12
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +37 -3
- package/build/cjs/meta.js +1 -12
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +1 -12
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +37 -3
- package/build/es/index.typings.mjs +1 -12
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +37 -3
- package/build/es/meta.mjs +1 -12
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +1 -12
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +37 -3
- package/build/internal/cjs/index.typings.js +1 -12
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +37 -3
- package/build/internal/cjs/meta.js +1 -12
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +1 -12
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +37 -3
- package/build/internal/es/index.typings.mjs +1 -12
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +37 -3
- package/build/internal/es/meta.mjs +1 -12
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2597,6 +2597,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
2597
2597
|
superscriptData?: boolean | null;
|
|
2598
2598
|
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2599
2599
|
subscriptData?: boolean | null;
|
|
2600
|
+
/** Data for a font family decoration. */
|
|
2601
|
+
fontFamilyData?: FontFamilyData;
|
|
2600
2602
|
/** The type of decoration to apply. */
|
|
2601
2603
|
type?: DecorationTypeWithLiterals;
|
|
2602
2604
|
}
|
|
@@ -2626,6 +2628,8 @@ interface DecorationDataOneOf {
|
|
|
2626
2628
|
superscriptData?: boolean | null;
|
|
2627
2629
|
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2628
2630
|
subscriptData?: boolean | null;
|
|
2631
|
+
/** Data for a font family decoration. */
|
|
2632
|
+
fontFamilyData?: FontFamilyData;
|
|
2629
2633
|
}
|
|
2630
2634
|
declare enum DecorationType {
|
|
2631
2635
|
BOLD = "BOLD",
|
|
@@ -2640,10 +2644,11 @@ declare enum DecorationType {
|
|
|
2640
2644
|
EXTERNAL = "EXTERNAL",
|
|
2641
2645
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
2642
2646
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
2643
|
-
SUBSCRIPT = "SUBSCRIPT"
|
|
2647
|
+
SUBSCRIPT = "SUBSCRIPT",
|
|
2648
|
+
FONT_FAMILY = "FONT_FAMILY"
|
|
2644
2649
|
}
|
|
2645
2650
|
/** @enumType */
|
|
2646
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
|
|
2651
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
2647
2652
|
interface AnchorData {
|
|
2648
2653
|
/** The target node's ID. */
|
|
2649
2654
|
anchor?: string;
|
|
@@ -2682,6 +2687,10 @@ interface SpoilerData {
|
|
|
2682
2687
|
/** Spoiler ID. */
|
|
2683
2688
|
id?: string | null;
|
|
2684
2689
|
}
|
|
2690
|
+
interface FontFamilyData {
|
|
2691
|
+
/** @maxLength 1000 */
|
|
2692
|
+
value?: string | null;
|
|
2693
|
+
}
|
|
2685
2694
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
2686
2695
|
/** Data for embedded Wix Bookings content. */
|
|
2687
2696
|
bookingData?: BookingData;
|
|
@@ -3066,6 +3075,13 @@ interface TableData {
|
|
|
3066
3075
|
rowHeader?: boolean | null;
|
|
3067
3076
|
/** Sets whether the table's first column is a header. Defaults to `false`. */
|
|
3068
3077
|
columnHeader?: boolean | null;
|
|
3078
|
+
/** The spacing between cells in pixels. Defaults to `0`. */
|
|
3079
|
+
cellSpacing?: number | null;
|
|
3080
|
+
/**
|
|
3081
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left.
|
|
3082
|
+
* @maxSize 4
|
|
3083
|
+
*/
|
|
3084
|
+
cellPadding?: number[];
|
|
3069
3085
|
}
|
|
3070
3086
|
interface Dimensions {
|
|
3071
3087
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -3080,6 +3096,12 @@ interface TableCellData {
|
|
|
3080
3096
|
cellStyle?: CellStyle;
|
|
3081
3097
|
/** The cell's border colors. */
|
|
3082
3098
|
borderColors?: BorderColors;
|
|
3099
|
+
/** Defines how many columns the cell spans. Default: 1. */
|
|
3100
|
+
colspan?: number | null;
|
|
3101
|
+
/** Defines how many rows the cell spans. Default: 1. */
|
|
3102
|
+
rowspan?: number | null;
|
|
3103
|
+
/** The cell's border widths. */
|
|
3104
|
+
borderWidths?: BorderWidths;
|
|
3083
3105
|
}
|
|
3084
3106
|
declare enum VerticalAlignment {
|
|
3085
3107
|
/** Top alignment */
|
|
@@ -3122,6 +3144,16 @@ interface BorderColors {
|
|
|
3122
3144
|
*/
|
|
3123
3145
|
bottom?: string | null;
|
|
3124
3146
|
}
|
|
3147
|
+
interface BorderWidths {
|
|
3148
|
+
/** Left border width in pixels. */
|
|
3149
|
+
left?: number | null;
|
|
3150
|
+
/** Right border width in pixels. */
|
|
3151
|
+
right?: number | null;
|
|
3152
|
+
/** Top border width in pixels. */
|
|
3153
|
+
top?: number | null;
|
|
3154
|
+
/** Bottom border width in pixels. */
|
|
3155
|
+
bottom?: number | null;
|
|
3156
|
+
}
|
|
3125
3157
|
/**
|
|
3126
3158
|
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
3127
3159
|
* `Value` type union.
|
|
@@ -3221,6 +3253,8 @@ interface LayoutData {
|
|
|
3221
3253
|
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
3222
3254
|
/** Size in pixels when responsiveness_behaviour applies */
|
|
3223
3255
|
responsivenessBreakpoint?: number | null;
|
|
3256
|
+
/** Styling for the layout's container. */
|
|
3257
|
+
containerData?: PluginContainerData;
|
|
3224
3258
|
}
|
|
3225
3259
|
declare enum Scaling {
|
|
3226
3260
|
/** Auto image scaling */
|
|
@@ -3805,4 +3839,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
3805
3839
|
*/
|
|
3806
3840
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
3807
3841
|
|
|
3808
|
-
export { type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormEventUpdatedEnvelope, type FormInputControlAdded, type FormInputControlDeleted, type FormInputControlUpdated, type FormMessages, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetFormRequest, type GetFormResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type NameControl, type NameControlLabels, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
|
|
3842
|
+
export { type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormEventUpdatedEnvelope, type FormInputControlAdded, type FormInputControlDeleted, type FormInputControlUpdated, type FormMessages, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetFormRequest, type GetFormResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type NameControl, type NameControlLabels, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
|
|
@@ -124,10 +124,6 @@ function resolveWixEventsFormFormBuilderUrl(opts) {
|
|
|
124
124
|
{
|
|
125
125
|
srcPath: "/_api/wix-events-web/v1/orders",
|
|
126
126
|
destPath: "/v1/orders"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
srcPath: "/_api/wix-events-web/v1/tickets",
|
|
130
|
-
destPath: "/v1/tickets"
|
|
131
127
|
}
|
|
132
128
|
],
|
|
133
129
|
"apps._base_domain_": [
|
|
@@ -338,10 +334,6 @@ function resolveWixEventsFormFormBuilderUrl(opts) {
|
|
|
338
334
|
{
|
|
339
335
|
srcPath: "/_api/wix-events-web/v1/orders",
|
|
340
336
|
destPath: "/v1/orders"
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
srcPath: "/_api/wix-events-web/v1/tickets",
|
|
344
|
-
destPath: "/v1/tickets"
|
|
345
337
|
}
|
|
346
338
|
],
|
|
347
339
|
"*.pub.wix-code.com": [
|
|
@@ -364,10 +356,6 @@ function resolveWixEventsFormFormBuilderUrl(opts) {
|
|
|
364
356
|
{
|
|
365
357
|
srcPath: "/_api/wix-events-web/v1/orders",
|
|
366
358
|
destPath: "/v1/orders"
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
srcPath: "/_api/wix-events-web/v1/tickets",
|
|
370
|
-
destPath: "/v1/tickets"
|
|
371
359
|
}
|
|
372
360
|
],
|
|
373
361
|
"editor-flow.wixapps.net": [
|
|
@@ -918,6 +906,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
918
906
|
DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
919
907
|
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
920
908
|
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
909
|
+
DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
|
|
921
910
|
return DecorationType2;
|
|
922
911
|
})(DecorationType || {});
|
|
923
912
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|