@wix/events 1.0.257 → 1.0.259

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.
@@ -1399,6 +1399,357 @@ declare enum EmailNotificationReminderTime {
1399
1399
  /** 30 minutes prior */
1400
1400
  BEFORE_30_MINUTES = "BEFORE_30_MINUTES"
1401
1401
  }
1402
+ interface UpdatedWithPreviousEntity {
1403
+ /** previous automation */
1404
+ previousAutomation?: Automation;
1405
+ /** updated automation */
1406
+ currentAutomation?: Automation;
1407
+ }
1408
+ interface Automation extends AutomationOriginInfoOneOf {
1409
+ /** Application info */
1410
+ applicationInfo?: ApplicationOrigin;
1411
+ /** Preinstalled info */
1412
+ preinstalledInfo?: PreinstalledOrigin;
1413
+ /**
1414
+ * Automation ID.
1415
+ * @readonly
1416
+ */
1417
+ _id?: string | null;
1418
+ /**
1419
+ * Revision number, which increments by 1 each time the automation is updated.
1420
+ * To prevent conflicting changes,
1421
+ * the current revision must be passed when updating the automation.
1422
+ *
1423
+ * Ignored when creating an automation.
1424
+ * @readonly
1425
+ */
1426
+ revision?: string | null;
1427
+ /**
1428
+ * Information about the creator of the automation.
1429
+ * @readonly
1430
+ */
1431
+ createdBy?: AuditInfo;
1432
+ /**
1433
+ * Date and time the automation was created.
1434
+ * @readonly
1435
+ */
1436
+ _createdDate?: Date;
1437
+ /**
1438
+ * The entity that last updated the automation.
1439
+ * @readonly
1440
+ */
1441
+ updatedBy?: AuditInfo;
1442
+ /**
1443
+ * Date and time the automation was last updated.
1444
+ * @readonly
1445
+ */
1446
+ _updatedDate?: Date;
1447
+ /** Automation name that is displayed on the user's site. */
1448
+ name?: string;
1449
+ /** Automation description. */
1450
+ description?: string | null;
1451
+ /** Object that defines the automation's trigger, actions, and activation status. */
1452
+ configuration?: AutomationConfiguration;
1453
+ /** Defines how the automation was added to the site. */
1454
+ origin?: Origin;
1455
+ /** Automation settings. */
1456
+ settings?: AutomationSettings;
1457
+ /**
1458
+ * Draft info (optional - only if the automation is a draft)
1459
+ * @readonly
1460
+ */
1461
+ draftInfo?: DraftInfo;
1462
+ }
1463
+ /** @oneof */
1464
+ interface AutomationOriginInfoOneOf {
1465
+ /** Application info */
1466
+ applicationInfo?: ApplicationOrigin;
1467
+ /** Preinstalled info */
1468
+ preinstalledInfo?: PreinstalledOrigin;
1469
+ }
1470
+ interface ActionSettings {
1471
+ /**
1472
+ * List of actions that cannot be deleted.
1473
+ * Default: Empty. All actions are deletable by default.
1474
+ */
1475
+ permanentActionIds?: string[];
1476
+ /**
1477
+ * List of actions that cannot be edited.
1478
+ * Default: Empty. All actions are editable by default.
1479
+ */
1480
+ readonlyActionIds?: string[];
1481
+ /** Whether the option to add a delay is disabled for the automation. */
1482
+ disableDelayAddition?: boolean;
1483
+ /** Whether the option to add a condition is disabled for the automation. */
1484
+ disableConditionAddition?: boolean;
1485
+ }
1486
+ interface AuditInfo extends AuditInfoIdOneOf {
1487
+ /** User ID. */
1488
+ userId?: string;
1489
+ /** Application ID. */
1490
+ appId?: string;
1491
+ }
1492
+ /** @oneof */
1493
+ interface AuditInfoIdOneOf {
1494
+ /** User ID. */
1495
+ userId?: string;
1496
+ /** Application ID. */
1497
+ appId?: string;
1498
+ }
1499
+ /** Automation runtime configuration */
1500
+ interface AutomationConfiguration {
1501
+ /** Status of the automation on the site. */
1502
+ status?: Status$6;
1503
+ /** Automation trigger configuration. */
1504
+ trigger?: Trigger;
1505
+ /** List of IDs of root actions. Root actions are the first actions to run after the trigger. The actions in the list run in parallel. */
1506
+ rootActionIds?: string[];
1507
+ /**
1508
+ * Map of all actions that the automation may execute.
1509
+ * The key is the action ID, and the value is the action configuration.
1510
+ */
1511
+ actions?: Record<string, Action>;
1512
+ }
1513
+ declare enum TimeUnit {
1514
+ UNKNOWN_TIME_UNIT = "UNKNOWN_TIME_UNIT",
1515
+ MINUTES = "MINUTES",
1516
+ HOURS = "HOURS",
1517
+ DAYS = "DAYS",
1518
+ WEEKS = "WEEKS",
1519
+ MONTHS = "MONTHS"
1520
+ }
1521
+ interface Filter {
1522
+ /** Filter ID. */
1523
+ _id?: string;
1524
+ /** Field key from the payload schema, for example "formId". */
1525
+ fieldKey?: string;
1526
+ /** Filter expression that evaluates to a boolean. */
1527
+ filterExpression?: string;
1528
+ }
1529
+ interface FutureDateActivationOffset {
1530
+ /**
1531
+ * The offset value. The value is always taken as negative, so that the automation runs before the trigger date.
1532
+ * To create an offset that causes the automation to run after the trigger date, use a delay action.
1533
+ */
1534
+ preScheduledEventOffsetExpression?: string;
1535
+ /** Time unit for the scheduled event offset. */
1536
+ scheduledEventOffsetTimeUnit?: TimeUnit;
1537
+ }
1538
+ interface RateLimit {
1539
+ /** Value expressing the maximum number of times the trigger can be activated. */
1540
+ maxActivationsExpression?: string;
1541
+ /** Duration of the rate limiting window in the selected time unit. If no value is set, the rate limit is permanent. */
1542
+ durationExpression?: string | null;
1543
+ /** Time unit for the rate limit duration. */
1544
+ durationTimeUnit?: TimeUnit;
1545
+ /** Unique identifier of each activation, by which rate limiter will count activations. */
1546
+ uniqueIdentifierExpression?: string | null;
1547
+ }
1548
+ interface ConditionExpressionGroup {
1549
+ /** Expression group operator. */
1550
+ operator?: Operator;
1551
+ /** List of boolean expressions to be evaluated with the given operator. */
1552
+ booleanExpressions?: string[];
1553
+ }
1554
+ declare enum Operator {
1555
+ UNKNOWN_OPERATOR = "UNKNOWN_OPERATOR",
1556
+ OR = "OR",
1557
+ AND = "AND"
1558
+ }
1559
+ declare enum Type$5 {
1560
+ /** Automation will be triggered according to the trigger configuration */
1561
+ UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
1562
+ /** App defined Action */
1563
+ APP_DEFINED = "APP_DEFINED",
1564
+ /** Condition Action */
1565
+ CONDITION = "CONDITION",
1566
+ /** Delay Action */
1567
+ DELAY = "DELAY",
1568
+ /** RateLimit Action */
1569
+ RATE_LIMIT = "RATE_LIMIT",
1570
+ /** Output Action */
1571
+ OUTPUT = "OUTPUT"
1572
+ }
1573
+ interface AppDefinedAction {
1574
+ /** ID of the app that defines the action. */
1575
+ appId?: string;
1576
+ /** Action key. */
1577
+ actionKey?: string;
1578
+ /** Action input mapping. */
1579
+ inputMapping?: Record<string, any> | null;
1580
+ /**
1581
+ * Array of conditions determining whether to skip the action in the automation flow.
1582
+ * The action will be skipped if any of the expression groups evaluate to `true`.
1583
+ * Actions following a skipped action will still run.
1584
+ */
1585
+ skipConditionOrExpressionGroups?: ConditionExpressionGroup[];
1586
+ /** List of IDs of actions to run in parallel once the action completes. */
1587
+ postActionIds?: string[];
1588
+ }
1589
+ interface ConditionAction {
1590
+ /** The condition evaluates to `true` if either of the expression groups evaluate to `true`. */
1591
+ orExpressionGroups?: ConditionExpressionGroup[];
1592
+ /** List of IDs of actions to run when the entire condition is evaluated to `true`. */
1593
+ truePostActionIds?: string[];
1594
+ /** List of IDs of actions to run when the entire condition is evaluated to `false`. */
1595
+ falsePostActionIds?: string[];
1596
+ }
1597
+ interface DelayAction {
1598
+ /** Value expressing the amount of time to wait from a specific date or from the time the action is executed. */
1599
+ offsetExpression?: string | null;
1600
+ /** Time unit for delay offset. */
1601
+ offsetTimeUnit?: TimeUnit;
1602
+ /**
1603
+ * The action due date. If defined without an offset, the automation will wait until this date to execute the next step.
1604
+ * If an offset is defined, it's calculated from this date.
1605
+ * The date is expressed in the number of milliseconds since the Unix Epoch (1 January, 1970 UTC).
1606
+ */
1607
+ dueDateEpochExpression?: string | null;
1608
+ /** List of IDs of actions to run in parallel after the delay. */
1609
+ postActionIds?: string[];
1610
+ }
1611
+ interface RateLimitAction {
1612
+ /** The maximum number of activations allowed for the action. */
1613
+ maxActivationsExpression?: string;
1614
+ /**
1615
+ * Duration of the rate limiting window, expressed in selected time unit.
1616
+ * If no value is set, then there is no time limit on the rate limiter.
1617
+ */
1618
+ rateLimitDurationExpression?: string | null;
1619
+ /** Time unit for the rate limit duration. */
1620
+ rateLimitDurationTimeUnit?: TimeUnit;
1621
+ /** Unique identifier of each activation by which rate limiter counts activations. */
1622
+ uniqueIdentifierExpression?: string | null;
1623
+ /** List of IDs of actions to run in parallel once the action completes. */
1624
+ postActionIds?: string[];
1625
+ }
1626
+ interface OutputAction {
1627
+ /** Output action output mapping. */
1628
+ outputMapping?: Record<string, any> | null;
1629
+ }
1630
+ declare enum Status$6 {
1631
+ /** unused */
1632
+ UNKNOWN_STATUS = "UNKNOWN_STATUS",
1633
+ /** Automation will be triggered according to the trigger configuration */
1634
+ ACTIVE = "ACTIVE",
1635
+ /** Automation will not be triggered */
1636
+ INACTIVE = "INACTIVE"
1637
+ }
1638
+ interface Trigger {
1639
+ /** ID of the app that defines the trigger. */
1640
+ appId?: string;
1641
+ /** Trigger key. */
1642
+ triggerKey?: string;
1643
+ /**
1644
+ * List of filters on schema fields.
1645
+ * In order for the automation to run, all filter expressions must evaluate to `true` for a given payload.
1646
+ */
1647
+ filters?: Filter[];
1648
+ /** Defines the time offset between the trigger date and when the automation runs. */
1649
+ scheduledEventOffset?: FutureDateActivationOffset;
1650
+ /** Limits the number of times an automation can be triggered. */
1651
+ rateLimit?: RateLimit;
1652
+ automationConfigMapping?: Record<string, any> | null;
1653
+ }
1654
+ interface Action extends ActionInfoOneOf {
1655
+ /** Action defined by an app (via RPC, HTTP or Velo). */
1656
+ appDefinedInfo?: AppDefinedAction;
1657
+ /** Condition action. */
1658
+ conditionInfo?: ConditionAction;
1659
+ /** Delay action. */
1660
+ delayInfo?: DelayAction;
1661
+ /** Rate-limiting action. */
1662
+ rateLimitInfo?: RateLimitAction;
1663
+ /** Action ID. If not specified, a new ID is generated. */
1664
+ _id?: string | null;
1665
+ /** Action type. */
1666
+ type?: Type$5;
1667
+ /**
1668
+ * Human-readable name to differentiate the action from other actions of the same type.
1669
+ * The name can contain only alphanumeric characters and underscores. If not provided, a namespace in the form `actionkey-indexOfAction` is
1670
+ * generated automatically.
1671
+ * If the action has output, the output will be available in the payload under this name.
1672
+ * If the user has multiple actions with the same appId and actionKey, previous action output will be overwritten.
1673
+ */
1674
+ namespace?: string | null;
1675
+ }
1676
+ /** @oneof */
1677
+ interface ActionInfoOneOf {
1678
+ /** Action defined by an app (via RPC, HTTP or Velo). */
1679
+ appDefinedInfo?: AppDefinedAction;
1680
+ /** Condition action. */
1681
+ conditionInfo?: ConditionAction;
1682
+ /** Delay action. */
1683
+ delayInfo?: DelayAction;
1684
+ /** Rate-limiting action. */
1685
+ rateLimitInfo?: RateLimitAction;
1686
+ }
1687
+ declare enum Origin {
1688
+ /** default value. this is unused */
1689
+ UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
1690
+ /** user created automation */
1691
+ USER = "USER",
1692
+ /** automation created by application (site specific) */
1693
+ APPLICATION = "APPLICATION",
1694
+ /** preinstalled application automation */
1695
+ PREINSTALLED = "PREINSTALLED"
1696
+ }
1697
+ interface ApplicationOrigin {
1698
+ /** Application ID. */
1699
+ appId?: string;
1700
+ }
1701
+ interface PreinstalledOrigin {
1702
+ /** ID of the app that defines the preinstalled automation. */
1703
+ appId?: string;
1704
+ /** Application component ID. */
1705
+ componentId?: string;
1706
+ /** Application component version. */
1707
+ componentVersion?: number;
1708
+ /**
1709
+ * Whether the automation is an override automation. If the user modifies the preinstalled automation installed on their site, a site-specific
1710
+ * automation is created that overrides the original one. If the user makes no modifications this boolean is set to `false` and the original
1711
+ * preinstalled automation is used.
1712
+ *
1713
+ * Default: `false`
1714
+ * @readonly
1715
+ */
1716
+ override?: boolean | null;
1717
+ }
1718
+ interface AutomationSettings {
1719
+ /**
1720
+ * Whether the automation is hidden from users.
1721
+ * Default: `false`
1722
+ */
1723
+ hidden?: boolean;
1724
+ /**
1725
+ * Whether the automation is read-only.
1726
+ * Default: `false`
1727
+ */
1728
+ readonly?: boolean;
1729
+ /**
1730
+ * Whether the option to delete the automation from the site is disabled.
1731
+ * Default: `false`
1732
+ */
1733
+ disableDelete?: boolean;
1734
+ /**
1735
+ * Whether the option to change the automation status (from active to inactive and vice versa) is disabled.
1736
+ * Default: `false`
1737
+ */
1738
+ disableStatusChange?: boolean;
1739
+ /** Automation action settings. */
1740
+ actionSettings?: ActionSettings;
1741
+ }
1742
+ interface DraftInfo {
1743
+ /**
1744
+ * optional - automationId of the original automation
1745
+ * @readonly
1746
+ */
1747
+ originalAutomationId?: string | null;
1748
+ }
1749
+ interface DeletedWithEntity {
1750
+ /** Deleted automation */
1751
+ automation?: Automation;
1752
+ }
1402
1753
  interface GuestCountUpdated {
1403
1754
  /** Guest. */
1404
1755
  guest?: EventGuest;
@@ -1998,7 +2349,7 @@ interface Recurrences$5 {
1998
2349
  * Recurrence status.
1999
2350
  * @readonly
2000
2351
  */
2001
- status?: Status$6;
2352
+ status?: RecurrenceStatusStatus$1;
2002
2353
  }
2003
2354
  interface Occurrence$5 {
2004
2355
  /** Event start timestamp. */
@@ -2010,7 +2361,7 @@ interface Occurrence$5 {
2010
2361
  /** Whether time zone is displayed in formatted schedule. */
2011
2362
  showTimeZone?: boolean;
2012
2363
  }
2013
- declare enum Status$6 {
2364
+ declare enum RecurrenceStatusStatus$1 {
2014
2365
  /** Event occurs only once. */
2015
2366
  ONE_TIME = "ONE_TIME",
2016
2367
  /** Event is recurring. */
@@ -3492,11 +3843,27 @@ type _publicOnNotificationConfigDeletedType = typeof onNotificationConfigDeleted
3492
3843
  /** */
3493
3844
  declare const onNotificationConfigDeleted: ReturnType<typeof createEventModule$a<_publicOnNotificationConfigDeletedType>>;
3494
3845
 
3846
+ type context$d_Action = Action;
3847
+ type context$d_ActionInfoOneOf = ActionInfoOneOf;
3848
+ type context$d_ActionSettings = ActionSettings;
3849
+ type context$d_AppDefinedAction = AppDefinedAction;
3850
+ type context$d_ApplicationOrigin = ApplicationOrigin;
3495
3851
  type context$d_AttendanceStatus = AttendanceStatus;
3496
3852
  declare const context$d_AttendanceStatus: typeof AttendanceStatus;
3853
+ type context$d_AuditInfo = AuditInfo;
3854
+ type context$d_AuditInfoIdOneOf = AuditInfoIdOneOf;
3855
+ type context$d_Automation = Automation;
3856
+ type context$d_AutomationConfiguration = AutomationConfiguration;
3857
+ type context$d_AutomationOriginInfoOneOf = AutomationOriginInfoOneOf;
3858
+ type context$d_AutomationSettings = AutomationSettings;
3859
+ type context$d_ConditionAction = ConditionAction;
3860
+ type context$d_ConditionExpressionGroup = ConditionExpressionGroup;
3497
3861
  type context$d_ContactEventStatusUpdated = ContactEventStatusUpdated;
3498
3862
  type context$d_ContactEventStatusUpdatedEventType = ContactEventStatusUpdatedEventType;
3499
3863
  declare const context$d_ContactEventStatusUpdatedEventType: typeof ContactEventStatusUpdatedEventType;
3864
+ type context$d_DelayAction = DelayAction;
3865
+ type context$d_DeletedWithEntity = DeletedWithEntity;
3866
+ type context$d_DraftInfo = DraftInfo;
3500
3867
  type context$d_EmailNotificationConfig = EmailNotificationConfig;
3501
3868
  type context$d_EmailNotificationReminderTime = EmailNotificationReminderTime;
3502
3869
  declare const context$d_EmailNotificationReminderTime: typeof EmailNotificationReminderTime;
@@ -3505,6 +3872,8 @@ declare const context$d_EmailNotificationType: typeof EmailNotificationType;
3505
3872
  type context$d_EmailTemplate = EmailTemplate;
3506
3873
  type context$d_EventGuest = EventGuest;
3507
3874
  type context$d_EventGuests = EventGuests;
3875
+ type context$d_Filter = Filter;
3876
+ type context$d_FutureDateActivationOffset = FutureDateActivationOffset;
3508
3877
  type context$d_GuestCountUpdate = GuestCountUpdate;
3509
3878
  type context$d_GuestCountUpdated = GuestCountUpdated;
3510
3879
  type context$d_GuestType = GuestType;
@@ -3519,10 +3888,18 @@ type context$d_NotificationConfigUpdatedEnvelope = NotificationConfigUpdatedEnve
3519
3888
  type context$d_NotifyActionType = NotifyActionType;
3520
3889
  declare const context$d_NotifyActionType: typeof NotifyActionType;
3521
3890
  type context$d_NotifyGuestAction = NotifyGuestAction;
3891
+ type context$d_Operator = Operator;
3892
+ declare const context$d_Operator: typeof Operator;
3522
3893
  type context$d_OrderEmailAdded = OrderEmailAdded;
3523
3894
  type context$d_OrderGuest = OrderGuest;
3895
+ type context$d_Origin = Origin;
3896
+ declare const context$d_Origin: typeof Origin;
3897
+ type context$d_OutputAction = OutputAction;
3898
+ type context$d_PreinstalledOrigin = PreinstalledOrigin;
3524
3899
  type context$d_PushNotificationType = PushNotificationType;
3525
3900
  declare const context$d_PushNotificationType: typeof PushNotificationType;
3901
+ type context$d_RateLimit = RateLimit;
3902
+ type context$d_RateLimitAction = RateLimitAction;
3526
3903
  type context$d_ResolveEmailNotificationConfigRequest = ResolveEmailNotificationConfigRequest;
3527
3904
  type context$d_ResolveEmailNotificationConfigResponse = ResolveEmailNotificationConfigResponse;
3528
3905
  type context$d_ResolveNotificationConfigRequest = ResolveNotificationConfigRequest;
@@ -3536,12 +3913,16 @@ type context$d_TicketGuest = TicketGuest;
3536
3913
  type context$d_TicketGuestDetails = TicketGuestDetails;
3537
3914
  type context$d_TicketPdfResolveDelayed = TicketPdfResolveDelayed;
3538
3915
  type context$d_TicketPdfResolved = TicketPdfResolved;
3916
+ type context$d_TimeUnit = TimeUnit;
3917
+ declare const context$d_TimeUnit: typeof TimeUnit;
3918
+ type context$d_Trigger = Trigger;
3539
3919
  type context$d_TriggerNotificationOptions = TriggerNotificationOptions;
3540
3920
  type context$d_TriggerNotificationRequest = TriggerNotificationRequest;
3541
3921
  type context$d_TriggerNotificationRequestGuestsOneOf = TriggerNotificationRequestGuestsOneOf;
3542
3922
  type context$d_TriggerNotificationRequestNotificationOneOf = TriggerNotificationRequestNotificationOneOf;
3543
3923
  type context$d_TriggerNotificationResponse = TriggerNotificationResponse;
3544
3924
  type context$d_UnprocessedTargetEvent = UnprocessedTargetEvent;
3925
+ type context$d_UpdatedWithPreviousEntity = UpdatedWithPreviousEntity;
3545
3926
  type context$d_UpsertNotificationConfig = UpsertNotificationConfig;
3546
3927
  type context$d_UpsertNotificationConfigRequest = UpsertNotificationConfigRequest;
3547
3928
  type context$d_UpsertNotificationConfigResponse = UpsertNotificationConfigResponse;
@@ -3559,7 +3940,7 @@ declare const context$d_resolveNotificationConfig: typeof resolveNotificationCon
3559
3940
  declare const context$d_triggerNotification: typeof triggerNotification;
3560
3941
  declare const context$d_upsertNotificationConfig: typeof upsertNotificationConfig;
3561
3942
  declare namespace context$d {
3562
- export { type ActionEvent$7 as ActionEvent, type Address$8 as Address, type AddressLocation$8 as AddressLocation, type AddressStreetOneOf$8 as AddressStreetOneOf, type Agenda$3 as Agenda, context$d_AttendanceStatus as AttendanceStatus, type BaseEventMetadata$a as BaseEventMetadata, type CalendarLinks$5 as CalendarLinks, type Category$4 as Category, type CategoryCounts$4 as CategoryCounts, type CheckIn$3 as CheckIn, type CheckoutFormMessages$3 as CheckoutFormMessages, type CommonAddress$1 as CommonAddress, type CommonAddressLocation$1 as CommonAddressLocation, type CommonAddressStreetOneOf$1 as CommonAddressStreetOneOf, type CommonStreetAddress$1 as CommonStreetAddress, type CommonSubdivision$1 as CommonSubdivision, ConferenceType$3 as ConferenceType, type context$d_ContactEventStatusUpdated as ContactEventStatusUpdated, context$d_ContactEventStatusUpdatedEventType as ContactEventStatusUpdatedEventType, type CouponDiscount$1 as CouponDiscount, type Dashboard$5 as Dashboard, type Discount$1 as Discount, type DiscountItem$1 as DiscountItem, type DiscountItemDiscountOneOf$1 as DiscountItemDiscountOneOf, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type context$d_EmailNotificationConfig as EmailNotificationConfig, context$d_EmailNotificationReminderTime as EmailNotificationReminderTime, context$d_EmailNotificationType as EmailNotificationType, type context$d_EmailTemplate as EmailTemplate, type Empty$4 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type Event$3 as Event, type EventCanceled$2 as EventCanceled, type EventCopied$3 as EventCopied, type EventDeleted$2 as EventDeleted, type EventDisplaySettings$3 as EventDisplaySettings, type EventEnded$2 as EventEnded, type context$d_EventGuest as EventGuest, type context$d_EventGuests as EventGuests, type EventMetadata$5 as EventMetadata, type EventReminder$1 as EventReminder, EventStatus$5 as EventStatus, EventType$3 as EventType, type EventUpdated$3 as EventUpdated, type ExternalEvent$3 as ExternalEvent, type Fee$1 as Fee, FeeName$1 as FeeName, FeeType$2 as FeeType, type Feed$3 as Feed, type File$1 as File, type Form$3 as Form, type FormMessages$3 as FormMessages, type FormResponse$3 as FormResponse, type FormattedAddress$3 as FormattedAddress, type Guest$2 as Guest, type context$d_GuestCountUpdate as GuestCountUpdate, type context$d_GuestCountUpdated as GuestCountUpdated, type GuestDetails$2 as GuestDetails, type GuestListConfig$3 as GuestListConfig, context$d_GuestType as GuestType, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type Input$3 as Input, type InputControl$3 as InputControl, InputControlType$3 as InputControlType, type InputValue$3 as InputValue, type Invoice$1 as Invoice, type Item$2 as Item, type Keyword$3 as Keyword, type Label$3 as Label, type LabellingSettings$3 as LabellingSettings, type Link$1 as Link, type Location$5 as Location, LocationType$5 as LocationType, type MapCoordinates$5 as MapCoordinates, type context$d_MemberEventStatusUpdated as MemberEventStatusUpdated, context$d_MemberEventStatusUpdatedEventType as MemberEventStatusUpdatedEventType, type MessageEnvelope$b as MessageEnvelope, type Money$6 as Money, type Negative$3 as Negative, type NegativeResponseConfirmation$3 as NegativeResponseConfirmation, type context$d_NotificationConfig as NotificationConfig, type context$d_NotificationConfigCreatedEnvelope as NotificationConfigCreatedEnvelope, type context$d_NotificationConfigDeletedEnvelope as NotificationConfigDeletedEnvelope, type context$d_NotificationConfigUpdatedEnvelope as NotificationConfigUpdatedEnvelope, context$d_NotifyActionType as NotifyActionType, type context$d_NotifyGuestAction as NotifyGuestAction, type Occurrence$5 as Occurrence, type OnlineConferencing$3 as OnlineConferencing, type OnlineConferencingConfig$3 as OnlineConferencingConfig, type OnlineConferencingLogin$3 as OnlineConferencingLogin, type OnlineConferencingSession$3 as OnlineConferencingSession, type OptionSelection$3 as OptionSelection, type OptionSelectionSelectedOptionOneOf$3 as OptionSelectionSelectedOptionOneOf, type OrderConfirmed$1 as OrderConfirmed, type context$d_OrderEmailAdded as OrderEmailAdded, type context$d_OrderGuest as OrderGuest, type OrderPaid$1 as OrderPaid, OrderStatus$2 as OrderStatus, type PaidPlanDiscount$1 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$1 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$1 as PercentDiscount, type Positive$3 as Positive, type PositiveResponseConfirmation$3 as PositiveResponseConfirmation, context$d_PushNotificationType as PushNotificationType, type Recurrences$5 as Recurrences, type Registration$3 as Registration, type RegistrationClosedMessages$3 as RegistrationClosedMessages, RegistrationStatus$3 as RegistrationStatus, type context$d_ResolveEmailNotificationConfigRequest as ResolveEmailNotificationConfigRequest, type context$d_ResolveEmailNotificationConfigResponse as ResolveEmailNotificationConfigResponse, type context$d_ResolveNotificationConfigRequest as ResolveNotificationConfigRequest, type context$d_ResolveNotificationConfigResponse as ResolveNotificationConfigResponse, type context$d_ResolveNotificationConfigResponseNonNullableFields as ResolveNotificationConfigResponseNonNullableFields, type ResponseConfirmation$3 as ResponseConfirmation, type RestoreInfo$5 as RestoreInfo, type RsvpCollection$3 as RsvpCollection, type RsvpCollectionConfig$3 as RsvpCollectionConfig, type RsvpCreated$1 as RsvpCreated, type RsvpFormMessages$3 as RsvpFormMessages, type context$d_RsvpGuest as RsvpGuest, RsvpStatus$1 as RsvpStatus, RsvpStatusOptions$3 as RsvpStatusOptions, type RsvpSummary$4 as RsvpSummary, type RsvpUpdated$1 as RsvpUpdated, type ScheduleConfig$5 as ScheduleConfig, type Scheduling$3 as Scheduling, type SeoSchema$3 as SeoSchema, type SeoSettings$3 as SeoSettings, type Settings$4 as Settings, type SiteUrl$3 as SiteUrl, type StandardDetails$3 as StandardDetails, State$7 as State, Status$6 as Status, type StreetAddress$8 as StreetAddress, type Subdivision$8 as Subdivision, SubdivisionType$8 as SubdivisionType, type Tag$3 as Tag, type Target$1 as Target, context$d_TargetType as TargetType, type context$d_TaskContext as TaskContext, type Tax$1 as Tax, type TaxConfig$3 as TaxConfig, TaxType$4 as TaxType, type Ticket$2 as Ticket, type TicketDetails$2 as TicketDetails, type context$d_TicketGuest as TicketGuest, type context$d_TicketGuestDetails as TicketGuestDetails, type context$d_TicketPdfResolveDelayed as TicketPdfResolveDelayed, type context$d_TicketPdfResolved as TicketPdfResolved, type Ticketing$3 as Ticketing, type TicketingConfig$3 as TicketingConfig, type TicketingSummary$3 as TicketingSummary, type TicketsUnavailableMessages$3 as TicketsUnavailableMessages, type TimeDuration$1 as TimeDuration, type context$d_TriggerNotificationOptions as TriggerNotificationOptions, type context$d_TriggerNotificationRequest as TriggerNotificationRequest, type context$d_TriggerNotificationRequestGuestsOneOf as TriggerNotificationRequestGuestsOneOf, type context$d_TriggerNotificationRequestNotificationOneOf as TriggerNotificationRequestNotificationOneOf, type context$d_TriggerNotificationResponse as TriggerNotificationResponse, type context$d_UnprocessedTargetEvent as UnprocessedTargetEvent, type context$d_UpsertNotificationConfig as UpsertNotificationConfig, type context$d_UpsertNotificationConfigRequest as UpsertNotificationConfigRequest, type context$d_UpsertNotificationConfigResponse as UpsertNotificationConfigResponse, type context$d_UpsertNotificationConfigResponseNonNullableFields as UpsertNotificationConfigResponseNonNullableFields, ValueType$3 as ValueType, VisitorType$3 as VisitorType, WebhookIdentityType$b as WebhookIdentityType, type context$d__publicOnNotificationConfigCreatedType as _publicOnNotificationConfigCreatedType, type context$d__publicOnNotificationConfigDeletedType as _publicOnNotificationConfigDeletedType, type context$d__publicOnNotificationConfigUpdatedType as _publicOnNotificationConfigUpdatedType, type context$d__publicResolveNotificationConfigType as _publicResolveNotificationConfigType, type context$d__publicTriggerNotificationType as _publicTriggerNotificationType, type context$d__publicUpsertNotificationConfigType as _publicUpsertNotificationConfigType, context$d_onNotificationConfigCreated as onNotificationConfigCreated, context$d_onNotificationConfigDeleted as onNotificationConfigDeleted, context$d_onNotificationConfigUpdated as onNotificationConfigUpdated, onNotificationConfigCreated$1 as publicOnNotificationConfigCreated, onNotificationConfigDeleted$1 as publicOnNotificationConfigDeleted, onNotificationConfigUpdated$1 as publicOnNotificationConfigUpdated, context$d_resolveNotificationConfig as resolveNotificationConfig, context$d_triggerNotification as triggerNotification, context$d_upsertNotificationConfig as upsertNotificationConfig };
3943
+ export { type context$d_Action as Action, type ActionEvent$7 as ActionEvent, type context$d_ActionInfoOneOf as ActionInfoOneOf, type context$d_ActionSettings as ActionSettings, type Address$8 as Address, type AddressLocation$8 as AddressLocation, type AddressStreetOneOf$8 as AddressStreetOneOf, type Agenda$3 as Agenda, type context$d_AppDefinedAction as AppDefinedAction, type context$d_ApplicationOrigin as ApplicationOrigin, context$d_AttendanceStatus as AttendanceStatus, type context$d_AuditInfo as AuditInfo, type context$d_AuditInfoIdOneOf as AuditInfoIdOneOf, type context$d_Automation as Automation, type context$d_AutomationConfiguration as AutomationConfiguration, type context$d_AutomationOriginInfoOneOf as AutomationOriginInfoOneOf, type context$d_AutomationSettings as AutomationSettings, type BaseEventMetadata$a as BaseEventMetadata, type CalendarLinks$5 as CalendarLinks, type Category$4 as Category, type CategoryCounts$4 as CategoryCounts, type CheckIn$3 as CheckIn, type CheckoutFormMessages$3 as CheckoutFormMessages, type CommonAddress$1 as CommonAddress, type CommonAddressLocation$1 as CommonAddressLocation, type CommonAddressStreetOneOf$1 as CommonAddressStreetOneOf, type CommonStreetAddress$1 as CommonStreetAddress, type CommonSubdivision$1 as CommonSubdivision, type context$d_ConditionAction as ConditionAction, type context$d_ConditionExpressionGroup as ConditionExpressionGroup, ConferenceType$3 as ConferenceType, type context$d_ContactEventStatusUpdated as ContactEventStatusUpdated, context$d_ContactEventStatusUpdatedEventType as ContactEventStatusUpdatedEventType, type CouponDiscount$1 as CouponDiscount, type Dashboard$5 as Dashboard, type context$d_DelayAction as DelayAction, type context$d_DeletedWithEntity as DeletedWithEntity, type Discount$1 as Discount, type DiscountItem$1 as DiscountItem, type DiscountItemDiscountOneOf$1 as DiscountItemDiscountOneOf, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type context$d_DraftInfo as DraftInfo, type context$d_EmailNotificationConfig as EmailNotificationConfig, context$d_EmailNotificationReminderTime as EmailNotificationReminderTime, context$d_EmailNotificationType as EmailNotificationType, type context$d_EmailTemplate as EmailTemplate, type Empty$4 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type Event$3 as Event, type EventCanceled$2 as EventCanceled, type EventCopied$3 as EventCopied, type EventDeleted$2 as EventDeleted, type EventDisplaySettings$3 as EventDisplaySettings, type EventEnded$2 as EventEnded, type context$d_EventGuest as EventGuest, type context$d_EventGuests as EventGuests, type EventMetadata$5 as EventMetadata, type EventReminder$1 as EventReminder, EventStatus$5 as EventStatus, EventType$3 as EventType, type EventUpdated$3 as EventUpdated, type ExternalEvent$3 as ExternalEvent, type Fee$1 as Fee, FeeName$1 as FeeName, FeeType$2 as FeeType, type Feed$3 as Feed, type File$1 as File, type context$d_Filter as Filter, type Form$3 as Form, type FormMessages$3 as FormMessages, type FormResponse$3 as FormResponse, type FormattedAddress$3 as FormattedAddress, type context$d_FutureDateActivationOffset as FutureDateActivationOffset, type Guest$2 as Guest, type context$d_GuestCountUpdate as GuestCountUpdate, type context$d_GuestCountUpdated as GuestCountUpdated, type GuestDetails$2 as GuestDetails, type GuestListConfig$3 as GuestListConfig, context$d_GuestType as GuestType, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type Input$3 as Input, type InputControl$3 as InputControl, InputControlType$3 as InputControlType, type InputValue$3 as InputValue, type Invoice$1 as Invoice, type Item$2 as Item, type Keyword$3 as Keyword, type Label$3 as Label, type LabellingSettings$3 as LabellingSettings, type Link$1 as Link, type Location$5 as Location, LocationType$5 as LocationType, type MapCoordinates$5 as MapCoordinates, type context$d_MemberEventStatusUpdated as MemberEventStatusUpdated, context$d_MemberEventStatusUpdatedEventType as MemberEventStatusUpdatedEventType, type MessageEnvelope$b as MessageEnvelope, type Money$6 as Money, type Negative$3 as Negative, type NegativeResponseConfirmation$3 as NegativeResponseConfirmation, type context$d_NotificationConfig as NotificationConfig, type context$d_NotificationConfigCreatedEnvelope as NotificationConfigCreatedEnvelope, type context$d_NotificationConfigDeletedEnvelope as NotificationConfigDeletedEnvelope, type context$d_NotificationConfigUpdatedEnvelope as NotificationConfigUpdatedEnvelope, context$d_NotifyActionType as NotifyActionType, type context$d_NotifyGuestAction as NotifyGuestAction, type Occurrence$5 as Occurrence, type OnlineConferencing$3 as OnlineConferencing, type OnlineConferencingConfig$3 as OnlineConferencingConfig, type OnlineConferencingLogin$3 as OnlineConferencingLogin, type OnlineConferencingSession$3 as OnlineConferencingSession, context$d_Operator as Operator, type OptionSelection$3 as OptionSelection, type OptionSelectionSelectedOptionOneOf$3 as OptionSelectionSelectedOptionOneOf, type OrderConfirmed$1 as OrderConfirmed, type context$d_OrderEmailAdded as OrderEmailAdded, type context$d_OrderGuest as OrderGuest, type OrderPaid$1 as OrderPaid, OrderStatus$2 as OrderStatus, context$d_Origin as Origin, type context$d_OutputAction as OutputAction, type PaidPlanDiscount$1 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$1 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$1 as PercentDiscount, type Positive$3 as Positive, type PositiveResponseConfirmation$3 as PositiveResponseConfirmation, type context$d_PreinstalledOrigin as PreinstalledOrigin, context$d_PushNotificationType as PushNotificationType, type context$d_RateLimit as RateLimit, type context$d_RateLimitAction as RateLimitAction, RecurrenceStatusStatus$1 as RecurrenceStatusStatus, type Recurrences$5 as Recurrences, type Registration$3 as Registration, type RegistrationClosedMessages$3 as RegistrationClosedMessages, RegistrationStatus$3 as RegistrationStatus, type context$d_ResolveEmailNotificationConfigRequest as ResolveEmailNotificationConfigRequest, type context$d_ResolveEmailNotificationConfigResponse as ResolveEmailNotificationConfigResponse, type context$d_ResolveNotificationConfigRequest as ResolveNotificationConfigRequest, type context$d_ResolveNotificationConfigResponse as ResolveNotificationConfigResponse, type context$d_ResolveNotificationConfigResponseNonNullableFields as ResolveNotificationConfigResponseNonNullableFields, type ResponseConfirmation$3 as ResponseConfirmation, type RestoreInfo$5 as RestoreInfo, type RsvpCollection$3 as RsvpCollection, type RsvpCollectionConfig$3 as RsvpCollectionConfig, type RsvpCreated$1 as RsvpCreated, type RsvpFormMessages$3 as RsvpFormMessages, type context$d_RsvpGuest as RsvpGuest, RsvpStatus$1 as RsvpStatus, RsvpStatusOptions$3 as RsvpStatusOptions, type RsvpSummary$4 as RsvpSummary, type RsvpUpdated$1 as RsvpUpdated, type ScheduleConfig$5 as ScheduleConfig, type Scheduling$3 as Scheduling, type SeoSchema$3 as SeoSchema, type SeoSettings$3 as SeoSettings, type Settings$4 as Settings, type SiteUrl$3 as SiteUrl, type StandardDetails$3 as StandardDetails, State$7 as State, Status$6 as Status, type StreetAddress$8 as StreetAddress, type Subdivision$8 as Subdivision, SubdivisionType$8 as SubdivisionType, type Tag$3 as Tag, type Target$1 as Target, context$d_TargetType as TargetType, type context$d_TaskContext as TaskContext, type Tax$1 as Tax, type TaxConfig$3 as TaxConfig, TaxType$4 as TaxType, type Ticket$2 as Ticket, type TicketDetails$2 as TicketDetails, type context$d_TicketGuest as TicketGuest, type context$d_TicketGuestDetails as TicketGuestDetails, type context$d_TicketPdfResolveDelayed as TicketPdfResolveDelayed, type context$d_TicketPdfResolved as TicketPdfResolved, type Ticketing$3 as Ticketing, type TicketingConfig$3 as TicketingConfig, type TicketingSummary$3 as TicketingSummary, type TicketsUnavailableMessages$3 as TicketsUnavailableMessages, type TimeDuration$1 as TimeDuration, context$d_TimeUnit as TimeUnit, type context$d_Trigger as Trigger, type context$d_TriggerNotificationOptions as TriggerNotificationOptions, type context$d_TriggerNotificationRequest as TriggerNotificationRequest, type context$d_TriggerNotificationRequestGuestsOneOf as TriggerNotificationRequestGuestsOneOf, type context$d_TriggerNotificationRequestNotificationOneOf as TriggerNotificationRequestNotificationOneOf, type context$d_TriggerNotificationResponse as TriggerNotificationResponse, Type$5 as Type, type context$d_UnprocessedTargetEvent as UnprocessedTargetEvent, type context$d_UpdatedWithPreviousEntity as UpdatedWithPreviousEntity, type context$d_UpsertNotificationConfig as UpsertNotificationConfig, type context$d_UpsertNotificationConfigRequest as UpsertNotificationConfigRequest, type context$d_UpsertNotificationConfigResponse as UpsertNotificationConfigResponse, type context$d_UpsertNotificationConfigResponseNonNullableFields as UpsertNotificationConfigResponseNonNullableFields, ValueType$3 as ValueType, VisitorType$3 as VisitorType, WebhookIdentityType$b as WebhookIdentityType, type context$d__publicOnNotificationConfigCreatedType as _publicOnNotificationConfigCreatedType, type context$d__publicOnNotificationConfigDeletedType as _publicOnNotificationConfigDeletedType, type context$d__publicOnNotificationConfigUpdatedType as _publicOnNotificationConfigUpdatedType, type context$d__publicResolveNotificationConfigType as _publicResolveNotificationConfigType, type context$d__publicTriggerNotificationType as _publicTriggerNotificationType, type context$d__publicUpsertNotificationConfigType as _publicUpsertNotificationConfigType, context$d_onNotificationConfigCreated as onNotificationConfigCreated, context$d_onNotificationConfigDeleted as onNotificationConfigDeleted, context$d_onNotificationConfigUpdated as onNotificationConfigUpdated, onNotificationConfigCreated$1 as publicOnNotificationConfigCreated, onNotificationConfigDeleted$1 as publicOnNotificationConfigDeleted, onNotificationConfigUpdated$1 as publicOnNotificationConfigUpdated, context$d_resolveNotificationConfig as resolveNotificationConfig, context$d_triggerNotification as triggerNotification, context$d_upsertNotificationConfig as upsertNotificationConfig };
3563
3944
  }
3564
3945
 
3565
3946
  /** Schedule item describes the schedule within an event. Each event may contain multiple schedule items. */
@@ -12517,10 +12898,10 @@ declare namespace context$6 {
12517
12898
  export { type ActionEvent$3 as ActionEvent, type Address$5 as Address, type AddressLocation$5 as AddressLocation, type AddressStreetOneOf$5 as AddressStreetOneOf, context$6_Alignment as Alignment, type context$6_AnchorData as AnchorData, type context$6_AppEmbedData as AppEmbedData, type context$6_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$6_AppType as AppType, type context$6_AudioData as AudioData, type context$6_Background as Background, type context$6_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$6_BackgroundType as BackgroundType, type BaseEventMetadata$6 as BaseEventMetadata, type context$6_BlockquoteData as BlockquoteData, type context$6_BookingData as BookingData, type context$6_Border as Border, type context$6_BorderColors as BorderColors, type context$6_BulletedListData as BulletedListData, type context$6_ButtonData as ButtonData, type context$6_CellStyle as CellStyle, type context$6_CodeBlockData as CodeBlockData, type context$6_CollapsibleListData as CollapsibleListData, type context$6_ColorData as ColorData, type context$6_Colors as Colors, type context$6_CreateRichContentRequest as CreateRichContentRequest, type context$6_CreateRichContentResponse as CreateRichContentResponse, type context$6_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, context$6_Crop as Crop, type CursorPaging$4 as CursorPaging, type context$6_CursorPagingMetadata as CursorPagingMetadata, type context$6_CursorQuery as CursorQuery, type context$6_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type Cursors$4 as Cursors, type context$6_Decoration as Decoration, type context$6_DecorationDataOneOf as DecorationDataOneOf, context$6_DecorationType as DecorationType, type context$6_DeleteRichContentRequest as DeleteRichContentRequest, type context$6_DeleteRichContentResponse as DeleteRichContentResponse, type context$6_Design as Design, type context$6_Dimensions as Dimensions, context$6_Direction as Direction, type context$6_DividerData as DividerData, type context$6_DocumentStyle as DocumentStyle, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type context$6_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type context$6_EventData as EventData, type EventMetadata$3 as EventMetadata, EventStatus$3 as EventStatus, type ExtendedFields$1 as ExtendedFields, type context$6_FileData as FileData, type context$6_FileSource as FileSource, type context$6_FileSourceDataOneOf as FileSourceDataOneOf, type context$6_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type context$6_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type context$6_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type context$6_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type context$6_FontSizeData as FontSizeData, context$6_FontType as FontType, type context$6_GIF as GIF, type context$6_GIFData as GIFData, type context$6_GalleryData as GalleryData, type context$6_GalleryOptions as GalleryOptions, type context$6_GetRichContentRequest as GetRichContentRequest, type context$6_GetRichContentResponse as GetRichContentResponse, type context$6_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type context$6_Gradient as Gradient, type context$6_HTMLData as HTMLData, type context$6_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$6_HeadingData as HeadingData, type context$6_Height as Height, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type context$6_Image as Image, type context$6_ImageData as ImageData, context$6_InitialExpandedItems as InitialExpandedItems, type context$6_Item as Item, type context$6_ItemDataOneOf as ItemDataOneOf, type context$6_ItemStyle as ItemStyle, type context$6_Layout as Layout, context$6_LayoutType as LayoutType, context$6_LineStyle as LineStyle, type context$6_Link as Link, type context$6_LinkData as LinkData, type context$6_LinkDataOneOf as LinkDataOneOf, type context$6_LinkPreviewData as LinkPreviewData, type context$6_ListValue as ListValue, type Location$3 as Location, LocationType$3 as LocationType, type MapCoordinates$3 as MapCoordinates, type context$6_MapData as MapData, type context$6_MapSettings as MapSettings, context$6_MapType as MapType, type context$6_Media as Media, type context$6_MentionData as MentionData, type MessageEnvelope$6 as MessageEnvelope, type context$6_Metadata as Metadata, type context$6_Node as Node, type context$6_NodeDataOneOf as NodeDataOneOf, type context$6_NodeStyle as NodeStyle, context$6_NodeType as NodeType, context$6_NullValue as NullValue, type Occurrence$3 as Occurrence, type context$6_Oembed as Oembed, type context$6_Option as Option, type context$6_OptionDesign as OptionDesign, type context$6_OptionLayout as OptionLayout, type context$6_OrderedListData as OrderedListData, context$6_Orientation as Orientation, type context$6_PDFSettings as PDFSettings, type context$6_ParagraphData as ParagraphData, type context$6_Permissions as Permissions, type context$6_PlaybackOptions as PlaybackOptions, type context$6_PluginContainerData as PluginContainerData, context$6_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$6_PluginContainerDataWidth as PluginContainerDataWidth, type context$6_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$6_Poll as Poll, type context$6_PollData as PollData, type context$6_PollDataLayout as PollDataLayout, type context$6_PollDesign as PollDesign, type context$6_PollLayout as PollLayout, context$6_PollLayoutDirection as PollLayoutDirection, context$6_PollLayoutType as PollLayoutType, type context$6_QueryRichContentsRequest as QueryRichContentsRequest, type context$6_QueryRichContentsResponse as QueryRichContentsResponse, type context$6_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$3 as Recurrences, type context$6_Rel as Rel, type RestoreInfo$2 as RestoreInfo, type context$6_RichContent as RichContent, type context$6_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type context$6_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type context$6_RichContentNonNullableFields as RichContentNonNullableFields, type context$6_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type context$6_RichContentsQueryBuilder as RichContentsQueryBuilder, type context$6_RichContentsQueryResult as RichContentsQueryResult, type ScheduleConfig$3 as ScheduleConfig, type Settings$2 as Settings, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, context$6_Source as Source, type context$6_Spoiler as Spoiler, type context$6_SpoilerData as SpoilerData, Status$3 as Status, type StreetAddress$5 as StreetAddress, type context$6_Styles as Styles, type Subdivision$5 as Subdivision, SubdivisionType$5 as SubdivisionType, type context$6_TableCellData as TableCellData, type context$6_TableData as TableData, context$6_Target as Target, context$6_TextAlignment as TextAlignment, type context$6_TextData as TextData, type context$6_TextNodeStyle as TextNodeStyle, type context$6_TextStyle as TextStyle, type context$6_Thumbnails as Thumbnails, context$6_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type context$6_UpdateRichContent as UpdateRichContent, type context$6_UpdateRichContentRequest as UpdateRichContentRequest, type context$6_UpdateRichContentResponse as UpdateRichContentResponse, type context$6_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type context$6_V1RichContent as V1RichContent, context$6_VerticalAlignment as VerticalAlignment, type context$6_Video as Video, type context$6_VideoData as VideoData, context$6_ViewMode as ViewMode, context$6_ViewRole as ViewRole, context$6_VoteRole as VoteRole, WebhookIdentityType$6 as WebhookIdentityType, context$6_Width as Width, context$6_WidthType as WidthType, type context$6__publicCreateRichContentType as _publicCreateRichContentType, type context$6__publicDeleteRichContentType as _publicDeleteRichContentType, type context$6__publicFindRichContentBySlugType as _publicFindRichContentBySlugType, type context$6__publicGetRichContentType as _publicGetRichContentType, type context$6__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type context$6__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type context$6__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, type context$6__publicQueryRichContentsType as _publicQueryRichContentsType, type context$6__publicUpdateRichContentType as _publicUpdateRichContentType, context$6_createRichContent as createRichContent, context$6_deleteRichContent as deleteRichContent, context$6_findRichContentBySlug as findRichContentBySlug, context$6_getRichContent as getRichContent, context$6_onRichContentCreated as onRichContentCreated, context$6_onRichContentDeleted as onRichContentDeleted, context$6_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, context$6_queryRichContents as queryRichContents, context$6_updateRichContent as updateRichContent };
12518
12899
  }
12519
12900
 
12520
- interface Rsvp {
12901
+ interface RsvpRsvp {
12521
12902
  /** RSVP ID. */
12522
12903
  _id?: string;
12523
- /** Event ID to which RSVP belongs. */
12904
+ /** Event ID. */
12524
12905
  eventId?: string;
12525
12906
  /** Contact ID associated with this RSVP. */
12526
12907
  contactId?: string;
@@ -12538,12 +12919,7 @@ interface Rsvp {
12538
12919
  email?: string;
12539
12920
  /** RSVP form response. */
12540
12921
  rsvpForm?: FormResponse$1;
12541
- /**
12542
- * RSVP response status. Possible values:
12543
- * - `Yes`
12544
- * - `No`
12545
- * - `Waiting`: a guest is in the waitlist.
12546
- */
12922
+ /** RSVP response status. */
12547
12923
  status?: RsvpStatus;
12548
12924
  /** Total number of attendees. */
12549
12925
  totalGuests?: number;
@@ -12719,7 +13095,7 @@ interface ListRsvpResponse {
12719
13095
  /** Limit. */
12720
13096
  limit?: number;
12721
13097
  /** RSVP list. */
12722
- rsvps?: Rsvp[];
13098
+ rsvps?: RsvpRsvp[];
12723
13099
  /** Facet query result. */
12724
13100
  facets?: Record<string, FacetCounts$4>;
12725
13101
  /** Rsvp data enriched facets. */
@@ -12788,7 +13164,7 @@ interface QueryRsvpResponse {
12788
13164
  /** Limit. */
12789
13165
  limit?: number;
12790
13166
  /** RSVP list. */
12791
- rsvps?: Rsvp[];
13167
+ rsvps?: RsvpRsvp[];
12792
13168
  /** Facet query result. */
12793
13169
  facets?: Record<string, FacetCounts$4>;
12794
13170
  /** Rsvp data enriched facets. */
@@ -12809,7 +13185,7 @@ interface GetRsvpRequest {
12809
13185
  }
12810
13186
  interface GetRsvpResponse {
12811
13187
  /** RSVP. */
12812
- rsvp?: Rsvp;
13188
+ rsvp?: RsvpRsvp;
12813
13189
  }
12814
13190
  interface CreateRsvpRequest {
12815
13191
  /** Event ID to which RSVP belongs. */
@@ -12841,7 +13217,7 @@ interface ModificationOptions {
12841
13217
  }
12842
13218
  interface CreateRsvpResponse {
12843
13219
  /** Created RSVP. */
12844
- rsvp?: Rsvp;
13220
+ rsvp?: RsvpRsvp;
12845
13221
  /** "Add to calendar" links. */
12846
13222
  calendarLinks?: CalendarLinks$2;
12847
13223
  }
@@ -12920,7 +13296,7 @@ interface UpdateRsvpRequest {
12920
13296
  }
12921
13297
  interface UpdateRsvpResponse {
12922
13298
  /** Updated RSVP. */
12923
- rsvp?: Rsvp;
13299
+ rsvp?: RsvpRsvp;
12924
13300
  }
12925
13301
  interface RsvpUpdated {
12926
13302
  /** RSVP updated timestamp in ISO UTC format. */
@@ -12976,16 +13352,20 @@ interface BulkUpdateRsvpRequest {
12976
13352
  }
12977
13353
  interface BulkUpdateRsvpResponse {
12978
13354
  /** Updated RSVPs. */
12979
- rsvps?: Rsvp[];
13355
+ rsvps?: RsvpRsvp[];
12980
13356
  }
12981
13357
  interface BulkUpdateRsvpContactIdRequest {
12982
- /** Event ID. */
12983
- eventId?: string | null;
12984
13358
  /** RSVPs to update. */
12985
- rsvpId?: string[] | null;
13359
+ rsvps?: Rsvp[];
12986
13360
  /** New RSVP contact ID. */
12987
13361
  contactId?: string | null;
12988
13362
  }
13363
+ interface Rsvp {
13364
+ /** Event ID to which RSVP belongs. */
13365
+ eventId?: string | null;
13366
+ /** Rsvp ID. */
13367
+ rsvpId?: string | null;
13368
+ }
12989
13369
  interface BulkUpdateRsvpContactIdResponse {
12990
13370
  }
12991
13371
  interface DeleteRsvpRequest {
@@ -13020,7 +13400,7 @@ interface CheckInRsvpRequest {
13020
13400
  }
13021
13401
  interface CheckInRsvpResponse {
13022
13402
  /** Updated RSVP. */
13023
- rsvp?: Rsvp;
13403
+ rsvp?: RsvpRsvp;
13024
13404
  }
13025
13405
  interface DeleteRsvpCheckInRequest {
13026
13406
  /** Event ID to which RSVP belongs. */
@@ -13032,7 +13412,7 @@ interface DeleteRsvpCheckInRequest {
13032
13412
  }
13033
13413
  interface DeleteRsvpCheckInResponse {
13034
13414
  /** Updated RSVP. */
13035
- rsvp?: Rsvp;
13415
+ rsvp?: RsvpRsvp;
13036
13416
  }
13037
13417
  interface FindRsvpSummaryRequest {
13038
13418
  /** Event id. */
@@ -13130,7 +13510,7 @@ interface GuestNonNullableFields {
13130
13510
  fullName: string;
13131
13511
  _id: number;
13132
13512
  }
13133
- interface RsvpNonNullableFields {
13513
+ interface RsvpRsvpNonNullableFields {
13134
13514
  _id: string;
13135
13515
  eventId: string;
13136
13516
  contactId: string;
@@ -13148,36 +13528,36 @@ interface ListRsvpResponseNonNullableFields {
13148
13528
  total: number;
13149
13529
  offset: number;
13150
13530
  limit: number;
13151
- rsvps: RsvpNonNullableFields[];
13531
+ rsvps: RsvpRsvpNonNullableFields[];
13152
13532
  }
13153
13533
  interface QueryRsvpResponseNonNullableFields {
13154
13534
  total: number;
13155
13535
  offset: number;
13156
13536
  limit: number;
13157
- rsvps: RsvpNonNullableFields[];
13537
+ rsvps: RsvpRsvpNonNullableFields[];
13158
13538
  }
13159
13539
  interface GetRsvpResponseNonNullableFields {
13160
- rsvp?: RsvpNonNullableFields;
13540
+ rsvp?: RsvpRsvpNonNullableFields;
13161
13541
  }
13162
13542
  interface CalendarLinksNonNullableFields {
13163
13543
  google: string;
13164
13544
  ics: string;
13165
13545
  }
13166
13546
  interface CreateRsvpResponseNonNullableFields {
13167
- rsvp?: RsvpNonNullableFields;
13547
+ rsvp?: RsvpRsvpNonNullableFields;
13168
13548
  calendarLinks?: CalendarLinksNonNullableFields;
13169
13549
  }
13170
13550
  interface UpdateRsvpResponseNonNullableFields {
13171
- rsvp?: RsvpNonNullableFields;
13551
+ rsvp?: RsvpRsvpNonNullableFields;
13172
13552
  }
13173
13553
  interface BulkUpdateRsvpResponseNonNullableFields {
13174
- rsvps: RsvpNonNullableFields[];
13554
+ rsvps: RsvpRsvpNonNullableFields[];
13175
13555
  }
13176
13556
  interface CheckInRsvpResponseNonNullableFields {
13177
- rsvp?: RsvpNonNullableFields;
13557
+ rsvp?: RsvpRsvpNonNullableFields;
13178
13558
  }
13179
13559
  interface DeleteRsvpCheckInResponseNonNullableFields {
13180
- rsvp?: RsvpNonNullableFields;
13560
+ rsvp?: RsvpRsvpNonNullableFields;
13181
13561
  }
13182
13562
  interface BaseEventMetadata$5 {
13183
13563
  /** App instance ID. */
@@ -13377,7 +13757,7 @@ interface GetRsvpSignature {
13377
13757
  * @param - Optional fields.
13378
13758
  * @returns RSVP.
13379
13759
  */
13380
- (rsvpId: string, options?: GetRsvpOptions | undefined): Promise<Rsvp & RsvpNonNullableFields>;
13760
+ (rsvpId: string, options?: GetRsvpOptions | undefined): Promise<RsvpRsvp & RsvpRsvpNonNullableFields>;
13381
13761
  }
13382
13762
  declare function createRsvp$1(httpClient: HttpClient): CreateRsvpSignature;
13383
13763
  interface CreateRsvpSignature {
@@ -13520,7 +13900,8 @@ type context$5_RsvpFacetCounts = RsvpFacetCounts;
13520
13900
  type context$5_RsvpFacets = RsvpFacets;
13521
13901
  type context$5_RsvpFieldset = RsvpFieldset;
13522
13902
  declare const context$5_RsvpFieldset: typeof RsvpFieldset;
13523
- type context$5_RsvpNonNullableFields = RsvpNonNullableFields;
13903
+ type context$5_RsvpRsvp = RsvpRsvp;
13904
+ type context$5_RsvpRsvpNonNullableFields = RsvpRsvpNonNullableFields;
13524
13905
  type context$5_RsvpStatus = RsvpStatus;
13525
13906
  declare const context$5_RsvpStatus: typeof RsvpStatus;
13526
13907
  type context$5_RsvpTag = RsvpTag;
@@ -13556,7 +13937,7 @@ declare const context$5_onRsvpUpdated: typeof onRsvpUpdated;
13556
13937
  declare const context$5_queryRsvp: typeof queryRsvp;
13557
13938
  declare const context$5_updateRsvp: typeof updateRsvp;
13558
13939
  declare namespace context$5 {
13559
- export { type Address$4 as Address, type AddressLocation$4 as AddressLocation, type AddressStreetOneOf$4 as AddressStreetOneOf, type BaseEventMetadata$5 as BaseEventMetadata, type context$5_BulkUpdateRsvpContactIdRequest as BulkUpdateRsvpContactIdRequest, type context$5_BulkUpdateRsvpContactIdResponse as BulkUpdateRsvpContactIdResponse, type context$5_BulkUpdateRsvpOptions as BulkUpdateRsvpOptions, type context$5_BulkUpdateRsvpRequest as BulkUpdateRsvpRequest, type context$5_BulkUpdateRsvpResponse as BulkUpdateRsvpResponse, type context$5_BulkUpdateRsvpResponseNonNullableFields as BulkUpdateRsvpResponseNonNullableFields, type CalendarLinks$2 as CalendarLinks, type CheckIn$1 as CheckIn, type context$5_CheckInRsvpOptions as CheckInRsvpOptions, type context$5_CheckInRsvpRequest as CheckInRsvpRequest, type context$5_CheckInRsvpResponse as CheckInRsvpResponse, type context$5_CheckInRsvpResponseNonNullableFields as CheckInRsvpResponseNonNullableFields, type context$5_CountRsvpAttendingGuestsRequest as CountRsvpAttendingGuestsRequest, type context$5_CountRsvpAttendingGuestsResponse as CountRsvpAttendingGuestsResponse, type Counts$1 as Counts, type context$5_CreateRsvpOptions as CreateRsvpOptions, type context$5_CreateRsvpRequest as CreateRsvpRequest, type context$5_CreateRsvpResponse as CreateRsvpResponse, type context$5_CreateRsvpResponseNonNullableFields as CreateRsvpResponseNonNullableFields, type context$5_DeleteRsvpCheckInOptions as DeleteRsvpCheckInOptions, type context$5_DeleteRsvpCheckInRequest as DeleteRsvpCheckInRequest, type context$5_DeleteRsvpCheckInResponse as DeleteRsvpCheckInResponse, type context$5_DeleteRsvpCheckInResponseNonNullableFields as DeleteRsvpCheckInResponseNonNullableFields, type context$5_DeleteRsvpOptions as DeleteRsvpOptions, type context$5_DeleteRsvpRequest as DeleteRsvpRequest, type context$5_DeleteRsvpResponse as DeleteRsvpResponse, type FacetCounts$4 as FacetCounts, type context$5_FindRsvpSummaryRequest as FindRsvpSummaryRequest, type context$5_FindRsvpSummaryResponse as FindRsvpSummaryResponse, type FormResponse$1 as FormResponse, type FormattedAddress$1 as FormattedAddress, type context$5_GetRsvpOptions as GetRsvpOptions, type context$5_GetRsvpRequest as GetRsvpRequest, type context$5_GetRsvpResponse as GetRsvpResponse, type context$5_GetRsvpResponseNonNullableFields as GetRsvpResponseNonNullableFields, type context$5_Guest as Guest, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type InputValue$1 as InputValue, type context$5_ListRsvpOptions as ListRsvpOptions, type context$5_ListRsvpRequest as ListRsvpRequest, type context$5_ListRsvpResponse as ListRsvpResponse, type context$5_ListRsvpResponseNonNullableFields as ListRsvpResponseNonNullableFields, type MessageEnvelope$5 as MessageEnvelope, type context$5_ModificationOptions as ModificationOptions, type OnlineConferencingLogin$1 as OnlineConferencingLogin, type context$5_QueryRsvpOptions as QueryRsvpOptions, type context$5_QueryRsvpRequest as QueryRsvpRequest, type context$5_QueryRsvpResponse as QueryRsvpResponse, type context$5_QueryRsvpResponseNonNullableFields as QueryRsvpResponseNonNullableFields, type context$5_Rsvp as Rsvp, type context$5_RsvpCreated as RsvpCreated, type context$5_RsvpCreatedEnvelope as RsvpCreatedEnvelope, type context$5_RsvpDeleted as RsvpDeleted, type context$5_RsvpDeletedEnvelope as RsvpDeletedEnvelope, type context$5_RsvpFacetCounts as RsvpFacetCounts, type context$5_RsvpFacets as RsvpFacets, context$5_RsvpFieldset as RsvpFieldset, type context$5_RsvpNonNullableFields as RsvpNonNullableFields, context$5_RsvpStatus as RsvpStatus, type RsvpSummary$2 as RsvpSummary, context$5_RsvpTag as RsvpTag, type context$5_RsvpUpdated as RsvpUpdated, type context$5_RsvpUpdatedEnvelope as RsvpUpdatedEnvelope, type StandardDetails$1 as StandardDetails, type StreetAddress$4 as StreetAddress, type Subdivision$4 as Subdivision, SubdivisionType$4 as SubdivisionType, type context$5_UpdateRsvpOptions as UpdateRsvpOptions, type context$5_UpdateRsvpRequest as UpdateRsvpRequest, type context$5_UpdateRsvpResponse as UpdateRsvpResponse, type context$5_UpdateRsvpResponseNonNullableFields as UpdateRsvpResponseNonNullableFields, WebhookIdentityType$5 as WebhookIdentityType, type context$5__publicBulkUpdateRsvpType as _publicBulkUpdateRsvpType, type context$5__publicCheckInRsvpType as _publicCheckInRsvpType, type context$5__publicCreateRsvpType as _publicCreateRsvpType, type context$5__publicDeleteRsvpCheckInType as _publicDeleteRsvpCheckInType, type context$5__publicDeleteRsvpType as _publicDeleteRsvpType, type context$5__publicGetRsvpType as _publicGetRsvpType, type context$5__publicListRsvpType as _publicListRsvpType, type context$5__publicOnRsvpCreatedType as _publicOnRsvpCreatedType, type context$5__publicOnRsvpDeletedType as _publicOnRsvpDeletedType, type context$5__publicOnRsvpUpdatedType as _publicOnRsvpUpdatedType, type context$5__publicQueryRsvpType as _publicQueryRsvpType, type context$5__publicUpdateRsvpType as _publicUpdateRsvpType, context$5_bulkUpdateRsvp as bulkUpdateRsvp, context$5_checkInRsvp as checkInRsvp, context$5_createRsvp as createRsvp, context$5_deleteRsvp as deleteRsvp, context$5_deleteRsvpCheckIn as deleteRsvpCheckIn, context$5_getRsvp as getRsvp, context$5_listRsvp as listRsvp, context$5_onRsvpCreated as onRsvpCreated, context$5_onRsvpDeleted as onRsvpDeleted, context$5_onRsvpUpdated as onRsvpUpdated, onRsvpCreated$1 as publicOnRsvpCreated, onRsvpDeleted$1 as publicOnRsvpDeleted, onRsvpUpdated$1 as publicOnRsvpUpdated, context$5_queryRsvp as queryRsvp, context$5_updateRsvp as updateRsvp };
13940
+ export { type Address$4 as Address, type AddressLocation$4 as AddressLocation, type AddressStreetOneOf$4 as AddressStreetOneOf, type BaseEventMetadata$5 as BaseEventMetadata, type context$5_BulkUpdateRsvpContactIdRequest as BulkUpdateRsvpContactIdRequest, type context$5_BulkUpdateRsvpContactIdResponse as BulkUpdateRsvpContactIdResponse, type context$5_BulkUpdateRsvpOptions as BulkUpdateRsvpOptions, type context$5_BulkUpdateRsvpRequest as BulkUpdateRsvpRequest, type context$5_BulkUpdateRsvpResponse as BulkUpdateRsvpResponse, type context$5_BulkUpdateRsvpResponseNonNullableFields as BulkUpdateRsvpResponseNonNullableFields, type CalendarLinks$2 as CalendarLinks, type CheckIn$1 as CheckIn, type context$5_CheckInRsvpOptions as CheckInRsvpOptions, type context$5_CheckInRsvpRequest as CheckInRsvpRequest, type context$5_CheckInRsvpResponse as CheckInRsvpResponse, type context$5_CheckInRsvpResponseNonNullableFields as CheckInRsvpResponseNonNullableFields, type context$5_CountRsvpAttendingGuestsRequest as CountRsvpAttendingGuestsRequest, type context$5_CountRsvpAttendingGuestsResponse as CountRsvpAttendingGuestsResponse, type Counts$1 as Counts, type context$5_CreateRsvpOptions as CreateRsvpOptions, type context$5_CreateRsvpRequest as CreateRsvpRequest, type context$5_CreateRsvpResponse as CreateRsvpResponse, type context$5_CreateRsvpResponseNonNullableFields as CreateRsvpResponseNonNullableFields, type context$5_DeleteRsvpCheckInOptions as DeleteRsvpCheckInOptions, type context$5_DeleteRsvpCheckInRequest as DeleteRsvpCheckInRequest, type context$5_DeleteRsvpCheckInResponse as DeleteRsvpCheckInResponse, type context$5_DeleteRsvpCheckInResponseNonNullableFields as DeleteRsvpCheckInResponseNonNullableFields, type context$5_DeleteRsvpOptions as DeleteRsvpOptions, type context$5_DeleteRsvpRequest as DeleteRsvpRequest, type context$5_DeleteRsvpResponse as DeleteRsvpResponse, type FacetCounts$4 as FacetCounts, type context$5_FindRsvpSummaryRequest as FindRsvpSummaryRequest, type context$5_FindRsvpSummaryResponse as FindRsvpSummaryResponse, type FormResponse$1 as FormResponse, type FormattedAddress$1 as FormattedAddress, type context$5_GetRsvpOptions as GetRsvpOptions, type context$5_GetRsvpRequest as GetRsvpRequest, type context$5_GetRsvpResponse as GetRsvpResponse, type context$5_GetRsvpResponseNonNullableFields as GetRsvpResponseNonNullableFields, type context$5_Guest as Guest, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type InputValue$1 as InputValue, type context$5_ListRsvpOptions as ListRsvpOptions, type context$5_ListRsvpRequest as ListRsvpRequest, type context$5_ListRsvpResponse as ListRsvpResponse, type context$5_ListRsvpResponseNonNullableFields as ListRsvpResponseNonNullableFields, type MessageEnvelope$5 as MessageEnvelope, type context$5_ModificationOptions as ModificationOptions, type OnlineConferencingLogin$1 as OnlineConferencingLogin, type context$5_QueryRsvpOptions as QueryRsvpOptions, type context$5_QueryRsvpRequest as QueryRsvpRequest, type context$5_QueryRsvpResponse as QueryRsvpResponse, type context$5_QueryRsvpResponseNonNullableFields as QueryRsvpResponseNonNullableFields, type context$5_Rsvp as Rsvp, type context$5_RsvpCreated as RsvpCreated, type context$5_RsvpCreatedEnvelope as RsvpCreatedEnvelope, type context$5_RsvpDeleted as RsvpDeleted, type context$5_RsvpDeletedEnvelope as RsvpDeletedEnvelope, type context$5_RsvpFacetCounts as RsvpFacetCounts, type context$5_RsvpFacets as RsvpFacets, context$5_RsvpFieldset as RsvpFieldset, type context$5_RsvpRsvp as RsvpRsvp, type context$5_RsvpRsvpNonNullableFields as RsvpRsvpNonNullableFields, context$5_RsvpStatus as RsvpStatus, type RsvpSummary$2 as RsvpSummary, context$5_RsvpTag as RsvpTag, type context$5_RsvpUpdated as RsvpUpdated, type context$5_RsvpUpdatedEnvelope as RsvpUpdatedEnvelope, type StandardDetails$1 as StandardDetails, type StreetAddress$4 as StreetAddress, type Subdivision$4 as Subdivision, SubdivisionType$4 as SubdivisionType, type context$5_UpdateRsvpOptions as UpdateRsvpOptions, type context$5_UpdateRsvpRequest as UpdateRsvpRequest, type context$5_UpdateRsvpResponse as UpdateRsvpResponse, type context$5_UpdateRsvpResponseNonNullableFields as UpdateRsvpResponseNonNullableFields, WebhookIdentityType$5 as WebhookIdentityType, type context$5__publicBulkUpdateRsvpType as _publicBulkUpdateRsvpType, type context$5__publicCheckInRsvpType as _publicCheckInRsvpType, type context$5__publicCreateRsvpType as _publicCreateRsvpType, type context$5__publicDeleteRsvpCheckInType as _publicDeleteRsvpCheckInType, type context$5__publicDeleteRsvpType as _publicDeleteRsvpType, type context$5__publicGetRsvpType as _publicGetRsvpType, type context$5__publicListRsvpType as _publicListRsvpType, type context$5__publicOnRsvpCreatedType as _publicOnRsvpCreatedType, type context$5__publicOnRsvpDeletedType as _publicOnRsvpDeletedType, type context$5__publicOnRsvpUpdatedType as _publicOnRsvpUpdatedType, type context$5__publicQueryRsvpType as _publicQueryRsvpType, type context$5__publicUpdateRsvpType as _publicUpdateRsvpType, context$5_bulkUpdateRsvp as bulkUpdateRsvp, context$5_checkInRsvp as checkInRsvp, context$5_createRsvp as createRsvp, context$5_deleteRsvp as deleteRsvp, context$5_deleteRsvpCheckIn as deleteRsvpCheckIn, context$5_getRsvp as getRsvp, context$5_listRsvp as listRsvp, context$5_onRsvpCreated as onRsvpCreated, context$5_onRsvpDeleted as onRsvpDeleted, context$5_onRsvpUpdated as onRsvpUpdated, onRsvpCreated$1 as publicOnRsvpCreated, onRsvpDeleted$1 as publicOnRsvpDeleted, onRsvpUpdated$1 as publicOnRsvpUpdated, context$5_queryRsvp as queryRsvp, context$5_updateRsvp as updateRsvp };
13560
13941
  }
13561
13942
 
13562
13943
  interface TicketingTicket {