@wix/events 1.0.339 → 1.0.341
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/package.json +4 -4
- package/type-bundles/context.bundle.d.ts +35 -39
- package/type-bundles/index.bundle.d.ts +35 -39
- package/type-bundles/meta.bundle.d.ts +72 -112
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/events",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.341",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@wix/events_notifications": "1.0.42",
|
|
28
28
|
"@wix/events_orders": "1.0.60",
|
|
29
29
|
"@wix/events_policies": "1.0.49",
|
|
30
|
-
"@wix/events_ricos": "1.0.
|
|
30
|
+
"@wix/events_ricos": "1.0.19",
|
|
31
31
|
"@wix/events_rsvp": "1.0.52",
|
|
32
32
|
"@wix/events_rsvp-v-2": "1.0.23",
|
|
33
33
|
"@wix/events_schedule": "1.0.46",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@wix/events_ticket-definitions": "1.0.55",
|
|
37
37
|
"@wix/events_ticket-definitions-v-2": "1.0.71",
|
|
38
38
|
"@wix/events_tickets": "1.0.50",
|
|
39
|
-
"@wix/events_wix-events-v-2": "1.0.
|
|
39
|
+
"@wix/events_wix-events-v-2": "1.0.63"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"glob": "^10.4.1",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"fqdn": ""
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
|
-
"falconPackageHash": "
|
|
64
|
+
"falconPackageHash": "e4a859b776a5f96779f13f24475d4ab96e6e5ca049e0c61e6fb4a129"
|
|
65
65
|
}
|
|
@@ -12968,7 +12968,7 @@ interface RichContentQueryBuilder {
|
|
|
12968
12968
|
declare function createRichContent$1(httpClient: HttpClient): CreateRichContentSignature;
|
|
12969
12969
|
interface CreateRichContentSignature {
|
|
12970
12970
|
/**
|
|
12971
|
-
* Creates rich content for
|
|
12971
|
+
* Creates rich content for an event description.
|
|
12972
12972
|
*
|
|
12973
12973
|
* This method passes rich content value to the `detailedDescription` field of an already created event.
|
|
12974
12974
|
* @param - Rich content info.
|
|
@@ -13020,13 +13020,13 @@ interface QueryRichContentsSignature {
|
|
|
13020
13020
|
declare function queryRichContent$1(httpClient: HttpClient): QueryRichContentSignature;
|
|
13021
13021
|
interface QueryRichContentSignature {
|
|
13022
13022
|
/**
|
|
13023
|
-
* Retrieves a list of
|
|
13023
|
+
* Retrieves a list of rich content, given the provided paging, filtering, and sorting.
|
|
13024
13024
|
*
|
|
13025
|
-
* Query
|
|
13025
|
+
* Query Rich Content runs with these defaults, which you can override:
|
|
13026
13026
|
* - `createdDate` is sorted in `ASC` order
|
|
13027
13027
|
* - `paging.limit` is `100`
|
|
13028
13028
|
* - `paging.offset` is `0`
|
|
13029
|
-
* For field support for filters and sorting, see [Supported Filters and Sorting]().
|
|
13029
|
+
* For field support for filters and sorting, see [Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/events/rich-content/filter-and-sort).
|
|
13030
13030
|
* To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
13031
13031
|
*/
|
|
13032
13032
|
(): RichContentQueryBuilder;
|
|
@@ -19918,17 +19918,17 @@ interface TimeDuration {
|
|
|
19918
19918
|
minutes?: number;
|
|
19919
19919
|
}
|
|
19920
19920
|
declare enum Status$1 {
|
|
19921
|
-
/**
|
|
19921
|
+
/** This value is unused. */
|
|
19922
19922
|
UNKNOWN_EVENT_STATUS = "UNKNOWN_EVENT_STATUS",
|
|
19923
|
-
/** Event is
|
|
19923
|
+
/** Event is published and scheduled to start. */
|
|
19924
19924
|
UPCOMING = "UPCOMING",
|
|
19925
|
-
/** Event has started */
|
|
19925
|
+
/** Event has started. */
|
|
19926
19926
|
STARTED = "STARTED",
|
|
19927
|
-
/** Event has ended */
|
|
19927
|
+
/** Event has ended. */
|
|
19928
19928
|
ENDED = "ENDED",
|
|
19929
|
-
/** Event is canceled */
|
|
19929
|
+
/** Event is canceled. */
|
|
19930
19930
|
CANCELED = "CANCELED",
|
|
19931
|
-
/** Event is not public */
|
|
19931
|
+
/** Event is not public. */
|
|
19932
19932
|
DRAFT = "DRAFT"
|
|
19933
19933
|
}
|
|
19934
19934
|
interface Registration$1 {
|
|
@@ -19985,41 +19985,37 @@ interface Registration$1 {
|
|
|
19985
19985
|
registrationDisabled?: boolean;
|
|
19986
19986
|
}
|
|
19987
19987
|
declare enum RegistrationTypeType {
|
|
19988
|
-
/**
|
|
19988
|
+
/** This value is not used. */
|
|
19989
19989
|
UNKNOWN_REGISTRATION_TYPE = "UNKNOWN_REGISTRATION_TYPE",
|
|
19990
|
-
/**
|
|
19990
|
+
/** Guests register by RSVPing to the event. */
|
|
19991
19991
|
RSVP = "RSVP",
|
|
19992
|
-
/**
|
|
19992
|
+
/** Guests register by buying tickets. */
|
|
19993
19993
|
TICKETING = "TICKETING",
|
|
19994
|
-
/**
|
|
19994
|
+
/** Guests register externally using some other site or platform. */
|
|
19995
19995
|
EXTERNAL = "EXTERNAL",
|
|
19996
|
-
/**
|
|
19996
|
+
/** No registration is required, all guests can attend. This registration type is for only displaying the event details on a site. The property value can be changed from RSVP/TICKETING to EXTERNAL or NONE after the event is created, depending on any additional configurations applied to the event. */
|
|
19997
19997
|
NONE = "NONE"
|
|
19998
19998
|
}
|
|
19999
19999
|
declare enum RegistrationStatusStatus {
|
|
20000
20000
|
/** Registration status is not applicable */
|
|
20001
20001
|
UNKNOWN_REGISTRATION_STATUS = "UNKNOWN_REGISTRATION_STATUS",
|
|
20002
|
-
/** Registration
|
|
20002
|
+
/** Registration is closed after tickets are sold out. */
|
|
20003
20003
|
CLOSED_AUTOMATICALLY = "CLOSED_AUTOMATICALLY",
|
|
20004
|
-
/** Registration
|
|
20004
|
+
/** Registration is closed when the `registration.registrationDisabled` property is set to `true``. */
|
|
20005
20005
|
CLOSED_MANUALLY = "CLOSED_MANUALLY",
|
|
20006
|
-
/**
|
|
20006
|
+
/** Guests can start RSVPing to the event. */
|
|
20007
20007
|
OPEN_RSVP = "OPEN_RSVP",
|
|
20008
|
-
/**
|
|
20008
|
+
/** Guest list has reached the maximum, new guests are added to a waitlist. */
|
|
20009
20009
|
OPEN_RSVP_WAITLIST_ONLY = "OPEN_RSVP_WAITLIST_ONLY",
|
|
20010
|
-
/**
|
|
20010
|
+
/** Guests can buy tickets to the event. */
|
|
20011
20011
|
OPEN_TICKETS = "OPEN_TICKETS",
|
|
20012
|
-
/**
|
|
20012
|
+
/** Guests register on a different page or web address. */
|
|
20013
20013
|
OPEN_EXTERNAL = "OPEN_EXTERNAL",
|
|
20014
|
-
/** Registration
|
|
20014
|
+
/** Registration via RSVP is scheduled for the future. */
|
|
20015
20015
|
SCHEDULED_RSVP = "SCHEDULED_RSVP"
|
|
20016
20016
|
}
|
|
20017
20017
|
interface RsvpRegistration {
|
|
20018
|
-
/**
|
|
20019
|
-
* Available answers for registration to an event. Possible values:
|
|
20020
|
-
* - `YES_ONLY`: Only a **Yes** answer is available to select when RSVP'ing to an event.
|
|
20021
|
-
* - `YES_AND_NO`: Both **Yes** and **No** answers are available to select when RSVP'ing to an event.
|
|
20022
|
-
*/
|
|
20018
|
+
/** Available answers for registration to an event. */
|
|
20023
20019
|
responseType?: ResponseType;
|
|
20024
20020
|
/** How many guests can RSVP to an event. */
|
|
20025
20021
|
limit?: number | null;
|
|
@@ -20031,7 +20027,7 @@ interface RsvpRegistration {
|
|
|
20031
20027
|
endDate?: Date | null;
|
|
20032
20028
|
}
|
|
20033
20029
|
declare enum ResponseType {
|
|
20034
|
-
/**
|
|
20030
|
+
/** This value is unused. */
|
|
20035
20031
|
UNKNOWN_RESPONSE_TYPE = "UNKNOWN_RESPONSE_TYPE",
|
|
20036
20032
|
/** Only a **Yes** answer is available for the registration. */
|
|
20037
20033
|
YES_ONLY = "YES_ONLY",
|
|
@@ -20097,11 +20093,11 @@ interface TaxSettings {
|
|
|
20097
20093
|
appliedToDonations?: boolean | null;
|
|
20098
20094
|
}
|
|
20099
20095
|
declare enum TaxType$1 {
|
|
20100
|
-
/**
|
|
20096
|
+
/** This value is unused. */
|
|
20101
20097
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
20102
|
-
/**
|
|
20098
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
20103
20099
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
20104
|
-
/**
|
|
20100
|
+
/** Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total. */
|
|
20105
20101
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
20106
20102
|
}
|
|
20107
20103
|
interface ExternalRegistration {
|
|
@@ -20109,19 +20105,19 @@ interface ExternalRegistration {
|
|
|
20109
20105
|
url?: string | null;
|
|
20110
20106
|
}
|
|
20111
20107
|
declare enum GuestTypeType {
|
|
20112
|
-
/**
|
|
20108
|
+
/** This value is not used. */
|
|
20113
20109
|
UNKNOWN_GUEST_TYPE = "UNKNOWN_GUEST_TYPE",
|
|
20114
|
-
/**
|
|
20110
|
+
/** All site visitors can RSVP to the event. */
|
|
20115
20111
|
VISITOR_OR_MEMBER = "VISITOR_OR_MEMBER",
|
|
20116
|
-
/**
|
|
20112
|
+
/** Only people who have signed up as members of your site are able to RSVP to the event. */
|
|
20117
20113
|
MEMBER = "MEMBER"
|
|
20118
20114
|
}
|
|
20119
20115
|
declare enum InitialRegistrationTypeType {
|
|
20120
|
-
/**
|
|
20116
|
+
/** This value is not used. */
|
|
20121
20117
|
UNKNOWN_INITIAL_REGISTRATION_TYPE = "UNKNOWN_INITIAL_REGISTRATION_TYPE",
|
|
20122
|
-
/**
|
|
20118
|
+
/** Guests register by RSVPing to the event. */
|
|
20123
20119
|
RSVP = "RSVP",
|
|
20124
|
-
/**
|
|
20120
|
+
/** Guests register by buying tickets. This property value never changes. */
|
|
20125
20121
|
TICKETING = "TICKETING"
|
|
20126
20122
|
}
|
|
20127
20123
|
interface CalendarUrls {
|
|
@@ -20469,9 +20465,9 @@ interface OnlineConferencing$1 {
|
|
|
20469
20465
|
declare enum ConferenceTypeType {
|
|
20470
20466
|
/** Default value. This value is unused */
|
|
20471
20467
|
UNKNOWN_CONFERENCE_TYPE = "UNKNOWN_CONFERENCE_TYPE",
|
|
20472
|
-
/** Guests can
|
|
20468
|
+
/** Guests can do some actions during the conference, for example talk, turn on camera and show their screen. */
|
|
20473
20469
|
MEETING = "MEETING",
|
|
20474
|
-
/** Guests can only
|
|
20470
|
+
/** Guests can only watch the conference. */
|
|
20475
20471
|
WEBINAR = "WEBINAR"
|
|
20476
20472
|
}
|
|
20477
20473
|
interface OnlineConferencingSession$1 {
|
|
@@ -12968,7 +12968,7 @@ interface RichContentQueryBuilder {
|
|
|
12968
12968
|
declare function createRichContent$1(httpClient: HttpClient): CreateRichContentSignature;
|
|
12969
12969
|
interface CreateRichContentSignature {
|
|
12970
12970
|
/**
|
|
12971
|
-
* Creates rich content for
|
|
12971
|
+
* Creates rich content for an event description.
|
|
12972
12972
|
*
|
|
12973
12973
|
* This method passes rich content value to the `detailedDescription` field of an already created event.
|
|
12974
12974
|
* @param - Rich content info.
|
|
@@ -13020,13 +13020,13 @@ interface QueryRichContentsSignature {
|
|
|
13020
13020
|
declare function queryRichContent$1(httpClient: HttpClient): QueryRichContentSignature;
|
|
13021
13021
|
interface QueryRichContentSignature {
|
|
13022
13022
|
/**
|
|
13023
|
-
* Retrieves a list of
|
|
13023
|
+
* Retrieves a list of rich content, given the provided paging, filtering, and sorting.
|
|
13024
13024
|
*
|
|
13025
|
-
* Query
|
|
13025
|
+
* Query Rich Content runs with these defaults, which you can override:
|
|
13026
13026
|
* - `createdDate` is sorted in `ASC` order
|
|
13027
13027
|
* - `paging.limit` is `100`
|
|
13028
13028
|
* - `paging.offset` is `0`
|
|
13029
|
-
* For field support for filters and sorting, see [Supported Filters and Sorting]().
|
|
13029
|
+
* For field support for filters and sorting, see [Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/events/rich-content/filter-and-sort).
|
|
13030
13030
|
* To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
13031
13031
|
*/
|
|
13032
13032
|
(): RichContentQueryBuilder;
|
|
@@ -19918,17 +19918,17 @@ interface TimeDuration {
|
|
|
19918
19918
|
minutes?: number;
|
|
19919
19919
|
}
|
|
19920
19920
|
declare enum Status$1 {
|
|
19921
|
-
/**
|
|
19921
|
+
/** This value is unused. */
|
|
19922
19922
|
UNKNOWN_EVENT_STATUS = "UNKNOWN_EVENT_STATUS",
|
|
19923
|
-
/** Event is
|
|
19923
|
+
/** Event is published and scheduled to start. */
|
|
19924
19924
|
UPCOMING = "UPCOMING",
|
|
19925
|
-
/** Event has started */
|
|
19925
|
+
/** Event has started. */
|
|
19926
19926
|
STARTED = "STARTED",
|
|
19927
|
-
/** Event has ended */
|
|
19927
|
+
/** Event has ended. */
|
|
19928
19928
|
ENDED = "ENDED",
|
|
19929
|
-
/** Event is canceled */
|
|
19929
|
+
/** Event is canceled. */
|
|
19930
19930
|
CANCELED = "CANCELED",
|
|
19931
|
-
/** Event is not public */
|
|
19931
|
+
/** Event is not public. */
|
|
19932
19932
|
DRAFT = "DRAFT"
|
|
19933
19933
|
}
|
|
19934
19934
|
interface Registration$1 {
|
|
@@ -19985,41 +19985,37 @@ interface Registration$1 {
|
|
|
19985
19985
|
registrationDisabled?: boolean;
|
|
19986
19986
|
}
|
|
19987
19987
|
declare enum RegistrationTypeType {
|
|
19988
|
-
/**
|
|
19988
|
+
/** This value is not used. */
|
|
19989
19989
|
UNKNOWN_REGISTRATION_TYPE = "UNKNOWN_REGISTRATION_TYPE",
|
|
19990
|
-
/**
|
|
19990
|
+
/** Guests register by RSVPing to the event. */
|
|
19991
19991
|
RSVP = "RSVP",
|
|
19992
|
-
/**
|
|
19992
|
+
/** Guests register by buying tickets. */
|
|
19993
19993
|
TICKETING = "TICKETING",
|
|
19994
|
-
/**
|
|
19994
|
+
/** Guests register externally using some other site or platform. */
|
|
19995
19995
|
EXTERNAL = "EXTERNAL",
|
|
19996
|
-
/**
|
|
19996
|
+
/** No registration is required, all guests can attend. This registration type is for only displaying the event details on a site. The property value can be changed from RSVP/TICKETING to EXTERNAL or NONE after the event is created, depending on any additional configurations applied to the event. */
|
|
19997
19997
|
NONE = "NONE"
|
|
19998
19998
|
}
|
|
19999
19999
|
declare enum RegistrationStatusStatus {
|
|
20000
20000
|
/** Registration status is not applicable */
|
|
20001
20001
|
UNKNOWN_REGISTRATION_STATUS = "UNKNOWN_REGISTRATION_STATUS",
|
|
20002
|
-
/** Registration
|
|
20002
|
+
/** Registration is closed after tickets are sold out. */
|
|
20003
20003
|
CLOSED_AUTOMATICALLY = "CLOSED_AUTOMATICALLY",
|
|
20004
|
-
/** Registration
|
|
20004
|
+
/** Registration is closed when the `registration.registrationDisabled` property is set to `true``. */
|
|
20005
20005
|
CLOSED_MANUALLY = "CLOSED_MANUALLY",
|
|
20006
|
-
/**
|
|
20006
|
+
/** Guests can start RSVPing to the event. */
|
|
20007
20007
|
OPEN_RSVP = "OPEN_RSVP",
|
|
20008
|
-
/**
|
|
20008
|
+
/** Guest list has reached the maximum, new guests are added to a waitlist. */
|
|
20009
20009
|
OPEN_RSVP_WAITLIST_ONLY = "OPEN_RSVP_WAITLIST_ONLY",
|
|
20010
|
-
/**
|
|
20010
|
+
/** Guests can buy tickets to the event. */
|
|
20011
20011
|
OPEN_TICKETS = "OPEN_TICKETS",
|
|
20012
|
-
/**
|
|
20012
|
+
/** Guests register on a different page or web address. */
|
|
20013
20013
|
OPEN_EXTERNAL = "OPEN_EXTERNAL",
|
|
20014
|
-
/** Registration
|
|
20014
|
+
/** Registration via RSVP is scheduled for the future. */
|
|
20015
20015
|
SCHEDULED_RSVP = "SCHEDULED_RSVP"
|
|
20016
20016
|
}
|
|
20017
20017
|
interface RsvpRegistration {
|
|
20018
|
-
/**
|
|
20019
|
-
* Available answers for registration to an event. Possible values:
|
|
20020
|
-
* - `YES_ONLY`: Only a **Yes** answer is available to select when RSVP'ing to an event.
|
|
20021
|
-
* - `YES_AND_NO`: Both **Yes** and **No** answers are available to select when RSVP'ing to an event.
|
|
20022
|
-
*/
|
|
20018
|
+
/** Available answers for registration to an event. */
|
|
20023
20019
|
responseType?: ResponseType;
|
|
20024
20020
|
/** How many guests can RSVP to an event. */
|
|
20025
20021
|
limit?: number | null;
|
|
@@ -20031,7 +20027,7 @@ interface RsvpRegistration {
|
|
|
20031
20027
|
endDate?: Date | null;
|
|
20032
20028
|
}
|
|
20033
20029
|
declare enum ResponseType {
|
|
20034
|
-
/**
|
|
20030
|
+
/** This value is unused. */
|
|
20035
20031
|
UNKNOWN_RESPONSE_TYPE = "UNKNOWN_RESPONSE_TYPE",
|
|
20036
20032
|
/** Only a **Yes** answer is available for the registration. */
|
|
20037
20033
|
YES_ONLY = "YES_ONLY",
|
|
@@ -20097,11 +20093,11 @@ interface TaxSettings {
|
|
|
20097
20093
|
appliedToDonations?: boolean | null;
|
|
20098
20094
|
}
|
|
20099
20095
|
declare enum TaxType$1 {
|
|
20100
|
-
/**
|
|
20096
|
+
/** This value is unused. */
|
|
20101
20097
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
20102
|
-
/**
|
|
20098
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
20103
20099
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
20104
|
-
/**
|
|
20100
|
+
/** Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total. */
|
|
20105
20101
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
20106
20102
|
}
|
|
20107
20103
|
interface ExternalRegistration {
|
|
@@ -20109,19 +20105,19 @@ interface ExternalRegistration {
|
|
|
20109
20105
|
url?: string | null;
|
|
20110
20106
|
}
|
|
20111
20107
|
declare enum GuestTypeType {
|
|
20112
|
-
/**
|
|
20108
|
+
/** This value is not used. */
|
|
20113
20109
|
UNKNOWN_GUEST_TYPE = "UNKNOWN_GUEST_TYPE",
|
|
20114
|
-
/**
|
|
20110
|
+
/** All site visitors can RSVP to the event. */
|
|
20115
20111
|
VISITOR_OR_MEMBER = "VISITOR_OR_MEMBER",
|
|
20116
|
-
/**
|
|
20112
|
+
/** Only people who have signed up as members of your site are able to RSVP to the event. */
|
|
20117
20113
|
MEMBER = "MEMBER"
|
|
20118
20114
|
}
|
|
20119
20115
|
declare enum InitialRegistrationTypeType {
|
|
20120
|
-
/**
|
|
20116
|
+
/** This value is not used. */
|
|
20121
20117
|
UNKNOWN_INITIAL_REGISTRATION_TYPE = "UNKNOWN_INITIAL_REGISTRATION_TYPE",
|
|
20122
|
-
/**
|
|
20118
|
+
/** Guests register by RSVPing to the event. */
|
|
20123
20119
|
RSVP = "RSVP",
|
|
20124
|
-
/**
|
|
20120
|
+
/** Guests register by buying tickets. This property value never changes. */
|
|
20125
20121
|
TICKETING = "TICKETING"
|
|
20126
20122
|
}
|
|
20127
20123
|
interface CalendarUrls {
|
|
@@ -20469,9 +20465,9 @@ interface OnlineConferencing$1 {
|
|
|
20469
20465
|
declare enum ConferenceTypeType {
|
|
20470
20466
|
/** Default value. This value is unused */
|
|
20471
20467
|
UNKNOWN_CONFERENCE_TYPE = "UNKNOWN_CONFERENCE_TYPE",
|
|
20472
|
-
/** Guests can
|
|
20468
|
+
/** Guests can do some actions during the conference, for example talk, turn on camera and show their screen. */
|
|
20473
20469
|
MEETING = "MEETING",
|
|
20474
|
-
/** Guests can only
|
|
20470
|
+
/** Guests can only watch the conference. */
|
|
20475
20471
|
WEBINAR = "WEBINAR"
|
|
20476
20472
|
}
|
|
20477
20473
|
interface OnlineConferencingSession$1 {
|
|
@@ -15632,7 +15632,9 @@ interface V3Event$1 {
|
|
|
15632
15632
|
*/
|
|
15633
15633
|
shortDescription?: string | null;
|
|
15634
15634
|
/**
|
|
15635
|
-
* Detailed description of an event.
|
|
15635
|
+
* Detailed description of an event.
|
|
15636
|
+
*
|
|
15637
|
+
* To populate this field call the [Create Rich Content](https://dev.wix.com/docs/rest/business-solutions/events/rich-content/create-rich-content) method. For the full flow read the introduction.
|
|
15636
15638
|
* **Note:** This field is returned only when the `TEXTS` fieldset is included in the request.
|
|
15637
15639
|
*/
|
|
15638
15640
|
detailedDescription?: string | null;
|
|
@@ -15657,12 +15659,7 @@ interface V3Event$1 {
|
|
|
15657
15659
|
*/
|
|
15658
15660
|
updatedDate?: Date | null;
|
|
15659
15661
|
/**
|
|
15660
|
-
* Event status.
|
|
15661
|
-
* - `UPCOMING`: Event is published and scheduled to start.
|
|
15662
|
-
* - `STARTED`: Event has started.
|
|
15663
|
-
* - `ENDED`: Event has ended.
|
|
15664
|
-
* - `CANCELED`: Event is canceled.
|
|
15665
|
-
* - `DRAFT`: Event is not published.
|
|
15662
|
+
* Event status.
|
|
15666
15663
|
* @readonly
|
|
15667
15664
|
*/
|
|
15668
15665
|
status?: Status$3;
|
|
@@ -15885,17 +15882,17 @@ interface Formatted$3 {
|
|
|
15885
15882
|
endTime?: string | null;
|
|
15886
15883
|
}
|
|
15887
15884
|
declare enum Status$3 {
|
|
15888
|
-
/**
|
|
15885
|
+
/** This value is unused. */
|
|
15889
15886
|
UNKNOWN_EVENT_STATUS = "UNKNOWN_EVENT_STATUS",
|
|
15890
|
-
/** Event is
|
|
15887
|
+
/** Event is published and scheduled to start. */
|
|
15891
15888
|
UPCOMING = "UPCOMING",
|
|
15892
|
-
/** Event has started */
|
|
15889
|
+
/** Event has started. */
|
|
15893
15890
|
STARTED = "STARTED",
|
|
15894
|
-
/** Event has ended */
|
|
15891
|
+
/** Event has ended. */
|
|
15895
15892
|
ENDED = "ENDED",
|
|
15896
|
-
/** Event is canceled */
|
|
15893
|
+
/** Event is canceled. */
|
|
15897
15894
|
CANCELED = "CANCELED",
|
|
15898
|
-
/** Event is not public */
|
|
15895
|
+
/** Event is not public. */
|
|
15899
15896
|
DRAFT = "DRAFT"
|
|
15900
15897
|
}
|
|
15901
15898
|
interface PageUrl$1 {
|
|
@@ -15906,24 +15903,12 @@ interface PageUrl$1 {
|
|
|
15906
15903
|
}
|
|
15907
15904
|
interface Registration$1 {
|
|
15908
15905
|
/**
|
|
15909
|
-
* Current registration type.
|
|
15910
|
-
* - `RSVP`: Guests register by RSVPing to the event.
|
|
15911
|
-
* - `TICKETING`: Guests register by buying tickets.
|
|
15912
|
-
* - `EXTERNAL`: Guests register externally using some other site or platform.
|
|
15913
|
-
* - `NONE`: No registration is required, all guests can attend. This registration type is for only displaying the event details on a site.
|
|
15914
|
-
* The property value can be changed from RSVP/TICKETING to EXTERNAL or NONE after the event is created, depending on any additional configurations applied to the event.
|
|
15906
|
+
* Current registration type.
|
|
15915
15907
|
* @readonly
|
|
15916
15908
|
*/
|
|
15917
15909
|
type?: RegistrationTypeType$1;
|
|
15918
15910
|
/**
|
|
15919
|
-
* Registration status.
|
|
15920
|
-
* - `CLOSED_AUTOMATICALLY`: Registration is closed after tickets are sold out.
|
|
15921
|
-
* - `CLOSED_MANUALLY`: Registration is closed when the `registration.registrationDisabled` property is set to `true`.
|
|
15922
|
-
* - `OPEN_RSVP`: Guests can start RSVPing to the event.
|
|
15923
|
-
* - `OPEN_RSVP_WAITLIST_ONLY`: Guest list has reached the maximum, new guests are added to a waitlist.
|
|
15924
|
-
* - `OPEN_TICKETS`: Guests can buy tickets to the event.
|
|
15925
|
-
* - `OPEN_EXTERNAL`: Guests register on a different page or web address.
|
|
15926
|
-
* - `SCHEDULED_RSVP`: Registration via RSVP is scheduled for the future.
|
|
15911
|
+
* Registration status.
|
|
15927
15912
|
* @readonly
|
|
15928
15913
|
*/
|
|
15929
15914
|
status?: RegistrationStatusStatus$1;
|
|
@@ -15933,18 +15918,9 @@ interface Registration$1 {
|
|
|
15933
15918
|
tickets?: TicketsRegistration$1;
|
|
15934
15919
|
/** External registration details. */
|
|
15935
15920
|
external?: ExternalRegistration$1;
|
|
15936
|
-
/**
|
|
15937
|
-
* Types of guests allowed to register. Possible values:
|
|
15938
|
-
* - `VISITOR_OR_MEMBER`: All site visitors can RSVP to the event.
|
|
15939
|
-
* - `MEMBER`: Only people who have signed up as members of your site are able to RSVP to the event.
|
|
15940
|
-
*/
|
|
15921
|
+
/** Types of guests allowed to register. */
|
|
15941
15922
|
allowedGuestTypes?: GuestTypeType$1;
|
|
15942
|
-
/**
|
|
15943
|
-
* Initial event type which is set when creating an event. Possible values:
|
|
15944
|
-
* - `RSVP`: Guests register by RSVPing to the event.
|
|
15945
|
-
* - `TICKETING`: Guests register by buying tickets.
|
|
15946
|
-
* This property value never changes.
|
|
15947
|
-
*/
|
|
15923
|
+
/** Initial event type which is set when creating an event. */
|
|
15948
15924
|
initialType?: InitialRegistrationTypeType$1;
|
|
15949
15925
|
/** Whether the registration is paused. */
|
|
15950
15926
|
registrationPaused?: boolean;
|
|
@@ -15952,41 +15928,37 @@ interface Registration$1 {
|
|
|
15952
15928
|
registrationDisabled?: boolean;
|
|
15953
15929
|
}
|
|
15954
15930
|
declare enum RegistrationTypeType$1 {
|
|
15955
|
-
/**
|
|
15931
|
+
/** This value is not used. */
|
|
15956
15932
|
UNKNOWN_REGISTRATION_TYPE = "UNKNOWN_REGISTRATION_TYPE",
|
|
15957
|
-
/**
|
|
15933
|
+
/** Guests register by RSVPing to the event. */
|
|
15958
15934
|
RSVP = "RSVP",
|
|
15959
|
-
/**
|
|
15935
|
+
/** Guests register by buying tickets. */
|
|
15960
15936
|
TICKETING = "TICKETING",
|
|
15961
|
-
/**
|
|
15937
|
+
/** Guests register externally using some other site or platform. */
|
|
15962
15938
|
EXTERNAL = "EXTERNAL",
|
|
15963
|
-
/**
|
|
15939
|
+
/** No registration is required, all guests can attend. This registration type is for only displaying the event details on a site. The property value can be changed from RSVP/TICKETING to EXTERNAL or NONE after the event is created, depending on any additional configurations applied to the event. */
|
|
15964
15940
|
NONE = "NONE"
|
|
15965
15941
|
}
|
|
15966
15942
|
declare enum RegistrationStatusStatus$1 {
|
|
15967
15943
|
/** Registration status is not applicable */
|
|
15968
15944
|
UNKNOWN_REGISTRATION_STATUS = "UNKNOWN_REGISTRATION_STATUS",
|
|
15969
|
-
/** Registration
|
|
15945
|
+
/** Registration is closed after tickets are sold out. */
|
|
15970
15946
|
CLOSED_AUTOMATICALLY = "CLOSED_AUTOMATICALLY",
|
|
15971
|
-
/** Registration
|
|
15947
|
+
/** Registration is closed when the `registration.registrationDisabled` property is set to `true``. */
|
|
15972
15948
|
CLOSED_MANUALLY = "CLOSED_MANUALLY",
|
|
15973
|
-
/**
|
|
15949
|
+
/** Guests can start RSVPing to the event. */
|
|
15974
15950
|
OPEN_RSVP = "OPEN_RSVP",
|
|
15975
|
-
/**
|
|
15951
|
+
/** Guest list has reached the maximum, new guests are added to a waitlist. */
|
|
15976
15952
|
OPEN_RSVP_WAITLIST_ONLY = "OPEN_RSVP_WAITLIST_ONLY",
|
|
15977
|
-
/**
|
|
15953
|
+
/** Guests can buy tickets to the event. */
|
|
15978
15954
|
OPEN_TICKETS = "OPEN_TICKETS",
|
|
15979
|
-
/**
|
|
15955
|
+
/** Guests register on a different page or web address. */
|
|
15980
15956
|
OPEN_EXTERNAL = "OPEN_EXTERNAL",
|
|
15981
|
-
/** Registration
|
|
15957
|
+
/** Registration via RSVP is scheduled for the future. */
|
|
15982
15958
|
SCHEDULED_RSVP = "SCHEDULED_RSVP"
|
|
15983
15959
|
}
|
|
15984
15960
|
interface RsvpRegistration$1 {
|
|
15985
|
-
/**
|
|
15986
|
-
* Available answers for registration to an event. Possible values:
|
|
15987
|
-
* - `YES_ONLY`: Only a **Yes** answer is available to select when RSVP'ing to an event.
|
|
15988
|
-
* - `YES_AND_NO`: Both **Yes** and **No** answers are available to select when RSVP'ing to an event.
|
|
15989
|
-
*/
|
|
15961
|
+
/** Available answers for registration to an event. */
|
|
15990
15962
|
responseType?: ResponseType$1;
|
|
15991
15963
|
/** How many guests can RSVP to an event. */
|
|
15992
15964
|
limit?: number | null;
|
|
@@ -15998,7 +15970,7 @@ interface RsvpRegistration$1 {
|
|
|
15998
15970
|
endDate?: Date | null;
|
|
15999
15971
|
}
|
|
16000
15972
|
declare enum ResponseType$1 {
|
|
16001
|
-
/**
|
|
15973
|
+
/** This value is unused. */
|
|
16002
15974
|
UNKNOWN_RESPONSE_TYPE = "UNKNOWN_RESPONSE_TYPE",
|
|
16003
15975
|
/** Only a **Yes** answer is available for the registration. */
|
|
16004
15976
|
YES_ONLY = "YES_ONLY",
|
|
@@ -16049,11 +16021,7 @@ interface Money$1 {
|
|
|
16049
16021
|
formattedValue?: string | null;
|
|
16050
16022
|
}
|
|
16051
16023
|
interface TaxSettings$1 {
|
|
16052
|
-
/**
|
|
16053
|
-
* Tax application settings. Possible values:
|
|
16054
|
-
* - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75.
|
|
16055
|
-
* - `ADDED_AT_CHECKOUT`: Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total.
|
|
16056
|
-
*/
|
|
16024
|
+
/** Tax application settings. */
|
|
16057
16025
|
type?: TaxType$1;
|
|
16058
16026
|
/** Tax name. */
|
|
16059
16027
|
name?: string | null;
|
|
@@ -16063,11 +16031,11 @@ interface TaxSettings$1 {
|
|
|
16063
16031
|
appliedToDonations?: boolean | null;
|
|
16064
16032
|
}
|
|
16065
16033
|
declare enum TaxType$1 {
|
|
16066
|
-
/**
|
|
16034
|
+
/** This value is unused. */
|
|
16067
16035
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
16068
|
-
/**
|
|
16036
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
16069
16037
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
16070
|
-
/**
|
|
16038
|
+
/** Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total. */
|
|
16071
16039
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
16072
16040
|
}
|
|
16073
16041
|
interface ExternalRegistration$1 {
|
|
@@ -16075,19 +16043,19 @@ interface ExternalRegistration$1 {
|
|
|
16075
16043
|
url?: string | null;
|
|
16076
16044
|
}
|
|
16077
16045
|
declare enum GuestTypeType$1 {
|
|
16078
|
-
/**
|
|
16046
|
+
/** This value is not used. */
|
|
16079
16047
|
UNKNOWN_GUEST_TYPE = "UNKNOWN_GUEST_TYPE",
|
|
16080
|
-
/**
|
|
16048
|
+
/** All site visitors can RSVP to the event. */
|
|
16081
16049
|
VISITOR_OR_MEMBER = "VISITOR_OR_MEMBER",
|
|
16082
|
-
/**
|
|
16050
|
+
/** Only people who have signed up as members of your site are able to RSVP to the event. */
|
|
16083
16051
|
MEMBER = "MEMBER"
|
|
16084
16052
|
}
|
|
16085
16053
|
declare enum InitialRegistrationTypeType$1 {
|
|
16086
|
-
/**
|
|
16054
|
+
/** This value is not used. */
|
|
16087
16055
|
UNKNOWN_INITIAL_REGISTRATION_TYPE = "UNKNOWN_INITIAL_REGISTRATION_TYPE",
|
|
16088
|
-
/**
|
|
16056
|
+
/** Guests register by RSVPing to the event. */
|
|
16089
16057
|
RSVP = "RSVP",
|
|
16090
|
-
/**
|
|
16058
|
+
/** Guests register by buying tickets. This property value never changes. */
|
|
16091
16059
|
TICKETING = "TICKETING"
|
|
16092
16060
|
}
|
|
16093
16061
|
interface CommonImage {
|
|
@@ -16438,11 +16406,7 @@ interface OnlineConferencing$1 {
|
|
|
16438
16406
|
enabled?: boolean;
|
|
16439
16407
|
/** Conference host ID. */
|
|
16440
16408
|
providerId?: string | null;
|
|
16441
|
-
/**
|
|
16442
|
-
* Conference type. Possible values:
|
|
16443
|
-
* - `MEETING`: Guests can do some actions during the conference, for example talk, turn on camera and show their screen.
|
|
16444
|
-
* - `WEBINAR`: Guests can only watch the conference.
|
|
16445
|
-
*/
|
|
16409
|
+
/** Conference type. */
|
|
16446
16410
|
type?: ConferenceTypeType$1;
|
|
16447
16411
|
/** Online conferencing session information. */
|
|
16448
16412
|
session?: OnlineConferencingSession$1;
|
|
@@ -16450,9 +16414,9 @@ interface OnlineConferencing$1 {
|
|
|
16450
16414
|
declare enum ConferenceTypeType$1 {
|
|
16451
16415
|
/** Default value. This value is unused */
|
|
16452
16416
|
UNKNOWN_CONFERENCE_TYPE = "UNKNOWN_CONFERENCE_TYPE",
|
|
16453
|
-
/** Guests can
|
|
16417
|
+
/** Guests can do some actions during the conference, for example talk, turn on camera and show their screen. */
|
|
16454
16418
|
MEETING = "MEETING",
|
|
16455
|
-
/** Guests can only
|
|
16419
|
+
/** Guests can only watch the conference. */
|
|
16456
16420
|
WEBINAR = "WEBINAR"
|
|
16457
16421
|
}
|
|
16458
16422
|
interface OnlineConferencingSession$1 {
|
|
@@ -17412,17 +17376,17 @@ interface Formatted$2 {
|
|
|
17412
17376
|
endTime?: string | null;
|
|
17413
17377
|
}
|
|
17414
17378
|
declare enum Status$2 {
|
|
17415
|
-
/**
|
|
17379
|
+
/** This value is unused. */
|
|
17416
17380
|
UNKNOWN_EVENT_STATUS = "UNKNOWN_EVENT_STATUS",
|
|
17417
|
-
/** Event is
|
|
17381
|
+
/** Event is published and scheduled to start. */
|
|
17418
17382
|
UPCOMING = "UPCOMING",
|
|
17419
|
-
/** Event has started */
|
|
17383
|
+
/** Event has started. */
|
|
17420
17384
|
STARTED = "STARTED",
|
|
17421
|
-
/** Event has ended */
|
|
17385
|
+
/** Event has ended. */
|
|
17422
17386
|
ENDED = "ENDED",
|
|
17423
|
-
/** Event is canceled */
|
|
17387
|
+
/** Event is canceled. */
|
|
17424
17388
|
CANCELED = "CANCELED",
|
|
17425
|
-
/** Event is not public */
|
|
17389
|
+
/** Event is not public. */
|
|
17426
17390
|
DRAFT = "DRAFT"
|
|
17427
17391
|
}
|
|
17428
17392
|
interface Registration {
|
|
@@ -17479,41 +17443,37 @@ interface Registration {
|
|
|
17479
17443
|
registrationDisabled?: boolean;
|
|
17480
17444
|
}
|
|
17481
17445
|
declare enum RegistrationTypeType {
|
|
17482
|
-
/**
|
|
17446
|
+
/** This value is not used. */
|
|
17483
17447
|
UNKNOWN_REGISTRATION_TYPE = "UNKNOWN_REGISTRATION_TYPE",
|
|
17484
|
-
/**
|
|
17448
|
+
/** Guests register by RSVPing to the event. */
|
|
17485
17449
|
RSVP = "RSVP",
|
|
17486
|
-
/**
|
|
17450
|
+
/** Guests register by buying tickets. */
|
|
17487
17451
|
TICKETING = "TICKETING",
|
|
17488
|
-
/**
|
|
17452
|
+
/** Guests register externally using some other site or platform. */
|
|
17489
17453
|
EXTERNAL = "EXTERNAL",
|
|
17490
|
-
/**
|
|
17454
|
+
/** No registration is required, all guests can attend. This registration type is for only displaying the event details on a site. The property value can be changed from RSVP/TICKETING to EXTERNAL or NONE after the event is created, depending on any additional configurations applied to the event. */
|
|
17491
17455
|
NONE = "NONE"
|
|
17492
17456
|
}
|
|
17493
17457
|
declare enum RegistrationStatusStatus {
|
|
17494
17458
|
/** Registration status is not applicable */
|
|
17495
17459
|
UNKNOWN_REGISTRATION_STATUS = "UNKNOWN_REGISTRATION_STATUS",
|
|
17496
|
-
/** Registration
|
|
17460
|
+
/** Registration is closed after tickets are sold out. */
|
|
17497
17461
|
CLOSED_AUTOMATICALLY = "CLOSED_AUTOMATICALLY",
|
|
17498
|
-
/** Registration
|
|
17462
|
+
/** Registration is closed when the `registration.registrationDisabled` property is set to `true``. */
|
|
17499
17463
|
CLOSED_MANUALLY = "CLOSED_MANUALLY",
|
|
17500
|
-
/**
|
|
17464
|
+
/** Guests can start RSVPing to the event. */
|
|
17501
17465
|
OPEN_RSVP = "OPEN_RSVP",
|
|
17502
|
-
/**
|
|
17466
|
+
/** Guest list has reached the maximum, new guests are added to a waitlist. */
|
|
17503
17467
|
OPEN_RSVP_WAITLIST_ONLY = "OPEN_RSVP_WAITLIST_ONLY",
|
|
17504
|
-
/**
|
|
17468
|
+
/** Guests can buy tickets to the event. */
|
|
17505
17469
|
OPEN_TICKETS = "OPEN_TICKETS",
|
|
17506
|
-
/**
|
|
17470
|
+
/** Guests register on a different page or web address. */
|
|
17507
17471
|
OPEN_EXTERNAL = "OPEN_EXTERNAL",
|
|
17508
|
-
/** Registration
|
|
17472
|
+
/** Registration via RSVP is scheduled for the future. */
|
|
17509
17473
|
SCHEDULED_RSVP = "SCHEDULED_RSVP"
|
|
17510
17474
|
}
|
|
17511
17475
|
interface RsvpRegistration {
|
|
17512
|
-
/**
|
|
17513
|
-
* Available answers for registration to an event. Possible values:
|
|
17514
|
-
* - `YES_ONLY`: Only a **Yes** answer is available to select when RSVP'ing to an event.
|
|
17515
|
-
* - `YES_AND_NO`: Both **Yes** and **No** answers are available to select when RSVP'ing to an event.
|
|
17516
|
-
*/
|
|
17476
|
+
/** Available answers for registration to an event. */
|
|
17517
17477
|
responseType?: ResponseType;
|
|
17518
17478
|
/** How many guests can RSVP to an event. */
|
|
17519
17479
|
limit?: number | null;
|
|
@@ -17525,7 +17485,7 @@ interface RsvpRegistration {
|
|
|
17525
17485
|
endDate?: Date | null;
|
|
17526
17486
|
}
|
|
17527
17487
|
declare enum ResponseType {
|
|
17528
|
-
/**
|
|
17488
|
+
/** This value is unused. */
|
|
17529
17489
|
UNKNOWN_RESPONSE_TYPE = "UNKNOWN_RESPONSE_TYPE",
|
|
17530
17490
|
/** Only a **Yes** answer is available for the registration. */
|
|
17531
17491
|
YES_ONLY = "YES_ONLY",
|
|
@@ -17591,11 +17551,11 @@ interface TaxSettings {
|
|
|
17591
17551
|
appliedToDonations?: boolean | null;
|
|
17592
17552
|
}
|
|
17593
17553
|
declare enum TaxType {
|
|
17594
|
-
/**
|
|
17554
|
+
/** This value is unused. */
|
|
17595
17555
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
17596
|
-
/**
|
|
17556
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
17597
17557
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
17598
|
-
/**
|
|
17558
|
+
/** Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total. */
|
|
17599
17559
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
17600
17560
|
}
|
|
17601
17561
|
interface ExternalRegistration {
|
|
@@ -17603,19 +17563,19 @@ interface ExternalRegistration {
|
|
|
17603
17563
|
url?: string | null;
|
|
17604
17564
|
}
|
|
17605
17565
|
declare enum GuestTypeType {
|
|
17606
|
-
/**
|
|
17566
|
+
/** This value is not used. */
|
|
17607
17567
|
UNKNOWN_GUEST_TYPE = "UNKNOWN_GUEST_TYPE",
|
|
17608
|
-
/**
|
|
17568
|
+
/** All site visitors can RSVP to the event. */
|
|
17609
17569
|
VISITOR_OR_MEMBER = "VISITOR_OR_MEMBER",
|
|
17610
|
-
/**
|
|
17570
|
+
/** Only people who have signed up as members of your site are able to RSVP to the event. */
|
|
17611
17571
|
MEMBER = "MEMBER"
|
|
17612
17572
|
}
|
|
17613
17573
|
declare enum InitialRegistrationTypeType {
|
|
17614
|
-
/**
|
|
17574
|
+
/** This value is not used. */
|
|
17615
17575
|
UNKNOWN_INITIAL_REGISTRATION_TYPE = "UNKNOWN_INITIAL_REGISTRATION_TYPE",
|
|
17616
|
-
/**
|
|
17576
|
+
/** Guests register by RSVPing to the event. */
|
|
17617
17577
|
RSVP = "RSVP",
|
|
17618
|
-
/**
|
|
17578
|
+
/** Guests register by buying tickets. This property value never changes. */
|
|
17619
17579
|
TICKETING = "TICKETING"
|
|
17620
17580
|
}
|
|
17621
17581
|
interface CalendarUrls {
|
|
@@ -17959,9 +17919,9 @@ interface OnlineConferencing {
|
|
|
17959
17919
|
declare enum ConferenceTypeType {
|
|
17960
17920
|
/** Default value. This value is unused */
|
|
17961
17921
|
UNKNOWN_CONFERENCE_TYPE = "UNKNOWN_CONFERENCE_TYPE",
|
|
17962
|
-
/** Guests can
|
|
17922
|
+
/** Guests can do some actions during the conference, for example talk, turn on camera and show their screen. */
|
|
17963
17923
|
MEETING = "MEETING",
|
|
17964
|
-
/** Guests can only
|
|
17924
|
+
/** Guests can only watch the conference. */
|
|
17965
17925
|
WEBINAR = "WEBINAR"
|
|
17966
17926
|
}
|
|
17967
17927
|
interface OnlineConferencingSession {
|