@wix/events 1.0.154 → 1.0.155

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 (49) hide show
  1. package/build/cjs/index.d.ts +3 -3
  2. package/build/cjs/index.js +4 -4
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +3 -3
  5. package/build/cjs/index.typings.js +4 -4
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +3 -3
  8. package/build/cjs/meta.js +4 -4
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/src/events-guests-v1-guest.universal.d.ts +4 -0
  11. package/build/cjs/src/events-guests-v1-guest.universal.js +4 -0
  12. package/build/cjs/src/events-guests-v1-guest.universal.js.map +1 -1
  13. package/build/cjs/src/events-v2-policy.universal.d.ts +14 -0
  14. package/build/cjs/src/events-v2-policy.universal.js +14 -0
  15. package/build/cjs/src/events-v2-policy.universal.js.map +1 -1
  16. package/build/cjs/src/events-v3-event.public.d.ts +2 -2
  17. package/build/cjs/src/events-v3-event.public.js +8 -1
  18. package/build/cjs/src/events-v3-event.public.js.map +1 -1
  19. package/build/cjs/src/events-v3-event.types.d.ts +468 -21
  20. package/build/cjs/src/events-v3-event.types.js +78 -1
  21. package/build/cjs/src/events-v3-event.types.js.map +1 -1
  22. package/build/cjs/src/events-v3-event.universal.d.ts +500 -19
  23. package/build/cjs/src/events-v3-event.universal.js +124 -1
  24. package/build/cjs/src/events-v3-event.universal.js.map +1 -1
  25. package/build/es/index.d.ts +3 -3
  26. package/build/es/index.js +3 -3
  27. package/build/es/index.js.map +1 -1
  28. package/build/es/index.typings.d.ts +3 -3
  29. package/build/es/index.typings.js +3 -3
  30. package/build/es/index.typings.js.map +1 -1
  31. package/build/es/meta.d.ts +3 -3
  32. package/build/es/meta.js +3 -3
  33. package/build/es/meta.js.map +1 -1
  34. package/build/es/src/events-guests-v1-guest.universal.d.ts +4 -0
  35. package/build/es/src/events-guests-v1-guest.universal.js +4 -0
  36. package/build/es/src/events-guests-v1-guest.universal.js.map +1 -1
  37. package/build/es/src/events-v2-policy.universal.d.ts +14 -0
  38. package/build/es/src/events-v2-policy.universal.js +14 -0
  39. package/build/es/src/events-v2-policy.universal.js.map +1 -1
  40. package/build/es/src/events-v3-event.public.d.ts +2 -2
  41. package/build/es/src/events-v3-event.public.js +1 -1
  42. package/build/es/src/events-v3-event.public.js.map +1 -1
  43. package/build/es/src/events-v3-event.types.d.ts +468 -21
  44. package/build/es/src/events-v3-event.types.js +77 -0
  45. package/build/es/src/events-v3-event.types.js.map +1 -1
  46. package/build/es/src/events-v3-event.universal.d.ts +500 -19
  47. package/build/es/src/events-v3-event.universal.js +123 -0
  48. package/build/es/src/events-v3-event.universal.js.map +1 -1
  49. package/package.json +2 -2
@@ -12,7 +12,7 @@ export interface Event {
12
12
  shortDescription?: string | null;
13
13
  detailedDescription?: string | null;
14
14
  /** Main event image. */
15
- mainImage?: Image;
15
+ mainImage?: CommonImage;
16
16
  /**
17
17
  * Unique identifier of the event page. The naming is the same as the event title written in kebab case. For example, if your event title is "Leather Crafting 101", then the slug is "leather-crafting-101".
18
18
  * @readonly
@@ -211,7 +211,7 @@ export interface Formatted {
211
211
  */
212
212
  endTime?: string | null;
213
213
  }
