@wix/auto_sdk_events_ticket-definitions-v-2 1.0.37 → 1.0.38
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 +64 -13
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +211 -9
- package/build/cjs/index.typings.js +64 -13
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +57 -13
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +211 -9
- package/build/es/index.typings.mjs +57 -13
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +64 -13
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +211 -9
- package/build/internal/cjs/index.typings.js +64 -13
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +57 -13
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +211 -9
- package/build/internal/es/index.typings.mjs +57 -13
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2485,7 +2485,7 @@ interface DividerData {
|
|
|
2485
2485
|
/** Divider width. */
|
|
2486
2486
|
width?: WidthWithLiterals;
|
|
2487
2487
|
/** Divider alignment. */
|
|
2488
|
-
alignment?:
|
|
2488
|
+
alignment?: DividerDataAlignmentWithLiterals;
|
|
2489
2489
|
}
|
|
2490
2490
|
declare enum LineStyle {
|
|
2491
2491
|
/** Single Line */
|
|
@@ -2509,7 +2509,7 @@ declare enum Width {
|
|
|
2509
2509
|
}
|
|
2510
2510
|
/** @enumType */
|
|
2511
2511
|
type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
|
|
2512
|
-
declare enum
|
|
2512
|
+
declare enum DividerDataAlignment {
|
|
2513
2513
|
/** Center alignment */
|
|
2514
2514
|
CENTER = "CENTER",
|
|
2515
2515
|
/** Left alignment */
|
|
@@ -2518,7 +2518,7 @@ declare enum Alignment {
|
|
|
2518
2518
|
RIGHT = "RIGHT"
|
|
2519
2519
|
}
|
|
2520
2520
|
/** @enumType */
|
|
2521
|
-
type
|
|
2521
|
+
type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
|
2522
2522
|
interface FileData {
|
|
2523
2523
|
/** Styling for the file's container. */
|
|
2524
2524
|
containerData?: PluginContainerData;
|
|
@@ -2643,7 +2643,7 @@ interface ItemDataOneOf {
|
|
|
2643
2643
|
}
|
|
2644
2644
|
interface GalleryOptions {
|
|
2645
2645
|
/** Gallery layout. */
|
|
2646
|
-
layout?:
|
|
2646
|
+
layout?: GalleryOptionsLayout;
|
|
2647
2647
|
/** Styling for gallery items. */
|
|
2648
2648
|
item?: ItemStyle;
|
|
2649
2649
|
/** Styling for gallery thumbnail images. */
|
|
@@ -2703,7 +2703,7 @@ declare enum ThumbnailsAlignment {
|
|
|
2703
2703
|
}
|
|
2704
2704
|
/** @enumType */
|
|
2705
2705
|
type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
|
|
2706
|
-
interface
|
|
2706
|
+
interface GalleryOptionsLayout {
|
|
2707
2707
|
/** Gallery layout type. */
|
|
2708
2708
|
type?: LayoutTypeWithLiterals;
|
|
2709
2709
|
/** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
|
|
@@ -2865,7 +2865,7 @@ interface LinkPreviewData {
|
|
|
2865
2865
|
/** Styling for the link preview. */
|
|
2866
2866
|
styles?: LinkPreviewDataStyles;
|
|
2867
2867
|
}
|
|
2868
|
-
declare enum
|
|
2868
|
+
declare enum StylesPosition {
|
|
2869
2869
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
2870
2870
|
START = "START",
|
|
2871
2871
|
/** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
|
|
@@ -2876,7 +2876,7 @@ declare enum Position {
|
|
|
2876
2876
|
HIDDEN = "HIDDEN"
|
|
2877
2877
|
}
|
|
2878
2878
|
/** @enumType */
|
|
2879
|
-
type
|
|
2879
|
+
type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
|
|
2880
2880
|
interface LinkPreviewDataStyles {
|
|
2881
2881
|
/**
|
|
2882
2882
|
* Background color as a hexadecimal value.
|
|
@@ -2908,7 +2908,7 @@ interface LinkPreviewDataStyles {
|
|
|
2908
2908
|
*/
|
|
2909
2909
|
borderColor?: string | null;
|
|
2910
2910
|
/** Position of thumbnail. Defaults to `START`. */
|
|
2911
|
-
thumbnailPosition?:
|
|
2911
|
+
thumbnailPosition?: StylesPositionWithLiterals;
|
|
2912
2912
|
}
|
|
2913
2913
|
interface MapData {
|
|
2914
2914
|
/** Styling for the map's container. */
|
|
@@ -3262,6 +3262,32 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
3262
3262
|
url?: string | null;
|
|
3263
3263
|
/** An image for the embedded content. */
|
|
3264
3264
|
image?: Media;
|
|
3265
|
+
/** Whether to hide the image. */
|
|
3266
|
+
hideImage?: boolean | null;
|
|
3267
|
+
/** Whether to hide the title. */
|
|
3268
|
+
hideTitle?: boolean | null;
|
|
3269
|
+
/** Whether to hide the price. */
|
|
3270
|
+
hidePrice?: boolean | null;
|
|
3271
|
+
/** Whether to hide the description (Event and Booking). */
|
|
3272
|
+
hideDescription?: boolean | null;
|
|
3273
|
+
/** Whether to hide the date and time (Event). */
|
|
3274
|
+
hideDateTime?: boolean | null;
|
|
3275
|
+
/** Whether to hide the location (Event). */
|
|
3276
|
+
hideLocation?: boolean | null;
|
|
3277
|
+
/** Whether to hide the duration (Booking). */
|
|
3278
|
+
hideDuration?: boolean | null;
|
|
3279
|
+
/** Whether to hide the button. */
|
|
3280
|
+
hideButton?: boolean | null;
|
|
3281
|
+
/** Whether to hide the ribbon. */
|
|
3282
|
+
hideRibbon?: boolean | null;
|
|
3283
|
+
/** Button styling options. */
|
|
3284
|
+
buttonStyles?: ButtonStyles;
|
|
3285
|
+
/** Image styling options. */
|
|
3286
|
+
imageStyles?: ImageStyles;
|
|
3287
|
+
/** Ribbon styling options. */
|
|
3288
|
+
ribbonStyles?: RibbonStyles;
|
|
3289
|
+
/** Card styling options. */
|
|
3290
|
+
cardStyles?: CardStyles;
|
|
3265
3291
|
}
|
|
3266
3292
|
/** @oneof */
|
|
3267
3293
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -3270,6 +3296,66 @@ interface AppEmbedDataAppDataOneOf {
|
|
|
3270
3296
|
/** Data for embedded Wix Events content. */
|
|
3271
3297
|
eventData?: EventData;
|
|
3272
3298
|
}
|
|
3299
|
+
declare enum Position {
|
|
3300
|
+
/** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
3301
|
+
START = "START",
|
|
3302
|
+
/** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
|
|
3303
|
+
END = "END",
|
|
3304
|
+
/** Image positioned at the top */
|
|
3305
|
+
TOP = "TOP"
|
|
3306
|
+
}
|
|
3307
|
+
/** @enumType */
|
|
3308
|
+
type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
|
|
3309
|
+
declare enum AspectRatio {
|
|
3310
|
+
/** 1:1 aspect ratio */
|
|
3311
|
+
SQUARE = "SQUARE",
|
|
3312
|
+
/** 16:9 aspect ratio */
|
|
3313
|
+
RECTANGLE = "RECTANGLE"
|
|
3314
|
+
}
|
|
3315
|
+
/** @enumType */
|
|
3316
|
+
type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
|
|
3317
|
+
declare enum Resizing {
|
|
3318
|
+
/** Fill the container, may crop the image */
|
|
3319
|
+
FILL = "FILL",
|
|
3320
|
+
/** Fit the image within the container */
|
|
3321
|
+
FIT = "FIT"
|
|
3322
|
+
}
|
|
3323
|
+
/** @enumType */
|
|
3324
|
+
type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
|
|
3325
|
+
declare enum Placement {
|
|
3326
|
+
/** Ribbon placed on the image */
|
|
3327
|
+
IMAGE = "IMAGE",
|
|
3328
|
+
/** Ribbon placed on the product information */
|
|
3329
|
+
PRODUCT_INFO = "PRODUCT_INFO"
|
|
3330
|
+
}
|
|
3331
|
+
/** @enumType */
|
|
3332
|
+
type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
|
|
3333
|
+
declare enum CardStylesType {
|
|
3334
|
+
/** Card with visible border and background */
|
|
3335
|
+
CONTAINED = "CONTAINED",
|
|
3336
|
+
/** Card without visible border */
|
|
3337
|
+
FRAMELESS = "FRAMELESS"
|
|
3338
|
+
}
|
|
3339
|
+
/** @enumType */
|
|
3340
|
+
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
3341
|
+
declare enum Alignment {
|
|
3342
|
+
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
3343
|
+
START = "START",
|
|
3344
|
+
/** Content centered */
|
|
3345
|
+
CENTER = "CENTER",
|
|
3346
|
+
/** Content aligned to end (right in LTR layouts, left in RTL layouts) */
|
|
3347
|
+
END = "END"
|
|
3348
|
+
}
|
|
3349
|
+
/** @enumType */
|
|
3350
|
+
type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
|
|
3351
|
+
declare enum Layout {
|
|
3352
|
+
/** Elements stacked vertically */
|
|
3353
|
+
STACKED = "STACKED",
|
|
3354
|
+
/** Elements arranged horizontally */
|
|
3355
|
+
SIDE_BY_SIDE = "SIDE_BY_SIDE"
|
|
3356
|
+
}
|
|
3357
|
+
/** @enumType */
|
|
3358
|
+
type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
|
|
3273
3359
|
declare enum AppType {
|
|
3274
3360
|
PRODUCT = "PRODUCT",
|
|
3275
3361
|
EVENT = "EVENT",
|
|
@@ -3287,6 +3373,122 @@ interface EventData {
|
|
|
3287
3373
|
/** Event location. */
|
|
3288
3374
|
location?: string | null;
|
|
3289
3375
|
}
|
|
3376
|
+
interface ButtonStyles {
|
|
3377
|
+
/** Text to display on the button. */
|
|
3378
|
+
buttonText?: string | null;
|
|
3379
|
+
/** Border width in pixels. */
|
|
3380
|
+
borderWidth?: number | null;
|
|
3381
|
+
/** Border radius in pixels. */
|
|
3382
|
+
borderRadius?: number | null;
|
|
3383
|
+
/**
|
|
3384
|
+
* Border color as a hexadecimal value.
|
|
3385
|
+
* @format COLOR_HEX
|
|
3386
|
+
*/
|
|
3387
|
+
borderColor?: string | null;
|
|
3388
|
+
/**
|
|
3389
|
+
* Text color as a hexadecimal value.
|
|
3390
|
+
* @format COLOR_HEX
|
|
3391
|
+
*/
|
|
3392
|
+
textColor?: string | null;
|
|
3393
|
+
/**
|
|
3394
|
+
* Background color as a hexadecimal value.
|
|
3395
|
+
* @format COLOR_HEX
|
|
3396
|
+
*/
|
|
3397
|
+
backgroundColor?: string | null;
|
|
3398
|
+
/**
|
|
3399
|
+
* Border color as a hexadecimal value (hover state).
|
|
3400
|
+
* @format COLOR_HEX
|
|
3401
|
+
*/
|
|
3402
|
+
borderColorHover?: string | null;
|
|
3403
|
+
/**
|
|
3404
|
+
* Text color as a hexadecimal value (hover state).
|
|
3405
|
+
* @format COLOR_HEX
|
|
3406
|
+
*/
|
|
3407
|
+
textColorHover?: string | null;
|
|
3408
|
+
/**
|
|
3409
|
+
* Background color as a hexadecimal value (hover state).
|
|
3410
|
+
* @format COLOR_HEX
|
|
3411
|
+
*/
|
|
3412
|
+
backgroundColorHover?: string | null;
|
|
3413
|
+
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
3414
|
+
buttonSize?: string | null;
|
|
3415
|
+
}
|
|
3416
|
+
interface ImageStyles {
|
|
3417
|
+
/** Whether to hide the image. */
|
|
3418
|
+
hideImage?: boolean | null;
|
|
3419
|
+
/** Position of image. Defaults to `START`. */
|
|
3420
|
+
imagePosition?: PositionWithLiterals;
|
|
3421
|
+
/** Aspect ratio for the image. Defaults to `SQUARE`. */
|
|
3422
|
+
aspectRatio?: AspectRatioWithLiterals;
|
|
3423
|
+
/** How the image should be resized. Defaults to `FILL`. */
|
|
3424
|
+
resizing?: ResizingWithLiterals;
|
|
3425
|
+
/**
|
|
3426
|
+
* Image border color as a hexadecimal value.
|
|
3427
|
+
* @format COLOR_HEX
|
|
3428
|
+
*/
|
|
3429
|
+
borderColor?: string | null;
|
|
3430
|
+
/** Image border width in pixels. */
|
|
3431
|
+
borderWidth?: number | null;
|
|
3432
|
+
/** Image border radius in pixels. */
|
|
3433
|
+
borderRadius?: number | null;
|
|
3434
|
+
}
|
|
3435
|
+
interface RibbonStyles {
|
|
3436
|
+
/** Text to display on the ribbon. */
|
|
3437
|
+
ribbonText?: string | null;
|
|
3438
|
+
/**
|
|
3439
|
+
* Ribbon background color as a hexadecimal value.
|
|
3440
|
+
* @format COLOR_HEX
|
|
3441
|
+
*/
|
|
3442
|
+
backgroundColor?: string | null;
|
|
3443
|
+
/**
|
|
3444
|
+
* Ribbon text color as a hexadecimal value.
|
|
3445
|
+
* @format COLOR_HEX
|
|
3446
|
+
*/
|
|
3447
|
+
textColor?: string | null;
|
|
3448
|
+
/**
|
|
3449
|
+
* Ribbon border color as a hexadecimal value.
|
|
3450
|
+
* @format COLOR_HEX
|
|
3451
|
+
*/
|
|
3452
|
+
borderColor?: string | null;
|
|
3453
|
+
/** Ribbon border width in pixels. */
|
|
3454
|
+
borderWidth?: number | null;
|
|
3455
|
+
/** Ribbon border radius in pixels. */
|
|
3456
|
+
borderRadius?: number | null;
|
|
3457
|
+
/** Placement of the ribbon. Defaults to `IMAGE`. */
|
|
3458
|
+
ribbonPlacement?: PlacementWithLiterals;
|
|
3459
|
+
}
|
|
3460
|
+
interface CardStyles {
|
|
3461
|
+
/**
|
|
3462
|
+
* Card background color as a hexadecimal value.
|
|
3463
|
+
* @format COLOR_HEX
|
|
3464
|
+
*/
|
|
3465
|
+
backgroundColor?: string | null;
|
|
3466
|
+
/**
|
|
3467
|
+
* Card border color as a hexadecimal value.
|
|
3468
|
+
* @format COLOR_HEX
|
|
3469
|
+
*/
|
|
3470
|
+
borderColor?: string | null;
|
|
3471
|
+
/** Card border width in pixels. */
|
|
3472
|
+
borderWidth?: number | null;
|
|
3473
|
+
/** Card border radius in pixels. */
|
|
3474
|
+
borderRadius?: number | null;
|
|
3475
|
+
/** Card type. Defaults to `CONTAINED`. */
|
|
3476
|
+
type?: CardStylesTypeWithLiterals;
|
|
3477
|
+
/** Content alignment. Defaults to `START`. */
|
|
3478
|
+
alignment?: AlignmentWithLiterals;
|
|
3479
|
+
/** Layout for title and price. Defaults to `STACKED`. */
|
|
3480
|
+
titlePriceLayout?: LayoutWithLiterals;
|
|
3481
|
+
/**
|
|
3482
|
+
* Title text color as a hexadecimal value.
|
|
3483
|
+
* @format COLOR_HEX
|
|
3484
|
+
*/
|
|
3485
|
+
titleColor?: string | null;
|
|
3486
|
+
/**
|
|
3487
|
+
* Text color as a hexadecimal value.
|
|
3488
|
+
* @format COLOR_HEX
|
|
3489
|
+
*/
|
|
3490
|
+
textColor?: string | null;
|
|
3491
|
+
}
|
|
3290
3492
|
interface VideoData {
|
|
3291
3493
|
/** Styling for the video's container. */
|
|
3292
3494
|
containerData?: PluginContainerData;
|
|
@@ -5070,4 +5272,4 @@ interface ChangeCurrencyOptions {
|
|
|
5070
5272
|
currency: string;
|
|
5071
5273
|
}
|
|
5072
5274
|
|
|
5073
|
-
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, 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 CalendarLinks, type CaptionData, type Category, type CategoryCounts, type CategoryDetails, CategoryStateState, type CategoryStateStateWithLiterals, type CellStyle, type ChangeCurrencyApplicationErrors, type ChangeCurrencyOptions, type ChangeCurrencyRequest, type ChangeCurrencyResponse, type CheckoutFormMessages, 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, 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 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, 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, type Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, 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, 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 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, type ReservationCount, type ReservationCreated, ReservationStatus, type ReservationStatusWithLiterals, type ReservationUpdated, type ResponseConfirmation, type RestoreInfo, type RichContent, type RsvpCollection, type RsvpCollectionConfig, 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, 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 TicketQuantity, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, 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, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, onTicketDefinitionCreated, onTicketDefinitionDeleted, onTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted, onTicketDefinitionUpdated, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };
|
|
5275
|
+
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, 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 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, type ReservationCount, type ReservationCreated, ReservationStatus, type ReservationStatusWithLiterals, type ReservationUpdated, Resizing, type ResizingWithLiterals, type ResponseConfirmation, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, 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 TicketQuantity, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, 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, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, onTicketDefinitionCreated, onTicketDefinitionDeleted, onTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted, onTicketDefinitionUpdated, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };
|
|
@@ -773,12 +773,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
|
|
|
773
773
|
Width2["SMALL"] = "SMALL";
|
|
774
774
|
return Width2;
|
|
775
775
|
})(Width || {});
|
|
776
|
-
var
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
return
|
|
781
|
-
})(
|
|
776
|
+
var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
|
|
777
|
+
DividerDataAlignment2["CENTER"] = "CENTER";
|
|
778
|
+
DividerDataAlignment2["LEFT"] = "LEFT";
|
|
779
|
+
DividerDataAlignment2["RIGHT"] = "RIGHT";
|
|
780
|
+
return DividerDataAlignment2;
|
|
781
|
+
})(DividerDataAlignment || {});
|
|
782
782
|
var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
|
|
783
783
|
ViewMode2["NONE"] = "NONE";
|
|
784
784
|
ViewMode2["FULL"] = "FULL";
|
|
@@ -826,13 +826,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
826
826
|
Source2["ADSENSE"] = "ADSENSE";
|
|
827
827
|
return Source2;
|
|
828
828
|
})(Source || {});
|
|
829
|
-
var
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
return
|
|
835
|
-
})(
|
|
829
|
+
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
830
|
+
StylesPosition2["START"] = "START";
|
|
831
|
+
StylesPosition2["END"] = "END";
|
|
832
|
+
StylesPosition2["TOP"] = "TOP";
|
|
833
|
+
StylesPosition2["HIDDEN"] = "HIDDEN";
|
|
834
|
+
return StylesPosition2;
|
|
835
|
+
})(StylesPosition || {});
|
|
836
836
|
var MapType = /* @__PURE__ */ ((MapType2) => {
|
|
837
837
|
MapType2["ROADMAP"] = "ROADMAP";
|
|
838
838
|
MapType2["SATELITE"] = "SATELITE";
|
|
@@ -888,6 +888,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
888
888
|
FontType2["EM"] = "EM";
|
|
889
889
|
return FontType2;
|
|
890
890
|
})(FontType || {});
|
|
891
|
+
var Position = /* @__PURE__ */ ((Position2) => {
|
|
892
|
+
Position2["START"] = "START";
|
|
893
|
+
Position2["END"] = "END";
|
|
894
|
+
Position2["TOP"] = "TOP";
|
|
895
|
+
return Position2;
|
|
896
|
+
})(Position || {});
|
|
897
|
+
var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
|
|
898
|
+
AspectRatio2["SQUARE"] = "SQUARE";
|
|
899
|
+
AspectRatio2["RECTANGLE"] = "RECTANGLE";
|
|
900
|
+
return AspectRatio2;
|
|
901
|
+
})(AspectRatio || {});
|
|
902
|
+
var Resizing = /* @__PURE__ */ ((Resizing2) => {
|
|
903
|
+
Resizing2["FILL"] = "FILL";
|
|
904
|
+
Resizing2["FIT"] = "FIT";
|
|
905
|
+
return Resizing2;
|
|
906
|
+
})(Resizing || {});
|
|
907
|
+
var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
908
|
+
Placement2["IMAGE"] = "IMAGE";
|
|
909
|
+
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
910
|
+
return Placement2;
|
|
911
|
+
})(Placement || {});
|
|
912
|
+
var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
|
|
913
|
+
CardStylesType2["CONTAINED"] = "CONTAINED";
|
|
914
|
+
CardStylesType2["FRAMELESS"] = "FRAMELESS";
|
|
915
|
+
return CardStylesType2;
|
|
916
|
+
})(CardStylesType || {});
|
|
917
|
+
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
918
|
+
Alignment2["START"] = "START";
|
|
919
|
+
Alignment2["CENTER"] = "CENTER";
|
|
920
|
+
Alignment2["END"] = "END";
|
|
921
|
+
return Alignment2;
|
|
922
|
+
})(Alignment || {});
|
|
923
|
+
var Layout = /* @__PURE__ */ ((Layout2) => {
|
|
924
|
+
Layout2["STACKED"] = "STACKED";
|
|
925
|
+
Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
926
|
+
return Layout2;
|
|
927
|
+
})(Layout || {});
|
|
891
928
|
var AppType = /* @__PURE__ */ ((AppType2) => {
|
|
892
929
|
AppType2["PRODUCT"] = "PRODUCT";
|
|
893
930
|
AppType2["EVENT"] = "EVENT";
|
|
@@ -1407,14 +1444,17 @@ async function changeCurrency2(eventId, options) {
|
|
|
1407
1444
|
export {
|
|
1408
1445
|
Alignment,
|
|
1409
1446
|
AppType,
|
|
1447
|
+
AspectRatio,
|
|
1410
1448
|
BackgroundType,
|
|
1411
1449
|
ButtonDataType,
|
|
1450
|
+
CardStylesType,
|
|
1412
1451
|
CategoryStateState,
|
|
1413
1452
|
ConferenceType,
|
|
1414
1453
|
Crop,
|
|
1415
1454
|
DecorationType,
|
|
1416
1455
|
DeleteStatus,
|
|
1417
1456
|
Direction,
|
|
1457
|
+
DividerDataAlignment,
|
|
1418
1458
|
EventStatus,
|
|
1419
1459
|
EventType,
|
|
1420
1460
|
EventsRecurrenceStatusStatus,
|
|
@@ -1424,6 +1464,7 @@ export {
|
|
|
1424
1464
|
GIFType,
|
|
1425
1465
|
InitialExpandedItems,
|
|
1426
1466
|
InputControlType,
|
|
1467
|
+
Layout,
|
|
1427
1468
|
LayoutType,
|
|
1428
1469
|
LineStyle,
|
|
1429
1470
|
LocationLocationType,
|
|
@@ -1433,6 +1474,7 @@ export {
|
|
|
1433
1474
|
NodeType,
|
|
1434
1475
|
NullValue,
|
|
1435
1476
|
Orientation,
|
|
1477
|
+
Placement,
|
|
1436
1478
|
PluginContainerDataAlignment,
|
|
1437
1479
|
PollLayoutDirection,
|
|
1438
1480
|
PollLayoutType,
|
|
@@ -1441,6 +1483,7 @@ export {
|
|
|
1441
1483
|
RecurrenceStatusStatus,
|
|
1442
1484
|
RegistrationStatus,
|
|
1443
1485
|
ReservationStatus,
|
|
1486
|
+
Resizing,
|
|
1444
1487
|
RsvpStatusOptions,
|
|
1445
1488
|
SaleStatusEnumStatus,
|
|
1446
1489
|
SiteCreatedContext,
|
|
@@ -1448,6 +1491,7 @@ export {
|
|
|
1448
1491
|
Source,
|
|
1449
1492
|
State,
|
|
1450
1493
|
Status,
|
|
1494
|
+
StylesPosition,
|
|
1451
1495
|
SubdivisionSubdivisionType,
|
|
1452
1496
|
SubdivisionType,
|
|
1453
1497
|
Target,
|