@wix/auto_sdk_events_ticket-definitions-v-2 1.0.60 → 1.0.62
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 +38 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +112 -5
- package/build/cjs/index.typings.js +38 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +112 -5
- package/build/cjs/meta.js +38 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +34 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +112 -5
- package/build/es/index.typings.mjs +34 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +112 -5
- package/build/es/meta.mjs +34 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +38 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +112 -5
- package/build/internal/cjs/index.typings.js +38 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +112 -5
- package/build/internal/cjs/meta.js +38 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +34 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +112 -5
- package/build/internal/es/index.typings.mjs +34 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +112 -5
- package/build/internal/es/meta.mjs +34 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2215,7 +2215,9 @@ interface Node extends NodeDataOneOf {
|
|
|
2215
2215
|
blockquoteData?: BlockquoteData;
|
|
2216
2216
|
/** Data for a caption node. */
|
|
2217
2217
|
captionData?: CaptionData;
|
|
2218
|
-
/**
|
|
2218
|
+
/** Data for a layout node. Reserved for future use. */
|
|
2219
|
+
layoutData?: LayoutData;
|
|
2220
|
+
/** Data for a cell node. */
|
|
2219
2221
|
layoutCellData?: LayoutCellData;
|
|
2220
2222
|
/** 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. */
|
|
2221
2223
|
type?: NodeTypeWithLiterals;
|
|
@@ -2280,7 +2282,9 @@ interface NodeDataOneOf {
|
|
|
2280
2282
|
blockquoteData?: BlockquoteData;
|
|
2281
2283
|
/** Data for a caption node. */
|
|
2282
2284
|
captionData?: CaptionData;
|
|
2283
|
-
/**
|
|
2285
|
+
/** Data for a layout node. Reserved for future use. */
|
|
2286
|
+
layoutData?: LayoutData;
|
|
2287
|
+
/** Data for a cell node. */
|
|
2284
2288
|
layoutCellData?: LayoutCellData;
|
|
2285
2289
|
}
|
|
2286
2290
|
declare enum NodeType {
|
|
@@ -2903,10 +2907,11 @@ interface HTMLDataDataOneOf {
|
|
|
2903
2907
|
}
|
|
2904
2908
|
declare enum Source {
|
|
2905
2909
|
HTML = "HTML",
|
|
2906
|
-
ADSENSE = "ADSENSE"
|
|
2910
|
+
ADSENSE = "ADSENSE",
|
|
2911
|
+
AI = "AI"
|
|
2907
2912
|
}
|
|
2908
2913
|
/** @enumType */
|
|
2909
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
|
|
2914
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
2910
2915
|
interface ImageData {
|
|
2911
2916
|
/** Styling for the image's container. */
|
|
2912
2917
|
containerData?: PluginContainerData;
|
|
@@ -3836,6 +3841,108 @@ interface BlockquoteData {
|
|
|
3836
3841
|
interface CaptionData {
|
|
3837
3842
|
textStyle?: TextStyle;
|
|
3838
3843
|
}
|
|
3844
|
+
interface LayoutData {
|
|
3845
|
+
/**
|
|
3846
|
+
* Background color as a hexadecimal value.
|
|
3847
|
+
* @format COLOR_HEX
|
|
3848
|
+
*/
|
|
3849
|
+
backgroundColor?: string | null;
|
|
3850
|
+
/** Background image. */
|
|
3851
|
+
backgroundImage?: BackgroundImage;
|
|
3852
|
+
/**
|
|
3853
|
+
* Border color as a hexadecimal value.
|
|
3854
|
+
* @format COLOR_HEX
|
|
3855
|
+
*/
|
|
3856
|
+
borderColor?: string | null;
|
|
3857
|
+
/** Border width in pixels. */
|
|
3858
|
+
borderWidth?: number | null;
|
|
3859
|
+
/** Border */
|
|
3860
|
+
borderRadius?: number | null;
|
|
3861
|
+
/**
|
|
3862
|
+
* Backdrop color as a hexadecimal value.
|
|
3863
|
+
* @format COLOR_HEX
|
|
3864
|
+
*/
|
|
3865
|
+
backdropColor?: string | null;
|
|
3866
|
+
/** Backdrop image.radius in pixels. */
|
|
3867
|
+
backdropImage?: BackgroundImage;
|
|
3868
|
+
/** Backdrop top padding. */
|
|
3869
|
+
backdropPaddingTop?: number | null;
|
|
3870
|
+
/** Backdrop bottom padding */
|
|
3871
|
+
backdropPaddingBottom?: number | null;
|
|
3872
|
+
/** Horizontal and vertical gap between columns */
|
|
3873
|
+
gap?: number | null;
|
|
3874
|
+
/**
|
|
3875
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left
|
|
3876
|
+
* @maxSize 4
|
|
3877
|
+
*/
|
|
3878
|
+
cellPadding?: number[];
|
|
3879
|
+
/** Vertical alignment for the cell's items. */
|
|
3880
|
+
cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
|
|
3881
|
+
/** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
|
|
3882
|
+
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
3883
|
+
/** Size in pixels when responsiveness_behaviour applies */
|
|
3884
|
+
responsivenessBreakpoint?: number | null;
|
|
3885
|
+
}
|
|
3886
|
+
declare enum Scaling {
|
|
3887
|
+
/** Auto image scaling */
|
|
3888
|
+
AUTO = "AUTO",
|
|
3889
|
+
/** Contain image scaling */
|
|
3890
|
+
CONTAIN = "CONTAIN",
|
|
3891
|
+
/** Cover image scaling */
|
|
3892
|
+
COVER = "COVER"
|
|
3893
|
+
}
|
|
3894
|
+
/** @enumType */
|
|
3895
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
3896
|
+
declare enum ImagePosition {
|
|
3897
|
+
/** Image positioned at the center */
|
|
3898
|
+
CENTER = "CENTER",
|
|
3899
|
+
/** Image positioned on the left */
|
|
3900
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
3901
|
+
/** Image positioned on the right */
|
|
3902
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
3903
|
+
/** Image positioned at the center top */
|
|
3904
|
+
TOP = "TOP",
|
|
3905
|
+
/** Image positioned at the top left */
|
|
3906
|
+
TOP_LEFT = "TOP_LEFT",
|
|
3907
|
+
/** Image positioned at the top right */
|
|
3908
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
3909
|
+
/** Image positioned at the center bottom */
|
|
3910
|
+
BOTTOM = "BOTTOM",
|
|
3911
|
+
/** Image positioned at the bottom left */
|
|
3912
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
3913
|
+
/** Image positioned at the bottom right */
|
|
3914
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
3915
|
+
}
|
|
3916
|
+
/** @enumType */
|
|
3917
|
+
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
3918
|
+
interface BackgroundImage {
|
|
3919
|
+
/** Background image. */
|
|
3920
|
+
media?: Media;
|
|
3921
|
+
/** Background image opacity. */
|
|
3922
|
+
opacity?: number | null;
|
|
3923
|
+
/** Background image scaling. */
|
|
3924
|
+
scaling?: ScalingWithLiterals;
|
|
3925
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
3926
|
+
position?: ImagePositionWithLiterals;
|
|
3927
|
+
}
|
|
3928
|
+
declare enum VerticalAlignmentAlignment {
|
|
3929
|
+
/** Top alignment */
|
|
3930
|
+
TOP = "TOP",
|
|
3931
|
+
/** Middle alignment */
|
|
3932
|
+
MIDDLE = "MIDDLE",
|
|
3933
|
+
/** Bottom alignment */
|
|
3934
|
+
BOTTOM = "BOTTOM"
|
|
3935
|
+
}
|
|
3936
|
+
/** @enumType */
|
|
3937
|
+
type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
3938
|
+
declare enum ResponsivenessBehaviour {
|
|
3939
|
+
/** Stacking of columns */
|
|
3940
|
+
STACK = "STACK",
|
|
3941
|
+
/** Wrapping of columns */
|
|
3942
|
+
WRAP = "WRAP"
|
|
3943
|
+
}
|
|
3944
|
+
/** @enumType */
|
|
3945
|
+
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
3839
3946
|
interface LayoutCellData {
|
|
3840
3947
|
/** Size of the cell in 12 columns grid. */
|
|
3841
3948
|
colSpan?: number | null;
|
|
@@ -5325,4 +5432,4 @@ interface ChangeCurrencyOptions {
|
|
|
5325
5432
|
currency: string;
|
|
5326
5433
|
}
|
|
5327
5434
|
|
|
5328
|
-
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Asset, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCopyTicketDefinitionsByEventIdRequest, type BulkCopyTicketDefinitionsByEventIdResponse, type BulkDeleteTicketDefinitionsByFilterRequest, type BulkDeleteTicketDefinitionsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CategoryDetails, CategoryStateState, type CategoryStateStateWithLiterals, type CellStyle, type ChangeCurrencyApplicationErrors, type ChangeCurrencyOptions, type ChangeCurrencyRequest, type ChangeCurrencyResponse, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonMoney, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CopiedTicketDefinition, type CountAvailableTicketDefinitionsApplicationErrors, type CountAvailableTicketDefinitionsOptions, type CountAvailableTicketDefinitionsRequest, type CountAvailableTicketDefinitionsResponse, type CountTicketDefinitionsApplicationErrors, type CountTicketDefinitionsOptions, type CountTicketDefinitionsRequest, type CountTicketDefinitionsResponse, type CreateTicketDefinitionApplicationErrors, type CreateTicketDefinitionOptions, type CreateTicketDefinitionRequest, type CreateTicketDefinitionResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type CustomTag, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteContext, DeleteStatus, type DeleteStatusWithLiterals, type DeleteTicketDefinitionRequest, type DeleteTicketDefinitionResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCreated, type EventData, type EventDeleted, type EventDetails, type EventDisplaySettings, type EventEnded, type EventMetadata, EventStatus, type EventStatusWithLiterals, type EventTicketingSummary, EventType, type EventTypeWithLiterals, type EventUpdated, type EventsLocation, type EventsOccurrence, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type ExtendedFields, type ExternalEvent, type FacetCounts, FeeTypeEnumType, type FeeTypeEnumTypeWithLiterals, type Feed, Field, type FieldWithLiterals, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetTicketDefinitionFromTrashBinRequest, type GetTicketDefinitionFromTrashBinResponse, type GetTicketDefinitionOptions, type GetTicketDefinitionRequest, type GetTicketDefinitionResponse, type GetTicketDefinitionSummaryRequest, type GetTicketDefinitionSummaryResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventTicketingSummaryRequest, type ListEventTicketingSummaryResponse, type ListValue, type Location, LocationLocationType, type LocationLocationTypeWithLiterals, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Metadata, type Money, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type OdeditorAssigned, type OdeditorUnassigned, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionDetails, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Page, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, type PicassoAssigned, type PicassoUnassigned, 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 PricingMethod, type PricingMethodPriceOneOf, type PricingOptions, PricingTypeEnumType, type PricingTypeEnumTypeWithLiterals, type QueryAvailableTicketDefinitionsOptions, type QueryAvailableTicketDefinitionsRequest, type QueryAvailableTicketDefinitionsResponse, type QueryTicketDefinitionsOptions, type QueryTicketDefinitionsRequest, type QueryTicketDefinitionsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, type ReorderTicketDefinitionsApplicationErrors, type ReorderTicketDefinitionsOptions, type ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf, type ReorderTicketDefinitionsRequest, type ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type ReorderTicketDefinitionsResponse, Resizing, type ResizingWithLiterals, type ResponseConfirmation, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type SalePeriod, type SalePeriodUpdated, SaleStatusEnumStatus, type SaleStatusEnumStatusWithLiterals, type SalesDetails, type ScheduleConfig, type ScheduleLegacyTimeCapsuleTaskRequest, type Scheduling, type SeatingPlanCategoriesSummaryUpdated, type SeoSchema, type SeoSettings, type ServiceProvisioned, type ServiceRemoved, type Settings, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrl, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type StudioAssigned, type StudioUnassigned, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TicketDefinition, type TicketDefinitionCreatedEnvelope, type TicketDefinitionDeletedEnvelope, type TicketDefinitionSaleEnded, type TicketDefinitionSaleEndedEnvelope, type TicketDefinitionSalePeriodUpdatedEnvelope, type TicketDefinitionSaleStarted, type TicketDefinitionSaleStartedEnvelope, type TicketDefinitionSummary, type TicketDefinitionUpdatedEnvelope, type TicketDefinitionsQueryBuilder, type TicketDefinitionsQueryResult, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, type UpdateEventTicketingSummaryRequest, type UpdateEventTicketingSummaryResponse, type UpdateFeeTypesBasedOnSettingsRequest, type UpdateFeeTypesBasedOnSettingsResponse, type UpdateTicketDefinition, type UpdateTicketDefinitionApplicationErrors, type UpdateTicketDefinitionOptions, type UpdateTicketDefinitionRequest, type UpdateTicketDefinitionResponse, type UpdateTicketDefinitionSortIndexRequest, type UpdateTicketDefinitionSortIndexResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, 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, type WixelAssigned, type WixelUnassigned, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, onTicketDefinitionCreated, onTicketDefinitionDeleted, onTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted, onTicketDefinitionUpdated, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };
|
|
5435
|
+
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Asset, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCopyTicketDefinitionsByEventIdRequest, type BulkCopyTicketDefinitionsByEventIdResponse, type BulkDeleteTicketDefinitionsByFilterRequest, type BulkDeleteTicketDefinitionsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CategoryDetails, CategoryStateState, type CategoryStateStateWithLiterals, type CellStyle, type ChangeCurrencyApplicationErrors, type ChangeCurrencyOptions, type ChangeCurrencyRequest, type ChangeCurrencyResponse, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonMoney, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CopiedTicketDefinition, type CountAvailableTicketDefinitionsApplicationErrors, type CountAvailableTicketDefinitionsOptions, type CountAvailableTicketDefinitionsRequest, type CountAvailableTicketDefinitionsResponse, type CountTicketDefinitionsApplicationErrors, type CountTicketDefinitionsOptions, type CountTicketDefinitionsRequest, type CountTicketDefinitionsResponse, type CreateTicketDefinitionApplicationErrors, type CreateTicketDefinitionOptions, type CreateTicketDefinitionRequest, type CreateTicketDefinitionResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type CustomTag, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteContext, DeleteStatus, type DeleteStatusWithLiterals, type DeleteTicketDefinitionRequest, type DeleteTicketDefinitionResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCreated, type EventData, type EventDeleted, type EventDetails, type EventDisplaySettings, type EventEnded, type EventMetadata, EventStatus, type EventStatusWithLiterals, type EventTicketingSummary, EventType, type EventTypeWithLiterals, type EventUpdated, type EventsLocation, type EventsOccurrence, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type ExtendedFields, type ExternalEvent, type FacetCounts, FeeTypeEnumType, type FeeTypeEnumTypeWithLiterals, type Feed, Field, type FieldWithLiterals, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetTicketDefinitionFromTrashBinRequest, type GetTicketDefinitionFromTrashBinResponse, type GetTicketDefinitionOptions, type GetTicketDefinitionRequest, type GetTicketDefinitionResponse, type GetTicketDefinitionSummaryRequest, type GetTicketDefinitionSummaryResponse, 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 InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventTicketingSummaryRequest, type ListEventTicketingSummaryResponse, type ListValue, type Location, LocationLocationType, type LocationLocationTypeWithLiterals, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Metadata, type Money, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type OdeditorAssigned, type OdeditorUnassigned, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionDetails, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Page, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, type PicassoAssigned, type PicassoUnassigned, 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 PricingMethod, type PricingMethodPriceOneOf, type PricingOptions, PricingTypeEnumType, type PricingTypeEnumTypeWithLiterals, type QueryAvailableTicketDefinitionsOptions, type QueryAvailableTicketDefinitionsRequest, type QueryAvailableTicketDefinitionsResponse, type QueryTicketDefinitionsOptions, type QueryTicketDefinitionsRequest, type QueryTicketDefinitionsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, type ReorderTicketDefinitionsApplicationErrors, type ReorderTicketDefinitionsOptions, type ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf, type ReorderTicketDefinitionsRequest, type ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type ReorderTicketDefinitionsResponse, 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, type SalePeriod, type SalePeriodUpdated, SaleStatusEnumStatus, type SaleStatusEnumStatusWithLiterals, type SalesDetails, Scaling, type ScalingWithLiterals, type ScheduleConfig, type ScheduleLegacyTimeCapsuleTaskRequest, type Scheduling, type SeatingPlanCategoriesSummaryUpdated, type SeoSchema, type SeoSettings, type ServiceProvisioned, type ServiceRemoved, type Settings, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrl, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type StudioAssigned, type StudioUnassigned, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TicketDefinition, type TicketDefinitionCreatedEnvelope, type TicketDefinitionDeletedEnvelope, type TicketDefinitionSaleEnded, type TicketDefinitionSaleEndedEnvelope, type TicketDefinitionSalePeriodUpdatedEnvelope, type TicketDefinitionSaleStarted, type TicketDefinitionSaleStartedEnvelope, type TicketDefinitionSummary, type TicketDefinitionUpdatedEnvelope, type TicketDefinitionsQueryBuilder, type TicketDefinitionsQueryResult, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, type UpdateEventTicketingSummaryRequest, type UpdateEventTicketingSummaryResponse, type UpdateFeeTypesBasedOnSettingsRequest, type UpdateFeeTypesBasedOnSettingsResponse, type UpdateTicketDefinition, type UpdateTicketDefinitionApplicationErrors, type UpdateTicketDefinitionOptions, type UpdateTicketDefinitionRequest, type UpdateTicketDefinitionResponse, type UpdateTicketDefinitionSortIndexRequest, type UpdateTicketDefinitionSortIndexResponse, 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, type WixelAssigned, type WixelUnassigned, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, onTicketDefinitionCreated, onTicketDefinitionDeleted, onTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted, onTicketDefinitionUpdated, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };
|
|
@@ -41,6 +41,7 @@ __export(index_typings_exports, {
|
|
|
41
41
|
Field: () => Field,
|
|
42
42
|
FontType: () => FontType,
|
|
43
43
|
GIFType: () => GIFType,
|
|
44
|
+
ImagePosition: () => ImagePosition,
|
|
44
45
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
45
46
|
InputControlType: () => InputControlType,
|
|
46
47
|
Layout: () => Layout,
|
|
@@ -62,8 +63,10 @@ __export(index_typings_exports, {
|
|
|
62
63
|
RecurrenceStatusStatus: () => RecurrenceStatusStatus,
|
|
63
64
|
RegistrationStatus: () => RegistrationStatus,
|
|
64
65
|
Resizing: () => Resizing,
|
|
66
|
+
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
65
67
|
RsvpStatusOptions: () => RsvpStatusOptions,
|
|
66
68
|
SaleStatusEnumStatus: () => SaleStatusEnumStatus,
|
|
69
|
+
Scaling: () => Scaling,
|
|
67
70
|
SiteCreatedContext: () => SiteCreatedContext,
|
|
68
71
|
SortOrder: () => SortOrder,
|
|
69
72
|
Source: () => Source,
|
|
@@ -79,6 +82,7 @@ __export(index_typings_exports, {
|
|
|
79
82
|
Type: () => Type,
|
|
80
83
|
ValueType: () => ValueType,
|
|
81
84
|
VerticalAlignment: () => VerticalAlignment,
|
|
85
|
+
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
82
86
|
ViewMode: () => ViewMode,
|
|
83
87
|
ViewRole: () => ViewRole,
|
|
84
88
|
VisitorType: () => VisitorType,
|
|
@@ -962,6 +966,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
962
966
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
963
967
|
Source2["HTML"] = "HTML";
|
|
964
968
|
Source2["ADSENSE"] = "ADSENSE";
|
|
969
|
+
Source2["AI"] = "AI";
|
|
965
970
|
return Source2;
|
|
966
971
|
})(Source || {});
|
|
967
972
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -1090,6 +1095,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1090
1095
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1091
1096
|
return NullValue2;
|
|
1092
1097
|
})(NullValue || {});
|
|
1098
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
1099
|
+
Scaling2["AUTO"] = "AUTO";
|
|
1100
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
1101
|
+
Scaling2["COVER"] = "COVER";
|
|
1102
|
+
return Scaling2;
|
|
1103
|
+
})(Scaling || {});
|
|
1104
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1105
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
1106
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
1107
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
1108
|
+
ImagePosition2["TOP"] = "TOP";
|
|
1109
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
1110
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
1111
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
1112
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
1113
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
1114
|
+
return ImagePosition2;
|
|
1115
|
+
})(ImagePosition || {});
|
|
1116
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1117
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1118
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
1119
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
1120
|
+
return VerticalAlignmentAlignment2;
|
|
1121
|
+
})(VerticalAlignmentAlignment || {});
|
|
1122
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
1123
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
1124
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
1125
|
+
return ResponsivenessBehaviour2;
|
|
1126
|
+
})(ResponsivenessBehaviour || {});
|
|
1093
1127
|
var Type = /* @__PURE__ */ ((Type2) => {
|
|
1094
1128
|
Type2["UNKNOWN_BADGE_TYPE"] = "UNKNOWN_BADGE_TYPE";
|
|
1095
1129
|
Type2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
|
|
@@ -1596,6 +1630,7 @@ async function changeCurrency2(eventId, options) {
|
|
|
1596
1630
|
Field,
|
|
1597
1631
|
FontType,
|
|
1598
1632
|
GIFType,
|
|
1633
|
+
ImagePosition,
|
|
1599
1634
|
InitialExpandedItems,
|
|
1600
1635
|
InputControlType,
|
|
1601
1636
|
Layout,
|
|
@@ -1617,8 +1652,10 @@ async function changeCurrency2(eventId, options) {
|
|
|
1617
1652
|
RecurrenceStatusStatus,
|
|
1618
1653
|
RegistrationStatus,
|
|
1619
1654
|
Resizing,
|
|
1655
|
+
ResponsivenessBehaviour,
|
|
1620
1656
|
RsvpStatusOptions,
|
|
1621
1657
|
SaleStatusEnumStatus,
|
|
1658
|
+
Scaling,
|
|
1622
1659
|
SiteCreatedContext,
|
|
1623
1660
|
SortOrder,
|
|
1624
1661
|
Source,
|
|
@@ -1634,6 +1671,7 @@ async function changeCurrency2(eventId, options) {
|
|
|
1634
1671
|
Type,
|
|
1635
1672
|
ValueType,
|
|
1636
1673
|
VerticalAlignment,
|
|
1674
|
+
VerticalAlignmentAlignment,
|
|
1637
1675
|
ViewMode,
|
|
1638
1676
|
ViewRole,
|
|
1639
1677
|
VisitorType,
|