@wix/auto_sdk_events_ticket-definitions 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. package/build/cjs/src/events-v1-ticket-definition-ticket-definitions.types.d.ts +223 -52
  2. package/build/cjs/src/events-v1-ticket-definition-ticket-definitions.types.js.map +1 -1
  3. package/build/cjs/src/events-v1-ticket-definition-ticket-definitions.universal.d.ts +271 -60
  4. package/build/cjs/src/events-v1-ticket-definition-ticket-definitions.universal.js +1 -1
  5. package/build/cjs/src/events-v1-ticket-definition-ticket-definitions.universal.js.map +1 -1
  6. package/build/es/src/events-v1-ticket-definition-ticket-definitions.types.d.ts +223 -52
  7. package/build/es/src/events-v1-ticket-definition-ticket-definitions.types.js.map +1 -1
  8. package/build/es/src/events-v1-ticket-definition-ticket-definitions.universal.d.ts +271 -60
  9. package/build/es/src/events-v1-ticket-definition-ticket-definitions.universal.js +1 -1
  10. package/build/es/src/events-v1-ticket-definition-ticket-definitions.universal.js.map +1 -1
  11. package/build/internal/cjs/src/events-v1-ticket-definition-ticket-definitions.types.d.ts +223 -52
  12. package/build/internal/cjs/src/events-v1-ticket-definition-ticket-definitions.types.js.map +1 -1
  13. package/build/internal/cjs/src/events-v1-ticket-definition-ticket-definitions.universal.d.ts +272 -60
  14. package/build/internal/cjs/src/events-v1-ticket-definition-ticket-definitions.universal.js +1 -1
  15. package/build/internal/cjs/src/events-v1-ticket-definition-ticket-definitions.universal.js.map +1 -1
  16. package/build/internal/es/src/events-v1-ticket-definition-ticket-definitions.types.d.ts +223 -52
  17. package/build/internal/es/src/events-v1-ticket-definition-ticket-definitions.types.js.map +1 -1
  18. package/build/internal/es/src/events-v1-ticket-definition-ticket-definitions.universal.d.ts +272 -60
  19. package/build/internal/es/src/events-v1-ticket-definition-ticket-definitions.universal.js +1 -1
  20. package/build/internal/es/src/events-v1-ticket-definition-ticket-definitions.universal.js.map +1 -1
  21. package/package.json +2 -2
