@wix/auto_sdk_events_notifications 1.0.26 → 1.0.28

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.
@@ -1,3 +1,5 @@
1
+ import { NonNullablePaths } from '@wix/sdk-types';
2
+
1
3
  interface NotificationConfig {
2
4
  /**
3
5
  * Event ID.
@@ -441,6 +443,8 @@ declare enum SubdivisionType {
441
443
  /** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
442
444
  COUNTRY = "COUNTRY"
443
445
  }
446
+ /** @enumType */
447
+ type SubdivisionTypeWithLiterals = SubdivisionType | 'UNKNOWN_SUBDIVISION_TYPE' | 'ADMINISTRATIVE_AREA_LEVEL_1' | 'ADMINISTRATIVE_AREA_LEVEL_2' | 'ADMINISTRATIVE_AREA_LEVEL_3' | 'ADMINISTRATIVE_AREA_LEVEL_4' | 'ADMINISTRATIVE_AREA_LEVEL_5' | 'COUNTRY';
444
448
  interface ScheduleConfig {
445
449
  /**
446
450
  * Defines event as TBD (To Be Determined) schedule.
@@ -779,7 +783,7 @@ interface Money {
779
783
  */
780
784
  amount?: string;
781
785
  /**
782
- * Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
786
+ * 3-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. For example, `USD`.
783
787
  * @format CURRENCY
784
788
  */
785
789
  currency?: string;
@@ -2719,6 +2723,8 @@ declare enum NullValue {
2719
2723
  /** Null value. */
2720
2724
  NULL_VALUE = "NULL_VALUE"
2721
2725
  }
2726
+ /** @enumType */
2727
+ type NullValueWithLiterals = NullValue | 'NULL_VALUE';
2722
2728
  /**
2723
2729
  * `ListValue` is a wrapper around a repeated field of values.
2724
2730
  *
@@ -2891,24 +2897,24 @@ interface OrderConfirmed {
2891
2897
  }
2892
2898
  interface FormResponse {
2893
2899
  /**
2894
- * Input values entered when filling the form.
2900
+ * Form field inputs.
2895
2901
  * @maxSize 200
2896
2902
  */
2897
2903
  inputValues?: InputValue[];
2898
2904
  }
2899
2905
  interface InputValue {
2900
2906
  /**
2901
- * Input field name.
2907
+ * Form field input name.
2902
2908
  * @maxLength 100
2903
2909
  */
2904
2910
  inputName?: string;
2905
2911
  /**
2906
- * Text entered into the input field.
2912
+ * Form field value.
2907
2913
  * @maxLength 5000
2908
2914
  */
2909
2915
  value?: string;
2910
2916
  /**
2911
- * Multiple input values. For example, the array is filled if several checkboxes are ticked.
2917
+ * Form field values.
2912
2918
  * @maxSize 100
2913
2919
  * @maxLength 5000
2914
2920
  */
@@ -2916,11 +2922,11 @@ interface InputValue {
2916
2922
  }
2917
2923
  interface FormattedAddress {
2918
2924
  /**
2919
- * One line address representation.
2925
+ * 1-line address representation.
2920
2926
  * @maxLength 200
2921
2927
  */
2922
2928
  formatted?: string;
2923
- /** Address components (optional). */
2929
+ /** Address components. */
2924
2930
  address?: CommonAddress;
2925
2931
  }
2926
2932
  /** Physical address */
@@ -2977,7 +2983,7 @@ interface StandardDetails {
2977
2983
  iso31662?: string | null;
2978
2984
  }
2979
2985
  declare enum OrderStatus {
2980
- /** Order status is not available for this request fieldset. */
2986
+ /** Order status isn't available for this request fieldset. */
2981
2987
  NA_ORDER_STATUS = "NA_ORDER_STATUS",
2982
2988
  /** Order is confirmed, no payment is required. */
2983
2989
  FREE = "FREE",
@@ -2985,9 +2991,9 @@ declare enum OrderStatus {
2985
2991
  PENDING = "PENDING",
2986
2992
  /** Order is paid. */
2987
2993
  PAID = "PAID",
2988
- /** Order is confirmed but has be paid via offline payment. Status needs to be manually updated to `"PAID"`. */
2994
+ /** Order is confirmed but must be paid via offline payment. Status needs to be manually updated to `"PAID"`. */
2989
2995
  OFFLINE_PENDING = "OFFLINE_PENDING",
2990
- /** Order is awaiting for payment at the cashier. */
2996
+ /** Order is waiting for payment at the cashier. */
2991
2997
  INITIATED = "INITIATED",
2992
2998
  /** Order is canceled. */
2993
2999
  CANCELED = "CANCELED",
@@ -3051,7 +3057,7 @@ interface Ticket {
3051
3057
  canceled?: boolean | null;
3052
3058
  }
3053
3059
  interface CheckIn {
3054
- /** Time of check-in. */
3060
+ /** Time of a ticket's check-in. */
3055
3061
  created?: Date | null;
3056
3062
  }
3057
3063
  interface OnlineConferencingLogin {
@@ -3084,8 +3090,8 @@ interface Invoice {
3084
3090
  * Total amount of a cart after discount, tax, and fees.
3085
3091
  * Grand total is calculated in the following order:
3086
3092
  * 1. Total prices of all items in the cart are calculated.
3087
- * 2. Discount is subtracted from the cart (if applicable).
3088
- * 3. Tax is added (if applicable).
3093
+ * 2. Discount is subtracted from the cart, if applicable.
3094
+ * 3. Tax is added, if applicable.
3089
3095
  * 4. Wix ticket service fee is added.
3090
3096
  */
3091
3097
  grandTotal?: Money;
@@ -3094,7 +3100,7 @@ interface Invoice {
3094
3100
  * @readonly
3095
3101
  */
3096
3102
  fees?: Fee[];
3097
- /** Total revenue, excluding fees. (Taxes and payment provider fees are not deducted). */
3103
+ /** Total revenue, excluding fees. Taxes and payment provider fees aren't deducted. */
3098
3104
  revenue?: Money;
3099
3105
  /** Invoice preview URL. Only returned if the order is paid. */
3100
3106
  previewUrl?: string | null;
@@ -3771,10 +3777,63 @@ interface NotificationConfigCreatedEnvelope {
3771
3777
  entity: NotificationConfig;
3772
3778
  metadata: EventMetadata;
3773
3779
  }
3780
+ /** @permissionScope Read Events - all read permissions
3781
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.READ-EVENTS
3782
+ * @permissionScope Manage Events - all permissions
3783
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
3784
+ * @permissionScope Manage Events
3785
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
3786
+ * @permissionScope Read Events
3787
+ * @permissionScopeId SCOPE.DC-EVENTS.READ-EVENTS
3788
+ * @permissionScope Manage Guest List
3789
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-GUEST-LIST
3790
+ * @permissionScope Manage Events
3791
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-EVENTS
3792
+ * @permissionId WIX_EVENTS.READ_NOTIFICATION_CONFIG
3793
+ * @webhook
3794
+ * @eventType wix.events.notifications.v2.notification_config_created
3795
+ * @serviceIdentifier wix.events.notifications.v2.NotificationConfigManagement
3796
+ * @slug created
3797
+ * @documentationMaturity preview
3798
+ */
3799
+ declare function onNotificationConfigCreated(handler: (event: NotificationConfigCreatedEnvelope) => void | Promise<void>): void;
3774
3800
  interface NotificationConfigUpdatedEnvelope {
3775
3801
  entity: NotificationConfig;
3776
3802
  metadata: EventMetadata;
3777
3803
  }
3804
+ /** @permissionScope Read Events - all read permissions
3805
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.READ-EVENTS
3806
+ * @permissionScope Manage Events - all permissions
3807
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
3808
+ * @permissionScope Manage Events
3809
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
3810
+ * @permissionScope Read Events
3811
+ * @permissionScopeId SCOPE.DC-EVENTS.READ-EVENTS
3812
+ * @permissionScope Manage Guest List
3813
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-GUEST-LIST
3814
+ * @permissionScope Manage Events
3815
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-EVENTS
3816
+ * @permissionId WIX_EVENTS.READ_NOTIFICATION_CONFIG
3817
+ * @webhook
3818
+ * @eventType wix.events.notifications.v2.notification_config_updated
3819
+ * @serviceIdentifier wix.events.notifications.v2.NotificationConfigManagement
3820
+ * @slug updated
3821
+ * @documentationMaturity preview
3822
+ */
3823
+ declare function onNotificationConfigUpdated(handler: (event: NotificationConfigUpdatedEnvelope) => void | Promise<void>): void;
3824
+ type NotificationConfigNonNullablePaths = `rsvpConfirmation.notificationType` | `rsvpConfirmation.reminderTime` | `newSpotsAvailable.notificationType` | `newSpotsAvailable.reminderTime` | `eventCancelation.notificationType` | `eventCancelation.reminderTime` | `upcomingEventReminder.notificationType` | `upcomingEventReminder.reminderTime` | `orderConfirmation.notificationType` | `orderConfirmation.reminderTime` | `ticketConfirmation.notificationType` | `ticketConfirmation.reminderTime` | `invoice.notificationType` | `invoice.reminderTime` | `orderConfirmationWithTicketsLink.notificationType` | `orderConfirmationWithTicketsLink.reminderTime`;
3825
+ /**
3826
+ * Triggers notification
3827
+ * @public
3828
+ * @documentationMaturity preview
3829
+ * @requiredField options
3830
+ * @requiredField options.guests
3831
+ * @requiredField options.notification
3832
+ * @permissionId WIX_EVENTS.MANAGE
3833
+ * @applicableIdentity APP
3834
+ * @fqn wix.events.notifications.v2.NotificationService.TriggerNotification
3835
+ */
3836
+ declare function triggerNotification(options: TriggerNotificationOptions): Promise<void>;
3778
3837
  interface TriggerNotificationOptions extends TriggerNotificationOptionsNotificationOneOf, TriggerNotificationOptionsGuestsOneOf {
3779
3838
  /** Email notification type */
3780
3839
  emailNotificationType?: EmailNotificationTypeWithLiterals;
@@ -3807,6 +3866,33 @@ interface TriggerNotificationOptionsGuestsOneOf {
3807
3866
  /** Ticket guests info */
3808
3867
  ticketGuest?: TicketGuest;
3809
3868
  }
3869
+ /**
3870
+ * Resolves a NotificationConfig by id. Returns saved value or default value if not saved yet.
3871
+ * @param notificationConfigId - Id of the NotificationConfig to retrieve
3872
+ * @public
3873
+ * @documentationMaturity preview
3874
+ * @requiredField notificationConfigId
3875
+ * @permissionId WIX_EVENTS.READ_NOTIFICATION_CONFIG
3876
+ * @applicableIdentity APP
3877
+ * @fqn wix.events.notifications.v2.NotificationConfigManagement.ResolveNotificationConfig
3878
+ */
3879
+ declare function resolveNotificationConfig(notificationConfigId: string): Promise<NonNullablePaths<ResolveNotificationConfigResponse, {
3880
+ [P in NotificationConfigNonNullablePaths]: `notificationConfig.${P}`;
3881
+ }[NotificationConfigNonNullablePaths]>>;
3882
+ /**
3883
+ * Upsert a NotificationConfig
3884
+ * @param _id - Event ID.
3885
+ * @public
3886
+ * @documentationMaturity preview
3887
+ * @requiredField _id
3888
+ * @requiredField notificationConfig
3889
+ * @permissionId WIX_EVENTS.UPDATE_NOTIFICATION_CONFIG
3890
+ * @applicableIdentity APP
3891
+ * @fqn wix.events.notifications.v2.NotificationConfigManagement.UpsertNotificationConfig
3892
+ */
3893
+ declare function upsertNotificationConfig(_id: string, notificationConfig: UpsertNotificationConfig): Promise<NonNullablePaths<UpsertNotificationConfigResponse, {
3894
+ [P in NotificationConfigNonNullablePaths]: `notificationConfig.${P}`;
3895
+ }[NotificationConfigNonNullablePaths]>>;
3810
3896
  interface UpsertNotificationConfig {
3811
3897
  /**
3812
3898
  * Event ID.
@@ -3847,4 +3933,4 @@ interface UpsertNotificationConfig {
3847
3933
  orderConfirmationWithTicketsLink?: EmailNotificationConfig;
3848
3934
  }
3849
3935
 
3850
- export { OrderStatus as $, Alignment as A, ButtonDataType as B, ConferenceType as C, PollLayoutDirection as D, EmailNotificationType as E, BackgroundType as F, GIFType as G, DecorationType as H, InputControlType as I, FontType as J, AppType as K, LocationType as L, MapType as M, type NotificationConfigCreatedEnvelope as N, Orientation as O, PushNotificationType as P, InitialExpandedItems as Q, type ResolveNotificationConfigResponse as R, SubdivisionType as S, type TriggerNotificationOptions as T, type UpsertNotificationConfig as U, VisitorType as V, WidthType as W, Direction as X, VerticalAlignment as Y, NullValue as Z, Type as _, type UpsertNotificationConfigResponse as a, type RsvpSummary as a$, FeeName as a0, FeeType as a1, WebhookIdentityType as a2, type NotificationConfig as a3, type EmailNotificationConfig as a4, type EmailTemplate as a5, type Link as a6, type TriggerNotificationRequest as a7, type TriggerNotificationRequestNotificationOneOf as a8, type TriggerNotificationRequestGuestsOneOf as a9, type Registration as aA, type RsvpCollection as aB, type RsvpCollectionConfig as aC, type Ticketing as aD, type TicketingConfig as aE, type TaxConfig as aF, type Money as aG, type ExternalEvent as aH, type CalendarLinks as aI, type SiteUrl as aJ, type Form as aK, type InputControl as aL, type Input as aM, type OptionSelection as aN, type OptionSelectionSelectedOptionOneOf as aO, type Label as aP, type FormMessages as aQ, type RsvpFormMessages as aR, type PositiveResponseConfirmation as aS, type NegativeResponseConfirmation as aT, type Positive as aU, type Negative as aV, type CheckoutFormMessages as aW, type ResponseConfirmation as aX, type RegistrationClosedMessages as aY, type TicketsUnavailableMessages as aZ, type Dashboard as a_, type RsvpGuest as aa, type OrderGuest as ab, type EventGuests as ac, type TicketGuest as ad, type TriggerNotificationResponse as ae, type DomainEvent as af, type DomainEventBodyOneOf as ag, type EntityCreatedEvent as ah, type RestoreInfo as ai, type EntityUpdatedEvent as aj, type EntityDeletedEvent as ak, type ActionEvent as al, type Empty as am, type EventUpdated as an, type Location as ao, type MapCoordinates as ap, type Address as aq, type AddressStreetOneOf as ar, type StreetAddress as as, type AddressLocation as at, type Subdivision as au, type ScheduleConfig as av, type Recurrences as aw, type Occurrence as ax, type Event as ay, type Scheduling as az, type NotificationConfigUpdatedEnvelope as b, type Permissions as b$, type TicketingSummary as b0, type GuestListConfig as b1, type Feed as b2, type OnlineConferencing as b3, type OnlineConferencingConfig as b4, type OnlineConferencingSession as b5, type SeoSettings as b6, type SeoSchema as b7, type Keyword as b8, type Tag as b9, type FileSource as bA, type FileSourceDataOneOf as bB, type PDFSettings as bC, type GalleryData as bD, type Media as bE, type Image as bF, type Video as bG, type GalleryDataItem as bH, type GalleryDataItemDataOneOf as bI, type GalleryOptions as bJ, type Layout as bK, type ItemStyle as bL, type Thumbnails as bM, type GIFData as bN, type GIF as bO, type HeadingData as bP, type HTMLData as bQ, type HTMLDataDataOneOf as bR, type ImageData as bS, type StylesBorder as bT, type ImageDataStyles as bU, type LinkPreviewData as bV, type LinkPreviewDataStyles as bW, type MapData as bX, type MapSettings as bY, type ParagraphData as bZ, type PollData as b_, type Settings as ba, type Agenda as bb, type Category as bc, type CategoryCounts as bd, type EventDisplaySettings as be, type LabellingSettings as bf, type RichContent as bg, type Node as bh, type NodeDataOneOf as bi, type NodeStyle as bj, type ButtonData as bk, type Border as bl, type Colors as bm, type PluginContainerData as bn, type PluginContainerDataWidth as bo, type PluginContainerDataWidthDataOneOf as bp, type Spoiler as bq, type Height as br, type Styles as bs, type V1Link as bt, type V1LinkDataOneOf as bu, type Rel as bv, type CodeBlockData as bw, type TextStyle as bx, type DividerData as by, type FileData as bz, EmailNotificationReminderTime as c, type DiscountItemDiscountOneOf as c$, type Option as c0, type PollSettings as c1, type PollLayout as c2, type OptionLayout as c3, type Gradient as c4, type Background as c5, type BackgroundBackgroundOneOf as c6, type PollDesign as c7, type OptionDesign as c8, type Poll as c9, type AudioData as cA, type OrderedListData as cB, type BulletedListData as cC, type BlockquoteData as cD, type CaptionData as cE, type LayoutCellData as cF, type Metadata as cG, type DocumentStyle as cH, type TextNodeStyle as cI, type Badge as cJ, type OrderConfirmed as cK, type FormResponse as cL, type InputValue as cM, type FormattedAddress as cN, type CommonAddress as cO, type CommonAddressStreetOneOf as cP, type CommonStreetAddress as cQ, type CommonAddressLocation as cR, type CommonSubdivision as cS, type StandardDetails as cT, type Ticket as cU, type CheckIn as cV, type OnlineConferencingLogin as cW, type Invoice as cX, type Item as cY, type Discount as cZ, type DiscountItem as c_, type PollDataLayout as ca, type Design as cb, type TextData as cc, type Decoration as cd, type DecorationDataOneOf as ce, type AnchorData as cf, type ColorData as cg, type LinkData as ch, type MentionData as ci, type FontSizeData as cj, type SpoilerData as ck, type AppEmbedData as cl, type AppEmbedDataAppDataOneOf as cm, type BookingData as cn, type EventData as co, type VideoData as cp, type PlaybackOptions as cq, type EmbedData as cr, type Oembed as cs, type CollapsibleListData as ct, type TableData as cu, type Dimensions as cv, type TableCellData as cw, type CellStyle as cx, type BorderColors as cy, type ListValue as cz, Status as d, type CouponDiscount as d0, type PaidPlanDiscount as d1, type PaidPlanDiscountDiscountOneOf as d2, type PercentDiscount as d3, type Tax as d4, type Fee as d5, type OrderEmailAdded as d6, type EventCanceled as d7, type EventReminder as d8, type TimeDuration as d9, type OrderPaid as da, type TicketPdfResolved as db, type TicketPdfResolveDelayed as dc, type OrderCanceled as dd, type EventEnded as de, type EventStarted as df, type ResolveNotificationConfigRequest as dg, type UpsertNotificationConfigRequest as dh, type ResolveEmailNotificationConfigRequest as di, type ResolveEmailNotificationConfigResponse as dj, type EventDeleted as dk, type EventCopied as dl, type MessageEnvelope as dm, type IdentificationData as dn, type IdentificationDataIdOneOf as dp, type BaseEventMetadata as dq, type EventMetadata as dr, type TriggerNotificationOptionsNotificationOneOf as ds, type TriggerNotificationOptionsGuestsOneOf as dt, EventStatus as e, EventType as f, RegistrationStatus as g, RsvpStatusOptions as h, TaxType as i, ValueType as j, State as k, NodeType as l, PluginContainerDataAlignment as m, Target as n, TextAlignment as o, LineStyle as p, Width as q, ViewMode as r, LayoutType as s, Crop as t, ThumbnailsAlignment as u, Source as v, Position as w, ViewRole as x, VoteRole as y, PollLayoutType as z };
3936
+ export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type CalendarLinks, type CaptionData, type Category, type CategoryCounts, type CellStyle, type CheckIn, type CheckoutFormMessages, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CouponDiscount, Crop, type CropWithLiterals, type Dashboard, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type Discount, type DiscountItem, type DiscountItemDiscountOneOf, type DividerData, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmailNotificationConfig, EmailNotificationReminderTime, type EmailNotificationReminderTimeWithLiterals, EmailNotificationType, type EmailNotificationTypeWithLiterals, type EmailTemplate, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCopied, type EventData, type EventDeleted, type EventDisplaySettings, type EventEnded, type EventGuests, type EventMetadata, type EventReminder, type EventStarted, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Fee, FeeName, type FeeNameWithLiterals, FeeType, type FeeTypeWithLiterals, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type FormResponse, type FormattedAddress, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryDataItem, type GalleryDataItemDataOneOf, type GalleryOptions, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type InputValue, type Invoice, type Item, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationConfig, type NotificationConfigCreatedEnvelope, type NotificationConfigUpdatedEnvelope, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingLogin, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderCanceled, type OrderConfirmed, type OrderEmailAdded, type OrderGuest, type OrderPaid, OrderStatus, type OrderStatusWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf, type ParagraphData, type PercentDiscount, type Permissions, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, PushNotificationType, type PushNotificationTypeWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, type ResolveEmailNotificationConfigRequest, type ResolveEmailNotificationConfigResponse, type ResolveNotificationConfigRequest, type ResolveNotificationConfigResponse, type ResponseConfirmation, type RestoreInfo, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, type RsvpGuest, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type StandardDetails, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type Tax, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticket, type TicketGuest, type TicketPdfResolveDelayed, type TicketPdfResolved, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsUnavailableMessages, type TimeDuration, type TriggerNotificationOptions, type TriggerNotificationOptionsGuestsOneOf, type TriggerNotificationOptionsNotificationOneOf, type TriggerNotificationRequest, type TriggerNotificationRequestGuestsOneOf, type TriggerNotificationRequestNotificationOneOf, type TriggerNotificationResponse, Type, type TypeWithLiterals, type UpsertNotificationConfig, type UpsertNotificationConfigRequest, type UpsertNotificationConfigResponse, type V1Link, type V1LinkDataOneOf, ValueType, type ValueTypeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, onNotificationConfigCreated, onNotificationConfigUpdated, resolveNotificationConfig, triggerNotification, upsertNotificationConfig };