@meaple-com/types 2.0.0 → 3.0.0
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/README.md +58 -0
- package/dist/index.d.mts +60 -60
- package/dist/index.d.ts +60 -60
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @meaple-com/types
|
|
2
|
+
|
|
3
|
+
TypeScript types and DTOs for the [Meaple](https://meaple.com) ticketing platform SDK.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @meaple-com/types
|
|
9
|
+
# or
|
|
10
|
+
pnpm add @meaple-com/types
|
|
11
|
+
# or
|
|
12
|
+
bun add @meaple-com/types
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
Use these types in your app or in other Meaple packages for type-safe APIs:
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
import type {
|
|
21
|
+
EventProps,
|
|
22
|
+
FindEventsParams,
|
|
23
|
+
TicketProps,
|
|
24
|
+
OrderProps,
|
|
25
|
+
CreateOrderParams,
|
|
26
|
+
CouponProps,
|
|
27
|
+
UserProps,
|
|
28
|
+
CategoryProps,
|
|
29
|
+
} from '@meaple-com/types';
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Exported namespaces
|
|
33
|
+
|
|
34
|
+
- **Address** – `AddressProps`
|
|
35
|
+
- **Category** – `CategoryProps`, `ChartCategoryProps`
|
|
36
|
+
- **Channel** – `ChannelProps`, `GetChannelEventsProps`, `GetChannelEventProps`
|
|
37
|
+
- **Coupon** – `CouponProps`, `CheckCouponProps`
|
|
38
|
+
- **Event** – `EventProps`, `FindEventsParams`, `FindEventsResponseProps`, `GetEventTicketsResponseProps`, `GetEventProductsResponseProps`, `EventContact`, `ExternalAnalyticsProps`, `CreateEventReminderProps`
|
|
39
|
+
- **File** – `FileProps`, `CreateTicketFileProps`
|
|
40
|
+
- **Gauge** – `GaugeProps`
|
|
41
|
+
- **Order** – `OrderProps`, `OrderItemProps`, `CreateOrderParams`, `CreatedOrderResponseProps`, `GetOrderResponseProps`, `BuyerProps`, `PaymentIntentProps`, `NominationProps`, `PlatformFeeProps`
|
|
42
|
+
- **Payment** – `PlatformFeeProps`
|
|
43
|
+
- **Tag** – `TagProps`
|
|
44
|
+
- **Ticket** – `TicketProps`, `GroupProps`, `UpdateUserTicketProps`, `TransferTicketProps`, `TicketCustomFieldProps`
|
|
45
|
+
- **User** – `UserProps`, `GetUserEventsProps`, `GetUserOrdersProps`
|
|
46
|
+
- **User ticket** – `UserTicketProps`
|
|
47
|
+
|
|
48
|
+
## Peer usage
|
|
49
|
+
|
|
50
|
+
This package has no runtime code; it only provides type definitions. It is used by:
|
|
51
|
+
|
|
52
|
+
- `@meaple-com/core` – API client types
|
|
53
|
+
- `@meaple-com/react-query` – hook request/response types
|
|
54
|
+
- `@meaple-com/react-headless-components` – component prop types
|
|
55
|
+
|
|
56
|
+
## Documentation
|
|
57
|
+
|
|
58
|
+
[https://docs.meaple.com.br/](https://docs.meaple.com.br/)
|
package/dist/index.d.mts
CHANGED
|
@@ -149,6 +149,47 @@ type CreateEventReminderProps = {
|
|
|
149
149
|
phoneNumber: string;
|
|
150
150
|
};
|
|
151
151
|
|
|
152
|
+
type FindEventTagProps = Pick<
|
|
153
|
+
TagProps,
|
|
154
|
+
'id' | 'name' | 'description' | 'emoji' | 'parentId'
|
|
155
|
+
>;
|
|
156
|
+
|
|
157
|
+
type FindEventProps = Pick<
|
|
158
|
+
EventProps,
|
|
159
|
+
| 'id'
|
|
160
|
+
| 'name'
|
|
161
|
+
| 'slug'
|
|
162
|
+
| 'description'
|
|
163
|
+
| 'canceledAt'
|
|
164
|
+
| 'endsAt'
|
|
165
|
+
| 'startsAt'
|
|
166
|
+
| 'presaleStartsAt'
|
|
167
|
+
| 'timezone'
|
|
168
|
+
| 'status'
|
|
169
|
+
| 'categories'
|
|
170
|
+
| 'address'
|
|
171
|
+
| 'channel'
|
|
172
|
+
> & {
|
|
173
|
+
image: FileProps | null;
|
|
174
|
+
tags: FindEventTagProps[];
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
type FindEventsResponseProps = {
|
|
178
|
+
events: FindEventProps[];
|
|
179
|
+
cursor?: string;
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
type FindEventsParams = {
|
|
183
|
+
orderBy?: 'START_DATE' | 'END_DATE' | 'MAX_PRICE' | 'MIN_PRICE';
|
|
184
|
+
channelSlugs?: string[];
|
|
185
|
+
limit?: number;
|
|
186
|
+
cursor?: string;
|
|
187
|
+
q?: string;
|
|
188
|
+
enabled?: boolean;
|
|
189
|
+
priority?: number;
|
|
190
|
+
categoryIds?: string[];
|
|
191
|
+
};
|
|
192
|
+
|
|
152
193
|
type GaugeProps = {
|
|
153
194
|
totalAmount: number;
|
|
154
195
|
usedAmount: number;
|
|
@@ -223,7 +264,7 @@ type TicketProps = {
|
|
|
223
264
|
customFields?: TicketCustomField[];
|
|
224
265
|
};
|
|
225
266
|
|
|
226
|
-
type
|
|
267
|
+
type GetEventProductEventProps = Pick<
|
|
227
268
|
EventProps,
|
|
228
269
|
'id' | 'endsAt' | 'presaleStartsAt'
|
|
229
270
|
> & {
|
|
@@ -231,7 +272,7 @@ type FindEventProductEventProps = Pick<
|
|
|
231
272
|
maxBuyAmount: number | null;
|
|
232
273
|
};
|
|
233
274
|
|
|
234
|
-
type
|
|
275
|
+
type GetEventProductProps = Pick<
|
|
235
276
|
TicketProps,
|
|
236
277
|
| 'id'
|
|
237
278
|
| 'name'
|
|
@@ -246,60 +287,19 @@ type FindEventProductItemProps = Pick<
|
|
|
246
287
|
| 'maxBuy'
|
|
247
288
|
>;
|
|
248
289
|
|
|
249
|
-
type
|
|
250
|
-
event:
|
|
251
|
-
products:
|
|
252
|
-
};
|
|
253
|
-
|
|
254
|
-
type FindEventTagItemProps = Pick<
|
|
255
|
-
TagProps,
|
|
256
|
-
'id' | 'name' | 'description' | 'emoji' | 'parentId'
|
|
257
|
-
>;
|
|
258
|
-
|
|
259
|
-
type FindEventItemProps = Pick<
|
|
260
|
-
EventProps,
|
|
261
|
-
| 'id'
|
|
262
|
-
| 'name'
|
|
263
|
-
| 'slug'
|
|
264
|
-
| 'description'
|
|
265
|
-
| 'canceledAt'
|
|
266
|
-
| 'endsAt'
|
|
267
|
-
| 'startsAt'
|
|
268
|
-
| 'presaleStartsAt'
|
|
269
|
-
| 'timezone'
|
|
270
|
-
| 'status'
|
|
271
|
-
| 'categories'
|
|
272
|
-
| 'address'
|
|
273
|
-
| 'channel'
|
|
274
|
-
> & {
|
|
275
|
-
image: FileProps | null;
|
|
276
|
-
tags: FindEventTagItemProps[];
|
|
277
|
-
};
|
|
278
|
-
|
|
279
|
-
type FindEventsProps = {
|
|
280
|
-
events: FindEventItemProps[];
|
|
281
|
-
cursor?: string;
|
|
282
|
-
};
|
|
283
|
-
|
|
284
|
-
type FindEventsParams = {
|
|
285
|
-
orderBy?: 'START_DATE' | 'END_DATE' | 'MAX_PRICE' | 'MIN_PRICE';
|
|
286
|
-
channelSlugs?: string[];
|
|
287
|
-
limit?: number;
|
|
288
|
-
cursor?: string;
|
|
289
|
-
q?: string;
|
|
290
|
-
enabled?: boolean;
|
|
291
|
-
priority?: number;
|
|
292
|
-
categoryIds?: string[];
|
|
290
|
+
type GetEventProductsResponseProps = {
|
|
291
|
+
event: GetEventProductEventProps;
|
|
292
|
+
products: GetEventProductProps[];
|
|
293
293
|
};
|
|
294
294
|
|
|
295
|
-
type
|
|
295
|
+
type GetEventTicketsEventProps = Pick<
|
|
296
296
|
EventProps,
|
|
297
297
|
'id' | 'startsAt' | 'endsAt' | 'presaleStartsAt'
|
|
298
298
|
> & {
|
|
299
299
|
maxBuyAmount: number | null;
|
|
300
300
|
};
|
|
301
301
|
|
|
302
|
-
type
|
|
302
|
+
type GetEventTicketProps = Pick<
|
|
303
303
|
TicketProps,
|
|
304
304
|
| 'id'
|
|
305
305
|
| 'type'
|
|
@@ -319,17 +319,17 @@ type FindEventTicketItemProps = Pick<
|
|
|
319
319
|
| 'maxBuy'
|
|
320
320
|
>;
|
|
321
321
|
|
|
322
|
-
type
|
|
322
|
+
type GetEventTicketGroupProps = Pick<
|
|
323
323
|
GroupProps,
|
|
324
324
|
'id' | 'name' | 'description' | 'defaultOpen' | 'orderAt' | 'maxBuyAmount'
|
|
325
325
|
> & {
|
|
326
|
-
tickets:
|
|
326
|
+
tickets: GetEventTicketProps[];
|
|
327
327
|
};
|
|
328
328
|
|
|
329
|
-
type
|
|
330
|
-
event:
|
|
331
|
-
tickets:
|
|
332
|
-
groups:
|
|
329
|
+
type GetEventTicketsResponseProps = {
|
|
330
|
+
event: GetEventTicketsEventProps;
|
|
331
|
+
tickets: GetEventTicketProps[];
|
|
332
|
+
groups: GetEventTicketGroupProps[];
|
|
333
333
|
};
|
|
334
334
|
|
|
335
335
|
type BuyerProps = {
|
|
@@ -442,7 +442,7 @@ type CreatedOrderItemProps = Pick<OrderItemProps, 'id' | 'amount'> & {
|
|
|
442
442
|
ticket: CreatedOrderItemTicketProps;
|
|
443
443
|
};
|
|
444
444
|
|
|
445
|
-
type
|
|
445
|
+
type CreatedOrderProps = Pick<
|
|
446
446
|
OrderProps,
|
|
447
447
|
'id' | 'rawPrice' | 'totalPrice' | 'totalFee' | 'totalDiscount'
|
|
448
448
|
> & {
|
|
@@ -454,9 +454,9 @@ type CreatedOrderOrderProps = Pick<
|
|
|
454
454
|
info: Record<string, unknown>;
|
|
455
455
|
};
|
|
456
456
|
|
|
457
|
-
type
|
|
457
|
+
type CreatedOrderResponseProps = {
|
|
458
458
|
type: 'success';
|
|
459
|
-
order:
|
|
459
|
+
order: CreatedOrderProps;
|
|
460
460
|
clientSecret: string;
|
|
461
461
|
};
|
|
462
462
|
|
|
@@ -466,7 +466,7 @@ type CreateOrderTicketProps = {
|
|
|
466
466
|
seatIds?: string[];
|
|
467
467
|
};
|
|
468
468
|
|
|
469
|
-
type
|
|
469
|
+
type CreateOrderParams = {
|
|
470
470
|
eventId: string;
|
|
471
471
|
tickets: CreateOrderTicketProps[];
|
|
472
472
|
couponId?: string;
|
|
@@ -567,7 +567,7 @@ type PaymentIntentProps = {
|
|
|
567
567
|
| OrderWithBankSlipProps
|
|
568
568
|
);
|
|
569
569
|
|
|
570
|
-
type
|
|
570
|
+
type GetOrderResponseProps = {
|
|
571
571
|
order: OrderProps & {
|
|
572
572
|
items: OrderItemProps[];
|
|
573
573
|
userTickets: UserTicketProps[];
|
|
@@ -691,4 +691,4 @@ type GetMeUserProps = Pick<
|
|
|
691
691
|
| 'avatar'
|
|
692
692
|
>;
|
|
693
693
|
|
|
694
|
-
export type { AddressProps, BuyerProps, CategoryProps, ChannelProps, ChartCategoryProps, CheckCouponProps, CouponProps, CreateEventReminderProps,
|
|
694
|
+
export type { AddressProps, BuyerProps, CategoryProps, ChannelProps, ChartCategoryProps, CheckCouponProps, CouponProps, CreateEventReminderProps, CreateOrderParams, CreateOrderTicketProps, CreateTicketFileProps, CreatedOrderEventProps, CreatedOrderGroupProps, CreatedOrderItemProps, CreatedOrderItemTicketProps, CreatedOrderProps, CreatedOrderResponseProps, EventAgePolicyType, EventContact, EventProps, EventReviewStats, ExternalAnalyticsProps, FileProps, FindEventProps, FindEventTagProps, FindEventsParams, FindEventsResponseProps, GaugeProps, GetChannelEventProps, GetChannelEventsProps, GetEventProductEventProps, GetEventProductProps, GetEventProductsResponseProps, GetEventTicketGroupProps, GetEventTicketProps, GetEventTicketsEventProps, GetEventTicketsResponseProps, GetMeUserProps, GetOrderResponseProps, GetUserEventsProps, GetUserOrdersProps, GroupProps, NominationProps, OrderEventProps, OrderItemProps, OrderItemTicketProps, OrderProps, PaymentIntentProps, PlatformFeeProps, TagProps, TicketCustomField, TicketCustomFieldType, TicketFileOutput, TicketProps, TransferTicketProps, TransferTicketRecipientProps, UpdateUserTicketProps, UserOrderItemProps, UserOrderProps, UserProps, UserTicketEventProps, UserTicketItemTicketProps, UserTicketProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -149,6 +149,47 @@ type CreateEventReminderProps = {
|
|
|
149
149
|
phoneNumber: string;
|
|
150
150
|
};
|
|
151
151
|
|
|
152
|
+
type FindEventTagProps = Pick<
|
|
153
|
+
TagProps,
|
|
154
|
+
'id' | 'name' | 'description' | 'emoji' | 'parentId'
|
|
155
|
+
>;
|
|
156
|
+
|
|
157
|
+
type FindEventProps = Pick<
|
|
158
|
+
EventProps,
|
|
159
|
+
| 'id'
|
|
160
|
+
| 'name'
|
|
161
|
+
| 'slug'
|
|
162
|
+
| 'description'
|
|
163
|
+
| 'canceledAt'
|
|
164
|
+
| 'endsAt'
|
|
165
|
+
| 'startsAt'
|
|
166
|
+
| 'presaleStartsAt'
|
|
167
|
+
| 'timezone'
|
|
168
|
+
| 'status'
|
|
169
|
+
| 'categories'
|
|
170
|
+
| 'address'
|
|
171
|
+
| 'channel'
|
|
172
|
+
> & {
|
|
173
|
+
image: FileProps | null;
|
|
174
|
+
tags: FindEventTagProps[];
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
type FindEventsResponseProps = {
|
|
178
|
+
events: FindEventProps[];
|
|
179
|
+
cursor?: string;
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
type FindEventsParams = {
|
|
183
|
+
orderBy?: 'START_DATE' | 'END_DATE' | 'MAX_PRICE' | 'MIN_PRICE';
|
|
184
|
+
channelSlugs?: string[];
|
|
185
|
+
limit?: number;
|
|
186
|
+
cursor?: string;
|
|
187
|
+
q?: string;
|
|
188
|
+
enabled?: boolean;
|
|
189
|
+
priority?: number;
|
|
190
|
+
categoryIds?: string[];
|
|
191
|
+
};
|
|
192
|
+
|
|
152
193
|
type GaugeProps = {
|
|
153
194
|
totalAmount: number;
|
|
154
195
|
usedAmount: number;
|
|
@@ -223,7 +264,7 @@ type TicketProps = {
|
|
|
223
264
|
customFields?: TicketCustomField[];
|
|
224
265
|
};
|
|
225
266
|
|
|
226
|
-
type
|
|
267
|
+
type GetEventProductEventProps = Pick<
|
|
227
268
|
EventProps,
|
|
228
269
|
'id' | 'endsAt' | 'presaleStartsAt'
|
|
229
270
|
> & {
|
|
@@ -231,7 +272,7 @@ type FindEventProductEventProps = Pick<
|
|
|
231
272
|
maxBuyAmount: number | null;
|
|
232
273
|
};
|
|
233
274
|
|
|
234
|
-
type
|
|
275
|
+
type GetEventProductProps = Pick<
|
|
235
276
|
TicketProps,
|
|
236
277
|
| 'id'
|
|
237
278
|
| 'name'
|
|
@@ -246,60 +287,19 @@ type FindEventProductItemProps = Pick<
|
|
|
246
287
|
| 'maxBuy'
|
|
247
288
|
>;
|
|
248
289
|
|
|
249
|
-
type
|
|
250
|
-
event:
|
|
251
|
-
products:
|
|
252
|
-
};
|
|
253
|
-
|
|
254
|
-
type FindEventTagItemProps = Pick<
|
|
255
|
-
TagProps,
|
|
256
|
-
'id' | 'name' | 'description' | 'emoji' | 'parentId'
|
|
257
|
-
>;
|
|
258
|
-
|
|
259
|
-
type FindEventItemProps = Pick<
|
|
260
|
-
EventProps,
|
|
261
|
-
| 'id'
|
|
262
|
-
| 'name'
|
|
263
|
-
| 'slug'
|
|
264
|
-
| 'description'
|
|
265
|
-
| 'canceledAt'
|
|
266
|
-
| 'endsAt'
|
|
267
|
-
| 'startsAt'
|
|
268
|
-
| 'presaleStartsAt'
|
|
269
|
-
| 'timezone'
|
|
270
|
-
| 'status'
|
|
271
|
-
| 'categories'
|
|
272
|
-
| 'address'
|
|
273
|
-
| 'channel'
|
|
274
|
-
> & {
|
|
275
|
-
image: FileProps | null;
|
|
276
|
-
tags: FindEventTagItemProps[];
|
|
277
|
-
};
|
|
278
|
-
|
|
279
|
-
type FindEventsProps = {
|
|
280
|
-
events: FindEventItemProps[];
|
|
281
|
-
cursor?: string;
|
|
282
|
-
};
|
|
283
|
-
|
|
284
|
-
type FindEventsParams = {
|
|
285
|
-
orderBy?: 'START_DATE' | 'END_DATE' | 'MAX_PRICE' | 'MIN_PRICE';
|
|
286
|
-
channelSlugs?: string[];
|
|
287
|
-
limit?: number;
|
|
288
|
-
cursor?: string;
|
|
289
|
-
q?: string;
|
|
290
|
-
enabled?: boolean;
|
|
291
|
-
priority?: number;
|
|
292
|
-
categoryIds?: string[];
|
|
290
|
+
type GetEventProductsResponseProps = {
|
|
291
|
+
event: GetEventProductEventProps;
|
|
292
|
+
products: GetEventProductProps[];
|
|
293
293
|
};
|
|
294
294
|
|
|
295
|
-
type
|
|
295
|
+
type GetEventTicketsEventProps = Pick<
|
|
296
296
|
EventProps,
|
|
297
297
|
'id' | 'startsAt' | 'endsAt' | 'presaleStartsAt'
|
|
298
298
|
> & {
|
|
299
299
|
maxBuyAmount: number | null;
|
|
300
300
|
};
|
|
301
301
|
|
|
302
|
-
type
|
|
302
|
+
type GetEventTicketProps = Pick<
|
|
303
303
|
TicketProps,
|
|
304
304
|
| 'id'
|
|
305
305
|
| 'type'
|
|
@@ -319,17 +319,17 @@ type FindEventTicketItemProps = Pick<
|
|
|
319
319
|
| 'maxBuy'
|
|
320
320
|
>;
|
|
321
321
|
|
|
322
|
-
type
|
|
322
|
+
type GetEventTicketGroupProps = Pick<
|
|
323
323
|
GroupProps,
|
|
324
324
|
'id' | 'name' | 'description' | 'defaultOpen' | 'orderAt' | 'maxBuyAmount'
|
|
325
325
|
> & {
|
|
326
|
-
tickets:
|
|
326
|
+
tickets: GetEventTicketProps[];
|
|
327
327
|
};
|
|
328
328
|
|
|
329
|
-
type
|
|
330
|
-
event:
|
|
331
|
-
tickets:
|
|
332
|
-
groups:
|
|
329
|
+
type GetEventTicketsResponseProps = {
|
|
330
|
+
event: GetEventTicketsEventProps;
|
|
331
|
+
tickets: GetEventTicketProps[];
|
|
332
|
+
groups: GetEventTicketGroupProps[];
|
|
333
333
|
};
|
|
334
334
|
|
|
335
335
|
type BuyerProps = {
|
|
@@ -442,7 +442,7 @@ type CreatedOrderItemProps = Pick<OrderItemProps, 'id' | 'amount'> & {
|
|
|
442
442
|
ticket: CreatedOrderItemTicketProps;
|
|
443
443
|
};
|
|
444
444
|
|
|
445
|
-
type
|
|
445
|
+
type CreatedOrderProps = Pick<
|
|
446
446
|
OrderProps,
|
|
447
447
|
'id' | 'rawPrice' | 'totalPrice' | 'totalFee' | 'totalDiscount'
|
|
448
448
|
> & {
|
|
@@ -454,9 +454,9 @@ type CreatedOrderOrderProps = Pick<
|
|
|
454
454
|
info: Record<string, unknown>;
|
|
455
455
|
};
|
|
456
456
|
|
|
457
|
-
type
|
|
457
|
+
type CreatedOrderResponseProps = {
|
|
458
458
|
type: 'success';
|
|
459
|
-
order:
|
|
459
|
+
order: CreatedOrderProps;
|
|
460
460
|
clientSecret: string;
|
|
461
461
|
};
|
|
462
462
|
|
|
@@ -466,7 +466,7 @@ type CreateOrderTicketProps = {
|
|
|
466
466
|
seatIds?: string[];
|
|
467
467
|
};
|
|
468
468
|
|
|
469
|
-
type
|
|
469
|
+
type CreateOrderParams = {
|
|
470
470
|
eventId: string;
|
|
471
471
|
tickets: CreateOrderTicketProps[];
|
|
472
472
|
couponId?: string;
|
|
@@ -567,7 +567,7 @@ type PaymentIntentProps = {
|
|
|
567
567
|
| OrderWithBankSlipProps
|
|
568
568
|
);
|
|
569
569
|
|
|
570
|
-
type
|
|
570
|
+
type GetOrderResponseProps = {
|
|
571
571
|
order: OrderProps & {
|
|
572
572
|
items: OrderItemProps[];
|
|
573
573
|
userTickets: UserTicketProps[];
|
|
@@ -691,4 +691,4 @@ type GetMeUserProps = Pick<
|
|
|
691
691
|
| 'avatar'
|
|
692
692
|
>;
|
|
693
693
|
|
|
694
|
-
export type { AddressProps, BuyerProps, CategoryProps, ChannelProps, ChartCategoryProps, CheckCouponProps, CouponProps, CreateEventReminderProps,
|
|
694
|
+
export type { AddressProps, BuyerProps, CategoryProps, ChannelProps, ChartCategoryProps, CheckCouponProps, CouponProps, CreateEventReminderProps, CreateOrderParams, CreateOrderTicketProps, CreateTicketFileProps, CreatedOrderEventProps, CreatedOrderGroupProps, CreatedOrderItemProps, CreatedOrderItemTicketProps, CreatedOrderProps, CreatedOrderResponseProps, EventAgePolicyType, EventContact, EventProps, EventReviewStats, ExternalAnalyticsProps, FileProps, FindEventProps, FindEventTagProps, FindEventsParams, FindEventsResponseProps, GaugeProps, GetChannelEventProps, GetChannelEventsProps, GetEventProductEventProps, GetEventProductProps, GetEventProductsResponseProps, GetEventTicketGroupProps, GetEventTicketProps, GetEventTicketsEventProps, GetEventTicketsResponseProps, GetMeUserProps, GetOrderResponseProps, GetUserEventsProps, GetUserOrdersProps, GroupProps, NominationProps, OrderEventProps, OrderItemProps, OrderItemTicketProps, OrderProps, PaymentIntentProps, PlatformFeeProps, TagProps, TicketCustomField, TicketCustomFieldType, TicketFileOutput, TicketProps, TransferTicketProps, TransferTicketRecipientProps, UpdateUserTicketProps, UserOrderItemProps, UserOrderProps, UserProps, UserTicketEventProps, UserTicketItemTicketProps, UserTicketProps };
|