@@ -1,5 +1,8 @@
1
1
  export interface TicketDefinition {
2
- /** Ticket definition ID. */
2
+ /**
3
+ * Ticket definition ID.
4
+ * @format GUID
5
+ */
3
6
  id?: string;
4
7
  /** Ticket price. */
5
8
  price?: Money;
@@ -12,6 +15,7 @@ export interface TicketDefinition {
12
15
  /**
13
16
  * Limit of tickets that can be purchased per checkout.
14
17
  * Set to 20 for unlimited ticket definition.
18
+ * @max 20
15
19
  */
16
20
  limitPerCheckout?: number;
17
21
  /** Custom sort index. */
@@ -20,7 +24,10 @@ export interface TicketDefinition {
20
24
  policy?: string;
21
25
  /** Sensitive dashboard data. */
22
26
  dashboard?: Dashboard;
23
- /** Event ID associated with the ticket. */
27
+ /**
28
+ * Event ID associated with the ticket.
29
+ * @format GUID
30
+ */
24
31
  eventId?: string;
25
32
  /**
26
33
  * Configuration of the fixed-rate Wix service fee that is applied at checkout to each ticket sold.
@@ -42,12 +49,19 @@ export interface TicketDefinition {
42
49
  export interface Money {
43
50
  /**
44
51
  * *Deprecated:** Use `value` instead.
52
+ * @format DECIMAL_VALUE
45
53
  * @deprecated
46
54
  */
47
55
  amount?: string;
48
- /** ISO 4217 format of the currency e.g., `USD`. */
56
+ /**
57
+ * ISO 4217 format of the currency e.g., `USD`.
58
+ * @format CURRENCY
59
+ */
49
60
  currency?: string;
50
- /** 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. */
61
+ /**
62
+ * 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.
63
+ * @format DECIMAL_VALUE
64
+ */
51
65
  value?: string | null;
52
66
  }
53
67
  export interface Dashboard {
@@ -127,9 +141,16 @@ export interface PricingOptions {
127
141
  options?: PricingOption[];
128
142
  }
129
143
  export interface PricingOption {
130
- /** Ticket pricing option ID. */
144
+ /**
145
+ * Ticket pricing option ID.
146
+ * @format GUID
147
+ */
131
148
  id?: string | null;
132
- /** Ticket pricing option name. */
149
+ /**
150
+ * Ticket pricing option name.
151
+ * @minLength 1
152
+ * @maxLength 200
153
+ */
133
154
  name?: string | null;
134
155
  /** Ticket pricing option price. */
135
156
  price?: Money;
@@ -141,20 +162,29 @@ export declare enum Type {
141
162
  export interface QueryTicketDefinitionsRequest {
142
163
  /** Offset. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination). */
143
164
  offset?: number;
144
- /** Limit. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination). */
165
+ /**
166
+ * Limit. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination).
167
+ * @max 100
168
+ */
145
169
  limit?: number;
146
- /** Set of fields to return in the response. See [fieldsets](https://dev.wix.com/api/rest/wix-events/wix-events/fieldset#wix-events_wix-events_fieldset_ticket-definition-fieldset). */
170
+ /**
171
+ * Set of fields to return in the response. See [fieldsets](https://dev.wix.com/api/rest/wix-events/wix-events/fieldset#wix-events_wix-events_fieldset_ticket-definition-fieldset).
172
+ * @maxSize 20
173
+ */
147
174
  fieldset?: TicketDefinitionFieldset[];
148
175
  /** Filter. See [supported fields and operators](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort#wix-events_wix-events_filter-and-sort_query-ticket-definitions). */
149
176
  filter?: Record<string, any> | null;
150
177
  /**
151
178
  * Sort order. Defaults to: "created:asc".
152
179
  * See [supported fields](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort#wix-events_wix-events_filter-and-sort_query-ticket-definitions).
180
+ * @maxLength 100
153
181
  */
154
182
  sort?: string;
155
183
  /**
156
184
  * Filter facets to include in the response.
157
185
  * See [supported facets](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort#wix-events_wix-events_filter-and-sort_query-ticket-definitions).
186
+ * @maxLength 20
187
+ * @maxSize 10
158
188
  */
159
189
  facet?: string[];
160
190
  }
@@ -169,7 +199,10 @@ export interface QueryTicketDefinitionsResponse {
169
199
  total?: number;
170
200
  /** Offset. */
171
201
  offset?: number;
172
- /** Limit. */
202
+ /**
203
+ * Limit.
204
+ * @max 100
205
+ */
173
206
  limit?: number;
174
207
  /** Ticket definitions. */
175
208
  definitions?: TicketDefinition[];
@@ -214,7 +247,10 @@ export interface QueryV2PagingMethodOneOf {
214
247
  cursorPaging?: CursorPaging;
215
248
  }
216
249
  export interface Sorting {
217
- /** Name of the field to sort by. */
250
+ /**
251
+ * Name of the field to sort by.
252
+ * @maxLength 512
253
+ */
218
254
  fieldName?: string;
219
255
  /** Sort order. */
220
256
  order?: SortOrder;
@@ -230,13 +266,17 @@ export interface Paging {
230
266
  offset?: number | null;
231
267
  }
232
268
  export interface CursorPaging {
233
- /** Maximum number of items to return in the results. */
269
+ /**
270
+ * Maximum number of items to return in the results.
271
+ * @max 100
272
+ */
234
273
  limit?: number | null;
235
274
  /**
236
275
  * Pointer to the next or previous page in the list of results.
237
276
  *
238
277
  * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
239
278
  * Not relevant for the first request.
279
+ * @maxLength 16000
240
280
  */
241
281
  cursor?: string | null;
242
282
  }
@@ -259,34 +299,63 @@ export interface PagingMetadataV2 {
259
299
  cursors?: Cursors;
260
300
  }
261
301
  export interface Cursors {
262
- /** Cursor string pointing to the next page in the list of results. */
302
+ /**
303
+ * Cursor string pointing to the next page in the list of results.
304
+ * @maxLength 16000
305
+ */
263
306
  next?: string | null;
264
- /** Cursor pointing to the previous page in the list of results. */
307
+ /**
308
+ * Cursor pointing to the previous page in the list of results.
309
+ * @maxLength 16000
310
+ */
265
311
  prev?: string | null;
266
312
  }
267
313
  export interface ListTicketDefinitionsRequest {
268
- /** Event ID. */
314
+ /**
315
+ * Event ID.
316
+ * @format GUID
317
+ * @maxSize 100
318
+ */
269
319
  eventId?: string[];
270
320
  /** Offset. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination). */
271
321
  offset?: number;
272
- /** Limit. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination). */
322
+ /**
323
+ * Limit. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination).
324
+ * @max 100
325
+ */
273
326
  limit?: number;
274
- /** Set of fields to return in the response. See [Fieldsets](https://dev.wix.com/api/rest/wix-events/wix-events/fieldset#wix-events_wix-events_fieldset_ticket-definition-fieldset) */
327
+ /**
328
+ * Set of fields to return in the response. See [Fieldsets](https://dev.wix.com/api/rest/wix-events/wix-events/fieldset#wix-events_wix-events_fieldset_ticket-definition-fieldset)
329
+ * @maxSize 20
330
+ */
275
331
  fieldset?: TicketDefinitionFieldset[];
276
- /** Event creator id filter, by default any. */
332
+ /**
333
+ * Event creator id filter, by default any.
334
+ * @format GUID
335
+ * @maxSize 1
336
+ */
277
337
  eventCreatorId?: string[];
278
- /** Filters by ticket definition state. */
338
+ /**
339
+ * Filters by ticket definition state.
340
+ * @maxSize 20
341
+ */
279
342
  state?: State[];
280
343
  /**
281
344
  * Sort order. Defaults to: "created:asc".
282
345
  * See [supported fields](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort#wix-events_wix-events_filter-and-sort_list-ticket-definitions).
346
+ * @maxLength 100
283
347
  */
284
348
  sort?: string;
285
- /** Ticket sale status. */
349
+ /**
350
+ * Ticket sale status.
351
+ * @maxSize 5
352
+ */
286
353
  saleStatus?: TicketSaleStatus[];
287
354
  /**
288
355
  * Filter facets to include in the response.
289
356
  * See [supported facets](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort#wix-events_wix-events_filter-and-sort_list-ticket-definitions).
357
+ * @maxLength 20
358
+ * @maxSize 10
290
359
  */
291
360
  facet?: string[];
292
361
  }
@@ -325,9 +394,15 @@ export interface ResponseMetaData {
325
394
  total?: number;
326
395
  }
327
396
  export interface GetTicketDefinitionRequest {
328
- /** Ticket definition ID. */
397
+ /**
398
+ * Ticket definition ID.
399
+ * @format GUID
400
+ */
329
401
  definitionId: string;
330
- /** Set of fields to return in the response. See [Fieldsets](https://dev.wix.com/api/rest/wix-events/wix-events/fieldset#wix-events_wix-events_fieldset_ticket-definition-fieldset) */
402
+ /**
403
+ * Set of fields to return in the response. See [Fieldsets](https://dev.wix.com/api/rest/wix-events/wix-events/fieldset#wix-events_wix-events_fieldset_ticket-definition-fieldset)
404
+ * @maxSize 20
405
+ */
331
406
  fieldset?: TicketDefinitionFieldset[];
332
407
  }
333
408
  export interface GetTicketDefinitionResponse {
@@ -335,17 +410,26 @@ export interface GetTicketDefinitionResponse {
335
410
  definition?: TicketDefinition;
336
411
  }
337
412
  export interface CreateTicketDefinitionRequest {
338
- /** Event ID. */
413
+ /**
414
+ * Event ID.
415
+ * @format GUID
416
+ */
339
417
  eventId: string;
340
418
  /** Ticket definition data. */
341
419
  definition: TicketDefinitionData;
342
420
  }
343
421
  export interface TicketDefinitionData {
344
- /** Ticket name. */
422
+ /**
423
+ * Ticket name.
424
+ * @maxLength 30
425
+ */
345
426
  name?: string | null;
346
427
  /** Ticket price. */
347
428
  price?: Money;
348
- /** Ticket description. */
429
+ /**
430
+ * Ticket description.
431
+ * @maxLength 500
432
+ */
349
433
  description?: string | null;
350
434
  /** Whether this ticket type is limited in quantity. */
351
435
  limited?: boolean;
@@ -357,7 +441,10 @@ export interface TicketDefinitionData {
357
441
  quantity?: number | null;
358
442
  /** Custom sort index for manual tickets ordering implementation. */
359
443
  orderIndex?: number;
360
- /** Policy information in plain text (as listed on the ticket). */
444
+ /**
445
+ * Policy information in plain text (as listed on the ticket).
446
+ * @maxLength 1000
447
+ */
361
448
  policy?: string | null;
362
449
  /** Whether this ticket type is hidden to customers and cannot be purchased. */
363
450
  hidden?: boolean;
@@ -379,25 +466,46 @@ export interface CreateTicketDefinitionResponse {
379
466
  export interface TicketDefinitionCreated {
380
467
  /** Ticket Definition created timestamp in ISO UTC format. */
381
468
  timestamp?: Date | null;
382
- /** Ticket Definition ID. */
469
+ /**
470
+ * Ticket Definition ID.
471
+ * @format GUID
472
+ */
383
473
  ticketDefinitionId?: string;
384
- /** Event ID. */
474
+ /**
475
+ * Event ID.
476
+ * @format GUID
477
+ */
385
478
  eventId?: string;
386
479
  /** Originated from. */
387
480
  originatedFrom?: OriginatedFrom;
388
481
  }
389
482
  export interface OriginatedFrom {
390
- /** Instance ID. Indicates the original app instance which current entity originated from. */
483
+ /**
484
+ * Instance ID. Indicates the original app instance which current entity originated from.
485
+ * @format GUID
486
+ */
391
487
  instanceId?: string;
392
- /** Event ID. Indicates the original event which current entity originated from. */
488
+ /**
489
+ * Event ID. Indicates the original event which current entity originated from.
490
+ * @format GUID
491
+ */
393
492
  eventId?: string;
394
- /** Event ID. Indicates the original entity which current entity originated from. */
493
+ /**
494
+ * Event ID. Indicates the original entity which current entity originated from.
495
+ * @format GUID
496
+ */
395
497
  entityId?: string;
396
498
  }
397
499
  export interface UpdateTicketDefinitionRequest {
398
- /** Event ID. */
500
+ /**
501
+ * Event ID.
502
+ * @format GUID
503
+ */
399
504
  eventId: string;
400
- /** Ticket definition ID. */
505
+ /**
506
+ * Ticket definition ID.
507
+ * @format GUID
508
+ */
401
509
  definitionId: string;
402
510
  /** Ticket definition data. */
403
511
  definition?: TicketDefinitionData;
@@ -411,9 +519,15 @@ export interface UpdateTicketDefinitionResponse {
411
519
  export interface TicketDefinitionUpdated {
412
520
  /** Ticket definition updated timestamp in ISO UTC format. */
413
521
  timestamp?: Date | null;
414
- /** Ticket definition ID. */
522
+ /**
523
+ * Ticket definition ID.
524
+ * @format GUID
525
+ */
415
526
  ticketDefinitionId?: string;
416
- /** Event ID. */
527
+ /**
528
+ * Event ID.
529
+ * @format GUID
530
+ */
417
531
  eventId?: string;
418
532
  }
419
533
  export interface DeleteTicketDefinitionRequest extends DeleteTicketDefinitionRequestDeleteOneOf {
@@ -421,7 +535,10 @@ export interface DeleteTicketDefinitionRequest extends DeleteTicketDefinitionReq
421
535
  byId?: ById;
422
536
  /** Whether to delete all event tickets. */
423
537
  all?: boolean;
424
- /** Event ID. */
538
+ /**
539
+ * Event ID.
540
+ * @format GUID
541
+ */
425
542
  eventId: string;
426
543
  }
427
544
  /** @oneof */
@@ -432,7 +549,12 @@ export interface DeleteTicketDefinitionRequestDeleteOneOf {
432
549
  all?: boolean;
433
550
  }
434
551
  export interface ById {
435
- /** Ticket definition IDs. */
552
+ /**
553
+ * Ticket definition IDs.
554
+ * @format GUID
555
+ * @minSize 1
556
+ * @maxSize 100
557
+ */
436
558
  definitionId?: string[];
437
559
  }
438
560
  export interface DeleteTicketDefinitionResponse {
@@ -440,15 +562,28 @@ export interface DeleteTicketDefinitionResponse {
440
562
  export interface TicketDefinitionDeleted {
441
563
  /** Ticket definition deleted timestamp in ISO UTC format. */
442
564
  timestamp?: Date | null;
443
- /** Ticket definition ID. */
565
+ /**
566
+ * Ticket definition ID.
567
+ * @format GUID
568
+ */
444
569
  ticketDefinitionId?: string;
445
- /** Event ID. */
570
+ /**
571
+ * Event ID.
572
+ * @format GUID
573
+ */
446
574
  eventId?: string;
447
575
  }
448
576
  export interface ChangeCurrencyRequest {
449
- /** Event ID. */
577
+ /**
578
+ * Event ID.
579
+ * @format GUID
580
+ */
450
581
  eventId?: string;
451
- /** Event currency, in 3-letter [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. */
582
+ /**
583
+ * Event currency, in 3-letter [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
584
+ * @minLength 3
585
+ * @maxLength 3
586
+ */
452
587
  currency: string;
453
588
  }
454
589
  export interface ChangeCurrencyResponse {
@@ -456,9 +591,15 @@ export interface ChangeCurrencyResponse {
456
591
  export interface BulkCopyTicketDefinitionsByEventIdRequest {
457
592
  /** Origin instance ID. */
458
593
  originInstanceId?: string | null;
459
- /** Origin Event ID. */
594
+ /**
595
+ * Origin Event ID.
596
+ * @format GUID
597
+ */
460
598
  originEventId?: string;
461
- /** Target Event ID. */
599
+ /**
600
+ * Target Event ID.
601
+ * @format GUID
602
+ */
462
603
  targetEventId?: string;
463
604
  }
464
605
  export interface BulkCopyTicketDefinitionsByEventIdResponse {
@@ -478,9 +619,15 @@ export interface PaidTicketDefinitionExistsResponse {
478
619
  paidExists?: boolean;
479
620
  }
480
621
  export interface MessageEnvelope {
481
- /** App instance ID. */
622
+ /**
623
+ * App instance ID.
624
+ * @format GUID
625
+ */
482
626
  instanceId?: string | null;
483
- /** Event type. */
627
+ /**
628
+ * Event type.
629
+ * @maxLength 150
630
+ */
484
631
  eventType?: string;
485
632
  /** The identification type and identity data. */
486
633
  identity?: IdentificationData;
@@ -488,26 +635,50 @@ export interface MessageEnvelope {
488
635
  data?: string;
489
636
  }
490
637
  export interface IdentificationData extends IdentificationDataIdOneOf {
491
- /** ID of a site visitor that has not logged in to the site. */
638
+ /**
639
+ * ID of a site visitor that has not logged in to the site.
640
+ * @format GUID
641
+ */
492
642
  anonymousVisitorId?: string;
493
- /** ID of a site visitor that has logged in to the site. */
643
+ /**
644
+ * ID of a site visitor that has logged in to the site.
645
+ * @format GUID
646
+ */
494
647
  memberId?: string;
495
- /** ID of a Wix user (site owner, contributor, etc.). */
648
+ /**
649
+ * ID of a Wix user (site owner, contributor, etc.).
650
+ * @format GUID
651
+ */
496
652
  wixUserId?: string;
497
- /** ID of an app. */
653
+ /**
654
+ * ID of an app.
655
+ * @format GUID
656
+ */
498
657
  appId?: string;
499
658
  /** @readonly */
500
659
  identityType?: WebhookIdentityType;
501
660
  }
502
661
  /** @oneof */
503
662
  export interface IdentificationDataIdOneOf {
504
- /** ID of a site visitor that has not logged in to the site. */
663
+ /**
664
+ * ID of a site visitor that has not logged in to the site.
665
+ * @format GUID
666
+ */
505
667
  anonymousVisitorId?: string;
506
- /** ID of a site visitor that has logged in to the site. */
668
+ /**
669
+ * ID of a site visitor that has logged in to the site.
670
+ * @format GUID
671
+ */
507
672
  memberId?: string;
508
- /** ID of a Wix user (site owner, contributor, etc.). */
673
+ /**
674
+ * ID of a Wix user (site owner, contributor, etc.).
675
+ * @format GUID
676
+ */
509
677
  wixUserId?: string;
510
- /** ID of an app. */
678
+ /**
679
+ * ID of an app.
680
+ * @format GUID
681
+ */
511
682
  appId?: string;
512
683
  }
513
684
  export declare enum WebhookIdentityType {
@@ -1 +1 @@
1
- {"version":3,"file":"events-v1-ticket-definition-ticket-definitions.types.js","sourceRoot":"","sources":["../../../src/events-v1-ticket-definition-ticket-definitions.types.ts"],"names":[],"mappings":";;;AA+EA,IAAY,OAOX;AAPD,WAAY,OAAO;IACjB,oDAAoD;IACpD,kCAAuB,CAAA;IACvB,oEAAoE;IACpE,wCAA6B,CAAA;IAC7B,oDAAoD;IACpD,0DAA+C,CAAA;AACjD,CAAC,EAPW,OAAO,uBAAP,OAAO,QAOlB;AAWD,IAAY,gBAOX;AAPD,WAAY,gBAAgB;IAC1B,yCAAyC;IACzC,qDAAiC,CAAA;IACjC,+BAA+B;IAC/B,iDAA6B,CAAA;IAC7B,6BAA6B;IAC7B,6CAAyB,CAAA;AAC3B,CAAC,EAPW,gBAAgB,gCAAhB,gBAAgB,QAO3B;AAED,IAAY,8BAEX;AAFD,WAAY,8BAA8B;IACxC,2FAAyD,CAAA;AAC3D,CAAC,EAFW,8BAA8B,8CAA9B,8BAA8B,QAEzC;AAwCD,IAAY,IAGX;AAHD,WAAY,IAAI;IACd,6BAAqB,CAAA;IACrB,6BAAqB,CAAA;AACvB,CAAC,EAHW,IAAI,oBAAJ,IAAI,QAGf;AAuBD,IAAY,wBAKX;AALD,WAAY,wBAAwB;IAClC,wCAAwC;IACxC,6CAAiB,CAAA;IACjB,2CAA2C;IAC3C,mDAAuB,CAAA;AACzB,CAAC,EALW,wBAAwB,wCAAxB,wBAAwB,QAKnC;AA+DD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AA2ED,IAAY,KASX;AATD,WAAY,KAAK;IACf,4CAA4C;IAC5C,4BAAmB,CAAA;IACnB,8CAA8C;IAC9C,0BAAiB,CAAA;IACjB,6BAA6B;IAC7B,sBAAa,CAAA;IACb,0CAA0C;IAC1C,sBAAa,CAAA;AACf,CAAC,EATW,KAAK,qBAAL,KAAK,QAShB;AAED,IAAY,OAOX;AAPD,WAAY,OAAO;IACjB,mBAAmB;IACnB,wBAAa,CAAA;IACb,4DAA4D;IAC5D,oDAAyC,CAAA;IACzC,2DAA2D;IAC3D,kDAAuC,CAAA;AACzC,CAAC,EAPW,OAAO,uBAAP,OAAO,QAOlB;AAqOD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
1
+ {"version":3,"file":"events-v1-ticket-definition-ticket-definitions.types.js","sourceRoot":"","sources":["../../../src/events-v1-ticket-definition-ticket-definitions.types.ts"],"names":[],"mappings":";;;AA6FA,IAAY,OAOX;AAPD,WAAY,OAAO;IACjB,oDAAoD;IACpD,kCAAuB,CAAA;IACvB,oEAAoE;IACpE,wCAA6B,CAAA;IAC7B,oDAAoD;IACpD,0DAA+C,CAAA;AACjD,CAAC,EAPW,OAAO,uBAAP,OAAO,QAOlB;AAWD,IAAY,gBAOX;AAPD,WAAY,gBAAgB;IAC1B,yCAAyC;IACzC,qDAAiC,CAAA;IACjC,+BAA+B;IAC/B,iDAA6B,CAAA;IAC7B,6BAA6B;IAC7B,6CAAyB,CAAA;AAC3B,CAAC,EAPW,gBAAgB,gCAAhB,gBAAgB,QAO3B;AAED,IAAY,8BAEX;AAFD,WAAY,8BAA8B;IACxC,2FAAyD,CAAA;AAC3D,CAAC,EAFW,8BAA8B,8CAA9B,8BAA8B,QAEzC;AA+CD,IAAY,IAGX;AAHD,WAAY,IAAI;IACd,6BAAqB,CAAA;IACrB,6BAAqB,CAAA;AACvB,CAAC,EAHW,IAAI,oBAAJ,IAAI,QAGf;AAgCD,IAAY,wBAKX;AALD,WAAY,wBAAwB;IAClC,wCAAwC;IACxC,6CAAiB,CAAA;IACjB,2CAA2C;IAC3C,mDAAuB,CAAA;AACzB,CAAC,EALW,wBAAwB,wCAAxB,wBAAwB,QAKnC;AAqED,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AA4GD,IAAY,KASX;AATD,WAAY,KAAK;IACf,4CAA4C;IAC5C,4BAAmB,CAAA;IACnB,8CAA8C;IAC9C,0BAAiB,CAAA;IACjB,6BAA6B;IAC7B,sBAAa,CAAA;IACb,0CAA0C;IAC1C,sBAAa,CAAA;AACf,CAAC,EATW,KAAK,qBAAL,KAAK,QAShB;AAED,IAAY,OAOX;AAPD,WAAY,OAAO;IACjB,mBAAmB;IACnB,wBAAa,CAAA;IACb,4DAA4D;IAC5D,oDAAyC,CAAA;IACzC,2DAA2D;IAC3D,kDAAuC,CAAA;AACzC,CAAC,EAPW,OAAO,uBAAP,OAAO,QAOlB;AA2UD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}