@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
package/build/es/meta.d.mts
CHANGED
|
@@ -1489,7 +1489,7 @@ interface DividerData {
|
|
|
1489
1489
|
/** Divider width. */
|
|
1490
1490
|
width?: WidthWithLiterals;
|
|
1491
1491
|
/** Divider alignment. */
|
|
1492
|
-
alignment?:
|
|
1492
|
+
alignment?: DividerDataAlignmentWithLiterals;
|
|
1493
1493
|
}
|
|
1494
1494
|
declare enum LineStyle {
|
|
1495
1495
|
/** Single Line */
|
|
@@ -1513,7 +1513,7 @@ declare enum Width {
|
|
|
1513
1513
|
}
|
|
1514
1514
|
/** @enumType */
|
|
1515
1515
|
type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
|
|
1516
|
-
declare enum
|
|
1516
|
+
declare enum DividerDataAlignment {
|
|
1517
1517
|
/** Center alignment */
|
|
1518
1518
|
CENTER = "CENTER",
|
|
1519
1519
|
/** Left alignment */
|
|
@@ -1522,7 +1522,7 @@ declare enum Alignment {
|
|
|
1522
1522
|
RIGHT = "RIGHT"
|
|
1523
1523
|
}
|
|
1524
1524
|
/** @enumType */
|
|
1525
|
-
type
|
|
1525
|
+
type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
|
1526
1526
|
interface FileData {
|
|
1527
1527
|
/** Styling for the file's container. */
|
|
1528
1528
|
containerData?: PluginContainerData;
|
|
@@ -1647,7 +1647,7 @@ interface ItemDataOneOf {
|
|
|
1647
1647
|
}
|
|
1648
1648
|
interface GalleryOptions {
|
|
1649
1649
|
/** Gallery layout. */
|
|
1650
|
-
layout?:
|
|
1650
|
+
layout?: GalleryOptionsLayout;
|
|
1651
1651
|
/** Styling for gallery items. */
|
|
1652
1652
|
item?: ItemStyle;
|
|
1653
1653
|
/** Styling for gallery thumbnail images. */
|
|
@@ -1707,7 +1707,7 @@ declare enum ThumbnailsAlignment {
|
|
|
1707
1707
|
}
|
|
1708
1708
|
/** @enumType */
|
|
1709
1709
|
type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
|
|
1710
|
-
interface
|
|
1710
|
+
interface GalleryOptionsLayout {
|
|
1711
1711
|
/** Gallery layout type. */
|
|
1712
1712
|
type?: LayoutTypeWithLiterals;
|
|
1713
1713
|
/** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
|
|
@@ -1869,7 +1869,7 @@ interface LinkPreviewData {
|
|
|
1869
1869
|
/** Styling for the link preview. */
|
|
1870
1870
|
styles?: LinkPreviewDataStyles;
|
|
1871
1871
|
}
|
|
1872
|
-
declare enum
|
|
1872
|
+
declare enum StylesPosition {
|
|
1873
1873
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
1874
1874
|
START = "START",
|
|
1875
1875
|
/** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
|
|
@@ -1880,7 +1880,7 @@ declare enum Position {
|
|
|
1880
1880
|
HIDDEN = "HIDDEN"
|
|
1881
1881
|
}
|
|
1882
1882
|
/** @enumType */
|
|
1883
|
-
type
|
|
1883
|
+
type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
|
|
1884
1884
|
interface LinkPreviewDataStyles {
|
|
1885
1885
|
/**
|
|
1886
1886
|
* Background color as a hexadecimal value.
|
|
@@ -1912,7 +1912,7 @@ interface LinkPreviewDataStyles {
|
|
|
1912
1912
|
*/
|
|
1913
1913
|
borderColor?: string | null;
|
|
1914
1914
|
/** Position of thumbnail. Defaults to `START`. */
|
|
1915
|
-
thumbnailPosition?:
|
|
1915
|
+
thumbnailPosition?: StylesPositionWithLiterals;
|
|
1916
1916
|
}
|
|
1917
1917
|
interface MapData {
|
|
1918
1918
|
/** Styling for the map's container. */
|
|
@@ -2266,6 +2266,32 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
2266
2266
|
url?: string | null;
|
|
2267
2267
|
/** An image for the embedded content. */
|
|
2268
2268
|
image?: Media;
|
|
2269
|
+
/** Whether to hide the image. */
|
|
2270
|
+
hideImage?: boolean | null;
|
|
2271
|
+
/** Whether to hide the title. */
|
|
2272
|
+
hideTitle?: boolean | null;
|
|
2273
|
+
/** Whether to hide the price. */
|
|
2274
|
+
hidePrice?: boolean | null;
|
|
2275
|
+
/** Whether to hide the description (Event and Booking). */
|
|
2276
|
+
hideDescription?: boolean | null;
|
|
2277
|
+
/** Whether to hide the date and time (Event). */
|
|
2278
|
+
hideDateTime?: boolean | null;
|
|
2279
|
+
/** Whether to hide the location (Event). */
|
|
2280
|
+
hideLocation?: boolean | null;
|
|
2281
|
+
/** Whether to hide the duration (Booking). */
|
|
2282
|
+
hideDuration?: boolean | null;
|
|
2283
|
+
/** Whether to hide the button. */
|
|
2284
|
+
hideButton?: boolean | null;
|
|
2285
|
+
/** Whether to hide the ribbon. */
|
|
2286
|
+
hideRibbon?: boolean | null;
|
|
2287
|
+
/** Button styling options. */
|
|
2288
|
+
buttonStyles?: ButtonStyles;
|
|
2289
|
+
/** Image styling options. */
|
|
2290
|
+
imageStyles?: ImageStyles;
|
|
2291
|
+
/** Ribbon styling options. */
|
|
2292
|
+
ribbonStyles?: RibbonStyles;
|
|
2293
|
+
/** Card styling options. */
|
|
2294
|
+
cardStyles?: CardStyles;
|
|
2269
2295
|
}
|
|
2270
2296
|
/** @oneof */
|
|
2271
2297
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -2274,6 +2300,66 @@ interface AppEmbedDataAppDataOneOf {
|
|
|
2274
2300
|
/** Data for embedded Wix Events content. */
|
|
2275
2301
|
eventData?: EventData;
|
|
2276
2302
|
}
|
|
2303
|
+
declare enum Position {
|
|
2304
|
+
/** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
2305
|
+
START = "START",
|
|
2306
|
+
/** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
|
|
2307
|
+
END = "END",
|
|
2308
|
+
/** Image positioned at the top */
|
|
2309
|
+
TOP = "TOP"
|
|
2310
|
+
}
|
|
2311
|
+
/** @enumType */
|
|
2312
|
+
type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
|
|
2313
|
+
declare enum AspectRatio {
|
|
2314
|
+
/** 1:1 aspect ratio */
|
|
2315
|
+
SQUARE = "SQUARE",
|
|
2316
|
+
/** 16:9 aspect ratio */
|
|
2317
|
+
RECTANGLE = "RECTANGLE"
|
|
2318
|
+
}
|
|
2319
|
+
/** @enumType */
|
|
2320
|
+
type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
|
|
2321
|
+
declare enum Resizing {
|
|
2322
|
+
/** Fill the container, may crop the image */
|
|
2323
|
+
FILL = "FILL",
|
|
2324
|
+
/** Fit the image within the container */
|
|
2325
|
+
FIT = "FIT"
|
|
2326
|
+
}
|
|
2327
|
+
/** @enumType */
|
|
2328
|
+
type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
|
|
2329
|
+
declare enum Placement {
|
|
2330
|
+
/** Ribbon placed on the image */
|
|
2331
|
+
IMAGE = "IMAGE",
|
|
2332
|
+
/** Ribbon placed on the product information */
|
|
2333
|
+
PRODUCT_INFO = "PRODUCT_INFO"
|
|
2334
|
+
}
|
|
2335
|
+
/** @enumType */
|
|
2336
|
+
type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
|
|
2337
|
+
declare enum CardStylesType {
|
|
2338
|
+
/** Card with visible border and background */
|
|
2339
|
+
CONTAINED = "CONTAINED",
|
|
2340
|
+
/** Card without visible border */
|
|
2341
|
+
FRAMELESS = "FRAMELESS"
|
|
2342
|
+
}
|
|
2343
|
+
/** @enumType */
|
|
2344
|
+
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
2345
|
+
declare enum Alignment {
|
|
2346
|
+
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
2347
|
+
START = "START",
|
|
2348
|
+
/** Content centered */
|
|
2349
|
+
CENTER = "CENTER",
|
|
2350
|
+
/** Content aligned to end (right in LTR layouts, left in RTL layouts) */
|
|
2351
|
+
END = "END"
|
|
2352
|
+
}
|
|
2353
|
+
/** @enumType */
|
|
2354
|
+
type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
|
|
2355
|
+
declare enum Layout {
|
|
2356
|
+
/** Elements stacked vertically */
|
|
2357
|
+
STACKED = "STACKED",
|
|
2358
|
+
/** Elements arranged horizontally */
|
|
2359
|
+
SIDE_BY_SIDE = "SIDE_BY_SIDE"
|
|
2360
|
+
}
|
|
2361
|
+
/** @enumType */
|
|
2362
|
+
type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
|
|
2277
2363
|
declare enum AppType {
|
|
2278
2364
|
PRODUCT = "PRODUCT",
|
|
2279
2365
|
EVENT = "EVENT",
|
|
@@ -2291,6 +2377,122 @@ interface EventData {
|
|
|
2291
2377
|
/** Event location. */
|
|
2292
2378
|
location?: string | null;
|
|
2293
2379
|
}
|
|
2380
|
+
interface ButtonStyles {
|
|
2381
|
+
/** Text to display on the button. */
|
|
2382
|
+
buttonText?: string | null;
|
|
2383
|
+
/** Border width in pixels. */
|
|
2384
|
+
borderWidth?: number | null;
|
|
2385
|
+
/** Border radius in pixels. */
|
|
2386
|
+
borderRadius?: number | null;
|
|
2387
|
+
/**
|
|
2388
|
+
* Border color as a hexadecimal value.
|
|
2389
|
+
* @format COLOR_HEX
|
|
2390
|
+
*/
|
|
2391
|
+
borderColor?: string | null;
|
|
2392
|
+
/**
|
|
2393
|
+
* Text color as a hexadecimal value.
|
|
2394
|
+
* @format COLOR_HEX
|
|
2395
|
+
*/
|
|
2396
|
+
textColor?: string | null;
|
|
2397
|
+
/**
|
|
2398
|
+
* Background color as a hexadecimal value.
|
|
2399
|
+
* @format COLOR_HEX
|
|
2400
|
+
*/
|
|
2401
|
+
backgroundColor?: string | null;
|
|
2402
|
+
/**
|
|
2403
|
+
* Border color as a hexadecimal value (hover state).
|
|
2404
|
+
* @format COLOR_HEX
|
|
2405
|
+
*/
|
|
2406
|
+
borderColorHover?: string | null;
|
|
2407
|
+
/**
|
|
2408
|
+
* Text color as a hexadecimal value (hover state).
|
|
2409
|
+
* @format COLOR_HEX
|
|
2410
|
+
*/
|
|
2411
|
+
textColorHover?: string | null;
|
|
2412
|
+
/**
|
|
2413
|
+
* Background color as a hexadecimal value (hover state).
|
|
2414
|
+
* @format COLOR_HEX
|
|
2415
|
+
*/
|
|
2416
|
+
backgroundColorHover?: string | null;
|
|
2417
|
+
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
2418
|
+
buttonSize?: string | null;
|
|
2419
|
+
}
|
|
2420
|
+
interface ImageStyles {
|
|
2421
|
+
/** Whether to hide the image. */
|
|
2422
|
+
hideImage?: boolean | null;
|
|
2423
|
+
/** Position of image. Defaults to `START`. */
|
|
2424
|
+
imagePosition?: PositionWithLiterals;
|
|
2425
|
+
/** Aspect ratio for the image. Defaults to `SQUARE`. */
|
|
2426
|
+
aspectRatio?: AspectRatioWithLiterals;
|
|
2427
|
+
/** How the image should be resized. Defaults to `FILL`. */
|
|
2428
|
+
resizing?: ResizingWithLiterals;
|
|
2429
|
+
/**
|
|
2430
|
+
* Image border color as a hexadecimal value.
|
|
2431
|
+
* @format COLOR_HEX
|
|
2432
|
+
*/
|
|
2433
|
+
borderColor?: string | null;
|
|
2434
|
+
/** Image border width in pixels. */
|
|
2435
|
+
borderWidth?: number | null;
|
|
2436
|
+
/** Image border radius in pixels. */
|
|
2437
|
+
borderRadius?: number | null;
|
|
2438
|
+
}
|
|
2439
|
+
interface RibbonStyles {
|
|
2440
|
+
/** Text to display on the ribbon. */
|
|
2441
|
+
ribbonText?: string | null;
|
|
2442
|
+
/**
|
|
2443
|
+
* Ribbon background color as a hexadecimal value.
|
|
2444
|
+
* @format COLOR_HEX
|
|
2445
|
+
*/
|
|
2446
|
+
backgroundColor?: string | null;
|
|
2447
|
+
/**
|
|
2448
|
+
* Ribbon text color as a hexadecimal value.
|
|
2449
|
+
* @format COLOR_HEX
|
|
2450
|
+
*/
|
|
2451
|
+
textColor?: string | null;
|
|
2452
|
+
/**
|
|
2453
|
+
* Ribbon border color as a hexadecimal value.
|
|
2454
|
+
* @format COLOR_HEX
|
|
2455
|
+
*/
|
|
2456
|
+
borderColor?: string | null;
|
|
2457
|
+
/** Ribbon border width in pixels. */
|
|
2458
|
+
borderWidth?: number | null;
|
|
2459
|
+
/** Ribbon border radius in pixels. */
|
|
2460
|
+
borderRadius?: number | null;
|
|
2461
|
+
/** Placement of the ribbon. Defaults to `IMAGE`. */
|
|
2462
|
+
ribbonPlacement?: PlacementWithLiterals;
|
|
2463
|
+
}
|
|
2464
|
+
interface CardStyles {
|
|
2465
|
+
/**
|
|
2466
|
+
* Card background color as a hexadecimal value.
|
|
2467
|
+
* @format COLOR_HEX
|
|
2468
|
+
*/
|
|
2469
|
+
backgroundColor?: string | null;
|
|
2470
|
+
/**
|
|
2471
|
+
* Card border color as a hexadecimal value.
|
|
2472
|
+
* @format COLOR_HEX
|
|
2473
|
+
*/
|
|
2474
|
+
borderColor?: string | null;
|
|
2475
|
+
/** Card border width in pixels. */
|
|
2476
|
+
borderWidth?: number | null;
|
|
2477
|
+
/** Card border radius in pixels. */
|
|
2478
|
+
borderRadius?: number | null;
|
|
2479
|
+
/** Card type. Defaults to `CONTAINED`. */
|
|
2480
|
+
type?: CardStylesTypeWithLiterals;
|
|
2481
|
+
/** Content alignment. Defaults to `START`. */
|
|
2482
|
+
alignment?: AlignmentWithLiterals;
|
|
2483
|
+
/** Layout for title and price. Defaults to `STACKED`. */
|
|
2484
|
+
titlePriceLayout?: LayoutWithLiterals;
|
|
2485
|
+
/**
|
|
2486
|
+
* Title text color as a hexadecimal value.
|
|
2487
|
+
* @format COLOR_HEX
|
|
2488
|
+
*/
|
|
2489
|
+
titleColor?: string | null;
|
|
2490
|
+
/**
|
|
2491
|
+
* Text color as a hexadecimal value.
|
|
2492
|
+
* @format COLOR_HEX
|
|
2493
|
+
*/
|
|
2494
|
+
textColor?: string | null;
|
|
2495
|
+
}
|
|
2294
2496
|
interface VideoData {
|
|
2295
2497
|
/** Styling for the video's container. */
|
|
2296
2498
|
containerData?: PluginContainerData;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
2
|
import { V3Event, CreateEventOptions, CreateEventApplicationErrors, CreateEventValidationErrors, CloneEventOptions, CloneEventResponse, UpdateEventOptions, UpdateEventApplicationErrors, UpdateEventValidationErrors, PublishDraftEventOptions, PublishDraftEventResponse, PublishDraftEventApplicationErrors, CancelEventOptions, CancelEventResponse, CancelEventApplicationErrors, BulkCancelEventsByFilterOptions, DeleteEventResponse, BulkDeleteEventsByFilterOptions, QueryEventsOptions, EventsQueryBuilder, CountEventsByStatusOptions, CountEventsByStatusResponse, CountEventsByStatusApplicationErrors, GetEventOptions, GetEventBySlugOptions, GetEventBySlugResponse, EventCanceledEnvelope, EventClonedEnvelope, EventCreatedEnvelope, EventDeletedEnvelope, EventEndedEnvelope, EventPublishedEnvelope, EventReminderEnvelope, EventStartedEnvelope, EventUpdatedEnvelope } from './index.typings.js';
|
|
3
|
-
export { ActionEvent, Address, AddressLocation, AddressStreetOneOf, Agenda, AgendaSettings, Alignment, AnchorData, AppEmbedData, AppEmbedDataAppDataOneOf, AppType, AudioData, Background, BackgroundBackgroundOneOf, BackgroundType, Badge, BadgeList, BadgeTypeType, BaseEventMetadata, BlockquoteData, BookingData, Border, BorderColors, BulkCancelEventsByFilterRequest, BulkCancelEventsByFilterResponse, BulkDeleteEventsByFilterRequest, BulkDeleteEventsByFilterResponse, BulletedListData, ButtonData, ButtonDataType, CalendarLinks, CalendarUrls, CancelEventRequest, CaptionData, Category, CategoryCounts, CategoryTypeType, CellStyle, CheckoutFormMessages, CloneEventFromOtherSiteRequest, CloneEventFromOtherSiteResponse, CloneEventRequest, CodeBlockData, CollapsibleListData, ColorData, Colors, CommonAddress, CommonAddressLocation, CommonAddressStreetOneOf, CommonCursors, CommonPaging, CommonPagingMetadataV2, CommonQueryV2, CommonQueryV2PagingMethodOneOf, CommonSortOrder, CommonSorting, CommonStreetAddress, CommonSubdivision, ConferenceType, ConferenceTypeType, CountEventsByStatusRequest, CreateEventRequest, CreateEventResponse, Crop, CursorPaging, Cursors, Dashboard, DateAndTimeSettings, Decoration, DecorationDataOneOf, DecorationType, DeleteEventRequest, Design, Dimensions, Direction, DividerData, DocumentStyle, DomainEvent, DomainEventBodyOneOf, EmbedData, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, Event, EventCanceled, EventCategories, EventCategory, EventCloned, EventCopied, EventCreated, EventData, EventDeleted, EventDisplaySettings, EventEnded, EventEventCanceled, EventEventEnded, EventEventPublished, EventEventReminder, EventEventStarted, EventMetadata, EventPublished, EventReminder, EventStarted, EventStatus, EventType, EventUpdated, EventsFeed, EventsLabellingSettings, EventsLocation, EventsMoney, EventsOccurrence, EventsOnlineConferencing, EventsOnlineConferencingSession, EventsQueryResult, EventsRecurrenceStatusStatus, EventsRecurrences, EventsRegistration, EventsSeoSettings, EventsTaxType, ExportEventsRequest, ExportEventsResponse, ExternalEvent, ExternalRegistration, FacetCounts, Feed, FileData, FileSource, FileSourceDataOneOf, FindEventRequest, FindEventRequestFindByOneOf, FindEventResponse, FontSizeData, FontType, Form, FormMessages, Formatted, GIF, GIFData, GIFType, GalleryData, GalleryOptions, GetEventBySlugRequest, GetEventRequest, GetEventResponse, Gradient, GuestListConfig, GuestListSettings, GuestTypeType, HTMLData, HTMLDataDataOneOf, HeadingData, Height, IdentificationData, IdentificationDataIdOneOf, Image, ImageData, ImageDataStyles, InitialExpandedItems, InitialRegistrationTypeType, Input, InputControl, InputControlType, Item, ItemDataOneOf, ItemStyle, Keyword, Label, LabellingSettings, Layout, LayoutCellData, LayoutType, LineStyle, Link, LinkData, LinkDataOneOf, LinkPreviewData, LinkPreviewDataStyles, ListEventsByCategoryRequest, ListEventsByCategoryResponse, ListUserEventsRequest, ListUserEventsResponse, ListValue, Location, LocationLocationType, LocationType, MapCoordinates, MapData, MapSettings, MapType, Media, MentionData, MessageEnvelope, Metadata, Money, Negative, NegativeResponseConfirmation, Node, NodeDataOneOf, NodeStyle, NodeType, NullValue, Occurrence, Oembed, OnlineConferencing, OnlineConferencingConfig, OnlineConferencingSession, Option, OptionDesign, OptionLayout, OptionSelection, OptionSelectionSelectedOptionOneOf, OrderedListData, Orientation, PDFSettings, Paging, PagingMetadataV2, ParagraphData, Permissions, PlaybackOptions, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Poll, PollData, PollDataLayout, PollDesign, PollLayout, PollLayoutDirection, PollLayoutType, PollSettings, Position, Positive, PositiveResponseConfirmation, PublishDraftEventRequest, QueryEventsRequest, QueryEventsResponse, QueryV2, QueryV2PagingMethodOneOf, RecurrenceStatusStatus, Recurrences, Registration, RegistrationClosedMessages, RegistrationStatus, RegistrationStatusStatus, RegistrationTypeType, Rel, Relation, RequestedFields, ResponseConfirmation, ResponseType, RestoreInfo, RichContent, RsvpCollection, RsvpCollectionConfig, RsvpFormMessages, RsvpRegistration, RsvpStatusOptions, RsvpSummary, Rsvps, ScheduleConfig, Scheduling, SeoSchema, SeoSettings, Settings, SiteUrl, SortOrder, Sorting, Source, Spoiler, SpoilerData, State, Status, StreetAddress, Styles, StylesBorder, Subdivision, SubdivisionSubdivisionType, SubdivisionType, Summaries, TableCellData, TableData, Tag, Target, TaxConfig, TaxSettings, TaxType, TextAlignment, TextData, TextNodeStyle, TextStyle, Thumbnails, ThumbnailsAlignment, Ticketing, TicketingConfig, TicketingSummary, Tickets, TicketsRegistration, TicketsUnavailableMessages, TimeDuration, Type, UpdateEventRequest, UpdateEventResponse, UserFilter, V3Badge, V3EventDisplaySettings, ValueType, VerticalAlignment, Video, VideoData, ViewMode, ViewRole, VisitorType, VoteRole, WebhookIdentityType, Width, WidthType } from './index.typings.js';
|
|
3
|
+
export { ActionEvent, Address, AddressLocation, AddressStreetOneOf, Agenda, AgendaSettings, Alignment, AnchorData, AppEmbedData, AppEmbedDataAppDataOneOf, AppType, AspectRatio, AudioData, Background, BackgroundBackgroundOneOf, BackgroundType, Badge, BadgeList, BadgeTypeType, BaseEventMetadata, BlockquoteData, BookingData, Border, BorderColors, BulkCancelEventsByFilterRequest, BulkCancelEventsByFilterResponse, BulkDeleteEventsByFilterRequest, BulkDeleteEventsByFilterResponse, BulletedListData, ButtonData, ButtonDataType, ButtonStyles, CalendarLinks, CalendarUrls, CancelEventRequest, CaptionData, CardStyles, CardStylesType, Category, CategoryCounts, CategoryTypeType, CellStyle, CheckoutFormMessages, CloneEventFromOtherSiteRequest, CloneEventFromOtherSiteResponse, CloneEventRequest, CodeBlockData, CollapsibleListData, ColorData, Colors, CommonAddress, CommonAddressLocation, CommonAddressStreetOneOf, CommonCursors, CommonPaging, CommonPagingMetadataV2, CommonQueryV2, CommonQueryV2PagingMethodOneOf, CommonSortOrder, CommonSorting, CommonStreetAddress, CommonSubdivision, ConferenceType, ConferenceTypeType, CountEventsByStatusRequest, CreateEventRequest, CreateEventResponse, Crop, CursorPaging, Cursors, Dashboard, DateAndTimeSettings, Decoration, DecorationDataOneOf, DecorationType, DeleteEventRequest, Design, Dimensions, Direction, DividerData, DividerDataAlignment, DocumentStyle, DomainEvent, DomainEventBodyOneOf, EmbedData, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, Event, EventCanceled, EventCategories, EventCategory, EventCloned, EventCopied, EventCreated, EventData, EventDeleted, EventDisplaySettings, EventEnded, EventEventCanceled, EventEventEnded, EventEventPublished, EventEventReminder, EventEventStarted, EventMetadata, EventPublished, EventReminder, EventStarted, EventStatus, EventType, EventUpdated, EventsFeed, EventsLabellingSettings, EventsLocation, EventsMoney, EventsOccurrence, EventsOnlineConferencing, EventsOnlineConferencingSession, EventsQueryResult, EventsRecurrenceStatusStatus, EventsRecurrences, EventsRegistration, EventsSeoSettings, EventsTaxType, ExportEventsRequest, ExportEventsResponse, ExternalEvent, ExternalRegistration, FacetCounts, Feed, FileData, FileSource, FileSourceDataOneOf, FindEventRequest, FindEventRequestFindByOneOf, FindEventResponse, FontSizeData, FontType, Form, FormMessages, Formatted, GIF, GIFData, GIFType, GalleryData, GalleryOptions, GalleryOptionsLayout, GetEventBySlugRequest, GetEventRequest, GetEventResponse, Gradient, GuestListConfig, GuestListSettings, GuestTypeType, HTMLData, HTMLDataDataOneOf, HeadingData, Height, IdentificationData, IdentificationDataIdOneOf, Image, ImageData, ImageDataStyles, ImageStyles, InitialExpandedItems, InitialRegistrationTypeType, Input, InputControl, InputControlType, Item, ItemDataOneOf, ItemStyle, Keyword, Label, LabellingSettings, Layout, LayoutCellData, LayoutType, LineStyle, Link, LinkData, LinkDataOneOf, LinkPreviewData, LinkPreviewDataStyles, ListEventsByCategoryRequest, ListEventsByCategoryResponse, ListUserEventsRequest, ListUserEventsResponse, ListValue, Location, LocationLocationType, LocationType, MapCoordinates, MapData, MapSettings, MapType, Media, MentionData, MessageEnvelope, Metadata, Money, Negative, NegativeResponseConfirmation, Node, NodeDataOneOf, NodeStyle, NodeType, NullValue, Occurrence, Oembed, OnlineConferencing, OnlineConferencingConfig, OnlineConferencingSession, Option, OptionDesign, OptionLayout, OptionSelection, OptionSelectionSelectedOptionOneOf, OrderedListData, Orientation, PDFSettings, Paging, PagingMetadataV2, ParagraphData, Permissions, Placement, PlaybackOptions, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Poll, PollData, PollDataLayout, PollDesign, PollLayout, PollLayoutDirection, PollLayoutType, PollSettings, Position, Positive, PositiveResponseConfirmation, PublishDraftEventRequest, QueryEventsRequest, QueryEventsResponse, QueryV2, QueryV2PagingMethodOneOf, RecurrenceStatusStatus, Recurrences, Registration, RegistrationClosedMessages, RegistrationStatus, RegistrationStatusStatus, RegistrationTypeType, Rel, Relation, RequestedFields, Resizing, ResponseConfirmation, ResponseType, RestoreInfo, RibbonStyles, RichContent, RsvpCollection, RsvpCollectionConfig, RsvpFormMessages, RsvpRegistration, RsvpStatusOptions, RsvpSummary, Rsvps, ScheduleConfig, Scheduling, SeoSchema, SeoSettings, Settings, SiteUrl, SortOrder, Sorting, Source, Spoiler, SpoilerData, State, Status, StreetAddress, Styles, StylesBorder, StylesPosition, Subdivision, SubdivisionSubdivisionType, SubdivisionType, Summaries, TableCellData, TableData, Tag, Target, TaxConfig, TaxSettings, TaxType, TextAlignment, TextData, TextNodeStyle, TextStyle, Thumbnails, ThumbnailsAlignment, Ticketing, TicketingConfig, TicketingSummary, Tickets, TicketsRegistration, TicketsUnavailableMessages, TimeDuration, Type, UpdateEventRequest, UpdateEventResponse, UserFilter, V3Badge, V3EventDisplaySettings, ValueType, VerticalAlignment, Video, VideoData, ViewMode, ViewRole, VisitorType, VoteRole, WebhookIdentityType, Width, WidthType } from './index.typings.js';
|
|
4
4
|
|
|
5
5
|
type EventNonNullablePaths = `_id` | `location.type` | `location.address.streetAddress.number` | `location.address.streetAddress.name` | `dateAndTimeSettings.recurrenceStatus` | `dateAndTimeSettings.recurringEvents.individualEventDates` | `dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `slug` | `status` | `registration.type` | `registration.status` | `registration.rsvp.responseType` | `registration.rsvp.waitlistEnabled` | `registration.tickets.guestsAssignedSeparately` | `registration.tickets.ticketLimitPerOrder` | `registration.tickets.lowestPrice.value` | `registration.tickets.lowestPrice.currency` | `registration.tickets.taxSettings.type` | `registration.allowedGuestTypes` | `registration.initialType` | `registration.registrationPaused` | `registration.registrationDisabled` | `calendarUrls.google` | `calendarUrls.ics` | `form.controls` | `form.controls.${number}.type` | `form.controls.${number}.system` | `form.controls.${number}.name` | `form.controls.${number}.label` | `form.controls.${number}.orderIndex` | `form.controls.${number}._id` | `form.messages.rsvp.rsvpYesOption` | `form.messages.rsvp.rsvpNoOption` | `form.messages.rsvp.positiveMessages.title` | `form.messages.rsvp.positiveMessages.confirmation.title` | `form.messages.rsvp.positiveMessages.confirmation.message` | `form.messages.rsvp.positiveMessages.confirmation.addToCalendarActionLabel` | `form.messages.rsvp.positiveMessages.confirmation.shareActionLabel` | `form.messages.rsvp.negativeMessages.title` | `form.messages.rsvp.negativeMessages.confirmation.title` | `form.messages.rsvp.negativeMessages.confirmation.shareActionLabel` | `form.messages.rsvp.submitActionLabel` | `form.messages.checkout.title` | `form.messages.checkout.submitActionLabel` | `form.messages.checkout.confirmation.title` | `form.messages.checkout.confirmation.message` | `form.messages.checkout.confirmation.downloadTicketsLabel` | `form.messages.checkout.confirmation.addToCalendarLabel` | `form.messages.checkout.confirmation.shareEventLabel` | `form.messages.registrationClosed.message` | `form.messages.registrationClosed.exploreEventsActionLabel` | `form.messages.ticketsUnavailable.message` | `form.messages.ticketsUnavailable.exploreEventsActionLabel` | `summaries.rsvps.totalCount` | `summaries.rsvps.yesCount` | `summaries.rsvps.noCount` | `summaries.rsvps.waitlistCount` | `summaries.tickets.ticketsSold` | `summaries.tickets.revenue.amount` | `summaries.tickets.revenue.currency` | `summaries.tickets.currencyLocked` | `summaries.tickets.totalOrders` | `instanceId` | `guestListSettings.displayedPublicly` | `userId` | `onlineConferencing.enabled` | `onlineConferencing.type` | `onlineConferencing.session.hostLink` | `onlineConferencing.session.guestLink` | `seoSettings.slug` | `seoSettings.advancedSeoData.tags` | `seoSettings.advancedSeoData.tags.${number}.type` | `seoSettings.advancedSeoData.tags.${number}.children` | `seoSettings.advancedSeoData.tags.${number}.custom` | `seoSettings.advancedSeoData.tags.${number}.disabled` | `seoSettings.advancedSeoData.settings.preventAutoRedirect` | `seoSettings.advancedSeoData.settings.keywords` | `seoSettings.advancedSeoData.settings.keywords.${number}.term` | `seoSettings.advancedSeoData.settings.keywords.${number}.isMain` | `agendaSettings.enabled`;
|
|
6
6
|
declare function createEvent$1(httpClient: HttpClient): CreateEventSignature;
|
|
@@ -22,9 +22,11 @@ var index_exports = {};
|
|
|
22
22
|
__export(index_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_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_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_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_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,
|
|
@@ -1263,12 +1270,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
|
|
|
1263
1270
|
Width2["SMALL"] = "SMALL";
|
|
1264
1271
|
return Width2;
|
|
1265
1272
|
})(Width || {});
|
|
1266
|
-
var
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
return
|
|
1271
|
-
})(
|
|
1273
|
+
var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
|
|
1274
|
+
DividerDataAlignment2["CENTER"] = "CENTER";
|
|
1275
|
+
DividerDataAlignment2["LEFT"] = "LEFT";
|
|
1276
|
+
DividerDataAlignment2["RIGHT"] = "RIGHT";
|
|
1277
|
+
return DividerDataAlignment2;
|
|
1278
|
+
})(DividerDataAlignment || {});
|
|
1272
1279
|
var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
|
|
1273
1280
|
ViewMode2["NONE"] = "NONE";
|
|
1274
1281
|
ViewMode2["FULL"] = "FULL";
|
|
@@ -1316,13 +1323,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
1316
1323
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1317
1324
|
return Source2;
|
|
1318
1325
|
})(Source || {});
|
|
1319
|
-
var
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
return
|
|
1325
|
-
})(
|
|
1326
|
+
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
1327
|
+
StylesPosition2["START"] = "START";
|
|
1328
|
+
StylesPosition2["END"] = "END";
|
|
1329
|
+
StylesPosition2["TOP"] = "TOP";
|
|
1330
|
+
StylesPosition2["HIDDEN"] = "HIDDEN";
|
|
1331
|
+
return StylesPosition2;
|
|
1332
|
+
})(StylesPosition || {});
|
|
1326
1333
|
var MapType = /* @__PURE__ */ ((MapType2) => {
|
|
1327
1334
|
MapType2["ROADMAP"] = "ROADMAP";
|
|
1328
1335
|
MapType2["SATELITE"] = "SATELITE";
|
|
@@ -1378,6 +1385,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
1378
1385
|
FontType2["EM"] = "EM";
|
|
1379
1386
|
return FontType2;
|
|
1380
1387
|
})(FontType || {});
|
|
1388
|
+
var Position = /* @__PURE__ */ ((Position2) => {
|
|
1389
|
+
Position2["START"] = "START";
|
|
1390
|
+
Position2["END"] = "END";
|
|
1391
|
+
Position2["TOP"] = "TOP";
|
|
1392
|
+
return Position2;
|
|
1393
|
+
})(Position || {});
|
|
1394
|
+
var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
|
|
1395
|
+
AspectRatio2["SQUARE"] = "SQUARE";
|
|
1396
|
+
AspectRatio2["RECTANGLE"] = "RECTANGLE";
|
|
1397
|
+
return AspectRatio2;
|
|
1398
|
+
})(AspectRatio || {});
|
|
1399
|
+
var Resizing = /* @__PURE__ */ ((Resizing2) => {
|
|
1400
|
+
Resizing2["FILL"] = "FILL";
|
|
1401
|
+
Resizing2["FIT"] = "FIT";
|
|
1402
|
+
return Resizing2;
|
|
1403
|
+
})(Resizing || {});
|
|
1404
|
+
var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
1405
|
+
Placement2["IMAGE"] = "IMAGE";
|
|
1406
|
+
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
1407
|
+
return Placement2;
|
|
1408
|
+
})(Placement || {});
|
|
1409
|
+
var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
|
|
1410
|
+
CardStylesType2["CONTAINED"] = "CONTAINED";
|
|
1411
|
+
CardStylesType2["FRAMELESS"] = "FRAMELESS";
|
|
1412
|
+
return CardStylesType2;
|
|
1413
|
+
})(CardStylesType || {});
|
|
1414
|
+
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
1415
|
+
Alignment2["START"] = "START";
|
|
1416
|
+
Alignment2["CENTER"] = "CENTER";
|
|
1417
|
+
Alignment2["END"] = "END";
|
|
1418
|
+
return Alignment2;
|
|
1419
|
+
})(Alignment || {});
|
|
1420
|
+
var Layout = /* @__PURE__ */ ((Layout2) => {
|
|
1421
|
+
Layout2["STACKED"] = "STACKED";
|
|
1422
|
+
Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
1423
|
+
return Layout2;
|
|
1424
|
+
})(Layout || {});
|
|
1381
1425
|
var AppType = /* @__PURE__ */ ((AppType2) => {
|
|
1382
1426
|
AppType2["PRODUCT"] = "PRODUCT";
|
|
1383
1427
|
AppType2["EVENT"] = "EVENT";
|
|
@@ -2574,9 +2618,11 @@ var onEventUpdated2 = (0, import_event_definition_modules.createEventModule)(onE
|
|
|
2574
2618
|
0 && (module.exports = {
|
|
2575
2619
|
Alignment,
|
|
2576
2620
|
AppType,
|
|
2621
|
+
AspectRatio,
|
|
2577
2622
|
BackgroundType,
|
|
2578
2623
|
BadgeTypeType,
|
|
2579
2624
|
ButtonDataType,
|
|
2625
|
+
CardStylesType,
|
|
2580
2626
|
CategoryTypeType,
|
|
2581
2627
|
CommonSortOrder,
|
|
2582
2628
|
ConferenceType,
|
|
@@ -2584,6 +2630,7 @@ var onEventUpdated2 = (0, import_event_definition_modules.createEventModule)(onE
|
|
|
2584
2630
|
Crop,
|
|
2585
2631
|
DecorationType,
|
|
2586
2632
|
Direction,
|
|
2633
|
+
DividerDataAlignment,
|
|
2587
2634
|
EventStatus,
|
|
2588
2635
|
EventType,
|
|
2589
2636
|
EventsRecurrenceStatusStatus,
|
|
@@ -2594,6 +2641,7 @@ var onEventUpdated2 = (0, import_event_definition_modules.createEventModule)(onE
|
|
|
2594
2641
|
InitialExpandedItems,
|
|
2595
2642
|
InitialRegistrationTypeType,
|
|
2596
2643
|
InputControlType,
|
|
2644
|
+
Layout,
|
|
2597
2645
|
LayoutType,
|
|
2598
2646
|
LineStyle,
|
|
2599
2647
|
LocationLocationType,
|
|
@@ -2602,6 +2650,7 @@ var onEventUpdated2 = (0, import_event_definition_modules.createEventModule)(onE
|
|
|
2602
2650
|
NodeType,
|
|
2603
2651
|
NullValue,
|
|
2604
2652
|
Orientation,
|
|
2653
|
+
Placement,
|
|
2605
2654
|
PluginContainerDataAlignment,
|
|
2606
2655
|
PollLayoutDirection,
|
|
2607
2656
|
PollLayoutType,
|
|
@@ -2612,12 +2661,14 @@ var onEventUpdated2 = (0, import_event_definition_modules.createEventModule)(onE
|
|
|
2612
2661
|
RegistrationTypeType,
|
|
2613
2662
|
Relation,
|
|
2614
2663
|
RequestedFields,
|
|
2664
|
+
Resizing,
|
|
2615
2665
|
ResponseType,
|
|
2616
2666
|
RsvpStatusOptions,
|
|
2617
2667
|
SortOrder,
|
|
2618
2668
|
Source,
|
|
2619
2669
|
State,
|
|
2620
2670
|
Status,
|
|
2671
|
+
StylesPosition,
|
|
2621
2672
|
SubdivisionSubdivisionType,
|
|
2622
2673
|
SubdivisionType,
|
|
2623
2674
|
Target,
|