@wix/events 1.0.285 → 1.0.286

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/events",
3
- "version": "1.0.285",
3
+ "version": "1.0.286",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -20,7 +20,7 @@
20
20
  "dependencies": {
21
21
  "@wix/events_categories": "1.0.41",
22
22
  "@wix/events_forms": "1.0.43",
23
- "@wix/events_guests": "1.0.56",
23
+ "@wix/events_guests": "1.0.57",
24
24
  "@wix/events_notifications": "1.0.30",
25
25
  "@wix/events_orders": "1.0.45",
26
26
  "@wix/events_policies": "1.0.40",
@@ -58,5 +58,5 @@
58
58
  "fqdn": ""
59
59
  }
60
60
  },
61
- "falconPackageHash": "f2eda11326f810bac6d773e4e1465cc9dc320b2e2f8c464fef9ae0ac"
61
+ "falconPackageHash": "e76088e56e900b392dcabf72c63b9c89fe5913b35953abcb3f897c64"
62
62
  }
@@ -291,6 +291,227 @@ declare enum EventType$5 {
291
291
  */
292
292
  LAST_CONTACT_LEFT = "LAST_CONTACT_LEFT"
293
293
  }
294
+ interface GuestCheckedIn {
295
+ /** Event guest */
296
+ guest?: EventGuest$1;
297
+ /** Event details */
298
+ eventDetails?: EventDetails;
299
+ }
300
+ interface EventDetails {
301
+ /**
302
+ * Event title.
303
+ * @readonly
304
+ */
305
+ title?: string | null;
306
+ /**
307
+ * Event short description.
308
+ * @readonly
309
+ */
310
+ shortDescription?: string | null;
311
+ /**
312
+ * Event location.
313
+ * @readonly
314
+ */
315
+ location?: Location$7;
316
+ /**
317
+ * Event date and time settings.
318
+ * @readonly
319
+ */
320
+ dateAndTimeSettings?: DateAndTimeSettings$1;
321
+ /**
322
+ * Event page URL components.
323
+ * @readonly
324
+ */
325
+ eventPageUrl?: string;
326
+ /**
327
+ * Event status.
328
+ * @readonly
329
+ */
330
+ status?: Status$8;
331
+ }
332
+ interface Location$7 {
333
+ /** Location name. This value is displayed instead of the address when the location is defined as TBD by setting the `locationTbd` property to `true`. */
334
+ name?: string | null;
335
+ /**
336
+ * Location type. Possible values:
337
+ * - `VENUE`: Event is on-site at a specific physical location.
338
+ * - `ONLINE`: Event is online, such as a virtual video conference.
339
+ */
340
+ type?: LocationType$7;
341
+ /** Exact location address. */
342
+ address?: CommonAddress$3;
343
+ /** Whether the event location is TBD. */
344
+ locationTbd?: boolean | null;
345
+ }
346
+ declare enum LocationType$7 {
347
+ /** Default value. This value is unused. */
348
+ UNKNOWN_LOCATION = "UNKNOWN_LOCATION",
349
+ VENUE = "VENUE",
350
+ ONLINE = "ONLINE"
351
+ }
352
+ /** Physical address */
353
+ interface CommonAddress$3 extends CommonAddressStreetOneOf$3 {
354
+ /** Street address. */
355
+ streetAddress?: CommonStreetAddress$3;
356
+ /** Primary address information (street and building number). */
357
+ addressLine1?: string | null;
358
+ /** 2-letter country code in [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format. */
359
+ country?: string | null;
360
+ /** Code for a subdivision (such as state, prefecture, or province) in [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2). */
361
+ subdivision?: string | null;
362
+ /** City name. */
363
+ city?: string | null;
364
+ /** Zip or postal code. */
365
+ postalCode?: string | null;
366
+ /** Secondary address information (suite or apartment number and room number). */
367
+ addressLine2?: string | null;
368
+ }
369
+ /** @oneof */
370
+ interface CommonAddressStreetOneOf$3 {
371
+ /** Street address. */
372
+ streetAddress?: CommonStreetAddress$3;
373
+ /** Primary address information (street and building number). */
374
+ addressLine?: string | null;
375
+ }
376
+ interface CommonStreetAddress$3 {
377
+ /** Street number. */
378
+ number?: string;
379
+ /** Street name. */
380
+ name?: string;
381
+ }
382
+ interface CommonAddressLocation$3 {
383
+ /** Address latitude coordinates. */
384
+ latitude?: number | null;
385
+ /** Address longitude coordinates. */
386
+ longitude?: number | null;
387
+ }
388
+ interface CommonSubdivision$3 {
389
+ /** Short subdivision code. */
390
+ code?: string;
391
+ /** Subdivision full name. */
392
+ name?: string;
393
+ }
394
+ declare enum SubdivisionSubdivisionType$1 {
395
+ UNKNOWN_SUBDIVISION_TYPE = "UNKNOWN_SUBDIVISION_TYPE",
396
+ /** State */
397
+ ADMINISTRATIVE_AREA_LEVEL_1 = "ADMINISTRATIVE_AREA_LEVEL_1",
398
+ /** County */
399
+ ADMINISTRATIVE_AREA_LEVEL_2 = "ADMINISTRATIVE_AREA_LEVEL_2",
400
+ /** City/town */
401
+ ADMINISTRATIVE_AREA_LEVEL_3 = "ADMINISTRATIVE_AREA_LEVEL_3",
402
+ /** Neighborhood/quarter */
403
+ ADMINISTRATIVE_AREA_LEVEL_4 = "ADMINISTRATIVE_AREA_LEVEL_4",
404
+ /** Street/block */
405
+ ADMINISTRATIVE_AREA_LEVEL_5 = "ADMINISTRATIVE_AREA_LEVEL_5",
406
+ /** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
407
+ COUNTRY = "COUNTRY"
408
+ }
409
+ interface DateAndTimeSettings$1 {
410
+ /** Whether the event date and time are TBD. */
411
+ dateAndTimeTbd?: boolean | null;
412
+ /** Message that is displayed when time and date is TBD. */
413
+ dateAndTimeTbdMessage?: string | null;
414
+ /** Event start date. */
415
+ startDate?: Date;
416
+ /** Event end date. */
417
+ endDate?: Date;
418
+ /** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
419
+ timeZoneId?: string | null;
420
+ /** Whether the end date is hidden in the formatted date and time. */
421
+ hideEndDate?: boolean | null;
422
+ /** Whether the time zone is displayed in the formatted schedule. */
423
+ showTimeZone?: boolean | null;
424
+ /**
425
+ * Repeating event status. Possible values:
426
+ * - `ONE_TIME`: Event happens only once and can last multiple days.
427
+ * - `RECURRING`: A series of events that repeat.
428
+ * - `RECURRING_UPCOMING`: Next event in a schedule of recurring events.
429
+ * - `RECURRING_RECENTLY_ENDED`: Latest event that ended in a schedule of recurring events.
430
+ * - `RECURRING_RECENTLY_CANCELED`: Latest canceled event tin a schedule of recurring events..
431
+ * @readonly
432
+ */
433
+ recurrenceStatus?: RecurrenceStatusStatus$2;
434
+ /** Event repetitions. */
435
+ recurringEvents?: Recurrences$7;
436
+ /** Formatted date and time settings. */
437
+ formatted?: Formatted$1;
438
+ }
439
+ declare enum RecurrenceStatusStatus$2 {
440
+ /** Default value. This value is unused. */
441
+ UNKNOWN_STATUS = "UNKNOWN_STATUS",
442
+ /** Event happens only once. */
443
+ ONE_TIME = "ONE_TIME",
444
+ /** Event is repeating and has a list of scheduled repetitions. */
445
+ RECURRING = "RECURRING",
446
+ /** An upcoming event from the list of repetitions. */
447
+ RECURRING_UPCOMING = "RECURRING_UPCOMING",
448
+ /** Latest ended event from the list of repetitions. */
449
+ RECURRING_RECENTLY_ENDED = "RECURRING_RECENTLY_ENDED",
450
+ /** Latest cancelled event from the list of repetitions. */
451
+ RECURRING_RECENTLY_CANCELED = "RECURRING_RECENTLY_CANCELED"
452
+ }
453
+ interface Recurrences$7 {
454
+ /** Individual event dates. */
455
+ individualEventDates?: Occurrence$7[];
456
+ /**
457
+ * Recurring event category ID.
458
+ * @readonly
459
+ */
460
+ categoryId?: string | null;
461
+ }
462
+ interface Occurrence$7 {
463
+ /** Event start date. */
464
+ startDate?: Date;
465
+ /** Event end date. */
466
+ endDate?: Date;
467
+ /** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
468
+ timeZoneId?: string | null;
469
+ /** Whether the time zone is displayed in a formatted schedule. */
470
+ showTimeZone?: boolean;
471
+ }
472
+ interface Formatted$1 {
473
+ /**
474
+ * Formatted date and time representation. <br>
475
+ * Example of formatting when an event lasts multiple days and is in the UTC time zone: `September 1, 2015 at 10:20 AM – September 5, 2015 at 12:14 PM`. <br>
476
+ * Example of formatting when an event lasts 1 day and is in the GMT+2 time zone: `February 1, 2018, 12:10 – 2:50 PM GMT+2`.
477
+ * @readonly
478
+ */
479
+ dateAndTime?: string | null;
480
+ /**
481
+ * Formatted start date of the event. Empty for TBD schedules.
482
+ * @readonly
483
+ */
484
+ startDate?: string | null;
485
+ /**
486
+ * Formatted start time of the event. Empty for TBD schedules.
487
+ * @readonly
488
+ */
489
+ startTime?: string | null;
490
+ /**
491
+ * Formatted end date of the event. Empty for TBD schedules or when the end date is hidden.
492
+ * @readonly
493
+ */
494
+ endDate?: string | null;
495
+ /**
496
+ * Formatted end time of the event. Empty for TBD schedules or when the end date is hidden.
497
+ * @readonly
498
+ */
499
+ endTime?: string | null;
500
+ }
501
+ declare enum Status$8 {
502
+ /** Default value. This value is unused */
503
+ UNKNOWN_EVENT_STATUS = "UNKNOWN_EVENT_STATUS",
504
+ /** Event is public and scheduled to start */
505
+ UPCOMING = "UPCOMING",
506
+ /** Event has started */
507
+ STARTED = "STARTED",
508
+ /** Event has ended */
509
+ ENDED = "ENDED",
510
+ /** Event is canceled */
511
+ CANCELED = "CANCELED",
512
+ /** Event is not public */
513
+ DRAFT = "DRAFT"
514
+ }
294
515
  interface NotifyGuestAction$1 {
295
516
  /** Event guest. */
296
517
  guest?: EventGuest$1;
@@ -1160,6 +1381,10 @@ interface GuestDeletedEnvelope {
1160
1381
  entity: EventGuest$1;
1161
1382
  metadata: EventMetadata$6;
1162
1383
  }
1384
+ interface GuestCheckedInEnvelope {
1385
+ data: GuestCheckedIn;
1386
+ metadata: EventMetadata$6;
1387
+ }
1163
1388
  interface QueryEventGuestsOptions {
1164
1389
  /**
1165
1390
  * Predefined sets of fields to return.
@@ -1246,6 +1471,7 @@ interface QueryGuestsSignature {
1246
1471
  declare const onGuestCreated$1: EventDefinition<GuestCreatedEnvelope, "wix.events.guests.v1.guest_created">;
1247
1472
  declare const onGuestUpdated$1: EventDefinition<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
1248
1473
  declare const onGuestDeleted$1: EventDefinition<GuestDeletedEnvelope, "wix.events.guests.v1.guest_deleted">;
1474
+ declare const onGuestCheckedIn$1: EventDefinition<GuestCheckedInEnvelope, "wix.events.guests.v1.guest_guest_checked_in">;
1249
1475
 
1250
1476
  declare function createEventModule$b<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
1251
1477
 
@@ -1269,6 +1495,15 @@ type _publicOnGuestDeletedType = typeof onGuestDeleted$1;
1269
1495
  */
1270
1496
  declare const onGuestDeleted: ReturnType<typeof createEventModule$b<_publicOnGuestDeletedType>>;
1271
1497
 
1498
+ type _publicOnGuestCheckedInType = typeof onGuestCheckedIn$1;
1499
+ /**
1500
+ * Triggered when guest is checked in
1501
+ */
1502
+ declare const onGuestCheckedIn: ReturnType<typeof createEventModule$b<_publicOnGuestCheckedInType>>;
1503
+
1504
+ type context$f_EventDetails = EventDetails;
1505
+ type context$f_GuestCheckedIn = GuestCheckedIn;
1506
+ type context$f_GuestCheckedInEnvelope = GuestCheckedInEnvelope;
1272
1507
  type context$f_GuestCount = GuestCount;
1273
1508
  type context$f_GuestCreatedEnvelope = GuestCreatedEnvelope;
1274
1509
  type context$f_GuestDeletedEnvelope = GuestDeletedEnvelope;
@@ -1292,15 +1527,17 @@ type context$f_Task = Task;
1292
1527
  type context$f_TaskKey = TaskKey;
1293
1528
  type context$f_UpdateGuestRequest = UpdateGuestRequest;
1294
1529
  type context$f_UpdateGuestResponse = UpdateGuestResponse;
1530
+ type context$f__publicOnGuestCheckedInType = _publicOnGuestCheckedInType;
1295
1531
  type context$f__publicOnGuestCreatedType = _publicOnGuestCreatedType;
1296
1532
  type context$f__publicOnGuestDeletedType = _publicOnGuestDeletedType;
1297
1533
  type context$f__publicOnGuestUpdatedType = _publicOnGuestUpdatedType;
1534
+ declare const context$f_onGuestCheckedIn: typeof onGuestCheckedIn;
1298
1535
  declare const context$f_onGuestCreated: typeof onGuestCreated;
1299
1536
  declare const context$f_onGuestDeleted: typeof onGuestDeleted;
1300
1537
  declare const context$f_onGuestUpdated: typeof onGuestUpdated;
1301
1538
  declare const context$f_queryGuests: typeof queryGuests;
1302
1539
  declare namespace context$f {
1303
- export { type ActionEvent$9 as ActionEvent, type Address$a as Address, type AddressLocation$a as AddressLocation, type AddressStreetOneOf$a as AddressStreetOneOf, AttendanceStatus$1 as AttendanceStatus, type BaseEventMetadata$b as BaseEventMetadata, type CheckIn$4 as CheckIn, type ContactEventStatusUpdated$1 as ContactEventStatusUpdated, type CouponDiscount$2 as CouponDiscount, type CursorPaging$7 as CursorPaging, type Cursors$a as Cursors, type Discount$2 as Discount, type DiscountItem$2 as DiscountItem, type DiscountItemDiscountOneOf$2 as DiscountItemDiscountOneOf, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type EventDeleted$5 as EventDeleted, type EventGuest$1 as EventGuest, type EventGuests$1 as EventGuests, type EventMetadata$6 as EventMetadata, EventType$5 as EventType, type Fee$2 as Fee, FeeName$2 as FeeName, FeeType$3 as FeeType, type FormResponse$5 as FormResponse, type FormattedAddress$5 as FormattedAddress, type Guest$4 as Guest, type context$f_GuestCount as GuestCount, type GuestCountUpdate$1 as GuestCountUpdate, type GuestCountUpdated$1 as GuestCountUpdated, type context$f_GuestCreatedEnvelope as GuestCreatedEnvelope, type context$f_GuestDeletedEnvelope as GuestDeletedEnvelope, type GuestDetails$3 as GuestDetails, type context$f_GuestListPreview as GuestListPreview, GuestType$1 as GuestType, type context$f_GuestUpdatedEnvelope as GuestUpdatedEnvelope, type context$f_GuestsQueryBuilder as GuestsQueryBuilder, type context$f_GuestsQueryResult as GuestsQueryResult, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, type InputValue$5 as InputValue, type Invoice$2 as Invoice, type Item$3 as Item, type context$f_Language as Language, type context$f_ListGuestListPreviewsRequest as ListGuestListPreviewsRequest, type context$f_ListGuestListPreviewsResponse as ListGuestListPreviewsResponse, type MemberEventStatusUpdated$1 as MemberEventStatusUpdated, MemberEventStatusUpdatedEventType$1 as MemberEventStatusUpdatedEventType, type MessageEnvelope$d as MessageEnvelope, type Money$8 as Money, NotifyActionType$1 as NotifyActionType, type NotifyGuestAction$1 as NotifyGuestAction, type OnlineConferencingLogin$5 as OnlineConferencingLogin, type OrderConfirmed$2 as OrderConfirmed, type OrderDeleted$1 as OrderDeleted, OrderStatus$3 as OrderStatus, OrderType$1 as OrderType, type OrderUpdated$2 as OrderUpdated, type Paging$9 as Paging, type PagingMetadataV2$9 as PagingMetadataV2, type PaidPlanDiscount$2 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$2 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$2 as PercentDiscount, type context$f_QueryEventGuestsOptions as QueryEventGuestsOptions, type context$f_QueryEventGuestsRequest as QueryEventGuestsRequest, type context$f_QueryEventGuestsResponse as QueryEventGuestsResponse, type context$f_QueryEventGuestsResponseNonNullableFields as QueryEventGuestsResponseNonNullableFields, type QueryV2$8 as QueryV2, type QueryV2PagingMethodOneOf$8 as QueryV2PagingMethodOneOf, RequestedFields$3 as RequestedFields, context$f_RequestedFieldsEnumRequestedFields as RequestedFieldsEnumRequestedFields, type RestoreInfo$8 as RestoreInfo, type RsvpCreated$2 as RsvpCreated, type RsvpDeleted$1 as RsvpDeleted, RsvpStatus$3 as RsvpStatus, type RsvpUpdated$2 as RsvpUpdated, type context$f_SecondaryLanguagesRequest as SecondaryLanguagesRequest, type context$f_SecondaryLanguagesResponse as SecondaryLanguagesResponse, SortOrder$a as SortOrder, type Sorting$a as Sorting, type StandardDetails$5 as StandardDetails, type context$f_StreamEventGuestsRequest as StreamEventGuestsRequest, type StreetAddress$a as StreetAddress, type Subdivision$a as Subdivision, SubdivisionType$a as SubdivisionType, type context$f_Task as Task, type TaskContext$1 as TaskContext, type context$f_TaskKey as TaskKey, type Tax$2 as Tax, TaxType$6 as TaxType, type Ticket$3 as Ticket, type TicketDetails$3 as TicketDetails, type TicketGuestDetails$1 as TicketGuestDetails, type context$f_UpdateGuestRequest as UpdateGuestRequest, type context$f_UpdateGuestResponse as UpdateGuestResponse, WebhookIdentityType$d as WebhookIdentityType, type context$f__publicOnGuestCreatedType as _publicOnGuestCreatedType, type context$f__publicOnGuestDeletedType as _publicOnGuestDeletedType, type context$f__publicOnGuestUpdatedType as _publicOnGuestUpdatedType, context$f_onGuestCreated as onGuestCreated, context$f_onGuestDeleted as onGuestDeleted, context$f_onGuestUpdated as onGuestUpdated, onGuestCreated$1 as publicOnGuestCreated, onGuestDeleted$1 as publicOnGuestDeleted, onGuestUpdated$1 as publicOnGuestUpdated, context$f_queryGuests as queryGuests };
1540
+ export { type ActionEvent$9 as ActionEvent, type Address$a as Address, type AddressLocation$a as AddressLocation, type AddressStreetOneOf$a as AddressStreetOneOf, AttendanceStatus$1 as AttendanceStatus, type BaseEventMetadata$b as BaseEventMetadata, type CheckIn$4 as CheckIn, type CommonAddress$3 as CommonAddress, type CommonAddressLocation$3 as CommonAddressLocation, type CommonAddressStreetOneOf$3 as CommonAddressStreetOneOf, type CommonStreetAddress$3 as CommonStreetAddress, type CommonSubdivision$3 as CommonSubdivision, type ContactEventStatusUpdated$1 as ContactEventStatusUpdated, type CouponDiscount$2 as CouponDiscount, type CursorPaging$7 as CursorPaging, type Cursors$a as Cursors, type DateAndTimeSettings$1 as DateAndTimeSettings, type Discount$2 as Discount, type DiscountItem$2 as DiscountItem, type DiscountItemDiscountOneOf$2 as DiscountItemDiscountOneOf, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type EventDeleted$5 as EventDeleted, type context$f_EventDetails as EventDetails, type EventGuest$1 as EventGuest, type EventGuests$1 as EventGuests, type EventMetadata$6 as EventMetadata, EventType$5 as EventType, type Fee$2 as Fee, FeeName$2 as FeeName, FeeType$3 as FeeType, type FormResponse$5 as FormResponse, type Formatted$1 as Formatted, type FormattedAddress$5 as FormattedAddress, type Guest$4 as Guest, type context$f_GuestCheckedIn as GuestCheckedIn, type context$f_GuestCheckedInEnvelope as GuestCheckedInEnvelope, type context$f_GuestCount as GuestCount, type GuestCountUpdate$1 as GuestCountUpdate, type GuestCountUpdated$1 as GuestCountUpdated, type context$f_GuestCreatedEnvelope as GuestCreatedEnvelope, type context$f_GuestDeletedEnvelope as GuestDeletedEnvelope, type GuestDetails$3 as GuestDetails, type context$f_GuestListPreview as GuestListPreview, GuestType$1 as GuestType, type context$f_GuestUpdatedEnvelope as GuestUpdatedEnvelope, type context$f_GuestsQueryBuilder as GuestsQueryBuilder, type context$f_GuestsQueryResult as GuestsQueryResult, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, type InputValue$5 as InputValue, type Invoice$2 as Invoice, type Item$3 as Item, type context$f_Language as Language, type context$f_ListGuestListPreviewsRequest as ListGuestListPreviewsRequest, type context$f_ListGuestListPreviewsResponse as ListGuestListPreviewsResponse, type Location$7 as Location, LocationType$7 as LocationType, type MemberEventStatusUpdated$1 as MemberEventStatusUpdated, MemberEventStatusUpdatedEventType$1 as MemberEventStatusUpdatedEventType, type MessageEnvelope$d as MessageEnvelope, type Money$8 as Money, NotifyActionType$1 as NotifyActionType, type NotifyGuestAction$1 as NotifyGuestAction, type Occurrence$7 as Occurrence, type OnlineConferencingLogin$5 as OnlineConferencingLogin, type OrderConfirmed$2 as OrderConfirmed, type OrderDeleted$1 as OrderDeleted, OrderStatus$3 as OrderStatus, OrderType$1 as OrderType, type OrderUpdated$2 as OrderUpdated, type Paging$9 as Paging, type PagingMetadataV2$9 as PagingMetadataV2, type PaidPlanDiscount$2 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$2 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$2 as PercentDiscount, type context$f_QueryEventGuestsOptions as QueryEventGuestsOptions, type context$f_QueryEventGuestsRequest as QueryEventGuestsRequest, type context$f_QueryEventGuestsResponse as QueryEventGuestsResponse, type context$f_QueryEventGuestsResponseNonNullableFields as QueryEventGuestsResponseNonNullableFields, type QueryV2$8 as QueryV2, type QueryV2PagingMethodOneOf$8 as QueryV2PagingMethodOneOf, RecurrenceStatusStatus$2 as RecurrenceStatusStatus, type Recurrences$7 as Recurrences, RequestedFields$3 as RequestedFields, context$f_RequestedFieldsEnumRequestedFields as RequestedFieldsEnumRequestedFields, type RestoreInfo$8 as RestoreInfo, type RsvpCreated$2 as RsvpCreated, type RsvpDeleted$1 as RsvpDeleted, RsvpStatus$3 as RsvpStatus, type RsvpUpdated$2 as RsvpUpdated, type context$f_SecondaryLanguagesRequest as SecondaryLanguagesRequest, type context$f_SecondaryLanguagesResponse as SecondaryLanguagesResponse, SortOrder$a as SortOrder, type Sorting$a as Sorting, type StandardDetails$5 as StandardDetails, Status$8 as Status, type context$f_StreamEventGuestsRequest as StreamEventGuestsRequest, type StreetAddress$a as StreetAddress, type Subdivision$a as Subdivision, SubdivisionSubdivisionType$1 as SubdivisionSubdivisionType, SubdivisionType$a as SubdivisionType, type context$f_Task as Task, type TaskContext$1 as TaskContext, type context$f_TaskKey as TaskKey, type Tax$2 as Tax, TaxType$6 as TaxType, type Ticket$3 as Ticket, type TicketDetails$3 as TicketDetails, type TicketGuestDetails$1 as TicketGuestDetails, type context$f_UpdateGuestRequest as UpdateGuestRequest, type context$f_UpdateGuestResponse as UpdateGuestResponse, WebhookIdentityType$d as WebhookIdentityType, type context$f__publicOnGuestCheckedInType as _publicOnGuestCheckedInType, type context$f__publicOnGuestCreatedType as _publicOnGuestCreatedType, type context$f__publicOnGuestDeletedType as _publicOnGuestDeletedType, type context$f__publicOnGuestUpdatedType as _publicOnGuestUpdatedType, context$f_onGuestCheckedIn as onGuestCheckedIn, context$f_onGuestCreated as onGuestCreated, context$f_onGuestDeleted as onGuestDeleted, context$f_onGuestUpdated as onGuestUpdated, onGuestCheckedIn$1 as publicOnGuestCheckedIn, onGuestCreated$1 as publicOnGuestCreated, onGuestDeleted$1 as publicOnGuestDeleted, onGuestUpdated$1 as publicOnGuestUpdated, context$f_queryGuests as queryGuests };
1304
1541
  }
1305
1542
 
1306
1543
  interface NotificationConfig {
@@ -291,6 +291,227 @@ declare enum EventType$5 {
291
291
  */
292
292
  LAST_CONTACT_LEFT = "LAST_CONTACT_LEFT"
293
293
  }
294
+ interface GuestCheckedIn {
295
+ /** Event guest */
296
+ guest?: EventGuest$1;
297
+ /** Event details */
298
+ eventDetails?: EventDetails;
299
+ }
300
+ interface EventDetails {
301
+ /**
302
+ * Event title.
303
+ * @readonly
304
+ */
305
+ title?: string | null;
306
+ /**
307
+ * Event short description.
308
+ * @readonly
309
+ */
310
+ shortDescription?: string | null;
311
+ /**
312
+ * Event location.
313
+ * @readonly
314
+ */
315
+ location?: Location$7;
316
+ /**
317
+ * Event date and time settings.
318
+ * @readonly
319
+ */
320
+ dateAndTimeSettings?: DateAndTimeSettings$1;
321
+ /**
322
+ * Event page URL components.
323
+ * @readonly
324
+ */
325
+ eventPageUrl?: string;
326
+ /**
327
+ * Event status.
328
+ * @readonly
329
+ */
330
+ status?: Status$8;
331
+ }
332
+ interface Location$7 {
333
+ /** Location name. This value is displayed instead of the address when the location is defined as TBD by setting the `locationTbd` property to `true`. */
334
+ name?: string | null;
335
+ /**
336
+ * Location type. Possible values:
337
+ * - `VENUE`: Event is on-site at a specific physical location.
338
+ * - `ONLINE`: Event is online, such as a virtual video conference.
339
+ */
340
+ type?: LocationType$7;
341
+ /** Exact location address. */
342
+ address?: CommonAddress$3;
343
+ /** Whether the event location is TBD. */
344
+ locationTbd?: boolean | null;
345
+ }
346
+ declare enum LocationType$7 {
347
+ /** Default value. This value is unused. */
348
+ UNKNOWN_LOCATION = "UNKNOWN_LOCATION",
349
+ VENUE = "VENUE",
350
+ ONLINE = "ONLINE"
351
+ }
352
+ /** Physical address */
353
+ interface CommonAddress$3 extends CommonAddressStreetOneOf$3 {
354
+ /** Street address. */
355
+ streetAddress?: CommonStreetAddress$3;
356
+ /** Primary address information (street and building number). */
357
+ addressLine1?: string | null;
358
+ /** 2-letter country code in [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format. */
359
+ country?: string | null;
360
+ /** Code for a subdivision (such as state, prefecture, or province) in [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2). */
361
+ subdivision?: string | null;
362
+ /** City name. */
363
+ city?: string | null;
364
+ /** Zip or postal code. */
365
+ postalCode?: string | null;
366
+ /** Secondary address information (suite or apartment number and room number). */
367
+ addressLine2?: string | null;
368
+ }
369
+ /** @oneof */
370
+ interface CommonAddressStreetOneOf$3 {
371
+ /** Street address. */
372
+ streetAddress?: CommonStreetAddress$3;
373
+ /** Primary address information (street and building number). */
374
+ addressLine?: string | null;
375
+ }
376
+ interface CommonStreetAddress$3 {
377
+ /** Street number. */
378
+ number?: string;
379
+ /** Street name. */
380
+ name?: string;
381
+ }
382
+ interface CommonAddressLocation$3 {
383
+ /** Address latitude coordinates. */
384
+ latitude?: number | null;
385
+ /** Address longitude coordinates. */
386
+ longitude?: number | null;
387
+ }
388
+ interface CommonSubdivision$3 {
389
+ /** Short subdivision code. */
390
+ code?: string;
391
+ /** Subdivision full name. */
392
+ name?: string;
393
+ }
394
+ declare enum SubdivisionSubdivisionType$1 {
395
+ UNKNOWN_SUBDIVISION_TYPE = "UNKNOWN_SUBDIVISION_TYPE",
396
+ /** State */
397
+ ADMINISTRATIVE_AREA_LEVEL_1 = "ADMINISTRATIVE_AREA_LEVEL_1",
398
+ /** County */
399
+ ADMINISTRATIVE_AREA_LEVEL_2 = "ADMINISTRATIVE_AREA_LEVEL_2",
400
+ /** City/town */
401
+ ADMINISTRATIVE_AREA_LEVEL_3 = "ADMINISTRATIVE_AREA_LEVEL_3",
402
+ /** Neighborhood/quarter */
403
+ ADMINISTRATIVE_AREA_LEVEL_4 = "ADMINISTRATIVE_AREA_LEVEL_4",
404
+ /** Street/block */
405
+ ADMINISTRATIVE_AREA_LEVEL_5 = "ADMINISTRATIVE_AREA_LEVEL_5",
406
+ /** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
407
+ COUNTRY = "COUNTRY"
408
+ }
409
+ interface DateAndTimeSettings$1 {
410
+ /** Whether the event date and time are TBD. */
411
+ dateAndTimeTbd?: boolean | null;
412
+ /** Message that is displayed when time and date is TBD. */
413
+ dateAndTimeTbdMessage?: string | null;
414
+ /** Event start date. */
415
+ startDate?: Date;
416
+ /** Event end date. */
417
+ endDate?: Date;
418
+ /** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
419
+ timeZoneId?: string | null;
420
+ /** Whether the end date is hidden in the formatted date and time. */
421
+ hideEndDate?: boolean | null;
422
+ /** Whether the time zone is displayed in the formatted schedule. */
423
+ showTimeZone?: boolean | null;
424
+ /**
425
+ * Repeating event status. Possible values:
426
+ * - `ONE_TIME`: Event happens only once and can last multiple days.
427
+ * - `RECURRING`: A series of events that repeat.
428
+ * - `RECURRING_UPCOMING`: Next event in a schedule of recurring events.
429
+ * - `RECURRING_RECENTLY_ENDED`: Latest event that ended in a schedule of recurring events.
430
+ * - `RECURRING_RECENTLY_CANCELED`: Latest canceled event tin a schedule of recurring events..
431
+ * @readonly
432
+ */
433
+ recurrenceStatus?: RecurrenceStatusStatus$2;
434
+ /** Event repetitions. */
435
+ recurringEvents?: Recurrences$7;
436
+ /** Formatted date and time settings. */
437
+ formatted?: Formatted$1;
438
+ }
439
+ declare enum RecurrenceStatusStatus$2 {
440
+ /** Default value. This value is unused. */
441
+ UNKNOWN_STATUS = "UNKNOWN_STATUS",
442
+ /** Event happens only once. */
443
+ ONE_TIME = "ONE_TIME",
444
+ /** Event is repeating and has a list of scheduled repetitions. */
445
+ RECURRING = "RECURRING",
446
+ /** An upcoming event from the list of repetitions. */
447
+ RECURRING_UPCOMING = "RECURRING_UPCOMING",
448
+ /** Latest ended event from the list of repetitions. */
449
+ RECURRING_RECENTLY_ENDED = "RECURRING_RECENTLY_ENDED",
450
+ /** Latest cancelled event from the list of repetitions. */
451
+ RECURRING_RECENTLY_CANCELED = "RECURRING_RECENTLY_CANCELED"
452
+ }
453
+ interface Recurrences$7 {
454
+ /** Individual event dates. */
455
+ individualEventDates?: Occurrence$7[];
456
+ /**
457
+ * Recurring event category ID.
458
+ * @readonly
459
+ */
460
+ categoryId?: string | null;
461
+ }
462
+ interface Occurrence$7 {
463
+ /** Event start date. */
464
+ startDate?: Date;
465
+ /** Event end date. */
466
+ endDate?: Date;
467
+ /** Event time zone ID in the [TZ database](https://www.iana.org/time-zones) format. */
468
+ timeZoneId?: string | null;
469
+ /** Whether the time zone is displayed in a formatted schedule. */
470
+ showTimeZone?: boolean;
471
+ }
472
+ interface Formatted$1 {
473
+ /**
474
+ * Formatted date and time representation. <br>
475
+ * Example of formatting when an event lasts multiple days and is in the UTC time zone: `September 1, 2015 at 10:20 AM – September 5, 2015 at 12:14 PM`. <br>
476
+ * Example of formatting when an event lasts 1 day and is in the GMT+2 time zone: `February 1, 2018, 12:10 – 2:50 PM GMT+2`.
477
+ * @readonly
478
+ */
479
+ dateAndTime?: string | null;
480
+ /**
481
+ * Formatted start date of the event. Empty for TBD schedules.
482
+ * @readonly
483
+ */
484
+ startDate?: string | null;
485
+ /**
486
+ * Formatted start time of the event. Empty for TBD schedules.
487
+ * @readonly
488
+ */
489
+ startTime?: string | null;
490
+ /**
491
+ * Formatted end date of the event. Empty for TBD schedules or when the end date is hidden.
492
+ * @readonly
493
+ */
494
+ endDate?: string | null;
495
+ /**
496
+ * Formatted end time of the event. Empty for TBD schedules or when the end date is hidden.
497
+ * @readonly
498
+ */
499
+ endTime?: string | null;
500
+ }
501
+ declare enum Status$8 {
502
+ /** Default value. This value is unused */
503
+ UNKNOWN_EVENT_STATUS = "UNKNOWN_EVENT_STATUS",
504
+ /** Event is public and scheduled to start */
505
+ UPCOMING = "UPCOMING",
506
+ /** Event has started */
507
+ STARTED = "STARTED",
508
+ /** Event has ended */
509
+ ENDED = "ENDED",
510
+ /** Event is canceled */
511
+ CANCELED = "CANCELED",
512
+ /** Event is not public */
513
+ DRAFT = "DRAFT"
514
+ }
294
515
  interface NotifyGuestAction$1 {
295
516
  /** Event guest. */
296
517
  guest?: EventGuest$1;
@@ -1160,6 +1381,10 @@ interface GuestDeletedEnvelope {
1160
1381
  entity: EventGuest$1;
1161
1382
  metadata: EventMetadata$6;
1162
1383
  }
1384
+ interface GuestCheckedInEnvelope {
1385
+ data: GuestCheckedIn;
1386
+ metadata: EventMetadata$6;
1387
+ }
1163
1388
  interface QueryEventGuestsOptions {
1164
1389
  /**
1165
1390
  * Predefined sets of fields to return.
@@ -1246,6 +1471,7 @@ interface QueryGuestsSignature {
1246
1471
  declare const onGuestCreated$1: EventDefinition<GuestCreatedEnvelope, "wix.events.guests.v1.guest_created">;
1247
1472
  declare const onGuestUpdated$1: EventDefinition<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
1248
1473
  declare const onGuestDeleted$1: EventDefinition<GuestDeletedEnvelope, "wix.events.guests.v1.guest_deleted">;
1474
+ declare const onGuestCheckedIn$1: EventDefinition<GuestCheckedInEnvelope, "wix.events.guests.v1.guest_guest_checked_in">;
1249
1475
 
1250
1476
  declare function createEventModule$b<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
1251
1477
 
@@ -1269,6 +1495,15 @@ type _publicOnGuestDeletedType = typeof onGuestDeleted$1;
1269
1495
  */
1270
1496
  declare const onGuestDeleted: ReturnType<typeof createEventModule$b<_publicOnGuestDeletedType>>;
1271
1497
 
1498
+ type _publicOnGuestCheckedInType = typeof onGuestCheckedIn$1;
1499
+ /**
1500
+ * Triggered when guest is checked in
1501
+ */
1502
+ declare const onGuestCheckedIn: ReturnType<typeof createEventModule$b<_publicOnGuestCheckedInType>>;
1503
+
1504
+ type index_d$f_EventDetails = EventDetails;
1505
+ type index_d$f_GuestCheckedIn = GuestCheckedIn;
1506
+ type index_d$f_GuestCheckedInEnvelope = GuestCheckedInEnvelope;
1272
1507
  type index_d$f_GuestCount = GuestCount;
1273
1508
  type index_d$f_GuestCreatedEnvelope = GuestCreatedEnvelope;
1274
1509
  type index_d$f_GuestDeletedEnvelope = GuestDeletedEnvelope;
@@ -1292,15 +1527,17 @@ type index_d$f_Task = Task;
1292
1527
  type index_d$f_TaskKey = TaskKey;
1293
1528
  type index_d$f_UpdateGuestRequest = UpdateGuestRequest;
1294
1529
  type index_d$f_UpdateGuestResponse = UpdateGuestResponse;
1530
+ type index_d$f__publicOnGuestCheckedInType = _publicOnGuestCheckedInType;
1295
1531
  type index_d$f__publicOnGuestCreatedType = _publicOnGuestCreatedType;
1296
1532
  type index_d$f__publicOnGuestDeletedType = _publicOnGuestDeletedType;
1297
1533
  type index_d$f__publicOnGuestUpdatedType = _publicOnGuestUpdatedType;
1534
+ declare const index_d$f_onGuestCheckedIn: typeof onGuestCheckedIn;
1298
1535
  declare const index_d$f_onGuestCreated: typeof onGuestCreated;
1299
1536
  declare const index_d$f_onGuestDeleted: typeof onGuestDeleted;
1300
1537
  declare const index_d$f_onGuestUpdated: typeof onGuestUpdated;
1301
1538
  declare const index_d$f_queryGuests: typeof queryGuests;
1302
1539
  declare namespace index_d$f {
1303
- export { type ActionEvent$9 as ActionEvent, type Address$a as Address, type AddressLocation$a as AddressLocation, type AddressStreetOneOf$a as AddressStreetOneOf, AttendanceStatus$1 as AttendanceStatus, type BaseEventMetadata$b as BaseEventMetadata, type CheckIn$4 as CheckIn, type ContactEventStatusUpdated$1 as ContactEventStatusUpdated, type CouponDiscount$2 as CouponDiscount, type CursorPaging$7 as CursorPaging, type Cursors$a as Cursors, type Discount$2 as Discount, type DiscountItem$2 as DiscountItem, type DiscountItemDiscountOneOf$2 as DiscountItemDiscountOneOf, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type EventDeleted$5 as EventDeleted, type EventGuest$1 as EventGuest, type EventGuests$1 as EventGuests, type EventMetadata$6 as EventMetadata, EventType$5 as EventType, type Fee$2 as Fee, FeeName$2 as FeeName, FeeType$3 as FeeType, type FormResponse$5 as FormResponse, type FormattedAddress$5 as FormattedAddress, type Guest$4 as Guest, type index_d$f_GuestCount as GuestCount, type GuestCountUpdate$1 as GuestCountUpdate, type GuestCountUpdated$1 as GuestCountUpdated, type index_d$f_GuestCreatedEnvelope as GuestCreatedEnvelope, type index_d$f_GuestDeletedEnvelope as GuestDeletedEnvelope, type GuestDetails$3 as GuestDetails, type index_d$f_GuestListPreview as GuestListPreview, GuestType$1 as GuestType, type index_d$f_GuestUpdatedEnvelope as GuestUpdatedEnvelope, type index_d$f_GuestsQueryBuilder as GuestsQueryBuilder, type index_d$f_GuestsQueryResult as GuestsQueryResult, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, type InputValue$5 as InputValue, type Invoice$2 as Invoice, type Item$3 as Item, type index_d$f_Language as Language, type index_d$f_ListGuestListPreviewsRequest as ListGuestListPreviewsRequest, type index_d$f_ListGuestListPreviewsResponse as ListGuestListPreviewsResponse, type MemberEventStatusUpdated$1 as MemberEventStatusUpdated, MemberEventStatusUpdatedEventType$1 as MemberEventStatusUpdatedEventType, type MessageEnvelope$d as MessageEnvelope, type Money$8 as Money, NotifyActionType$1 as NotifyActionType, type NotifyGuestAction$1 as NotifyGuestAction, type OnlineConferencingLogin$5 as OnlineConferencingLogin, type OrderConfirmed$2 as OrderConfirmed, type OrderDeleted$1 as OrderDeleted, OrderStatus$3 as OrderStatus, OrderType$1 as OrderType, type OrderUpdated$2 as OrderUpdated, type Paging$9 as Paging, type PagingMetadataV2$9 as PagingMetadataV2, type PaidPlanDiscount$2 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$2 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$2 as PercentDiscount, type index_d$f_QueryEventGuestsOptions as QueryEventGuestsOptions, type index_d$f_QueryEventGuestsRequest as QueryEventGuestsRequest, type index_d$f_QueryEventGuestsResponse as QueryEventGuestsResponse, type index_d$f_QueryEventGuestsResponseNonNullableFields as QueryEventGuestsResponseNonNullableFields, type QueryV2$8 as QueryV2, type QueryV2PagingMethodOneOf$8 as QueryV2PagingMethodOneOf, RequestedFields$3 as RequestedFields, index_d$f_RequestedFieldsEnumRequestedFields as RequestedFieldsEnumRequestedFields, type RestoreInfo$8 as RestoreInfo, type RsvpCreated$2 as RsvpCreated, type RsvpDeleted$1 as RsvpDeleted, RsvpStatus$3 as RsvpStatus, type RsvpUpdated$2 as RsvpUpdated, type index_d$f_SecondaryLanguagesRequest as SecondaryLanguagesRequest, type index_d$f_SecondaryLanguagesResponse as SecondaryLanguagesResponse, SortOrder$a as SortOrder, type Sorting$a as Sorting, type StandardDetails$5 as StandardDetails, type index_d$f_StreamEventGuestsRequest as StreamEventGuestsRequest, type StreetAddress$a as StreetAddress, type Subdivision$a as Subdivision, SubdivisionType$a as SubdivisionType, type index_d$f_Task as Task, type TaskContext$1 as TaskContext, type index_d$f_TaskKey as TaskKey, type Tax$2 as Tax, TaxType$6 as TaxType, type Ticket$3 as Ticket, type TicketDetails$3 as TicketDetails, type TicketGuestDetails$1 as TicketGuestDetails, type index_d$f_UpdateGuestRequest as UpdateGuestRequest, type index_d$f_UpdateGuestResponse as UpdateGuestResponse, WebhookIdentityType$d as WebhookIdentityType, type index_d$f__publicOnGuestCreatedType as _publicOnGuestCreatedType, type index_d$f__publicOnGuestDeletedType as _publicOnGuestDeletedType, type index_d$f__publicOnGuestUpdatedType as _publicOnGuestUpdatedType, index_d$f_onGuestCreated as onGuestCreated, index_d$f_onGuestDeleted as onGuestDeleted, index_d$f_onGuestUpdated as onGuestUpdated, onGuestCreated$1 as publicOnGuestCreated, onGuestDeleted$1 as publicOnGuestDeleted, onGuestUpdated$1 as publicOnGuestUpdated, index_d$f_queryGuests as queryGuests };
1540
+ export { type ActionEvent$9 as ActionEvent, type Address$a as Address, type AddressLocation$a as AddressLocation, type AddressStreetOneOf$a as AddressStreetOneOf, AttendanceStatus$1 as AttendanceStatus, type BaseEventMetadata$b as BaseEventMetadata, type CheckIn$4 as CheckIn, type CommonAddress$3 as CommonAddress, type CommonAddressLocation$3 as CommonAddressLocation, type CommonAddressStreetOneOf$3 as CommonAddressStreetOneOf, type CommonStreetAddress$3 as CommonStreetAddress, type CommonSubdivision$3 as CommonSubdivision, type ContactEventStatusUpdated$1 as ContactEventStatusUpdated, type CouponDiscount$2 as CouponDiscount, type CursorPaging$7 as CursorPaging, type Cursors$a as Cursors, type DateAndTimeSettings$1 as DateAndTimeSettings, type Discount$2 as Discount, type DiscountItem$2 as DiscountItem, type DiscountItemDiscountOneOf$2 as DiscountItemDiscountOneOf, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type EventDeleted$5 as EventDeleted, type index_d$f_EventDetails as EventDetails, type EventGuest$1 as EventGuest, type EventGuests$1 as EventGuests, type EventMetadata$6 as EventMetadata, EventType$5 as EventType, type Fee$2 as Fee, FeeName$2 as FeeName, FeeType$3 as FeeType, type FormResponse$5 as FormResponse, type Formatted$1 as Formatted, type FormattedAddress$5 as FormattedAddress, type Guest$4 as Guest, type index_d$f_GuestCheckedIn as GuestCheckedIn, type index_d$f_GuestCheckedInEnvelope as GuestCheckedInEnvelope, type index_d$f_GuestCount as GuestCount, type GuestCountUpdate$1 as GuestCountUpdate, type GuestCountUpdated$1 as GuestCountUpdated, type index_d$f_GuestCreatedEnvelope as GuestCreatedEnvelope, type index_d$f_GuestDeletedEnvelope as GuestDeletedEnvelope, type GuestDetails$3 as GuestDetails, type index_d$f_GuestListPreview as GuestListPreview, GuestType$1 as GuestType, type index_d$f_GuestUpdatedEnvelope as GuestUpdatedEnvelope, type index_d$f_GuestsQueryBuilder as GuestsQueryBuilder, type index_d$f_GuestsQueryResult as GuestsQueryResult, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, type InputValue$5 as InputValue, type Invoice$2 as Invoice, type Item$3 as Item, type index_d$f_Language as Language, type index_d$f_ListGuestListPreviewsRequest as ListGuestListPreviewsRequest, type index_d$f_ListGuestListPreviewsResponse as ListGuestListPreviewsResponse, type Location$7 as Location, LocationType$7 as LocationType, type MemberEventStatusUpdated$1 as MemberEventStatusUpdated, MemberEventStatusUpdatedEventType$1 as MemberEventStatusUpdatedEventType, type MessageEnvelope$d as MessageEnvelope, type Money$8 as Money, NotifyActionType$1 as NotifyActionType, type NotifyGuestAction$1 as NotifyGuestAction, type Occurrence$7 as Occurrence, type OnlineConferencingLogin$5 as OnlineConferencingLogin, type OrderConfirmed$2 as OrderConfirmed, type OrderDeleted$1 as OrderDeleted, OrderStatus$3 as OrderStatus, OrderType$1 as OrderType, type OrderUpdated$2 as OrderUpdated, type Paging$9 as Paging, type PagingMetadataV2$9 as PagingMetadataV2, type PaidPlanDiscount$2 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$2 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$2 as PercentDiscount, type index_d$f_QueryEventGuestsOptions as QueryEventGuestsOptions, type index_d$f_QueryEventGuestsRequest as QueryEventGuestsRequest, type index_d$f_QueryEventGuestsResponse as QueryEventGuestsResponse, type index_d$f_QueryEventGuestsResponseNonNullableFields as QueryEventGuestsResponseNonNullableFields, type QueryV2$8 as QueryV2, type QueryV2PagingMethodOneOf$8 as QueryV2PagingMethodOneOf, RecurrenceStatusStatus$2 as RecurrenceStatusStatus, type Recurrences$7 as Recurrences, RequestedFields$3 as RequestedFields, index_d$f_RequestedFieldsEnumRequestedFields as RequestedFieldsEnumRequestedFields, type RestoreInfo$8 as RestoreInfo, type RsvpCreated$2 as RsvpCreated, type RsvpDeleted$1 as RsvpDeleted, RsvpStatus$3 as RsvpStatus, type RsvpUpdated$2 as RsvpUpdated, type index_d$f_SecondaryLanguagesRequest as SecondaryLanguagesRequest, type index_d$f_SecondaryLanguagesResponse as SecondaryLanguagesResponse, SortOrder$a as SortOrder, type Sorting$a as Sorting, type StandardDetails$5 as StandardDetails, Status$8 as Status, type index_d$f_StreamEventGuestsRequest as StreamEventGuestsRequest, type StreetAddress$a as StreetAddress, type Subdivision$a as Subdivision, SubdivisionSubdivisionType$1 as SubdivisionSubdivisionType, SubdivisionType$a as SubdivisionType, type index_d$f_Task as Task, type TaskContext$1 as TaskContext, type index_d$f_TaskKey as TaskKey, type Tax$2 as Tax, TaxType$6 as TaxType, type Ticket$3 as Ticket, type TicketDetails$3 as TicketDetails, type TicketGuestDetails$1 as TicketGuestDetails, type index_d$f_UpdateGuestRequest as UpdateGuestRequest, type index_d$f_UpdateGuestResponse as UpdateGuestResponse, WebhookIdentityType$d as WebhookIdentityType, type index_d$f__publicOnGuestCheckedInType as _publicOnGuestCheckedInType, type index_d$f__publicOnGuestCreatedType as _publicOnGuestCreatedType, type index_d$f__publicOnGuestDeletedType as _publicOnGuestDeletedType, type index_d$f__publicOnGuestUpdatedType as _publicOnGuestUpdatedType, index_d$f_onGuestCheckedIn as onGuestCheckedIn, index_d$f_onGuestCreated as onGuestCreated, index_d$f_onGuestDeleted as onGuestDeleted, index_d$f_onGuestUpdated as onGuestUpdated, onGuestCheckedIn$1 as publicOnGuestCheckedIn, onGuestCreated$1 as publicOnGuestCreated, onGuestDeleted$1 as publicOnGuestDeleted, onGuestUpdated$1 as publicOnGuestUpdated, index_d$f_queryGuests as queryGuests };
1304
1541
  }
1305
1542
 
1306
1543
  interface NotificationConfig {