@wix/events 1.0.361 → 1.0.363
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/package.json +14 -14
- package/type-bundles/context.bundle.d.ts +90 -36
- package/type-bundles/index.bundle.d.ts +90 -36
- package/type-bundles/meta.bundle.d.ts +60 -56
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/events",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.363",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,21 +22,21 @@
|
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@wix/events_categories": "1.0.55",
|
|
25
|
-
"@wix/events_forms": "1.0.
|
|
26
|
-
"@wix/events_guests": "1.0.
|
|
27
|
-
"@wix/events_notifications": "1.0.
|
|
28
|
-
"@wix/events_orders": "1.0.
|
|
29
|
-
"@wix/events_policies": "1.0.
|
|
30
|
-
"@wix/events_ricos": "1.0.
|
|
31
|
-
"@wix/events_rsvp": "1.0.
|
|
32
|
-
"@wix/events_rsvp-v-2": "1.0.
|
|
25
|
+
"@wix/events_forms": "1.0.57",
|
|
26
|
+
"@wix/events_guests": "1.0.84",
|
|
27
|
+
"@wix/events_notifications": "1.0.44",
|
|
28
|
+
"@wix/events_orders": "1.0.67",
|
|
29
|
+
"@wix/events_policies": "1.0.55",
|
|
30
|
+
"@wix/events_ricos": "1.0.28",
|
|
31
|
+
"@wix/events_rsvp": "1.0.58",
|
|
32
|
+
"@wix/events_rsvp-v-2": "1.0.31",
|
|
33
33
|
"@wix/events_schedule": "1.0.47",
|
|
34
34
|
"@wix/events_schedule-bookmarks": "1.0.43",
|
|
35
|
-
"@wix/events_staff-members": "1.0.
|
|
35
|
+
"@wix/events_staff-members": "1.0.28",
|
|
36
36
|
"@wix/events_ticket-definitions": "1.0.60",
|
|
37
|
-
"@wix/events_ticket-definitions-v-2": "1.0.
|
|
38
|
-
"@wix/events_tickets": "1.0.
|
|
39
|
-
"@wix/events_wix-events-v-2": "1.0.
|
|
37
|
+
"@wix/events_ticket-definitions-v-2": "1.0.79",
|
|
38
|
+
"@wix/events_tickets": "1.0.54",
|
|
39
|
+
"@wix/events_wix-events-v-2": "1.0.69"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"glob": "^10.4.1",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"fqdn": ""
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
|
-
"falconPackageHash": "
|
|
64
|
+
"falconPackageHash": "ba08452f64f3929a80cdb167207ba42bfff611d5dab698ff9b956b29"
|
|
65
65
|
}
|
|
@@ -1778,8 +1778,12 @@ interface StreetAddressNonNullableFields$3 {
|
|
|
1778
1778
|
name: string;
|
|
1779
1779
|
apt: string;
|
|
1780
1780
|
}
|
|
1781
|
+
interface SubdivisionNonNullableFields$3 {
|
|
1782
|
+
name: string;
|
|
1783
|
+
}
|
|
1781
1784
|
interface AddressNonNullableFields$3 {
|
|
1782
1785
|
streetAddress?: StreetAddressNonNullableFields$3;
|
|
1786
|
+
subdivisions: SubdivisionNonNullableFields$3[];
|
|
1783
1787
|
}
|
|
1784
1788
|
interface FormattedAddressNonNullableFields$4 {
|
|
1785
1789
|
formatted: string;
|
|
@@ -2142,9 +2146,7 @@ declare enum EmailNotificationType {
|
|
|
2142
2146
|
/** Triggered when resending ticket to ticket holder. */
|
|
2143
2147
|
EMAIL_TICKET_CONFIRMATION = "EMAIL_TICKET_CONFIRMATION",
|
|
2144
2148
|
/** Triggered when sending invoice. Currently only `enabled` flag update is supported. */
|
|
2145
|
-
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
2146
|
-
/** Triggered when order confirmation sending is delayed. Tickets are accessible via link. */
|
|
2147
|
-
EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK = "EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK"
|
|
2149
|
+
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
2148
2150
|
}
|
|
2149
2151
|
interface EmailTemplate {
|
|
2150
2152
|
/** Email subject. */
|
|
@@ -2574,6 +2576,10 @@ interface Address$9 extends AddressStreetOneOf$9 {
|
|
|
2574
2576
|
formatted?: string | null;
|
|
2575
2577
|
/** coordinates of the physical address */
|
|
2576
2578
|
location?: AddressLocation$9;
|
|
2579
|
+
/** country full-name */
|
|
2580
|
+
countryFullname?: string | null;
|
|
2581
|
+
/** multi-level subdivisions from top to bottom */
|
|
2582
|
+
subdivisions?: Subdivision$9[];
|
|
2577
2583
|
}
|
|
2578
2584
|
/** @oneof */
|
|
2579
2585
|
interface AddressStreetOneOf$9 {
|
|
@@ -3290,11 +3296,11 @@ interface Tag$4 {
|
|
|
3290
3296
|
*/
|
|
3291
3297
|
type?: string;
|
|
3292
3298
|
/**
|
|
3293
|
-
* A `{
|
|
3294
|
-
* For example: `{
|
|
3299
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
3300
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
3295
3301
|
*/
|
|
3296
3302
|
props?: Record<string, any> | null;
|
|
3297
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
3303
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
3298
3304
|
meta?: Record<string, any> | null;
|
|
3299
3305
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
3300
3306
|
children?: string;
|
|
@@ -5304,11 +5310,6 @@ interface GetStaffMemberRequest {
|
|
|
5304
5310
|
fieldsets?: Fieldset[];
|
|
5305
5311
|
}
|
|
5306
5312
|
declare enum Fieldset {
|
|
5307
|
-
/**
|
|
5308
|
-
* Includes join link.
|
|
5309
|
-
* Deprecated, use LOGIN_LINK
|
|
5310
|
-
*/
|
|
5311
|
-
JOIN_LINK = "JOIN_LINK",
|
|
5312
5313
|
/** Includes login link. */
|
|
5313
5314
|
LOGIN_LINK = "LOGIN_LINK"
|
|
5314
5315
|
}
|
|
@@ -7266,6 +7267,10 @@ interface Address$8 extends AddressStreetOneOf$8 {
|
|
|
7266
7267
|
formatted?: string | null;
|
|
7267
7268
|
/** coordinates of the physical address */
|
|
7268
7269
|
location?: AddressLocation$8;
|
|
7270
|
+
/** country full-name */
|
|
7271
|
+
countryFullname?: string | null;
|
|
7272
|
+
/** multi-level subdivisions from top to bottom */
|
|
7273
|
+
subdivisions?: Subdivision$8[];
|
|
7269
7274
|
}
|
|
7270
7275
|
/** @oneof */
|
|
7271
7276
|
interface AddressStreetOneOf$8 {
|
|
@@ -7756,11 +7761,11 @@ interface Tag$3 {
|
|
|
7756
7761
|
*/
|
|
7757
7762
|
type?: string;
|
|
7758
7763
|
/**
|
|
7759
|
-
* A `{
|
|
7760
|
-
* For example: `{
|
|
7764
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
7765
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
7761
7766
|
*/
|
|
7762
7767
|
props?: Record<string, any> | null;
|
|
7763
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
7768
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
7764
7769
|
meta?: Record<string, any> | null;
|
|
7765
7770
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
7766
7771
|
children?: string;
|
|
@@ -9881,8 +9886,12 @@ interface StreetAddressNonNullableFields$2 {
|
|
|
9881
9886
|
name: string;
|
|
9882
9887
|
apt: string;
|
|
9883
9888
|
}
|
|
9889
|
+
interface SubdivisionNonNullableFields$2 {
|
|
9890
|
+
name: string;
|
|
9891
|
+
}
|
|
9884
9892
|
interface AddressNonNullableFields$2 {
|
|
9885
9893
|
streetAddress?: StreetAddressNonNullableFields$2;
|
|
9894
|
+
subdivisions: SubdivisionNonNullableFields$2[];
|
|
9886
9895
|
}
|
|
9887
9896
|
interface FormattedAddressNonNullableFields$3 {
|
|
9888
9897
|
formatted: string;
|
|
@@ -12276,6 +12285,10 @@ interface Address$6 extends AddressStreetOneOf$6 {
|
|
|
12276
12285
|
formatted?: string | null;
|
|
12277
12286
|
/** coordinates of the physical address */
|
|
12278
12287
|
location?: AddressLocation$6;
|
|
12288
|
+
/** country full-name */
|
|
12289
|
+
countryFullname?: string | null;
|
|
12290
|
+
/** multi-level subdivisions from top to bottom */
|
|
12291
|
+
subdivisions?: Subdivision$6[];
|
|
12279
12292
|
}
|
|
12280
12293
|
/** @oneof */
|
|
12281
12294
|
interface AddressStreetOneOf$6 {
|
|
@@ -12409,6 +12422,12 @@ interface GetOrCreateRichContentResponse {
|
|
|
12409
12422
|
/** The RichContent */
|
|
12410
12423
|
richContent?: RichContent;
|
|
12411
12424
|
}
|
|
12425
|
+
interface CountRichContentItemsRequest {
|
|
12426
|
+
filter?: Record<string, any> | null;
|
|
12427
|
+
}
|
|
12428
|
+
interface CountRichContentItemsResponse {
|
|
12429
|
+
count?: number;
|
|
12430
|
+
}
|
|
12412
12431
|
interface DomainEvent$4 extends DomainEventBodyOneOf$4 {
|
|
12413
12432
|
createdEvent?: EntityCreatedEvent$4;
|
|
12414
12433
|
updatedEvent?: EntityUpdatedEvent$4;
|
|
@@ -13081,6 +13100,8 @@ type context$7_CodeBlockData = CodeBlockData;
|
|
|
13081
13100
|
type context$7_CollapsibleListData = CollapsibleListData;
|
|
13082
13101
|
type context$7_ColorData = ColorData;
|
|
13083
13102
|
type context$7_Colors = Colors;
|
|
13103
|
+
type context$7_CountRichContentItemsRequest = CountRichContentItemsRequest;
|
|
13104
|
+
type context$7_CountRichContentItemsResponse = CountRichContentItemsResponse;
|
|
13084
13105
|
type context$7_CreateRichContentRequest = CreateRichContentRequest;
|
|
13085
13106
|
type context$7_CreateRichContentResponse = CreateRichContentResponse;
|
|
13086
13107
|
type context$7_CreateRichContentResponseNonNullableFields = CreateRichContentResponseNonNullableFields;
|
|
@@ -13245,7 +13266,7 @@ declare const context$7_queryRichContent: typeof queryRichContent;
|
|
|
13245
13266
|
declare const context$7_queryRichContents: typeof queryRichContents;
|
|
13246
13267
|
declare const context$7_updateRichContent: typeof updateRichContent;
|
|
13247
13268
|
declare namespace context$7 {
|
|
13248
|
-
export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, context$7_Alignment as Alignment, type context$7_AnchorData as AnchorData, type context$7_AppEmbedData as AppEmbedData, type context$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$7_AppType as AppType, type context$7_AudioData as AudioData, type context$7_Background as Background, type context$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$7_BackgroundType as BackgroundType, type BaseEventMetadata$7 as BaseEventMetadata, type context$7_BlockquoteData as BlockquoteData, type context$7_BookingData as BookingData, type context$7_Border as Border, type context$7_BorderColors as BorderColors, type context$7_BulletedListData as BulletedListData, type context$7_ButtonData as ButtonData, type context$7_CaptionData as CaptionData, type context$7_CellStyle as CellStyle, type context$7_CodeBlockData as CodeBlockData, type context$7_CollapsibleListData as CollapsibleListData, type context$7_ColorData as ColorData, type context$7_Colors as Colors, type context$7_CreateRichContentRequest as CreateRichContentRequest, type context$7_CreateRichContentResponse as CreateRichContentResponse, type context$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, context$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type context$7_Decoration as Decoration, type context$7_DecorationDataOneOf as DecorationDataOneOf, context$7_DecorationType as DecorationType, type context$7_DeleteRichContentRequest as DeleteRichContentRequest, type context$7_DeleteRichContentResponse as DeleteRichContentResponse, type context$7_Design as Design, type context$7_Dimensions as Dimensions, context$7_Direction as Direction, type context$7_DividerData as DividerData, type context$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type context$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type context$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$4 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type context$7_FileData as FileData, type context$7_FileSource as FileSource, type context$7_FileSourceDataOneOf as FileSourceDataOneOf, type context$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type context$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type context$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type context$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type context$7_FontSizeData as FontSizeData, context$7_FontType as FontType, type context$7_GIF as GIF, type context$7_GIFData as GIFData, type context$7_GalleryData as GalleryData, type context$7_GalleryOptions as GalleryOptions, type context$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type context$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type context$7_GetRichContentRequest as GetRichContentRequest, type context$7_GetRichContentResponse as GetRichContentResponse, type context$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type context$7_Gradient as Gradient, type context$7_HTMLData as HTMLData, type context$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$7_HeadingData as HeadingData, type context$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type context$7_Image as Image, type context$7_ImageData as ImageData, context$7_InitialExpandedItems as InitialExpandedItems, type context$7_Item as Item, type context$7_ItemDataOneOf as ItemDataOneOf, type context$7_ItemStyle as ItemStyle, type context$7_Layout as Layout, context$7_LayoutType as LayoutType, context$7_LineStyle as LineStyle, type context$7_Link as Link, type context$7_LinkData as LinkData, type context$7_LinkDataOneOf as LinkDataOneOf, type context$7_LinkPreviewData as LinkPreviewData, type context$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type context$7_MapData as MapData, type context$7_MapSettings as MapSettings, context$7_MapType as MapType, type context$7_Media as Media, type context$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type context$7_Metadata as Metadata, type context$7_Node as Node, type context$7_NodeDataOneOf as NodeDataOneOf, type context$7_NodeStyle as NodeStyle, context$7_NodeType as NodeType, context$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type context$7_Oembed as Oembed, type context$7_Option as Option, type context$7_OptionDesign as OptionDesign, type context$7_OptionLayout as OptionLayout, type context$7_OrderedListData as OrderedListData, context$7_Orientation as Orientation, type context$7_PDFSettings as PDFSettings, type context$7_ParagraphData as ParagraphData, type context$7_Permissions as Permissions, type context$7_PlaybackOptions as PlaybackOptions, type context$7_PluginContainerData as PluginContainerData, context$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$7_PluginContainerDataWidth as PluginContainerDataWidth, type context$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$7_Poll as Poll, type context$7_PollData as PollData, type context$7_PollDataLayout as PollDataLayout, type context$7_PollDesign as PollDesign, type context$7_PollLayout as PollLayout, context$7_PollLayoutDirection as PollLayoutDirection, context$7_PollLayoutType as PollLayoutType, type context$7_QueryRichContentRequest as QueryRichContentRequest, type context$7_QueryRichContentResponse as QueryRichContentResponse, type context$7_QueryRichContentResponseNonNullableFields as QueryRichContentResponseNonNullableFields, type context$7_QueryRichContentsOptions as QueryRichContentsOptions, type context$7_QueryRichContentsRequest as QueryRichContentsRequest, type context$7_QueryRichContentsResponse as QueryRichContentsResponse, type context$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type context$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type context$7_RichContent as RichContent, type context$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type context$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type context$7_RichContentNonNullableFields as RichContentNonNullableFields, type context$7_RichContentQueryBuilder as RichContentQueryBuilder, type context$7_RichContentQueryResult as RichContentQueryResult, type context$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, context$7_Source as Source, type context$7_Spoiler as Spoiler, type context$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type context$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type context$7_TableCellData as TableCellData, type context$7_TableData as TableData, context$7_Target as Target, context$7_TextAlignment as TextAlignment, type context$7_TextData as TextData, type context$7_TextNodeStyle as TextNodeStyle, type context$7_TextStyle as TextStyle, type context$7_Thumbnails as Thumbnails, context$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type context$7_UpdateRichContent as UpdateRichContent, type context$7_UpdateRichContentRequest as UpdateRichContentRequest, type context$7_UpdateRichContentResponse as UpdateRichContentResponse, type context$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type context$7_V1RichContent as V1RichContent, context$7_VerticalAlignment as VerticalAlignment, type context$7_Video as Video, type context$7_VideoData as VideoData, context$7_ViewMode as ViewMode, context$7_ViewRole as ViewRole, context$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, context$7_Width as Width, context$7_WidthType as WidthType, type context$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type context$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type context$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, context$7_createRichContent as createRichContent, context$7_deleteRichContent as deleteRichContent, context$7_findRichContentBySlug as findRichContentBySlug, context$7_getRichContent as getRichContent, context$7_onRichContentCreated as onRichContentCreated, context$7_onRichContentDeleted as onRichContentDeleted, context$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, context$7_queryRichContent as queryRichContent, context$7_queryRichContents as queryRichContents, context$7_updateRichContent as updateRichContent };
|
|
13269
|
+
export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, context$7_Alignment as Alignment, type context$7_AnchorData as AnchorData, type context$7_AppEmbedData as AppEmbedData, type context$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$7_AppType as AppType, type context$7_AudioData as AudioData, type context$7_Background as Background, type context$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$7_BackgroundType as BackgroundType, type BaseEventMetadata$7 as BaseEventMetadata, type context$7_BlockquoteData as BlockquoteData, type context$7_BookingData as BookingData, type context$7_Border as Border, type context$7_BorderColors as BorderColors, type context$7_BulletedListData as BulletedListData, type context$7_ButtonData as ButtonData, type context$7_CaptionData as CaptionData, type context$7_CellStyle as CellStyle, type context$7_CodeBlockData as CodeBlockData, type context$7_CollapsibleListData as CollapsibleListData, type context$7_ColorData as ColorData, type context$7_Colors as Colors, type context$7_CountRichContentItemsRequest as CountRichContentItemsRequest, type context$7_CountRichContentItemsResponse as CountRichContentItemsResponse, type context$7_CreateRichContentRequest as CreateRichContentRequest, type context$7_CreateRichContentResponse as CreateRichContentResponse, type context$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, context$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type context$7_Decoration as Decoration, type context$7_DecorationDataOneOf as DecorationDataOneOf, context$7_DecorationType as DecorationType, type context$7_DeleteRichContentRequest as DeleteRichContentRequest, type context$7_DeleteRichContentResponse as DeleteRichContentResponse, type context$7_Design as Design, type context$7_Dimensions as Dimensions, context$7_Direction as Direction, type context$7_DividerData as DividerData, type context$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type context$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type context$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$4 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type context$7_FileData as FileData, type context$7_FileSource as FileSource, type context$7_FileSourceDataOneOf as FileSourceDataOneOf, type context$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type context$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type context$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type context$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type context$7_FontSizeData as FontSizeData, context$7_FontType as FontType, type context$7_GIF as GIF, type context$7_GIFData as GIFData, type context$7_GalleryData as GalleryData, type context$7_GalleryOptions as GalleryOptions, type context$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type context$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type context$7_GetRichContentRequest as GetRichContentRequest, type context$7_GetRichContentResponse as GetRichContentResponse, type context$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type context$7_Gradient as Gradient, type context$7_HTMLData as HTMLData, type context$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$7_HeadingData as HeadingData, type context$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type context$7_Image as Image, type context$7_ImageData as ImageData, context$7_InitialExpandedItems as InitialExpandedItems, type context$7_Item as Item, type context$7_ItemDataOneOf as ItemDataOneOf, type context$7_ItemStyle as ItemStyle, type context$7_Layout as Layout, context$7_LayoutType as LayoutType, context$7_LineStyle as LineStyle, type context$7_Link as Link, type context$7_LinkData as LinkData, type context$7_LinkDataOneOf as LinkDataOneOf, type context$7_LinkPreviewData as LinkPreviewData, type context$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type context$7_MapData as MapData, type context$7_MapSettings as MapSettings, context$7_MapType as MapType, type context$7_Media as Media, type context$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type context$7_Metadata as Metadata, type context$7_Node as Node, type context$7_NodeDataOneOf as NodeDataOneOf, type context$7_NodeStyle as NodeStyle, context$7_NodeType as NodeType, context$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type context$7_Oembed as Oembed, type context$7_Option as Option, type context$7_OptionDesign as OptionDesign, type context$7_OptionLayout as OptionLayout, type context$7_OrderedListData as OrderedListData, context$7_Orientation as Orientation, type context$7_PDFSettings as PDFSettings, type context$7_ParagraphData as ParagraphData, type context$7_Permissions as Permissions, type context$7_PlaybackOptions as PlaybackOptions, type context$7_PluginContainerData as PluginContainerData, context$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$7_PluginContainerDataWidth as PluginContainerDataWidth, type context$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$7_Poll as Poll, type context$7_PollData as PollData, type context$7_PollDataLayout as PollDataLayout, type context$7_PollDesign as PollDesign, type context$7_PollLayout as PollLayout, context$7_PollLayoutDirection as PollLayoutDirection, context$7_PollLayoutType as PollLayoutType, type context$7_QueryRichContentRequest as QueryRichContentRequest, type context$7_QueryRichContentResponse as QueryRichContentResponse, type context$7_QueryRichContentResponseNonNullableFields as QueryRichContentResponseNonNullableFields, type context$7_QueryRichContentsOptions as QueryRichContentsOptions, type context$7_QueryRichContentsRequest as QueryRichContentsRequest, type context$7_QueryRichContentsResponse as QueryRichContentsResponse, type context$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type context$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type context$7_RichContent as RichContent, type context$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type context$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type context$7_RichContentNonNullableFields as RichContentNonNullableFields, type context$7_RichContentQueryBuilder as RichContentQueryBuilder, type context$7_RichContentQueryResult as RichContentQueryResult, type context$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, context$7_Source as Source, type context$7_Spoiler as Spoiler, type context$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type context$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type context$7_TableCellData as TableCellData, type context$7_TableData as TableData, context$7_Target as Target, context$7_TextAlignment as TextAlignment, type context$7_TextData as TextData, type context$7_TextNodeStyle as TextNodeStyle, type context$7_TextStyle as TextStyle, type context$7_Thumbnails as Thumbnails, context$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type context$7_UpdateRichContent as UpdateRichContent, type context$7_UpdateRichContentRequest as UpdateRichContentRequest, type context$7_UpdateRichContentResponse as UpdateRichContentResponse, type context$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type context$7_V1RichContent as V1RichContent, context$7_VerticalAlignment as VerticalAlignment, type context$7_Video as Video, type context$7_VideoData as VideoData, context$7_ViewMode as ViewMode, context$7_ViewRole as ViewRole, context$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, context$7_Width as Width, context$7_WidthType as WidthType, type context$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type context$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type context$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, context$7_createRichContent as createRichContent, context$7_deleteRichContent as deleteRichContent, context$7_findRichContentBySlug as findRichContentBySlug, context$7_getRichContent as getRichContent, context$7_onRichContentCreated as onRichContentCreated, context$7_onRichContentDeleted as onRichContentDeleted, context$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, context$7_queryRichContent as queryRichContent, context$7_queryRichContents as queryRichContents, context$7_updateRichContent as updateRichContent };
|
|
13249
13270
|
}
|
|
13250
13271
|
|
|
13251
13272
|
interface RsvpRsvp {
|
|
@@ -13839,8 +13860,12 @@ interface StreetAddressNonNullableFields$1 {
|
|
|
13839
13860
|
name: string;
|
|
13840
13861
|
apt: string;
|
|
13841
13862
|
}
|
|
13863
|
+
interface SubdivisionNonNullableFields$1 {
|
|
13864
|
+
name: string;
|
|
13865
|
+
}
|
|
13842
13866
|
interface AddressNonNullableFields$1 {
|
|
13843
13867
|
streetAddress?: StreetAddressNonNullableFields$1;
|
|
13868
|
+
subdivisions: SubdivisionNonNullableFields$1[];
|
|
13844
13869
|
}
|
|
13845
13870
|
interface FormattedAddressNonNullableFields$2 {
|
|
13846
13871
|
formatted: string;
|
|
@@ -14813,8 +14838,12 @@ interface StreetAddressNonNullableFields {
|
|
|
14813
14838
|
name: string;
|
|
14814
14839
|
apt: string;
|
|
14815
14840
|
}
|
|
14841
|
+
interface SubdivisionNonNullableFields {
|
|
14842
|
+
name: string;
|
|
14843
|
+
}
|
|
14816
14844
|
interface AddressNonNullableFields {
|
|
14817
14845
|
streetAddress?: StreetAddressNonNullableFields;
|
|
14846
|
+
subdivisions: SubdivisionNonNullableFields[];
|
|
14818
14847
|
}
|
|
14819
14848
|
interface FormattedAddressNonNullableFields$1 {
|
|
14820
14849
|
formatted: string;
|
|
@@ -16355,6 +16384,10 @@ interface Address$3 extends AddressStreetOneOf$3 {
|
|
|
16355
16384
|
formatted?: string | null;
|
|
16356
16385
|
/** coordinates of the physical address */
|
|
16357
16386
|
location?: AddressLocation$3;
|
|
16387
|
+
/** country full-name */
|
|
16388
|
+
countryFullname?: string | null;
|
|
16389
|
+
/** multi-level subdivisions from top to bottom */
|
|
16390
|
+
subdivisions?: Subdivision$3[];
|
|
16358
16391
|
}
|
|
16359
16392
|
/** @oneof */
|
|
16360
16393
|
interface AddressStreetOneOf$3 {
|
|
@@ -17299,11 +17332,7 @@ declare enum ScalarType {
|
|
|
17299
17332
|
/** Minimum value. */
|
|
17300
17333
|
MIN = "MIN",
|
|
17301
17334
|
/** Maximum value. */
|
|
17302
|
-
MAX = "MAX"
|
|
17303
|
-
/** Sum of values. */
|
|
17304
|
-
SUM = "SUM",
|
|
17305
|
-
/** Average of values. */
|
|
17306
|
-
AVG = "AVG"
|
|
17335
|
+
MAX = "MAX"
|
|
17307
17336
|
}
|
|
17308
17337
|
interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
17309
17338
|
/**
|
|
@@ -18040,6 +18069,10 @@ interface Address$2 extends AddressStreetOneOf$2 {
|
|
|
18040
18069
|
formatted?: string | null;
|
|
18041
18070
|
/** coordinates of the physical address */
|
|
18042
18071
|
location?: AddressLocation$2;
|
|
18072
|
+
/** country full-name */
|
|
18073
|
+
countryFullname?: string | null;
|
|
18074
|
+
/** multi-level subdivisions from top to bottom */
|
|
18075
|
+
subdivisions?: Subdivision$2[];
|
|
18043
18076
|
}
|
|
18044
18077
|
/** @oneof */
|
|
18045
18078
|
interface AddressStreetOneOf$2 {
|
|
@@ -18750,11 +18783,11 @@ interface Tag$2 {
|
|
|
18750
18783
|
*/
|
|
18751
18784
|
type?: string;
|
|
18752
18785
|
/**
|
|
18753
|
-
* A `{
|
|
18754
|
-
* For example: `{
|
|
18786
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
18787
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
18755
18788
|
*/
|
|
18756
18789
|
props?: Record<string, any> | null;
|
|
18757
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
18790
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
18758
18791
|
meta?: Record<string, any> | null;
|
|
18759
18792
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
18760
18793
|
children?: string;
|
|
@@ -18974,8 +19007,12 @@ interface CommonStreetAddressNonNullableFields$2 {
|
|
|
18974
19007
|
name: string;
|
|
18975
19008
|
apt: string;
|
|
18976
19009
|
}
|
|
19010
|
+
interface CommonSubdivisionNonNullableFields$2 {
|
|
19011
|
+
name: string;
|
|
19012
|
+
}
|
|
18977
19013
|
interface CommonAddressNonNullableFields$2 {
|
|
18978
19014
|
streetAddress?: CommonStreetAddressNonNullableFields$2;
|
|
19015
|
+
subdivisions: CommonSubdivisionNonNullableFields$2[];
|
|
18979
19016
|
}
|
|
18980
19017
|
interface FormattedAddressNonNullableFields {
|
|
18981
19018
|
formatted: string;
|
|
@@ -20163,8 +20200,8 @@ interface TaxSettings {
|
|
|
20163
20200
|
/**
|
|
20164
20201
|
* Tax application settings:
|
|
20165
20202
|
*
|
|
20166
|
-
* - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75.
|
|
20167
|
-
* - `ADDED_AT_CHECKOUT`: Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total.
|
|
20203
|
+
* - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket service fee of $0.25 is deducted from the price and you'll get $9.75.
|
|
20204
|
+
* - `ADDED_AT_CHECKOUT`: Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a ticket service fee of $0.25 and pays $10.25 in total.
|
|
20168
20205
|
*/
|
|
20169
20206
|
type?: TaxType$1;
|
|
20170
20207
|
/** Tax name. */
|
|
@@ -20178,9 +20215,9 @@ interface TaxSettings {
|
|
|
20178
20215
|
declare enum TaxType$1 {
|
|
20179
20216
|
/** Unknown tax type. */
|
|
20180
20217
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
20181
|
-
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
20218
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket ticket service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
20182
20219
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
20183
|
-
/** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total. */
|
|
20220
|
+
/** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a ticket ticket service fee of $0.25 and pays $10.25 in total. */
|
|
20184
20221
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
20185
20222
|
}
|
|
20186
20223
|
interface ExternalRegistration {
|
|
@@ -20619,11 +20656,11 @@ interface Tag$1 {
|
|
|
20619
20656
|
*/
|
|
20620
20657
|
type?: string;
|
|
20621
20658
|
/**
|
|
20622
|
-
* A `{
|
|
20623
|
-
* For example: `{
|
|
20659
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
20660
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
20624
20661
|
*/
|
|
20625
20662
|
props?: Record<string, any> | null;
|
|
20626
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
20663
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
20627
20664
|
meta?: Record<string, any> | null;
|
|
20628
20665
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
20629
20666
|
children?: string;
|
|
@@ -20815,8 +20852,7 @@ declare enum RequestedFields {
|
|
|
20815
20852
|
/** Returns `agendaSettings`. */
|
|
20816
20853
|
AGENDA = "AGENDA",
|
|
20817
20854
|
/** Returns `categories`. */
|
|
20818
|
-
CATEGORIES = "CATEGORIES"
|
|
20819
|
-
CUSTOMIZABLE_TICKETS = "CUSTOMIZABLE_TICKETS"
|
|
20855
|
+
CATEGORIES = "CATEGORIES"
|
|
20820
20856
|
}
|
|
20821
20857
|
interface CreateEventResponse {
|
|
20822
20858
|
/** Created event. */
|
|
@@ -21234,6 +21270,10 @@ interface Address$1 extends AddressStreetOneOf$1 {
|
|
|
21234
21270
|
formatted?: string | null;
|
|
21235
21271
|
/** coordinates of the physical address */
|
|
21236
21272
|
location?: AddressLocation$1;
|
|
21273
|
+
/** country full-name */
|
|
21274
|
+
countryFullname?: string | null;
|
|
21275
|
+
/** multi-level subdivisions from top to bottom */
|
|
21276
|
+
subdivisions?: Subdivision$1[];
|
|
21237
21277
|
}
|
|
21238
21278
|
/** @oneof */
|
|
21239
21279
|
interface AddressStreetOneOf$1 {
|
|
@@ -21985,8 +22025,12 @@ interface CommonStreetAddressNonNullableFields$1 {
|
|
|
21985
22025
|
name: string;
|
|
21986
22026
|
apt: string;
|
|
21987
22027
|
}
|
|
22028
|
+
interface CommonSubdivisionNonNullableFields$1 {
|
|
22029
|
+
name: string;
|
|
22030
|
+
}
|
|
21988
22031
|
interface CommonAddressNonNullableFields$1 {
|
|
21989
22032
|
streetAddress?: CommonStreetAddressNonNullableFields$1;
|
|
22033
|
+
subdivisions: CommonSubdivisionNonNullableFields$1[];
|
|
21990
22034
|
}
|
|
21991
22035
|
interface LocationNonNullableFields$1 {
|
|
21992
22036
|
type: LocationType$1;
|
|
@@ -24014,6 +24058,10 @@ interface Address extends AddressStreetOneOf {
|
|
|
24014
24058
|
formatted?: string | null;
|
|
24015
24059
|
/** coordinates of the physical address */
|
|
24016
24060
|
location?: AddressLocation;
|
|
24061
|
+
/** country full-name */
|
|
24062
|
+
countryFullname?: string | null;
|
|
24063
|
+
/** multi-level subdivisions from top to bottom */
|
|
24064
|
+
subdivisions?: Subdivision[];
|
|
24017
24065
|
}
|
|
24018
24066
|
/** @oneof */
|
|
24019
24067
|
interface AddressStreetOneOf {
|
|
@@ -24745,11 +24793,11 @@ interface Tag {
|
|
|
24745
24793
|
*/
|
|
24746
24794
|
type?: string;
|
|
24747
24795
|
/**
|
|
24748
|
-
* A `{
|
|
24749
|
-
* For example: `{
|
|
24796
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
24797
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
24750
24798
|
*/
|
|
24751
24799
|
props?: Record<string, any> | null;
|
|
24752
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
24800
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
24753
24801
|
meta?: Record<string, any> | null;
|
|
24754
24802
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
24755
24803
|
children?: string;
|
|
@@ -25084,7 +25132,9 @@ declare enum Namespace {
|
|
|
25084
25132
|
*/
|
|
25085
25133
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
25086
25134
|
/** Codux Headless Sites */
|
|
25087
|
-
CODUX = "CODUX"
|
|
25135
|
+
CODUX = "CODUX",
|
|
25136
|
+
/** Bobb - AI Design Creator. */
|
|
25137
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
25088
25138
|
}
|
|
25089
25139
|
/** Site transferred to another user. */
|
|
25090
25140
|
interface SiteTransferred {
|
|
@@ -25215,8 +25265,12 @@ interface CommonStreetAddressNonNullableFields {
|
|
|
25215
25265
|
name: string;
|
|
25216
25266
|
apt: string;
|
|
25217
25267
|
}
|
|
25268
|
+
interface CommonSubdivisionNonNullableFields {
|
|
25269
|
+
name: string;
|
|
25270
|
+
}
|
|
25218
25271
|
interface CommonAddressNonNullableFields {
|
|
25219
25272
|
streetAddress?: CommonStreetAddressNonNullableFields;
|
|
25273
|
+
subdivisions: CommonSubdivisionNonNullableFields[];
|
|
25220
25274
|
}
|
|
25221
25275
|
interface LocationNonNullableFields {
|
|
25222
25276
|
type: LocationType;
|
|
@@ -1778,8 +1778,12 @@ interface StreetAddressNonNullableFields$3 {
|
|
|
1778
1778
|
name: string;
|
|
1779
1779
|
apt: string;
|
|
1780
1780
|
}
|
|
1781
|
+
interface SubdivisionNonNullableFields$3 {
|
|
1782
|
+
name: string;
|
|
1783
|
+
}
|
|
1781
1784
|
interface AddressNonNullableFields$3 {
|
|
1782
1785
|
streetAddress?: StreetAddressNonNullableFields$3;
|
|
1786
|
+
subdivisions: SubdivisionNonNullableFields$3[];
|
|
1783
1787
|
}
|
|
1784
1788
|
interface FormattedAddressNonNullableFields$4 {
|
|
1785
1789
|
formatted: string;
|
|
@@ -2142,9 +2146,7 @@ declare enum EmailNotificationType {
|
|
|
2142
2146
|
/** Triggered when resending ticket to ticket holder. */
|
|
2143
2147
|
EMAIL_TICKET_CONFIRMATION = "EMAIL_TICKET_CONFIRMATION",
|
|
2144
2148
|
/** Triggered when sending invoice. Currently only `enabled` flag update is supported. */
|
|
2145
|
-
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
2146
|
-
/** Triggered when order confirmation sending is delayed. Tickets are accessible via link. */
|
|
2147
|
-
EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK = "EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK"
|
|
2149
|
+
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
2148
2150
|
}
|
|
2149
2151
|
interface EmailTemplate {
|
|
2150
2152
|
/** Email subject. */
|
|
@@ -2574,6 +2576,10 @@ interface Address$9 extends AddressStreetOneOf$9 {
|
|
|
2574
2576
|
formatted?: string | null;
|
|
2575
2577
|
/** coordinates of the physical address */
|
|
2576
2578
|
location?: AddressLocation$9;
|
|
2579
|
+
/** country full-name */
|
|
2580
|
+
countryFullname?: string | null;
|
|
2581
|
+
/** multi-level subdivisions from top to bottom */
|
|
2582
|
+
subdivisions?: Subdivision$9[];
|
|
2577
2583
|
}
|
|
2578
2584
|
/** @oneof */
|
|
2579
2585
|
interface AddressStreetOneOf$9 {
|
|
@@ -3290,11 +3296,11 @@ interface Tag$4 {
|
|
|
3290
3296
|
*/
|
|
3291
3297
|
type?: string;
|
|
3292
3298
|
/**
|
|
3293
|
-
* A `{
|
|
3294
|
-
* For example: `{
|
|
3299
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
3300
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
3295
3301
|
*/
|
|
3296
3302
|
props?: Record<string, any> | null;
|
|
3297
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
3303
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
3298
3304
|
meta?: Record<string, any> | null;
|
|
3299
3305
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
3300
3306
|
children?: string;
|
|
@@ -5304,11 +5310,6 @@ interface GetStaffMemberRequest {
|
|
|
5304
5310
|
fieldsets?: Fieldset[];
|
|
5305
5311
|
}
|
|
5306
5312
|
declare enum Fieldset {
|
|
5307
|
-
/**
|
|
5308
|
-
* Includes join link.
|
|
5309
|
-
* Deprecated, use LOGIN_LINK
|
|
5310
|
-
*/
|
|
5311
|
-
JOIN_LINK = "JOIN_LINK",
|
|
5312
5313
|
/** Includes login link. */
|
|
5313
5314
|
LOGIN_LINK = "LOGIN_LINK"
|
|
5314
5315
|
}
|
|
@@ -7266,6 +7267,10 @@ interface Address$8 extends AddressStreetOneOf$8 {
|
|
|
7266
7267
|
formatted?: string | null;
|
|
7267
7268
|
/** coordinates of the physical address */
|
|
7268
7269
|
location?: AddressLocation$8;
|
|
7270
|
+
/** country full-name */
|
|
7271
|
+
countryFullname?: string | null;
|
|
7272
|
+
/** multi-level subdivisions from top to bottom */
|
|
7273
|
+
subdivisions?: Subdivision$8[];
|
|
7269
7274
|
}
|
|
7270
7275
|
/** @oneof */
|
|
7271
7276
|
interface AddressStreetOneOf$8 {
|
|
@@ -7756,11 +7761,11 @@ interface Tag$3 {
|
|
|
7756
7761
|
*/
|
|
7757
7762
|
type?: string;
|
|
7758
7763
|
/**
|
|
7759
|
-
* A `{
|
|
7760
|
-
* For example: `{
|
|
7764
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
7765
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
7761
7766
|
*/
|
|
7762
7767
|
props?: Record<string, any> | null;
|
|
7763
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
7768
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
7764
7769
|
meta?: Record<string, any> | null;
|
|
7765
7770
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
7766
7771
|
children?: string;
|
|
@@ -9881,8 +9886,12 @@ interface StreetAddressNonNullableFields$2 {
|
|
|
9881
9886
|
name: string;
|
|
9882
9887
|
apt: string;
|
|
9883
9888
|
}
|
|
9889
|
+
interface SubdivisionNonNullableFields$2 {
|
|
9890
|
+
name: string;
|
|
9891
|
+
}
|
|
9884
9892
|
interface AddressNonNullableFields$2 {
|
|
9885
9893
|
streetAddress?: StreetAddressNonNullableFields$2;
|
|
9894
|
+
subdivisions: SubdivisionNonNullableFields$2[];
|
|
9886
9895
|
}
|
|
9887
9896
|
interface FormattedAddressNonNullableFields$3 {
|
|
9888
9897
|
formatted: string;
|
|
@@ -12276,6 +12285,10 @@ interface Address$6 extends AddressStreetOneOf$6 {
|
|
|
12276
12285
|
formatted?: string | null;
|
|
12277
12286
|
/** coordinates of the physical address */
|
|
12278
12287
|
location?: AddressLocation$6;
|
|
12288
|
+
/** country full-name */
|
|
12289
|
+
countryFullname?: string | null;
|
|
12290
|
+
/** multi-level subdivisions from top to bottom */
|
|
12291
|
+
subdivisions?: Subdivision$6[];
|
|
12279
12292
|
}
|
|
12280
12293
|
/** @oneof */
|
|
12281
12294
|
interface AddressStreetOneOf$6 {
|
|
@@ -12409,6 +12422,12 @@ interface GetOrCreateRichContentResponse {
|
|
|
12409
12422
|
/** The RichContent */
|
|
12410
12423
|
richContent?: RichContent;
|
|
12411
12424
|
}
|
|
12425
|
+
interface CountRichContentItemsRequest {
|
|
12426
|
+
filter?: Record<string, any> | null;
|
|
12427
|
+
}
|
|
12428
|
+
interface CountRichContentItemsResponse {
|
|
12429
|
+
count?: number;
|
|
12430
|
+
}
|
|
12412
12431
|
interface DomainEvent$4 extends DomainEventBodyOneOf$4 {
|
|
12413
12432
|
createdEvent?: EntityCreatedEvent$4;
|
|
12414
12433
|
updatedEvent?: EntityUpdatedEvent$4;
|
|
@@ -13081,6 +13100,8 @@ type index_d$7_CodeBlockData = CodeBlockData;
|
|
|
13081
13100
|
type index_d$7_CollapsibleListData = CollapsibleListData;
|
|
13082
13101
|
type index_d$7_ColorData = ColorData;
|
|
13083
13102
|
type index_d$7_Colors = Colors;
|
|
13103
|
+
type index_d$7_CountRichContentItemsRequest = CountRichContentItemsRequest;
|
|
13104
|
+
type index_d$7_CountRichContentItemsResponse = CountRichContentItemsResponse;
|
|
13084
13105
|
type index_d$7_CreateRichContentRequest = CreateRichContentRequest;
|
|
13085
13106
|
type index_d$7_CreateRichContentResponse = CreateRichContentResponse;
|
|
13086
13107
|
type index_d$7_CreateRichContentResponseNonNullableFields = CreateRichContentResponseNonNullableFields;
|
|
@@ -13245,7 +13266,7 @@ declare const index_d$7_queryRichContent: typeof queryRichContent;
|
|
|
13245
13266
|
declare const index_d$7_queryRichContents: typeof queryRichContents;
|
|
13246
13267
|
declare const index_d$7_updateRichContent: typeof updateRichContent;
|
|
13247
13268
|
declare namespace index_d$7 {
|
|
13248
|
-
export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, index_d$7_Alignment as Alignment, type index_d$7_AnchorData as AnchorData, type index_d$7_AppEmbedData as AppEmbedData, type index_d$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$7_AppType as AppType, type index_d$7_AudioData as AudioData, type index_d$7_Background as Background, type index_d$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$7_BackgroundType as BackgroundType, type BaseEventMetadata$7 as BaseEventMetadata, type index_d$7_BlockquoteData as BlockquoteData, type index_d$7_BookingData as BookingData, type index_d$7_Border as Border, type index_d$7_BorderColors as BorderColors, type index_d$7_BulletedListData as BulletedListData, type index_d$7_ButtonData as ButtonData, type index_d$7_CaptionData as CaptionData, type index_d$7_CellStyle as CellStyle, type index_d$7_CodeBlockData as CodeBlockData, type index_d$7_CollapsibleListData as CollapsibleListData, type index_d$7_ColorData as ColorData, type index_d$7_Colors as Colors, type index_d$7_CreateRichContentRequest as CreateRichContentRequest, type index_d$7_CreateRichContentResponse as CreateRichContentResponse, type index_d$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, index_d$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$7_Decoration as Decoration, type index_d$7_DecorationDataOneOf as DecorationDataOneOf, index_d$7_DecorationType as DecorationType, type index_d$7_DeleteRichContentRequest as DeleteRichContentRequest, type index_d$7_DeleteRichContentResponse as DeleteRichContentResponse, type index_d$7_Design as Design, type index_d$7_Dimensions as Dimensions, index_d$7_Direction as Direction, type index_d$7_DividerData as DividerData, type index_d$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type index_d$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type index_d$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$4 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type index_d$7_FileData as FileData, type index_d$7_FileSource as FileSource, type index_d$7_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type index_d$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type index_d$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type index_d$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type index_d$7_FontSizeData as FontSizeData, index_d$7_FontType as FontType, type index_d$7_GIF as GIF, type index_d$7_GIFData as GIFData, type index_d$7_GalleryData as GalleryData, type index_d$7_GalleryOptions as GalleryOptions, type index_d$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type index_d$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type index_d$7_GetRichContentRequest as GetRichContentRequest, type index_d$7_GetRichContentResponse as GetRichContentResponse, type index_d$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type index_d$7_Gradient as Gradient, type index_d$7_HTMLData as HTMLData, type index_d$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$7_HeadingData as HeadingData, type index_d$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type index_d$7_Image as Image, type index_d$7_ImageData as ImageData, index_d$7_InitialExpandedItems as InitialExpandedItems, type index_d$7_Item as Item, type index_d$7_ItemDataOneOf as ItemDataOneOf, type index_d$7_ItemStyle as ItemStyle, type index_d$7_Layout as Layout, index_d$7_LayoutType as LayoutType, index_d$7_LineStyle as LineStyle, type index_d$7_Link as Link, type index_d$7_LinkData as LinkData, type index_d$7_LinkDataOneOf as LinkDataOneOf, type index_d$7_LinkPreviewData as LinkPreviewData, type index_d$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type index_d$7_MapData as MapData, type index_d$7_MapSettings as MapSettings, index_d$7_MapType as MapType, type index_d$7_Media as Media, type index_d$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type index_d$7_Metadata as Metadata, type index_d$7_Node as Node, type index_d$7_NodeDataOneOf as NodeDataOneOf, type index_d$7_NodeStyle as NodeStyle, index_d$7_NodeType as NodeType, index_d$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type index_d$7_Oembed as Oembed, type index_d$7_Option as Option, type index_d$7_OptionDesign as OptionDesign, type index_d$7_OptionLayout as OptionLayout, type index_d$7_OrderedListData as OrderedListData, index_d$7_Orientation as Orientation, type index_d$7_PDFSettings as PDFSettings, type index_d$7_ParagraphData as ParagraphData, type index_d$7_Permissions as Permissions, type index_d$7_PlaybackOptions as PlaybackOptions, type index_d$7_PluginContainerData as PluginContainerData, index_d$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$7_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$7_Poll as Poll, type index_d$7_PollData as PollData, type index_d$7_PollDataLayout as PollDataLayout, type index_d$7_PollDesign as PollDesign, type index_d$7_PollLayout as PollLayout, index_d$7_PollLayoutDirection as PollLayoutDirection, index_d$7_PollLayoutType as PollLayoutType, type index_d$7_QueryRichContentRequest as QueryRichContentRequest, type index_d$7_QueryRichContentResponse as QueryRichContentResponse, type index_d$7_QueryRichContentResponseNonNullableFields as QueryRichContentResponseNonNullableFields, type index_d$7_QueryRichContentsOptions as QueryRichContentsOptions, type index_d$7_QueryRichContentsRequest as QueryRichContentsRequest, type index_d$7_QueryRichContentsResponse as QueryRichContentsResponse, type index_d$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type index_d$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type index_d$7_RichContent as RichContent, type index_d$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type index_d$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type index_d$7_RichContentNonNullableFields as RichContentNonNullableFields, type index_d$7_RichContentQueryBuilder as RichContentQueryBuilder, type index_d$7_RichContentQueryResult as RichContentQueryResult, type index_d$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, index_d$7_Source as Source, type index_d$7_Spoiler as Spoiler, type index_d$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type index_d$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type index_d$7_TableCellData as TableCellData, type index_d$7_TableData as TableData, index_d$7_Target as Target, index_d$7_TextAlignment as TextAlignment, type index_d$7_TextData as TextData, type index_d$7_TextNodeStyle as TextNodeStyle, type index_d$7_TextStyle as TextStyle, type index_d$7_Thumbnails as Thumbnails, index_d$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type index_d$7_UpdateRichContent as UpdateRichContent, type index_d$7_UpdateRichContentRequest as UpdateRichContentRequest, type index_d$7_UpdateRichContentResponse as UpdateRichContentResponse, type index_d$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type index_d$7_V1RichContent as V1RichContent, index_d$7_VerticalAlignment as VerticalAlignment, type index_d$7_Video as Video, type index_d$7_VideoData as VideoData, index_d$7_ViewMode as ViewMode, index_d$7_ViewRole as ViewRole, index_d$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, index_d$7_Width as Width, index_d$7_WidthType as WidthType, type index_d$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type index_d$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type index_d$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, index_d$7_createRichContent as createRichContent, index_d$7_deleteRichContent as deleteRichContent, index_d$7_findRichContentBySlug as findRichContentBySlug, index_d$7_getRichContent as getRichContent, index_d$7_onRichContentCreated as onRichContentCreated, index_d$7_onRichContentDeleted as onRichContentDeleted, index_d$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, index_d$7_queryRichContent as queryRichContent, index_d$7_queryRichContents as queryRichContents, index_d$7_updateRichContent as updateRichContent };
|
|
13269
|
+
export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, index_d$7_Alignment as Alignment, type index_d$7_AnchorData as AnchorData, type index_d$7_AppEmbedData as AppEmbedData, type index_d$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$7_AppType as AppType, type index_d$7_AudioData as AudioData, type index_d$7_Background as Background, type index_d$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$7_BackgroundType as BackgroundType, type BaseEventMetadata$7 as BaseEventMetadata, type index_d$7_BlockquoteData as BlockquoteData, type index_d$7_BookingData as BookingData, type index_d$7_Border as Border, type index_d$7_BorderColors as BorderColors, type index_d$7_BulletedListData as BulletedListData, type index_d$7_ButtonData as ButtonData, type index_d$7_CaptionData as CaptionData, type index_d$7_CellStyle as CellStyle, type index_d$7_CodeBlockData as CodeBlockData, type index_d$7_CollapsibleListData as CollapsibleListData, type index_d$7_ColorData as ColorData, type index_d$7_Colors as Colors, type index_d$7_CountRichContentItemsRequest as CountRichContentItemsRequest, type index_d$7_CountRichContentItemsResponse as CountRichContentItemsResponse, type index_d$7_CreateRichContentRequest as CreateRichContentRequest, type index_d$7_CreateRichContentResponse as CreateRichContentResponse, type index_d$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, index_d$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$7_Decoration as Decoration, type index_d$7_DecorationDataOneOf as DecorationDataOneOf, index_d$7_DecorationType as DecorationType, type index_d$7_DeleteRichContentRequest as DeleteRichContentRequest, type index_d$7_DeleteRichContentResponse as DeleteRichContentResponse, type index_d$7_Design as Design, type index_d$7_Dimensions as Dimensions, index_d$7_Direction as Direction, type index_d$7_DividerData as DividerData, type index_d$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type index_d$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type index_d$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$4 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type index_d$7_FileData as FileData, type index_d$7_FileSource as FileSource, type index_d$7_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type index_d$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type index_d$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type index_d$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type index_d$7_FontSizeData as FontSizeData, index_d$7_FontType as FontType, type index_d$7_GIF as GIF, type index_d$7_GIFData as GIFData, type index_d$7_GalleryData as GalleryData, type index_d$7_GalleryOptions as GalleryOptions, type index_d$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type index_d$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type index_d$7_GetRichContentRequest as GetRichContentRequest, type index_d$7_GetRichContentResponse as GetRichContentResponse, type index_d$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type index_d$7_Gradient as Gradient, type index_d$7_HTMLData as HTMLData, type index_d$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$7_HeadingData as HeadingData, type index_d$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type index_d$7_Image as Image, type index_d$7_ImageData as ImageData, index_d$7_InitialExpandedItems as InitialExpandedItems, type index_d$7_Item as Item, type index_d$7_ItemDataOneOf as ItemDataOneOf, type index_d$7_ItemStyle as ItemStyle, type index_d$7_Layout as Layout, index_d$7_LayoutType as LayoutType, index_d$7_LineStyle as LineStyle, type index_d$7_Link as Link, type index_d$7_LinkData as LinkData, type index_d$7_LinkDataOneOf as LinkDataOneOf, type index_d$7_LinkPreviewData as LinkPreviewData, type index_d$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type index_d$7_MapData as MapData, type index_d$7_MapSettings as MapSettings, index_d$7_MapType as MapType, type index_d$7_Media as Media, type index_d$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type index_d$7_Metadata as Metadata, type index_d$7_Node as Node, type index_d$7_NodeDataOneOf as NodeDataOneOf, type index_d$7_NodeStyle as NodeStyle, index_d$7_NodeType as NodeType, index_d$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type index_d$7_Oembed as Oembed, type index_d$7_Option as Option, type index_d$7_OptionDesign as OptionDesign, type index_d$7_OptionLayout as OptionLayout, type index_d$7_OrderedListData as OrderedListData, index_d$7_Orientation as Orientation, type index_d$7_PDFSettings as PDFSettings, type index_d$7_ParagraphData as ParagraphData, type index_d$7_Permissions as Permissions, type index_d$7_PlaybackOptions as PlaybackOptions, type index_d$7_PluginContainerData as PluginContainerData, index_d$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$7_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$7_Poll as Poll, type index_d$7_PollData as PollData, type index_d$7_PollDataLayout as PollDataLayout, type index_d$7_PollDesign as PollDesign, type index_d$7_PollLayout as PollLayout, index_d$7_PollLayoutDirection as PollLayoutDirection, index_d$7_PollLayoutType as PollLayoutType, type index_d$7_QueryRichContentRequest as QueryRichContentRequest, type index_d$7_QueryRichContentResponse as QueryRichContentResponse, type index_d$7_QueryRichContentResponseNonNullableFields as QueryRichContentResponseNonNullableFields, type index_d$7_QueryRichContentsOptions as QueryRichContentsOptions, type index_d$7_QueryRichContentsRequest as QueryRichContentsRequest, type index_d$7_QueryRichContentsResponse as QueryRichContentsResponse, type index_d$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type index_d$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type index_d$7_RichContent as RichContent, type index_d$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type index_d$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type index_d$7_RichContentNonNullableFields as RichContentNonNullableFields, type index_d$7_RichContentQueryBuilder as RichContentQueryBuilder, type index_d$7_RichContentQueryResult as RichContentQueryResult, type index_d$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, index_d$7_Source as Source, type index_d$7_Spoiler as Spoiler, type index_d$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type index_d$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type index_d$7_TableCellData as TableCellData, type index_d$7_TableData as TableData, index_d$7_Target as Target, index_d$7_TextAlignment as TextAlignment, type index_d$7_TextData as TextData, type index_d$7_TextNodeStyle as TextNodeStyle, type index_d$7_TextStyle as TextStyle, type index_d$7_Thumbnails as Thumbnails, index_d$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type index_d$7_UpdateRichContent as UpdateRichContent, type index_d$7_UpdateRichContentRequest as UpdateRichContentRequest, type index_d$7_UpdateRichContentResponse as UpdateRichContentResponse, type index_d$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type index_d$7_V1RichContent as V1RichContent, index_d$7_VerticalAlignment as VerticalAlignment, type index_d$7_Video as Video, type index_d$7_VideoData as VideoData, index_d$7_ViewMode as ViewMode, index_d$7_ViewRole as ViewRole, index_d$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, index_d$7_Width as Width, index_d$7_WidthType as WidthType, type index_d$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type index_d$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type index_d$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, index_d$7_createRichContent as createRichContent, index_d$7_deleteRichContent as deleteRichContent, index_d$7_findRichContentBySlug as findRichContentBySlug, index_d$7_getRichContent as getRichContent, index_d$7_onRichContentCreated as onRichContentCreated, index_d$7_onRichContentDeleted as onRichContentDeleted, index_d$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, index_d$7_queryRichContent as queryRichContent, index_d$7_queryRichContents as queryRichContents, index_d$7_updateRichContent as updateRichContent };
|
|
13249
13270
|
}
|
|
13250
13271
|
|
|
13251
13272
|
interface RsvpRsvp {
|
|
@@ -13839,8 +13860,12 @@ interface StreetAddressNonNullableFields$1 {
|
|
|
13839
13860
|
name: string;
|
|
13840
13861
|
apt: string;
|
|
13841
13862
|
}
|
|
13863
|
+
interface SubdivisionNonNullableFields$1 {
|
|
13864
|
+
name: string;
|
|
13865
|
+
}
|
|
13842
13866
|
interface AddressNonNullableFields$1 {
|
|
13843
13867
|
streetAddress?: StreetAddressNonNullableFields$1;
|
|
13868
|
+
subdivisions: SubdivisionNonNullableFields$1[];
|
|
13844
13869
|
}
|
|
13845
13870
|
interface FormattedAddressNonNullableFields$2 {
|
|
13846
13871
|
formatted: string;
|
|
@@ -14813,8 +14838,12 @@ interface StreetAddressNonNullableFields {
|
|
|
14813
14838
|
name: string;
|
|
14814
14839
|
apt: string;
|
|
14815
14840
|
}
|
|
14841
|
+
interface SubdivisionNonNullableFields {
|
|
14842
|
+
name: string;
|
|
14843
|
+
}
|
|
14816
14844
|
interface AddressNonNullableFields {
|
|
14817
14845
|
streetAddress?: StreetAddressNonNullableFields;
|
|
14846
|
+
subdivisions: SubdivisionNonNullableFields[];
|
|
14818
14847
|
}
|
|
14819
14848
|
interface FormattedAddressNonNullableFields$1 {
|
|
14820
14849
|
formatted: string;
|
|
@@ -16355,6 +16384,10 @@ interface Address$3 extends AddressStreetOneOf$3 {
|
|
|
16355
16384
|
formatted?: string | null;
|
|
16356
16385
|
/** coordinates of the physical address */
|
|
16357
16386
|
location?: AddressLocation$3;
|
|
16387
|
+
/** country full-name */
|
|
16388
|
+
countryFullname?: string | null;
|
|
16389
|
+
/** multi-level subdivisions from top to bottom */
|
|
16390
|
+
subdivisions?: Subdivision$3[];
|
|
16358
16391
|
}
|
|
16359
16392
|
/** @oneof */
|
|
16360
16393
|
interface AddressStreetOneOf$3 {
|
|
@@ -17299,11 +17332,7 @@ declare enum ScalarType {
|
|
|
17299
17332
|
/** Minimum value. */
|
|
17300
17333
|
MIN = "MIN",
|
|
17301
17334
|
/** Maximum value. */
|
|
17302
|
-
MAX = "MAX"
|
|
17303
|
-
/** Sum of values. */
|
|
17304
|
-
SUM = "SUM",
|
|
17305
|
-
/** Average of values. */
|
|
17306
|
-
AVG = "AVG"
|
|
17335
|
+
MAX = "MAX"
|
|
17307
17336
|
}
|
|
17308
17337
|
interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
17309
17338
|
/**
|
|
@@ -18040,6 +18069,10 @@ interface Address$2 extends AddressStreetOneOf$2 {
|
|
|
18040
18069
|
formatted?: string | null;
|
|
18041
18070
|
/** coordinates of the physical address */
|
|
18042
18071
|
location?: AddressLocation$2;
|
|
18072
|
+
/** country full-name */
|
|
18073
|
+
countryFullname?: string | null;
|
|
18074
|
+
/** multi-level subdivisions from top to bottom */
|
|
18075
|
+
subdivisions?: Subdivision$2[];
|
|
18043
18076
|
}
|
|
18044
18077
|
/** @oneof */
|
|
18045
18078
|
interface AddressStreetOneOf$2 {
|
|
@@ -18750,11 +18783,11 @@ interface Tag$2 {
|
|
|
18750
18783
|
*/
|
|
18751
18784
|
type?: string;
|
|
18752
18785
|
/**
|
|
18753
|
-
* A `{
|
|
18754
|
-
* For example: `{
|
|
18786
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
18787
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
18755
18788
|
*/
|
|
18756
18789
|
props?: Record<string, any> | null;
|
|
18757
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
18790
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
18758
18791
|
meta?: Record<string, any> | null;
|
|
18759
18792
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
18760
18793
|
children?: string;
|
|
@@ -18974,8 +19007,12 @@ interface CommonStreetAddressNonNullableFields$2 {
|
|
|
18974
19007
|
name: string;
|
|
18975
19008
|
apt: string;
|
|
18976
19009
|
}
|
|
19010
|
+
interface CommonSubdivisionNonNullableFields$2 {
|
|
19011
|
+
name: string;
|
|
19012
|
+
}
|
|
18977
19013
|
interface CommonAddressNonNullableFields$2 {
|
|
18978
19014
|
streetAddress?: CommonStreetAddressNonNullableFields$2;
|
|
19015
|
+
subdivisions: CommonSubdivisionNonNullableFields$2[];
|
|
18979
19016
|
}
|
|
18980
19017
|
interface FormattedAddressNonNullableFields {
|
|
18981
19018
|
formatted: string;
|
|
@@ -20163,8 +20200,8 @@ interface TaxSettings {
|
|
|
20163
20200
|
/**
|
|
20164
20201
|
* Tax application settings:
|
|
20165
20202
|
*
|
|
20166
|
-
* - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75.
|
|
20167
|
-
* - `ADDED_AT_CHECKOUT`: Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total.
|
|
20203
|
+
* - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket service fee of $0.25 is deducted from the price and you'll get $9.75.
|
|
20204
|
+
* - `ADDED_AT_CHECKOUT`: Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a ticket service fee of $0.25 and pays $10.25 in total.
|
|
20168
20205
|
*/
|
|
20169
20206
|
type?: TaxType$1;
|
|
20170
20207
|
/** Tax name. */
|
|
@@ -20178,9 +20215,9 @@ interface TaxSettings {
|
|
|
20178
20215
|
declare enum TaxType$1 {
|
|
20179
20216
|
/** Unknown tax type. */
|
|
20180
20217
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
20181
|
-
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
20218
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket ticket service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
20182
20219
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
20183
|
-
/** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total. */
|
|
20220
|
+
/** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a ticket ticket service fee of $0.25 and pays $10.25 in total. */
|
|
20184
20221
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
20185
20222
|
}
|
|
20186
20223
|
interface ExternalRegistration {
|
|
@@ -20619,11 +20656,11 @@ interface Tag$1 {
|
|
|
20619
20656
|
*/
|
|
20620
20657
|
type?: string;
|
|
20621
20658
|
/**
|
|
20622
|
-
* A `{
|
|
20623
|
-
* For example: `{
|
|
20659
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
20660
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
20624
20661
|
*/
|
|
20625
20662
|
props?: Record<string, any> | null;
|
|
20626
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
20663
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
20627
20664
|
meta?: Record<string, any> | null;
|
|
20628
20665
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
20629
20666
|
children?: string;
|
|
@@ -20815,8 +20852,7 @@ declare enum RequestedFields {
|
|
|
20815
20852
|
/** Returns `agendaSettings`. */
|
|
20816
20853
|
AGENDA = "AGENDA",
|
|
20817
20854
|
/** Returns `categories`. */
|
|
20818
|
-
CATEGORIES = "CATEGORIES"
|
|
20819
|
-
CUSTOMIZABLE_TICKETS = "CUSTOMIZABLE_TICKETS"
|
|
20855
|
+
CATEGORIES = "CATEGORIES"
|
|
20820
20856
|
}
|
|
20821
20857
|
interface CreateEventResponse {
|
|
20822
20858
|
/** Created event. */
|
|
@@ -21234,6 +21270,10 @@ interface Address$1 extends AddressStreetOneOf$1 {
|
|
|
21234
21270
|
formatted?: string | null;
|
|
21235
21271
|
/** coordinates of the physical address */
|
|
21236
21272
|
location?: AddressLocation$1;
|
|
21273
|
+
/** country full-name */
|
|
21274
|
+
countryFullname?: string | null;
|
|
21275
|
+
/** multi-level subdivisions from top to bottom */
|
|
21276
|
+
subdivisions?: Subdivision$1[];
|
|
21237
21277
|
}
|
|
21238
21278
|
/** @oneof */
|
|
21239
21279
|
interface AddressStreetOneOf$1 {
|
|
@@ -21985,8 +22025,12 @@ interface CommonStreetAddressNonNullableFields$1 {
|
|
|
21985
22025
|
name: string;
|
|
21986
22026
|
apt: string;
|
|
21987
22027
|
}
|
|
22028
|
+
interface CommonSubdivisionNonNullableFields$1 {
|
|
22029
|
+
name: string;
|
|
22030
|
+
}
|
|
21988
22031
|
interface CommonAddressNonNullableFields$1 {
|
|
21989
22032
|
streetAddress?: CommonStreetAddressNonNullableFields$1;
|
|
22033
|
+
subdivisions: CommonSubdivisionNonNullableFields$1[];
|
|
21990
22034
|
}
|
|
21991
22035
|
interface LocationNonNullableFields$1 {
|
|
21992
22036
|
type: LocationType$1;
|
|
@@ -24014,6 +24058,10 @@ interface Address extends AddressStreetOneOf {
|
|
|
24014
24058
|
formatted?: string | null;
|
|
24015
24059
|
/** coordinates of the physical address */
|
|
24016
24060
|
location?: AddressLocation;
|
|
24061
|
+
/** country full-name */
|
|
24062
|
+
countryFullname?: string | null;
|
|
24063
|
+
/** multi-level subdivisions from top to bottom */
|
|
24064
|
+
subdivisions?: Subdivision[];
|
|
24017
24065
|
}
|
|
24018
24066
|
/** @oneof */
|
|
24019
24067
|
interface AddressStreetOneOf {
|
|
@@ -24745,11 +24793,11 @@ interface Tag {
|
|
|
24745
24793
|
*/
|
|
24746
24794
|
type?: string;
|
|
24747
24795
|
/**
|
|
24748
|
-
* A `{
|
|
24749
|
-
* For example: `{
|
|
24796
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
24797
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
24750
24798
|
*/
|
|
24751
24799
|
props?: Record<string, any> | null;
|
|
24752
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
24800
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
24753
24801
|
meta?: Record<string, any> | null;
|
|
24754
24802
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
24755
24803
|
children?: string;
|
|
@@ -25084,7 +25132,9 @@ declare enum Namespace {
|
|
|
25084
25132
|
*/
|
|
25085
25133
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
25086
25134
|
/** Codux Headless Sites */
|
|
25087
|
-
CODUX = "CODUX"
|
|
25135
|
+
CODUX = "CODUX",
|
|
25136
|
+
/** Bobb - AI Design Creator. */
|
|
25137
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
25088
25138
|
}
|
|
25089
25139
|
/** Site transferred to another user. */
|
|
25090
25140
|
interface SiteTransferred {
|
|
@@ -25215,8 +25265,12 @@ interface CommonStreetAddressNonNullableFields {
|
|
|
25215
25265
|
name: string;
|
|
25216
25266
|
apt: string;
|
|
25217
25267
|
}
|
|
25268
|
+
interface CommonSubdivisionNonNullableFields {
|
|
25269
|
+
name: string;
|
|
25270
|
+
}
|
|
25218
25271
|
interface CommonAddressNonNullableFields {
|
|
25219
25272
|
streetAddress?: CommonStreetAddressNonNullableFields;
|
|
25273
|
+
subdivisions: CommonSubdivisionNonNullableFields[];
|
|
25220
25274
|
}
|
|
25221
25275
|
interface LocationNonNullableFields {
|
|
25222
25276
|
type: LocationType;
|
|
@@ -223,14 +223,14 @@ interface StreetAddressNonNullableFields$7 {
|
|
|
223
223
|
name: string;
|
|
224
224
|
apt: string;
|
|
225
225
|
}
|
|
226
|
-
interface SubdivisionNonNullableFields$
|
|
226
|
+
interface SubdivisionNonNullableFields$7 {
|
|
227
227
|
code: string;
|
|
228
228
|
name: string;
|
|
229
229
|
type: SubdivisionType$4;
|
|
230
230
|
}
|
|
231
231
|
interface AddressNonNullableFields$7 {
|
|
232
232
|
streetAddress?: StreetAddressNonNullableFields$7;
|
|
233
|
-
subdivisions: SubdivisionNonNullableFields$
|
|
233
|
+
subdivisions: SubdivisionNonNullableFields$7[];
|
|
234
234
|
}
|
|
235
235
|
interface FormattedAddressNonNullableFields$9 {
|
|
236
236
|
formatted: string;
|
|
@@ -470,8 +470,12 @@ interface StreetAddressNonNullableFields$6 {
|
|
|
470
470
|
name: string;
|
|
471
471
|
apt: string;
|
|
472
472
|
}
|
|
473
|
+
interface SubdivisionNonNullableFields$6 {
|
|
474
|
+
name: string;
|
|
475
|
+
}
|
|
473
476
|
interface AddressNonNullableFields$6 {
|
|
474
477
|
streetAddress?: StreetAddressNonNullableFields$6;
|
|
478
|
+
subdivisions: SubdivisionNonNullableFields$6[];
|
|
475
479
|
}
|
|
476
480
|
interface FormattedAddressNonNullableFields$8 {
|
|
477
481
|
formatted: string;
|
|
@@ -582,9 +586,7 @@ declare enum EmailNotificationType$1 {
|
|
|
582
586
|
/** Triggered when resending ticket to ticket holder. */
|
|
583
587
|
EMAIL_TICKET_CONFIRMATION = "EMAIL_TICKET_CONFIRMATION",
|
|
584
588
|
/** Triggered when sending invoice. Currently only `enabled` flag update is supported. */
|
|
585
|
-
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
586
|
-
/** Triggered when order confirmation sending is delayed. Tickets are accessible via link. */
|
|
587
|
-
EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK = "EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK"
|
|
589
|
+
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
588
590
|
}
|
|
589
591
|
interface EmailTemplate$1 {
|
|
590
592
|
/** Email subject. */
|
|
@@ -797,9 +799,7 @@ declare enum EmailNotificationType {
|
|
|
797
799
|
/** Triggered when resending ticket to ticket holder. */
|
|
798
800
|
EMAIL_TICKET_CONFIRMATION = "EMAIL_TICKET_CONFIRMATION",
|
|
799
801
|
/** Triggered when sending invoice. Currently only `enabled` flag update is supported. */
|
|
800
|
-
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
801
|
-
/** Triggered when order confirmation sending is delayed. Tickets are accessible via link. */
|
|
802
|
-
EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK = "EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK"
|
|
802
|
+
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
803
803
|
}
|
|
804
804
|
interface EmailTemplate {
|
|
805
805
|
/** Email subject. */
|
|
@@ -2042,11 +2042,6 @@ interface GetStaffMemberRequest$1 {
|
|
|
2042
2042
|
fieldsets?: Fieldset$1[];
|
|
2043
2043
|
}
|
|
2044
2044
|
declare enum Fieldset$1 {
|
|
2045
|
-
/**
|
|
2046
|
-
* Includes join link.
|
|
2047
|
-
* Deprecated, use LOGIN_LINK
|
|
2048
|
-
*/
|
|
2049
|
-
JOIN_LINK = "JOIN_LINK",
|
|
2050
2045
|
/** Includes login link. */
|
|
2051
2046
|
LOGIN_LINK = "LOGIN_LINK"
|
|
2052
2047
|
}
|
|
@@ -2344,11 +2339,6 @@ interface GetStaffMemberRequest {
|
|
|
2344
2339
|
fieldsets?: Fieldset[];
|
|
2345
2340
|
}
|
|
2346
2341
|
declare enum Fieldset {
|
|
2347
|
-
/**
|
|
2348
|
-
* Includes join link.
|
|
2349
|
-
* Deprecated, use LOGIN_LINK
|
|
2350
|
-
*/
|
|
2351
|
-
JOIN_LINK = "JOIN_LINK",
|
|
2352
2342
|
/** Includes login link. */
|
|
2353
2343
|
LOGIN_LINK = "LOGIN_LINK"
|
|
2354
2344
|
}
|
|
@@ -5522,14 +5512,14 @@ interface StreetAddressNonNullableFields$5 {
|
|
|
5522
5512
|
name: string;
|
|
5523
5513
|
apt: string;
|
|
5524
5514
|
}
|
|
5525
|
-
interface SubdivisionNonNullableFields$
|
|
5515
|
+
interface SubdivisionNonNullableFields$5 {
|
|
5526
5516
|
code: string;
|
|
5527
5517
|
name: string;
|
|
5528
5518
|
type: SubdivisionType$3;
|
|
5529
5519
|
}
|
|
5530
5520
|
interface AddressNonNullableFields$5 {
|
|
5531
5521
|
streetAddress?: StreetAddressNonNullableFields$5;
|
|
5532
|
-
subdivisions: SubdivisionNonNullableFields$
|
|
5522
|
+
subdivisions: SubdivisionNonNullableFields$5[];
|
|
5533
5523
|
}
|
|
5534
5524
|
interface FormattedAddressNonNullableFields$7 {
|
|
5535
5525
|
formatted: string;
|
|
@@ -6864,8 +6854,12 @@ interface StreetAddressNonNullableFields$4 {
|
|
|
6864
6854
|
name: string;
|
|
6865
6855
|
apt: string;
|
|
6866
6856
|
}
|
|
6857
|
+
interface SubdivisionNonNullableFields$4 {
|
|
6858
|
+
name: string;
|
|
6859
|
+
}
|
|
6867
6860
|
interface AddressNonNullableFields$4 {
|
|
6868
6861
|
streetAddress?: StreetAddressNonNullableFields$4;
|
|
6862
|
+
subdivisions: SubdivisionNonNullableFields$4[];
|
|
6869
6863
|
}
|
|
6870
6864
|
interface FormattedAddressNonNullableFields$6 {
|
|
6871
6865
|
formatted: string;
|
|
@@ -10905,14 +10899,14 @@ interface StreetAddressNonNullableFields$3 {
|
|
|
10905
10899
|
name: string;
|
|
10906
10900
|
apt: string;
|
|
10907
10901
|
}
|
|
10908
|
-
interface SubdivisionNonNullableFields$
|
|
10902
|
+
interface SubdivisionNonNullableFields$3 {
|
|
10909
10903
|
code: string;
|
|
10910
10904
|
name: string;
|
|
10911
10905
|
type: SubdivisionType$2;
|
|
10912
10906
|
}
|
|
10913
10907
|
interface AddressNonNullableFields$3 {
|
|
10914
10908
|
streetAddress?: StreetAddressNonNullableFields$3;
|
|
10915
|
-
subdivisions: SubdivisionNonNullableFields$
|
|
10909
|
+
subdivisions: SubdivisionNonNullableFields$3[];
|
|
10916
10910
|
}
|
|
10917
10911
|
interface FormattedAddressNonNullableFields$5 {
|
|
10918
10912
|
formatted: string;
|
|
@@ -11321,8 +11315,12 @@ interface StreetAddressNonNullableFields$2 {
|
|
|
11321
11315
|
name: string;
|
|
11322
11316
|
apt: string;
|
|
11323
11317
|
}
|
|
11318
|
+
interface SubdivisionNonNullableFields$2 {
|
|
11319
|
+
name: string;
|
|
11320
|
+
}
|
|
11324
11321
|
interface AddressNonNullableFields$2 {
|
|
11325
11322
|
streetAddress?: StreetAddressNonNullableFields$2;
|
|
11323
|
+
subdivisions: SubdivisionNonNullableFields$2[];
|
|
11326
11324
|
}
|
|
11327
11325
|
interface FormattedAddressNonNullableFields$4 {
|
|
11328
11326
|
formatted: string;
|
|
@@ -11730,14 +11728,14 @@ interface StreetAddressNonNullableFields$1 {
|
|
|
11730
11728
|
name: string;
|
|
11731
11729
|
apt: string;
|
|
11732
11730
|
}
|
|
11733
|
-
interface SubdivisionNonNullableFields {
|
|
11731
|
+
interface SubdivisionNonNullableFields$1 {
|
|
11734
11732
|
code: string;
|
|
11735
11733
|
name: string;
|
|
11736
11734
|
type: SubdivisionType$1;
|
|
11737
11735
|
}
|
|
11738
11736
|
interface AddressNonNullableFields$1 {
|
|
11739
11737
|
streetAddress?: StreetAddressNonNullableFields$1;
|
|
11740
|
-
subdivisions: SubdivisionNonNullableFields[];
|
|
11738
|
+
subdivisions: SubdivisionNonNullableFields$1[];
|
|
11741
11739
|
}
|
|
11742
11740
|
interface FormattedAddressNonNullableFields$3 {
|
|
11743
11741
|
formatted: string;
|
|
@@ -12121,8 +12119,12 @@ interface StreetAddressNonNullableFields {
|
|
|
12121
12119
|
name: string;
|
|
12122
12120
|
apt: string;
|
|
12123
12121
|
}
|
|
12122
|
+
interface SubdivisionNonNullableFields {
|
|
12123
|
+
name: string;
|
|
12124
|
+
}
|
|
12124
12125
|
interface AddressNonNullableFields {
|
|
12125
12126
|
streetAddress?: StreetAddressNonNullableFields;
|
|
12127
|
+
subdivisions: SubdivisionNonNullableFields[];
|
|
12126
12128
|
}
|
|
12127
12129
|
interface FormattedAddressNonNullableFields$2 {
|
|
12128
12130
|
formatted: string;
|
|
@@ -13934,11 +13936,7 @@ declare enum ScalarType$1 {
|
|
|
13934
13936
|
/** Minimum value. */
|
|
13935
13937
|
MIN = "MIN",
|
|
13936
13938
|
/** Maximum value. */
|
|
13937
|
-
MAX = "MAX"
|
|
13938
|
-
/** Sum of values. */
|
|
13939
|
-
SUM = "SUM",
|
|
13940
|
-
/** Average of values. */
|
|
13941
|
-
AVG = "AVG"
|
|
13939
|
+
MAX = "MAX"
|
|
13942
13940
|
}
|
|
13943
13941
|
interface ValueAggregation$1 extends ValueAggregationOptionsOneOf$1 {
|
|
13944
13942
|
/**
|
|
@@ -14513,14 +14511,14 @@ interface CommonStreetAddressNonNullableFields$5 {
|
|
|
14513
14511
|
name: string;
|
|
14514
14512
|
apt: string;
|
|
14515
14513
|
}
|
|
14516
|
-
interface CommonSubdivisionNonNullableFields$
|
|
14514
|
+
interface CommonSubdivisionNonNullableFields$5 {
|
|
14517
14515
|
code: string;
|
|
14518
14516
|
name: string;
|
|
14519
14517
|
type: SubdivisionType;
|
|
14520
14518
|
}
|
|
14521
14519
|
interface CommonAddressNonNullableFields$5 {
|
|
14522
14520
|
streetAddress?: CommonStreetAddressNonNullableFields$5;
|
|
14523
|
-
subdivisions: CommonSubdivisionNonNullableFields$
|
|
14521
|
+
subdivisions: CommonSubdivisionNonNullableFields$5[];
|
|
14524
14522
|
}
|
|
14525
14523
|
interface FormattedAddressNonNullableFields$1 {
|
|
14526
14524
|
formatted: string;
|
|
@@ -14936,11 +14934,7 @@ declare enum ScalarType {
|
|
|
14936
14934
|
/** Minimum value. */
|
|
14937
14935
|
MIN = "MIN",
|
|
14938
14936
|
/** Maximum value. */
|
|
14939
|
-
MAX = "MAX"
|
|
14940
|
-
/** Sum of values. */
|
|
14941
|
-
SUM = "SUM",
|
|
14942
|
-
/** Average of values. */
|
|
14943
|
-
AVG = "AVG"
|
|
14937
|
+
MAX = "MAX"
|
|
14944
14938
|
}
|
|
14945
14939
|
interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
14946
14940
|
/**
|
|
@@ -15515,8 +15509,12 @@ interface CommonStreetAddressNonNullableFields$4 {
|
|
|
15515
15509
|
name: string;
|
|
15516
15510
|
apt: string;
|
|
15517
15511
|
}
|
|
15512
|
+
interface CommonSubdivisionNonNullableFields$4 {
|
|
15513
|
+
name: string;
|
|
15514
|
+
}
|
|
15518
15515
|
interface CommonAddressNonNullableFields$4 {
|
|
15519
15516
|
streetAddress?: CommonStreetAddressNonNullableFields$4;
|
|
15517
|
+
subdivisions: CommonSubdivisionNonNullableFields$4[];
|
|
15520
15518
|
}
|
|
15521
15519
|
interface FormattedAddressNonNullableFields {
|
|
15522
15520
|
formatted: string;
|
|
@@ -16113,9 +16111,9 @@ interface TaxSettings$1 {
|
|
|
16113
16111
|
declare enum TaxType$1 {
|
|
16114
16112
|
/** Unknown tax type. */
|
|
16115
16113
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
16116
|
-
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
16114
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket ticket service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
16117
16115
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
16118
|
-
/** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total. */
|
|
16116
|
+
/** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a ticket ticket service fee of $0.25 and pays $10.25 in total. */
|
|
16119
16117
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
16120
16118
|
}
|
|
16121
16119
|
interface ExternalRegistration$1 {
|
|
@@ -16565,11 +16563,11 @@ interface Tag$1 {
|
|
|
16565
16563
|
*/
|
|
16566
16564
|
type?: string;
|
|
16567
16565
|
/**
|
|
16568
|
-
* A `{
|
|
16569
|
-
* For example: `{
|
|
16566
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
16567
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
16570
16568
|
*/
|
|
16571
16569
|
props?: Record<string, any> | null;
|
|
16572
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
16570
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
16573
16571
|
meta?: Record<string, any> | null;
|
|
16574
16572
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
16575
16573
|
children?: string;
|
|
@@ -16642,8 +16640,7 @@ declare enum RequestedFields$1 {
|
|
|
16642
16640
|
/** Returns `agendaSettings`. */
|
|
16643
16641
|
AGENDA = "AGENDA",
|
|
16644
16642
|
/** Returns `categories`. */
|
|
16645
|
-
CATEGORIES = "CATEGORIES"
|
|
16646
|
-
CUSTOMIZABLE_TICKETS = "CUSTOMIZABLE_TICKETS"
|
|
16643
|
+
CATEGORIES = "CATEGORIES"
|
|
16647
16644
|
}
|
|
16648
16645
|
interface CreateEventResponse$1 {
|
|
16649
16646
|
/** Created event. */
|
|
@@ -16835,14 +16832,14 @@ interface CommonStreetAddressNonNullableFields$3 {
|
|
|
16835
16832
|
name: string;
|
|
16836
16833
|
apt: string;
|
|
16837
16834
|
}
|
|
16838
|
-
interface CommonSubdivisionNonNullableFields$
|
|
16835
|
+
interface CommonSubdivisionNonNullableFields$3 {
|
|
16839
16836
|
code: string;
|
|
16840
16837
|
name: string;
|
|
16841
16838
|
type: SubdivisionSubdivisionType$1;
|
|
16842
16839
|
}
|
|
16843
16840
|
interface CommonAddressNonNullableFields$3 {
|
|
16844
16841
|
streetAddress?: CommonStreetAddressNonNullableFields$3;
|
|
16845
|
-
subdivisions: CommonSubdivisionNonNullableFields$
|
|
16842
|
+
subdivisions: CommonSubdivisionNonNullableFields$3[];
|
|
16846
16843
|
}
|
|
16847
16844
|
interface LocationNonNullableFields$3 {
|
|
16848
16845
|
type: LocationType$3;
|
|
@@ -17531,8 +17528,8 @@ interface TaxSettings {
|
|
|
17531
17528
|
/**
|
|
17532
17529
|
* Tax application settings:
|
|
17533
17530
|
*
|
|
17534
|
-
* - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75.
|
|
17535
|
-
* - `ADDED_AT_CHECKOUT`: Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total.
|
|
17531
|
+
* - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket service fee of $0.25 is deducted from the price and you'll get $9.75.
|
|
17532
|
+
* - `ADDED_AT_CHECKOUT`: Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a ticket service fee of $0.25 and pays $10.25 in total.
|
|
17536
17533
|
*/
|
|
17537
17534
|
type?: TaxType;
|
|
17538
17535
|
/** Tax name. */
|
|
@@ -17546,9 +17543,9 @@ interface TaxSettings {
|
|
|
17546
17543
|
declare enum TaxType {
|
|
17547
17544
|
/** Unknown tax type. */
|
|
17548
17545
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
17549
|
-
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
17546
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket ticket service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
17550
17547
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
17551
|
-
/** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total. */
|
|
17548
|
+
/** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a ticket ticket service fee of $0.25 and pays $10.25 in total. */
|
|
17552
17549
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
17553
17550
|
}
|
|
17554
17551
|
interface ExternalRegistration {
|
|
@@ -17983,11 +17980,11 @@ interface Tag {
|
|
|
17983
17980
|
*/
|
|
17984
17981
|
type?: string;
|
|
17985
17982
|
/**
|
|
17986
|
-
* A `{
|
|
17987
|
-
* For example: `{
|
|
17983
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
17984
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
17988
17985
|
*/
|
|
17989
17986
|
props?: Record<string, any> | null;
|
|
17990
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
17987
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
17991
17988
|
meta?: Record<string, any> | null;
|
|
17992
17989
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
17993
17990
|
children?: string;
|
|
@@ -18060,8 +18057,7 @@ declare enum RequestedFields {
|
|
|
18060
18057
|
/** Returns `agendaSettings`. */
|
|
18061
18058
|
AGENDA = "AGENDA",
|
|
18062
18059
|
/** Returns `categories`. */
|
|
18063
|
-
CATEGORIES = "CATEGORIES"
|
|
18064
|
-
CUSTOMIZABLE_TICKETS = "CUSTOMIZABLE_TICKETS"
|
|
18060
|
+
CATEGORIES = "CATEGORIES"
|
|
18065
18061
|
}
|
|
18066
18062
|
interface CreateEventResponse {
|
|
18067
18063
|
/** Created event. */
|
|
@@ -18253,8 +18249,12 @@ interface CommonStreetAddressNonNullableFields$2 {
|
|
|
18253
18249
|
name: string;
|
|
18254
18250
|
apt: string;
|
|
18255
18251
|
}
|
|
18252
|
+
interface CommonSubdivisionNonNullableFields$2 {
|
|
18253
|
+
name: string;
|
|
18254
|
+
}
|
|
18256
18255
|
interface CommonAddressNonNullableFields$2 {
|
|
18257
18256
|
streetAddress?: CommonStreetAddressNonNullableFields$2;
|
|
18257
|
+
subdivisions: CommonSubdivisionNonNullableFields$2[];
|
|
18258
18258
|
}
|
|
18259
18259
|
interface LocationNonNullableFields$2 {
|
|
18260
18260
|
type: LocationType$2;
|
|
@@ -19169,14 +19169,14 @@ interface CommonStreetAddressNonNullableFields$1 {
|
|
|
19169
19169
|
name: string;
|
|
19170
19170
|
apt: string;
|
|
19171
19171
|
}
|
|
19172
|
-
interface CommonSubdivisionNonNullableFields {
|
|
19172
|
+
interface CommonSubdivisionNonNullableFields$1 {
|
|
19173
19173
|
code: string;
|
|
19174
19174
|
name: string;
|
|
19175
19175
|
type: SubdivisionSubdivisionType;
|
|
19176
19176
|
}
|
|
19177
19177
|
interface CommonAddressNonNullableFields$1 {
|
|
19178
19178
|
streetAddress?: CommonStreetAddressNonNullableFields$1;
|
|
19179
|
-
subdivisions: CommonSubdivisionNonNullableFields[];
|
|
19179
|
+
subdivisions: CommonSubdivisionNonNullableFields$1[];
|
|
19180
19180
|
}
|
|
19181
19181
|
interface LocationNonNullableFields$1 {
|
|
19182
19182
|
type: LocationType$1;
|
|
@@ -19816,8 +19816,12 @@ interface CommonStreetAddressNonNullableFields {
|
|
|
19816
19816
|
name: string;
|
|
19817
19817
|
apt: string;
|
|
19818
19818
|
}
|
|
19819
|
+
interface CommonSubdivisionNonNullableFields {
|
|
19820
|
+
name: string;
|
|
19821
|
+
}
|
|
19819
19822
|
interface CommonAddressNonNullableFields {
|
|
19820
19823
|
streetAddress?: CommonStreetAddressNonNullableFields;
|
|
19824
|
+
subdivisions: CommonSubdivisionNonNullableFields[];
|
|
19821
19825
|
}
|
|
19822
19826
|
interface LocationNonNullableFields {
|
|
19823
19827
|
type: LocationType;
|