@wix/auto_sdk_events_notifications 1.0.3 → 1.0.4

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.
Files changed (29) hide show
  1. package/build/cjs/src/events-notifications-v2-notification-config-notifications.context.d.ts +1 -1
  2. package/build/cjs/src/events-notifications-v2-notification-config-notifications.public.d.ts +1 -1
  3. package/build/cjs/src/events-notifications-v2-notification-config-notifications.public.js.map +1 -1
  4. package/build/cjs/src/events-notifications-v2-notification-config-notifications.types.d.ts +575 -134
  5. package/build/cjs/src/events-notifications-v2-notification-config-notifications.types.js.map +1 -1
  6. package/build/cjs/src/events-notifications-v2-notification-config-notifications.universal.d.ts +606 -138
  7. package/build/cjs/src/events-notifications-v2-notification-config-notifications.universal.js.map +1 -1
  8. package/build/es/src/events-notifications-v2-notification-config-notifications.context.d.ts +1 -1
  9. package/build/es/src/events-notifications-v2-notification-config-notifications.public.d.ts +1 -1
  10. package/build/es/src/events-notifications-v2-notification-config-notifications.public.js.map +1 -1
  11. package/build/es/src/events-notifications-v2-notification-config-notifications.types.d.ts +575 -134
  12. package/build/es/src/events-notifications-v2-notification-config-notifications.types.js.map +1 -1
  13. package/build/es/src/events-notifications-v2-notification-config-notifications.universal.d.ts +606 -138
  14. package/build/es/src/events-notifications-v2-notification-config-notifications.universal.js.map +1 -1
  15. package/build/internal/cjs/src/events-notifications-v2-notification-config-notifications.context.d.ts +1 -1
  16. package/build/internal/cjs/src/events-notifications-v2-notification-config-notifications.public.d.ts +1 -1
  17. package/build/internal/cjs/src/events-notifications-v2-notification-config-notifications.public.js.map +1 -1
  18. package/build/internal/cjs/src/events-notifications-v2-notification-config-notifications.types.d.ts +575 -134
  19. package/build/internal/cjs/src/events-notifications-v2-notification-config-notifications.types.js.map +1 -1
  20. package/build/internal/cjs/src/events-notifications-v2-notification-config-notifications.universal.d.ts +606 -138
  21. package/build/internal/cjs/src/events-notifications-v2-notification-config-notifications.universal.js.map +1 -1
  22. package/build/internal/es/src/events-notifications-v2-notification-config-notifications.context.d.ts +1 -1
  23. package/build/internal/es/src/events-notifications-v2-notification-config-notifications.public.d.ts +1 -1
  24. package/build/internal/es/src/events-notifications-v2-notification-config-notifications.public.js.map +1 -1
  25. package/build/internal/es/src/events-notifications-v2-notification-config-notifications.types.d.ts +575 -134
  26. package/build/internal/es/src/events-notifications-v2-notification-config-notifications.types.js.map +1 -1
  27. package/build/internal/es/src/events-notifications-v2-notification-config-notifications.universal.d.ts +606 -138
  28. package/build/internal/es/src/events-notifications-v2-notification-config-notifications.universal.js.map +1 -1
  29. package/package.json +2 -2
