@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 };
|
|
@@ -1148,12 +1148,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
|
|
|
1148
1148
|
Width2["SMALL"] = "SMALL";
|
|
1149
1149
|
return Width2;
|
|
1150
1150
|
})(Width || {});
|
|
1151
|
-
var
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
return
|
|
1156
|
-
})(
|
|
1151
|
+
var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
|
|
1152
|
+
DividerDataAlignment2["CENTER"] = "CENTER";
|
|
1153
|
+
DividerDataAlignment2["LEFT"] = "LEFT";
|
|
1154
|
+
DividerDataAlignment2["RIGHT"] = "RIGHT";
|
|
1155
|
+
return DividerDataAlignment2;
|
|
1156
|
+
})(DividerDataAlignment || {});
|
|
1157
1157
|
var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
|
|
1158
1158
|
ViewMode2["NONE"] = "NONE";
|
|
1159
1159
|
ViewMode2["FULL"] = "FULL";
|
|
@@ -1201,13 +1201,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
1201
1201
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1202
1202
|
return Source2;
|
|
1203
1203
|
})(Source || {});
|
|
1204
|
-
var
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
return
|
|
1210
|
-
})(
|
|
1204
|
+
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
1205
|
+
StylesPosition2["START"] = "START";
|
|
1206
|
+
StylesPosition2["END"] = "END";
|
|
1207
|
+
StylesPosition2["TOP"] = "TOP";
|
|
1208
|
+
StylesPosition2["HIDDEN"] = "HIDDEN";
|
|
1209
|
+
return StylesPosition2;
|
|
1210
|
+
})(StylesPosition || {});
|
|
1211
1211
|
var MapType = /* @__PURE__ */ ((MapType2) => {
|
|
1212
1212
|
MapType2["ROADMAP"] = "ROADMAP";
|
|
1213
1213
|
MapType2["SATELITE"] = "SATELITE";
|
|
@@ -1263,6 +1263,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
1263
1263
|
FontType2["EM"] = "EM";
|
|
1264
1264
|
return FontType2;
|
|
1265
1265
|
})(FontType || {});
|
|
1266
|
+
var Position = /* @__PURE__ */ ((Position2) => {
|
|
1267
|
+
Position2["START"] = "START";
|
|
1268
|
+
Position2["END"] = "END";
|
|
1269
|
+
Position2["TOP"] = "TOP";
|
|
1270
|
+
return Position2;
|
|
1271
|
+
})(Position || {});
|
|
1272
|
+
var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
|
|
1273
|
+
AspectRatio2["SQUARE"] = "SQUARE";
|
|
1274
|
+
AspectRatio2["RECTANGLE"] = "RECTANGLE";
|
|
1275
|
+
return AspectRatio2;
|
|
1276
|
+
})(AspectRatio || {});
|
|
1277
|
+
var Resizing = /* @__PURE__ */ ((Resizing2) => {
|
|
1278
|
+
Resizing2["FILL"] = "FILL";
|
|
1279
|
+
Resizing2["FIT"] = "FIT";
|
|
1280
|
+
return Resizing2;
|
|
1281
|
+
})(Resizing || {});
|
|
1282
|
+
var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
1283
|
+
Placement2["IMAGE"] = "IMAGE";
|
|
1284
|
+
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
1285
|
+
return Placement2;
|
|
1286
|
+
})(Placement || {});
|
|
1287
|
+
var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
|
|
1288
|
+
CardStylesType2["CONTAINED"] = "CONTAINED";
|
|
1289
|
+
CardStylesType2["FRAMELESS"] = "FRAMELESS";
|
|
1290
|
+
return CardStylesType2;
|
|
1291
|
+
})(CardStylesType || {});
|
|
1292
|
+
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
1293
|
+
Alignment2["START"] = "START";
|
|
1294
|
+
Alignment2["CENTER"] = "CENTER";
|
|
1295
|
+
Alignment2["END"] = "END";
|
|
1296
|
+
return Alignment2;
|
|
1297
|
+
})(Alignment || {});
|
|
1298
|
+
var Layout = /* @__PURE__ */ ((Layout2) => {
|
|
1299
|
+
Layout2["STACKED"] = "STACKED";
|
|
1300
|
+
Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
1301
|
+
return Layout2;
|
|
1302
|
+
})(Layout || {});
|
|
1266
1303
|
var AppType = /* @__PURE__ */ ((AppType2) => {
|
|
1267
1304
|
AppType2["PRODUCT"] = "PRODUCT";
|
|
1268
1305
|
AppType2["EVENT"] = "EVENT";
|
|
@@ -1981,9 +2018,11 @@ async function getEventBySlug2(slug, options) {
|
|
|
1981
2018
|
export {
|
|
1982
2019
|
Alignment,
|
|
1983
2020
|
AppType,
|
|
2021
|
+
AspectRatio,
|
|
1984
2022
|
BackgroundType,
|
|
1985
2023
|
BadgeTypeType,
|
|
1986
2024
|
ButtonDataType,
|
|
2025
|
+
CardStylesType,
|
|
1987
2026
|
CategoryTypeType,
|
|
1988
2027
|
CommonSortOrder,
|
|
1989
2028
|
ConferenceType,
|
|
@@ -1991,6 +2030,7 @@ export {
|
|
|
1991
2030
|
Crop,
|
|
1992
2031
|
DecorationType,
|
|
1993
2032
|
Direction,
|
|
2033
|
+
DividerDataAlignment,
|
|
1994
2034
|
EventStatus,
|
|
1995
2035
|
EventType,
|
|
1996
2036
|
EventsRecurrenceStatusStatus,
|
|
@@ -2001,6 +2041,7 @@ export {
|
|
|
2001
2041
|
InitialExpandedItems,
|
|
2002
2042
|
InitialRegistrationTypeType,
|
|
2003
2043
|
InputControlType,
|
|
2044
|
+
Layout,
|
|
2004
2045
|
LayoutType,
|
|
2005
2046
|
LineStyle,
|
|
2006
2047
|
LocationLocationType,
|
|
@@ -2009,6 +2050,7 @@ export {
|
|
|
2009
2050
|
NodeType,
|
|
2010
2051
|
NullValue,
|
|
2011
2052
|
Orientation,
|
|
2053
|
+
Placement,
|
|
2012
2054
|
PluginContainerDataAlignment,
|
|
2013
2055
|
PollLayoutDirection,
|
|
2014
2056
|
PollLayoutType,
|
|
@@ -2019,12 +2061,14 @@ export {
|
|
|
2019
2061
|
RegistrationTypeType,
|
|
2020
2062
|
Relation,
|
|
2021
2063
|
RequestedFields,
|
|
2064
|
+
Resizing,
|
|
2022
2065
|
ResponseType,
|
|
2023
2066
|
RsvpStatusOptions,
|
|
2024
2067
|
SortOrder,
|
|
2025
2068
|
Source,
|
|
2026
2069
|
State,
|
|
2027
2070
|
Status,
|
|
2071
|
+
StylesPosition,
|
|
2028
2072
|
SubdivisionSubdivisionType,
|
|
2029
2073
|
SubdivisionType,
|
|
2030
2074
|
Target,
|