@wix/events 1.0.265 → 1.0.267
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 +12 -12
- package/type-bundles/context.bundle.d.ts +99 -63
- package/type-bundles/index.bundle.d.ts +99 -63
- package/type-bundles/meta.bundle.d.ts +51 -55
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/events",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.267",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -19,20 +19,20 @@
|
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@wix/events_categories": "1.0.40",
|
|
22
|
-
"@wix/events_forms": "1.0.
|
|
23
|
-
"@wix/events_guests": "1.0.
|
|
24
|
-
"@wix/events_notifications": "1.0.
|
|
25
|
-
"@wix/events_orders": "1.0.
|
|
22
|
+
"@wix/events_forms": "1.0.42",
|
|
23
|
+
"@wix/events_guests": "1.0.54",
|
|
24
|
+
"@wix/events_notifications": "1.0.27",
|
|
25
|
+
"@wix/events_orders": "1.0.42",
|
|
26
26
|
"@wix/events_policies": "1.0.40",
|
|
27
27
|
"@wix/events_ricos": "1.0.3",
|
|
28
28
|
"@wix/events_rsvp": "1.0.40",
|
|
29
|
-
"@wix/events_schedule": "1.0.
|
|
30
|
-
"@wix/events_schedule-bookmarks": "1.0.
|
|
29
|
+
"@wix/events_schedule": "1.0.35",
|
|
30
|
+
"@wix/events_schedule-bookmarks": "1.0.31",
|
|
31
31
|
"@wix/events_staff-members": "1.0.12",
|
|
32
|
-
"@wix/events_ticket-definitions": "1.0.
|
|
33
|
-
"@wix/events_ticket-definitions-v-2": "1.0.
|
|
34
|
-
"@wix/events_tickets": "1.0.
|
|
35
|
-
"@wix/events_wix-events-v-2": "1.0.
|
|
32
|
+
"@wix/events_ticket-definitions": "1.0.45",
|
|
33
|
+
"@wix/events_ticket-definitions-v-2": "1.0.52",
|
|
34
|
+
"@wix/events_tickets": "1.0.39",
|
|
35
|
+
"@wix/events_wix-events-v-2": "1.0.51"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"glob": "^10.4.1",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"fqdn": ""
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
|
-
"falconPackageHash": "
|
|
60
|
+
"falconPackageHash": "2994b040675d35ea5a5009fd0e05c3f6caa6e2bdbbe25df5cb56dd35"
|
|
61
61
|
}
|
|
@@ -728,9 +728,9 @@ interface Money$7 {
|
|
|
728
728
|
* @deprecated
|
|
729
729
|
*/
|
|
730
730
|
amount?: string;
|
|
731
|
-
/** ISO 4217 format of the currency
|
|
731
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
732
732
|
currency?: string;
|
|
733
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
733
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
734
734
|
value?: string | null;
|
|
735
735
|
}
|
|
736
736
|
interface Invoice$2 {
|
|
@@ -865,11 +865,11 @@ interface Tax$2 {
|
|
|
865
865
|
amount?: Money$7;
|
|
866
866
|
}
|
|
867
867
|
declare enum TaxType$5 {
|
|
868
|
-
/** Tax is included in the ticket price */
|
|
868
|
+
/** Tax is included in the ticket price. */
|
|
869
869
|
INCLUDED = "INCLUDED",
|
|
870
|
-
/** Tax is added to the order at the checkout */
|
|
870
|
+
/** Tax is added to the order at the checkout. */
|
|
871
871
|
ADDED = "ADDED",
|
|
872
|
-
/** Tax is added to the final total at the checkout */
|
|
872
|
+
/** Tax is added to the final total at the checkout. */
|
|
873
873
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
874
874
|
}
|
|
875
875
|
interface Fee$2 {
|
|
@@ -890,11 +890,11 @@ declare enum FeeName$2 {
|
|
|
890
890
|
WIX_FEE = "WIX_FEE"
|
|
891
891
|
}
|
|
892
892
|
declare enum FeeType$3 {
|
|
893
|
-
/** Fee is added to the ticket price at checkout */
|
|
893
|
+
/** Fee is added to the ticket price at checkout. */
|
|
894
894
|
FEE_ADDED = "FEE_ADDED",
|
|
895
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
895
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
896
896
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
897
|
-
/** Fee is added to the ticket price at checkout */
|
|
897
|
+
/** Fee is added to the ticket price at checkout. */
|
|
898
898
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
899
899
|
}
|
|
900
900
|
interface OrderUpdated$2 {
|
|
@@ -2595,11 +2595,11 @@ interface TaxConfig$3 {
|
|
|
2595
2595
|
appliesToDonations?: boolean | null;
|
|
2596
2596
|
}
|
|
2597
2597
|
declare enum TaxType$4 {
|
|
2598
|
-
/** Tax is included in the ticket price */
|
|
2598
|
+
/** Tax is included in the ticket price. */
|
|
2599
2599
|
INCLUDED = "INCLUDED",
|
|
2600
|
-
/** Tax is added to the order at the checkout */
|
|
2600
|
+
/** Tax is added to the order at the checkout. */
|
|
2601
2601
|
ADDED = "ADDED",
|
|
2602
|
-
/** Tax is added to the final total at the checkout */
|
|
2602
|
+
/** Tax is added to the final total at the checkout. */
|
|
2603
2603
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
2604
2604
|
}
|
|
2605
2605
|
interface Money$6 {
|
|
@@ -2608,9 +2608,9 @@ interface Money$6 {
|
|
|
2608
2608
|
* @deprecated
|
|
2609
2609
|
*/
|
|
2610
2610
|
amount?: string;
|
|
2611
|
-
/** ISO 4217 format of the currency
|
|
2611
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
2612
2612
|
currency?: string;
|
|
2613
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
2613
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
2614
2614
|
value?: string | null;
|
|
2615
2615
|
}
|
|
2616
2616
|
interface ExternalEvent$3 {
|
|
@@ -3340,11 +3340,11 @@ declare enum FeeName$1 {
|
|
|
3340
3340
|
WIX_FEE = "WIX_FEE"
|
|
3341
3341
|
}
|
|
3342
3342
|
declare enum FeeType$2 {
|
|
3343
|
-
/** Fee is added to the ticket price at checkout */
|
|
3343
|
+
/** Fee is added to the ticket price at checkout. */
|
|
3344
3344
|
FEE_ADDED = "FEE_ADDED",
|
|
3345
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
3345
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
3346
3346
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
3347
|
-
/** Fee is added to the ticket price at checkout */
|
|
3347
|
+
/** Fee is added to the ticket price at checkout. */
|
|
3348
3348
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
3349
3349
|
}
|
|
3350
3350
|
/** Produced if a buyer email was added to the existing order */
|
|
@@ -3427,11 +3427,11 @@ interface EventReminder$1 {
|
|
|
3427
3427
|
* For example, 25.5 hours duration is represented as `{ days: 1, hours: 1, minutes: 30 }`.
|
|
3428
3428
|
*/
|
|
3429
3429
|
interface TimeDuration$1 {
|
|
3430
|
-
/** Number of days */
|
|
3430
|
+
/** Number of days. */
|
|
3431
3431
|
days?: number;
|
|
3432
|
-
/** Number of hours */
|
|
3432
|
+
/** Number of hours. */
|
|
3433
3433
|
hours?: number;
|
|
3434
|
-
/** Number of minutes */
|
|
3434
|
+
/** Number of minutes. */
|
|
3435
3435
|
minutes?: number;
|
|
3436
3436
|
}
|
|
3437
3437
|
interface OrderPaid$1 {
|
|
@@ -4107,7 +4107,7 @@ interface ListScheduleItemsResponse$1 {
|
|
|
4107
4107
|
pagingMetadata?: PagingMetadataV2$7;
|
|
4108
4108
|
}
|
|
4109
4109
|
interface FacetCounts$7 {
|
|
4110
|
-
/** Facet counts aggregated per value */
|
|
4110
|
+
/** Facet counts aggregated per value. */
|
|
4111
4111
|
counts?: Record<string, number>;
|
|
4112
4112
|
}
|
|
4113
4113
|
interface PagingMetadataV2$7 {
|
|
@@ -4517,7 +4517,7 @@ interface ListScheduleItemsResponse {
|
|
|
4517
4517
|
pagingMetadata?: PagingMetadataV2$6;
|
|
4518
4518
|
}
|
|
4519
4519
|
interface FacetCounts$6 {
|
|
4520
|
-
/** Facet counts aggregated per value */
|
|
4520
|
+
/** Facet counts aggregated per value. */
|
|
4521
4521
|
counts?: Record<string, number>;
|
|
4522
4522
|
}
|
|
4523
4523
|
interface PagingMetadataV2$6 {
|
|
@@ -7328,11 +7328,11 @@ interface TaxConfig$2 {
|
|
|
7328
7328
|
appliesToDonations?: boolean | null;
|
|
7329
7329
|
}
|
|
7330
7330
|
declare enum TaxType$3 {
|
|
7331
|
-
/** Tax is included in the ticket price */
|
|
7331
|
+
/** Tax is included in the ticket price. */
|
|
7332
7332
|
INCLUDED = "INCLUDED",
|
|
7333
|
-
/** Tax is added to the order at the checkout */
|
|
7333
|
+
/** Tax is added to the order at the checkout. */
|
|
7334
7334
|
ADDED = "ADDED",
|
|
7335
|
-
/** Tax is added to the final total at the checkout */
|
|
7335
|
+
/** Tax is added to the final total at the checkout. */
|
|
7336
7336
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
7337
7337
|
}
|
|
7338
7338
|
interface Money$5 {
|
|
@@ -7341,9 +7341,9 @@ interface Money$5 {
|
|
|
7341
7341
|
* @deprecated
|
|
7342
7342
|
*/
|
|
7343
7343
|
amount?: string;
|
|
7344
|
-
/** ISO 4217 format of the currency
|
|
7344
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
7345
7345
|
currency?: string;
|
|
7346
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
7346
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
7347
7347
|
value?: string | null;
|
|
7348
7348
|
}
|
|
7349
7349
|
interface ExternalEvent$2 {
|
|
@@ -8197,7 +8197,7 @@ interface Money$4 {
|
|
|
8197
8197
|
amount?: string;
|
|
8198
8198
|
/** Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (e.g., USD). */
|
|
8199
8199
|
currency?: string;
|
|
8200
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
8200
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
8201
8201
|
value?: string | null;
|
|
8202
8202
|
}
|
|
8203
8203
|
interface TicketingTicket$1 {
|
|
@@ -8463,11 +8463,11 @@ interface Tax {
|
|
|
8463
8463
|
amount?: Money$4;
|
|
8464
8464
|
}
|
|
8465
8465
|
declare enum TaxType$2 {
|
|
8466
|
-
/** Tax is included in the ticket price */
|
|
8466
|
+
/** Tax is included in the ticket price. */
|
|
8467
8467
|
INCLUDED = "INCLUDED",
|
|
8468
|
-
/** Tax is added to the order at the checkout */
|
|
8468
|
+
/** Tax is added to the order at the checkout. */
|
|
8469
8469
|
ADDED = "ADDED",
|
|
8470
|
-
/** Tax is added to the final total at the checkout */
|
|
8470
|
+
/** Tax is added to the final total at the checkout. */
|
|
8471
8471
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
8472
8472
|
}
|
|
8473
8473
|
interface Fee {
|
|
@@ -8488,11 +8488,11 @@ declare enum FeeName {
|
|
|
8488
8488
|
WIX_FEE = "WIX_FEE"
|
|
8489
8489
|
}
|
|
8490
8490
|
declare enum FeeType$1 {
|
|
8491
|
-
/** Fee is added to the ticket price at checkout */
|
|
8491
|
+
/** Fee is added to the ticket price at checkout. */
|
|
8492
8492
|
FEE_ADDED = "FEE_ADDED",
|
|
8493
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
8493
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
8494
8494
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
8495
|
-
/** Fee is added to the ticket price at checkout */
|
|
8495
|
+
/** Fee is added to the ticket price at checkout. */
|
|
8496
8496
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
8497
8497
|
}
|
|
8498
8498
|
interface PaymentDetails {
|
|
@@ -8681,7 +8681,7 @@ interface ListOrdersResponse {
|
|
|
8681
8681
|
orderFacets?: OrderFacets;
|
|
8682
8682
|
}
|
|
8683
8683
|
interface FacetCounts$5 {
|
|
8684
|
-
/** Facet counts aggregated per value */
|
|
8684
|
+
/** Facet counts aggregated per value. */
|
|
8685
8685
|
counts?: Record<string, number>;
|
|
8686
8686
|
}
|
|
8687
8687
|
interface OrderFacets {
|
|
@@ -13887,7 +13887,7 @@ interface Money$3 {
|
|
|
13887
13887
|
amount?: string;
|
|
13888
13888
|
/** Currency in the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) format. For example, `USD`. */
|
|
13889
13889
|
currency?: string;
|
|
13890
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
13890
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
13891
13891
|
value?: string | null;
|
|
13892
13892
|
}
|
|
13893
13893
|
interface CheckIn {
|
|
@@ -14141,7 +14141,7 @@ interface ListTicketsResponse {
|
|
|
14141
14141
|
facets?: Record<string, FacetCounts$3>;
|
|
14142
14142
|
}
|
|
14143
14143
|
interface FacetCounts$3 {
|
|
14144
|
-
/** Facet counts aggregated per value */
|
|
14144
|
+
/** Facet counts aggregated per value. */
|
|
14145
14145
|
counts?: Record<string, number>;
|
|
14146
14146
|
}
|
|
14147
14147
|
interface TicketFacets {
|
|
@@ -14735,7 +14735,7 @@ interface Money$2 {
|
|
|
14735
14735
|
* [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
|
|
14736
14736
|
*/
|
|
14737
14737
|
currency?: string;
|
|
14738
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
14738
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
14739
14739
|
value?: string | null;
|
|
14740
14740
|
}
|
|
14741
14741
|
interface Dashboard$2 {
|
|
@@ -14768,11 +14768,11 @@ interface WixFeeConfig {
|
|
|
14768
14768
|
type?: FeeType;
|
|
14769
14769
|
}
|
|
14770
14770
|
declare enum FeeType {
|
|
14771
|
-
/** Fee is added to the ticket price at checkout */
|
|
14771
|
+
/** Fee is added to the ticket price at checkout. */
|
|
14772
14772
|
FEE_ADDED = "FEE_ADDED",
|
|
14773
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
14773
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
14774
14774
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
14775
|
-
/** Fee is added to the ticket price at checkout */
|
|
14775
|
+
/** Fee is added to the ticket price at checkout. */
|
|
14776
14776
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
14777
14777
|
}
|
|
14778
14778
|
interface TicketSalePeriod {
|
|
@@ -14871,7 +14871,7 @@ interface QueryTicketDefinitionsResponse$1 {
|
|
|
14871
14871
|
facets?: Record<string, FacetCounts$2>;
|
|
14872
14872
|
}
|
|
14873
14873
|
interface FacetCounts$2 {
|
|
14874
|
-
/** Facet counts aggregated per value */
|
|
14874
|
+
/** Facet counts aggregated per value. */
|
|
14875
14875
|
counts?: Record<string, number>;
|
|
14876
14876
|
}
|
|
14877
14877
|
interface QueryTicketDefinitionsV2Request {
|
|
@@ -14884,17 +14884,15 @@ interface QueryV2$3 extends QueryV2PagingMethodOneOf$3 {
|
|
|
14884
14884
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
14885
14885
|
cursorPaging?: CursorPaging$3;
|
|
14886
14886
|
/**
|
|
14887
|
-
* Filter object
|
|
14888
|
-
*
|
|
14889
|
-
*
|
|
14890
|
-
* "fieldName2":{"$operator":"value2"}
|
|
14891
|
-
* }`
|
|
14892
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
14887
|
+
* Filter object.
|
|
14888
|
+
*
|
|
14889
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
14893
14890
|
*/
|
|
14894
14891
|
filter?: Record<string, any> | null;
|
|
14895
14892
|
/**
|
|
14896
|
-
* Sort object
|
|
14897
|
-
*
|
|
14893
|
+
* Sort object.
|
|
14894
|
+
*
|
|
14895
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
14898
14896
|
*/
|
|
14899
14897
|
sort?: Sorting$3[];
|
|
14900
14898
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -16801,11 +16799,11 @@ interface Formatted {
|
|
|
16801
16799
|
* For example, 25.5 hours duration is represented as `{ days: 1, hours: 1, minutes: 30 }`.
|
|
16802
16800
|
*/
|
|
16803
16801
|
interface TimeDuration {
|
|
16804
|
-
/** Number of days */
|
|
16802
|
+
/** Number of days. */
|
|
16805
16803
|
days?: number;
|
|
16806
|
-
/** Number of hours */
|
|
16804
|
+
/** Number of hours. */
|
|
16807
16805
|
hours?: number;
|
|
16808
|
-
/** Number of minutes */
|
|
16806
|
+
/** Number of minutes. */
|
|
16809
16807
|
minutes?: number;
|
|
16810
16808
|
}
|
|
16811
16809
|
declare enum Status$1 {
|
|
@@ -17280,9 +17278,9 @@ interface EventsMoney {
|
|
|
17280
17278
|
* @deprecated
|
|
17281
17279
|
*/
|
|
17282
17280
|
amount?: string;
|
|
17283
|
-
/** ISO 4217 format of the currency
|
|
17281
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
17284
17282
|
currency?: string;
|
|
17285
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
17283
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
17286
17284
|
value?: string | null;
|
|
17287
17285
|
}
|
|
17288
17286
|
interface Rsvps {
|
|
@@ -18490,11 +18488,11 @@ interface TaxConfig$1 {
|
|
|
18490
18488
|
appliesToDonations?: boolean | null;
|
|
18491
18489
|
}
|
|
18492
18490
|
declare enum EventsTaxType {
|
|
18493
|
-
/** Tax is included in the ticket price */
|
|
18491
|
+
/** Tax is included in the ticket price. */
|
|
18494
18492
|
INCLUDED = "INCLUDED",
|
|
18495
|
-
/** Tax is added to the order at the checkout */
|
|
18493
|
+
/** Tax is added to the order at the checkout. */
|
|
18496
18494
|
ADDED = "ADDED",
|
|
18497
|
-
/** Tax is added to the final total at the checkout */
|
|
18495
|
+
/** Tax is added to the final total at the checkout. */
|
|
18498
18496
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
18499
18497
|
}
|
|
18500
18498
|
interface ExternalEvent$1 {
|
|
@@ -20178,6 +20176,14 @@ interface SalePeriodUpdated {
|
|
|
20178
20176
|
/** Ticket definition sale period after update. */
|
|
20179
20177
|
afterUpdate?: SalePeriod;
|
|
20180
20178
|
}
|
|
20179
|
+
interface TicketDefinitionSaleStarted {
|
|
20180
|
+
/** Ticket definition. */
|
|
20181
|
+
ticketDefinition?: TicketDefinition;
|
|
20182
|
+
}
|
|
20183
|
+
interface TicketDefinitionSaleEnded {
|
|
20184
|
+
/** Ticket definition. */
|
|
20185
|
+
ticketDefinition?: TicketDefinition;
|
|
20186
|
+
}
|
|
20181
20187
|
interface DomainEvent extends DomainEventBodyOneOf {
|
|
20182
20188
|
createdEvent?: EntityCreatedEvent;
|
|
20183
20189
|
updatedEvent?: EntityUpdatedEvent;
|
|
@@ -21170,11 +21176,11 @@ interface TaxConfig {
|
|
|
21170
21176
|
appliesToDonations?: boolean | null;
|
|
21171
21177
|
}
|
|
21172
21178
|
declare enum TaxType {
|
|
21173
|
-
/** Tax is included in the ticket price */
|
|
21179
|
+
/** Tax is included in the ticket price. */
|
|
21174
21180
|
INCLUDED = "INCLUDED",
|
|
21175
|
-
/** Tax is added to the order at the checkout */
|
|
21181
|
+
/** Tax is added to the order at the checkout. */
|
|
21176
21182
|
ADDED = "ADDED",
|
|
21177
|
-
/** Tax is added to the final total at the checkout */
|
|
21183
|
+
/** Tax is added to the final total at the checkout. */
|
|
21178
21184
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
21179
21185
|
}
|
|
21180
21186
|
interface Money {
|
|
@@ -21183,9 +21189,9 @@ interface Money {
|
|
|
21183
21189
|
* @deprecated
|
|
21184
21190
|
*/
|
|
21185
21191
|
amount?: string;
|
|
21186
|
-
/** ISO 4217 format of the currency
|
|
21192
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
21187
21193
|
currency?: string;
|
|
21188
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
21194
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
21189
21195
|
value?: string | null;
|
|
21190
21196
|
}
|
|
21191
21197
|
interface ExternalEvent {
|
|
@@ -22124,6 +22130,14 @@ interface TicketDefinitionSalePeriodUpdatedEnvelope {
|
|
|
22124
22130
|
data: SalePeriodUpdated;
|
|
22125
22131
|
metadata: EventMetadata;
|
|
22126
22132
|
}
|
|
22133
|
+
interface TicketDefinitionSaleStartedEnvelope {
|
|
22134
|
+
data: TicketDefinitionSaleStarted;
|
|
22135
|
+
metadata: EventMetadata;
|
|
22136
|
+
}
|
|
22137
|
+
interface TicketDefinitionSaleEndedEnvelope {
|
|
22138
|
+
data: TicketDefinitionSaleEnded;
|
|
22139
|
+
metadata: EventMetadata;
|
|
22140
|
+
}
|
|
22127
22141
|
interface CreateTicketDefinitionOptions {
|
|
22128
22142
|
/**
|
|
22129
22143
|
* Predefined sets of fields to return.
|
|
@@ -22449,6 +22463,8 @@ declare const onTicketDefinitionCreated$1: EventDefinition<TicketDefinitionCreat
|
|
|
22449
22463
|
declare const onTicketDefinitionUpdated$1: EventDefinition<TicketDefinitionUpdatedEnvelope, "wix.events.v3.ticket_definition_updated">;
|
|
22450
22464
|
declare const onTicketDefinitionDeleted$1: EventDefinition<TicketDefinitionDeletedEnvelope, "wix.events.v3.ticket_definition_deleted">;
|
|
22451
22465
|
declare const onTicketDefinitionSalePeriodUpdated$1: EventDefinition<TicketDefinitionSalePeriodUpdatedEnvelope, "wix.events.v3.ticket_definition_sale_period_updated">;
|
|
22466
|
+
declare const onTicketDefinitionSaleStarted$1: EventDefinition<TicketDefinitionSaleStartedEnvelope, "wix.events.v3.ticket_definition_sale_started">;
|
|
22467
|
+
declare const onTicketDefinitionSaleEnded$1: EventDefinition<TicketDefinitionSaleEndedEnvelope, "wix.events.v3.ticket_definition_sale_ended">;
|
|
22452
22468
|
|
|
22453
22469
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
22454
22470
|
|
|
@@ -22488,6 +22504,18 @@ type _publicOnTicketDefinitionSalePeriodUpdatedType = typeof onTicketDefinitionS
|
|
|
22488
22504
|
*/
|
|
22489
22505
|
declare const onTicketDefinitionSalePeriodUpdated: ReturnType<typeof createEventModule<_publicOnTicketDefinitionSalePeriodUpdatedType>>;
|
|
22490
22506
|
|
|
22507
|
+
type _publicOnTicketDefinitionSaleStartedType = typeof onTicketDefinitionSaleStarted$1;
|
|
22508
|
+
/**
|
|
22509
|
+
* Triggered when ticket definition sales starts. Sales details are not included.
|
|
22510
|
+
*/
|
|
22511
|
+
declare const onTicketDefinitionSaleStarted: ReturnType<typeof createEventModule<_publicOnTicketDefinitionSaleStartedType>>;
|
|
22512
|
+
|
|
22513
|
+
type _publicOnTicketDefinitionSaleEndedType = typeof onTicketDefinitionSaleEnded$1;
|
|
22514
|
+
/**
|
|
22515
|
+
* Triggered when ticket definition sales ends. Sales details are not included.
|
|
22516
|
+
*/
|
|
22517
|
+
declare const onTicketDefinitionSaleEnded: ReturnType<typeof createEventModule<_publicOnTicketDefinitionSaleEndedType>>;
|
|
22518
|
+
|
|
22491
22519
|
type context_ActionEvent = ActionEvent;
|
|
22492
22520
|
type context_Address = Address;
|
|
22493
22521
|
type context_AddressLocation = AddressLocation;
|
|
@@ -22692,7 +22720,11 @@ type context_TicketDefinition = TicketDefinition;
|
|
|
22692
22720
|
type context_TicketDefinitionCreatedEnvelope = TicketDefinitionCreatedEnvelope;
|
|
22693
22721
|
type context_TicketDefinitionDeletedEnvelope = TicketDefinitionDeletedEnvelope;
|
|
22694
22722
|
type context_TicketDefinitionNonNullableFields = TicketDefinitionNonNullableFields;
|
|
22723
|
+
type context_TicketDefinitionSaleEnded = TicketDefinitionSaleEnded;
|
|
22724
|
+
type context_TicketDefinitionSaleEndedEnvelope = TicketDefinitionSaleEndedEnvelope;
|
|
22695
22725
|
type context_TicketDefinitionSalePeriodUpdatedEnvelope = TicketDefinitionSalePeriodUpdatedEnvelope;
|
|
22726
|
+
type context_TicketDefinitionSaleStarted = TicketDefinitionSaleStarted;
|
|
22727
|
+
type context_TicketDefinitionSaleStartedEnvelope = TicketDefinitionSaleStartedEnvelope;
|
|
22696
22728
|
type context_TicketDefinitionSummary = TicketDefinitionSummary;
|
|
22697
22729
|
type context_TicketDefinitionUpdatedEnvelope = TicketDefinitionUpdatedEnvelope;
|
|
22698
22730
|
type context_TicketDefinitionsQueryBuilder = TicketDefinitionsQueryBuilder;
|
|
@@ -22720,7 +22752,9 @@ type context_WebhookIdentityType = WebhookIdentityType;
|
|
|
22720
22752
|
declare const context_WebhookIdentityType: typeof WebhookIdentityType;
|
|
22721
22753
|
type context__publicOnTicketDefinitionCreatedType = _publicOnTicketDefinitionCreatedType;
|
|
22722
22754
|
type context__publicOnTicketDefinitionDeletedType = _publicOnTicketDefinitionDeletedType;
|
|
22755
|
+
type context__publicOnTicketDefinitionSaleEndedType = _publicOnTicketDefinitionSaleEndedType;
|
|
22723
22756
|
type context__publicOnTicketDefinitionSalePeriodUpdatedType = _publicOnTicketDefinitionSalePeriodUpdatedType;
|
|
22757
|
+
type context__publicOnTicketDefinitionSaleStartedType = _publicOnTicketDefinitionSaleStartedType;
|
|
22724
22758
|
type context__publicOnTicketDefinitionUpdatedType = _publicOnTicketDefinitionUpdatedType;
|
|
22725
22759
|
declare const context_bulkDeleteTicketDefinitionsByFilter: typeof bulkDeleteTicketDefinitionsByFilter;
|
|
22726
22760
|
declare const context_changeCurrency: typeof changeCurrency;
|
|
@@ -22731,14 +22765,16 @@ declare const context_deleteTicketDefinition: typeof deleteTicketDefinition;
|
|
|
22731
22765
|
declare const context_getTicketDefinition: typeof getTicketDefinition;
|
|
22732
22766
|
declare const context_onTicketDefinitionCreated: typeof onTicketDefinitionCreated;
|
|
22733
22767
|
declare const context_onTicketDefinitionDeleted: typeof onTicketDefinitionDeleted;
|
|
22768
|
+
declare const context_onTicketDefinitionSaleEnded: typeof onTicketDefinitionSaleEnded;
|
|
22734
22769
|
declare const context_onTicketDefinitionSalePeriodUpdated: typeof onTicketDefinitionSalePeriodUpdated;
|
|
22770
|
+
declare const context_onTicketDefinitionSaleStarted: typeof onTicketDefinitionSaleStarted;
|
|
22735
22771
|
declare const context_onTicketDefinitionUpdated: typeof onTicketDefinitionUpdated;
|
|
22736
22772
|
declare const context_queryAvailableTicketDefinitions: typeof queryAvailableTicketDefinitions;
|
|
22737
22773
|
declare const context_queryTicketDefinitions: typeof queryTicketDefinitions;
|
|
22738
22774
|
declare const context_reorderTicketDefinitions: typeof reorderTicketDefinitions;
|
|
22739
22775
|
declare const context_updateTicketDefinition: typeof updateTicketDefinition;
|
|
22740
22776
|
declare namespace context {
|
|
22741
|
-
export { type context_ActionEvent as ActionEvent, type context_Address as Address, type context_AddressLocation as AddressLocation, type context_AddressStreetOneOf as AddressStreetOneOf, type context_Agenda as Agenda, type context_App as App, type context_Asset as Asset, type context_BaseEventMetadata as BaseEventMetadata, type context_BulkCopyTicketDefinitionsByEventIdRequest as BulkCopyTicketDefinitionsByEventIdRequest, type context_BulkCopyTicketDefinitionsByEventIdResponse as BulkCopyTicketDefinitionsByEventIdResponse, type context_BulkDeleteTicketDefinitionsByFilterRequest as BulkDeleteTicketDefinitionsByFilterRequest, type context_BulkDeleteTicketDefinitionsByFilterResponse as BulkDeleteTicketDefinitionsByFilterResponse, type context_CalendarLinks as CalendarLinks, type context_Category as Category, type context_CategoryCounts as CategoryCounts, type context_CategoryDetails as CategoryDetails, context_CategoryStateState as CategoryStateState, type context_ChangeCurrencyOptions as ChangeCurrencyOptions, type context_ChangeCurrencyRequest as ChangeCurrencyRequest, type context_ChangeCurrencyResponse as ChangeCurrencyResponse, type context_CheckoutFormMessages as CheckoutFormMessages, type context_CommonMoney as CommonMoney, context_ConferenceType as ConferenceType, type context_CopiedTicketDefinition as CopiedTicketDefinition, type context_CountAvailableTicketDefinitionsOptions as CountAvailableTicketDefinitionsOptions, type context_CountAvailableTicketDefinitionsRequest as CountAvailableTicketDefinitionsRequest, type context_CountAvailableTicketDefinitionsResponse as CountAvailableTicketDefinitionsResponse, type context_CountTicketDefinitionsOptions as CountTicketDefinitionsOptions, type context_CountTicketDefinitionsRequest as CountTicketDefinitionsRequest, type context_CountTicketDefinitionsResponse as CountTicketDefinitionsResponse, type context_CreateTicketDefinitionOptions as CreateTicketDefinitionOptions, type context_CreateTicketDefinitionRequest as CreateTicketDefinitionRequest, type context_CreateTicketDefinitionResponse as CreateTicketDefinitionResponse, type context_CreateTicketDefinitionResponseNonNullableFields as CreateTicketDefinitionResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_Dashboard as Dashboard, type context_DeleteContext as DeleteContext, context_DeleteStatus as DeleteStatus, type context_DeleteTicketDefinitionRequest as DeleteTicketDefinitionRequest, type context_DeleteTicketDefinitionResponse as DeleteTicketDefinitionResponse, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_Event as Event, type context_EventCanceled as EventCanceled, type context_EventCreated as EventCreated, type context_EventDeleted as EventDeleted, type context_EventDisplaySettings as EventDisplaySettings, type context_EventEnded as EventEnded, type context_EventMetadata as EventMetadata, context_EventStatus as EventStatus, type context_EventTicketingSummary as EventTicketingSummary, context_EventType as EventType, type context_EventUpdated as EventUpdated, type context_ExtendedFields as ExtendedFields, type context_ExternalEvent as ExternalEvent, type context_FacetCounts as FacetCounts, type context_Feed as Feed, context_Field as Field, type context_File as File, type context_Form as Form, type context_FormMessages as FormMessages, type context_GetTicketDefinitionFromTrashBinRequest as GetTicketDefinitionFromTrashBinRequest, type context_GetTicketDefinitionFromTrashBinResponse as GetTicketDefinitionFromTrashBinResponse, type context_GetTicketDefinitionOptions as GetTicketDefinitionOptions, type context_GetTicketDefinitionRequest as GetTicketDefinitionRequest, type context_GetTicketDefinitionResponse as GetTicketDefinitionResponse, type context_GetTicketDefinitionResponseNonNullableFields as GetTicketDefinitionResponseNonNullableFields, type context_GetTicketDefinitionSummaryRequest as GetTicketDefinitionSummaryRequest, type context_GetTicketDefinitionSummaryResponse as GetTicketDefinitionSummaryResponse, type context_GuestListConfig as GuestListConfig, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Input as Input, type context_InputControl as InputControl, context_InputControlType as InputControlType, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_Keyword as Keyword, type context_Label as Label, type context_LabellingSettings as LabellingSettings, type context_ListEventTicketingSummaryRequest as ListEventTicketingSummaryRequest, type context_ListEventTicketingSummaryResponse as ListEventTicketingSummaryResponse, type context_Location as Location, context_LocationType as LocationType, type context_MapCoordinates as MapCoordinates, type context_MessageEnvelope as MessageEnvelope, type context_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, type context_Money as Money, context_Namespace as Namespace, type context_NamespaceChanged as NamespaceChanged, type context_Negative as Negative, type context_NegativeResponseConfirmation as NegativeResponseConfirmation, type context_Occurrence as Occurrence, type context_OnlineConferencing as OnlineConferencing, type context_OnlineConferencingConfig as OnlineConferencingConfig, type context_OnlineConferencingSession as OnlineConferencingSession, type context_OptionDetails as OptionDetails, type context_OptionSelection as OptionSelection, type context_OptionSelectionSelectedOptionOneOf as OptionSelectionSelectedOptionOneOf, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, type context_Positive as Positive, type context_PositiveResponseConfirmation as PositiveResponseConfirmation, type context_PricingMethod as PricingMethod, type context_PricingMethodPriceOneOf as PricingMethodPriceOneOf, type context_PricingOptions as PricingOptions, context_PricingTypeEnumType as PricingTypeEnumType, type context_QueryAvailableTicketDefinitionsOptions as QueryAvailableTicketDefinitionsOptions, type context_QueryAvailableTicketDefinitionsRequest as QueryAvailableTicketDefinitionsRequest, type context_QueryAvailableTicketDefinitionsResponse as QueryAvailableTicketDefinitionsResponse, type context_QueryAvailableTicketDefinitionsResponseNonNullableFields as QueryAvailableTicketDefinitionsResponseNonNullableFields, type context_QueryTicketDefinitionsOptions as QueryTicketDefinitionsOptions, type context_QueryTicketDefinitionsRequest as QueryTicketDefinitionsRequest, type context_QueryTicketDefinitionsResponse as QueryTicketDefinitionsResponse, type context_QueryTicketDefinitionsResponseNonNullableFields as QueryTicketDefinitionsResponseNonNullableFields, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_Recurrences as Recurrences, type context_Registration as Registration, type context_RegistrationClosedMessages as RegistrationClosedMessages, context_RegistrationStatus as RegistrationStatus, type context_ReorderTicketDefinitionsOptions as ReorderTicketDefinitionsOptions, type context_ReorderTicketDefinitionsRequest as ReorderTicketDefinitionsRequest, type context_ReorderTicketDefinitionsRequestReferenceDefinitionOneOf as ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type context_ReorderTicketDefinitionsResponse as ReorderTicketDefinitionsResponse, type context_ReservationCount as ReservationCount, type context_ReservationCreated as ReservationCreated, context_ReservationStatus as ReservationStatus, type context_ReservationUpdated as ReservationUpdated, type context_ResponseConfirmation as ResponseConfirmation, type context_RestoreInfo as RestoreInfo, type context_RsvpCollection as RsvpCollection, type context_RsvpCollectionConfig as RsvpCollectionConfig, type context_RsvpFormMessages as RsvpFormMessages, context_RsvpStatusOptions as RsvpStatusOptions, type context_RsvpSummary as RsvpSummary, type context_SalePeriod as SalePeriod, type context_SalePeriodUpdated as SalePeriodUpdated, context_SaleStatusEnumStatus as SaleStatusEnumStatus, type context_SalesDetails as SalesDetails, type context_ScheduleConfig as ScheduleConfig, type context_ScheduleLegacyTimeCapsuleTaskRequest as ScheduleLegacyTimeCapsuleTaskRequest, type context_Scheduling as Scheduling, type context_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type context_SeoSchema as SeoSchema, type context_SeoSettings as SeoSettings, type context_ServiceProvisioned as ServiceProvisioned, type context_ServiceRemoved as ServiceRemoved, type context_Settings as Settings, type context_SiteCreated as SiteCreated, context_SiteCreatedContext as SiteCreatedContext, type context_SiteDeleted as SiteDeleted, type context_SiteHardDeleted as SiteHardDeleted, type context_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context_SitePublished as SitePublished, type context_SiteRenamed as SiteRenamed, type context_SiteTransferred as SiteTransferred, type context_SiteUndeleted as SiteUndeleted, type context_SiteUnpublished as SiteUnpublished, type context_SiteUrl as SiteUrl, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_State as State, context_Status as Status, type context_StreetAddress as StreetAddress, type context_StudioAssigned as StudioAssigned, type context_StudioUnassigned as StudioUnassigned, type context_Subdivision as Subdivision, context_SubdivisionType as SubdivisionType, type context_Tag as Tag, type context_TaxConfig as TaxConfig, context_TaxType as TaxType, type context_TicketDefinition as TicketDefinition, type context_TicketDefinitionCreatedEnvelope as TicketDefinitionCreatedEnvelope, type context_TicketDefinitionDeletedEnvelope as TicketDefinitionDeletedEnvelope, type context_TicketDefinitionNonNullableFields as TicketDefinitionNonNullableFields, type context_TicketDefinitionSalePeriodUpdatedEnvelope as TicketDefinitionSalePeriodUpdatedEnvelope, type context_TicketDefinitionSummary as TicketDefinitionSummary, type context_TicketDefinitionUpdatedEnvelope as TicketDefinitionUpdatedEnvelope, type context_TicketDefinitionsQueryBuilder as TicketDefinitionsQueryBuilder, type context_TicketDefinitionsQueryResult as TicketDefinitionsQueryResult, type context_TicketQuantity as TicketQuantity, type context_Ticketing as Ticketing, type context_TicketingConfig as TicketingConfig, type context_TicketingSummary as TicketingSummary, type context_TicketsUnavailableMessages as TicketsUnavailableMessages, context_Type as Type, type context_URI as URI, type context_UpdateTicketDefinition as UpdateTicketDefinition, type context_UpdateTicketDefinitionOptions as UpdateTicketDefinitionOptions, type context_UpdateTicketDefinitionRequest as UpdateTicketDefinitionRequest, type context_UpdateTicketDefinitionResponse as UpdateTicketDefinitionResponse, type context_UpdateTicketDefinitionResponseNonNullableFields as UpdateTicketDefinitionResponseNonNullableFields, type context_UpdateTicketDefinitionSortIndexRequest as UpdateTicketDefinitionSortIndexRequest, type context_UpdateTicketDefinitionSortIndexResponse as UpdateTicketDefinitionSortIndexResponse, context_ValueType as ValueType, context_VisitorType as VisitorType, context_WebhookIdentityType as WebhookIdentityType, type context__publicOnTicketDefinitionCreatedType as _publicOnTicketDefinitionCreatedType, type context__publicOnTicketDefinitionDeletedType as _publicOnTicketDefinitionDeletedType, type context__publicOnTicketDefinitionSalePeriodUpdatedType as _publicOnTicketDefinitionSalePeriodUpdatedType, type context__publicOnTicketDefinitionUpdatedType as _publicOnTicketDefinitionUpdatedType, context_bulkDeleteTicketDefinitionsByFilter as bulkDeleteTicketDefinitionsByFilter, context_changeCurrency as changeCurrency, context_countAvailableTicketDefinitions as countAvailableTicketDefinitions, context_countTicketDefinitions as countTicketDefinitions, context_createTicketDefinition as createTicketDefinition, context_deleteTicketDefinition as deleteTicketDefinition, context_getTicketDefinition as getTicketDefinition, context_onTicketDefinitionCreated as onTicketDefinitionCreated, context_onTicketDefinitionDeleted as onTicketDefinitionDeleted, context_onTicketDefinitionSalePeriodUpdated as onTicketDefinitionSalePeriodUpdated, context_onTicketDefinitionUpdated as onTicketDefinitionUpdated, onTicketDefinitionCreated$1 as publicOnTicketDefinitionCreated, onTicketDefinitionDeleted$1 as publicOnTicketDefinitionDeleted, onTicketDefinitionSalePeriodUpdated$1 as publicOnTicketDefinitionSalePeriodUpdated, onTicketDefinitionUpdated$1 as publicOnTicketDefinitionUpdated, context_queryAvailableTicketDefinitions as queryAvailableTicketDefinitions, context_queryTicketDefinitions as queryTicketDefinitions, context_reorderTicketDefinitions as reorderTicketDefinitions, context_updateTicketDefinition as updateTicketDefinition };
|
|
22777
|
+
export { type context_ActionEvent as ActionEvent, type context_Address as Address, type context_AddressLocation as AddressLocation, type context_AddressStreetOneOf as AddressStreetOneOf, type context_Agenda as Agenda, type context_App as App, type context_Asset as Asset, type context_BaseEventMetadata as BaseEventMetadata, type context_BulkCopyTicketDefinitionsByEventIdRequest as BulkCopyTicketDefinitionsByEventIdRequest, type context_BulkCopyTicketDefinitionsByEventIdResponse as BulkCopyTicketDefinitionsByEventIdResponse, type context_BulkDeleteTicketDefinitionsByFilterRequest as BulkDeleteTicketDefinitionsByFilterRequest, type context_BulkDeleteTicketDefinitionsByFilterResponse as BulkDeleteTicketDefinitionsByFilterResponse, type context_CalendarLinks as CalendarLinks, type context_Category as Category, type context_CategoryCounts as CategoryCounts, type context_CategoryDetails as CategoryDetails, context_CategoryStateState as CategoryStateState, type context_ChangeCurrencyOptions as ChangeCurrencyOptions, type context_ChangeCurrencyRequest as ChangeCurrencyRequest, type context_ChangeCurrencyResponse as ChangeCurrencyResponse, type context_CheckoutFormMessages as CheckoutFormMessages, type context_CommonMoney as CommonMoney, context_ConferenceType as ConferenceType, type context_CopiedTicketDefinition as CopiedTicketDefinition, type context_CountAvailableTicketDefinitionsOptions as CountAvailableTicketDefinitionsOptions, type context_CountAvailableTicketDefinitionsRequest as CountAvailableTicketDefinitionsRequest, type context_CountAvailableTicketDefinitionsResponse as CountAvailableTicketDefinitionsResponse, type context_CountTicketDefinitionsOptions as CountTicketDefinitionsOptions, type context_CountTicketDefinitionsRequest as CountTicketDefinitionsRequest, type context_CountTicketDefinitionsResponse as CountTicketDefinitionsResponse, type context_CreateTicketDefinitionOptions as CreateTicketDefinitionOptions, type context_CreateTicketDefinitionRequest as CreateTicketDefinitionRequest, type context_CreateTicketDefinitionResponse as CreateTicketDefinitionResponse, type context_CreateTicketDefinitionResponseNonNullableFields as CreateTicketDefinitionResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_Dashboard as Dashboard, type context_DeleteContext as DeleteContext, context_DeleteStatus as DeleteStatus, type context_DeleteTicketDefinitionRequest as DeleteTicketDefinitionRequest, type context_DeleteTicketDefinitionResponse as DeleteTicketDefinitionResponse, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_Event as Event, type context_EventCanceled as EventCanceled, type context_EventCreated as EventCreated, type context_EventDeleted as EventDeleted, type context_EventDisplaySettings as EventDisplaySettings, type context_EventEnded as EventEnded, type context_EventMetadata as EventMetadata, context_EventStatus as EventStatus, type context_EventTicketingSummary as EventTicketingSummary, context_EventType as EventType, type context_EventUpdated as EventUpdated, type context_ExtendedFields as ExtendedFields, type context_ExternalEvent as ExternalEvent, type context_FacetCounts as FacetCounts, type context_Feed as Feed, context_Field as Field, type context_File as File, type context_Form as Form, type context_FormMessages as FormMessages, type context_GetTicketDefinitionFromTrashBinRequest as GetTicketDefinitionFromTrashBinRequest, type context_GetTicketDefinitionFromTrashBinResponse as GetTicketDefinitionFromTrashBinResponse, type context_GetTicketDefinitionOptions as GetTicketDefinitionOptions, type context_GetTicketDefinitionRequest as GetTicketDefinitionRequest, type context_GetTicketDefinitionResponse as GetTicketDefinitionResponse, type context_GetTicketDefinitionResponseNonNullableFields as GetTicketDefinitionResponseNonNullableFields, type context_GetTicketDefinitionSummaryRequest as GetTicketDefinitionSummaryRequest, type context_GetTicketDefinitionSummaryResponse as GetTicketDefinitionSummaryResponse, type context_GuestListConfig as GuestListConfig, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Input as Input, type context_InputControl as InputControl, context_InputControlType as InputControlType, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_Keyword as Keyword, type context_Label as Label, type context_LabellingSettings as LabellingSettings, type context_ListEventTicketingSummaryRequest as ListEventTicketingSummaryRequest, type context_ListEventTicketingSummaryResponse as ListEventTicketingSummaryResponse, type context_Location as Location, context_LocationType as LocationType, type context_MapCoordinates as MapCoordinates, type context_MessageEnvelope as MessageEnvelope, type context_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, type context_Money as Money, context_Namespace as Namespace, type context_NamespaceChanged as NamespaceChanged, type context_Negative as Negative, type context_NegativeResponseConfirmation as NegativeResponseConfirmation, type context_Occurrence as Occurrence, type context_OnlineConferencing as OnlineConferencing, type context_OnlineConferencingConfig as OnlineConferencingConfig, type context_OnlineConferencingSession as OnlineConferencingSession, type context_OptionDetails as OptionDetails, type context_OptionSelection as OptionSelection, type context_OptionSelectionSelectedOptionOneOf as OptionSelectionSelectedOptionOneOf, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, type context_Positive as Positive, type context_PositiveResponseConfirmation as PositiveResponseConfirmation, type context_PricingMethod as PricingMethod, type context_PricingMethodPriceOneOf as PricingMethodPriceOneOf, type context_PricingOptions as PricingOptions, context_PricingTypeEnumType as PricingTypeEnumType, type context_QueryAvailableTicketDefinitionsOptions as QueryAvailableTicketDefinitionsOptions, type context_QueryAvailableTicketDefinitionsRequest as QueryAvailableTicketDefinitionsRequest, type context_QueryAvailableTicketDefinitionsResponse as QueryAvailableTicketDefinitionsResponse, type context_QueryAvailableTicketDefinitionsResponseNonNullableFields as QueryAvailableTicketDefinitionsResponseNonNullableFields, type context_QueryTicketDefinitionsOptions as QueryTicketDefinitionsOptions, type context_QueryTicketDefinitionsRequest as QueryTicketDefinitionsRequest, type context_QueryTicketDefinitionsResponse as QueryTicketDefinitionsResponse, type context_QueryTicketDefinitionsResponseNonNullableFields as QueryTicketDefinitionsResponseNonNullableFields, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_Recurrences as Recurrences, type context_Registration as Registration, type context_RegistrationClosedMessages as RegistrationClosedMessages, context_RegistrationStatus as RegistrationStatus, type context_ReorderTicketDefinitionsOptions as ReorderTicketDefinitionsOptions, type context_ReorderTicketDefinitionsRequest as ReorderTicketDefinitionsRequest, type context_ReorderTicketDefinitionsRequestReferenceDefinitionOneOf as ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type context_ReorderTicketDefinitionsResponse as ReorderTicketDefinitionsResponse, type context_ReservationCount as ReservationCount, type context_ReservationCreated as ReservationCreated, context_ReservationStatus as ReservationStatus, type context_ReservationUpdated as ReservationUpdated, type context_ResponseConfirmation as ResponseConfirmation, type context_RestoreInfo as RestoreInfo, type context_RsvpCollection as RsvpCollection, type context_RsvpCollectionConfig as RsvpCollectionConfig, type context_RsvpFormMessages as RsvpFormMessages, context_RsvpStatusOptions as RsvpStatusOptions, type context_RsvpSummary as RsvpSummary, type context_SalePeriod as SalePeriod, type context_SalePeriodUpdated as SalePeriodUpdated, context_SaleStatusEnumStatus as SaleStatusEnumStatus, type context_SalesDetails as SalesDetails, type context_ScheduleConfig as ScheduleConfig, type context_ScheduleLegacyTimeCapsuleTaskRequest as ScheduleLegacyTimeCapsuleTaskRequest, type context_Scheduling as Scheduling, type context_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type context_SeoSchema as SeoSchema, type context_SeoSettings as SeoSettings, type context_ServiceProvisioned as ServiceProvisioned, type context_ServiceRemoved as ServiceRemoved, type context_Settings as Settings, type context_SiteCreated as SiteCreated, context_SiteCreatedContext as SiteCreatedContext, type context_SiteDeleted as SiteDeleted, type context_SiteHardDeleted as SiteHardDeleted, type context_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context_SitePublished as SitePublished, type context_SiteRenamed as SiteRenamed, type context_SiteTransferred as SiteTransferred, type context_SiteUndeleted as SiteUndeleted, type context_SiteUnpublished as SiteUnpublished, type context_SiteUrl as SiteUrl, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_State as State, context_Status as Status, type context_StreetAddress as StreetAddress, type context_StudioAssigned as StudioAssigned, type context_StudioUnassigned as StudioUnassigned, type context_Subdivision as Subdivision, context_SubdivisionType as SubdivisionType, type context_Tag as Tag, type context_TaxConfig as TaxConfig, context_TaxType as TaxType, type context_TicketDefinition as TicketDefinition, type context_TicketDefinitionCreatedEnvelope as TicketDefinitionCreatedEnvelope, type context_TicketDefinitionDeletedEnvelope as TicketDefinitionDeletedEnvelope, type context_TicketDefinitionNonNullableFields as TicketDefinitionNonNullableFields, type context_TicketDefinitionSaleEnded as TicketDefinitionSaleEnded, type context_TicketDefinitionSaleEndedEnvelope as TicketDefinitionSaleEndedEnvelope, type context_TicketDefinitionSalePeriodUpdatedEnvelope as TicketDefinitionSalePeriodUpdatedEnvelope, type context_TicketDefinitionSaleStarted as TicketDefinitionSaleStarted, type context_TicketDefinitionSaleStartedEnvelope as TicketDefinitionSaleStartedEnvelope, type context_TicketDefinitionSummary as TicketDefinitionSummary, type context_TicketDefinitionUpdatedEnvelope as TicketDefinitionUpdatedEnvelope, type context_TicketDefinitionsQueryBuilder as TicketDefinitionsQueryBuilder, type context_TicketDefinitionsQueryResult as TicketDefinitionsQueryResult, type context_TicketQuantity as TicketQuantity, type context_Ticketing as Ticketing, type context_TicketingConfig as TicketingConfig, type context_TicketingSummary as TicketingSummary, type context_TicketsUnavailableMessages as TicketsUnavailableMessages, context_Type as Type, type context_URI as URI, type context_UpdateTicketDefinition as UpdateTicketDefinition, type context_UpdateTicketDefinitionOptions as UpdateTicketDefinitionOptions, type context_UpdateTicketDefinitionRequest as UpdateTicketDefinitionRequest, type context_UpdateTicketDefinitionResponse as UpdateTicketDefinitionResponse, type context_UpdateTicketDefinitionResponseNonNullableFields as UpdateTicketDefinitionResponseNonNullableFields, type context_UpdateTicketDefinitionSortIndexRequest as UpdateTicketDefinitionSortIndexRequest, type context_UpdateTicketDefinitionSortIndexResponse as UpdateTicketDefinitionSortIndexResponse, context_ValueType as ValueType, context_VisitorType as VisitorType, context_WebhookIdentityType as WebhookIdentityType, type context__publicOnTicketDefinitionCreatedType as _publicOnTicketDefinitionCreatedType, type context__publicOnTicketDefinitionDeletedType as _publicOnTicketDefinitionDeletedType, type context__publicOnTicketDefinitionSaleEndedType as _publicOnTicketDefinitionSaleEndedType, type context__publicOnTicketDefinitionSalePeriodUpdatedType as _publicOnTicketDefinitionSalePeriodUpdatedType, type context__publicOnTicketDefinitionSaleStartedType as _publicOnTicketDefinitionSaleStartedType, type context__publicOnTicketDefinitionUpdatedType as _publicOnTicketDefinitionUpdatedType, context_bulkDeleteTicketDefinitionsByFilter as bulkDeleteTicketDefinitionsByFilter, context_changeCurrency as changeCurrency, context_countAvailableTicketDefinitions as countAvailableTicketDefinitions, context_countTicketDefinitions as countTicketDefinitions, context_createTicketDefinition as createTicketDefinition, context_deleteTicketDefinition as deleteTicketDefinition, context_getTicketDefinition as getTicketDefinition, context_onTicketDefinitionCreated as onTicketDefinitionCreated, context_onTicketDefinitionDeleted as onTicketDefinitionDeleted, context_onTicketDefinitionSaleEnded as onTicketDefinitionSaleEnded, context_onTicketDefinitionSalePeriodUpdated as onTicketDefinitionSalePeriodUpdated, context_onTicketDefinitionSaleStarted as onTicketDefinitionSaleStarted, context_onTicketDefinitionUpdated as onTicketDefinitionUpdated, onTicketDefinitionCreated$1 as publicOnTicketDefinitionCreated, onTicketDefinitionDeleted$1 as publicOnTicketDefinitionDeleted, onTicketDefinitionSaleEnded$1 as publicOnTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated$1 as publicOnTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted$1 as publicOnTicketDefinitionSaleStarted, onTicketDefinitionUpdated$1 as publicOnTicketDefinitionUpdated, context_queryAvailableTicketDefinitions as queryAvailableTicketDefinitions, context_queryTicketDefinitions as queryTicketDefinitions, context_reorderTicketDefinitions as reorderTicketDefinitions, context_updateTicketDefinition as updateTicketDefinition };
|
|
22742
22778
|
}
|
|
22743
22779
|
|
|
22744
22780
|
export { context$9 as categories, context$8 as forms, context$e as guests, context$d as notifications, context$7 as orders, context$2 as policies, context$6 as ricos, context$5 as rsvp, context$b as schedule, context$c as scheduleBookmarks, context$a as staffMembers, context$3 as ticketDefinitions, context as ticketDefinitionsV2, context$4 as tickets, context$1 as wixEventsV2 };
|
|
@@ -728,9 +728,9 @@ interface Money$7 {
|
|
|
728
728
|
* @deprecated
|
|
729
729
|
*/
|
|
730
730
|
amount?: string;
|
|
731
|
-
/** ISO 4217 format of the currency
|
|
731
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
732
732
|
currency?: string;
|
|
733
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
733
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
734
734
|
value?: string | null;
|
|
735
735
|
}
|
|
736
736
|
interface Invoice$2 {
|
|
@@ -865,11 +865,11 @@ interface Tax$2 {
|
|
|
865
865
|
amount?: Money$7;
|
|
866
866
|
}
|
|
867
867
|
declare enum TaxType$5 {
|
|
868
|
-
/** Tax is included in the ticket price */
|
|
868
|
+
/** Tax is included in the ticket price. */
|
|
869
869
|
INCLUDED = "INCLUDED",
|
|
870
|
-
/** Tax is added to the order at the checkout */
|
|
870
|
+
/** Tax is added to the order at the checkout. */
|
|
871
871
|
ADDED = "ADDED",
|
|
872
|
-
/** Tax is added to the final total at the checkout */
|
|
872
|
+
/** Tax is added to the final total at the checkout. */
|
|
873
873
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
874
874
|
}
|
|
875
875
|
interface Fee$2 {
|
|
@@ -890,11 +890,11 @@ declare enum FeeName$2 {
|
|
|
890
890
|
WIX_FEE = "WIX_FEE"
|
|
891
891
|
}
|
|
892
892
|
declare enum FeeType$3 {
|
|
893
|
-
/** Fee is added to the ticket price at checkout */
|
|
893
|
+
/** Fee is added to the ticket price at checkout. */
|
|
894
894
|
FEE_ADDED = "FEE_ADDED",
|
|
895
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
895
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
896
896
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
897
|
-
/** Fee is added to the ticket price at checkout */
|
|
897
|
+
/** Fee is added to the ticket price at checkout. */
|
|
898
898
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
899
899
|
}
|
|
900
900
|
interface OrderUpdated$2 {
|
|
@@ -2595,11 +2595,11 @@ interface TaxConfig$3 {
|
|
|
2595
2595
|
appliesToDonations?: boolean | null;
|
|
2596
2596
|
}
|
|
2597
2597
|
declare enum TaxType$4 {
|
|
2598
|
-
/** Tax is included in the ticket price */
|
|
2598
|
+
/** Tax is included in the ticket price. */
|
|
2599
2599
|
INCLUDED = "INCLUDED",
|
|
2600
|
-
/** Tax is added to the order at the checkout */
|
|
2600
|
+
/** Tax is added to the order at the checkout. */
|
|
2601
2601
|
ADDED = "ADDED",
|
|
2602
|
-
/** Tax is added to the final total at the checkout */
|
|
2602
|
+
/** Tax is added to the final total at the checkout. */
|
|
2603
2603
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
2604
2604
|
}
|
|
2605
2605
|
interface Money$6 {
|
|
@@ -2608,9 +2608,9 @@ interface Money$6 {
|
|
|
2608
2608
|
* @deprecated
|
|
2609
2609
|
*/
|
|
2610
2610
|
amount?: string;
|
|
2611
|
-
/** ISO 4217 format of the currency
|
|
2611
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
2612
2612
|
currency?: string;
|
|
2613
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
2613
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
2614
2614
|
value?: string | null;
|
|
2615
2615
|
}
|
|
2616
2616
|
interface ExternalEvent$3 {
|
|
@@ -3340,11 +3340,11 @@ declare enum FeeName$1 {
|
|
|
3340
3340
|
WIX_FEE = "WIX_FEE"
|
|
3341
3341
|
}
|
|
3342
3342
|
declare enum FeeType$2 {
|
|
3343
|
-
/** Fee is added to the ticket price at checkout */
|
|
3343
|
+
/** Fee is added to the ticket price at checkout. */
|
|
3344
3344
|
FEE_ADDED = "FEE_ADDED",
|
|
3345
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
3345
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
3346
3346
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
3347
|
-
/** Fee is added to the ticket price at checkout */
|
|
3347
|
+
/** Fee is added to the ticket price at checkout. */
|
|
3348
3348
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
3349
3349
|
}
|
|
3350
3350
|
/** Produced if a buyer email was added to the existing order */
|
|
@@ -3427,11 +3427,11 @@ interface EventReminder$1 {
|
|
|
3427
3427
|
* For example, 25.5 hours duration is represented as `{ days: 1, hours: 1, minutes: 30 }`.
|
|
3428
3428
|
*/
|
|
3429
3429
|
interface TimeDuration$1 {
|
|
3430
|
-
/** Number of days */
|
|
3430
|
+
/** Number of days. */
|
|
3431
3431
|
days?: number;
|
|
3432
|
-
/** Number of hours */
|
|
3432
|
+
/** Number of hours. */
|
|
3433
3433
|
hours?: number;
|
|
3434
|
-
/** Number of minutes */
|
|
3434
|
+
/** Number of minutes. */
|
|
3435
3435
|
minutes?: number;
|
|
3436
3436
|
}
|
|
3437
3437
|
interface OrderPaid$1 {
|
|
@@ -4107,7 +4107,7 @@ interface ListScheduleItemsResponse$1 {
|
|
|
4107
4107
|
pagingMetadata?: PagingMetadataV2$7;
|
|
4108
4108
|
}
|
|
4109
4109
|
interface FacetCounts$7 {
|
|
4110
|
-
/** Facet counts aggregated per value */
|
|
4110
|
+
/** Facet counts aggregated per value. */
|
|
4111
4111
|
counts?: Record<string, number>;
|
|
4112
4112
|
}
|
|
4113
4113
|
interface PagingMetadataV2$7 {
|
|
@@ -4517,7 +4517,7 @@ interface ListScheduleItemsResponse {
|
|
|
4517
4517
|
pagingMetadata?: PagingMetadataV2$6;
|
|
4518
4518
|
}
|
|
4519
4519
|
interface FacetCounts$6 {
|
|
4520
|
-
/** Facet counts aggregated per value */
|
|
4520
|
+
/** Facet counts aggregated per value. */
|
|
4521
4521
|
counts?: Record<string, number>;
|
|
4522
4522
|
}
|
|
4523
4523
|
interface PagingMetadataV2$6 {
|
|
@@ -7328,11 +7328,11 @@ interface TaxConfig$2 {
|
|
|
7328
7328
|
appliesToDonations?: boolean | null;
|
|
7329
7329
|
}
|
|
7330
7330
|
declare enum TaxType$3 {
|
|
7331
|
-
/** Tax is included in the ticket price */
|
|
7331
|
+
/** Tax is included in the ticket price. */
|
|
7332
7332
|
INCLUDED = "INCLUDED",
|
|
7333
|
-
/** Tax is added to the order at the checkout */
|
|
7333
|
+
/** Tax is added to the order at the checkout. */
|
|
7334
7334
|
ADDED = "ADDED",
|
|
7335
|
-
/** Tax is added to the final total at the checkout */
|
|
7335
|
+
/** Tax is added to the final total at the checkout. */
|
|
7336
7336
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
7337
7337
|
}
|
|
7338
7338
|
interface Money$5 {
|
|
@@ -7341,9 +7341,9 @@ interface Money$5 {
|
|
|
7341
7341
|
* @deprecated
|
|
7342
7342
|
*/
|
|
7343
7343
|
amount?: string;
|
|
7344
|
-
/** ISO 4217 format of the currency
|
|
7344
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
7345
7345
|
currency?: string;
|
|
7346
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
7346
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
7347
7347
|
value?: string | null;
|
|
7348
7348
|
}
|
|
7349
7349
|
interface ExternalEvent$2 {
|
|
@@ -8197,7 +8197,7 @@ interface Money$4 {
|
|
|
8197
8197
|
amount?: string;
|
|
8198
8198
|
/** Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (e.g., USD). */
|
|
8199
8199
|
currency?: string;
|
|
8200
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
8200
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
8201
8201
|
value?: string | null;
|
|
8202
8202
|
}
|
|
8203
8203
|
interface TicketingTicket$1 {
|
|
@@ -8463,11 +8463,11 @@ interface Tax {
|
|
|
8463
8463
|
amount?: Money$4;
|
|
8464
8464
|
}
|
|
8465
8465
|
declare enum TaxType$2 {
|
|
8466
|
-
/** Tax is included in the ticket price */
|
|
8466
|
+
/** Tax is included in the ticket price. */
|
|
8467
8467
|
INCLUDED = "INCLUDED",
|
|
8468
|
-
/** Tax is added to the order at the checkout */
|
|
8468
|
+
/** Tax is added to the order at the checkout. */
|
|
8469
8469
|
ADDED = "ADDED",
|
|
8470
|
-
/** Tax is added to the final total at the checkout */
|
|
8470
|
+
/** Tax is added to the final total at the checkout. */
|
|
8471
8471
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
8472
8472
|
}
|
|
8473
8473
|
interface Fee {
|
|
@@ -8488,11 +8488,11 @@ declare enum FeeName {
|
|
|
8488
8488
|
WIX_FEE = "WIX_FEE"
|
|
8489
8489
|
}
|
|
8490
8490
|
declare enum FeeType$1 {
|
|
8491
|
-
/** Fee is added to the ticket price at checkout */
|
|
8491
|
+
/** Fee is added to the ticket price at checkout. */
|
|
8492
8492
|
FEE_ADDED = "FEE_ADDED",
|
|
8493
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
8493
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
8494
8494
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
8495
|
-
/** Fee is added to the ticket price at checkout */
|
|
8495
|
+
/** Fee is added to the ticket price at checkout. */
|
|
8496
8496
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
8497
8497
|
}
|
|
8498
8498
|
interface PaymentDetails {
|
|
@@ -8681,7 +8681,7 @@ interface ListOrdersResponse {
|
|
|
8681
8681
|
orderFacets?: OrderFacets;
|
|
8682
8682
|
}
|
|
8683
8683
|
interface FacetCounts$5 {
|
|
8684
|
-
/** Facet counts aggregated per value */
|
|
8684
|
+
/** Facet counts aggregated per value. */
|
|
8685
8685
|
counts?: Record<string, number>;
|
|
8686
8686
|
}
|
|
8687
8687
|
interface OrderFacets {
|
|
@@ -13887,7 +13887,7 @@ interface Money$3 {
|
|
|
13887
13887
|
amount?: string;
|
|
13888
13888
|
/** Currency in the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) format. For example, `USD`. */
|
|
13889
13889
|
currency?: string;
|
|
13890
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
13890
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
13891
13891
|
value?: string | null;
|
|
13892
13892
|
}
|
|
13893
13893
|
interface CheckIn {
|
|
@@ -14141,7 +14141,7 @@ interface ListTicketsResponse {
|
|
|
14141
14141
|
facets?: Record<string, FacetCounts$3>;
|
|
14142
14142
|
}
|
|
14143
14143
|
interface FacetCounts$3 {
|
|
14144
|
-
/** Facet counts aggregated per value */
|
|
14144
|
+
/** Facet counts aggregated per value. */
|
|
14145
14145
|
counts?: Record<string, number>;
|
|
14146
14146
|
}
|
|
14147
14147
|
interface TicketFacets {
|
|
@@ -14735,7 +14735,7 @@ interface Money$2 {
|
|
|
14735
14735
|
* [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
|
|
14736
14736
|
*/
|
|
14737
14737
|
currency?: string;
|
|
14738
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
14738
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
14739
14739
|
value?: string | null;
|
|
14740
14740
|
}
|
|
14741
14741
|
interface Dashboard$2 {
|
|
@@ -14768,11 +14768,11 @@ interface WixFeeConfig {
|
|
|
14768
14768
|
type?: FeeType;
|
|
14769
14769
|
}
|
|
14770
14770
|
declare enum FeeType {
|
|
14771
|
-
/** Fee is added to the ticket price at checkout */
|
|
14771
|
+
/** Fee is added to the ticket price at checkout. */
|
|
14772
14772
|
FEE_ADDED = "FEE_ADDED",
|
|
14773
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
14773
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
14774
14774
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
14775
|
-
/** Fee is added to the ticket price at checkout */
|
|
14775
|
+
/** Fee is added to the ticket price at checkout. */
|
|
14776
14776
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
14777
14777
|
}
|
|
14778
14778
|
interface TicketSalePeriod {
|
|
@@ -14871,7 +14871,7 @@ interface QueryTicketDefinitionsResponse$1 {
|
|
|
14871
14871
|
facets?: Record<string, FacetCounts$2>;
|
|
14872
14872
|
}
|
|
14873
14873
|
interface FacetCounts$2 {
|
|
14874
|
-
/** Facet counts aggregated per value */
|
|
14874
|
+
/** Facet counts aggregated per value. */
|
|
14875
14875
|
counts?: Record<string, number>;
|
|
14876
14876
|
}
|
|
14877
14877
|
interface QueryTicketDefinitionsV2Request {
|
|
@@ -14884,17 +14884,15 @@ interface QueryV2$3 extends QueryV2PagingMethodOneOf$3 {
|
|
|
14884
14884
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
14885
14885
|
cursorPaging?: CursorPaging$3;
|
|
14886
14886
|
/**
|
|
14887
|
-
* Filter object
|
|
14888
|
-
*
|
|
14889
|
-
*
|
|
14890
|
-
* "fieldName2":{"$operator":"value2"}
|
|
14891
|
-
* }`
|
|
14892
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
14887
|
+
* Filter object.
|
|
14888
|
+
*
|
|
14889
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
14893
14890
|
*/
|
|
14894
14891
|
filter?: Record<string, any> | null;
|
|
14895
14892
|
/**
|
|
14896
|
-
* Sort object
|
|
14897
|
-
*
|
|
14893
|
+
* Sort object.
|
|
14894
|
+
*
|
|
14895
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
14898
14896
|
*/
|
|
14899
14897
|
sort?: Sorting$3[];
|
|
14900
14898
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -16801,11 +16799,11 @@ interface Formatted {
|
|
|
16801
16799
|
* For example, 25.5 hours duration is represented as `{ days: 1, hours: 1, minutes: 30 }`.
|
|
16802
16800
|
*/
|
|
16803
16801
|
interface TimeDuration {
|
|
16804
|
-
/** Number of days */
|
|
16802
|
+
/** Number of days. */
|
|
16805
16803
|
days?: number;
|
|
16806
|
-
/** Number of hours */
|
|
16804
|
+
/** Number of hours. */
|
|
16807
16805
|
hours?: number;
|
|
16808
|
-
/** Number of minutes */
|
|
16806
|
+
/** Number of minutes. */
|
|
16809
16807
|
minutes?: number;
|
|
16810
16808
|
}
|
|
16811
16809
|
declare enum Status$1 {
|
|
@@ -17280,9 +17278,9 @@ interface EventsMoney {
|
|
|
17280
17278
|
* @deprecated
|
|
17281
17279
|
*/
|
|
17282
17280
|
amount?: string;
|
|
17283
|
-
/** ISO 4217 format of the currency
|
|
17281
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
17284
17282
|
currency?: string;
|
|
17285
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
17283
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
17286
17284
|
value?: string | null;
|
|
17287
17285
|
}
|
|
17288
17286
|
interface Rsvps {
|
|
@@ -18490,11 +18488,11 @@ interface TaxConfig$1 {
|
|
|
18490
18488
|
appliesToDonations?: boolean | null;
|
|
18491
18489
|
}
|
|
18492
18490
|
declare enum EventsTaxType {
|
|
18493
|
-
/** Tax is included in the ticket price */
|
|
18491
|
+
/** Tax is included in the ticket price. */
|
|
18494
18492
|
INCLUDED = "INCLUDED",
|
|
18495
|
-
/** Tax is added to the order at the checkout */
|
|
18493
|
+
/** Tax is added to the order at the checkout. */
|
|
18496
18494
|
ADDED = "ADDED",
|
|
18497
|
-
/** Tax is added to the final total at the checkout */
|
|
18495
|
+
/** Tax is added to the final total at the checkout. */
|
|
18498
18496
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
18499
18497
|
}
|
|
18500
18498
|
interface ExternalEvent$1 {
|
|
@@ -20178,6 +20176,14 @@ interface SalePeriodUpdated {
|
|
|
20178
20176
|
/** Ticket definition sale period after update. */
|
|
20179
20177
|
afterUpdate?: SalePeriod;
|
|
20180
20178
|
}
|
|
20179
|
+
interface TicketDefinitionSaleStarted {
|
|
20180
|
+
/** Ticket definition. */
|
|
20181
|
+
ticketDefinition?: TicketDefinition;
|
|
20182
|
+
}
|
|
20183
|
+
interface TicketDefinitionSaleEnded {
|
|
20184
|
+
/** Ticket definition. */
|
|
20185
|
+
ticketDefinition?: TicketDefinition;
|
|
20186
|
+
}
|
|
20181
20187
|
interface DomainEvent extends DomainEventBodyOneOf {
|
|
20182
20188
|
createdEvent?: EntityCreatedEvent;
|
|
20183
20189
|
updatedEvent?: EntityUpdatedEvent;
|
|
@@ -21170,11 +21176,11 @@ interface TaxConfig {
|
|
|
21170
21176
|
appliesToDonations?: boolean | null;
|
|
21171
21177
|
}
|
|
21172
21178
|
declare enum TaxType {
|
|
21173
|
-
/** Tax is included in the ticket price */
|
|
21179
|
+
/** Tax is included in the ticket price. */
|
|
21174
21180
|
INCLUDED = "INCLUDED",
|
|
21175
|
-
/** Tax is added to the order at the checkout */
|
|
21181
|
+
/** Tax is added to the order at the checkout. */
|
|
21176
21182
|
ADDED = "ADDED",
|
|
21177
|
-
/** Tax is added to the final total at the checkout */
|
|
21183
|
+
/** Tax is added to the final total at the checkout. */
|
|
21178
21184
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
21179
21185
|
}
|
|
21180
21186
|
interface Money {
|
|
@@ -21183,9 +21189,9 @@ interface Money {
|
|
|
21183
21189
|
* @deprecated
|
|
21184
21190
|
*/
|
|
21185
21191
|
amount?: string;
|
|
21186
|
-
/** ISO 4217 format of the currency
|
|
21192
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
21187
21193
|
currency?: string;
|
|
21188
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
21194
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
21189
21195
|
value?: string | null;
|
|
21190
21196
|
}
|
|
21191
21197
|
interface ExternalEvent {
|
|
@@ -22124,6 +22130,14 @@ interface TicketDefinitionSalePeriodUpdatedEnvelope {
|
|
|
22124
22130
|
data: SalePeriodUpdated;
|
|
22125
22131
|
metadata: EventMetadata;
|
|
22126
22132
|
}
|
|
22133
|
+
interface TicketDefinitionSaleStartedEnvelope {
|
|
22134
|
+
data: TicketDefinitionSaleStarted;
|
|
22135
|
+
metadata: EventMetadata;
|
|
22136
|
+
}
|
|
22137
|
+
interface TicketDefinitionSaleEndedEnvelope {
|
|
22138
|
+
data: TicketDefinitionSaleEnded;
|
|
22139
|
+
metadata: EventMetadata;
|
|
22140
|
+
}
|
|
22127
22141
|
interface CreateTicketDefinitionOptions {
|
|
22128
22142
|
/**
|
|
22129
22143
|
* Predefined sets of fields to return.
|
|
@@ -22449,6 +22463,8 @@ declare const onTicketDefinitionCreated$1: EventDefinition<TicketDefinitionCreat
|
|
|
22449
22463
|
declare const onTicketDefinitionUpdated$1: EventDefinition<TicketDefinitionUpdatedEnvelope, "wix.events.v3.ticket_definition_updated">;
|
|
22450
22464
|
declare const onTicketDefinitionDeleted$1: EventDefinition<TicketDefinitionDeletedEnvelope, "wix.events.v3.ticket_definition_deleted">;
|
|
22451
22465
|
declare const onTicketDefinitionSalePeriodUpdated$1: EventDefinition<TicketDefinitionSalePeriodUpdatedEnvelope, "wix.events.v3.ticket_definition_sale_period_updated">;
|
|
22466
|
+
declare const onTicketDefinitionSaleStarted$1: EventDefinition<TicketDefinitionSaleStartedEnvelope, "wix.events.v3.ticket_definition_sale_started">;
|
|
22467
|
+
declare const onTicketDefinitionSaleEnded$1: EventDefinition<TicketDefinitionSaleEndedEnvelope, "wix.events.v3.ticket_definition_sale_ended">;
|
|
22452
22468
|
|
|
22453
22469
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
22454
22470
|
|
|
@@ -22488,6 +22504,18 @@ type _publicOnTicketDefinitionSalePeriodUpdatedType = typeof onTicketDefinitionS
|
|
|
22488
22504
|
*/
|
|
22489
22505
|
declare const onTicketDefinitionSalePeriodUpdated: ReturnType<typeof createEventModule<_publicOnTicketDefinitionSalePeriodUpdatedType>>;
|
|
22490
22506
|
|
|
22507
|
+
type _publicOnTicketDefinitionSaleStartedType = typeof onTicketDefinitionSaleStarted$1;
|
|
22508
|
+
/**
|
|
22509
|
+
* Triggered when ticket definition sales starts. Sales details are not included.
|
|
22510
|
+
*/
|
|
22511
|
+
declare const onTicketDefinitionSaleStarted: ReturnType<typeof createEventModule<_publicOnTicketDefinitionSaleStartedType>>;
|
|
22512
|
+
|
|
22513
|
+
type _publicOnTicketDefinitionSaleEndedType = typeof onTicketDefinitionSaleEnded$1;
|
|
22514
|
+
/**
|
|
22515
|
+
* Triggered when ticket definition sales ends. Sales details are not included.
|
|
22516
|
+
*/
|
|
22517
|
+
declare const onTicketDefinitionSaleEnded: ReturnType<typeof createEventModule<_publicOnTicketDefinitionSaleEndedType>>;
|
|
22518
|
+
|
|
22491
22519
|
type index_d_ActionEvent = ActionEvent;
|
|
22492
22520
|
type index_d_Address = Address;
|
|
22493
22521
|
type index_d_AddressLocation = AddressLocation;
|
|
@@ -22692,7 +22720,11 @@ type index_d_TicketDefinition = TicketDefinition;
|
|
|
22692
22720
|
type index_d_TicketDefinitionCreatedEnvelope = TicketDefinitionCreatedEnvelope;
|
|
22693
22721
|
type index_d_TicketDefinitionDeletedEnvelope = TicketDefinitionDeletedEnvelope;
|
|
22694
22722
|
type index_d_TicketDefinitionNonNullableFields = TicketDefinitionNonNullableFields;
|
|
22723
|
+
type index_d_TicketDefinitionSaleEnded = TicketDefinitionSaleEnded;
|
|
22724
|
+
type index_d_TicketDefinitionSaleEndedEnvelope = TicketDefinitionSaleEndedEnvelope;
|
|
22695
22725
|
type index_d_TicketDefinitionSalePeriodUpdatedEnvelope = TicketDefinitionSalePeriodUpdatedEnvelope;
|
|
22726
|
+
type index_d_TicketDefinitionSaleStarted = TicketDefinitionSaleStarted;
|
|
22727
|
+
type index_d_TicketDefinitionSaleStartedEnvelope = TicketDefinitionSaleStartedEnvelope;
|
|
22696
22728
|
type index_d_TicketDefinitionSummary = TicketDefinitionSummary;
|
|
22697
22729
|
type index_d_TicketDefinitionUpdatedEnvelope = TicketDefinitionUpdatedEnvelope;
|
|
22698
22730
|
type index_d_TicketDefinitionsQueryBuilder = TicketDefinitionsQueryBuilder;
|
|
@@ -22720,7 +22752,9 @@ type index_d_WebhookIdentityType = WebhookIdentityType;
|
|
|
22720
22752
|
declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
|
|
22721
22753
|
type index_d__publicOnTicketDefinitionCreatedType = _publicOnTicketDefinitionCreatedType;
|
|
22722
22754
|
type index_d__publicOnTicketDefinitionDeletedType = _publicOnTicketDefinitionDeletedType;
|
|
22755
|
+
type index_d__publicOnTicketDefinitionSaleEndedType = _publicOnTicketDefinitionSaleEndedType;
|
|
22723
22756
|
type index_d__publicOnTicketDefinitionSalePeriodUpdatedType = _publicOnTicketDefinitionSalePeriodUpdatedType;
|
|
22757
|
+
type index_d__publicOnTicketDefinitionSaleStartedType = _publicOnTicketDefinitionSaleStartedType;
|
|
22724
22758
|
type index_d__publicOnTicketDefinitionUpdatedType = _publicOnTicketDefinitionUpdatedType;
|
|
22725
22759
|
declare const index_d_bulkDeleteTicketDefinitionsByFilter: typeof bulkDeleteTicketDefinitionsByFilter;
|
|
22726
22760
|
declare const index_d_changeCurrency: typeof changeCurrency;
|
|
@@ -22731,14 +22765,16 @@ declare const index_d_deleteTicketDefinition: typeof deleteTicketDefinition;
|
|
|
22731
22765
|
declare const index_d_getTicketDefinition: typeof getTicketDefinition;
|
|
22732
22766
|
declare const index_d_onTicketDefinitionCreated: typeof onTicketDefinitionCreated;
|
|
22733
22767
|
declare const index_d_onTicketDefinitionDeleted: typeof onTicketDefinitionDeleted;
|
|
22768
|
+
declare const index_d_onTicketDefinitionSaleEnded: typeof onTicketDefinitionSaleEnded;
|
|
22734
22769
|
declare const index_d_onTicketDefinitionSalePeriodUpdated: typeof onTicketDefinitionSalePeriodUpdated;
|
|
22770
|
+
declare const index_d_onTicketDefinitionSaleStarted: typeof onTicketDefinitionSaleStarted;
|
|
22735
22771
|
declare const index_d_onTicketDefinitionUpdated: typeof onTicketDefinitionUpdated;
|
|
22736
22772
|
declare const index_d_queryAvailableTicketDefinitions: typeof queryAvailableTicketDefinitions;
|
|
22737
22773
|
declare const index_d_queryTicketDefinitions: typeof queryTicketDefinitions;
|
|
22738
22774
|
declare const index_d_reorderTicketDefinitions: typeof reorderTicketDefinitions;
|
|
22739
22775
|
declare const index_d_updateTicketDefinition: typeof updateTicketDefinition;
|
|
22740
22776
|
declare namespace index_d {
|
|
22741
|
-
export { type index_d_ActionEvent as ActionEvent, type index_d_Address as Address, type index_d_AddressLocation as AddressLocation, type index_d_AddressStreetOneOf as AddressStreetOneOf, type index_d_Agenda as Agenda, type index_d_App as App, type index_d_Asset as Asset, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BulkCopyTicketDefinitionsByEventIdRequest as BulkCopyTicketDefinitionsByEventIdRequest, type index_d_BulkCopyTicketDefinitionsByEventIdResponse as BulkCopyTicketDefinitionsByEventIdResponse, type index_d_BulkDeleteTicketDefinitionsByFilterRequest as BulkDeleteTicketDefinitionsByFilterRequest, type index_d_BulkDeleteTicketDefinitionsByFilterResponse as BulkDeleteTicketDefinitionsByFilterResponse, type index_d_CalendarLinks as CalendarLinks, type index_d_Category as Category, type index_d_CategoryCounts as CategoryCounts, type index_d_CategoryDetails as CategoryDetails, index_d_CategoryStateState as CategoryStateState, type index_d_ChangeCurrencyOptions as ChangeCurrencyOptions, type index_d_ChangeCurrencyRequest as ChangeCurrencyRequest, type index_d_ChangeCurrencyResponse as ChangeCurrencyResponse, type index_d_CheckoutFormMessages as CheckoutFormMessages, type index_d_CommonMoney as CommonMoney, index_d_ConferenceType as ConferenceType, type index_d_CopiedTicketDefinition as CopiedTicketDefinition, type index_d_CountAvailableTicketDefinitionsOptions as CountAvailableTicketDefinitionsOptions, type index_d_CountAvailableTicketDefinitionsRequest as CountAvailableTicketDefinitionsRequest, type index_d_CountAvailableTicketDefinitionsResponse as CountAvailableTicketDefinitionsResponse, type index_d_CountTicketDefinitionsOptions as CountTicketDefinitionsOptions, type index_d_CountTicketDefinitionsRequest as CountTicketDefinitionsRequest, type index_d_CountTicketDefinitionsResponse as CountTicketDefinitionsResponse, type index_d_CreateTicketDefinitionOptions as CreateTicketDefinitionOptions, type index_d_CreateTicketDefinitionRequest as CreateTicketDefinitionRequest, type index_d_CreateTicketDefinitionResponse as CreateTicketDefinitionResponse, type index_d_CreateTicketDefinitionResponseNonNullableFields as CreateTicketDefinitionResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_Dashboard as Dashboard, type index_d_DeleteContext as DeleteContext, index_d_DeleteStatus as DeleteStatus, type index_d_DeleteTicketDefinitionRequest as DeleteTicketDefinitionRequest, type index_d_DeleteTicketDefinitionResponse as DeleteTicketDefinitionResponse, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_Event as Event, type index_d_EventCanceled as EventCanceled, type index_d_EventCreated as EventCreated, type index_d_EventDeleted as EventDeleted, type index_d_EventDisplaySettings as EventDisplaySettings, type index_d_EventEnded as EventEnded, type index_d_EventMetadata as EventMetadata, index_d_EventStatus as EventStatus, type index_d_EventTicketingSummary as EventTicketingSummary, index_d_EventType as EventType, type index_d_EventUpdated as EventUpdated, type index_d_ExtendedFields as ExtendedFields, type index_d_ExternalEvent as ExternalEvent, type index_d_FacetCounts as FacetCounts, type index_d_Feed as Feed, index_d_Field as Field, type index_d_File as File, type index_d_Form as Form, type index_d_FormMessages as FormMessages, type index_d_GetTicketDefinitionFromTrashBinRequest as GetTicketDefinitionFromTrashBinRequest, type index_d_GetTicketDefinitionFromTrashBinResponse as GetTicketDefinitionFromTrashBinResponse, type index_d_GetTicketDefinitionOptions as GetTicketDefinitionOptions, type index_d_GetTicketDefinitionRequest as GetTicketDefinitionRequest, type index_d_GetTicketDefinitionResponse as GetTicketDefinitionResponse, type index_d_GetTicketDefinitionResponseNonNullableFields as GetTicketDefinitionResponseNonNullableFields, type index_d_GetTicketDefinitionSummaryRequest as GetTicketDefinitionSummaryRequest, type index_d_GetTicketDefinitionSummaryResponse as GetTicketDefinitionSummaryResponse, type index_d_GuestListConfig as GuestListConfig, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Input as Input, type index_d_InputControl as InputControl, index_d_InputControlType as InputControlType, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_Keyword as Keyword, type index_d_Label as Label, type index_d_LabellingSettings as LabellingSettings, type index_d_ListEventTicketingSummaryRequest as ListEventTicketingSummaryRequest, type index_d_ListEventTicketingSummaryResponse as ListEventTicketingSummaryResponse, type index_d_Location as Location, index_d_LocationType as LocationType, type index_d_MapCoordinates as MapCoordinates, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, type index_d_Money as Money, index_d_Namespace as Namespace, type index_d_NamespaceChanged as NamespaceChanged, type index_d_Negative as Negative, type index_d_NegativeResponseConfirmation as NegativeResponseConfirmation, type index_d_Occurrence as Occurrence, type index_d_OnlineConferencing as OnlineConferencing, type index_d_OnlineConferencingConfig as OnlineConferencingConfig, type index_d_OnlineConferencingSession as OnlineConferencingSession, type index_d_OptionDetails as OptionDetails, type index_d_OptionSelection as OptionSelection, type index_d_OptionSelectionSelectedOptionOneOf as OptionSelectionSelectedOptionOneOf, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_Positive as Positive, type index_d_PositiveResponseConfirmation as PositiveResponseConfirmation, type index_d_PricingMethod as PricingMethod, type index_d_PricingMethodPriceOneOf as PricingMethodPriceOneOf, type index_d_PricingOptions as PricingOptions, index_d_PricingTypeEnumType as PricingTypeEnumType, type index_d_QueryAvailableTicketDefinitionsOptions as QueryAvailableTicketDefinitionsOptions, type index_d_QueryAvailableTicketDefinitionsRequest as QueryAvailableTicketDefinitionsRequest, type index_d_QueryAvailableTicketDefinitionsResponse as QueryAvailableTicketDefinitionsResponse, type index_d_QueryAvailableTicketDefinitionsResponseNonNullableFields as QueryAvailableTicketDefinitionsResponseNonNullableFields, type index_d_QueryTicketDefinitionsOptions as QueryTicketDefinitionsOptions, type index_d_QueryTicketDefinitionsRequest as QueryTicketDefinitionsRequest, type index_d_QueryTicketDefinitionsResponse as QueryTicketDefinitionsResponse, type index_d_QueryTicketDefinitionsResponseNonNullableFields as QueryTicketDefinitionsResponseNonNullableFields, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_Recurrences as Recurrences, type index_d_Registration as Registration, type index_d_RegistrationClosedMessages as RegistrationClosedMessages, index_d_RegistrationStatus as RegistrationStatus, type index_d_ReorderTicketDefinitionsOptions as ReorderTicketDefinitionsOptions, type index_d_ReorderTicketDefinitionsRequest as ReorderTicketDefinitionsRequest, type index_d_ReorderTicketDefinitionsRequestReferenceDefinitionOneOf as ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type index_d_ReorderTicketDefinitionsResponse as ReorderTicketDefinitionsResponse, type index_d_ReservationCount as ReservationCount, type index_d_ReservationCreated as ReservationCreated, index_d_ReservationStatus as ReservationStatus, type index_d_ReservationUpdated as ReservationUpdated, type index_d_ResponseConfirmation as ResponseConfirmation, type index_d_RestoreInfo as RestoreInfo, type index_d_RsvpCollection as RsvpCollection, type index_d_RsvpCollectionConfig as RsvpCollectionConfig, type index_d_RsvpFormMessages as RsvpFormMessages, index_d_RsvpStatusOptions as RsvpStatusOptions, type index_d_RsvpSummary as RsvpSummary, type index_d_SalePeriod as SalePeriod, type index_d_SalePeriodUpdated as SalePeriodUpdated, index_d_SaleStatusEnumStatus as SaleStatusEnumStatus, type index_d_SalesDetails as SalesDetails, type index_d_ScheduleConfig as ScheduleConfig, type index_d_ScheduleLegacyTimeCapsuleTaskRequest as ScheduleLegacyTimeCapsuleTaskRequest, type index_d_Scheduling as Scheduling, type index_d_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type index_d_SeoSchema as SeoSchema, type index_d_SeoSettings as SeoSettings, type index_d_ServiceProvisioned as ServiceProvisioned, type index_d_ServiceRemoved as ServiceRemoved, type index_d_Settings as Settings, type index_d_SiteCreated as SiteCreated, index_d_SiteCreatedContext as SiteCreatedContext, type index_d_SiteDeleted as SiteDeleted, type index_d_SiteHardDeleted as SiteHardDeleted, type index_d_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type index_d_SitePublished as SitePublished, type index_d_SiteRenamed as SiteRenamed, type index_d_SiteTransferred as SiteTransferred, type index_d_SiteUndeleted as SiteUndeleted, type index_d_SiteUnpublished as SiteUnpublished, type index_d_SiteUrl as SiteUrl, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_State as State, index_d_Status as Status, type index_d_StreetAddress as StreetAddress, type index_d_StudioAssigned as StudioAssigned, type index_d_StudioUnassigned as StudioUnassigned, type index_d_Subdivision as Subdivision, index_d_SubdivisionType as SubdivisionType, type index_d_Tag as Tag, type index_d_TaxConfig as TaxConfig, index_d_TaxType as TaxType, type index_d_TicketDefinition as TicketDefinition, type index_d_TicketDefinitionCreatedEnvelope as TicketDefinitionCreatedEnvelope, type index_d_TicketDefinitionDeletedEnvelope as TicketDefinitionDeletedEnvelope, type index_d_TicketDefinitionNonNullableFields as TicketDefinitionNonNullableFields, type index_d_TicketDefinitionSalePeriodUpdatedEnvelope as TicketDefinitionSalePeriodUpdatedEnvelope, type index_d_TicketDefinitionSummary as TicketDefinitionSummary, type index_d_TicketDefinitionUpdatedEnvelope as TicketDefinitionUpdatedEnvelope, type index_d_TicketDefinitionsQueryBuilder as TicketDefinitionsQueryBuilder, type index_d_TicketDefinitionsQueryResult as TicketDefinitionsQueryResult, type index_d_TicketQuantity as TicketQuantity, type index_d_Ticketing as Ticketing, type index_d_TicketingConfig as TicketingConfig, type index_d_TicketingSummary as TicketingSummary, type index_d_TicketsUnavailableMessages as TicketsUnavailableMessages, index_d_Type as Type, type index_d_URI as URI, type index_d_UpdateTicketDefinition as UpdateTicketDefinition, type index_d_UpdateTicketDefinitionOptions as UpdateTicketDefinitionOptions, type index_d_UpdateTicketDefinitionRequest as UpdateTicketDefinitionRequest, type index_d_UpdateTicketDefinitionResponse as UpdateTicketDefinitionResponse, type index_d_UpdateTicketDefinitionResponseNonNullableFields as UpdateTicketDefinitionResponseNonNullableFields, type index_d_UpdateTicketDefinitionSortIndexRequest as UpdateTicketDefinitionSortIndexRequest, type index_d_UpdateTicketDefinitionSortIndexResponse as UpdateTicketDefinitionSortIndexResponse, index_d_ValueType as ValueType, index_d_VisitorType as VisitorType, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicOnTicketDefinitionCreatedType as _publicOnTicketDefinitionCreatedType, type index_d__publicOnTicketDefinitionDeletedType as _publicOnTicketDefinitionDeletedType, type index_d__publicOnTicketDefinitionSalePeriodUpdatedType as _publicOnTicketDefinitionSalePeriodUpdatedType, type index_d__publicOnTicketDefinitionUpdatedType as _publicOnTicketDefinitionUpdatedType, index_d_bulkDeleteTicketDefinitionsByFilter as bulkDeleteTicketDefinitionsByFilter, index_d_changeCurrency as changeCurrency, index_d_countAvailableTicketDefinitions as countAvailableTicketDefinitions, index_d_countTicketDefinitions as countTicketDefinitions, index_d_createTicketDefinition as createTicketDefinition, index_d_deleteTicketDefinition as deleteTicketDefinition, index_d_getTicketDefinition as getTicketDefinition, index_d_onTicketDefinitionCreated as onTicketDefinitionCreated, index_d_onTicketDefinitionDeleted as onTicketDefinitionDeleted, index_d_onTicketDefinitionSalePeriodUpdated as onTicketDefinitionSalePeriodUpdated, index_d_onTicketDefinitionUpdated as onTicketDefinitionUpdated, onTicketDefinitionCreated$1 as publicOnTicketDefinitionCreated, onTicketDefinitionDeleted$1 as publicOnTicketDefinitionDeleted, onTicketDefinitionSalePeriodUpdated$1 as publicOnTicketDefinitionSalePeriodUpdated, onTicketDefinitionUpdated$1 as publicOnTicketDefinitionUpdated, index_d_queryAvailableTicketDefinitions as queryAvailableTicketDefinitions, index_d_queryTicketDefinitions as queryTicketDefinitions, index_d_reorderTicketDefinitions as reorderTicketDefinitions, index_d_updateTicketDefinition as updateTicketDefinition };
|
|
22777
|
+
export { type index_d_ActionEvent as ActionEvent, type index_d_Address as Address, type index_d_AddressLocation as AddressLocation, type index_d_AddressStreetOneOf as AddressStreetOneOf, type index_d_Agenda as Agenda, type index_d_App as App, type index_d_Asset as Asset, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BulkCopyTicketDefinitionsByEventIdRequest as BulkCopyTicketDefinitionsByEventIdRequest, type index_d_BulkCopyTicketDefinitionsByEventIdResponse as BulkCopyTicketDefinitionsByEventIdResponse, type index_d_BulkDeleteTicketDefinitionsByFilterRequest as BulkDeleteTicketDefinitionsByFilterRequest, type index_d_BulkDeleteTicketDefinitionsByFilterResponse as BulkDeleteTicketDefinitionsByFilterResponse, type index_d_CalendarLinks as CalendarLinks, type index_d_Category as Category, type index_d_CategoryCounts as CategoryCounts, type index_d_CategoryDetails as CategoryDetails, index_d_CategoryStateState as CategoryStateState, type index_d_ChangeCurrencyOptions as ChangeCurrencyOptions, type index_d_ChangeCurrencyRequest as ChangeCurrencyRequest, type index_d_ChangeCurrencyResponse as ChangeCurrencyResponse, type index_d_CheckoutFormMessages as CheckoutFormMessages, type index_d_CommonMoney as CommonMoney, index_d_ConferenceType as ConferenceType, type index_d_CopiedTicketDefinition as CopiedTicketDefinition, type index_d_CountAvailableTicketDefinitionsOptions as CountAvailableTicketDefinitionsOptions, type index_d_CountAvailableTicketDefinitionsRequest as CountAvailableTicketDefinitionsRequest, type index_d_CountAvailableTicketDefinitionsResponse as CountAvailableTicketDefinitionsResponse, type index_d_CountTicketDefinitionsOptions as CountTicketDefinitionsOptions, type index_d_CountTicketDefinitionsRequest as CountTicketDefinitionsRequest, type index_d_CountTicketDefinitionsResponse as CountTicketDefinitionsResponse, type index_d_CreateTicketDefinitionOptions as CreateTicketDefinitionOptions, type index_d_CreateTicketDefinitionRequest as CreateTicketDefinitionRequest, type index_d_CreateTicketDefinitionResponse as CreateTicketDefinitionResponse, type index_d_CreateTicketDefinitionResponseNonNullableFields as CreateTicketDefinitionResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_Dashboard as Dashboard, type index_d_DeleteContext as DeleteContext, index_d_DeleteStatus as DeleteStatus, type index_d_DeleteTicketDefinitionRequest as DeleteTicketDefinitionRequest, type index_d_DeleteTicketDefinitionResponse as DeleteTicketDefinitionResponse, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_Event as Event, type index_d_EventCanceled as EventCanceled, type index_d_EventCreated as EventCreated, type index_d_EventDeleted as EventDeleted, type index_d_EventDisplaySettings as EventDisplaySettings, type index_d_EventEnded as EventEnded, type index_d_EventMetadata as EventMetadata, index_d_EventStatus as EventStatus, type index_d_EventTicketingSummary as EventTicketingSummary, index_d_EventType as EventType, type index_d_EventUpdated as EventUpdated, type index_d_ExtendedFields as ExtendedFields, type index_d_ExternalEvent as ExternalEvent, type index_d_FacetCounts as FacetCounts, type index_d_Feed as Feed, index_d_Field as Field, type index_d_File as File, type index_d_Form as Form, type index_d_FormMessages as FormMessages, type index_d_GetTicketDefinitionFromTrashBinRequest as GetTicketDefinitionFromTrashBinRequest, type index_d_GetTicketDefinitionFromTrashBinResponse as GetTicketDefinitionFromTrashBinResponse, type index_d_GetTicketDefinitionOptions as GetTicketDefinitionOptions, type index_d_GetTicketDefinitionRequest as GetTicketDefinitionRequest, type index_d_GetTicketDefinitionResponse as GetTicketDefinitionResponse, type index_d_GetTicketDefinitionResponseNonNullableFields as GetTicketDefinitionResponseNonNullableFields, type index_d_GetTicketDefinitionSummaryRequest as GetTicketDefinitionSummaryRequest, type index_d_GetTicketDefinitionSummaryResponse as GetTicketDefinitionSummaryResponse, type index_d_GuestListConfig as GuestListConfig, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Input as Input, type index_d_InputControl as InputControl, index_d_InputControlType as InputControlType, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_Keyword as Keyword, type index_d_Label as Label, type index_d_LabellingSettings as LabellingSettings, type index_d_ListEventTicketingSummaryRequest as ListEventTicketingSummaryRequest, type index_d_ListEventTicketingSummaryResponse as ListEventTicketingSummaryResponse, type index_d_Location as Location, index_d_LocationType as LocationType, type index_d_MapCoordinates as MapCoordinates, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, type index_d_Money as Money, index_d_Namespace as Namespace, type index_d_NamespaceChanged as NamespaceChanged, type index_d_Negative as Negative, type index_d_NegativeResponseConfirmation as NegativeResponseConfirmation, type index_d_Occurrence as Occurrence, type index_d_OnlineConferencing as OnlineConferencing, type index_d_OnlineConferencingConfig as OnlineConferencingConfig, type index_d_OnlineConferencingSession as OnlineConferencingSession, type index_d_OptionDetails as OptionDetails, type index_d_OptionSelection as OptionSelection, type index_d_OptionSelectionSelectedOptionOneOf as OptionSelectionSelectedOptionOneOf, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_Positive as Positive, type index_d_PositiveResponseConfirmation as PositiveResponseConfirmation, type index_d_PricingMethod as PricingMethod, type index_d_PricingMethodPriceOneOf as PricingMethodPriceOneOf, type index_d_PricingOptions as PricingOptions, index_d_PricingTypeEnumType as PricingTypeEnumType, type index_d_QueryAvailableTicketDefinitionsOptions as QueryAvailableTicketDefinitionsOptions, type index_d_QueryAvailableTicketDefinitionsRequest as QueryAvailableTicketDefinitionsRequest, type index_d_QueryAvailableTicketDefinitionsResponse as QueryAvailableTicketDefinitionsResponse, type index_d_QueryAvailableTicketDefinitionsResponseNonNullableFields as QueryAvailableTicketDefinitionsResponseNonNullableFields, type index_d_QueryTicketDefinitionsOptions as QueryTicketDefinitionsOptions, type index_d_QueryTicketDefinitionsRequest as QueryTicketDefinitionsRequest, type index_d_QueryTicketDefinitionsResponse as QueryTicketDefinitionsResponse, type index_d_QueryTicketDefinitionsResponseNonNullableFields as QueryTicketDefinitionsResponseNonNullableFields, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_Recurrences as Recurrences, type index_d_Registration as Registration, type index_d_RegistrationClosedMessages as RegistrationClosedMessages, index_d_RegistrationStatus as RegistrationStatus, type index_d_ReorderTicketDefinitionsOptions as ReorderTicketDefinitionsOptions, type index_d_ReorderTicketDefinitionsRequest as ReorderTicketDefinitionsRequest, type index_d_ReorderTicketDefinitionsRequestReferenceDefinitionOneOf as ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type index_d_ReorderTicketDefinitionsResponse as ReorderTicketDefinitionsResponse, type index_d_ReservationCount as ReservationCount, type index_d_ReservationCreated as ReservationCreated, index_d_ReservationStatus as ReservationStatus, type index_d_ReservationUpdated as ReservationUpdated, type index_d_ResponseConfirmation as ResponseConfirmation, type index_d_RestoreInfo as RestoreInfo, type index_d_RsvpCollection as RsvpCollection, type index_d_RsvpCollectionConfig as RsvpCollectionConfig, type index_d_RsvpFormMessages as RsvpFormMessages, index_d_RsvpStatusOptions as RsvpStatusOptions, type index_d_RsvpSummary as RsvpSummary, type index_d_SalePeriod as SalePeriod, type index_d_SalePeriodUpdated as SalePeriodUpdated, index_d_SaleStatusEnumStatus as SaleStatusEnumStatus, type index_d_SalesDetails as SalesDetails, type index_d_ScheduleConfig as ScheduleConfig, type index_d_ScheduleLegacyTimeCapsuleTaskRequest as ScheduleLegacyTimeCapsuleTaskRequest, type index_d_Scheduling as Scheduling, type index_d_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type index_d_SeoSchema as SeoSchema, type index_d_SeoSettings as SeoSettings, type index_d_ServiceProvisioned as ServiceProvisioned, type index_d_ServiceRemoved as ServiceRemoved, type index_d_Settings as Settings, type index_d_SiteCreated as SiteCreated, index_d_SiteCreatedContext as SiteCreatedContext, type index_d_SiteDeleted as SiteDeleted, type index_d_SiteHardDeleted as SiteHardDeleted, type index_d_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type index_d_SitePublished as SitePublished, type index_d_SiteRenamed as SiteRenamed, type index_d_SiteTransferred as SiteTransferred, type index_d_SiteUndeleted as SiteUndeleted, type index_d_SiteUnpublished as SiteUnpublished, type index_d_SiteUrl as SiteUrl, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_State as State, index_d_Status as Status, type index_d_StreetAddress as StreetAddress, type index_d_StudioAssigned as StudioAssigned, type index_d_StudioUnassigned as StudioUnassigned, type index_d_Subdivision as Subdivision, index_d_SubdivisionType as SubdivisionType, type index_d_Tag as Tag, type index_d_TaxConfig as TaxConfig, index_d_TaxType as TaxType, type index_d_TicketDefinition as TicketDefinition, type index_d_TicketDefinitionCreatedEnvelope as TicketDefinitionCreatedEnvelope, type index_d_TicketDefinitionDeletedEnvelope as TicketDefinitionDeletedEnvelope, type index_d_TicketDefinitionNonNullableFields as TicketDefinitionNonNullableFields, type index_d_TicketDefinitionSaleEnded as TicketDefinitionSaleEnded, type index_d_TicketDefinitionSaleEndedEnvelope as TicketDefinitionSaleEndedEnvelope, type index_d_TicketDefinitionSalePeriodUpdatedEnvelope as TicketDefinitionSalePeriodUpdatedEnvelope, type index_d_TicketDefinitionSaleStarted as TicketDefinitionSaleStarted, type index_d_TicketDefinitionSaleStartedEnvelope as TicketDefinitionSaleStartedEnvelope, type index_d_TicketDefinitionSummary as TicketDefinitionSummary, type index_d_TicketDefinitionUpdatedEnvelope as TicketDefinitionUpdatedEnvelope, type index_d_TicketDefinitionsQueryBuilder as TicketDefinitionsQueryBuilder, type index_d_TicketDefinitionsQueryResult as TicketDefinitionsQueryResult, type index_d_TicketQuantity as TicketQuantity, type index_d_Ticketing as Ticketing, type index_d_TicketingConfig as TicketingConfig, type index_d_TicketingSummary as TicketingSummary, type index_d_TicketsUnavailableMessages as TicketsUnavailableMessages, index_d_Type as Type, type index_d_URI as URI, type index_d_UpdateTicketDefinition as UpdateTicketDefinition, type index_d_UpdateTicketDefinitionOptions as UpdateTicketDefinitionOptions, type index_d_UpdateTicketDefinitionRequest as UpdateTicketDefinitionRequest, type index_d_UpdateTicketDefinitionResponse as UpdateTicketDefinitionResponse, type index_d_UpdateTicketDefinitionResponseNonNullableFields as UpdateTicketDefinitionResponseNonNullableFields, type index_d_UpdateTicketDefinitionSortIndexRequest as UpdateTicketDefinitionSortIndexRequest, type index_d_UpdateTicketDefinitionSortIndexResponse as UpdateTicketDefinitionSortIndexResponse, index_d_ValueType as ValueType, index_d_VisitorType as VisitorType, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicOnTicketDefinitionCreatedType as _publicOnTicketDefinitionCreatedType, type index_d__publicOnTicketDefinitionDeletedType as _publicOnTicketDefinitionDeletedType, type index_d__publicOnTicketDefinitionSaleEndedType as _publicOnTicketDefinitionSaleEndedType, type index_d__publicOnTicketDefinitionSalePeriodUpdatedType as _publicOnTicketDefinitionSalePeriodUpdatedType, type index_d__publicOnTicketDefinitionSaleStartedType as _publicOnTicketDefinitionSaleStartedType, type index_d__publicOnTicketDefinitionUpdatedType as _publicOnTicketDefinitionUpdatedType, index_d_bulkDeleteTicketDefinitionsByFilter as bulkDeleteTicketDefinitionsByFilter, index_d_changeCurrency as changeCurrency, index_d_countAvailableTicketDefinitions as countAvailableTicketDefinitions, index_d_countTicketDefinitions as countTicketDefinitions, index_d_createTicketDefinition as createTicketDefinition, index_d_deleteTicketDefinition as deleteTicketDefinition, index_d_getTicketDefinition as getTicketDefinition, index_d_onTicketDefinitionCreated as onTicketDefinitionCreated, index_d_onTicketDefinitionDeleted as onTicketDefinitionDeleted, index_d_onTicketDefinitionSaleEnded as onTicketDefinitionSaleEnded, index_d_onTicketDefinitionSalePeriodUpdated as onTicketDefinitionSalePeriodUpdated, index_d_onTicketDefinitionSaleStarted as onTicketDefinitionSaleStarted, index_d_onTicketDefinitionUpdated as onTicketDefinitionUpdated, onTicketDefinitionCreated$1 as publicOnTicketDefinitionCreated, onTicketDefinitionDeleted$1 as publicOnTicketDefinitionDeleted, onTicketDefinitionSaleEnded$1 as publicOnTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated$1 as publicOnTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted$1 as publicOnTicketDefinitionSaleStarted, onTicketDefinitionUpdated$1 as publicOnTicketDefinitionUpdated, index_d_queryAvailableTicketDefinitions as queryAvailableTicketDefinitions, index_d_queryTicketDefinitions as queryTicketDefinitions, index_d_reorderTicketDefinitions as reorderTicketDefinitions, index_d_updateTicketDefinition as updateTicketDefinition };
|
|
22742
22778
|
}
|
|
22743
22779
|
|
|
22744
22780
|
export { index_d$9 as categories, index_d$8 as forms, index_d$e as guests, index_d$d as notifications, index_d$7 as orders, index_d$2 as policies, index_d$6 as ricos, index_d$5 as rsvp, index_d$b as schedule, index_d$c as scheduleBookmarks, index_d$a as staffMembers, index_d$3 as ticketDefinitions, index_d as ticketDefinitionsV2, index_d$4 as tickets, index_d$1 as wixEventsV2 };
|
|
@@ -1356,7 +1356,7 @@ interface ListScheduleItemsResponse$1 {
|
|
|
1356
1356
|
pagingMetadata?: PagingMetadataV2$b;
|
|
1357
1357
|
}
|
|
1358
1358
|
interface FacetCounts$d {
|
|
1359
|
-
/** Facet counts aggregated per value */
|
|
1359
|
+
/** Facet counts aggregated per value. */
|
|
1360
1360
|
counts?: Record<string, number>;
|
|
1361
1361
|
}
|
|
1362
1362
|
interface PagingMetadataV2$b {
|
|
@@ -1692,7 +1692,7 @@ interface ListScheduleItemsResponse {
|
|
|
1692
1692
|
pagingMetadata?: PagingMetadataV2$a;
|
|
1693
1693
|
}
|
|
1694
1694
|
interface FacetCounts$c {
|
|
1695
|
-
/** Facet counts aggregated per value */
|
|
1695
|
+
/** Facet counts aggregated per value. */
|
|
1696
1696
|
counts?: Record<string, number>;
|
|
1697
1697
|
}
|
|
1698
1698
|
interface PagingMetadataV2$a {
|
|
@@ -4502,9 +4502,9 @@ interface Money$7 {
|
|
|
4502
4502
|
* @deprecated
|
|
4503
4503
|
*/
|
|
4504
4504
|
amount?: string;
|
|
4505
|
-
/** ISO 4217 format of the currency
|
|
4505
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
4506
4506
|
currency?: string;
|
|
4507
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
4507
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
4508
4508
|
value?: string | null;
|
|
4509
4509
|
}
|
|
4510
4510
|
interface TicketingTicket$3 {
|
|
@@ -4769,11 +4769,11 @@ interface Tax$1 {
|
|
|
4769
4769
|
amount?: Money$7;
|
|
4770
4770
|
}
|
|
4771
4771
|
declare enum TaxType$3 {
|
|
4772
|
-
/** Tax is included in the ticket price */
|
|
4772
|
+
/** Tax is included in the ticket price. */
|
|
4773
4773
|
INCLUDED = "INCLUDED",
|
|
4774
|
-
/** Tax is added to the order at the checkout */
|
|
4774
|
+
/** Tax is added to the order at the checkout. */
|
|
4775
4775
|
ADDED = "ADDED",
|
|
4776
|
-
/** Tax is added to the final total at the checkout */
|
|
4776
|
+
/** Tax is added to the final total at the checkout. */
|
|
4777
4777
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
4778
4778
|
}
|
|
4779
4779
|
interface Fee$1 {
|
|
@@ -4794,11 +4794,11 @@ declare enum FeeName$1 {
|
|
|
4794
4794
|
WIX_FEE = "WIX_FEE"
|
|
4795
4795
|
}
|
|
4796
4796
|
declare enum FeeType$3 {
|
|
4797
|
-
/** Fee is added to the ticket price at checkout */
|
|
4797
|
+
/** Fee is added to the ticket price at checkout. */
|
|
4798
4798
|
FEE_ADDED = "FEE_ADDED",
|
|
4799
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
4799
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
4800
4800
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
4801
|
-
/** Fee is added to the ticket price at checkout */
|
|
4801
|
+
/** Fee is added to the ticket price at checkout. */
|
|
4802
4802
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
4803
4803
|
}
|
|
4804
4804
|
interface PaymentDetails$1 {
|
|
@@ -4892,7 +4892,7 @@ interface ListOrdersResponse$1 {
|
|
|
4892
4892
|
orderFacets?: OrderFacets$1;
|
|
4893
4893
|
}
|
|
4894
4894
|
interface FacetCounts$b {
|
|
4895
|
-
/** Facet counts aggregated per value */
|
|
4895
|
+
/** Facet counts aggregated per value. */
|
|
4896
4896
|
counts?: Record<string, number>;
|
|
4897
4897
|
}
|
|
4898
4898
|
interface OrderFacets$1 {
|
|
@@ -5752,7 +5752,7 @@ interface Money$6 {
|
|
|
5752
5752
|
amount?: string;
|
|
5753
5753
|
/** Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (e.g., USD). */
|
|
5754
5754
|
currency?: string;
|
|
5755
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
5755
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
5756
5756
|
value?: string | null;
|
|
5757
5757
|
}
|
|
5758
5758
|
interface TicketingTicket$2 {
|
|
@@ -6018,11 +6018,11 @@ interface Tax {
|
|
|
6018
6018
|
amount?: Money$6;
|
|
6019
6019
|
}
|
|
6020
6020
|
declare enum TaxType$2 {
|
|
6021
|
-
/** Tax is included in the ticket price */
|
|
6021
|
+
/** Tax is included in the ticket price. */
|
|
6022
6022
|
INCLUDED = "INCLUDED",
|
|
6023
|
-
/** Tax is added to the order at the checkout */
|
|
6023
|
+
/** Tax is added to the order at the checkout. */
|
|
6024
6024
|
ADDED = "ADDED",
|
|
6025
|
-
/** Tax is added to the final total at the checkout */
|
|
6025
|
+
/** Tax is added to the final total at the checkout. */
|
|
6026
6026
|
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
6027
6027
|
}
|
|
6028
6028
|
interface Fee {
|
|
@@ -6043,11 +6043,11 @@ declare enum FeeName {
|
|
|
6043
6043
|
WIX_FEE = "WIX_FEE"
|
|
6044
6044
|
}
|
|
6045
6045
|
declare enum FeeType$2 {
|
|
6046
|
-
/** Fee is added to the ticket price at checkout */
|
|
6046
|
+
/** Fee is added to the ticket price at checkout. */
|
|
6047
6047
|
FEE_ADDED = "FEE_ADDED",
|
|
6048
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
6048
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
6049
6049
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
6050
|
-
/** Fee is added to the ticket price at checkout */
|
|
6050
|
+
/** Fee is added to the ticket price at checkout. */
|
|
6051
6051
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
6052
6052
|
}
|
|
6053
6053
|
interface PaymentDetails {
|
|
@@ -6156,7 +6156,7 @@ interface ListOrdersResponse {
|
|
|
6156
6156
|
orderFacets?: OrderFacets;
|
|
6157
6157
|
}
|
|
6158
6158
|
interface FacetCounts$a {
|
|
6159
|
-
/** Facet counts aggregated per value */
|
|
6159
|
+
/** Facet counts aggregated per value. */
|
|
6160
6160
|
counts?: Record<string, number>;
|
|
6161
6161
|
}
|
|
6162
6162
|
interface OrderFacets {
|
|
@@ -11179,9 +11179,9 @@ interface Money$5 {
|
|
|
11179
11179
|
* @deprecated
|
|
11180
11180
|
*/
|
|
11181
11181
|
amount?: string;
|
|
11182
|
-
/** ISO 4217 format of the currency
|
|
11182
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
11183
11183
|
currency?: string;
|
|
11184
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
11184
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
11185
11185
|
value?: string | null;
|
|
11186
11186
|
}
|
|
11187
11187
|
interface CheckIn$1 {
|
|
@@ -11326,7 +11326,7 @@ interface ListTicketsResponse$1 {
|
|
|
11326
11326
|
facets?: Record<string, FacetCounts$7>;
|
|
11327
11327
|
}
|
|
11328
11328
|
interface FacetCounts$7 {
|
|
11329
|
-
/** Facet counts aggregated per value */
|
|
11329
|
+
/** Facet counts aggregated per value. */
|
|
11330
11330
|
counts?: Record<string, number>;
|
|
11331
11331
|
}
|
|
11332
11332
|
interface GetTicketRequest$1 {
|
|
@@ -11561,7 +11561,7 @@ interface Money$4 {
|
|
|
11561
11561
|
amount?: string;
|
|
11562
11562
|
/** Currency in the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) format. For example, `USD`. */
|
|
11563
11563
|
currency?: string;
|
|
11564
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
11564
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
11565
11565
|
value?: string | null;
|
|
11566
11566
|
}
|
|
11567
11567
|
interface CheckIn {
|
|
@@ -11707,7 +11707,7 @@ interface ListTicketsResponse {
|
|
|
11707
11707
|
facets?: Record<string, FacetCounts$6>;
|
|
11708
11708
|
}
|
|
11709
11709
|
interface FacetCounts$6 {
|
|
11710
|
-
/** Facet counts aggregated per value */
|
|
11710
|
+
/** Facet counts aggregated per value. */
|
|
11711
11711
|
counts?: Record<string, number>;
|
|
11712
11712
|
}
|
|
11713
11713
|
interface GetTicketRequest {
|
|
@@ -11935,9 +11935,9 @@ interface Money$3 {
|
|
|
11935
11935
|
* @deprecated
|
|
11936
11936
|
*/
|
|
11937
11937
|
amount?: string;
|
|
11938
|
-
/** ISO 4217 format of the currency
|
|
11938
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
11939
11939
|
currency?: string;
|
|
11940
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
11940
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
11941
11941
|
value?: string | null;
|
|
11942
11942
|
}
|
|
11943
11943
|
interface Dashboard$1 {
|
|
@@ -11964,11 +11964,11 @@ interface WixFeeConfig$1 {
|
|
|
11964
11964
|
type?: FeeType$1;
|
|
11965
11965
|
}
|
|
11966
11966
|
declare enum FeeType$1 {
|
|
11967
|
-
/** Fee is added to the ticket price at checkout */
|
|
11967
|
+
/** Fee is added to the ticket price at checkout. */
|
|
11968
11968
|
FEE_ADDED = "FEE_ADDED",
|
|
11969
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
11969
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
11970
11970
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
11971
|
-
/** Fee is added to the ticket price at checkout */
|
|
11971
|
+
/** Fee is added to the ticket price at checkout. */
|
|
11972
11972
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
11973
11973
|
}
|
|
11974
11974
|
interface TicketSalePeriod$1 {
|
|
@@ -12067,7 +12067,7 @@ interface QueryTicketDefinitionsResponse$3 {
|
|
|
12067
12067
|
facets?: Record<string, FacetCounts$5>;
|
|
12068
12068
|
}
|
|
12069
12069
|
interface FacetCounts$5 {
|
|
12070
|
-
/** Facet counts aggregated per value */
|
|
12070
|
+
/** Facet counts aggregated per value. */
|
|
12071
12071
|
counts?: Record<string, number>;
|
|
12072
12072
|
}
|
|
12073
12073
|
interface QueryTicketDefinitionsV2Request$1 {
|
|
@@ -12080,17 +12080,15 @@ interface QueryV2$5 extends QueryV2PagingMethodOneOf$5 {
|
|
|
12080
12080
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
12081
12081
|
cursorPaging?: CursorPaging$5;
|
|
12082
12082
|
/**
|
|
12083
|
-
* Filter object
|
|
12084
|
-
*
|
|
12085
|
-
*
|
|
12086
|
-
* "fieldName2":{"$operator":"value2"}
|
|
12087
|
-
* }`
|
|
12088
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
12083
|
+
* Filter object.
|
|
12084
|
+
*
|
|
12085
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
12089
12086
|
*/
|
|
12090
12087
|
filter?: Record<string, any> | null;
|
|
12091
12088
|
/**
|
|
12092
|
-
* Sort object
|
|
12093
|
-
*
|
|
12089
|
+
* Sort object.
|
|
12090
|
+
*
|
|
12091
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
12094
12092
|
*/
|
|
12095
12093
|
sort?: Sorting$5[];
|
|
12096
12094
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -12428,7 +12426,7 @@ interface Money$2 {
|
|
|
12428
12426
|
* [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
|
|
12429
12427
|
*/
|
|
12430
12428
|
currency?: string;
|
|
12431
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
12429
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
12432
12430
|
value?: string | null;
|
|
12433
12431
|
}
|
|
12434
12432
|
interface Dashboard {
|
|
@@ -12461,11 +12459,11 @@ interface WixFeeConfig {
|
|
|
12461
12459
|
type?: FeeType;
|
|
12462
12460
|
}
|
|
12463
12461
|
declare enum FeeType {
|
|
12464
|
-
/** Fee is added to the ticket price at checkout */
|
|
12462
|
+
/** Fee is added to the ticket price at checkout. */
|
|
12465
12463
|
FEE_ADDED = "FEE_ADDED",
|
|
12466
|
-
/** Seller absorbs the fee. It is deducted from the ticket price */
|
|
12464
|
+
/** Seller absorbs the fee. It is deducted from the ticket price. */
|
|
12467
12465
|
FEE_INCLUDED = "FEE_INCLUDED",
|
|
12468
|
-
/** Fee is added to the ticket price at checkout */
|
|
12466
|
+
/** Fee is added to the ticket price at checkout. */
|
|
12469
12467
|
FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
|
|
12470
12468
|
}
|
|
12471
12469
|
interface TicketSalePeriod {
|
|
@@ -12564,7 +12562,7 @@ interface QueryTicketDefinitionsResponse$2 {
|
|
|
12564
12562
|
facets?: Record<string, FacetCounts$4>;
|
|
12565
12563
|
}
|
|
12566
12564
|
interface FacetCounts$4 {
|
|
12567
|
-
/** Facet counts aggregated per value */
|
|
12565
|
+
/** Facet counts aggregated per value. */
|
|
12568
12566
|
counts?: Record<string, number>;
|
|
12569
12567
|
}
|
|
12570
12568
|
interface QueryTicketDefinitionsV2Request {
|
|
@@ -12577,17 +12575,15 @@ interface QueryV2$4 extends QueryV2PagingMethodOneOf$4 {
|
|
|
12577
12575
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
12578
12576
|
cursorPaging?: CursorPaging$4;
|
|
12579
12577
|
/**
|
|
12580
|
-
* Filter object
|
|
12581
|
-
*
|
|
12582
|
-
*
|
|
12583
|
-
* "fieldName2":{"$operator":"value2"}
|
|
12584
|
-
* }`
|
|
12585
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
12578
|
+
* Filter object.
|
|
12579
|
+
*
|
|
12580
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
12586
12581
|
*/
|
|
12587
12582
|
filter?: Record<string, any> | null;
|
|
12588
12583
|
/**
|
|
12589
|
-
* Sort object
|
|
12590
|
-
*
|
|
12584
|
+
* Sort object.
|
|
12585
|
+
*
|
|
12586
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
12591
12587
|
*/
|
|
12592
12588
|
sort?: Sorting$4[];
|
|
12593
12589
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -14066,9 +14062,9 @@ interface EventsMoney$1 {
|
|
|
14066
14062
|
* @deprecated
|
|
14067
14063
|
*/
|
|
14068
14064
|
amount?: string;
|
|
14069
|
-
/** ISO 4217 format of the currency
|
|
14065
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
14070
14066
|
currency?: string;
|
|
14071
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
14067
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
14072
14068
|
value?: string | null;
|
|
14073
14069
|
}
|
|
14074
14070
|
interface Rsvps$1 {
|
|
@@ -15574,9 +15570,9 @@ interface EventsMoney {
|
|
|
15574
15570
|
* @deprecated
|
|
15575
15571
|
*/
|
|
15576
15572
|
amount?: string;
|
|
15577
|
-
/** ISO 4217 format of the currency
|
|
15573
|
+
/** ISO 4217 format of the currency e.g., `USD`. */
|
|
15578
15574
|
currency?: string;
|
|
15579
|
-
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. */
|
|
15575
|
+
/** Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative. */
|
|
15580
15576
|
value?: string | null;
|
|
15581
15577
|
}
|
|
15582
15578
|
interface Rsvps {
|