@wix/auto_sdk_events_notifications 1.0.24 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/{events-notifications-v2-notification-config-notifications.universal-D-36kOt1.d.ts → events-notifications-v2-notification-config-notifications.universal-CYi-A1my.d.ts} +14 -2
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +2 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/es/{events-notifications-v2-notification-config-notifications.universal-D-36kOt1.d.mts → events-notifications-v2-notification-config-notifications.universal-CYi-A1my.d.mts} +14 -2
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +2 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/internal/cjs/{events-notifications-v2-notification-config-notifications.universal-D-36kOt1.d.ts → events-notifications-v2-notification-config-notifications.universal-CYi-A1my.d.ts} +14 -2
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +2 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/es/{events-notifications-v2-notification-config-notifications.universal-D-36kOt1.d.mts → events-notifications-v2-notification-config-notifications.universal-CYi-A1my.d.mts} +14 -2
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +2 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a7 as TriggerNotificationRequest$1, ae as TriggerNotificationResponse$1, dg as ResolveNotificationConfigRequest$1, R as ResolveNotificationConfigResponse$1, dh as UpsertNotificationConfigRequest$1, a as UpsertNotificationConfigResponse$1 } from './events-notifications-v2-notification-config-notifications.universal-
|
|
1
|
+
import { a7 as TriggerNotificationRequest$1, ae as TriggerNotificationResponse$1, dg as ResolveNotificationConfigRequest$1, R as ResolveNotificationConfigResponse$1, dh as UpsertNotificationConfigRequest$1, a as UpsertNotificationConfigResponse$1 } from './events-notifications-v2-notification-config-notifications.universal-CYi-A1my.mjs';
|
|
2
2
|
|
|
3
3
|
interface NotificationConfig {
|
|
4
4
|
/**
|
|
@@ -2413,6 +2413,10 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
2413
2413
|
spoilerData?: SpoilerData;
|
|
2414
2414
|
/** Data for a strikethrough decoration. Defaults to `true`. */
|
|
2415
2415
|
strikethroughData?: boolean | null;
|
|
2416
|
+
/** Data for a superscript decoration. Defaults to `true`. */
|
|
2417
|
+
superscriptData?: boolean | null;
|
|
2418
|
+
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2419
|
+
subscriptData?: boolean | null;
|
|
2416
2420
|
/** The type of decoration to apply. */
|
|
2417
2421
|
type?: DecorationTypeWithLiterals;
|
|
2418
2422
|
}
|
|
@@ -2438,6 +2442,10 @@ interface DecorationDataOneOf {
|
|
|
2438
2442
|
spoilerData?: SpoilerData;
|
|
2439
2443
|
/** Data for a strikethrough decoration. Defaults to `true`. */
|
|
2440
2444
|
strikethroughData?: boolean | null;
|
|
2445
|
+
/** Data for a superscript decoration. Defaults to `true`. */
|
|
2446
|
+
superscriptData?: boolean | null;
|
|
2447
|
+
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2448
|
+
subscriptData?: boolean | null;
|
|
2441
2449
|
}
|
|
2442
2450
|
declare enum DecorationType {
|
|
2443
2451
|
BOLD = "BOLD",
|
|
@@ -2450,10 +2458,12 @@ declare enum DecorationType {
|
|
|
2450
2458
|
COLOR = "COLOR",
|
|
2451
2459
|
FONT_SIZE = "FONT_SIZE",
|
|
2452
2460
|
EXTERNAL = "EXTERNAL",
|
|
2453
|
-
STRIKETHROUGH = "STRIKETHROUGH"
|
|
2461
|
+
STRIKETHROUGH = "STRIKETHROUGH",
|
|
2462
|
+
SUPERSCRIPT = "SUPERSCRIPT",
|
|
2463
|
+
SUBSCRIPT = "SUBSCRIPT"
|
|
2454
2464
|
}
|
|
2455
2465
|
/** @enumType */
|
|
2456
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
|
|
2466
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
|
|
2457
2467
|
interface AnchorData {
|
|
2458
2468
|
/** The target node's ID. */
|
|
2459
2469
|
anchor?: string;
|
|
@@ -3315,6 +3325,8 @@ interface OrderEmailAdded {
|
|
|
3315
3325
|
* @format GUID
|
|
3316
3326
|
*/
|
|
3317
3327
|
reservationId?: string;
|
|
3328
|
+
/** Whether marketing consent was given. */
|
|
3329
|
+
marketingConsent?: boolean | null;
|
|
3318
3330
|
}
|
|
3319
3331
|
interface EventCanceled {
|
|
3320
3332
|
/** Event canceled timestamp in ISO UTC format. */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { T as TriggerNotificationOptions, R as ResolveNotificationConfigResponse, U as UpsertNotificationConfig, a as UpsertNotificationConfigResponse, N as NotificationConfigCreatedEnvelope, b as NotificationConfigUpdatedEnvelope } from './events-notifications-v2-notification-config-notifications.universal-
|
|
3
|
-
export { al as ActionEvent, aq as Address, at as AddressLocation, ar as AddressStreetOneOf, bb as Agenda, A as Alignment, cf as AnchorData, cl as AppEmbedData, cm as AppEmbedDataAppDataOneOf, K as AppType, cA as AudioData, c5 as Background, c6 as BackgroundBackgroundOneOf, F as BackgroundType, cJ as Badge, dq as BaseEventMetadata, cD as BlockquoteData, cn as BookingData, bl as Border, cy as BorderColors, cC as BulletedListData, bk as ButtonData, B as ButtonDataType, aI as CalendarLinks, cE as CaptionData, bc as Category, bd as CategoryCounts, cx as CellStyle, cV as CheckIn, aW as CheckoutFormMessages, bw as CodeBlockData, ct as CollapsibleListData, cg as ColorData, bm as Colors, cO as CommonAddress, cR as CommonAddressLocation, cP as CommonAddressStreetOneOf, cQ as CommonStreetAddress, cS as CommonSubdivision, C as ConferenceType, d0 as CouponDiscount, t as Crop, a_ as Dashboard, cd as Decoration, ce as DecorationDataOneOf, H as DecorationType, cb as Design, cv as Dimensions, X as Direction, cZ as Discount, c_ as DiscountItem, c$ as DiscountItemDiscountOneOf, by as DividerData, cH as DocumentStyle, af as DomainEvent, ag as DomainEventBodyOneOf, a4 as EmailNotificationConfig, c as EmailNotificationReminderTime, E as EmailNotificationType, a5 as EmailTemplate, cr as EmbedData, am as Empty, ah as EntityCreatedEvent, ak as EntityDeletedEvent, aj as EntityUpdatedEvent, ay as Event, d7 as EventCanceled, dl as EventCopied, co as EventData, dk as EventDeleted, be as EventDisplaySettings, de as EventEnded, ac as EventGuests, dr as EventMetadata, d8 as EventReminder, df as EventStarted, e as EventStatus, f as EventType, an as EventUpdated, aH as ExternalEvent, d5 as Fee, a0 as FeeName, a1 as FeeType, b2 as Feed, bz as FileData, bA as FileSource, bB as FileSourceDataOneOf, cj as FontSizeData, J as FontType, aK as Form, aQ as FormMessages, cL as FormResponse, cN as FormattedAddress, bO as GIF, bN as GIFData, G as GIFType, bD as GalleryData, bH as GalleryDataItem, bI as GalleryDataItemDataOneOf, bJ as GalleryOptions, c4 as Gradient, b1 as GuestListConfig, bQ as HTMLData, bR as HTMLDataDataOneOf, bP as HeadingData, br as Height, dn as IdentificationData, dp as IdentificationDataIdOneOf, bF as Image, bS as ImageData, bU as ImageDataStyles, Q as InitialExpandedItems, aM as Input, aL as InputControl, I as InputControlType, cM as InputValue, cX as Invoice, cY as Item, bL as ItemStyle, b8 as Keyword, aP as Label, bf as LabellingSettings, bK as Layout, cF as LayoutCellData, s as LayoutType, p as LineStyle, a6 as Link, ch as LinkData, bV as LinkPreviewData, bW as LinkPreviewDataStyles, cz as ListValue, ao as Location, L as LocationType, ap as MapCoordinates, bX as MapData, bY as MapSettings, M as MapType, bE as Media, ci as MentionData, dm as MessageEnvelope, cG as Metadata, aG as Money, aV as Negative, aT as NegativeResponseConfirmation, bh as Node, bi as NodeDataOneOf, bj as NodeStyle, l as NodeType, a3 as NotificationConfig, Z as NullValue, ax as Occurrence, cs as Oembed, b3 as OnlineConferencing, b4 as OnlineConferencingConfig, cW as OnlineConferencingLogin, b5 as OnlineConferencingSession, c0 as Option, c8 as OptionDesign, c3 as OptionLayout, aN as OptionSelection, aO as OptionSelectionSelectedOptionOneOf, dd as OrderCanceled, cK as OrderConfirmed, d6 as OrderEmailAdded, ab as OrderGuest, da as OrderPaid, $ as OrderStatus, cB as OrderedListData, O as Orientation, bC as PDFSettings, d1 as PaidPlanDiscount, d2 as PaidPlanDiscountDiscountOneOf, bZ as ParagraphData, d3 as PercentDiscount, b$ as Permissions, cq as PlaybackOptions, bn as PluginContainerData, m as PluginContainerDataAlignment, bo as PluginContainerDataWidth, bp as PluginContainerDataWidthDataOneOf, c9 as Poll, b_ as PollData, ca as PollDataLayout, c7 as PollDesign, c2 as PollLayout, D as PollLayoutDirection, z as PollLayoutType, c1 as PollSettings, w as Position, aU as Positive, aS as PositiveResponseConfirmation, P as PushNotificationType, aw as Recurrences, aA as Registration, aY as RegistrationClosedMessages, g as RegistrationStatus, bv as Rel, di as ResolveEmailNotificationConfigRequest, dj as ResolveEmailNotificationConfigResponse, dg as ResolveNotificationConfigRequest, aX as ResponseConfirmation, ai as RestoreInfo, bg as RichContent, aB as RsvpCollection, aC as RsvpCollectionConfig, aR as RsvpFormMessages, aa as RsvpGuest, h as RsvpStatusOptions, a$ as RsvpSummary, av as ScheduleConfig, az as Scheduling, b7 as SeoSchema, b6 as SeoSettings, ba as Settings, aJ as SiteUrl, v as Source, bq as Spoiler, ck as SpoilerData, cT as StandardDetails, k as State, d as Status, as as StreetAddress, bs as Styles, bT as StylesBorder, au as Subdivision, S as SubdivisionType, cw as TableCellData, cu as TableData, b9 as Tag, n as Target, d4 as Tax, aF as TaxConfig, i as TaxType, o as TextAlignment, cc as TextData, cI as TextNodeStyle, bx as TextStyle, bM as Thumbnails, u as ThumbnailsAlignment, cU as Ticket, ad as TicketGuest, dc as TicketPdfResolveDelayed, db as TicketPdfResolved, aD as Ticketing, aE as TicketingConfig, b0 as TicketingSummary, aZ as TicketsUnavailableMessages, d9 as TimeDuration, dt as TriggerNotificationOptionsGuestsOneOf, ds as TriggerNotificationOptionsNotificationOneOf, a7 as TriggerNotificationRequest, a9 as TriggerNotificationRequestGuestsOneOf, a8 as TriggerNotificationRequestNotificationOneOf, ae as TriggerNotificationResponse, _ as Type, dh as UpsertNotificationConfigRequest, bt as V1Link, bu as V1LinkDataOneOf, j as ValueType, Y as VerticalAlignment, bG as Video, cp as VideoData, r as ViewMode, x as ViewRole, V as VisitorType, y as VoteRole, a2 as WebhookIdentityType, q as Width, W as WidthType } from './events-notifications-v2-notification-config-notifications.universal-
|
|
2
|
+
import { T as TriggerNotificationOptions, R as ResolveNotificationConfigResponse, U as UpsertNotificationConfig, a as UpsertNotificationConfigResponse, N as NotificationConfigCreatedEnvelope, b as NotificationConfigUpdatedEnvelope } from './events-notifications-v2-notification-config-notifications.universal-CYi-A1my.js';
|
|
3
|
+
export { al as ActionEvent, aq as Address, at as AddressLocation, ar as AddressStreetOneOf, bb as Agenda, A as Alignment, cf as AnchorData, cl as AppEmbedData, cm as AppEmbedDataAppDataOneOf, K as AppType, cA as AudioData, c5 as Background, c6 as BackgroundBackgroundOneOf, F as BackgroundType, cJ as Badge, dq as BaseEventMetadata, cD as BlockquoteData, cn as BookingData, bl as Border, cy as BorderColors, cC as BulletedListData, bk as ButtonData, B as ButtonDataType, aI as CalendarLinks, cE as CaptionData, bc as Category, bd as CategoryCounts, cx as CellStyle, cV as CheckIn, aW as CheckoutFormMessages, bw as CodeBlockData, ct as CollapsibleListData, cg as ColorData, bm as Colors, cO as CommonAddress, cR as CommonAddressLocation, cP as CommonAddressStreetOneOf, cQ as CommonStreetAddress, cS as CommonSubdivision, C as ConferenceType, d0 as CouponDiscount, t as Crop, a_ as Dashboard, cd as Decoration, ce as DecorationDataOneOf, H as DecorationType, cb as Design, cv as Dimensions, X as Direction, cZ as Discount, c_ as DiscountItem, c$ as DiscountItemDiscountOneOf, by as DividerData, cH as DocumentStyle, af as DomainEvent, ag as DomainEventBodyOneOf, a4 as EmailNotificationConfig, c as EmailNotificationReminderTime, E as EmailNotificationType, a5 as EmailTemplate, cr as EmbedData, am as Empty, ah as EntityCreatedEvent, ak as EntityDeletedEvent, aj as EntityUpdatedEvent, ay as Event, d7 as EventCanceled, dl as EventCopied, co as EventData, dk as EventDeleted, be as EventDisplaySettings, de as EventEnded, ac as EventGuests, dr as EventMetadata, d8 as EventReminder, df as EventStarted, e as EventStatus, f as EventType, an as EventUpdated, aH as ExternalEvent, d5 as Fee, a0 as FeeName, a1 as FeeType, b2 as Feed, bz as FileData, bA as FileSource, bB as FileSourceDataOneOf, cj as FontSizeData, J as FontType, aK as Form, aQ as FormMessages, cL as FormResponse, cN as FormattedAddress, bO as GIF, bN as GIFData, G as GIFType, bD as GalleryData, bH as GalleryDataItem, bI as GalleryDataItemDataOneOf, bJ as GalleryOptions, c4 as Gradient, b1 as GuestListConfig, bQ as HTMLData, bR as HTMLDataDataOneOf, bP as HeadingData, br as Height, dn as IdentificationData, dp as IdentificationDataIdOneOf, bF as Image, bS as ImageData, bU as ImageDataStyles, Q as InitialExpandedItems, aM as Input, aL as InputControl, I as InputControlType, cM as InputValue, cX as Invoice, cY as Item, bL as ItemStyle, b8 as Keyword, aP as Label, bf as LabellingSettings, bK as Layout, cF as LayoutCellData, s as LayoutType, p as LineStyle, a6 as Link, ch as LinkData, bV as LinkPreviewData, bW as LinkPreviewDataStyles, cz as ListValue, ao as Location, L as LocationType, ap as MapCoordinates, bX as MapData, bY as MapSettings, M as MapType, bE as Media, ci as MentionData, dm as MessageEnvelope, cG as Metadata, aG as Money, aV as Negative, aT as NegativeResponseConfirmation, bh as Node, bi as NodeDataOneOf, bj as NodeStyle, l as NodeType, a3 as NotificationConfig, Z as NullValue, ax as Occurrence, cs as Oembed, b3 as OnlineConferencing, b4 as OnlineConferencingConfig, cW as OnlineConferencingLogin, b5 as OnlineConferencingSession, c0 as Option, c8 as OptionDesign, c3 as OptionLayout, aN as OptionSelection, aO as OptionSelectionSelectedOptionOneOf, dd as OrderCanceled, cK as OrderConfirmed, d6 as OrderEmailAdded, ab as OrderGuest, da as OrderPaid, $ as OrderStatus, cB as OrderedListData, O as Orientation, bC as PDFSettings, d1 as PaidPlanDiscount, d2 as PaidPlanDiscountDiscountOneOf, bZ as ParagraphData, d3 as PercentDiscount, b$ as Permissions, cq as PlaybackOptions, bn as PluginContainerData, m as PluginContainerDataAlignment, bo as PluginContainerDataWidth, bp as PluginContainerDataWidthDataOneOf, c9 as Poll, b_ as PollData, ca as PollDataLayout, c7 as PollDesign, c2 as PollLayout, D as PollLayoutDirection, z as PollLayoutType, c1 as PollSettings, w as Position, aU as Positive, aS as PositiveResponseConfirmation, P as PushNotificationType, aw as Recurrences, aA as Registration, aY as RegistrationClosedMessages, g as RegistrationStatus, bv as Rel, di as ResolveEmailNotificationConfigRequest, dj as ResolveEmailNotificationConfigResponse, dg as ResolveNotificationConfigRequest, aX as ResponseConfirmation, ai as RestoreInfo, bg as RichContent, aB as RsvpCollection, aC as RsvpCollectionConfig, aR as RsvpFormMessages, aa as RsvpGuest, h as RsvpStatusOptions, a$ as RsvpSummary, av as ScheduleConfig, az as Scheduling, b7 as SeoSchema, b6 as SeoSettings, ba as Settings, aJ as SiteUrl, v as Source, bq as Spoiler, ck as SpoilerData, cT as StandardDetails, k as State, d as Status, as as StreetAddress, bs as Styles, bT as StylesBorder, au as Subdivision, S as SubdivisionType, cw as TableCellData, cu as TableData, b9 as Tag, n as Target, d4 as Tax, aF as TaxConfig, i as TaxType, o as TextAlignment, cc as TextData, cI as TextNodeStyle, bx as TextStyle, bM as Thumbnails, u as ThumbnailsAlignment, cU as Ticket, ad as TicketGuest, dc as TicketPdfResolveDelayed, db as TicketPdfResolved, aD as Ticketing, aE as TicketingConfig, b0 as TicketingSummary, aZ as TicketsUnavailableMessages, d9 as TimeDuration, dt as TriggerNotificationOptionsGuestsOneOf, ds as TriggerNotificationOptionsNotificationOneOf, a7 as TriggerNotificationRequest, a9 as TriggerNotificationRequestGuestsOneOf, a8 as TriggerNotificationRequestNotificationOneOf, ae as TriggerNotificationResponse, _ as Type, dh as UpsertNotificationConfigRequest, bt as V1Link, bu as V1LinkDataOneOf, j as ValueType, Y as VerticalAlignment, bG as Video, cp as VideoData, r as ViewMode, x as ViewRole, V as VisitorType, y as VoteRole, a2 as WebhookIdentityType, q as Width, W as WidthType } from './events-notifications-v2-notification-config-notifications.universal-CYi-A1my.js';
|
|
4
4
|
|
|
5
5
|
declare function triggerNotification$1(httpClient: HttpClient): TriggerNotificationSignature;
|
|
6
6
|
interface TriggerNotificationSignature {
|
|
@@ -566,6 +566,8 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
566
566
|
DecorationType2["FONT_SIZE"] = "FONT_SIZE";
|
|
567
567
|
DecorationType2["EXTERNAL"] = "EXTERNAL";
|
|
568
568
|
DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
569
|
+
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
570
|
+
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
569
571
|
return DecorationType2;
|
|
570
572
|
})(DecorationType || {});
|
|
571
573
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|