214
- export interface Image {
214
+ export interface CommonImage {
215
215
  /** WixMedia image ID. */
216
216
  id?: string;
217
217
  /** Image URL. */
@@ -1364,19 +1364,7 @@ export interface FindEventResponse {
1364
1364
  /** Event. */
1365
1365
  event?: Event;
1366
1366
  }
1367
- export interface EventDeleted {
1368
- /** Event deleted timestamp in ISO UTC format. */
1369
- timestamp?: Date;
1370
- /** Event ID. */
1371
- eventId?: string;
1372
- /** Event title. */
1373
- title?: string;
1374
- /** Event creator user ID. */
1375
- userId?: string | null;
1376
- }
1377
- export interface Empty {
1378
- }
1379
- export interface EventCopied {
1367
+ export interface EventCreated {
1380
1368
  /** Event created timestamp in ISO UTC format. */
1381
1369
  timestamp?: Date;
1382
1370
  /** Event ID. */
@@ -1395,12 +1383,8 @@ export interface EventCopied {
1395
1383
  derivedFromInstanceId?: string | null;
1396
1384
  /** Event ID. Indicates the original event which current event was derived from. */
1397
1385
  derivedFromEventId?: string | null;
1398
- /**
1399
- * Map of copied ticket definitions from original event.
1400
- * Key represents ticket def id in the original event.
1401
- * Value represents ticket def id in the newly created event.
1402
- */
1403
- ticketDefinitions?: Record<string, string>;
1386
+ /** Event that was created. */
1387
+ event?: EventsEvent;
1404
1388
  }
1405
1389
  export interface EventsLocation {
1406
1390
  /** Location name. */
@@ -1575,6 +1559,469 @@ export declare enum EventStatus {
1575
1559
  /** Event is not public and needs to be published */
1576
1560
  DRAFT = "DRAFT"
1577
1561
  }
1562
+ export interface EventsEvent {
1563
+ /**
1564
+ * Event ID.
1565
+ * @readonly
1566
+ */
1567
+ id?: string;
1568
+ /** Event location. */
1569
+ location?: EventsLocation;
1570
+ /** Event scheduling. */
1571
+ scheduling?: Scheduling;
1572
+ /** Event title. */
1573
+ title?: string;
1574
+ /** Event description. */
1575
+ description?: string;
1576
+ /** Rich-text content displayed in Wix UI - "About Event" section (HTML). */
1577
+ about?: string;
1578
+ /** Main event image. */
1579
+ mainImage?: Image;
1580
+ /** Event slug URL (generated from event title). */
1581
+ slug?: string;
1582
+ /** ISO 639-1 language code of the event (used in content translations). */
1583
+ language?: string;
1584
+ /** Event creation timestamp. */
1585
+ created?: Date;
1586
+ /** Event modified timestamp. */
1587
+ modified?: Date;
1588
+ /** Event status. */
1589
+ status?: EventStatus;
1590
+ /** RSVP or ticketing registration details. */
1591
+ registration?: EventsRegistration;
1592
+ /** "Add to calendar" URLs. */
1593
+ calendarLinks?: CalendarLinks;
1594
+ /** Event page URL components. */
1595
+ eventPageUrl?: SiteUrl;
1596
+ /** Event registration form. */
1597
+ form?: Form;
1598
+ /** Event dashboard summary of RSVP / ticket sales. */
1599
+ dashboard?: Dashboard;
1600
+ /** Instance ID of the site where event is hosted. */
1601
+ instanceId?: string;
1602
+ /** Guest list configuration. */
1603
+ guestListConfig?: GuestListConfig;
1604
+ /** Event creator user ID. */
1605
+ userId?: string;
1606
+ /** Event discussion feed. For internal use. */
1607
+ feed?: EventsFeed;
1608
+ /** Online conferencing details. */
1609
+ onlineConferencing?: EventsOnlineConferencing;
1610
+ /** SEO settings. */
1611
+ seoSettings?: EventsSeoSettings;
1612
+ /** Assigned contacts label key. */
1613
+ assignedContactsLabel?: string | null;
1614
+ /** Agenda details. */
1615
+ agenda?: Agenda;
1616
+ /** Categories this event is assigned to. */
1617
+ categories?: Category[];
1618
+ /** Visual settings for event. */
1619
+ eventDisplaySettings?: EventsEventDisplaySettings;
1620
+ }
1621
+ export interface Scheduling {
1622
+ /** Schedule configuration. */
1623
+ config?: ScheduleConfig;
1624
+ /** Formatted schedule representation. */
1625
+ formatted?: string;
1626
+ /** Formatted start date of the event (empty for TBD schedules). */
1627
+ startDateFormatted?: string;
1628
+ /** Formatted start time of the event (empty for TBD schedules). */
1629
+ startTimeFormatted?: string;
1630
+ /** Formatted end date of the event (empty for TBD schedules or when end date is hidden). */
1631
+ endDateFormatted?: string;
1632
+ /** Formatted end time of the event (empty for TBD schedules or when end date is hidden). */
1633
+ endTimeFormatted?: string;
1634
+ }
1635
+ export interface Image {
1636
+ /** WixMedia image ID. */
1637
+ id?: string | null;
1638
+ /** Image URL. */
1639
+ url?: string;
1640
+ /** Original image height. */
1641
+ height?: number | null;
1642
+ /** Original image width. */
1643
+ width?: number | null;
1644
+ /** Image alt text. Optional. */
1645
+ altText?: string | null;
1646
+ }
1647
+ export interface EventsRegistration {
1648
+ /** Event type. */
1649
+ type?: EventType;
1650
+ /** Event registration status. */
1651
+ status?: RegistrationStatus;
1652
+ /** RSVP collection details. */
1653
+ rsvpCollection?: RsvpCollection;
1654
+ /** Ticketing details. */
1655
+ ticketing?: Ticketing;
1656
+ /** External registration details. */
1657
+ external?: ExternalEvent;
1658
+ /** Types of users allowed to register. */
1659
+ restrictedTo?: VisitorType;
1660
+ /** Initial event type which was set when creating an event. */
1661
+ initialType?: EventType;
1662
+ }
1663
+ export declare enum EventType {
1664
+ /** Type not available for this request fieldset */
1665
+ NA_EVENT_TYPE = "NA_EVENT_TYPE",
1666
+ /** Registration via RSVP */
1667
+ RSVP = "RSVP",
1668
+ /** Registration via ticket purchase */
1669
+ TICKETS = "TICKETS",
1670
+ /** External registration */
1671
+ EXTERNAL = "EXTERNAL",
1672
+ /** Registration not available */
1673
+ NO_REGISTRATION = "NO_REGISTRATION"
1674
+ }
1675
+ export declare enum RegistrationStatus {
1676
+ /** Registration status is not applicable */
1677
+ NA_REGISTRATION_STATUS = "NA_REGISTRATION_STATUS",
1678
+ /** Registration to event is closed */
1679
+ CLOSED = "CLOSED",
1680
+ /** Registration to event is closed manually */
1681
+ CLOSED_MANUALLY = "CLOSED_MANUALLY",
1682
+ /** Registration is open via RSVP */
1683
+ OPEN_RSVP = "OPEN_RSVP",
1684
+ /** Registration to event waitlist is open via RSVP */
1685
+ OPEN_RSVP_WAITLIST = "OPEN_RSVP_WAITLIST",
1686
+ /** Registration is open via ticket purchase */
1687
+ OPEN_TICKETS = "OPEN_TICKETS",
1688
+ /** Registration is open via external URL */
1689
+ OPEN_EXTERNAL = "OPEN_EXTERNAL",
1690
+ /** Registration will be open via RSVP */
1691
+ SCHEDULED_RSVP = "SCHEDULED_RSVP"
1692
+ }
1693
+ export interface RsvpCollection {
1694
+ /** RSVP collection configuration. */
1695
+ config?: RsvpCollectionConfig;
1696
+ }
1697
+ export interface RsvpCollectionConfig {
1698
+ /** Defines the supported RSVP statuses. */
1699
+ rsvpStatusOptions?: RsvpStatusOptions;
1700
+ /**
1701
+ * Total guest limit available to register to the event.
1702
+ * Additional guests per RSVP are counted towards total guests.
1703
+ */
1704
+ limit?: number | null;
1705
+ /** Whether a waitlist is opened when total guest limit is reached, allowing guests to create RSVP with WAITING RSVP status. */
1706
+ waitlist?: boolean;
1707
+ /** Registration start timestamp. */
1708
+ startDate?: Date;
1709
+ /** Registration end timestamp. */
1710
+ endDate?: Date;
1711
+ }
1712
+ export declare enum RsvpStatusOptions {
1713
+ /** Only YES RSVP status is available for RSVP registration */
1714
+ YES_ONLY = "YES_ONLY",
1715
+ /** YES and NO RSVP status options are available for the registration */
1716
+ YES_AND_NO = "YES_AND_NO"
1717
+ }
1718
+ export interface Ticketing {
1719
+ /** Deprecated. */
1720
+ lowestPrice?: string | null;
1721
+ /** Deprecated. */
1722
+ highestPrice?: string | null;
1723
+ /** Currency used in event transactions. */
1724
+ currency?: string | null;
1725
+ /** Ticketing configuration. */
1726
+ config?: TicketingConfig;
1727
+ /**
1728
+ * Price of lowest priced ticket.
1729
+ * @readonly
1730
+ */
1731
+ lowestTicketPrice?: EventsMoney;
1732
+ /**
1733
+ * Price of highest priced ticket.
1734
+ * @readonly
1735
+ */
1736
+ highestTicketPrice?: EventsMoney;
1737
+ /**
1738
+ * Formatted price of lowest priced ticket.
1739
+ * @readonly
1740
+ */
1741
+ lowestTicketPriceFormatted?: string | null;
1742
+ /**
1743
+ * Formatted price of highest priced ticket.
1744
+ * @readonly
1745
+ */
1746
+ highestTicketPriceFormatted?: string | null;
1747
+ /**
1748
+ * Whether all tickets are sold for this event.
1749
+ * @readonly
1750
+ */
1751
+ soldOut?: boolean | null;
1752
+ }
1753
+ export interface TicketingConfig {
1754
+ /** Whether the form must be filled out separately for each ticket. */
1755
+ guestAssignedTickets?: boolean;
1756
+ /** Tax configuration. */
1757
+ taxConfig?: TaxConfig;
1758
+ /** Limit of tickets that can be purchased per order, default 20. */
1759
+ ticketLimitPerOrder?: number;
1760
+ /** Duration for which the tickets being bought are reserved. */
1761
+ reservationDurationInMinutes?: number | null;
1762
+ }
1763
+ export interface TaxConfig {
1764
+ /** Tax application settings. */
1765
+ type?: EventsTaxType;
1766
+ /** Tax name. */
1767
+ name?: string | null;
1768
+ /** Tax rate (e.g.,`21.55`). */
1769
+ rate?: string | null;
1770
+ /** Applies taxes for donations, default true. */
1771
+ appliesToDonations?: boolean | null;
1772
+ }
1773
+ export declare enum EventsTaxType {
1774
+ /** Tax is included in the ticket price */
1775
+ INCLUDED = "INCLUDED",
1776
+ /** Tax is added to the order at the checkout */
1777
+ ADDED = "ADDED",
1778
+ /** Tax is added to the final total at the checkout */
1779
+ ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
1780
+ }
1781
+ export interface ExternalEvent {
1782
+ /** External event registration URL. */
1783
+ registration?: string;
1784
+ }
1785
+ export declare enum VisitorType {
1786
+ /** Site visitor (including member) */
1787
+ VISITOR = "VISITOR",
1788
+ /** Site member */
1789
+ MEMBER = "MEMBER",
1790
+ /** Site visitor or member */
1791
+ VISITOR_OR_MEMBER = "VISITOR_OR_MEMBER"
1792
+ }
1793
+ export interface CalendarLinks {
1794
+ /** "Add to Google calendar" URL. */
1795
+ google?: string;
1796
+ /** "Download ICS calendar file" URL. */
1797
+ ics?: string;
1798
+ }
1799
+ /** Site URL components */
1800
+ export interface SiteUrl {
1801
+ /**
1802
+ * Base URL. For premium sites, this will be the domain.
1803
+ * For free sites, this would be site URL (e.g `mysite.wixsite.com/mysite`)
1804
+ */
1805
+ base?: string;
1806
+ /** The path to that page - e.g `/my-events/weekly-meetup-2` */
1807
+ path?: string;
1808
+ }
1809
+ export interface Dashboard {
1810
+ /** Guest RSVP summary. */
1811
+ rsvpSummary?: RsvpSummary;
1812
+ /**
1813
+ * Summary of revenue and tickets sold.
1814
+ * (Archived orders are not included).
1815
+ */
1816
+ ticketingSummary?: TicketingSummary;
1817
+ }
1818
+ export interface RsvpSummary {
1819
+ /** Total number of RSVPs. */
1820
+ total?: number;
1821
+ /** Number of RSVPs with status `YES`. */
1822
+ yes?: number;
1823
+ /** Number of RSVPs with status `NO`. */
1824
+ no?: number;
1825
+ /** Number of RSVPs in waitlist. */
1826
+ waitlist?: number;
1827
+ }
1828
+ export interface TicketingSummary {
1829
+ /** Number of tickets sold. */
1830
+ tickets?: number;
1831
+ /**
1832
+ * Total revenue, excluding fees.
1833
+ * (taxes and payment provider fees are not deducted.)
1834
+ */
1835
+ revenue?: EventsMoney;
1836
+ /** Whether currency is locked and cannot be changed (generally occurs after the first order in the specified currency has been created). */
1837
+ currencyLocked?: boolean;
1838
+ /** Number of orders placed. */
1839
+ orders?: number;
1840
+ /** Total balance of confirmed transactions. */
1841
+ totalSales?: EventsMoney;
1842
+ }
1843
+ export interface GuestListConfig {
1844
+ /** Whether members can see other members attending the event (defaults to true). */
1845
+ publicGuestList?: boolean;
1846
+ }
1847
+ export interface EventsFeed {
1848
+ /** Event discussion feed token. */
1849
+ token?: string;
1850
+ }
1851
+ export interface EventsOnlineConferencing {
1852
+ config?: OnlineConferencingConfig;
1853
+ session?: EventsOnlineConferencingSession;
1854
+ }
1855
+ export interface OnlineConferencingConfig {
1856
+ /**
1857
+ * Whether online conferencing is enabled (not supported for TBD schedules).
1858
+ * When enabled, links to join conferencing are generated and provided to guests.
1859
+ */
1860
+ enabled?: boolean;
1861
+ /** Conferencing provider ID. */
1862
+ providerId?: string | null;
1863
+ /** Conference type */
1864
+ conferenceType?: ConferenceType;
1865
+ }
1866
+ export declare enum ConferenceType {
1867
+ /** Everyone in the meeting can publish and subscribe video and audio. */
1868
+ MEETING = "MEETING",
1869
+ /** Guests can only subscribe to video and audio. */
1870
+ WEBINAR = "WEBINAR"
1871
+ }
1872
+ export interface EventsOnlineConferencingSession {
1873
+ /**
1874
+ * Link for event host to start the online conference session.
1875
+ * @readonly
1876
+ */
1877
+ hostLink?: string;
1878
+ /**
1879
+ * Link for guests to join the online conference session.
1880
+ * @readonly
1881
+ */
1882
+ guestLink?: string;
1883
+ /**
1884
+ * The password required to join online conferencing session (when relevant).
1885
+ * @readonly
1886
+ */
1887
+ password?: string | null;
1888
+ /**
1889
+ * Indicates that session was created successfully on providers side.
1890
+ * @readonly
1891
+ */
1892
+ sessionCreated?: boolean | null;
1893
+ /**
1894
+ * Unique session id
1895
+ * @readonly
1896
+ */
1897
+ sessionId?: string | null;
1898
+ }
1899
+ export interface EventsSeoSettings {
1900
+ /** URL slug */
1901
+ slug?: string;
1902
+ /** Advanced SEO data */
1903
+ advancedSeoData?: SeoSchema;
1904
+ /**
1905
+ * Hidden from SEO Site Map
1906
+ * @readonly
1907
+ */
1908
+ hidden?: boolean | null;
1909
+ }
1910
+ export interface Agenda {
1911
+ /** Whether the schedule is enabled for the event. */
1912
+ enabled?: boolean;
1913
+ /**
1914
+ * Agenda page URL.
1915
+ * @readonly
1916
+ */
1917
+ pageUrl?: SiteUrl;
1918
+ }
1919
+ export interface Category {
1920
+ /**
1921
+ * Category ID.
1922
+ * @readonly
1923
+ */
1924
+ id?: string;
1925
+ /** Category name. */
1926
+ name?: string;
1927
+ /**
1928
+ * Category creation timestamp.
1929
+ * @readonly
1930
+ */
1931
+ createdDate?: Date;
1932
+ /**
1933
+ * Assigned events count. Deleted events are excluded.
1934
+ * @readonly
1935
+ */
1936
+ assignedEventsCount?: number | null;
1937
+ /**
1938
+ * Assigned and assigned draft event counts.
1939
+ * @readonly
1940
+ */
1941
+ counts?: CategoryCounts;
1942
+ /**
1943
+ * Category state. Default - MANUAL.
1944
+ * WIX_EVENTS.MANAGE_AUTO_CATEGORIES permission is required to use other states.
1945
+ * Field will be ignored on update requests.
1946
+ */
1947
+ states?: State[];
1948
+ }
1949
+ export interface CategoryCounts {
1950
+ /** Assigned events count. Deleted events are excluded. */
1951
+ assignedEventsCount?: number | null;
1952
+ /** Assigned draft events count. */
1953
+ assignedDraftEventsCount?: number | null;
1954
+ }
1955
+ export declare enum State {
1956
+ /** Created manually by the user. */
1957
+ MANUAL = "MANUAL",
1958
+ /** Created automatically. */
1959
+ AUTO = "AUTO",
1960
+ /** Created when publishing recurring events. */
1961
+ RECURRING_EVENT = "RECURRING_EVENT",
1962
+ /** Category is hidden. */
1963
+ HIDDEN = "HIDDEN",
1964
+ /** Category is used to store component events. */
1965
+ COMPONENT = "COMPONENT"
1966
+ }
1967
+ export interface EventsEventDisplaySettings {
1968
+ /** Whether event details button is hidden. Only available for events with no registration. */
1969
+ hideEventDetailsButton?: boolean | null;
1970
+ }
1971
+ export interface Empty {
1972
+ }
1973
+ export interface EventUpdated {
1974
+ /** Event update timestamp in ISO UTC format. */
1975
+ timestamp?: Date;
1976
+ /** Event ID. */
1977
+ eventId?: string;
1978
+ /** Event location. */
1979
+ location?: EventsLocation;
1980
+ /** Event schedule configuration. */
1981
+ scheduleConfig?: ScheduleConfig;
1982
+ /** Event title. */
1983
+ title?: string;
1984
+ /** Whether schedule configuration was updated. */
1985
+ scheduleConfigUpdated?: boolean;
1986
+ /** Updated event */
1987
+ event?: EventsEvent;
1988
+ }
1989
+ export interface EventDeleted {
1990
+ /** Event deleted timestamp in ISO UTC format. */
1991
+ timestamp?: Date;
1992
+ /** Event ID. */
1993
+ eventId?: string;
1994
+ /** Event title. */
1995
+ title?: string;
1996
+ /** Event creator user ID. */
1997
+ userId?: string | null;
1998
+ }
1999
+ export interface EventCopied {
2000
+ /** Event created timestamp in ISO UTC format. */
2001
+ timestamp?: Date;
2002
+ /** Event ID. */
2003
+ eventId?: string;
2004
+ /** Event location. */
2005
+ location?: EventsLocation;
2006
+ /** Event schedule configuration. */
2007
+ scheduleConfig?: ScheduleConfig;
2008
+ /** Event title. */
2009
+ title?: string;
2010
+ /** Event creator user ID. */
2011
+ userId?: string | null;
2012
+ /** Event status. */
2013
+ status?: EventStatus;
2014
+ /** Instance ID. Indicates the original app instance which current event was derived from. */
2015
+ derivedFromInstanceId?: string | null;
2016
+ /** Event ID. Indicates the original event which current event was derived from. */
2017
+ derivedFromEventId?: string | null;
2018
+ /**
2019
+ * Map of copied ticket definitions from original event.
2020
+ * Key represents ticket def id in the original event.
2021
+ * Value represents ticket def id in the newly created event.
2022
+ */
2023
+ ticketDefinitions?: Record<string, string>;
2024
+ }
1578
2025
  export interface EventPublished {
1579
2026
  /** Event publish timestamp in ISO UTC format. */
1580
2027
  timestamp?: Date;
@@ -255,4 +255,81 @@ export var EventStatus;
255
255
  /** Event is not public and needs to be published */
256
256
  EventStatus["DRAFT"] = "DRAFT";
257
257
  })(EventStatus || (EventStatus = {}));
258
+ export var EventType;
259
+ (function (EventType) {
260
+ /** Type not available for this request fieldset */
261
+ EventType["NA_EVENT_TYPE"] = "NA_EVENT_TYPE";
262
+ /** Registration via RSVP */
263
+ EventType["RSVP"] = "RSVP";
264
+ /** Registration via ticket purchase */
265
+ EventType["TICKETS"] = "TICKETS";
266
+ /** External registration */
267
+ EventType["EXTERNAL"] = "EXTERNAL";
268
+ /** Registration not available */
269
+ EventType["NO_REGISTRATION"] = "NO_REGISTRATION";
270
+ })(EventType || (EventType = {}));
271
+ export var RegistrationStatus;
272
+ (function (RegistrationStatus) {
273
+ /** Registration status is not applicable */
274
+ RegistrationStatus["NA_REGISTRATION_STATUS"] = "NA_REGISTRATION_STATUS";
275
+ /** Registration to event is closed */
276
+ RegistrationStatus["CLOSED"] = "CLOSED";
277
+ /** Registration to event is closed manually */
278
+ RegistrationStatus["CLOSED_MANUALLY"] = "CLOSED_MANUALLY";
279
+ /** Registration is open via RSVP */
280
+ RegistrationStatus["OPEN_RSVP"] = "OPEN_RSVP";
281
+ /** Registration to event waitlist is open via RSVP */
282
+ RegistrationStatus["OPEN_RSVP_WAITLIST"] = "OPEN_RSVP_WAITLIST";
283
+ /** Registration is open via ticket purchase */
284
+ RegistrationStatus["OPEN_TICKETS"] = "OPEN_TICKETS";
285
+ /** Registration is open via external URL */
286
+ RegistrationStatus["OPEN_EXTERNAL"] = "OPEN_EXTERNAL";
287
+ /** Registration will be open via RSVP */
288
+ RegistrationStatus["SCHEDULED_RSVP"] = "SCHEDULED_RSVP";
289
+ })(RegistrationStatus || (RegistrationStatus = {}));
290
+ export var RsvpStatusOptions;
291
+ (function (RsvpStatusOptions) {
292
+ /** Only YES RSVP status is available for RSVP registration */
293
+ RsvpStatusOptions["YES_ONLY"] = "YES_ONLY";
294
+ /** YES and NO RSVP status options are available for the registration */
295
+ RsvpStatusOptions["YES_AND_NO"] = "YES_AND_NO";
296
+ })(RsvpStatusOptions || (RsvpStatusOptions = {}));
297
+ export var EventsTaxType;
298
+ (function (EventsTaxType) {
299
+ /** Tax is included in the ticket price */
300
+ EventsTaxType["INCLUDED"] = "INCLUDED";
301
+ /** Tax is added to the order at the checkout */
302
+ EventsTaxType["ADDED"] = "ADDED";
303
+ /** Tax is added to the final total at the checkout */
304
+ EventsTaxType["ADDED_AT_CHECKOUT"] = "ADDED_AT_CHECKOUT";
305
+ })(EventsTaxType || (EventsTaxType = {}));
306
+ export var VisitorType;
307
+ (function (VisitorType) {
308
+ /** Site visitor (including member) */
309
+ VisitorType["VISITOR"] = "VISITOR";
310
+ /** Site member */
311
+ VisitorType["MEMBER"] = "MEMBER";
312
+ /** Site visitor or member */
313
+ VisitorType["VISITOR_OR_MEMBER"] = "VISITOR_OR_MEMBER";
314
+ })(VisitorType || (VisitorType = {}));
315
+ export var ConferenceType;
316
+ (function (ConferenceType) {
317
+ /** Everyone in the meeting can publish and subscribe video and audio. */
318
+ ConferenceType["MEETING"] = "MEETING";
319
+ /** Guests can only subscribe to video and audio. */
320
+ ConferenceType["WEBINAR"] = "WEBINAR";
321
+ })(ConferenceType || (ConferenceType = {}));
322
+ export var State;
323
+ (function (State) {
324
+ /** Created manually by the user. */
325
+ State["MANUAL"] = "MANUAL";
326
+ /** Created automatically. */
327
+ State["AUTO"] = "AUTO";
328
+ /** Created when publishing recurring events. */
329
+ State["RECURRING_EVENT"] = "RECURRING_EVENT";
330
+ /** Category is hidden. */
331
+ State["HIDDEN"] = "HIDDEN";
332
+ /** Category is used to store component events. */
333
+ State["COMPONENT"] = "COMPONENT";
334
+ })(State || (State = {}));
258
335
  //# sourceMappingURL=events-v3-event.types.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"events-v3-event.types.js","sourceRoot":"","sources":["../../../src/events-v3-event.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"events-v3-event.types.js","sourceRoot":"","sources":["../../../src/events-v3-event.types.ts"],"names":[],"mappings":"AA2EA,MAAM,CAAN,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,2CAA2C;IAC3C,qDAAqC,CAAA;IACrC,+BAAe,CAAA;IACf,iCAAiB,CAAA;AACnB,CAAC,EALW,YAAY,KAAZ,YAAY,QAKvB;AAiDD,MAAM,CAAN,IAAY,0BAcX;AAdD,WAAY,0BAA0B;IACpC,mFAAqD,CAAA;IACrD,YAAY;IACZ,yFAA2D,CAAA;IAC3D,aAAa;IACb,yFAA2D,CAAA;IAC3D,gBAAgB;IAChB,yFAA2D,CAAA;IAC3D,2BAA2B;IAC3B,yFAA2D,CAAA;IAC3D,mBAAmB;IACnB,yFAA2D,CAAA;IAC3D,8IAA8I;IAC9I,iDAAmB,CAAA;AACrB,CAAC,EAdW,0BAA0B,KAA1B,0BAA0B,QAcrC;AAwBD,MAAM,CAAN,IAAY,sBAaX;AAbD,WAAY,sBAAsB;IAChC,2CAA2C;IAC3C,2DAAiC,CAAA;IACjC,+BAA+B;IAC/B,+CAAqB,CAAA;IACrB,kEAAkE;IAClE,iDAAuB,CAAA;IACvB,sDAAsD;IACtD,mEAAyC,CAAA;IACzC,uDAAuD;IACvD,+EAAqD,CAAA;IACrD,2DAA2D;IAC3D,qFAA2D,CAAA;AAC7D,CAAC,EAbW,sBAAsB,KAAtB,sBAAsB,QAajC;AAkED,MAAM,CAAN,IAAY,MAaX;AAbD,WAAY,MAAM;IAChB,0CAA0C;IAC1C,uDAA6C,CAAA;IAC7C,6CAA6C;IAC7C,+BAAqB,CAAA;IACrB,wBAAwB;IACxB,6BAAmB,CAAA;IACnB,sBAAsB;IACtB,yBAAe,CAAA;IACf,wBAAwB;IACxB,+BAAqB,CAAA;IACrB,0BAA0B;IAC1B,yBAAe,CAAA;AACjB,CAAC,EAbW,MAAM,KAAN,MAAM,QAajB;AAqBD,MAAM,CAAN,IAAY,oBAWX;AAXD,WAAY,oBAAoB;IAC9B,0CAA0C;IAC1C,+EAAuD,CAAA;IACvD,4BAA4B;IAC5B,qCAAa,CAAA;IACb,uCAAuC;IACvC,+CAAuB,CAAA;IACvB,4BAA4B;IAC5B,6CAAqB,CAAA;IACrB,iCAAiC;IACjC,qCAAa,CAAA;AACf,CAAC,EAXW,oBAAoB,KAApB,oBAAoB,QAW/B;AAED,MAAM,CAAN,IAAY,wBAiBX;AAjBD,WAAY,wBAAwB;IAClC,4CAA4C;IAC5C,uFAA2D,CAAA;IAC3D,sCAAsC;IACtC,yEAA6C,CAAA;IAC7C,+CAA+C;IAC/C,+DAAmC,CAAA;IACnC,oCAAoC;IACpC,mDAAuB,CAAA;IACvB,sDAAsD;IACtD,+EAAmD,CAAA;IACnD,+CAA+C;IAC/C,yDAA6B,CAAA;IAC7B,4CAA4C;IAC5C,2DAA+B,CAAA;IAC/B,yCAAyC;IACzC,6DAAiC,CAAA;AACnC,CAAC,EAjBW,wBAAwB,KAAxB,wBAAwB,QAiBnC;AAcD,MAAM,CAAN,IAAY,YAOX;AAPD,WAAY,YAAY;IACtB,2CAA2C;IAC3C,+DAA+C,CAAA;IAC/C,+DAA+D;IAC/D,qCAAqB,CAAA;IACrB,oEAAoE;IACpE,yCAAyB,CAAA;AAC3B,CAAC,EAPW,YAAY,KAAZ,YAAY,QAOvB;AAmDD,MAAM,CAAN,IAAY,OAOX;AAPD,WAAY,OAAO;IACjB,2CAA2C;IAC3C,gDAAqC,CAAA;IACrC,0CAA0C;IAC1C,kDAAuC,CAAA;IACvC,sDAAsD;IACtD,kDAAuC,CAAA;AACzC,CAAC,EAPW,OAAO,KAAP,OAAO,QAOlB;AAOD,MAAM,CAAN,IAAY,aAOX;AAPD,WAAY,aAAa;IACvB,0CAA0C;IAC1C,0DAAyC,CAAA;IACzC,6BAA6B;IAC7B,wDAAuC,CAAA;IACvC,kBAAkB;IAClB,kCAAiB,CAAA;AACnB,CAAC,EAPW,aAAa,KAAb,aAAa,QAOxB;AAED,MAAM,CAAN,IAAY,2BAOX;AAPD,WAAY,2BAA2B;IACrC,0CAA0C;IAC1C,sGAAuE,CAAA;IACvE,4BAA4B;IAC5B,4CAAa,CAAA;IACb,uCAAuC;IACvC,sDAAuB,CAAA;AACzB,CAAC,EAPW,2BAA2B,KAA3B,2BAA2B,QAOtC;AA+DD,MAAM,CAAN,IAAY,gBAqBX;AArBD,WAAY,gBAAgB;IAC1B,+BAA+B;IAC/B,mCAAe,CAAA;IACf,+BAA+B;IAC/B,yCAAqB,CAAA;IACrB,gDAAgD;IAChD,yCAAqB,CAAA;IACrB,gDAAgD;IAChD,mCAAe,CAAA;IACf,kDAAkD;IAClD,yCAAqB,CAAA;IACrB,kCAAkC;IAClC,iCAAa,CAAA;IACb,2DAA2D;IAC3D,mDAA+B,CAAA;IAC/B,iCAAiC;IACjC,mDAA+B,CAAA;IAC/B,0BAA0B;IAC1B,iDAA6B,CAAA;IAC7B,kCAAkC;IAClC,iCAAa,CAAA;AACf,CAAC,EArBW,gBAAgB,KAAhB,gBAAgB,QAqB3B;AAwCD,MAAM,CAAN,IAAY,SAMX;AAND,WAAY,SAAS;IACnB,0BAAa,CAAA;IACb,8BAAiB,CAAA;IACjB,sCAAyB,CAAA;IACzB,oCAAuB,CAAA;IACvB,gCAAmB,CAAA;AACrB,CAAC,EANW,SAAS,KAAT,SAAS,QAMpB;AAgOD,MAAM,CAAN,IAAY,kBAOX;AAPD,WAAY,kBAAkB;IAC5B,0CAA0C;IAC1C,yEAAmD,CAAA;IACnD,2DAA2D;IAC3D,yCAAmB,CAAA;IACnB,oDAAoD;IACpD,yCAAmB,CAAA;AACrB,CAAC,EAPW,kBAAkB,KAAlB,kBAAkB,QAO7B;AAwID,MAAM,CAAN,IAAY,IAOX;AAPD,WAAY,IAAI;IACd,oCAAoC;IACpC,yBAAiB,CAAA;IACjB,8DAA8D;IAC9D,2CAAmC,CAAA;IACnC,gEAAgE;IAChE,+BAAuB,CAAA;AACzB,CAAC,EAPW,IAAI,KAAJ,IAAI,QAOf;AAyED,MAAM,CAAN,IAAY,eAyBX;AAzBD,WAAY,eAAe;IACzB,sEAAmD,CAAA;IACnD,8EAA8E;IAC9E,sCAAmB,CAAA;IACnB,uDAAuD;IACvD,kCAAe,CAAA;IACf,8CAA8C;IAC9C,gDAA6B,CAAA;IAC7B,8CAA8C;IAC9C,gCAAa,CAAA;IACb,sCAAsC;IACtC,gCAAa,CAAA;IACb,2CAA2C;IAC3C,0CAAuB,CAAA;IACvB,sCAAsC;IACtC,gCAAa,CAAA;IACb,oDAAoD;IACpD,8EAA2D,CAAA;IAC3D,6CAA6C;IAC7C,gDAA6B,CAAA;IAC7B,gDAAgD;IAChD,oCAAiB,CAAA;IACjB,4CAA4C;IAC5C,4CAAyB,CAAA;IACzB,gEAA6C,CAAA;AAC/C,CAAC,EAzBW,eAAe,KAAf,eAAe,QAyB1B;AA4MD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAyID,MAAM,CAAN,IAAY,QAMX;AAND,WAAY,QAAQ;IAClB;;;OAGG;IACH,mCAAuB,CAAA;AACzB,CAAC,EANW,QAAQ,KAAR,QAAQ,QAMnB;AA6KD,MAAM,CAAN,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC9B,uCAAe,CAAA;IACf,yCAAiB,CAAA;AACnB,CAAC,EAHW,oBAAoB,KAApB,oBAAoB,QAG/B;AA2DD,MAAM,CAAN,IAAY,eAcX;AAdD,WAAY,eAAe;IACzB,wEAAqD,CAAA;IACrD,YAAY;IACZ,8EAA2D,CAAA;IAC3D,aAAa;IACb,8EAA2D,CAAA;IAC3D,gBAAgB;IAChB,8EAA2D,CAAA;IAC3D,2BAA2B;IAC3B,8EAA2D,CAAA;IAC3D,mBAAmB;IACnB,8EAA2D,CAAA;IAC3D,8IAA8I;IAC9I,sCAAmB,CAAA;AACrB,CAAC,EAdW,eAAe,KAAf,eAAe,QAc1B;AAmDD,MAAM,CAAN,IAAY,4BAWX;AAXD,WAAY,4BAA4B;IACtC,8BAA8B;IAC9B,qDAAqB,CAAA;IACrB,0BAA0B;IAC1B,uDAAuB,CAAA;IACvB,iEAAiE;IACjE,iEAAiC,CAAA;IACjC,qEAAqE;IACrE,6EAA6C,CAAA;IAC7C,wEAAwE;IACxE,mFAAmD,CAAA;AACrD,CAAC,EAXW,4BAA4B,KAA5B,4BAA4B,QAWvC;AAED,MAAM,CAAN,IAAY,WAWX;AAXD,WAAY,WAAW;IACrB,6CAA6C;IAC7C,sCAAuB,CAAA;IACvB,wBAAwB;IACxB,kCAAmB,CAAA;IACnB,sBAAsB;IACtB,8BAAe,CAAA;IACf,yBAAyB;IACzB,oCAAqB,CAAA;IACrB,oDAAoD;IACpD,8BAAe,CAAA;AACjB,CAAC,EAXW,WAAW,KAAX,WAAW,QAWtB;AA2GD,MAAM,CAAN,IAAY,SAWX;AAXD,WAAY,SAAS;IACnB,mDAAmD;IACnD,4CAA+B,CAAA;IAC/B,4BAA4B;IAC5B,0BAAa,CAAA;IACb,uCAAuC;IACvC,gCAAmB,CAAA;IACnB,4BAA4B;IAC5B,kCAAqB,CAAA;IACrB,iCAAiC;IACjC,gDAAmC,CAAA;AACrC,CAAC,EAXW,SAAS,KAAT,SAAS,QAWpB;AAED,MAAM,CAAN,IAAY,kBAiBX;AAjBD,WAAY,kBAAkB;IAC5B,4CAA4C;IAC5C,uEAAiD,CAAA;IACjD,sCAAsC;IACtC,uCAAiB,CAAA;IACjB,+CAA+C;IAC/C,yDAAmC,CAAA;IACnC,oCAAoC;IACpC,6CAAuB,CAAA;IACvB,sDAAsD;IACtD,+DAAyC,CAAA;IACzC,+CAA+C;IAC/C,mDAA6B,CAAA;IAC7B,4CAA4C;IAC5C,qDAA+B,CAAA;IAC/B,yCAAyC;IACzC,uDAAiC,CAAA;AACnC,CAAC,EAjBW,kBAAkB,KAAlB,kBAAkB,QAiB7B;AAuBD,MAAM,CAAN,IAAY,iBAKX;AALD,WAAY,iBAAiB;IAC3B,8DAA8D;IAC9D,0CAAqB,CAAA;IACrB,wEAAwE;IACxE,8CAAyB,CAAA;AAC3B,CAAC,EALW,iBAAiB,KAAjB,iBAAiB,QAK5B;AA4DD,MAAM,CAAN,IAAY,aAOX;AAPD,WAAY,aAAa;IACvB,0CAA0C;IAC1C,sCAAqB,CAAA;IACrB,gDAAgD;IAChD,gCAAe,CAAA;IACf,sDAAsD;IACtD,wDAAuC,CAAA;AACzC,CAAC,EAPW,aAAa,KAAb,aAAa,QAOxB;AAOD,MAAM,CAAN,IAAY,WAOX;AAPD,WAAY,WAAW;IACrB,sCAAsC;IACtC,kCAAmB,CAAA;IACnB,kBAAkB;IAClB,gCAAiB,CAAA;IACjB,6BAA6B;IAC7B,sDAAuC,CAAA;AACzC,CAAC,EAPW,WAAW,KAAX,WAAW,QAOtB;AAoFD,MAAM,CAAN,IAAY,cAKX;AALD,WAAY,cAAc;IACxB,yEAAyE;IACzE,qCAAmB,CAAA;IACnB,oDAAoD;IACpD,qCAAmB,CAAA;AACrB,CAAC,EALW,cAAc,KAAd,cAAc,QAKzB;AA0FD,MAAM,CAAN,IAAY,KAWX;AAXD,WAAY,KAAK;IACf,oCAAoC;IACpC,0BAAiB,CAAA;IACjB,6BAA6B;IAC7B,sBAAa,CAAA;IACb,gDAAgD;IAChD,4CAAmC,CAAA;IACnC,0BAA0B;IAC1B,0BAAiB,CAAA;IACjB,kDAAkD;IAClD,gCAAuB,CAAA;AACzB,CAAC,EAXW,KAAK,KAAL,KAAK,QAWhB"}