@wix/auto_sdk_events_wix-events-v-2 1.0.39 → 1.0.41
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/cjs/meta.d.ts +210 -8
- 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/es/meta.d.mts +210 -8
- 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/cjs/meta.d.ts +210 -8
- 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/build/internal/es/meta.d.mts +210 -8
- package/package.json +3 -2
|
@@ -1563,7 +1563,7 @@ interface DividerData {
|
|
|
1563
1563
|
/** Divider width. */
|
|
1564
1564
|
width?: WidthWithLiterals;
|
|
1565
1565
|
/** Divider alignment. */
|
|
1566
|
-
alignment?:
|
|
1566
|
+
alignment?: DividerDataAlignmentWithLiterals;
|
|
1567
1567
|
}
|
|
1568
1568
|
declare enum LineStyle {
|
|
1569
1569
|
/** Single Line */
|
|
@@ -1587,7 +1587,7 @@ declare enum Width {
|
|
|
1587
1587
|
}
|
|
1588
1588
|
/** @enumType */
|
|
1589
1589
|
type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
|
|
1590
|
-
declare enum
|
|
1590
|
+
declare enum DividerDataAlignment {
|
|
1591
1591
|
/** Center alignment */
|
|
1592
1592
|
CENTER = "CENTER",
|
|
1593
1593
|
/** Left alignment */
|
|
@@ -1596,7 +1596,7 @@ declare enum Alignment {
|
|
|
1596
1596
|
RIGHT = "RIGHT"
|
|
1597
1597
|
}
|
|
1598
1598
|
/** @enumType */
|
|
1599
|
-
type
|
|
1599
|
+
type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
|
1600
1600
|
interface FileData {
|
|
1601
1601
|
/** Styling for the file's container. */
|
|
1602
1602
|
containerData?: PluginContainerData;
|
|
@@ -1721,7 +1721,7 @@ interface ItemDataOneOf {
|
|
|
1721
1721
|
}
|
|
1722
1722
|
interface GalleryOptions {
|
|
1723
1723
|
/** Gallery layout. */
|
|
1724
|
-
layout?:
|
|
1724
|
+
layout?: GalleryOptionsLayout;
|
|
1725
1725
|
/** Styling for gallery items. */
|
|
1726
1726
|
item?: ItemStyle;
|
|
1727
1727
|
/** Styling for gallery thumbnail images. */
|
|
@@ -1781,7 +1781,7 @@ declare enum ThumbnailsAlignment {
|
|
|
1781
1781
|
}
|
|
1782
1782
|
/** @enumType */
|
|
1783
1783
|
type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
|
|
1784
|
-
interface
|
|
1784
|
+
interface GalleryOptionsLayout {
|
|
1785
1785
|
/** Gallery layout type. */
|
|
1786
1786
|
type?: LayoutTypeWithLiterals;
|
|
1787
1787
|
/** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
|
|
@@ -1943,7 +1943,7 @@ interface LinkPreviewData {
|
|
|
1943
1943
|
/** Styling for the link preview. */
|
|
1944
1944
|
styles?: LinkPreviewDataStyles;
|
|
1945
1945
|
}
|
|
1946
|
-
declare enum
|
|
1946
|
+
declare enum StylesPosition {
|
|
1947
1947
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
1948
1948
|
START = "START",
|
|
1949
1949
|
/** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
|
|
@@ -1954,7 +1954,7 @@ declare enum Position {
|
|
|
1954
1954
|
HIDDEN = "HIDDEN"
|
|
1955
1955
|
}
|
|
1956
1956
|
/** @enumType */
|
|
1957
|
-
type
|
|
1957
|
+
type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
|
|
1958
1958
|
interface LinkPreviewDataStyles {
|
|
1959
1959
|
/**
|
|
1960
1960
|
* Background color as a hexadecimal value.
|
|
@@ -1986,7 +1986,7 @@ interface LinkPreviewDataStyles {
|
|
|
1986
1986
|
*/
|
|
1987
1987
|
borderColor?: string | null;
|
|
1988
1988
|
/** Position of thumbnail. Defaults to `START`. */
|
|
1989
|
-
thumbnailPosition?:
|
|
1989
|
+
thumbnailPosition?: StylesPositionWithLiterals;
|
|
1990
1990
|
}
|
|
1991
1991
|
interface MapData {
|
|
1992
1992
|
/** Styling for the map's container. */
|
|
@@ -2340,6 +2340,32 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
2340
2340
|
url?: string | null;
|
|
2341
2341
|
/** An image for the embedded content. */
|
|
2342
2342
|
image?: Media;
|
|
2343
|
+
/** Whether to hide the image. */
|
|
2344
|
+
hideImage?: boolean | null;
|
|
2345
|
+
/** Whether to hide the title. */
|
|
2346
|
+
hideTitle?: boolean | null;
|
|
2347
|
+
/** Whether to hide the price. */
|
|
2348
|
+
hidePrice?: boolean | null;
|
|
2349
|
+
/** Whether to hide the description (Event and Booking). */
|
|
2350
|
+
hideDescription?: boolean | null;
|
|
2351
|
+
/** Whether to hide the date and time (Event). */
|
|
2352
|
+
hideDateTime?: boolean | null;
|
|
2353
|
+
/** Whether to hide the location (Event). */
|
|
2354
|
+
hideLocation?: boolean | null;
|
|
2355
|
+
/** Whether to hide the duration (Booking). */
|
|
2356
|
+
hideDuration?: boolean | null;
|
|
2357
|
+
/** Whether to hide the button. */
|
|
2358
|
+
hideButton?: boolean | null;
|
|
2359
|
+
/** Whether to hide the ribbon. */
|
|
2360
|
+
hideRibbon?: boolean | null;
|
|
2361
|
+
/** Button styling options. */
|
|
2362
|
+
buttonStyles?: ButtonStyles;
|
|
2363
|
+
/** Image styling options. */
|
|
2364
|
+
imageStyles?: ImageStyles;
|
|
2365
|
+
/** Ribbon styling options. */
|
|
2366
|
+
ribbonStyles?: RibbonStyles;
|
|
2367
|
+
/** Card styling options. */
|
|
2368
|
+
cardStyles?: CardStyles;
|
|
2343
2369
|
}
|
|
2344
2370
|
/** @oneof */
|
|
2345
2371
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -2348,6 +2374,66 @@ interface AppEmbedDataAppDataOneOf {
|
|
|
2348
2374
|
/** Data for embedded Wix Events content. */
|
|
2349
2375
|
eventData?: EventData;
|
|
2350
2376
|
}
|
|
2377
|
+
declare enum Position {
|
|
2378
|
+
/** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
2379
|
+
START = "START",
|
|
2380
|
+
/** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
|
|
2381
|
+
END = "END",
|
|
2382
|
+
/** Image positioned at the top */
|
|
2383
|
+
TOP = "TOP"
|
|
2384
|
+
}
|
|
2385
|
+
/** @enumType */
|
|
2386
|
+
type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
|
|
2387
|
+
declare enum AspectRatio {
|
|
2388
|
+
/** 1:1 aspect ratio */
|
|
2389
|
+
SQUARE = "SQUARE",
|
|
2390
|
+
/** 16:9 aspect ratio */
|
|
2391
|
+
RECTANGLE = "RECTANGLE"
|
|
2392
|
+
}
|
|
2393
|
+
/** @enumType */
|
|
2394
|
+
type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
|
|
2395
|
+
declare enum Resizing {
|
|
2396
|
+
/** Fill the container, may crop the image */
|
|
2397
|
+
FILL = "FILL",
|
|
2398
|
+
/** Fit the image within the container */
|
|
2399
|
+
FIT = "FIT"
|
|
2400
|
+
}
|
|
2401
|
+
/** @enumType */
|
|
2402
|
+
type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
|
|
2403
|
+
declare enum Placement {
|
|
2404
|
+
/** Ribbon placed on the image */
|
|
2405
|
+
IMAGE = "IMAGE",
|
|
2406
|
+
/** Ribbon placed on the product information */
|
|
2407
|
+
PRODUCT_INFO = "PRODUCT_INFO"
|
|
2408
|
+
}
|
|
2409
|
+
/** @enumType */
|
|
2410
|
+
type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
|
|
2411
|
+
declare enum CardStylesType {
|
|
2412
|
+
/** Card with visible border and background */
|
|
2413
|
+
CONTAINED = "CONTAINED",
|
|
2414
|
+
/** Card without visible border */
|
|
2415
|
+
FRAMELESS = "FRAMELESS"
|
|
2416
|
+
}
|
|
2417
|
+
/** @enumType */
|
|
2418
|
+
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
2419
|
+
declare enum Alignment {
|
|
2420
|
+
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
2421
|
+
START = "START",
|
|
2422
|
+
/** Content centered */
|
|
2423
|
+
CENTER = "CENTER",
|
|
2424
|
+
/** Content aligned to end (right in LTR layouts, left in RTL layouts) */
|
|
2425
|
+
END = "END"
|
|
2426
|
+
}
|
|
2427
|
+
/** @enumType */
|
|
2428
|
+
type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
|
|
2429
|
+
declare enum Layout {
|
|
2430
|
+
/** Elements stacked vertically */
|
|
2431
|
+
STACKED = "STACKED",
|
|
2432
|
+
/** Elements arranged horizontally */
|
|
2433
|
+
SIDE_BY_SIDE = "SIDE_BY_SIDE"
|
|
2434
|
+
}
|
|
2435
|
+
/** @enumType */
|
|
2436
|
+
type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
|
|
2351
2437
|
declare enum AppType {
|
|
2352
2438
|
PRODUCT = "PRODUCT",
|
|
2353
2439
|
EVENT = "EVENT",
|
|
@@ -2365,6 +2451,122 @@ interface EventData {
|
|
|
2365
2451
|
/** Event location. */
|
|
2366
2452
|
location?: string | null;
|
|
2367
2453
|
}
|
|
2454
|
+
interface ButtonStyles {
|
|
2455
|
+
/** Text to display on the button. */
|
|
2456
|
+
buttonText?: string | null;
|
|
2457
|
+
/** Border width in pixels. */
|
|
2458
|
+
borderWidth?: number | null;
|
|
2459
|
+
/** Border radius in pixels. */
|
|
2460
|
+
borderRadius?: number | null;
|
|
2461
|
+
/**
|
|
2462
|
+
* Border color as a hexadecimal value.
|
|
2463
|
+
* @format COLOR_HEX
|
|
2464
|
+
*/
|
|
2465
|
+
borderColor?: string | null;
|
|
2466
|
+
/**
|
|
2467
|
+
* Text color as a hexadecimal value.
|
|
2468
|
+
* @format COLOR_HEX
|
|
2469
|
+
*/
|
|
2470
|
+
textColor?: string | null;
|
|
2471
|
+
/**
|
|
2472
|
+
* Background color as a hexadecimal value.
|
|
2473
|
+
* @format COLOR_HEX
|
|
2474
|
+
*/
|
|
2475
|
+
backgroundColor?: string | null;
|
|
2476
|
+
/**
|
|
2477
|
+
* Border color as a hexadecimal value (hover state).
|
|
2478
|
+
* @format COLOR_HEX
|
|
2479
|
+
*/
|
|
2480
|
+
borderColorHover?: string | null;
|
|
2481
|
+
/**
|
|
2482
|
+
* Text color as a hexadecimal value (hover state).
|
|
2483
|
+
* @format COLOR_HEX
|
|
2484
|
+
*/
|
|
2485
|
+
textColorHover?: string | null;
|
|
2486
|
+
/**
|
|
2487
|
+
* Background color as a hexadecimal value (hover state).
|
|
2488
|
+
* @format COLOR_HEX
|
|
2489
|
+
*/
|
|
2490
|
+
backgroundColorHover?: string | null;
|
|
2491
|
+
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
2492
|
+
buttonSize?: string | null;
|
|
2493
|
+
}
|
|
2494
|
+
interface ImageStyles {
|
|
2495
|
+
/** Whether to hide the image. */
|
|
2496
|
+
hideImage?: boolean | null;
|
|
2497
|
+
/** Position of image. Defaults to `START`. */
|
|
2498
|
+
imagePosition?: PositionWithLiterals;
|
|
2499
|
+
/** Aspect ratio for the image. Defaults to `SQUARE`. */
|
|
2500
|
+
aspectRatio?: AspectRatioWithLiterals;
|
|
2501
|
+
/** How the image should be resized. Defaults to `FILL`. */
|
|
2502
|
+
resizing?: ResizingWithLiterals;
|
|
2503
|
+
/**
|
|
2504
|
+
* Image border color as a hexadecimal value.
|
|
2505
|
+
* @format COLOR_HEX
|
|
2506
|
+
*/
|
|
2507
|
+
borderColor?: string | null;
|
|
2508
|
+
/** Image border width in pixels. */
|
|
2509
|
+
borderWidth?: number | null;
|
|
2510
|
+
/** Image border radius in pixels. */
|
|
2511
|
+
borderRadius?: number | null;
|
|
2512
|
+
}
|
|
2513
|
+
interface RibbonStyles {
|
|
2514
|
+
/** Text to display on the ribbon. */
|
|
2515
|
+
ribbonText?: string | null;
|
|
2516
|
+
/**
|
|
2517
|
+
* Ribbon background color as a hexadecimal value.
|
|
2518
|
+
* @format COLOR_HEX
|
|
2519
|
+
*/
|
|
2520
|
+
backgroundColor?: string | null;
|
|
2521
|
+
/**
|
|
2522
|
+
* Ribbon text color as a hexadecimal value.
|
|
2523
|
+
* @format COLOR_HEX
|
|
2524
|
+
*/
|
|
2525
|
+
textColor?: string | null;
|
|
2526
|
+
/**
|
|
2527
|
+
* Ribbon border color as a hexadecimal value.
|
|
2528
|
+
* @format COLOR_HEX
|
|
2529
|
+
*/
|
|
2530
|
+
borderColor?: string | null;
|
|
2531
|
+
/** Ribbon border width in pixels. */
|
|
2532
|
+
borderWidth?: number | null;
|
|
2533
|
+
/** Ribbon border radius in pixels. */
|
|
2534
|
+
borderRadius?: number | null;
|
|
2535
|
+
/** Placement of the ribbon. Defaults to `IMAGE`. */
|
|
2536
|
+
ribbonPlacement?: PlacementWithLiterals;
|
|
2537
|
+
}
|
|
2538
|
+
interface CardStyles {
|
|
2539
|
+
/**
|
|
2540
|
+
* Card background color as a hexadecimal value.
|
|
2541
|
+
* @format COLOR_HEX
|
|
2542
|
+
*/
|
|
2543
|
+
backgroundColor?: string | null;
|
|
2544
|
+
/**
|
|
2545
|
+
* Card border color as a hexadecimal value.
|
|
2546
|
+
* @format COLOR_HEX
|
|
2547
|
+
*/
|
|
2548
|
+
borderColor?: string | null;
|
|
2549
|
+
/** Card border width in pixels. */
|
|
2550
|
+
borderWidth?: number | null;
|
|
2551
|
+
/** Card border radius in pixels. */
|
|
2552
|
+
borderRadius?: number | null;
|
|
2553
|
+
/** Card type. Defaults to `CONTAINED`. */
|
|
2554
|
+
type?: CardStylesTypeWithLiterals;
|
|
2555
|
+
/** Content alignment. Defaults to `START`. */
|
|
2556
|
+
alignment?: AlignmentWithLiterals;
|
|
2557
|
+
/** Layout for title and price. Defaults to `STACKED`. */
|
|
2558
|
+
titlePriceLayout?: LayoutWithLiterals;
|
|
2559
|
+
/**
|
|
2560
|
+
* Title text color as a hexadecimal value.
|
|
2561
|
+
* @format COLOR_HEX
|
|
2562
|
+
*/
|
|
2563
|
+
titleColor?: string | null;
|
|
2564
|
+
/**
|
|
2565
|
+
* Text color as a hexadecimal value.
|
|
2566
|
+
* @format COLOR_HEX
|
|
2567
|
+
*/
|
|
2568
|
+
textColor?: string | null;
|
|
2569
|
+
}
|
|
2368
2570
|
interface VideoData {
|
|
2369
2571
|
/** Styling for the video's container. */
|
|
2370
2572
|
containerData?: PluginContainerData;
|
|
@@ -5272,4 +5474,4 @@ interface GetEventBySlugOptions {
|
|
|
5272
5474
|
fields?: RequestedFieldsWithLiterals[];
|
|
5273
5475
|
}
|
|
5274
5476
|
|
|
5275
|
-
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, type AgendaSettings, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BadgeList, BadgeTypeType, type BadgeTypeTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCancelEventsByFilterOptions, type BulkCancelEventsByFilterRequest, type BulkCancelEventsByFilterResponse, type BulkDeleteEventsByFilterOptions, type BulkDeleteEventsByFilterRequest, type BulkDeleteEventsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type CalendarLinks, type CalendarUrls, type CancelEventApplicationErrors, type CancelEventOptions, type CancelEventRequest, type CancelEventResponse, type CaptionData, type Category, type CategoryCounts, CategoryTypeType, type CategoryTypeTypeWithLiterals, type CellStyle, type CheckoutFormMessages, type CloneEventFromOtherSiteRequest, type CloneEventFromOtherSiteResponse, type CloneEventOptions, type CloneEventRequest, type CloneEventResponse, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonCursors, type CommonPaging, type CommonPagingMetadataV2, type CommonQueryV2, type CommonQueryV2PagingMethodOneOf, CommonSortOrder, type CommonSortOrderWithLiterals, type CommonSorting, type CommonStreetAddress, type CommonSubdivision, ConferenceType, ConferenceTypeType, type ConferenceTypeTypeWithLiterals, type ConferenceTypeWithLiterals, type CountEventsByStatusApplicationErrors, type CountEventsByStatusOptions, type CountEventsByStatusRequest, type CountEventsByStatusResponse, type CreateEventApplicationErrors, type CreateEventOptions, type CreateEventRequest, type CreateEventResponse, type CreateEventValidationErrors, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteEventRequest, type DeleteEventResponse, 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 EventCanceledEnvelope, type EventCategories, type EventCategory, type EventCloned, type EventClonedEnvelope, type EventCopied, type EventCreated, type EventCreatedEnvelope, type EventData, type EventDeleted, type EventDeletedEnvelope, type EventDisplaySettings, type EventEnded, type EventEndedEnvelope, type EventEventCanceled, type EventEventEnded, type EventEventPublished, type EventEventReminder, type EventEventStarted, type EventMetadata, type EventPublished, type EventPublishedEnvelope, type EventReminder, type EventReminderEnvelope, type EventStarted, type EventStartedEnvelope, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type EventUpdatedEnvelope, type EventsFeed, type EventsLabellingSettings, type EventsLocation, type EventsMoney, type EventsOccurrence, type EventsOnlineConferencing, type EventsOnlineConferencingSession, type EventsQueryBuilder, type EventsQueryResult, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type EventsRegistration, type EventsSeoSettings, EventsTaxType, type EventsTaxTypeWithLiterals, type ExportEventsRequest, type ExportEventsResponse, type ExternalEvent, type ExternalRegistration, type FacetCounts, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FindEventRequest, type FindEventRequestFindByOneOf, type FindEventResponse, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GetEventBySlugOptions, type GetEventBySlugRequest, type GetEventBySlugResponse, type GetEventOptions, type GetEventRequest, type GetEventResponse, type Gradient, type GuestListConfig, type GuestListSettings, GuestTypeType, type GuestTypeTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, InitialRegistrationTypeType, type InitialRegistrationTypeTypeWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, 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 ListEventsByCategoryRequest, type ListEventsByCategoryResponse, type ListUserEventsRequest, type ListUserEventsResponse, 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 Metadata, type Money, 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 Paging, type PagingMetadataV2, type ParagraphData, type Permissions, 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 PublishDraftEventApplicationErrors, type PublishDraftEventOptions, type PublishDraftEventRequest, type PublishDraftEventResponse, type QueryEventsApplicationErrors, type QueryEventsOptions, type QueryEventsRequest, type QueryEventsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, RegistrationStatusStatus, type RegistrationStatusStatusWithLiterals, type RegistrationStatusWithLiterals, RegistrationTypeType, type RegistrationTypeTypeWithLiterals, type Rel, Relation, type RelationWithLiterals, RequestedFields, type RequestedFieldsWithLiterals, type ResponseConfirmation, ResponseType, type ResponseTypeWithLiterals, type RestoreInfo, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, type RsvpRegistration, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type Rsvps, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type Summaries, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, type TaxSettings, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type Tickets, type TicketsRegistration, type TicketsUnavailableMessages, type TimeDuration, Type, type TypeWithLiterals, type UpdateEventApplicationErrors, type UpdateEventOptions, type UpdateEventRequest, type UpdateEventResponse, type UpdateEventValidationErrors, type UserFilter, type V3Badge, type V3Event, type V3EventDisplaySettings, 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, bulkCancelEventsByFilter, bulkDeleteEventsByFilter, cancelEvent, cloneEvent, countEventsByStatus, createEvent, deleteEvent, getEvent, getEventBySlug, onEventCanceled, onEventCloned, onEventCreated, onEventDeleted, onEventEnded, onEventPublished, onEventReminder, onEventStarted, onEventUpdated, publishDraftEvent, queryEvents, updateEvent };
|
|
5477
|
+
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, type AgendaSettings, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BadgeList, BadgeTypeType, type BadgeTypeTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCancelEventsByFilterOptions, type BulkCancelEventsByFilterRequest, type BulkCancelEventsByFilterResponse, type BulkDeleteEventsByFilterOptions, type BulkDeleteEventsByFilterRequest, type BulkDeleteEventsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CalendarUrls, type CancelEventApplicationErrors, type CancelEventOptions, type CancelEventRequest, type CancelEventResponse, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, CategoryTypeType, type CategoryTypeTypeWithLiterals, type CellStyle, type CheckoutFormMessages, type CloneEventFromOtherSiteRequest, type CloneEventFromOtherSiteResponse, type CloneEventOptions, type CloneEventRequest, type CloneEventResponse, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonCursors, type CommonPaging, type CommonPagingMetadataV2, type CommonQueryV2, type CommonQueryV2PagingMethodOneOf, CommonSortOrder, type CommonSortOrderWithLiterals, type CommonSorting, type CommonStreetAddress, type CommonSubdivision, ConferenceType, ConferenceTypeType, type ConferenceTypeTypeWithLiterals, type ConferenceTypeWithLiterals, type CountEventsByStatusApplicationErrors, type CountEventsByStatusOptions, type CountEventsByStatusRequest, type CountEventsByStatusResponse, type CreateEventApplicationErrors, type CreateEventOptions, type CreateEventRequest, type CreateEventResponse, type CreateEventValidationErrors, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteEventRequest, type DeleteEventResponse, 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 EventCanceledEnvelope, type EventCategories, type EventCategory, type EventCloned, type EventClonedEnvelope, type EventCopied, type EventCreated, type EventCreatedEnvelope, type EventData, type EventDeleted, type EventDeletedEnvelope, type EventDisplaySettings, type EventEnded, type EventEndedEnvelope, type EventEventCanceled, type EventEventEnded, type EventEventPublished, type EventEventReminder, type EventEventStarted, type EventMetadata, type EventPublished, type EventPublishedEnvelope, type EventReminder, type EventReminderEnvelope, type EventStarted, type EventStartedEnvelope, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type EventUpdatedEnvelope, type EventsFeed, type EventsLabellingSettings, type EventsLocation, type EventsMoney, type EventsOccurrence, type EventsOnlineConferencing, type EventsOnlineConferencingSession, type EventsQueryBuilder, type EventsQueryResult, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type EventsRegistration, type EventsSeoSettings, EventsTaxType, type EventsTaxTypeWithLiterals, type ExportEventsRequest, type ExportEventsResponse, type ExternalEvent, type ExternalRegistration, type FacetCounts, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FindEventRequest, type FindEventRequestFindByOneOf, type FindEventResponse, 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 GetEventBySlugOptions, type GetEventBySlugRequest, type GetEventBySlugResponse, type GetEventOptions, type GetEventRequest, type GetEventResponse, type Gradient, type GuestListConfig, type GuestListSettings, GuestTypeType, type GuestTypeTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, InitialRegistrationTypeType, type InitialRegistrationTypeTypeWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, 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 ListEventsByCategoryRequest, type ListEventsByCategoryResponse, type ListUserEventsRequest, type ListUserEventsResponse, 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 Metadata, type Money, 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 Paging, type PagingMetadataV2, type ParagraphData, type Permissions, 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 PublishDraftEventApplicationErrors, type PublishDraftEventOptions, type PublishDraftEventRequest, type PublishDraftEventResponse, type QueryEventsApplicationErrors, type QueryEventsOptions, type QueryEventsRequest, type QueryEventsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, RegistrationStatusStatus, type RegistrationStatusStatusWithLiterals, type RegistrationStatusWithLiterals, RegistrationTypeType, type RegistrationTypeTypeWithLiterals, type Rel, Relation, type RelationWithLiterals, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponseType, type ResponseTypeWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, type RsvpRegistration, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type Rsvps, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type Summaries, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, type TaxSettings, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type Tickets, type TicketsRegistration, type TicketsUnavailableMessages, type TimeDuration, Type, type TypeWithLiterals, type UpdateEventApplicationErrors, type UpdateEventOptions, type UpdateEventRequest, type UpdateEventResponse, type UpdateEventValidationErrors, type UserFilter, type V3Badge, type V3Event, type V3EventDisplaySettings, 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, bulkCancelEventsByFilter, bulkDeleteEventsByFilter, cancelEvent, cloneEvent, countEventsByStatus, createEvent, deleteEvent, getEvent, getEventBySlug, onEventCanceled, onEventCloned, onEventCreated, onEventDeleted, onEventEnded, onEventPublished, onEventReminder, onEventStarted, onEventUpdated, publishDraftEvent, queryEvents, updateEvent };
|
|
@@ -22,9 +22,11 @@ var index_typings_exports = {};
|
|
|
22
22
|
__export(index_typings_exports, {
|
|
23
23
|
Alignment: () => Alignment,
|
|
24
24
|
AppType: () => AppType,
|
|
25
|
+
AspectRatio: () => AspectRatio,
|
|
25
26
|
BackgroundType: () => BackgroundType,
|
|
26
27
|
BadgeTypeType: () => BadgeTypeType,
|
|
27
28
|
ButtonDataType: () => ButtonDataType,
|
|
29
|
+
CardStylesType: () => CardStylesType,
|
|
28
30
|
CategoryTypeType: () => CategoryTypeType,
|
|
29
31
|
CommonSortOrder: () => CommonSortOrder,
|
|
30
32
|
ConferenceType: () => ConferenceType,
|
|
@@ -32,6 +34,7 @@ __export(index_typings_exports, {
|
|
|
32
34
|
Crop: () => Crop,
|
|
33
35
|
DecorationType: () => DecorationType,
|
|
34
36
|
Direction: () => Direction,
|
|
37
|
+
DividerDataAlignment: () => DividerDataAlignment,
|
|
35
38
|
EventStatus: () => EventStatus,
|
|
36
39
|
EventType: () => EventType,
|
|
37
40
|
EventsRecurrenceStatusStatus: () => EventsRecurrenceStatusStatus,
|
|
@@ -42,6 +45,7 @@ __export(index_typings_exports, {
|
|
|
42
45
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
43
46
|
InitialRegistrationTypeType: () => InitialRegistrationTypeType,
|
|
44
47
|
InputControlType: () => InputControlType,
|
|
48
|
+
Layout: () => Layout,
|
|
45
49
|
LayoutType: () => LayoutType,
|
|
46
50
|
LineStyle: () => LineStyle,
|
|
47
51
|
LocationLocationType: () => LocationLocationType,
|
|
@@ -50,6 +54,7 @@ __export(index_typings_exports, {
|
|
|
50
54
|
NodeType: () => NodeType,
|
|
51
55
|
NullValue: () => NullValue,
|
|
52
56
|
Orientation: () => Orientation,
|
|
57
|
+
Placement: () => Placement,
|
|
53
58
|
PluginContainerDataAlignment: () => PluginContainerDataAlignment,
|
|
54
59
|
PollLayoutDirection: () => PollLayoutDirection,
|
|
55
60
|
PollLayoutType: () => PollLayoutType,
|
|
@@ -60,12 +65,14 @@ __export(index_typings_exports, {
|
|
|
60
65
|
RegistrationTypeType: () => RegistrationTypeType,
|
|
61
66
|
Relation: () => Relation,
|
|
62
67
|
RequestedFields: () => RequestedFields,
|
|
68
|
+
Resizing: () => Resizing,
|
|
63
69
|
ResponseType: () => ResponseType,
|
|
64
70
|
RsvpStatusOptions: () => RsvpStatusOptions,
|
|
65
71
|
SortOrder: () => SortOrder,
|
|
66
72
|
Source: () => Source,
|
|
67
73
|
State: () => State,
|
|
68
74
|
Status: () => Status,
|
|
75
|
+
StylesPosition: () => StylesPosition,
|
|
69
76
|
SubdivisionSubdivisionType: () => SubdivisionSubdivisionType,
|
|
70
77
|
SubdivisionType: () => SubdivisionType,
|
|
71
78
|
Target: () => Target,
|
|
@@ -1244,12 +1251,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
|
|
|
1244
1251
|
Width2["SMALL"] = "SMALL";
|
|
1245
1252
|
return Width2;
|
|
1246
1253
|
})(Width || {});
|
|
1247
|
-
var
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
return
|
|
1252
|
-
})(
|
|
1254
|
+
var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
|
|
1255
|
+
DividerDataAlignment2["CENTER"] = "CENTER";
|
|
1256
|
+
DividerDataAlignment2["LEFT"] = "LEFT";
|
|
1257
|
+
DividerDataAlignment2["RIGHT"] = "RIGHT";
|
|
1258
|
+
return DividerDataAlignment2;
|
|
1259
|
+
})(DividerDataAlignment || {});
|
|
1253
1260
|
var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
|
|
1254
1261
|
ViewMode2["NONE"] = "NONE";
|
|
1255
1262
|
ViewMode2["FULL"] = "FULL";
|
|
@@ -1297,13 +1304,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
1297
1304
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1298
1305
|
return Source2;
|
|
1299
1306
|
})(Source || {});
|
|
1300
|
-
var
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
return
|
|
1306
|
-
})(
|
|
1307
|
+
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
1308
|
+
StylesPosition2["START"] = "START";
|
|
1309
|
+
StylesPosition2["END"] = "END";
|
|
1310
|
+
StylesPosition2["TOP"] = "TOP";
|
|
1311
|
+
StylesPosition2["HIDDEN"] = "HIDDEN";
|
|
1312
|
+
return StylesPosition2;
|
|
1313
|
+
})(StylesPosition || {});
|
|
1307
1314
|
var MapType = /* @__PURE__ */ ((MapType2) => {
|
|
1308
1315
|
MapType2["ROADMAP"] = "ROADMAP";
|
|
1309
1316
|
MapType2["SATELITE"] = "SATELITE";
|
|
@@ -1359,6 +1366,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
1359
1366
|
FontType2["EM"] = "EM";
|
|
1360
1367
|
return FontType2;
|
|
1361
1368
|
})(FontType || {});
|
|
1369
|
+
var Position = /* @__PURE__ */ ((Position2) => {
|
|
1370
|
+
Position2["START"] = "START";
|
|
1371
|
+
Position2["END"] = "END";
|
|
1372
|
+
Position2["TOP"] = "TOP";
|
|
1373
|
+
return Position2;
|
|
1374
|
+
})(Position || {});
|
|
1375
|
+
var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
|
|
1376
|
+
AspectRatio2["SQUARE"] = "SQUARE";
|
|
1377
|
+
AspectRatio2["RECTANGLE"] = "RECTANGLE";
|
|
1378
|
+
return AspectRatio2;
|
|
1379
|
+
})(AspectRatio || {});
|
|
1380
|
+
var Resizing = /* @__PURE__ */ ((Resizing2) => {
|
|
1381
|
+
Resizing2["FILL"] = "FILL";
|
|
1382
|
+
Resizing2["FIT"] = "FIT";
|
|
1383
|
+
return Resizing2;
|
|
1384
|
+
})(Resizing || {});
|
|
1385
|
+
var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
1386
|
+
Placement2["IMAGE"] = "IMAGE";
|
|
1387
|
+
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
1388
|
+
return Placement2;
|
|
1389
|
+
})(Placement || {});
|
|
1390
|
+
var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
|
|
1391
|
+
CardStylesType2["CONTAINED"] = "CONTAINED";
|
|
1392
|
+
CardStylesType2["FRAMELESS"] = "FRAMELESS";
|
|
1393
|
+
return CardStylesType2;
|
|
1394
|
+
})(CardStylesType || {});
|
|
1395
|
+
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
1396
|
+
Alignment2["START"] = "START";
|
|
1397
|
+
Alignment2["CENTER"] = "CENTER";
|
|
1398
|
+
Alignment2["END"] = "END";
|
|
1399
|
+
return Alignment2;
|
|
1400
|
+
})(Alignment || {});
|
|
1401
|
+
var Layout = /* @__PURE__ */ ((Layout2) => {
|
|
1402
|
+
Layout2["STACKED"] = "STACKED";
|
|
1403
|
+
Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
1404
|
+
return Layout2;
|
|
1405
|
+
})(Layout || {});
|
|
1362
1406
|
var AppType = /* @__PURE__ */ ((AppType2) => {
|
|
1363
1407
|
AppType2["PRODUCT"] = "PRODUCT";
|
|
1364
1408
|
AppType2["EVENT"] = "EVENT";
|
|
@@ -2078,9 +2122,11 @@ async function getEventBySlug2(slug, options) {
|
|
|
2078
2122
|
0 && (module.exports = {
|
|
2079
2123
|
Alignment,
|
|
2080
2124
|
AppType,
|
|
2125
|
+
AspectRatio,
|
|
2081
2126
|
BackgroundType,
|
|
2082
2127
|
BadgeTypeType,
|
|
2083
2128
|
ButtonDataType,
|
|
2129
|
+
CardStylesType,
|
|
2084
2130
|
CategoryTypeType,
|
|
2085
2131
|
CommonSortOrder,
|
|
2086
2132
|
ConferenceType,
|
|
@@ -2088,6 +2134,7 @@ async function getEventBySlug2(slug, options) {
|
|
|
2088
2134
|
Crop,
|
|
2089
2135
|
DecorationType,
|
|
2090
2136
|
Direction,
|
|
2137
|
+
DividerDataAlignment,
|
|
2091
2138
|
EventStatus,
|
|
2092
2139
|
EventType,
|
|
2093
2140
|
EventsRecurrenceStatusStatus,
|
|
@@ -2098,6 +2145,7 @@ async function getEventBySlug2(slug, options) {
|
|
|
2098
2145
|
InitialExpandedItems,
|
|
2099
2146
|
InitialRegistrationTypeType,
|
|
2100
2147
|
InputControlType,
|
|
2148
|
+
Layout,
|
|
2101
2149
|
LayoutType,
|
|
2102
2150
|
LineStyle,
|
|
2103
2151
|
LocationLocationType,
|
|
@@ -2106,6 +2154,7 @@ async function getEventBySlug2(slug, options) {
|
|
|
2106
2154
|
NodeType,
|
|
2107
2155
|
NullValue,
|
|
2108
2156
|
Orientation,
|
|
2157
|
+
Placement,
|
|
2109
2158
|
PluginContainerDataAlignment,
|
|
2110
2159
|
PollLayoutDirection,
|
|
2111
2160
|
PollLayoutType,
|
|
@@ -2116,12 +2165,14 @@ async function getEventBySlug2(slug, options) {
|
|
|
2116
2165
|
RegistrationTypeType,
|
|
2117
2166
|
Relation,
|
|
2118
2167
|
RequestedFields,
|
|
2168
|
+
Resizing,
|
|
2119
2169
|
ResponseType,
|
|
2120
2170
|
RsvpStatusOptions,
|
|
2121
2171
|
SortOrder,
|
|
2122
2172
|
Source,
|
|
2123
2173
|
State,
|
|
2124
2174
|
Status,
|
|
2175
|
+
StylesPosition,
|
|
2125
2176
|
SubdivisionSubdivisionType,
|
|
2126
2177
|
SubdivisionType,
|
|
2127
2178
|
Target,
|