@@ -1,7 +1,14 @@
1
1
  export interface NotificationConfig {
2
- /** Event ID. */
2
+ /**
3
+ * Event ID.
4
+ * @format GUID
5
+ * @immutable
6
+ */
3
7
  id?: string | null;
4
- /** Represents the current state of an item. Each time the item is modified, its `revision` changes. for an update operation to succeed, you MUST pass the latest revision. */
8
+ /**
9
+ * Represents the current state of an item. Each time the item is modified, its `revision` changes. for an update operation to succeed, you MUST pass the latest revision.
10
+ * @immutable
11
+ */
5
12
  revision?: string | null;
6
13
  /**
7
14
  * Represents the time this NotificationConfig was created.
@@ -65,9 +72,17 @@ export declare enum EmailNotificationType {
65
72
  EMAIL_INVOICE = "EMAIL_INVOICE"
66
73
  }
67
74
  export interface EmailTemplate {
68
- /** Email subject. */
75
+ /**
76
+ * Email subject.
77
+ * @minLength 1
78
+ * @maxLength 100
79
+ */
69
80
  subject?: string | null;
70
- /** Plain text message body. */
81
+ /**
82
+ * Plain text message body.
83
+ * @minLength 1
84
+ * @maxLength 1000
85
+ */
71
86
  body?: string | null;
72
87
  /** Description link visibility and display text */
73
88
  descriptionLink?: Link;
@@ -81,7 +96,10 @@ export interface EmailTemplate {
81
96
  export interface Link {
82
97
  /** When true the link is added to the email. */
83
98
  display?: boolean | null;
84
- /** Text of the link. */
99
+ /**
100
+ * Text of the link.
101
+ * @maxLength 60
102
+ */
85
103
  linkText?: string | null;
86
104
  }
87
105
  export declare enum EmailNotificationReminderTime {
@@ -146,30 +164,56 @@ export declare enum PushNotificationType {
146
164
  }
147
165
  /** Single guest associated to the RSVP */
148
166
  export interface RsvpGuest {
149
- /** Event id */
167
+ /**
168
+ * Event id
169
+ * @format GUID
170
+ */
150
171
  eventId?: string;
151
- /** Rsvp id */
172
+ /**
173
+ * Rsvp id
174
+ * @format GUID
175
+ */
152
176
  rsvpId?: string;
153
177
  }
154
178
  /** Single guest associated to the Order */
155
179
  export interface OrderGuest {
156
- /** Event id */
180
+ /**
181
+ * Event id
182
+ * @format GUID
183
+ */
157
184
  eventId?: string;
158
- /** Order number */
185
+ /**
186
+ * Order number
187
+ * @maxLength 36
188
+ */
159
189
  orderNumber?: string;
160
190
  }
161
191
  /** All event guest from RSVPs and Orders */
162
192
  export interface EventGuests {
163
- /** Event id */
193
+ /**
194
+ * Event id
195
+ * @format GUID
196
+ */
164
197
  eventId?: string;
165
198
  }
166
199
  /** Multiple guests associated to Tickets */
167
200
  export interface TicketGuest {
168
- /** Event id */
201
+ /**
202
+ * Event id
203
+ * @format GUID
204
+ */
169
205
  eventId?: string;
170
- /** Order number */
206
+ /**
207
+ * Order number
208
+ * @maxLength 36
209
+ */
171
210
  orderNumber?: string | null;
172
- /** Ticket numbers must be from the same order only. */
211
+ /**
212
+ * Ticket numbers must be from the same order only.
213
+ * @minSize 1
214
+ * @maxSize 100
215
+ * @maxLength 36
216
+ */
173
217
  ticketNumber?: string[];
174
218
  }
175
219
  export interface TriggerNotificationResponse {
@@ -251,7 +295,10 @@ export interface Empty {
251
295
  export interface EventUpdated {
252
296
  /** Event update timestamp in ISO UTC format. */
253
297
  timestamp?: Date | null;
254
- /** Event ID. */
298
+ /**
299
+ * Event ID.
300
+ * @format GUID
301
+ */
255
302
  eventId?: string;
256
303
  /** Event location. */
257
304
  location?: Location;
@@ -268,11 +315,17 @@ export interface EventUpdated {
268
315
  event?: Event;
269
316
  }
270
317
  export interface Location {
271
- /** Location name. */
318
+ /**
319
+ * Location name.
320
+ * @maxLength 50
321
+ */
272
322
  name?: string | null;
273
323
  /** Location map coordinates. */
274
324
  coordinates?: MapCoordinates;
275
- /** Single line address representation. */
325
+ /**
326
+ * Single line address representation.
327
+ * @maxLength 300
328
+ */
276
329
  address?: string | null;
277
330
  /** Location type. */
278
331
  type?: LocationType;
@@ -294,9 +347,17 @@ export interface Location {
294
347
  tbd?: boolean | null;
295
348
  }
296
349
  export interface MapCoordinates {
297
- /** Latitude. */
350
+ /**
351
+ * Latitude.
352
+ * @min -90
353
+ * @max 90
354
+ */
298
355
  lat?: number;
299
- /** Longitude. */
356
+ /**
357
+ * Longitude.
358
+ * @min -180
359
+ * @max 180
360
+ */
300
361
  lng?: number;
301
362
  }
302
363
  export declare enum LocationType {
@@ -309,7 +370,10 @@ export interface Address extends AddressStreetOneOf {
309
370
  streetAddress?: StreetAddress;
310
371
  /** Main address line (usually street and number) as free text */
311
372
  addressLine?: string | null;
312
- /** country code */
373
+ /**
374
+ * country code
375
+ * @format COUNTRY
376
+ */
313
377
  country?: string | null;
314
378
  /** subdivision (usually state or region) code according to ISO 3166-2 */
315
379
  subdivision?: string | null;
@@ -327,7 +391,10 @@ export interface Address extends AddressStreetOneOf {
327
391
  geocode?: AddressLocation;
328
392
  /** country full-name */
329
393
  countryFullname?: string | null;
330
- /** multi-level subdivisions from top to bottom */
394
+ /**
395
+ * multi-level subdivisions from top to bottom
396
+ * @maxSize 6
397
+ */
331
398
  subdivisions?: Subdivision[];
332
399
  }
333
400
  /** @oneof */
@@ -344,9 +411,17 @@ export interface StreetAddress {
344
411
  name?: string;
345
412
  }
346
413
  export interface AddressLocation {
347
- /** address latitude coordinates */
414
+ /**
415
+ * address latitude coordinates
416
+ * @min -90
417
+ * @max 90
418
+ */
348
419
  latitude?: number | null;
349
- /** address longitude coordinates */
420
+ /**
421
+ * address longitude coordinates
422
+ * @min -180
423
+ * @max 180
424
+ */
350
425
  longitude?: number | null;
351
426
  }
352
427
  export interface Subdivision {
@@ -377,13 +452,19 @@ export interface ScheduleConfig {
377
452
  * `startDate`, `endDate` and `timeZoneId` are not required when schedule is TBD.
378
453
  */
379
454
  scheduleTbd?: boolean;
380
- /** TBD message. */
455
+ /**
456
+ * TBD message.
457
+ * @maxLength 100
458
+ */
381
459
  scheduleTbdMessage?: string | null;
382
460
  /** Event start timestamp. */
383
461
  startDate?: Date | null;
384
462
  /** Event end timestamp. */
385
463
  endDate?: Date | null;
386
- /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
464
+ /**
465
+ * Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`.
466
+ * @maxLength 100
467
+ */
387
468
  timeZoneId?: string | null;
388
469
  /** Whether end date is hidden in the formatted schedule. */
389
470
  endDateHidden?: boolean;
@@ -393,7 +474,10 @@ export interface ScheduleConfig {
393
474
  recurrences?: Recurrences;
394
475
  }
395
476
  export interface Recurrences {
396
- /** Event occurrences. */
477
+ /**
478
+ * Event occurrences.
479
+ * @maxSize 1000
480
+ */
397
481
  occurrences?: Occurrence[];
398
482
  /**
399
483
  * Recurring event category ID.
@@ -411,7 +495,10 @@ export interface Occurrence {
411
495
  startDate?: Date | null;
412
496
  /** Event end timestamp. */
413
497
  endDate?: Date | null;
414
- /** Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`. */
498
+ /**
499
+ * Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`.
500
+ * @maxLength 100
501
+ */
415
502
  timeZoneId?: string | null;
416
503
  /** Whether time zone is displayed in formatted schedule. */
417
504
  showTimeZone?: boolean;
@@ -431,6 +518,7 @@ export declare enum Status {
431
518
  export interface Event {
432
519
  /**
433
520
  * Event ID.
521
+ * @format GUID
434
522
  * @readonly
435
523
  */
436
524
  id?: string;
@@ -470,7 +558,10 @@ export interface Event {
470
558
  instanceId?: string;
471
559
  /** Guest list configuration. */
472
560
  guestListConfig?: GuestListConfig;
473
- /** Event creator user ID. */
561
+ /**
562
+ * Event creator user ID.
563
+ * @maxLength 36
564
+ */
474
565
  userId?: string;
475
566
  /** Event discussion feed. For internal use. */
476
567
  feed?: Feed;
@@ -509,7 +600,11 @@ export interface Scheduling {
509
600
  endTimeFormatted?: string;
510
601
  }
511
602
  export interface Image {
512
- /** WixMedia image ID. */
603
+ /**
604
+ * WixMedia image ID.
605
+ * @minLength 1
606
+ * @maxLength 200
607
+ */
513
608
  id?: string | null;
514
609
  /** Image URL. */
515
610
  url?: string;
@@ -647,17 +742,31 @@ export interface TicketingConfig {
647
742
  guestAssignedTickets?: boolean;
648
743
  /** Tax configuration. */
649
744
  taxConfig?: TaxConfig;
650
- /** Limit of tickets that can be purchased per order, default 20. */
745
+ /**
746
+ * Limit of tickets that can be purchased per order, default 20.
747
+ * @max 50
748
+ */
651
749
  ticketLimitPerOrder?: number;
652
- /** Duration for which the tickets being bought are reserved. */
750
+ /**
751
+ * Duration for which the tickets being bought are reserved.
752
+ * @min 5
753
+ * @max 30
754
+ */
653
755
  reservationDurationInMinutes?: number | null;
654
756
  }
655
757
  export interface TaxConfig {
656
758
  /** Tax application settings. */
657
759
  type?: TaxType;
658
- /** Tax name. */
760
+ /**
761
+ * Tax name.
762
+ * @minLength 1
763
+ * @maxLength 10
764
+ */
659
765
  name?: string | null;
660
- /** Tax rate (e.g.,`21.55`). */
766
+ /**
767
+ * Tax rate (e.g.,`21.55`).
768
+ * @decimalValue options - {gte:0.001,lte:100,maxScale:3}
769
+ */
661
770
  rate?: string | null;
662
771
  /** Applies taxes for donations, default true. */
663
772
  appliesToDonations?: boolean | null;
@@ -673,12 +782,19 @@ export declare enum TaxType {
673
782
  export interface Money {
674
783
  /**
675
784
  * *Deprecated:** Use `value` instead.
785
+ * @format DECIMAL_VALUE
676
786
  * @deprecated
677
787
  */
678
788
  amount?: string;
679
- /** ISO 4217 format of the currency e.g., `USD`. */
789
+ /**
790
+ * ISO 4217 format of the currency e.g., `USD`.
791
+ * @format CURRENCY
792
+ */
680
793
  currency?: string;
681
- /** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
794
+ /**
795
+ * Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative.
796
+ * @format DECIMAL_VALUE
797
+ */
682
798
  value?: string | null;
683
799
  }
684
800
  export interface ExternalEvent {
@@ -833,21 +949,29 @@ export declare enum ValueType {
833
949
  * Defaults to first (0th) option if not configured.
834
950
  */
835
951
  export interface OptionSelection extends OptionSelectionSelectedOptionOneOf {
836
- /** 0-based index from predefined `input.options` which is selected initially. */
952
+ /**
953
+ * 0-based index from predefined `input.options` which is selected initially.
954
+ * @max 199
955
+ */
837
956
  optionIndex?: number;
838
957
  /**
839
958
  * Placeholder hint describing expected choices (such as "Please select").
840
959
  * Considered an empty choice.
960
+ * @maxLength 200
841
961
  */
842
962
  placeholderText?: string;
843
963
  }
844
964
  /** @oneof */
845
965
  export interface OptionSelectionSelectedOptionOneOf {
846
- /** 0-based index from predefined `input.options` which is selected initially. */
966
+ /**
967
+ * 0-based index from predefined `input.options` which is selected initially.
968
+ * @max 199
969
+ */
847
970
  optionIndex?: number;
848
971
  /**
849
972
  * Placeholder hint describing expected choices (such as "Please select").
850
973
  * Considered an empty choice.
974
+ * @maxLength 200
851
975
  */
852
976
  placeholderText?: string;
853
977
  }
@@ -1002,7 +1126,10 @@ export interface OnlineConferencingConfig {
1002
1126
  * When enabled, links to join conferencing are generated and provided to guests.
1003
1127
  */
1004
1128
  enabled?: boolean;
1005
- /** Conferencing provider ID. */
1129
+ /**
1130
+ * Conferencing provider ID.
1131
+ * @format GUID
1132
+ */
1006
1133
  providerId?: string | null;
1007
1134
  /** Conference type */
1008
1135
  conferenceType?: ConferenceType;
@@ -1041,7 +1168,10 @@ export interface OnlineConferencingSession {
1041
1168
  sessionId?: string | null;
1042
1169
  }
1043
1170
  export interface SeoSettings {
1044
- /** URL slug */
1171
+ /**
1172
+ * URL slug
1173
+ * @maxLength 130
1174
+ */
1045
1175
  slug?: string;
1046
1176
  /** Advanced SEO data */
1047
1177
  advancedSeoData?: SeoSchema;
@@ -1067,7 +1197,10 @@ export interface Keyword {
1067
1197
  term?: string;
1068
1198
  /** Whether the keyword is the main focus keyword. */
1069
1199
  isMain?: boolean;
1070
- /** The source that added the keyword terms to the SEO settings. */
1200
+ /**
1201
+ * The source that added the keyword terms to the SEO settings.
1202
+ * @maxLength 1000
1203
+ */
1071
1204
  origin?: string | null;
1072
1205
  }
1073
1206
  export interface Tag {
@@ -1100,7 +1233,10 @@ export interface Settings {
1100
1233
  * Default: `false` (Auto Redirect is enabled.)
1101
1234
  */
1102
1235
  preventAutoRedirect?: boolean;
1103
- /** User-selected keyword terms for a specific page. */
1236
+ /**
1237
+ * User-selected keyword terms for a specific page.
1238
+ * @maxSize 5
1239
+ */
1104
1240
  keywords?: Keyword[];
1105
1241
  }
1106
1242
  export interface Agenda {
@@ -1115,10 +1251,15 @@ export interface Agenda {
1115
1251
  export interface Category {
1116
1252
  /**
1117
1253
  * Category ID.
1254
+ * @format GUID
1118
1255
  * @readonly
1119
1256
  */
1120
1257
  id?: string;
1121
- /** Category name. */
1258
+ /**
1259
+ * Category name.
1260
+ * @minLength 1
1261
+ * @maxLength 30
1262
+ */
1122
1263
  name?: string;
1123
1264
  /**
1124
1265
  * Date and time when category was created.
@@ -1141,6 +1282,7 @@ export interface Category {
1141
1282
  * Default: `MANUAL`.
1142
1283
  *
1143
1284
  * **Note:** The WIX_EVENTS.MANAGE_AUTO_CATEGORIES permission scope is required to use states other than `MANUAL`.
1285
+ * @maxSize 3
1144
1286
  */
1145
1287
  states?: State[];
1146
1288
  }
@@ -1766,11 +1908,20 @@ export interface GIFData {
1766
1908
  gifType?: GIFType;
1767
1909
  }
1768
1910
  export interface GIF {
1769
- /** GIF format URL. */
1911
+ /**
1912
+ * GIF format URL.
1913
+ * @format WEB_URL
1914
+ */
1770
1915
  gif?: string | null;
1771
- /** MP4 format URL. */
1916
+ /**
1917
+ * MP4 format URL.
1918
+ * @format WEB_URL
1919
+ */
1772
1920
  mp4?: string | null;
1773
- /** Thumbnail URL. */
1921
+ /**
1922
+ * Thumbnail URL.
1923
+ * @format WEB_URL
1924
+ */
1774
1925
  still?: string | null;
1775
1926
  }
1776
1927
  export declare enum GIFType {
@@ -1836,6 +1987,22 @@ export interface ImageData {
1836
1987
  caption?: string | null;
1837
1988
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
1838
1989
  disableDownload?: boolean | null;
1990
+ /** Sets whether the image is decorative and does not need an explanation. Defaults to `false`. */
1991
+ decorative?: boolean | null;
1992
+ /** Styling for the image. */
1993
+ styles?: ImageDataStyles;
1994
+ }
1995
+ export interface StylesBorder {
1996
+ /** Border width in pixels. */
1997
+ width?: number | null;
1998
+ /** Border color. */
1999
+ color?: string | null;
2000
+ /** Border radius in pixels. */
2001
+ radius?: number | null;
2002
+ }
2003
+ export interface ImageDataStyles {
2004
+ /** Border attributes. */
2005
+ border?: StylesBorder;
1839
2006
  }
1840
2007
  export interface LinkPreviewData {
1841
2008
  /** Styling for the link preview's container. */
@@ -1982,13 +2149,22 @@ export declare enum BackgroundType {
1982
2149
  export interface Gradient {
1983
2150
  /** The gradient angle in degrees. */
1984
2151
  angle?: number | null;
1985
- /** The start color as a hexademical value. */
2152
+ /**
2153
+ * The start color as a hexademical value.
2154
+ * @format COLOR_HEX
2155
+ */
1986
2156
  startColor?: string | null;
1987
- /** The end color as a hexademical value. */
2157
+ /**
2158
+ * The end color as a hexademical value.
2159
+ * @format COLOR_HEX
2160
+ */
1988
2161
  lastColor?: string | null;
1989
2162
  }
1990
2163
  export interface Background extends BackgroundBackgroundOneOf {
1991
- /** The background color as a hexademical value. */
2164
+ /**
2165
+ * The background color as a hexademical value.
2166
+ * @format COLOR_HEX
2167
+ */
1992
2168
  color?: string | null;
1993
2169
  /** An image to use for the background. */
1994
2170
  image?: Media;
@@ -1999,7 +2175,10 @@ export interface Background extends BackgroundBackgroundOneOf {
1999
2175
  }
2000
2176
  /** @oneof */
2001
2177
  export interface BackgroundBackgroundOneOf {
2002
- /** The background color as a hexademical value. */
2178
+ /**
2179
+ * The background color as a hexademical value.
2180
+ * @format COLOR_HEX
2181
+ */
2003
2182
  color?: string | null;
2004
2183
  /** An image to use for the background. */
2005
2184
  image?: Media;
@@ -2311,17 +2490,32 @@ export declare enum VerticalAlignment {
2311
2490
  export interface CellStyle {
2312
2491
  /** Vertical alignment for the cell's text. */
2313
2492
  verticalAlignment?: VerticalAlignment;
2314
- /** Cell background color as a hexadecimal value. */
2493
+ /**
2494
+ * Cell background color as a hexadecimal value.
2495
+ * @format COLOR_HEX
2496
+ */
2315
2497
  backgroundColor?: string | null;
2316
2498
  }
2317
2499
  export interface BorderColors {
2318
- /** Left border color as a hexadecimal value. */
2500
+ /**
2501
+ * Left border color as a hexadecimal value.
2502
+ * @format COLOR_HEX
2503
+ */
2319
2504
  left?: string | null;
2320
- /** Right border color as a hexadecimal value. */
2505
+ /**
2506
+ * Right border color as a hexadecimal value.
2507
+ * @format COLOR_HEX
2508
+ */
2321
2509
  right?: string | null;
2322
- /** Top border color as a hexadecimal value. */
2510
+ /**
2511
+ * Top border color as a hexadecimal value.
2512
+ * @format COLOR_HEX
2513
+ */
2323
2514
  top?: string | null;
2324
- /** Bottom border color as a hexadecimal value. */
2515
+ /**
2516
+ * Bottom border color as a hexadecimal value.
2517
+ * @format COLOR_HEX
2518
+ */
2325
2519
  bottom?: string | null;
2326
2520
  }
2327
2521
  /**
@@ -2432,19 +2626,31 @@ export interface TextNodeStyle {
2432
2626
  export interface OrderConfirmed {
2433
2627
  /** Order confirmation timestamp in ISO UTC. */
2434
2628
  timestamp?: Date | null;
2435
- /** Site language when Order initiated */
2629
+ /**
2630
+ * Site language when Order initiated
2631
+ * @format LANGUAGE
2632
+ */
2436
2633
  language?: string | null;
2437
2634
  /** Notifications silenced for this domain event. */
2438
2635
  silent?: boolean | null;
2439
- /** Locale in which Order was created. */
2636
+ /**
2637
+ * Locale in which Order was created.
2638
+ * @format LANGUAGE_TAG
2639
+ */
2440
2640
  locale?: string | null;
2441
- /** Event ID. */
2641
+ /**
2642
+ * Event ID.
2643
+ * @format GUID
2644
+ */
2442
2645
  eventId?: string;
2443
2646
  /** Unique order number. */
2444
2647
  orderNumber?: string;
2445
2648
  /** Contact ID associated with this order. */
2446
2649
  contactId?: string;
2447
- /** Member ID associated with this order. */
2650
+ /**
2651
+ * Member ID associated with this order.
2652
+ * @format GUID
2653
+ */
2448
2654
  memberId?: string | null;
2449
2655
  /**
2450
2656
  * Order created timestamp
@@ -2471,19 +2677,35 @@ export interface OrderConfirmed {
2471
2677
  reservationId?: string;
2472
2678
  }
2473
2679
  export interface FormResponse {
2474
- /** Input values entered when filling the form. */
2680
+ /**
2681
+ * Input values entered when filling the form.
2682
+ * @maxSize 200
2683
+ */
2475
2684
  inputValues?: InputValue[];
2476
2685
  }
2477
2686
  export interface InputValue {
2478
- /** Input field name. */
2687
+ /**
2688
+ * Input field name.
2689
+ * @maxLength 100
2690
+ */
2479
2691
  inputName?: string;
2480
- /** Text entered into the input field. */
2692
+ /**
2693
+ * Text entered into the input field.
2694
+ * @maxLength 5000
2695
+ */
2481
2696
  value?: string;
2482
- /** Multiple selection values. For example, the array is filled if several checkboxes are ticked. */
2697
+ /**
2698
+ * Multiple selection values. For example, the array is filled if several checkboxes are ticked.
2699
+ * @maxSize 100
2700
+ * @maxLength 5000
2701
+ */
2483
2702
  values?: string[];
2484
2703
  }
2485
2704
  export interface FormattedAddress {
2486
- /** One line address representation. */
2705
+ /**
2706
+ * One line address representation.
2707
+ * @maxLength 200
2708
+ */
2487
2709
  formatted?: string;
2488
2710
  /** Address components (optional). */
2489
2711
  address?: CommonAddress;
@@ -2494,7 +2716,10 @@ export interface CommonAddress extends CommonAddressStreetOneOf {
2494
2716
  streetAddress?: CommonStreetAddress;
2495
2717
  /** Main address line, usually street and number as free text. */
2496
2718
  addressLine?: string | null;
2497
- /** Country code. */
2719
+ /**
2720
+ * Country code.
2721
+ * @format COUNTRY
2722
+ */
2498
2723
  country?: string | null;
2499
2724
  /** Subdivision shorthand. Usually, a short code (2 or 3 letters) that represents a state, region, prefecture, or province. e.g. NY */
2500
2725
  subdivision?: string | null;
@@ -2532,7 +2757,10 @@ export interface CommonSubdivision {
2532
2757
  }
2533
2758
  /** Subdivision Concordance values */
2534
2759
  export interface StandardDetails {
2535
- /** subdivision iso-3166-2 code according to [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2). e.g. US-NY, GB-SCT, NO-30 */
2760
+ /**
2761
+ * subdivision iso-3166-2 code according to [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2). e.g. US-NY, GB-SCT, NO-30
2762
+ * @maxLength 20
2763
+ */
2536
2764
  iso31662?: string | null;
2537
2765
  }
2538
2766
  export declare enum OrderStatus {
@@ -2562,7 +2790,10 @@ export declare enum OrderStatus {
2562
2790
  export interface Ticket {
2563
2791
  /** Unique issued ticket number. */
2564
2792
  ticketNumber?: string;
2565
- /** Ticket definition ID. */
2793
+ /**
2794
+ * Ticket definition ID.
2795
+ * @format GUID
2796
+ */
2566
2797
  ticketDefinitionId?: string;
2567
2798
  /** Ticket check-in. */
2568
2799
  checkIn?: CheckIn;
@@ -2576,11 +2807,17 @@ export interface Ticket {
2576
2807
  lastName?: string | null;
2577
2808
  /** Guest email. */
2578
2809
  email?: string | null;
2579
- /** Contact ID associated with this ticket. */
2810
+ /**
2811
+ * Contact ID associated with this ticket.
2812
+ * @format GUID
2813
+ */
2580
2814
  contactId?: string | null;
2581
2815
  /** Whether ticket is confirmed */
2582
2816
  confirmed?: boolean;
2583
- /** Member ID associated with this ticket. */
2817
+ /**
2818
+ * Member ID associated with this ticket.
2819
+ * @format GUID
2820
+ */
2584
2821
  memberId?: string | null;
2585
2822
  /** Ticket form response (only assigned tickets contain separate forms). */
2586
2823
  form?: FormResponse;
@@ -2590,7 +2827,10 @@ export interface Ticket {
2590
2827
  anonymized?: boolean;
2591
2828
  /** URL and password to online conference */
2592
2829
  onlineConferencingLogin?: OnlineConferencingLogin;
2593
- /** Seat ID associated with this ticket. */
2830
+ /**
2831
+ * Seat ID associated with this ticket.
2832
+ * @maxLength 36
2833
+ */
2594
2834
  seatId?: string | null;
2595
2835
  /** Whether ticket is canceled. */
2596
2836
  canceled?: boolean | null;
@@ -2602,6 +2842,7 @@ export interface CheckIn {
2602
2842
  export interface OnlineConferencingLogin {
2603
2843
  /**
2604
2844
  * Link URL to the online conference.
2845
+ * @format WEB_URL
2605
2846
  * @readonly
2606
2847
  */
2607
2848
  link?: string;
@@ -2644,9 +2885,16 @@ export interface Invoice {
2644
2885
  previewUrl?: string | null;
2645
2886
  }
2646
2887
  export interface Item {
2647
- /** Unique line item ID. */
2888
+ /**
2889
+ * Unique line item ID.
2890
+ * @format GUID
2891
+ */
2648
2892
  id?: string;
2649
- /** Line item quantity. */
2893
+ /**
2894
+ * Line item quantity.
2895
+ * @min 1
2896
+ * @max 50
2897
+ */
2650
2898
  quantity?: number;
2651
2899
  /** Line item name. */
2652
2900
  name?: string;
@@ -2722,7 +2970,10 @@ export interface PaidPlanDiscountDiscountOneOf {
2722
2970
  percentDiscount?: PercentDiscount;
2723
2971
  }
2724
2972
  export interface PercentDiscount {
2725
- /** Percent rate. */
2973
+ /**
2974
+ * Percent rate.
2975
+ * @decimalValue options - {gte:0.01,lte:100,maxScale:2}
2976
+ */
2726
2977
  rate?: string;
2727
2978
  /** Number of discounted tickets. */
2728
2979
  quantityDiscounted?: number;
@@ -2735,7 +2986,10 @@ export interface Tax {
2735
2986
  * @readonly
2736
2987
  */
2737
2988
  name?: string;
2738
- /** Tax rate. */
2989
+ /**
2990
+ * Tax rate.
2991
+ * @format DECIMAL_VALUE
2992
+ */
2739
2993
  rate?: string;
2740
2994
  /** Taxable amount. */
2741
2995
  taxable?: Money;
@@ -2749,6 +3003,7 @@ export interface Fee {
2749
3003
  type?: FeeType;
2750
3004
  /**
2751
3005
  * Fee rate.
3006
+ * @format DECIMAL_VALUE
2752
3007
  * @readonly
2753
3008
  */
2754
3009
  rate?: string;
@@ -2771,19 +3026,37 @@ export declare enum FeeType {
2771
3026
  export interface OrderEmailAdded {
2772
3027
  /** Order updated timestamp in ISO UTC format. */
2773
3028
  timestamp?: Date | null;
2774
- /** Site language when Order initiated */
3029
+ /**
3030
+ * Site language when Order initiated
3031
+ * @format LANGUAGE
3032
+ */
2775
3033
  language?: string | null;
2776
- /** Locale in which Order was created. */
3034
+ /**
3035
+ * Locale in which Order was created.
3036
+ * @format LANGUAGE_TAG
3037
+ */
2777
3038
  locale?: string | null;
2778
3039
  /** Notifications silenced for this domain event. */
2779
3040
  silent?: boolean | null;
2780
- /** Event ID. */
3041
+ /**
3042
+ * Event ID.
3043
+ * @format GUID
3044
+ */
2781
3045
  eventId?: string;
2782
- /** Unique order number. */
3046
+ /**
3047
+ * Unique order number.
3048
+ * @maxLength 36
3049
+ */
2783
3050
  orderNumber?: string;
2784
- /** Contact ID associated with this order. */
3051
+ /**
3052
+ * Contact ID associated with this order.
3053
+ * @format GUID
3054
+ */
2785
3055
  contactId?: string | null;
2786
- /** Member ID associated with this order. */
3056
+ /**
3057
+ * Member ID associated with this order.
3058
+ * @format GUID
3059
+ */
2787
3060
  memberId?: string | null;
2788
3061
  /**
2789
3062
  * Order created timestamp.
@@ -2795,11 +3068,20 @@ export interface OrderEmailAdded {
2795
3068
  * @readonly
2796
3069
  */
2797
3070
  updated?: Date | null;
2798
- /** Buyer first name. */
3071
+ /**
3072
+ * Buyer first name.
3073
+ * @maxLength 255
3074
+ */
2799
3075
  firstName?: string | null;
2800
- /** Buyer last name. */
3076
+ /**
3077
+ * Buyer last name.
3078
+ * @maxLength 255
3079
+ */
2801
3080
  lastName?: string | null;
2802
- /** Buyer email. */
3081
+ /**
3082
+ * Buyer email.
3083
+ * @format EMAIL
3084
+ */
2803
3085
  email?: string | null;
2804
3086
  /** Checkout form response. */
2805
3087
  checkoutForm?: FormResponse;
@@ -2807,29 +3089,47 @@ export interface OrderEmailAdded {
2807
3089
  confirmed?: boolean;
2808
3090
  /** Order status. */
2809
3091
  status?: OrderStatus;
2810
- /** Payment method used for paid tickets purchase, i.e. "payPal", "creditCard", etc. */
3092
+ /**
3093
+ * Payment method used for paid tickets purchase, i.e. "payPal", "creditCard", etc.
3094
+ * @maxLength 100
3095
+ */
2811
3096
  method?: string | null;
2812
- /** Tickets generated after payment. */
3097
+ /**
3098
+ * Tickets generated after payment.
3099
+ * @maxSize 50
3100
+ */
2813
3101
  tickets?: Ticket[];
2814
3102
  /** Whether order was archived and excluded from results. */
2815
3103
  archived?: boolean;
2816
- /** Reservation ID associated with this order. */
3104
+ /**
3105
+ * Reservation ID associated with this order.
3106
+ * @format GUID
3107
+ */
2817
3108
  reservationId?: string;
2818
3109
  }
2819
3110
  export interface EventCanceled {
2820
3111
  /** Event canceled timestamp in ISO UTC format. */
2821
3112
  timestamp?: Date | null;
2822
- /** Event ID. */
3113
+ /**
3114
+ * Event ID.
3115
+ * @format GUID
3116
+ */
2823
3117
  eventId?: string;
2824
3118
  /** Event title */
2825
3119
  title?: string;
2826
- /** Event creator user ID. */
3120
+ /**
3121
+ * Event creator user ID.
3122
+ * @format GUID
3123
+ */
2827
3124
  userId?: string | null;
2828
3125
  }
2829
3126
  export interface EventReminder {
2830
3127
  /** Reminder timestamp in ISO UTC format. */
2831
3128
  timestamp?: Date | null;
2832
- /** Event ID. */
3129
+ /**
3130
+ * Event ID.
3131
+ * @format GUID
3132
+ */
2833
3133
  eventId?: string;
2834
3134
  /** Event location. */
2835
3135
  location?: Location;
@@ -2837,7 +3137,10 @@ export interface EventReminder {
2837
3137
  scheduleConfig?: ScheduleConfig;
2838
3138
  /** Event title. */
2839
3139
  title?: string;
2840
- /** Event creator user ID. */
3140
+ /**
3141
+ * Event creator user ID.
3142
+ * @format GUID
3143
+ */
2841
3144
  userId?: string | null;
2842
3145
  /** Time until the event starts (currently, reminder is triggered 1 day before event starts). */
2843
3146
  startsIn?: TimeDuration;
@@ -2849,86 +3152,164 @@ export interface EventReminder {
2849
3152
  export interface TimeDuration {
2850
3153
  /** Number of days. */
2851
3154
  days?: number;
2852
- /** Number of hours. */
3155
+ /**
3156
+ * Number of hours.
3157
+ * @max 24
3158
+ */
2853
3159
  hours?: number;
2854
- /** Number of minutes. */
3160
+ /**
3161
+ * Number of minutes.
3162
+ * @max 60
3163
+ */
2855
3164
  minutes?: number;
2856
3165
  }
2857
3166
  export interface OrderPaid {
2858
3167
  /** Order paid timestamp in ISO UTC. */
2859
3168
  timestamp?: Date | null;
2860
- /** Site language when Order initiated */
3169
+ /**
3170
+ * Site language when Order initiated
3171
+ * @format LANGUAGE
3172
+ */
2861
3173
  language?: string | null;
2862
3174
  /** Notifications silenced for this domain event. */
2863
3175
  silent?: boolean | null;
2864
- /** Locale in which Order was created. */
3176
+ /**
3177
+ * Locale in which Order was created.
3178
+ * @format LANGUAGE_TAG
3179
+ */
2865
3180
  locale?: string | null;
2866
- /** Event ID. */
3181
+ /**
3182
+ * Event ID.
3183
+ * @format GUID
3184
+ */
2867
3185
  eventId?: string;
2868
3186
  /** Unique order number. */
2869
3187
  orderNumber?: string;
2870
3188
  /** Reservation ID associated with this order. */
2871
3189
  reservationId?: string;
2872
- /** Contact ID associated with this order. */
3190
+ /**
3191
+ * Contact ID associated with this order.
3192
+ * @maxLength 36
3193
+ */
2873
3194
  contactId?: string;
2874
- /** Member ID associated with this order. */
3195
+ /**
3196
+ * Member ID associated with this order.
3197
+ * @format GUID
3198
+ */
2875
3199
  memberId?: string | null;
2876
3200
  /**
2877
3201
  * Order created timestamp
2878
3202
  * @readonly
2879
3203
  */
2880
3204
  created?: Date | null;
2881
- /** Buyer first name. */
3205
+ /**
3206
+ * Buyer first name.
3207
+ * @maxLength 255
3208
+ */
2882
3209
  firstName?: string;
2883
- /** Buyer last name. */
3210
+ /**
3211
+ * Buyer last name.
3212
+ * @maxLength 255
3213
+ */
2884
3214
  lastName?: string;
2885
- /** Buyer email address. */
3215
+ /**
3216
+ * Buyer email address.
3217
+ * @maxLength 255
3218
+ */
2886
3219
  email?: string;
2887
3220
  /** Checkout form response. */
2888
3221
  checkoutForm?: FormResponse;
2889
3222
  /** Order status. */
2890
3223
  status?: OrderStatus;
2891
- /** Payment method used for paid tickets purchase, i.e. "payPal", "creditCard", etc. */
3224
+ /**
3225
+ * Payment method used for paid tickets purchase, i.e. "payPal", "creditCard", etc.
3226
+ * @maxLength 255
3227
+ */
2892
3228
  method?: string | null;
2893
- /** Tickets (generated after payment). */
3229
+ /**
3230
+ * Tickets (generated after payment).
3231
+ * @maxSize 50
3232
+ */
2894
3233
  tickets?: Ticket[];
2895
3234
  /** Invoice. */
2896
3235
  invoice?: Invoice;
2897
3236
  }
2898
3237
  export interface TicketPdfResolved {
2899
- /** Optional order number */
3238
+ /**
3239
+ * Optional order number
3240
+ * @maxLength 36
3241
+ */
2900
3242
  orderNumber?: string | null;
2901
- /** Optional ticket number */
3243
+ /**
3244
+ * Optional ticket number
3245
+ * @maxLength 36
3246
+ */
2902
3247
  ticketNumber?: string | null;
2903
- /** Resolved download url */
3248
+ /**
3249
+ * Resolved download url
3250
+ * @format WEB_URL
3251
+ */
2904
3252
  downloadUrl?: string | null;
2905
3253
  /** Resolve status */
2906
3254
  resolveFailed?: boolean | null;
2907
- /** Papyrus document id */
3255
+ /**
3256
+ * Papyrus document id
3257
+ * @format GUID
3258
+ */
2908
3259
  documentId?: string | null;
2909
3260
  }
2910
3261
  export interface TicketPdfResolveDelayed {
2911
- /** Optional order number */
3262
+ /**
3263
+ * Optional order number
3264
+ * @maxLength 36
3265
+ */
2912
3266
  orderNumber?: string | null;
2913
- /** Optional ticket number */
3267
+ /**
3268
+ * Optional ticket number
3269
+ * @maxLength 36
3270
+ */
2914
3271
  ticketNumber?: string | null;
2915
- /** Papyrus document id */
3272
+ /**
3273
+ * Papyrus document id
3274
+ * @format GUID
3275
+ */
2916
3276
  documentId?: string | null;
2917
3277
  }
2918
3278
  export interface OrderCanceled {
2919
- /** Event ID. */
3279
+ /**
3280
+ * Event ID.
3281
+ * @format GUID
3282
+ */
2920
3283
  eventId?: string;
2921
- /** Unique order number. */
3284
+ /**
3285
+ * Unique order number.
3286
+ * @maxLength 36
3287
+ */
2922
3288
  orderNumber?: string;
2923
- /** Reservation ID associated with this order. */
3289
+ /**
3290
+ * Reservation ID associated with this order.
3291
+ * @format GUID
3292
+ */
2924
3293
  reservationId?: string;
2925
- /** Contact ID associated with this order. */
3294
+ /**
3295
+ * Contact ID associated with this order.
3296
+ * @maxLength 36
3297
+ */
2926
3298
  contactId?: string;
2927
- /** Buyer first name. */
3299
+ /**
3300
+ * Buyer first name.
3301
+ * @maxLength 50
3302
+ */
2928
3303
  firstName?: string | null;
2929
- /** Buyer last name. */
3304
+ /**
3305
+ * Buyer last name.
3306
+ * @maxLength 50
3307
+ */
2930
3308
  lastName?: string | null;
2931
- /** Buyer email address. */
3309
+ /**
3310
+ * Buyer email address.
3311
+ * @maxLength 255
3312
+ */
2932
3313
  email?: string | null;
2933
3314
  /** Checkout form response. */
2934
3315
  checkoutForm?: FormResponse;
@@ -2938,17 +3319,26 @@ export interface OrderCanceled {
2938
3319
  export interface EventEnded {
2939
3320
  /** Event end timestamp in ISO UTC format. */
2940
3321
  timestamp?: Date | null;
2941
- /** Event ID. */
3322
+ /**
3323
+ * Event ID.
3324
+ * @format GUID
3325
+ */
2942
3326
  eventId?: string;
2943
3327
  }
2944
3328
  export interface EventStarted {
2945
3329
  /** Event start timestamp in ISO UTC format. */
2946
3330
  timestamp?: Date | null;
2947
- /** Event ID. */
3331
+ /**
3332
+ * Event ID.
3333
+ * @format GUID
3334
+ */
2948
3335
  eventId?: string;
2949
3336
  }
2950
3337
  export interface ResolveNotificationConfigRequest {
2951
- /** Id of the NotificationConfig to retrieve */
3338
+ /**
3339
+ * Id of the NotificationConfig to retrieve
3340
+ * @format GUID
3341
+ */
2952
3342
  notificationConfigId: string;
2953
3343
  }
2954
3344
  export interface ResolveNotificationConfigResponse {
@@ -2964,7 +3354,10 @@ export interface UpsertNotificationConfigResponse {
2964
3354
  notificationConfig?: NotificationConfig;
2965
3355
  }
2966
3356
  export interface ResolveEmailNotificationConfigRequest {
2967
- /** Id of the NotificationConfig to retrieve */
3357
+ /**
3358
+ * Id of the NotificationConfig to retrieve
3359
+ * @format GUID
3360
+ */
2968
3361
  notificationConfigId?: string;
2969
3362
  /** Notification type */
2970
3363
  notificationType?: EmailNotificationType;
@@ -2976,17 +3369,26 @@ export interface ResolveEmailNotificationConfigResponse {
2976
3369
  export interface EventDeleted {
2977
3370
  /** Event deleted timestamp in ISO UTC format. */
2978
3371
  timestamp?: Date | null;
2979
- /** Event ID. */
3372
+ /**
3373
+ * Event ID.
3374
+ * @format GUID
3375
+ */
2980
3376
  eventId?: string;
2981
3377
  /** Event title. */
2982
3378
  title?: string;
2983
- /** Event creator user ID. */
3379
+ /**
3380
+ * Event creator user ID.
3381
+ * @format GUID
3382
+ */
2984
3383
  userId?: string | null;
2985
3384
  }
2986
3385
  export interface EventCopied {
2987
3386
  /** Event created timestamp in ISO UTC format. */
2988
3387
  timestamp?: Date | null;
2989
- /** Event ID. */
3388
+ /**
3389
+ * Event ID.
3390
+ * @format GUID
3391
+ */
2990
3392
  eventId?: string;
2991
3393
  /** Event location. */
2992
3394
  location?: Location;
@@ -2994,13 +3396,22 @@ export interface EventCopied {
2994
3396
  scheduleConfig?: ScheduleConfig;
2995
3397
  /** Event title. */
2996
3398
  title?: string;
2997
- /** Event creator user ID. */
3399
+ /**
3400
+ * Event creator user ID.
3401
+ * @format GUID
3402
+ */
2998
3403
  userId?: string | null;
2999
3404
  /** Event status. */
3000
3405
  status?: EventStatus;
3001
- /** Instance ID. Indicates the original app instance which current event was derived from. */
3406
+ /**
3407
+ * Instance ID. Indicates the original app instance which current event was derived from.
3408
+ * @format GUID
3409
+ */
3002
3410
  derivedFromInstanceId?: string | null;
3003
- /** Event ID. Indicates the original event which current event was derived from. */
3411
+ /**
3412
+ * Event ID. Indicates the original event which current event was derived from.
3413
+ * @format GUID
3414
+ */
3004
3415
  derivedFromEventId?: string | null;
3005
3416
  /**
3006
3417
  * Map of copied ticket definitions from original event.
@@ -3010,9 +3421,15 @@ export interface EventCopied {
3010
3421
  ticketDefinitions?: Record<string, string>;
3011
3422
  }
3012
3423
  export interface MessageEnvelope {
3013
- /** App instance ID. */
3424
+ /**
3425
+ * App instance ID.
3426
+ * @format GUID
3427
+ */
3014
3428
  instanceId?: string | null;
3015
- /** Event type. */
3429
+ /**
3430
+ * Event type.
3431
+ * @maxLength 150
3432
+ */
3016
3433
  eventType?: string;
3017
3434
  /** The identification type and identity data. */
3018
3435
  identity?: IdentificationData;
@@ -3020,26 +3437,50 @@ export interface MessageEnvelope {
3020
3437
  data?: string;
3021
3438
  }
3022
3439
  export interface IdentificationData extends IdentificationDataIdOneOf {
3023
- /** ID of a site visitor that has not logged in to the site. */
3440
+ /**
3441
+ * ID of a site visitor that has not logged in to the site.
3442
+ * @format GUID
3443
+ */
3024
3444
  anonymousVisitorId?: string;
3025
- /** ID of a site visitor that has logged in to the site. */
3445
+ /**
3446
+ * ID of a site visitor that has logged in to the site.
3447
+ * @format GUID
3448
+ */
3026
3449
  memberId?: string;
3027
- /** ID of a Wix user (site owner, contributor, etc.). */
3450
+ /**
3451
+ * ID of a Wix user (site owner, contributor, etc.).
3452
+ * @format GUID
3453
+ */
3028
3454
  wixUserId?: string;
3029
- /** ID of an app. */
3455
+ /**
3456
+ * ID of an app.
3457
+ * @format GUID
3458
+ */
3030
3459
  appId?: string;
3031
3460
  /** @readonly */
3032
3461
  identityType?: WebhookIdentityType;
3033
3462
  }
3034
3463
  /** @oneof */
3035
3464
  export interface IdentificationDataIdOneOf {
3036
- /** ID of a site visitor that has not logged in to the site. */
3465
+ /**
3466
+ * ID of a site visitor that has not logged in to the site.
3467
+ * @format GUID
3468
+ */
3037
3469
  anonymousVisitorId?: string;
3038
- /** ID of a site visitor that has logged in to the site. */
3470
+ /**
3471
+ * ID of a site visitor that has logged in to the site.
3472
+ * @format GUID
3473
+ */
3039
3474
  memberId?: string;
3040
- /** ID of a Wix user (site owner, contributor, etc.). */
3475
+ /**
3476
+ * ID of a Wix user (site owner, contributor, etc.).
3477
+ * @format GUID
3478
+ */
3041
3479
  wixUserId?: string;
3042
- /** ID of an app. */
3480
+ /**
3481
+ * ID of an app.
3482
+ * @format GUID
3483
+ */
3043
3484
  appId?: string;
3044
3485
  }
3045
3486
  export declare enum WebhookIdentityType {