@wix/events 1.0.362 → 1.0.363
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 +14 -14
- package/type-bundles/context.bundle.d.ts +81 -35
- package/type-bundles/index.bundle.d.ts +81 -35
- package/type-bundles/meta.bundle.d.ts +60 -56
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/events",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.363",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,21 +22,21 @@
|
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@wix/events_categories": "1.0.55",
|
|
25
|
-
"@wix/events_forms": "1.0.
|
|
26
|
-
"@wix/events_guests": "1.0.
|
|
27
|
-
"@wix/events_notifications": "1.0.
|
|
28
|
-
"@wix/events_orders": "1.0.
|
|
29
|
-
"@wix/events_policies": "1.0.
|
|
30
|
-
"@wix/events_ricos": "1.0.
|
|
31
|
-
"@wix/events_rsvp": "1.0.
|
|
32
|
-
"@wix/events_rsvp-v-2": "1.0.
|
|
25
|
+
"@wix/events_forms": "1.0.57",
|
|
26
|
+
"@wix/events_guests": "1.0.84",
|
|
27
|
+
"@wix/events_notifications": "1.0.44",
|
|
28
|
+
"@wix/events_orders": "1.0.67",
|
|
29
|
+
"@wix/events_policies": "1.0.55",
|
|
30
|
+
"@wix/events_ricos": "1.0.28",
|
|
31
|
+
"@wix/events_rsvp": "1.0.58",
|
|
32
|
+
"@wix/events_rsvp-v-2": "1.0.31",
|
|
33
33
|
"@wix/events_schedule": "1.0.47",
|
|
34
34
|
"@wix/events_schedule-bookmarks": "1.0.43",
|
|
35
|
-
"@wix/events_staff-members": "1.0.
|
|
35
|
+
"@wix/events_staff-members": "1.0.28",
|
|
36
36
|
"@wix/events_ticket-definitions": "1.0.60",
|
|
37
|
-
"@wix/events_ticket-definitions-v-2": "1.0.
|
|
38
|
-
"@wix/events_tickets": "1.0.
|
|
39
|
-
"@wix/events_wix-events-v-2": "1.0.
|
|
37
|
+
"@wix/events_ticket-definitions-v-2": "1.0.79",
|
|
38
|
+
"@wix/events_tickets": "1.0.54",
|
|
39
|
+
"@wix/events_wix-events-v-2": "1.0.69"
|
|
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": "ba08452f64f3929a80cdb167207ba42bfff611d5dab698ff9b956b29"
|
|
65
65
|
}
|
|
@@ -1778,8 +1778,12 @@ interface StreetAddressNonNullableFields$3 {
|
|
|
1778
1778
|
name: string;
|
|
1779
1779
|
apt: string;
|
|
1780
1780
|
}
|
|
1781
|
+
interface SubdivisionNonNullableFields$3 {
|
|
1782
|
+
name: string;
|
|
1783
|
+
}
|
|
1781
1784
|
interface AddressNonNullableFields$3 {
|
|
1782
1785
|
streetAddress?: StreetAddressNonNullableFields$3;
|
|
1786
|
+
subdivisions: SubdivisionNonNullableFields$3[];
|
|
1783
1787
|
}
|
|
1784
1788
|
interface FormattedAddressNonNullableFields$4 {
|
|
1785
1789
|
formatted: string;
|
|
@@ -2142,9 +2146,7 @@ declare enum EmailNotificationType {
|
|
|
2142
2146
|
/** Triggered when resending ticket to ticket holder. */
|
|
2143
2147
|
EMAIL_TICKET_CONFIRMATION = "EMAIL_TICKET_CONFIRMATION",
|
|
2144
2148
|
/** Triggered when sending invoice. Currently only `enabled` flag update is supported. */
|
|
2145
|
-
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
2146
|
-
/** Triggered when order confirmation sending is delayed. Tickets are accessible via link. */
|
|
2147
|
-
EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK = "EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK"
|
|
2149
|
+
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
2148
2150
|
}
|
|
2149
2151
|
interface EmailTemplate {
|
|
2150
2152
|
/** Email subject. */
|
|
@@ -2574,6 +2576,10 @@ interface Address$9 extends AddressStreetOneOf$9 {
|
|
|
2574
2576
|
formatted?: string | null;
|
|
2575
2577
|
/** coordinates of the physical address */
|
|
2576
2578
|
location?: AddressLocation$9;
|
|
2579
|
+
/** country full-name */
|
|
2580
|
+
countryFullname?: string | null;
|
|
2581
|
+
/** multi-level subdivisions from top to bottom */
|
|
2582
|
+
subdivisions?: Subdivision$9[];
|
|
2577
2583
|
}
|
|
2578
2584
|
/** @oneof */
|
|
2579
2585
|
interface AddressStreetOneOf$9 {
|
|
@@ -3290,11 +3296,11 @@ interface Tag$4 {
|
|
|
3290
3296
|
*/
|
|
3291
3297
|
type?: string;
|
|
3292
3298
|
/**
|
|
3293
|
-
* A `{
|
|
3294
|
-
* For example: `{
|
|
3299
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
3300
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
3295
3301
|
*/
|
|
3296
3302
|
props?: Record<string, any> | null;
|
|
3297
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
3303
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
3298
3304
|
meta?: Record<string, any> | null;
|
|
3299
3305
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
3300
3306
|
children?: string;
|
|
@@ -5304,11 +5310,6 @@ interface GetStaffMemberRequest {
|
|
|
5304
5310
|
fieldsets?: Fieldset[];
|
|
5305
5311
|
}
|
|
5306
5312
|
declare enum Fieldset {
|
|
5307
|
-
/**
|
|
5308
|
-
* Includes join link.
|
|
5309
|
-
* Deprecated, use LOGIN_LINK
|
|
5310
|
-
*/
|
|
5311
|
-
JOIN_LINK = "JOIN_LINK",
|
|
5312
5313
|
/** Includes login link. */
|
|
5313
5314
|
LOGIN_LINK = "LOGIN_LINK"
|
|
5314
5315
|
}
|
|
@@ -7266,6 +7267,10 @@ interface Address$8 extends AddressStreetOneOf$8 {
|
|
|
7266
7267
|
formatted?: string | null;
|
|
7267
7268
|
/** coordinates of the physical address */
|
|
7268
7269
|
location?: AddressLocation$8;
|
|
7270
|
+
/** country full-name */
|
|
7271
|
+
countryFullname?: string | null;
|
|
7272
|
+
/** multi-level subdivisions from top to bottom */
|
|
7273
|
+
subdivisions?: Subdivision$8[];
|
|
7269
7274
|
}
|
|
7270
7275
|
/** @oneof */
|
|
7271
7276
|
interface AddressStreetOneOf$8 {
|
|
@@ -7756,11 +7761,11 @@ interface Tag$3 {
|
|
|
7756
7761
|
*/
|
|
7757
7762
|
type?: string;
|
|
7758
7763
|
/**
|
|
7759
|
-
* A `{
|
|
7760
|
-
* For example: `{
|
|
7764
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
7765
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
7761
7766
|
*/
|
|
7762
7767
|
props?: Record<string, any> | null;
|
|
7763
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
7768
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
7764
7769
|
meta?: Record<string, any> | null;
|
|
7765
7770
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
7766
7771
|
children?: string;
|
|
@@ -9881,8 +9886,12 @@ interface StreetAddressNonNullableFields$2 {
|
|
|
9881
9886
|
name: string;
|
|
9882
9887
|
apt: string;
|
|
9883
9888
|
}
|
|
9889
|
+
interface SubdivisionNonNullableFields$2 {
|
|
9890
|
+
name: string;
|
|
9891
|
+
}
|
|
9884
9892
|
interface AddressNonNullableFields$2 {
|
|
9885
9893
|
streetAddress?: StreetAddressNonNullableFields$2;
|
|
9894
|
+
subdivisions: SubdivisionNonNullableFields$2[];
|
|
9886
9895
|
}
|
|
9887
9896
|
interface FormattedAddressNonNullableFields$3 {
|
|
9888
9897
|
formatted: string;
|
|
@@ -12276,6 +12285,10 @@ interface Address$6 extends AddressStreetOneOf$6 {
|
|
|
12276
12285
|
formatted?: string | null;
|
|
12277
12286
|
/** coordinates of the physical address */
|
|
12278
12287
|
location?: AddressLocation$6;
|
|
12288
|
+
/** country full-name */
|
|
12289
|
+
countryFullname?: string | null;
|
|
12290
|
+
/** multi-level subdivisions from top to bottom */
|
|
12291
|
+
subdivisions?: Subdivision$6[];
|
|
12279
12292
|
}
|
|
12280
12293
|
/** @oneof */
|
|
12281
12294
|
interface AddressStreetOneOf$6 {
|
|
@@ -13847,8 +13860,12 @@ interface StreetAddressNonNullableFields$1 {
|
|
|
13847
13860
|
name: string;
|
|
13848
13861
|
apt: string;
|
|
13849
13862
|
}
|
|
13863
|
+
interface SubdivisionNonNullableFields$1 {
|
|
13864
|
+
name: string;
|
|
13865
|
+
}
|
|
13850
13866
|
interface AddressNonNullableFields$1 {
|
|
13851
13867
|
streetAddress?: StreetAddressNonNullableFields$1;
|
|
13868
|
+
subdivisions: SubdivisionNonNullableFields$1[];
|
|
13852
13869
|
}
|
|
13853
13870
|
interface FormattedAddressNonNullableFields$2 {
|
|
13854
13871
|
formatted: string;
|
|
@@ -14821,8 +14838,12 @@ interface StreetAddressNonNullableFields {
|
|
|
14821
14838
|
name: string;
|
|
14822
14839
|
apt: string;
|
|
14823
14840
|
}
|
|
14841
|
+
interface SubdivisionNonNullableFields {
|
|
14842
|
+
name: string;
|
|
14843
|
+
}
|
|
14824
14844
|
interface AddressNonNullableFields {
|
|
14825
14845
|
streetAddress?: StreetAddressNonNullableFields;
|
|
14846
|
+
subdivisions: SubdivisionNonNullableFields[];
|
|
14826
14847
|
}
|
|
14827
14848
|
interface FormattedAddressNonNullableFields$1 {
|
|
14828
14849
|
formatted: string;
|
|
@@ -16363,6 +16384,10 @@ interface Address$3 extends AddressStreetOneOf$3 {
|
|
|
16363
16384
|
formatted?: string | null;
|
|
16364
16385
|
/** coordinates of the physical address */
|
|
16365
16386
|
location?: AddressLocation$3;
|
|
16387
|
+
/** country full-name */
|
|
16388
|
+
countryFullname?: string | null;
|
|
16389
|
+
/** multi-level subdivisions from top to bottom */
|
|
16390
|
+
subdivisions?: Subdivision$3[];
|
|
16366
16391
|
}
|
|
16367
16392
|
/** @oneof */
|
|
16368
16393
|
interface AddressStreetOneOf$3 {
|
|
@@ -17307,11 +17332,7 @@ declare enum ScalarType {
|
|
|
17307
17332
|
/** Minimum value. */
|
|
17308
17333
|
MIN = "MIN",
|
|
17309
17334
|
/** Maximum value. */
|
|
17310
|
-
MAX = "MAX"
|
|
17311
|
-
/** Sum of values. */
|
|
17312
|
-
SUM = "SUM",
|
|
17313
|
-
/** Average of values. */
|
|
17314
|
-
AVG = "AVG"
|
|
17335
|
+
MAX = "MAX"
|
|
17315
17336
|
}
|
|
17316
17337
|
interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
17317
17338
|
/**
|
|
@@ -18048,6 +18069,10 @@ interface Address$2 extends AddressStreetOneOf$2 {
|
|
|
18048
18069
|
formatted?: string | null;
|
|
18049
18070
|
/** coordinates of the physical address */
|
|
18050
18071
|
location?: AddressLocation$2;
|
|
18072
|
+
/** country full-name */
|
|
18073
|
+
countryFullname?: string | null;
|
|
18074
|
+
/** multi-level subdivisions from top to bottom */
|
|
18075
|
+
subdivisions?: Subdivision$2[];
|
|
18051
18076
|
}
|
|
18052
18077
|
/** @oneof */
|
|
18053
18078
|
interface AddressStreetOneOf$2 {
|
|
@@ -18758,11 +18783,11 @@ interface Tag$2 {
|
|
|
18758
18783
|
*/
|
|
18759
18784
|
type?: string;
|
|
18760
18785
|
/**
|
|
18761
|
-
* A `{
|
|
18762
|
-
* For example: `{
|
|
18786
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
18787
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
18763
18788
|
*/
|
|
18764
18789
|
props?: Record<string, any> | null;
|
|
18765
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
18790
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
18766
18791
|
meta?: Record<string, any> | null;
|
|
18767
18792
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
18768
18793
|
children?: string;
|
|
@@ -18982,8 +19007,12 @@ interface CommonStreetAddressNonNullableFields$2 {
|
|
|
18982
19007
|
name: string;
|
|
18983
19008
|
apt: string;
|
|
18984
19009
|
}
|
|
19010
|
+
interface CommonSubdivisionNonNullableFields$2 {
|
|
19011
|
+
name: string;
|
|
19012
|
+
}
|
|
18985
19013
|
interface CommonAddressNonNullableFields$2 {
|
|
18986
19014
|
streetAddress?: CommonStreetAddressNonNullableFields$2;
|
|
19015
|
+
subdivisions: CommonSubdivisionNonNullableFields$2[];
|
|
18987
19016
|
}
|
|
18988
19017
|
interface FormattedAddressNonNullableFields {
|
|
18989
19018
|
formatted: string;
|
|
@@ -20171,8 +20200,8 @@ interface TaxSettings {
|
|
|
20171
20200
|
/**
|
|
20172
20201
|
* Tax application settings:
|
|
20173
20202
|
*
|
|
20174
|
-
* - `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.
|
|
20175
|
-
* - `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.
|
|
20203
|
+
* - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket service fee of $0.25 is deducted from the price and you'll get $9.75.
|
|
20204
|
+
* - `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 ticket service fee of $0.25 and pays $10.25 in total.
|
|
20176
20205
|
*/
|
|
20177
20206
|
type?: TaxType$1;
|
|
20178
20207
|
/** Tax name. */
|
|
@@ -20186,9 +20215,9 @@ interface TaxSettings {
|
|
|
20186
20215
|
declare enum TaxType$1 {
|
|
20187
20216
|
/** Unknown tax type. */
|
|
20188
20217
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
20189
|
-
/** 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. */
|
|
20218
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket ticket service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
20190
20219
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
20191
|
-
/** Show the fee in 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. */
|
|
20220
|
+
/** Show the fee in 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 ticket ticket service fee of $0.25 and pays $10.25 in total. */
|
|
20192
20221
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
20193
20222
|
}
|
|
20194
20223
|
interface ExternalRegistration {
|
|
@@ -20627,11 +20656,11 @@ interface Tag$1 {
|
|
|
20627
20656
|
*/
|
|
20628
20657
|
type?: string;
|
|
20629
20658
|
/**
|
|
20630
|
-
* A `{
|
|
20631
|
-
* For example: `{
|
|
20659
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
20660
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
20632
20661
|
*/
|
|
20633
20662
|
props?: Record<string, any> | null;
|
|
20634
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
20663
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
20635
20664
|
meta?: Record<string, any> | null;
|
|
20636
20665
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
20637
20666
|
children?: string;
|
|
@@ -20823,8 +20852,7 @@ declare enum RequestedFields {
|
|
|
20823
20852
|
/** Returns `agendaSettings`. */
|
|
20824
20853
|
AGENDA = "AGENDA",
|
|
20825
20854
|
/** Returns `categories`. */
|
|
20826
|
-
CATEGORIES = "CATEGORIES"
|
|
20827
|
-
CUSTOMIZABLE_TICKETS = "CUSTOMIZABLE_TICKETS"
|
|
20855
|
+
CATEGORIES = "CATEGORIES"
|
|
20828
20856
|
}
|
|
20829
20857
|
interface CreateEventResponse {
|
|
20830
20858
|
/** Created event. */
|
|
@@ -21242,6 +21270,10 @@ interface Address$1 extends AddressStreetOneOf$1 {
|
|
|
21242
21270
|
formatted?: string | null;
|
|
21243
21271
|
/** coordinates of the physical address */
|
|
21244
21272
|
location?: AddressLocation$1;
|
|
21273
|
+
/** country full-name */
|
|
21274
|
+
countryFullname?: string | null;
|
|
21275
|
+
/** multi-level subdivisions from top to bottom */
|
|
21276
|
+
subdivisions?: Subdivision$1[];
|
|
21245
21277
|
}
|
|
21246
21278
|
/** @oneof */
|
|
21247
21279
|
interface AddressStreetOneOf$1 {
|
|
@@ -21993,8 +22025,12 @@ interface CommonStreetAddressNonNullableFields$1 {
|
|
|
21993
22025
|
name: string;
|
|
21994
22026
|
apt: string;
|
|
21995
22027
|
}
|
|
22028
|
+
interface CommonSubdivisionNonNullableFields$1 {
|
|
22029
|
+
name: string;
|
|
22030
|
+
}
|
|
21996
22031
|
interface CommonAddressNonNullableFields$1 {
|
|
21997
22032
|
streetAddress?: CommonStreetAddressNonNullableFields$1;
|
|
22033
|
+
subdivisions: CommonSubdivisionNonNullableFields$1[];
|
|
21998
22034
|
}
|
|
21999
22035
|
interface LocationNonNullableFields$1 {
|
|
22000
22036
|
type: LocationType$1;
|
|
@@ -24022,6 +24058,10 @@ interface Address extends AddressStreetOneOf {
|
|
|
24022
24058
|
formatted?: string | null;
|
|
24023
24059
|
/** coordinates of the physical address */
|
|
24024
24060
|
location?: AddressLocation;
|
|
24061
|
+
/** country full-name */
|
|
24062
|
+
countryFullname?: string | null;
|
|
24063
|
+
/** multi-level subdivisions from top to bottom */
|
|
24064
|
+
subdivisions?: Subdivision[];
|
|
24025
24065
|
}
|
|
24026
24066
|
/** @oneof */
|
|
24027
24067
|
interface AddressStreetOneOf {
|
|
@@ -24753,11 +24793,11 @@ interface Tag {
|
|
|
24753
24793
|
*/
|
|
24754
24794
|
type?: string;
|
|
24755
24795
|
/**
|
|
24756
|
-
* A `{
|
|
24757
|
-
* For example: `{
|
|
24796
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
24797
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
24758
24798
|
*/
|
|
24759
24799
|
props?: Record<string, any> | null;
|
|
24760
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
24800
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
24761
24801
|
meta?: Record<string, any> | null;
|
|
24762
24802
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
24763
24803
|
children?: string;
|
|
@@ -25092,7 +25132,9 @@ declare enum Namespace {
|
|
|
25092
25132
|
*/
|
|
25093
25133
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
25094
25134
|
/** Codux Headless Sites */
|
|
25095
|
-
CODUX = "CODUX"
|
|
25135
|
+
CODUX = "CODUX",
|
|
25136
|
+
/** Bobb - AI Design Creator. */
|
|
25137
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
25096
25138
|
}
|
|
25097
25139
|
/** Site transferred to another user. */
|
|
25098
25140
|
interface SiteTransferred {
|
|
@@ -25223,8 +25265,12 @@ interface CommonStreetAddressNonNullableFields {
|
|
|
25223
25265
|
name: string;
|
|
25224
25266
|
apt: string;
|
|
25225
25267
|
}
|
|
25268
|
+
interface CommonSubdivisionNonNullableFields {
|
|
25269
|
+
name: string;
|
|
25270
|
+
}
|
|
25226
25271
|
interface CommonAddressNonNullableFields {
|
|
25227
25272
|
streetAddress?: CommonStreetAddressNonNullableFields;
|
|
25273
|
+
subdivisions: CommonSubdivisionNonNullableFields[];
|
|
25228
25274
|
}
|
|
25229
25275
|
interface LocationNonNullableFields {
|
|
25230
25276
|
type: LocationType;
|
|
@@ -1778,8 +1778,12 @@ interface StreetAddressNonNullableFields$3 {
|
|
|
1778
1778
|
name: string;
|
|
1779
1779
|
apt: string;
|
|
1780
1780
|
}
|
|
1781
|
+
interface SubdivisionNonNullableFields$3 {
|
|
1782
|
+
name: string;
|
|
1783
|
+
}
|
|
1781
1784
|
interface AddressNonNullableFields$3 {
|
|
1782
1785
|
streetAddress?: StreetAddressNonNullableFields$3;
|
|
1786
|
+
subdivisions: SubdivisionNonNullableFields$3[];
|
|
1783
1787
|
}
|
|
1784
1788
|
interface FormattedAddressNonNullableFields$4 {
|
|
1785
1789
|
formatted: string;
|
|
@@ -2142,9 +2146,7 @@ declare enum EmailNotificationType {
|
|
|
2142
2146
|
/** Triggered when resending ticket to ticket holder. */
|
|
2143
2147
|
EMAIL_TICKET_CONFIRMATION = "EMAIL_TICKET_CONFIRMATION",
|
|
2144
2148
|
/** Triggered when sending invoice. Currently only `enabled` flag update is supported. */
|
|
2145
|
-
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
2146
|
-
/** Triggered when order confirmation sending is delayed. Tickets are accessible via link. */
|
|
2147
|
-
EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK = "EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK"
|
|
2149
|
+
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
2148
2150
|
}
|
|
2149
2151
|
interface EmailTemplate {
|
|
2150
2152
|
/** Email subject. */
|
|
@@ -2574,6 +2576,10 @@ interface Address$9 extends AddressStreetOneOf$9 {
|
|
|
2574
2576
|
formatted?: string | null;
|
|
2575
2577
|
/** coordinates of the physical address */
|
|
2576
2578
|
location?: AddressLocation$9;
|
|
2579
|
+
/** country full-name */
|
|
2580
|
+
countryFullname?: string | null;
|
|
2581
|
+
/** multi-level subdivisions from top to bottom */
|
|
2582
|
+
subdivisions?: Subdivision$9[];
|
|
2577
2583
|
}
|
|
2578
2584
|
/** @oneof */
|
|
2579
2585
|
interface AddressStreetOneOf$9 {
|
|
@@ -3290,11 +3296,11 @@ interface Tag$4 {
|
|
|
3290
3296
|
*/
|
|
3291
3297
|
type?: string;
|
|
3292
3298
|
/**
|
|
3293
|
-
* A `{
|
|
3294
|
-
* For example: `{
|
|
3299
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
3300
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
3295
3301
|
*/
|
|
3296
3302
|
props?: Record<string, any> | null;
|
|
3297
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
3303
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
3298
3304
|
meta?: Record<string, any> | null;
|
|
3299
3305
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
3300
3306
|
children?: string;
|
|
@@ -5304,11 +5310,6 @@ interface GetStaffMemberRequest {
|
|
|
5304
5310
|
fieldsets?: Fieldset[];
|
|
5305
5311
|
}
|
|
5306
5312
|
declare enum Fieldset {
|
|
5307
|
-
/**
|
|
5308
|
-
* Includes join link.
|
|
5309
|
-
* Deprecated, use LOGIN_LINK
|
|
5310
|
-
*/
|
|
5311
|
-
JOIN_LINK = "JOIN_LINK",
|
|
5312
5313
|
/** Includes login link. */
|
|
5313
5314
|
LOGIN_LINK = "LOGIN_LINK"
|
|
5314
5315
|
}
|
|
@@ -7266,6 +7267,10 @@ interface Address$8 extends AddressStreetOneOf$8 {
|
|
|
7266
7267
|
formatted?: string | null;
|
|
7267
7268
|
/** coordinates of the physical address */
|
|
7268
7269
|
location?: AddressLocation$8;
|
|
7270
|
+
/** country full-name */
|
|
7271
|
+
countryFullname?: string | null;
|
|
7272
|
+
/** multi-level subdivisions from top to bottom */
|
|
7273
|
+
subdivisions?: Subdivision$8[];
|
|
7269
7274
|
}
|
|
7270
7275
|
/** @oneof */
|
|
7271
7276
|
interface AddressStreetOneOf$8 {
|
|
@@ -7756,11 +7761,11 @@ interface Tag$3 {
|
|
|
7756
7761
|
*/
|
|
7757
7762
|
type?: string;
|
|
7758
7763
|
/**
|
|
7759
|
-
* A `{
|
|
7760
|
-
* For example: `{
|
|
7764
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
7765
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
7761
7766
|
*/
|
|
7762
7767
|
props?: Record<string, any> | null;
|
|
7763
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
7768
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
7764
7769
|
meta?: Record<string, any> | null;
|
|
7765
7770
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
7766
7771
|
children?: string;
|
|
@@ -9881,8 +9886,12 @@ interface StreetAddressNonNullableFields$2 {
|
|
|
9881
9886
|
name: string;
|
|
9882
9887
|
apt: string;
|
|
9883
9888
|
}
|
|
9889
|
+
interface SubdivisionNonNullableFields$2 {
|
|
9890
|
+
name: string;
|
|
9891
|
+
}
|
|
9884
9892
|
interface AddressNonNullableFields$2 {
|
|
9885
9893
|
streetAddress?: StreetAddressNonNullableFields$2;
|
|
9894
|
+
subdivisions: SubdivisionNonNullableFields$2[];
|
|
9886
9895
|
}
|
|
9887
9896
|
interface FormattedAddressNonNullableFields$3 {
|
|
9888
9897
|
formatted: string;
|
|
@@ -12276,6 +12285,10 @@ interface Address$6 extends AddressStreetOneOf$6 {
|
|
|
12276
12285
|
formatted?: string | null;
|
|
12277
12286
|
/** coordinates of the physical address */
|
|
12278
12287
|
location?: AddressLocation$6;
|
|
12288
|
+
/** country full-name */
|
|
12289
|
+
countryFullname?: string | null;
|
|
12290
|
+
/** multi-level subdivisions from top to bottom */
|
|
12291
|
+
subdivisions?: Subdivision$6[];
|
|
12279
12292
|
}
|
|
12280
12293
|
/** @oneof */
|
|
12281
12294
|
interface AddressStreetOneOf$6 {
|
|
@@ -13847,8 +13860,12 @@ interface StreetAddressNonNullableFields$1 {
|
|
|
13847
13860
|
name: string;
|
|
13848
13861
|
apt: string;
|
|
13849
13862
|
}
|
|
13863
|
+
interface SubdivisionNonNullableFields$1 {
|
|
13864
|
+
name: string;
|
|
13865
|
+
}
|
|
13850
13866
|
interface AddressNonNullableFields$1 {
|
|
13851
13867
|
streetAddress?: StreetAddressNonNullableFields$1;
|
|
13868
|
+
subdivisions: SubdivisionNonNullableFields$1[];
|
|
13852
13869
|
}
|
|
13853
13870
|
interface FormattedAddressNonNullableFields$2 {
|
|
13854
13871
|
formatted: string;
|
|
@@ -14821,8 +14838,12 @@ interface StreetAddressNonNullableFields {
|
|
|
14821
14838
|
name: string;
|
|
14822
14839
|
apt: string;
|
|
14823
14840
|
}
|
|
14841
|
+
interface SubdivisionNonNullableFields {
|
|
14842
|
+
name: string;
|
|
14843
|
+
}
|
|
14824
14844
|
interface AddressNonNullableFields {
|
|
14825
14845
|
streetAddress?: StreetAddressNonNullableFields;
|
|
14846
|
+
subdivisions: SubdivisionNonNullableFields[];
|
|
14826
14847
|
}
|
|
14827
14848
|
interface FormattedAddressNonNullableFields$1 {
|
|
14828
14849
|
formatted: string;
|
|
@@ -16363,6 +16384,10 @@ interface Address$3 extends AddressStreetOneOf$3 {
|
|
|
16363
16384
|
formatted?: string | null;
|
|
16364
16385
|
/** coordinates of the physical address */
|
|
16365
16386
|
location?: AddressLocation$3;
|
|
16387
|
+
/** country full-name */
|
|
16388
|
+
countryFullname?: string | null;
|
|
16389
|
+
/** multi-level subdivisions from top to bottom */
|
|
16390
|
+
subdivisions?: Subdivision$3[];
|
|
16366
16391
|
}
|
|
16367
16392
|
/** @oneof */
|
|
16368
16393
|
interface AddressStreetOneOf$3 {
|
|
@@ -17307,11 +17332,7 @@ declare enum ScalarType {
|
|
|
17307
17332
|
/** Minimum value. */
|
|
17308
17333
|
MIN = "MIN",
|
|
17309
17334
|
/** Maximum value. */
|
|
17310
|
-
MAX = "MAX"
|
|
17311
|
-
/** Sum of values. */
|
|
17312
|
-
SUM = "SUM",
|
|
17313
|
-
/** Average of values. */
|
|
17314
|
-
AVG = "AVG"
|
|
17335
|
+
MAX = "MAX"
|
|
17315
17336
|
}
|
|
17316
17337
|
interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
17317
17338
|
/**
|
|
@@ -18048,6 +18069,10 @@ interface Address$2 extends AddressStreetOneOf$2 {
|
|
|
18048
18069
|
formatted?: string | null;
|
|
18049
18070
|
/** coordinates of the physical address */
|
|
18050
18071
|
location?: AddressLocation$2;
|
|
18072
|
+
/** country full-name */
|
|
18073
|
+
countryFullname?: string | null;
|
|
18074
|
+
/** multi-level subdivisions from top to bottom */
|
|
18075
|
+
subdivisions?: Subdivision$2[];
|
|
18051
18076
|
}
|
|
18052
18077
|
/** @oneof */
|
|
18053
18078
|
interface AddressStreetOneOf$2 {
|
|
@@ -18758,11 +18783,11 @@ interface Tag$2 {
|
|
|
18758
18783
|
*/
|
|
18759
18784
|
type?: string;
|
|
18760
18785
|
/**
|
|
18761
|
-
* A `{
|
|
18762
|
-
* For example: `{
|
|
18786
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
18787
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
18763
18788
|
*/
|
|
18764
18789
|
props?: Record<string, any> | null;
|
|
18765
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
18790
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
18766
18791
|
meta?: Record<string, any> | null;
|
|
18767
18792
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
18768
18793
|
children?: string;
|
|
@@ -18982,8 +19007,12 @@ interface CommonStreetAddressNonNullableFields$2 {
|
|
|
18982
19007
|
name: string;
|
|
18983
19008
|
apt: string;
|
|
18984
19009
|
}
|
|
19010
|
+
interface CommonSubdivisionNonNullableFields$2 {
|
|
19011
|
+
name: string;
|
|
19012
|
+
}
|
|
18985
19013
|
interface CommonAddressNonNullableFields$2 {
|
|
18986
19014
|
streetAddress?: CommonStreetAddressNonNullableFields$2;
|
|
19015
|
+
subdivisions: CommonSubdivisionNonNullableFields$2[];
|
|
18987
19016
|
}
|
|
18988
19017
|
interface FormattedAddressNonNullableFields {
|
|
18989
19018
|
formatted: string;
|
|
@@ -20171,8 +20200,8 @@ interface TaxSettings {
|
|
|
20171
20200
|
/**
|
|
20172
20201
|
* Tax application settings:
|
|
20173
20202
|
*
|
|
20174
|
-
* - `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.
|
|
20175
|
-
* - `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.
|
|
20203
|
+
* - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket service fee of $0.25 is deducted from the price and you'll get $9.75.
|
|
20204
|
+
* - `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 ticket service fee of $0.25 and pays $10.25 in total.
|
|
20176
20205
|
*/
|
|
20177
20206
|
type?: TaxType$1;
|
|
20178
20207
|
/** Tax name. */
|
|
@@ -20186,9 +20215,9 @@ interface TaxSettings {
|
|
|
20186
20215
|
declare enum TaxType$1 {
|
|
20187
20216
|
/** Unknown tax type. */
|
|
20188
20217
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
20189
|
-
/** 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. */
|
|
20218
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket ticket service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
20190
20219
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
20191
|
-
/** Show the fee in 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. */
|
|
20220
|
+
/** Show the fee in 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 ticket ticket service fee of $0.25 and pays $10.25 in total. */
|
|
20192
20221
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
20193
20222
|
}
|
|
20194
20223
|
interface ExternalRegistration {
|
|
@@ -20627,11 +20656,11 @@ interface Tag$1 {
|
|
|
20627
20656
|
*/
|
|
20628
20657
|
type?: string;
|
|
20629
20658
|
/**
|
|
20630
|
-
* A `{
|
|
20631
|
-
* For example: `{
|
|
20659
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
20660
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
20632
20661
|
*/
|
|
20633
20662
|
props?: Record<string, any> | null;
|
|
20634
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
20663
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
20635
20664
|
meta?: Record<string, any> | null;
|
|
20636
20665
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
20637
20666
|
children?: string;
|
|
@@ -20823,8 +20852,7 @@ declare enum RequestedFields {
|
|
|
20823
20852
|
/** Returns `agendaSettings`. */
|
|
20824
20853
|
AGENDA = "AGENDA",
|
|
20825
20854
|
/** Returns `categories`. */
|
|
20826
|
-
CATEGORIES = "CATEGORIES"
|
|
20827
|
-
CUSTOMIZABLE_TICKETS = "CUSTOMIZABLE_TICKETS"
|
|
20855
|
+
CATEGORIES = "CATEGORIES"
|
|
20828
20856
|
}
|
|
20829
20857
|
interface CreateEventResponse {
|
|
20830
20858
|
/** Created event. */
|
|
@@ -21242,6 +21270,10 @@ interface Address$1 extends AddressStreetOneOf$1 {
|
|
|
21242
21270
|
formatted?: string | null;
|
|
21243
21271
|
/** coordinates of the physical address */
|
|
21244
21272
|
location?: AddressLocation$1;
|
|
21273
|
+
/** country full-name */
|
|
21274
|
+
countryFullname?: string | null;
|
|
21275
|
+
/** multi-level subdivisions from top to bottom */
|
|
21276
|
+
subdivisions?: Subdivision$1[];
|
|
21245
21277
|
}
|
|
21246
21278
|
/** @oneof */
|
|
21247
21279
|
interface AddressStreetOneOf$1 {
|
|
@@ -21993,8 +22025,12 @@ interface CommonStreetAddressNonNullableFields$1 {
|
|
|
21993
22025
|
name: string;
|
|
21994
22026
|
apt: string;
|
|
21995
22027
|
}
|
|
22028
|
+
interface CommonSubdivisionNonNullableFields$1 {
|
|
22029
|
+
name: string;
|
|
22030
|
+
}
|
|
21996
22031
|
interface CommonAddressNonNullableFields$1 {
|
|
21997
22032
|
streetAddress?: CommonStreetAddressNonNullableFields$1;
|
|
22033
|
+
subdivisions: CommonSubdivisionNonNullableFields$1[];
|
|
21998
22034
|
}
|
|
21999
22035
|
interface LocationNonNullableFields$1 {
|
|
22000
22036
|
type: LocationType$1;
|
|
@@ -24022,6 +24058,10 @@ interface Address extends AddressStreetOneOf {
|
|
|
24022
24058
|
formatted?: string | null;
|
|
24023
24059
|
/** coordinates of the physical address */
|
|
24024
24060
|
location?: AddressLocation;
|
|
24061
|
+
/** country full-name */
|
|
24062
|
+
countryFullname?: string | null;
|
|
24063
|
+
/** multi-level subdivisions from top to bottom */
|
|
24064
|
+
subdivisions?: Subdivision[];
|
|
24025
24065
|
}
|
|
24026
24066
|
/** @oneof */
|
|
24027
24067
|
interface AddressStreetOneOf {
|
|
@@ -24753,11 +24793,11 @@ interface Tag {
|
|
|
24753
24793
|
*/
|
|
24754
24794
|
type?: string;
|
|
24755
24795
|
/**
|
|
24756
|
-
* A `{
|
|
24757
|
-
* For example: `{
|
|
24796
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
24797
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
24758
24798
|
*/
|
|
24759
24799
|
props?: Record<string, any> | null;
|
|
24760
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
24800
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
24761
24801
|
meta?: Record<string, any> | null;
|
|
24762
24802
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
24763
24803
|
children?: string;
|
|
@@ -25092,7 +25132,9 @@ declare enum Namespace {
|
|
|
25092
25132
|
*/
|
|
25093
25133
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
25094
25134
|
/** Codux Headless Sites */
|
|
25095
|
-
CODUX = "CODUX"
|
|
25135
|
+
CODUX = "CODUX",
|
|
25136
|
+
/** Bobb - AI Design Creator. */
|
|
25137
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
25096
25138
|
}
|
|
25097
25139
|
/** Site transferred to another user. */
|
|
25098
25140
|
interface SiteTransferred {
|
|
@@ -25223,8 +25265,12 @@ interface CommonStreetAddressNonNullableFields {
|
|
|
25223
25265
|
name: string;
|
|
25224
25266
|
apt: string;
|
|
25225
25267
|
}
|
|
25268
|
+
interface CommonSubdivisionNonNullableFields {
|
|
25269
|
+
name: string;
|
|
25270
|
+
}
|
|
25226
25271
|
interface CommonAddressNonNullableFields {
|
|
25227
25272
|
streetAddress?: CommonStreetAddressNonNullableFields;
|
|
25273
|
+
subdivisions: CommonSubdivisionNonNullableFields[];
|
|
25228
25274
|
}
|
|
25229
25275
|
interface LocationNonNullableFields {
|
|
25230
25276
|
type: LocationType;
|
|
@@ -223,14 +223,14 @@ interface StreetAddressNonNullableFields$7 {
|
|
|
223
223
|
name: string;
|
|
224
224
|
apt: string;
|
|
225
225
|
}
|
|
226
|
-
interface SubdivisionNonNullableFields$
|
|
226
|
+
interface SubdivisionNonNullableFields$7 {
|
|
227
227
|
code: string;
|
|
228
228
|
name: string;
|
|
229
229
|
type: SubdivisionType$4;
|
|
230
230
|
}
|
|
231
231
|
interface AddressNonNullableFields$7 {
|
|
232
232
|
streetAddress?: StreetAddressNonNullableFields$7;
|
|
233
|
-
subdivisions: SubdivisionNonNullableFields$
|
|
233
|
+
subdivisions: SubdivisionNonNullableFields$7[];
|
|
234
234
|
}
|
|
235
235
|
interface FormattedAddressNonNullableFields$9 {
|
|
236
236
|
formatted: string;
|
|
@@ -470,8 +470,12 @@ interface StreetAddressNonNullableFields$6 {
|
|
|
470
470
|
name: string;
|
|
471
471
|
apt: string;
|
|
472
472
|
}
|
|
473
|
+
interface SubdivisionNonNullableFields$6 {
|
|
474
|
+
name: string;
|
|
475
|
+
}
|
|
473
476
|
interface AddressNonNullableFields$6 {
|
|
474
477
|
streetAddress?: StreetAddressNonNullableFields$6;
|
|
478
|
+
subdivisions: SubdivisionNonNullableFields$6[];
|
|
475
479
|
}
|
|
476
480
|
interface FormattedAddressNonNullableFields$8 {
|
|
477
481
|
formatted: string;
|
|
@@ -582,9 +586,7 @@ declare enum EmailNotificationType$1 {
|
|
|
582
586
|
/** Triggered when resending ticket to ticket holder. */
|
|
583
587
|
EMAIL_TICKET_CONFIRMATION = "EMAIL_TICKET_CONFIRMATION",
|
|
584
588
|
/** Triggered when sending invoice. Currently only `enabled` flag update is supported. */
|
|
585
|
-
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
586
|
-
/** Triggered when order confirmation sending is delayed. Tickets are accessible via link. */
|
|
587
|
-
EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK = "EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK"
|
|
589
|
+
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
588
590
|
}
|
|
589
591
|
interface EmailTemplate$1 {
|
|
590
592
|
/** Email subject. */
|
|
@@ -797,9 +799,7 @@ declare enum EmailNotificationType {
|
|
|
797
799
|
/** Triggered when resending ticket to ticket holder. */
|
|
798
800
|
EMAIL_TICKET_CONFIRMATION = "EMAIL_TICKET_CONFIRMATION",
|
|
799
801
|
/** Triggered when sending invoice. Currently only `enabled` flag update is supported. */
|
|
800
|
-
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
801
|
-
/** Triggered when order confirmation sending is delayed. Tickets are accessible via link. */
|
|
802
|
-
EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK = "EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK"
|
|
802
|
+
EMAIL_INVOICE = "EMAIL_INVOICE"
|
|
803
803
|
}
|
|
804
804
|
interface EmailTemplate {
|
|
805
805
|
/** Email subject. */
|
|
@@ -2042,11 +2042,6 @@ interface GetStaffMemberRequest$1 {
|
|
|
2042
2042
|
fieldsets?: Fieldset$1[];
|
|
2043
2043
|
}
|
|
2044
2044
|
declare enum Fieldset$1 {
|
|
2045
|
-
/**
|
|
2046
|
-
* Includes join link.
|
|
2047
|
-
* Deprecated, use LOGIN_LINK
|
|
2048
|
-
*/
|
|
2049
|
-
JOIN_LINK = "JOIN_LINK",
|
|
2050
2045
|
/** Includes login link. */
|
|
2051
2046
|
LOGIN_LINK = "LOGIN_LINK"
|
|
2052
2047
|
}
|
|
@@ -2344,11 +2339,6 @@ interface GetStaffMemberRequest {
|
|
|
2344
2339
|
fieldsets?: Fieldset[];
|
|
2345
2340
|
}
|
|
2346
2341
|
declare enum Fieldset {
|
|
2347
|
-
/**
|
|
2348
|
-
* Includes join link.
|
|
2349
|
-
* Deprecated, use LOGIN_LINK
|
|
2350
|
-
*/
|
|
2351
|
-
JOIN_LINK = "JOIN_LINK",
|
|
2352
2342
|
/** Includes login link. */
|
|
2353
2343
|
LOGIN_LINK = "LOGIN_LINK"
|
|
2354
2344
|
}
|
|
@@ -5522,14 +5512,14 @@ interface StreetAddressNonNullableFields$5 {
|
|
|
5522
5512
|
name: string;
|
|
5523
5513
|
apt: string;
|
|
5524
5514
|
}
|
|
5525
|
-
interface SubdivisionNonNullableFields$
|
|
5515
|
+
interface SubdivisionNonNullableFields$5 {
|
|
5526
5516
|
code: string;
|
|
5527
5517
|
name: string;
|
|
5528
5518
|
type: SubdivisionType$3;
|
|
5529
5519
|
}
|
|
5530
5520
|
interface AddressNonNullableFields$5 {
|
|
5531
5521
|
streetAddress?: StreetAddressNonNullableFields$5;
|
|
5532
|
-
subdivisions: SubdivisionNonNullableFields$
|
|
5522
|
+
subdivisions: SubdivisionNonNullableFields$5[];
|
|
5533
5523
|
}
|
|
5534
5524
|
interface FormattedAddressNonNullableFields$7 {
|
|
5535
5525
|
formatted: string;
|
|
@@ -6864,8 +6854,12 @@ interface StreetAddressNonNullableFields$4 {
|
|
|
6864
6854
|
name: string;
|
|
6865
6855
|
apt: string;
|
|
6866
6856
|
}
|
|
6857
|
+
interface SubdivisionNonNullableFields$4 {
|
|
6858
|
+
name: string;
|
|
6859
|
+
}
|
|
6867
6860
|
interface AddressNonNullableFields$4 {
|
|
6868
6861
|
streetAddress?: StreetAddressNonNullableFields$4;
|
|
6862
|
+
subdivisions: SubdivisionNonNullableFields$4[];
|
|
6869
6863
|
}
|
|
6870
6864
|
interface FormattedAddressNonNullableFields$6 {
|
|
6871
6865
|
formatted: string;
|
|
@@ -10905,14 +10899,14 @@ interface StreetAddressNonNullableFields$3 {
|
|
|
10905
10899
|
name: string;
|
|
10906
10900
|
apt: string;
|
|
10907
10901
|
}
|
|
10908
|
-
interface SubdivisionNonNullableFields$
|
|
10902
|
+
interface SubdivisionNonNullableFields$3 {
|
|
10909
10903
|
code: string;
|
|
10910
10904
|
name: string;
|
|
10911
10905
|
type: SubdivisionType$2;
|
|
10912
10906
|
}
|
|
10913
10907
|
interface AddressNonNullableFields$3 {
|
|
10914
10908
|
streetAddress?: StreetAddressNonNullableFields$3;
|
|
10915
|
-
subdivisions: SubdivisionNonNullableFields$
|
|
10909
|
+
subdivisions: SubdivisionNonNullableFields$3[];
|
|
10916
10910
|
}
|
|
10917
10911
|
interface FormattedAddressNonNullableFields$5 {
|
|
10918
10912
|
formatted: string;
|
|
@@ -11321,8 +11315,12 @@ interface StreetAddressNonNullableFields$2 {
|
|
|
11321
11315
|
name: string;
|
|
11322
11316
|
apt: string;
|
|
11323
11317
|
}
|
|
11318
|
+
interface SubdivisionNonNullableFields$2 {
|
|
11319
|
+
name: string;
|
|
11320
|
+
}
|
|
11324
11321
|
interface AddressNonNullableFields$2 {
|
|
11325
11322
|
streetAddress?: StreetAddressNonNullableFields$2;
|
|
11323
|
+
subdivisions: SubdivisionNonNullableFields$2[];
|
|
11326
11324
|
}
|
|
11327
11325
|
interface FormattedAddressNonNullableFields$4 {
|
|
11328
11326
|
formatted: string;
|
|
@@ -11730,14 +11728,14 @@ interface StreetAddressNonNullableFields$1 {
|
|
|
11730
11728
|
name: string;
|
|
11731
11729
|
apt: string;
|
|
11732
11730
|
}
|
|
11733
|
-
interface SubdivisionNonNullableFields {
|
|
11731
|
+
interface SubdivisionNonNullableFields$1 {
|
|
11734
11732
|
code: string;
|
|
11735
11733
|
name: string;
|
|
11736
11734
|
type: SubdivisionType$1;
|
|
11737
11735
|
}
|
|
11738
11736
|
interface AddressNonNullableFields$1 {
|
|
11739
11737
|
streetAddress?: StreetAddressNonNullableFields$1;
|
|
11740
|
-
subdivisions: SubdivisionNonNullableFields[];
|
|
11738
|
+
subdivisions: SubdivisionNonNullableFields$1[];
|
|
11741
11739
|
}
|
|
11742
11740
|
interface FormattedAddressNonNullableFields$3 {
|
|
11743
11741
|
formatted: string;
|
|
@@ -12121,8 +12119,12 @@ interface StreetAddressNonNullableFields {
|
|
|
12121
12119
|
name: string;
|
|
12122
12120
|
apt: string;
|
|
12123
12121
|
}
|
|
12122
|
+
interface SubdivisionNonNullableFields {
|
|
12123
|
+
name: string;
|
|
12124
|
+
}
|
|
12124
12125
|
interface AddressNonNullableFields {
|
|
12125
12126
|
streetAddress?: StreetAddressNonNullableFields;
|
|
12127
|
+
subdivisions: SubdivisionNonNullableFields[];
|
|
12126
12128
|
}
|
|
12127
12129
|
interface FormattedAddressNonNullableFields$2 {
|
|
12128
12130
|
formatted: string;
|
|
@@ -13934,11 +13936,7 @@ declare enum ScalarType$1 {
|
|
|
13934
13936
|
/** Minimum value. */
|
|
13935
13937
|
MIN = "MIN",
|
|
13936
13938
|
/** Maximum value. */
|
|
13937
|
-
MAX = "MAX"
|
|
13938
|
-
/** Sum of values. */
|
|
13939
|
-
SUM = "SUM",
|
|
13940
|
-
/** Average of values. */
|
|
13941
|
-
AVG = "AVG"
|
|
13939
|
+
MAX = "MAX"
|
|
13942
13940
|
}
|
|
13943
13941
|
interface ValueAggregation$1 extends ValueAggregationOptionsOneOf$1 {
|
|
13944
13942
|
/**
|
|
@@ -14513,14 +14511,14 @@ interface CommonStreetAddressNonNullableFields$5 {
|
|
|
14513
14511
|
name: string;
|
|
14514
14512
|
apt: string;
|
|
14515
14513
|
}
|
|
14516
|
-
interface CommonSubdivisionNonNullableFields$
|
|
14514
|
+
interface CommonSubdivisionNonNullableFields$5 {
|
|
14517
14515
|
code: string;
|
|
14518
14516
|
name: string;
|
|
14519
14517
|
type: SubdivisionType;
|
|
14520
14518
|
}
|
|
14521
14519
|
interface CommonAddressNonNullableFields$5 {
|
|
14522
14520
|
streetAddress?: CommonStreetAddressNonNullableFields$5;
|
|
14523
|
-
subdivisions: CommonSubdivisionNonNullableFields$
|
|
14521
|
+
subdivisions: CommonSubdivisionNonNullableFields$5[];
|
|
14524
14522
|
}
|
|
14525
14523
|
interface FormattedAddressNonNullableFields$1 {
|
|
14526
14524
|
formatted: string;
|
|
@@ -14936,11 +14934,7 @@ declare enum ScalarType {
|
|
|
14936
14934
|
/** Minimum value. */
|
|
14937
14935
|
MIN = "MIN",
|
|
14938
14936
|
/** Maximum value. */
|
|
14939
|
-
MAX = "MAX"
|
|
14940
|
-
/** Sum of values. */
|
|
14941
|
-
SUM = "SUM",
|
|
14942
|
-
/** Average of values. */
|
|
14943
|
-
AVG = "AVG"
|
|
14937
|
+
MAX = "MAX"
|
|
14944
14938
|
}
|
|
14945
14939
|
interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
14946
14940
|
/**
|
|
@@ -15515,8 +15509,12 @@ interface CommonStreetAddressNonNullableFields$4 {
|
|
|
15515
15509
|
name: string;
|
|
15516
15510
|
apt: string;
|
|
15517
15511
|
}
|
|
15512
|
+
interface CommonSubdivisionNonNullableFields$4 {
|
|
15513
|
+
name: string;
|
|
15514
|
+
}
|
|
15518
15515
|
interface CommonAddressNonNullableFields$4 {
|
|
15519
15516
|
streetAddress?: CommonStreetAddressNonNullableFields$4;
|
|
15517
|
+
subdivisions: CommonSubdivisionNonNullableFields$4[];
|
|
15520
15518
|
}
|
|
15521
15519
|
interface FormattedAddressNonNullableFields {
|
|
15522
15520
|
formatted: string;
|
|
@@ -16113,9 +16111,9 @@ interface TaxSettings$1 {
|
|
|
16113
16111
|
declare enum TaxType$1 {
|
|
16114
16112
|
/** Unknown tax type. */
|
|
16115
16113
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
16116
|
-
/** 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. */
|
|
16114
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket ticket service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
16117
16115
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
16118
|
-
/** Show the fee in 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. */
|
|
16116
|
+
/** Show the fee in 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 ticket ticket service fee of $0.25 and pays $10.25 in total. */
|
|
16119
16117
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
16120
16118
|
}
|
|
16121
16119
|
interface ExternalRegistration$1 {
|
|
@@ -16565,11 +16563,11 @@ interface Tag$1 {
|
|
|
16565
16563
|
*/
|
|
16566
16564
|
type?: string;
|
|
16567
16565
|
/**
|
|
16568
|
-
* A `{
|
|
16569
|
-
* For example: `{
|
|
16566
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
16567
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
16570
16568
|
*/
|
|
16571
16569
|
props?: Record<string, any> | null;
|
|
16572
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
16570
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
16573
16571
|
meta?: Record<string, any> | null;
|
|
16574
16572
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
16575
16573
|
children?: string;
|
|
@@ -16642,8 +16640,7 @@ declare enum RequestedFields$1 {
|
|
|
16642
16640
|
/** Returns `agendaSettings`. */
|
|
16643
16641
|
AGENDA = "AGENDA",
|
|
16644
16642
|
/** Returns `categories`. */
|
|
16645
|
-
CATEGORIES = "CATEGORIES"
|
|
16646
|
-
CUSTOMIZABLE_TICKETS = "CUSTOMIZABLE_TICKETS"
|
|
16643
|
+
CATEGORIES = "CATEGORIES"
|
|
16647
16644
|
}
|
|
16648
16645
|
interface CreateEventResponse$1 {
|
|
16649
16646
|
/** Created event. */
|
|
@@ -16835,14 +16832,14 @@ interface CommonStreetAddressNonNullableFields$3 {
|
|
|
16835
16832
|
name: string;
|
|
16836
16833
|
apt: string;
|
|
16837
16834
|
}
|
|
16838
|
-
interface CommonSubdivisionNonNullableFields$
|
|
16835
|
+
interface CommonSubdivisionNonNullableFields$3 {
|
|
16839
16836
|
code: string;
|
|
16840
16837
|
name: string;
|
|
16841
16838
|
type: SubdivisionSubdivisionType$1;
|
|
16842
16839
|
}
|
|
16843
16840
|
interface CommonAddressNonNullableFields$3 {
|
|
16844
16841
|
streetAddress?: CommonStreetAddressNonNullableFields$3;
|
|
16845
|
-
subdivisions: CommonSubdivisionNonNullableFields$
|
|
16842
|
+
subdivisions: CommonSubdivisionNonNullableFields$3[];
|
|
16846
16843
|
}
|
|
16847
16844
|
interface LocationNonNullableFields$3 {
|
|
16848
16845
|
type: LocationType$3;
|
|
@@ -17531,8 +17528,8 @@ interface TaxSettings {
|
|
|
17531
17528
|
/**
|
|
17532
17529
|
* Tax application settings:
|
|
17533
17530
|
*
|
|
17534
|
-
* - `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.
|
|
17535
|
-
* - `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.
|
|
17531
|
+
* - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket service fee of $0.25 is deducted from the price and you'll get $9.75.
|
|
17532
|
+
* - `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 ticket service fee of $0.25 and pays $10.25 in total.
|
|
17536
17533
|
*/
|
|
17537
17534
|
type?: TaxType;
|
|
17538
17535
|
/** Tax name. */
|
|
@@ -17546,9 +17543,9 @@ interface TaxSettings {
|
|
|
17546
17543
|
declare enum TaxType {
|
|
17547
17544
|
/** Unknown tax type. */
|
|
17548
17545
|
UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
|
|
17549
|
-
/** 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. */
|
|
17546
|
+
/** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket ticket service fee of $0.25 is deducted from the price and you'll get $9.75. */
|
|
17550
17547
|
INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
|
|
17551
|
-
/** Show the fee in 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. */
|
|
17548
|
+
/** Show the fee in 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 ticket ticket service fee of $0.25 and pays $10.25 in total. */
|
|
17552
17549
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
17553
17550
|
}
|
|
17554
17551
|
interface ExternalRegistration {
|
|
@@ -17983,11 +17980,11 @@ interface Tag {
|
|
|
17983
17980
|
*/
|
|
17984
17981
|
type?: string;
|
|
17985
17982
|
/**
|
|
17986
|
-
* A `{
|
|
17987
|
-
* For example: `{
|
|
17983
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
17984
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
17988
17985
|
*/
|
|
17989
17986
|
props?: Record<string, any> | null;
|
|
17990
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
17987
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
17991
17988
|
meta?: Record<string, any> | null;
|
|
17992
17989
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
17993
17990
|
children?: string;
|
|
@@ -18060,8 +18057,7 @@ declare enum RequestedFields {
|
|
|
18060
18057
|
/** Returns `agendaSettings`. */
|
|
18061
18058
|
AGENDA = "AGENDA",
|
|
18062
18059
|
/** Returns `categories`. */
|
|
18063
|
-
CATEGORIES = "CATEGORIES"
|
|
18064
|
-
CUSTOMIZABLE_TICKETS = "CUSTOMIZABLE_TICKETS"
|
|
18060
|
+
CATEGORIES = "CATEGORIES"
|
|
18065
18061
|
}
|
|
18066
18062
|
interface CreateEventResponse {
|
|
18067
18063
|
/** Created event. */
|
|
@@ -18253,8 +18249,12 @@ interface CommonStreetAddressNonNullableFields$2 {
|
|
|
18253
18249
|
name: string;
|
|
18254
18250
|
apt: string;
|
|
18255
18251
|
}
|
|
18252
|
+
interface CommonSubdivisionNonNullableFields$2 {
|
|
18253
|
+
name: string;
|
|
18254
|
+
}
|
|
18256
18255
|
interface CommonAddressNonNullableFields$2 {
|
|
18257
18256
|
streetAddress?: CommonStreetAddressNonNullableFields$2;
|
|
18257
|
+
subdivisions: CommonSubdivisionNonNullableFields$2[];
|
|
18258
18258
|
}
|
|
18259
18259
|
interface LocationNonNullableFields$2 {
|
|
18260
18260
|
type: LocationType$2;
|
|
@@ -19169,14 +19169,14 @@ interface CommonStreetAddressNonNullableFields$1 {
|
|
|
19169
19169
|
name: string;
|
|
19170
19170
|
apt: string;
|
|
19171
19171
|
}
|
|
19172
|
-
interface CommonSubdivisionNonNullableFields {
|
|
19172
|
+
interface CommonSubdivisionNonNullableFields$1 {
|
|
19173
19173
|
code: string;
|
|
19174
19174
|
name: string;
|
|
19175
19175
|
type: SubdivisionSubdivisionType;
|
|
19176
19176
|
}
|
|
19177
19177
|
interface CommonAddressNonNullableFields$1 {
|
|
19178
19178
|
streetAddress?: CommonStreetAddressNonNullableFields$1;
|
|
19179
|
-
subdivisions: CommonSubdivisionNonNullableFields[];
|
|
19179
|
+
subdivisions: CommonSubdivisionNonNullableFields$1[];
|
|
19180
19180
|
}
|
|
19181
19181
|
interface LocationNonNullableFields$1 {
|
|
19182
19182
|
type: LocationType$1;
|
|
@@ -19816,8 +19816,12 @@ interface CommonStreetAddressNonNullableFields {
|
|
|
19816
19816
|
name: string;
|
|
19817
19817
|
apt: string;
|
|
19818
19818
|
}
|
|
19819
|
+
interface CommonSubdivisionNonNullableFields {
|
|
19820
|
+
name: string;
|
|
19821
|
+
}
|
|
19819
19822
|
interface CommonAddressNonNullableFields {
|
|
19820
19823
|
streetAddress?: CommonStreetAddressNonNullableFields;
|
|
19824
|
+
subdivisions: CommonSubdivisionNonNullableFields[];
|
|
19821
19825
|
}
|
|
19822
19826
|
interface LocationNonNullableFields {
|
|
19823
19827
|
type: LocationType;
|