@mac777/project-pinecone-schema 1.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.
Files changed (107) hide show
  1. package/dist/auth/auth.constants.d.ts +8 -0
  2. package/dist/auth/auth.constants.js +12 -0
  3. package/dist/auth/auth.schema.d.ts +100 -0
  4. package/dist/auth/auth.schema.js +53 -0
  5. package/dist/auth/auth.type.d.ts +31 -0
  6. package/dist/auth/auth.type.js +2 -0
  7. package/dist/auth/index.d.ts +3 -0
  8. package/dist/auth/index.js +19 -0
  9. package/dist/auth/utils/password.schema.d.ts +4 -0
  10. package/dist/auth/utils/password.schema.js +18 -0
  11. package/dist/auth.d.ts +1 -0
  12. package/dist/auth.js +18 -0
  13. package/dist/events/admin.schema.d.ts +208 -0
  14. package/dist/events/admin.schema.js +70 -0
  15. package/dist/events/age.restriction.schema.d.ts +2 -0
  16. package/dist/events/age.restriction.schema.js +5 -0
  17. package/dist/events/document.schema.d.ts +17 -0
  18. package/dist/events/document.schema.js +10 -0
  19. package/dist/events/event.schema.d.ts +0 -0
  20. package/dist/events/event.schema.js +1 -0
  21. package/dist/events/event.type.schema.d.ts +2 -0
  22. package/dist/events/event.type.schema.js +5 -0
  23. package/dist/events/events.constant.d.ts +9 -0
  24. package/dist/events/events.constant.js +12 -0
  25. package/dist/events/events.constants.d.ts +69 -0
  26. package/dist/events/events.constants.js +147 -0
  27. package/dist/events/events.d.ts +3 -0
  28. package/dist/events/events.js +19 -0
  29. package/dist/events/events.schema.d.ts +4605 -0
  30. package/dist/events/events.schema.js +145 -0
  31. package/dist/events/events.type.d.ts +47 -0
  32. package/dist/events/events.type.js +2 -0
  33. package/dist/events/events.utils.schema.d.ts +5 -0
  34. package/dist/events/events.utils.schema.js +21 -0
  35. package/dist/events/index.d.ts +4 -0
  36. package/dist/events/index.js +20 -0
  37. package/dist/events/media.schema.d.ts +77 -0
  38. package/dist/events/media.schema.js +36 -0
  39. package/dist/events/organizer.schema.d.ts +55 -0
  40. package/dist/events/organizer.schema.js +15 -0
  41. package/dist/events/schedule.schema.d.ts +20 -0
  42. package/dist/events/schedule.schema.js +11 -0
  43. package/dist/events/step.schema.d.ts +0 -0
  44. package/dist/events/step.schema.js +1 -0
  45. package/dist/events/ticket.schema.d.ts +113 -0
  46. package/dist/events/ticket.schema.js +29 -0
  47. package/dist/events/utils/admin.schema.d.ts +208 -0
  48. package/dist/events/utils/admin.schema.js +70 -0
  49. package/dist/events/utils/age.restriction.schema.d.ts +2 -0
  50. package/dist/events/utils/age.restriction.schema.js +5 -0
  51. package/dist/events/utils/document.schema.d.ts +17 -0
  52. package/dist/events/utils/document.schema.js +10 -0
  53. package/dist/events/utils/event.type.schema.d.ts +2 -0
  54. package/dist/events/utils/event.type.schema.js +5 -0
  55. package/dist/events/utils/media.schema.d.ts +77 -0
  56. package/dist/events/utils/media.schema.js +36 -0
  57. package/dist/events/utils/organizer.schema.d.ts +55 -0
  58. package/dist/events/utils/organizer.schema.js +15 -0
  59. package/dist/events/utils/schedule.schema.d.ts +20 -0
  60. package/dist/events/utils/schedule.schema.js +11 -0
  61. package/dist/events/utils/ticket.schema.d.ts +119 -0
  62. package/dist/events/utils/ticket.schema.js +31 -0
  63. package/dist/events/utils/venue.schema.d.ts +75 -0
  64. package/dist/events/utils/venue.schema.js +22 -0
  65. package/dist/events/utils.schema.d.ts +6 -0
  66. package/dist/events/utils.schema.js +22 -0
  67. package/dist/events/venue.schema.d.ts +75 -0
  68. package/dist/events/venue.schema.js +22 -0
  69. package/dist/events.constant.d.ts +9 -0
  70. package/dist/events.constant.js +12 -0
  71. package/dist/events.constants.d.ts +9 -0
  72. package/dist/events.constants.js +12 -0
  73. package/dist/events.d.ts +39 -0
  74. package/dist/events.js +2 -0
  75. package/dist/events.schema.d.ts +229 -0
  76. package/dist/events.schema.js +95 -0
  77. package/dist/events.type.d.ts +42 -0
  78. package/dist/events.type.js +2 -0
  79. package/dist/events.utils.schema.d.ts +6 -0
  80. package/dist/events.utils.schema.js +22 -0
  81. package/dist/index.d.ts +4 -0
  82. package/dist/index.js +20 -0
  83. package/dist/media/index.d.ts +2 -0
  84. package/dist/media/index.js +18 -0
  85. package/dist/media/media.schema.d.ts +57 -0
  86. package/dist/media/media.schema.js +37 -0
  87. package/dist/media/media.type.d.ts +8 -0
  88. package/dist/media/media.type.js +2 -0
  89. package/dist/media/utils/backblaze.schema.d.ts +14 -0
  90. package/dist/media/utils/backblaze.schema.js +10 -0
  91. package/dist/media/utils/imagekit.schema.d.ts +34 -0
  92. package/dist/media/utils/imagekit.schema.js +20 -0
  93. package/dist/orders/index.d.ts +6 -0
  94. package/dist/orders/index.js +22 -0
  95. package/dist/orders/orders.schema.d.ts +600 -0
  96. package/dist/orders/orders.schema.js +89 -0
  97. package/dist/orders/orders.type.d.ts +56 -0
  98. package/dist/orders/orders.type.js +2 -0
  99. package/dist/orders/payments.schema.d.ts +215 -0
  100. package/dist/orders/payments.schema.js +67 -0
  101. package/dist/orders/payments.type.d.ts +58 -0
  102. package/dist/orders/payments.type.js +2 -0
  103. package/dist/orders/ticket.schema.d.ts +265 -0
  104. package/dist/orders/ticket.schema.js +65 -0
  105. package/dist/orders/ticket.type.d.ts +71 -0
  106. package/dist/orders/ticket.type.js +2 -0
  107. package/package.json +21 -0
@@ -0,0 +1,4605 @@
1
+ import { z } from 'zod';
2
+ export declare const stepBasicsSchema: z.ZodObject<{
3
+ title: z.ZodString;
4
+ tagline: z.ZodOptional<z.ZodString>;
5
+ type: z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>;
6
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
8
+ title: z.ZodString;
9
+ tagline: z.ZodOptional<z.ZodString>;
10
+ type: z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>;
11
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13
+ title: z.ZodString;
14
+ tagline: z.ZodOptional<z.ZodString>;
15
+ type: z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>;
16
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17
+ }, z.ZodTypeAny, "passthrough">>;
18
+ export declare const stepDetailsSchema: z.ZodObject<{
19
+ media: z.ZodObject<{
20
+ coverImage: z.ZodObject<{
21
+ alt: z.ZodString;
22
+ thumbnailUrl: z.ZodString;
23
+ url: z.ZodString;
24
+ }, "strip", z.ZodTypeAny, {
25
+ alt: string;
26
+ thumbnailUrl: string;
27
+ url: string;
28
+ }, {
29
+ alt: string;
30
+ thumbnailUrl: string;
31
+ url: string;
32
+ }>;
33
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
34
+ alt: z.ZodString;
35
+ thumbnailUrl: z.ZodString;
36
+ url: z.ZodString;
37
+ }, "strip", z.ZodTypeAny, {
38
+ alt: string;
39
+ thumbnailUrl: string;
40
+ url: string;
41
+ }, {
42
+ alt: string;
43
+ thumbnailUrl: string;
44
+ url: string;
45
+ }>, "many">>;
46
+ }, "strip", z.ZodTypeAny, {
47
+ coverImage: {
48
+ alt: string;
49
+ thumbnailUrl: string;
50
+ url: string;
51
+ };
52
+ gallery?: {
53
+ alt: string;
54
+ thumbnailUrl: string;
55
+ url: string;
56
+ }[] | undefined;
57
+ }, {
58
+ coverImage: {
59
+ alt: string;
60
+ thumbnailUrl: string;
61
+ url: string;
62
+ };
63
+ gallery?: {
64
+ alt: string;
65
+ thumbnailUrl: string;
66
+ url: string;
67
+ }[] | undefined;
68
+ }>;
69
+ description: z.ZodString;
70
+ highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
71
+ language: z.ZodString;
72
+ ageRestriction: z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>;
73
+ dressCode: z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>;
74
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
75
+ media: z.ZodObject<{
76
+ coverImage: z.ZodObject<{
77
+ alt: z.ZodString;
78
+ thumbnailUrl: z.ZodString;
79
+ url: z.ZodString;
80
+ }, "strip", z.ZodTypeAny, {
81
+ alt: string;
82
+ thumbnailUrl: string;
83
+ url: string;
84
+ }, {
85
+ alt: string;
86
+ thumbnailUrl: string;
87
+ url: string;
88
+ }>;
89
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
90
+ alt: z.ZodString;
91
+ thumbnailUrl: z.ZodString;
92
+ url: z.ZodString;
93
+ }, "strip", z.ZodTypeAny, {
94
+ alt: string;
95
+ thumbnailUrl: string;
96
+ url: string;
97
+ }, {
98
+ alt: string;
99
+ thumbnailUrl: string;
100
+ url: string;
101
+ }>, "many">>;
102
+ }, "strip", z.ZodTypeAny, {
103
+ coverImage: {
104
+ alt: string;
105
+ thumbnailUrl: string;
106
+ url: string;
107
+ };
108
+ gallery?: {
109
+ alt: string;
110
+ thumbnailUrl: string;
111
+ url: string;
112
+ }[] | undefined;
113
+ }, {
114
+ coverImage: {
115
+ alt: string;
116
+ thumbnailUrl: string;
117
+ url: string;
118
+ };
119
+ gallery?: {
120
+ alt: string;
121
+ thumbnailUrl: string;
122
+ url: string;
123
+ }[] | undefined;
124
+ }>;
125
+ description: z.ZodString;
126
+ highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
127
+ language: z.ZodString;
128
+ ageRestriction: z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>;
129
+ dressCode: z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>;
130
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
131
+ media: z.ZodObject<{
132
+ coverImage: z.ZodObject<{
133
+ alt: z.ZodString;
134
+ thumbnailUrl: z.ZodString;
135
+ url: z.ZodString;
136
+ }, "strip", z.ZodTypeAny, {
137
+ alt: string;
138
+ thumbnailUrl: string;
139
+ url: string;
140
+ }, {
141
+ alt: string;
142
+ thumbnailUrl: string;
143
+ url: string;
144
+ }>;
145
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
146
+ alt: z.ZodString;
147
+ thumbnailUrl: z.ZodString;
148
+ url: z.ZodString;
149
+ }, "strip", z.ZodTypeAny, {
150
+ alt: string;
151
+ thumbnailUrl: string;
152
+ url: string;
153
+ }, {
154
+ alt: string;
155
+ thumbnailUrl: string;
156
+ url: string;
157
+ }>, "many">>;
158
+ }, "strip", z.ZodTypeAny, {
159
+ coverImage: {
160
+ alt: string;
161
+ thumbnailUrl: string;
162
+ url: string;
163
+ };
164
+ gallery?: {
165
+ alt: string;
166
+ thumbnailUrl: string;
167
+ url: string;
168
+ }[] | undefined;
169
+ }, {
170
+ coverImage: {
171
+ alt: string;
172
+ thumbnailUrl: string;
173
+ url: string;
174
+ };
175
+ gallery?: {
176
+ alt: string;
177
+ thumbnailUrl: string;
178
+ url: string;
179
+ }[] | undefined;
180
+ }>;
181
+ description: z.ZodString;
182
+ highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
183
+ language: z.ZodString;
184
+ ageRestriction: z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>;
185
+ dressCode: z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>;
186
+ }, z.ZodTypeAny, "passthrough">>;
187
+ export declare const stepLogisticsSchema: z.ZodEffects<z.ZodObject<{
188
+ schedule: z.ZodObject<{
189
+ startDate: z.ZodString;
190
+ endDate: z.ZodString;
191
+ timezone: z.ZodOptional<z.ZodString>;
192
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
193
+ doors: z.ZodOptional<z.ZodString>;
194
+ }, "strip", z.ZodTypeAny, {
195
+ startDate: string;
196
+ endDate: string;
197
+ timezone?: string | undefined;
198
+ isMultiDay?: boolean | undefined;
199
+ doors?: string | undefined;
200
+ }, {
201
+ startDate: string;
202
+ endDate: string;
203
+ timezone?: string | undefined;
204
+ isMultiDay?: boolean | undefined;
205
+ doors?: string | undefined;
206
+ }>;
207
+ venue: z.ZodObject<{
208
+ name: z.ZodString;
209
+ address: z.ZodObject<{
210
+ street: z.ZodString;
211
+ city: z.ZodString;
212
+ country: z.ZodString;
213
+ }, "strip", z.ZodTypeAny, {
214
+ street: string;
215
+ city: string;
216
+ country: string;
217
+ }, {
218
+ street: string;
219
+ city: string;
220
+ country: string;
221
+ }>;
222
+ coordinates: z.ZodOptional<z.ZodObject<{
223
+ type: z.ZodLiteral<"Point">;
224
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
225
+ }, "strip", z.ZodTypeAny, {
226
+ type: "Point";
227
+ coordinates: [number, number];
228
+ }, {
229
+ type: "Point";
230
+ coordinates: [number, number];
231
+ }>>;
232
+ capacity: z.ZodNumber;
233
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
234
+ parking: z.ZodOptional<z.ZodBoolean>;
235
+ publicTransit: z.ZodOptional<z.ZodString>;
236
+ }, "strip", z.ZodTypeAny, {
237
+ name: string;
238
+ address: {
239
+ street: string;
240
+ city: string;
241
+ country: string;
242
+ };
243
+ capacity: number;
244
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
245
+ coordinates?: {
246
+ type: "Point";
247
+ coordinates: [number, number];
248
+ } | undefined;
249
+ parking?: boolean | undefined;
250
+ publicTransit?: string | undefined;
251
+ }, {
252
+ name: string;
253
+ address: {
254
+ street: string;
255
+ city: string;
256
+ country: string;
257
+ };
258
+ capacity: number;
259
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
260
+ coordinates?: {
261
+ type: "Point";
262
+ coordinates: [number, number];
263
+ } | undefined;
264
+ parking?: boolean | undefined;
265
+ publicTransit?: string | undefined;
266
+ }>;
267
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
268
+ schedule: z.ZodObject<{
269
+ startDate: z.ZodString;
270
+ endDate: z.ZodString;
271
+ timezone: z.ZodOptional<z.ZodString>;
272
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
273
+ doors: z.ZodOptional<z.ZodString>;
274
+ }, "strip", z.ZodTypeAny, {
275
+ startDate: string;
276
+ endDate: string;
277
+ timezone?: string | undefined;
278
+ isMultiDay?: boolean | undefined;
279
+ doors?: string | undefined;
280
+ }, {
281
+ startDate: string;
282
+ endDate: string;
283
+ timezone?: string | undefined;
284
+ isMultiDay?: boolean | undefined;
285
+ doors?: string | undefined;
286
+ }>;
287
+ venue: z.ZodObject<{
288
+ name: z.ZodString;
289
+ address: z.ZodObject<{
290
+ street: z.ZodString;
291
+ city: z.ZodString;
292
+ country: z.ZodString;
293
+ }, "strip", z.ZodTypeAny, {
294
+ street: string;
295
+ city: string;
296
+ country: string;
297
+ }, {
298
+ street: string;
299
+ city: string;
300
+ country: string;
301
+ }>;
302
+ coordinates: z.ZodOptional<z.ZodObject<{
303
+ type: z.ZodLiteral<"Point">;
304
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
305
+ }, "strip", z.ZodTypeAny, {
306
+ type: "Point";
307
+ coordinates: [number, number];
308
+ }, {
309
+ type: "Point";
310
+ coordinates: [number, number];
311
+ }>>;
312
+ capacity: z.ZodNumber;
313
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
314
+ parking: z.ZodOptional<z.ZodBoolean>;
315
+ publicTransit: z.ZodOptional<z.ZodString>;
316
+ }, "strip", z.ZodTypeAny, {
317
+ name: string;
318
+ address: {
319
+ street: string;
320
+ city: string;
321
+ country: string;
322
+ };
323
+ capacity: number;
324
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
325
+ coordinates?: {
326
+ type: "Point";
327
+ coordinates: [number, number];
328
+ } | undefined;
329
+ parking?: boolean | undefined;
330
+ publicTransit?: string | undefined;
331
+ }, {
332
+ name: string;
333
+ address: {
334
+ street: string;
335
+ city: string;
336
+ country: string;
337
+ };
338
+ capacity: number;
339
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
340
+ coordinates?: {
341
+ type: "Point";
342
+ coordinates: [number, number];
343
+ } | undefined;
344
+ parking?: boolean | undefined;
345
+ publicTransit?: string | undefined;
346
+ }>;
347
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
348
+ schedule: z.ZodObject<{
349
+ startDate: z.ZodString;
350
+ endDate: z.ZodString;
351
+ timezone: z.ZodOptional<z.ZodString>;
352
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
353
+ doors: z.ZodOptional<z.ZodString>;
354
+ }, "strip", z.ZodTypeAny, {
355
+ startDate: string;
356
+ endDate: string;
357
+ timezone?: string | undefined;
358
+ isMultiDay?: boolean | undefined;
359
+ doors?: string | undefined;
360
+ }, {
361
+ startDate: string;
362
+ endDate: string;
363
+ timezone?: string | undefined;
364
+ isMultiDay?: boolean | undefined;
365
+ doors?: string | undefined;
366
+ }>;
367
+ venue: z.ZodObject<{
368
+ name: z.ZodString;
369
+ address: z.ZodObject<{
370
+ street: z.ZodString;
371
+ city: z.ZodString;
372
+ country: z.ZodString;
373
+ }, "strip", z.ZodTypeAny, {
374
+ street: string;
375
+ city: string;
376
+ country: string;
377
+ }, {
378
+ street: string;
379
+ city: string;
380
+ country: string;
381
+ }>;
382
+ coordinates: z.ZodOptional<z.ZodObject<{
383
+ type: z.ZodLiteral<"Point">;
384
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
385
+ }, "strip", z.ZodTypeAny, {
386
+ type: "Point";
387
+ coordinates: [number, number];
388
+ }, {
389
+ type: "Point";
390
+ coordinates: [number, number];
391
+ }>>;
392
+ capacity: z.ZodNumber;
393
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
394
+ parking: z.ZodOptional<z.ZodBoolean>;
395
+ publicTransit: z.ZodOptional<z.ZodString>;
396
+ }, "strip", z.ZodTypeAny, {
397
+ name: string;
398
+ address: {
399
+ street: string;
400
+ city: string;
401
+ country: string;
402
+ };
403
+ capacity: number;
404
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
405
+ coordinates?: {
406
+ type: "Point";
407
+ coordinates: [number, number];
408
+ } | undefined;
409
+ parking?: boolean | undefined;
410
+ publicTransit?: string | undefined;
411
+ }, {
412
+ name: string;
413
+ address: {
414
+ street: string;
415
+ city: string;
416
+ country: string;
417
+ };
418
+ capacity: number;
419
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
420
+ coordinates?: {
421
+ type: "Point";
422
+ coordinates: [number, number];
423
+ } | undefined;
424
+ parking?: boolean | undefined;
425
+ publicTransit?: string | undefined;
426
+ }>;
427
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
428
+ schedule: z.ZodObject<{
429
+ startDate: z.ZodString;
430
+ endDate: z.ZodString;
431
+ timezone: z.ZodOptional<z.ZodString>;
432
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
433
+ doors: z.ZodOptional<z.ZodString>;
434
+ }, "strip", z.ZodTypeAny, {
435
+ startDate: string;
436
+ endDate: string;
437
+ timezone?: string | undefined;
438
+ isMultiDay?: boolean | undefined;
439
+ doors?: string | undefined;
440
+ }, {
441
+ startDate: string;
442
+ endDate: string;
443
+ timezone?: string | undefined;
444
+ isMultiDay?: boolean | undefined;
445
+ doors?: string | undefined;
446
+ }>;
447
+ venue: z.ZodObject<{
448
+ name: z.ZodString;
449
+ address: z.ZodObject<{
450
+ street: z.ZodString;
451
+ city: z.ZodString;
452
+ country: z.ZodString;
453
+ }, "strip", z.ZodTypeAny, {
454
+ street: string;
455
+ city: string;
456
+ country: string;
457
+ }, {
458
+ street: string;
459
+ city: string;
460
+ country: string;
461
+ }>;
462
+ coordinates: z.ZodOptional<z.ZodObject<{
463
+ type: z.ZodLiteral<"Point">;
464
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
465
+ }, "strip", z.ZodTypeAny, {
466
+ type: "Point";
467
+ coordinates: [number, number];
468
+ }, {
469
+ type: "Point";
470
+ coordinates: [number, number];
471
+ }>>;
472
+ capacity: z.ZodNumber;
473
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
474
+ parking: z.ZodOptional<z.ZodBoolean>;
475
+ publicTransit: z.ZodOptional<z.ZodString>;
476
+ }, "strip", z.ZodTypeAny, {
477
+ name: string;
478
+ address: {
479
+ street: string;
480
+ city: string;
481
+ country: string;
482
+ };
483
+ capacity: number;
484
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
485
+ coordinates?: {
486
+ type: "Point";
487
+ coordinates: [number, number];
488
+ } | undefined;
489
+ parking?: boolean | undefined;
490
+ publicTransit?: string | undefined;
491
+ }, {
492
+ name: string;
493
+ address: {
494
+ street: string;
495
+ city: string;
496
+ country: string;
497
+ };
498
+ capacity: number;
499
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
500
+ coordinates?: {
501
+ type: "Point";
502
+ coordinates: [number, number];
503
+ } | undefined;
504
+ parking?: boolean | undefined;
505
+ publicTransit?: string | undefined;
506
+ }>;
507
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
508
+ schedule: z.ZodObject<{
509
+ startDate: z.ZodString;
510
+ endDate: z.ZodString;
511
+ timezone: z.ZodOptional<z.ZodString>;
512
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
513
+ doors: z.ZodOptional<z.ZodString>;
514
+ }, "strip", z.ZodTypeAny, {
515
+ startDate: string;
516
+ endDate: string;
517
+ timezone?: string | undefined;
518
+ isMultiDay?: boolean | undefined;
519
+ doors?: string | undefined;
520
+ }, {
521
+ startDate: string;
522
+ endDate: string;
523
+ timezone?: string | undefined;
524
+ isMultiDay?: boolean | undefined;
525
+ doors?: string | undefined;
526
+ }>;
527
+ venue: z.ZodObject<{
528
+ name: z.ZodString;
529
+ address: z.ZodObject<{
530
+ street: z.ZodString;
531
+ city: z.ZodString;
532
+ country: z.ZodString;
533
+ }, "strip", z.ZodTypeAny, {
534
+ street: string;
535
+ city: string;
536
+ country: string;
537
+ }, {
538
+ street: string;
539
+ city: string;
540
+ country: string;
541
+ }>;
542
+ coordinates: z.ZodOptional<z.ZodObject<{
543
+ type: z.ZodLiteral<"Point">;
544
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
545
+ }, "strip", z.ZodTypeAny, {
546
+ type: "Point";
547
+ coordinates: [number, number];
548
+ }, {
549
+ type: "Point";
550
+ coordinates: [number, number];
551
+ }>>;
552
+ capacity: z.ZodNumber;
553
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
554
+ parking: z.ZodOptional<z.ZodBoolean>;
555
+ publicTransit: z.ZodOptional<z.ZodString>;
556
+ }, "strip", z.ZodTypeAny, {
557
+ name: string;
558
+ address: {
559
+ street: string;
560
+ city: string;
561
+ country: string;
562
+ };
563
+ capacity: number;
564
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
565
+ coordinates?: {
566
+ type: "Point";
567
+ coordinates: [number, number];
568
+ } | undefined;
569
+ parking?: boolean | undefined;
570
+ publicTransit?: string | undefined;
571
+ }, {
572
+ name: string;
573
+ address: {
574
+ street: string;
575
+ city: string;
576
+ country: string;
577
+ };
578
+ capacity: number;
579
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
580
+ coordinates?: {
581
+ type: "Point";
582
+ coordinates: [number, number];
583
+ } | undefined;
584
+ parking?: boolean | undefined;
585
+ publicTransit?: string | undefined;
586
+ }>;
587
+ }, z.ZodTypeAny, "passthrough">>;
588
+ export declare const stepVerifySchema: z.ZodObject<{
589
+ organizer: z.ZodObject<{
590
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
591
+ companyName: z.ZodOptional<z.ZodString>;
592
+ contactPerson: z.ZodObject<{
593
+ name: z.ZodString;
594
+ phone: z.ZodString;
595
+ email: z.ZodString;
596
+ designation: z.ZodOptional<z.ZodString>;
597
+ }, "strip", z.ZodTypeAny, {
598
+ email: string;
599
+ name: string;
600
+ phone: string;
601
+ designation?: string | undefined;
602
+ }, {
603
+ email: string;
604
+ name: string;
605
+ phone: string;
606
+ designation?: string | undefined;
607
+ }>;
608
+ }, "strip", z.ZodTypeAny, {
609
+ contactPerson: {
610
+ email: string;
611
+ name: string;
612
+ phone: string;
613
+ designation?: string | undefined;
614
+ };
615
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
616
+ companyName?: string | undefined;
617
+ }, {
618
+ contactPerson: {
619
+ email: string;
620
+ name: string;
621
+ phone: string;
622
+ designation?: string | undefined;
623
+ };
624
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
625
+ companyName?: string | undefined;
626
+ }>;
627
+ verification: z.ZodObject<{
628
+ documents: z.ZodArray<z.ZodObject<{
629
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
630
+ url: z.ZodOptional<z.ZodString>;
631
+ filename: z.ZodString;
632
+ objectKey: z.ZodString;
633
+ }, "strip", z.ZodTypeAny, {
634
+ filename: string;
635
+ objectKey: string;
636
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
637
+ url?: string | undefined;
638
+ }, {
639
+ filename: string;
640
+ objectKey: string;
641
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
642
+ url?: string | undefined;
643
+ }>, "many">;
644
+ }, "strip", z.ZodTypeAny, {
645
+ documents: {
646
+ filename: string;
647
+ objectKey: string;
648
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
649
+ url?: string | undefined;
650
+ }[];
651
+ }, {
652
+ documents: {
653
+ filename: string;
654
+ objectKey: string;
655
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
656
+ url?: string | undefined;
657
+ }[];
658
+ }>;
659
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
660
+ organizer: z.ZodObject<{
661
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
662
+ companyName: z.ZodOptional<z.ZodString>;
663
+ contactPerson: z.ZodObject<{
664
+ name: z.ZodString;
665
+ phone: z.ZodString;
666
+ email: z.ZodString;
667
+ designation: z.ZodOptional<z.ZodString>;
668
+ }, "strip", z.ZodTypeAny, {
669
+ email: string;
670
+ name: string;
671
+ phone: string;
672
+ designation?: string | undefined;
673
+ }, {
674
+ email: string;
675
+ name: string;
676
+ phone: string;
677
+ designation?: string | undefined;
678
+ }>;
679
+ }, "strip", z.ZodTypeAny, {
680
+ contactPerson: {
681
+ email: string;
682
+ name: string;
683
+ phone: string;
684
+ designation?: string | undefined;
685
+ };
686
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
687
+ companyName?: string | undefined;
688
+ }, {
689
+ contactPerson: {
690
+ email: string;
691
+ name: string;
692
+ phone: string;
693
+ designation?: string | undefined;
694
+ };
695
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
696
+ companyName?: string | undefined;
697
+ }>;
698
+ verification: z.ZodObject<{
699
+ documents: z.ZodArray<z.ZodObject<{
700
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
701
+ url: z.ZodOptional<z.ZodString>;
702
+ filename: z.ZodString;
703
+ objectKey: z.ZodString;
704
+ }, "strip", z.ZodTypeAny, {
705
+ filename: string;
706
+ objectKey: string;
707
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
708
+ url?: string | undefined;
709
+ }, {
710
+ filename: string;
711
+ objectKey: string;
712
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
713
+ url?: string | undefined;
714
+ }>, "many">;
715
+ }, "strip", z.ZodTypeAny, {
716
+ documents: {
717
+ filename: string;
718
+ objectKey: string;
719
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
720
+ url?: string | undefined;
721
+ }[];
722
+ }, {
723
+ documents: {
724
+ filename: string;
725
+ objectKey: string;
726
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
727
+ url?: string | undefined;
728
+ }[];
729
+ }>;
730
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
731
+ organizer: z.ZodObject<{
732
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
733
+ companyName: z.ZodOptional<z.ZodString>;
734
+ contactPerson: z.ZodObject<{
735
+ name: z.ZodString;
736
+ phone: z.ZodString;
737
+ email: z.ZodString;
738
+ designation: z.ZodOptional<z.ZodString>;
739
+ }, "strip", z.ZodTypeAny, {
740
+ email: string;
741
+ name: string;
742
+ phone: string;
743
+ designation?: string | undefined;
744
+ }, {
745
+ email: string;
746
+ name: string;
747
+ phone: string;
748
+ designation?: string | undefined;
749
+ }>;
750
+ }, "strip", z.ZodTypeAny, {
751
+ contactPerson: {
752
+ email: string;
753
+ name: string;
754
+ phone: string;
755
+ designation?: string | undefined;
756
+ };
757
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
758
+ companyName?: string | undefined;
759
+ }, {
760
+ contactPerson: {
761
+ email: string;
762
+ name: string;
763
+ phone: string;
764
+ designation?: string | undefined;
765
+ };
766
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
767
+ companyName?: string | undefined;
768
+ }>;
769
+ verification: z.ZodObject<{
770
+ documents: z.ZodArray<z.ZodObject<{
771
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
772
+ url: z.ZodOptional<z.ZodString>;
773
+ filename: z.ZodString;
774
+ objectKey: z.ZodString;
775
+ }, "strip", z.ZodTypeAny, {
776
+ filename: string;
777
+ objectKey: string;
778
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
779
+ url?: string | undefined;
780
+ }, {
781
+ filename: string;
782
+ objectKey: string;
783
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
784
+ url?: string | undefined;
785
+ }>, "many">;
786
+ }, "strip", z.ZodTypeAny, {
787
+ documents: {
788
+ filename: string;
789
+ objectKey: string;
790
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
791
+ url?: string | undefined;
792
+ }[];
793
+ }, {
794
+ documents: {
795
+ filename: string;
796
+ objectKey: string;
797
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
798
+ url?: string | undefined;
799
+ }[];
800
+ }>;
801
+ }, z.ZodTypeAny, "passthrough">>;
802
+ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
803
+ tickets: z.ZodArray<z.ZodObject<{
804
+ id: z.ZodOptional<z.ZodString>;
805
+ name: z.ZodString;
806
+ description: z.ZodOptional<z.ZodString>;
807
+ price: z.ZodObject<{
808
+ amount: z.ZodNumber;
809
+ currency: z.ZodDefault<z.ZodString>;
810
+ }, "strip", z.ZodTypeAny, {
811
+ amount: number;
812
+ currency: string;
813
+ }, {
814
+ amount: number;
815
+ currency?: string | undefined;
816
+ }>;
817
+ quantity: z.ZodNumber;
818
+ salesWindow: z.ZodOptional<z.ZodObject<{
819
+ startDate: z.ZodOptional<z.ZodString>;
820
+ endDate: z.ZodOptional<z.ZodString>;
821
+ }, "strip", z.ZodTypeAny, {
822
+ startDate?: string | undefined;
823
+ endDate?: string | undefined;
824
+ }, {
825
+ startDate?: string | undefined;
826
+ endDate?: string | undefined;
827
+ }>>;
828
+ limits: z.ZodOptional<z.ZodObject<{
829
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
830
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
831
+ }, "strip", z.ZodTypeAny, {
832
+ minPerOrder: number;
833
+ maxPerOrder: number;
834
+ }, {
835
+ minPerOrder?: number | undefined;
836
+ maxPerOrder?: number | undefined;
837
+ }>>;
838
+ remaining: z.ZodOptional<z.ZodNumber>;
839
+ sold: z.ZodOptional<z.ZodNumber>;
840
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
841
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
842
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
843
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
844
+ }, "strip", z.ZodTypeAny, {
845
+ name: string;
846
+ price: {
847
+ amount: number;
848
+ currency: string;
849
+ };
850
+ quantity: number;
851
+ tier: "early_bird" | "regular" | "vip";
852
+ status?: "active" | "inactive" | undefined;
853
+ id?: string | undefined;
854
+ description?: string | undefined;
855
+ salesWindow?: {
856
+ startDate?: string | undefined;
857
+ endDate?: string | undefined;
858
+ } | undefined;
859
+ limits?: {
860
+ minPerOrder: number;
861
+ maxPerOrder: number;
862
+ } | undefined;
863
+ remaining?: number | undefined;
864
+ sold?: number | undefined;
865
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
866
+ benefits?: string[] | undefined;
867
+ }, {
868
+ name: string;
869
+ price: {
870
+ amount: number;
871
+ currency?: string | undefined;
872
+ };
873
+ quantity: number;
874
+ status?: "active" | "inactive" | undefined;
875
+ id?: string | undefined;
876
+ description?: string | undefined;
877
+ salesWindow?: {
878
+ startDate?: string | undefined;
879
+ endDate?: string | undefined;
880
+ } | undefined;
881
+ limits?: {
882
+ minPerOrder?: number | undefined;
883
+ maxPerOrder?: number | undefined;
884
+ } | undefined;
885
+ remaining?: number | undefined;
886
+ sold?: number | undefined;
887
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
888
+ benefits?: string[] | undefined;
889
+ tier?: "early_bird" | "regular" | "vip" | undefined;
890
+ }>, "many">;
891
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
892
+ tickets: z.ZodArray<z.ZodObject<{
893
+ id: z.ZodOptional<z.ZodString>;
894
+ name: z.ZodString;
895
+ description: z.ZodOptional<z.ZodString>;
896
+ price: z.ZodObject<{
897
+ amount: z.ZodNumber;
898
+ currency: z.ZodDefault<z.ZodString>;
899
+ }, "strip", z.ZodTypeAny, {
900
+ amount: number;
901
+ currency: string;
902
+ }, {
903
+ amount: number;
904
+ currency?: string | undefined;
905
+ }>;
906
+ quantity: z.ZodNumber;
907
+ salesWindow: z.ZodOptional<z.ZodObject<{
908
+ startDate: z.ZodOptional<z.ZodString>;
909
+ endDate: z.ZodOptional<z.ZodString>;
910
+ }, "strip", z.ZodTypeAny, {
911
+ startDate?: string | undefined;
912
+ endDate?: string | undefined;
913
+ }, {
914
+ startDate?: string | undefined;
915
+ endDate?: string | undefined;
916
+ }>>;
917
+ limits: z.ZodOptional<z.ZodObject<{
918
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
919
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
920
+ }, "strip", z.ZodTypeAny, {
921
+ minPerOrder: number;
922
+ maxPerOrder: number;
923
+ }, {
924
+ minPerOrder?: number | undefined;
925
+ maxPerOrder?: number | undefined;
926
+ }>>;
927
+ remaining: z.ZodOptional<z.ZodNumber>;
928
+ sold: z.ZodOptional<z.ZodNumber>;
929
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
930
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
931
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
932
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
933
+ }, "strip", z.ZodTypeAny, {
934
+ name: string;
935
+ price: {
936
+ amount: number;
937
+ currency: string;
938
+ };
939
+ quantity: number;
940
+ tier: "early_bird" | "regular" | "vip";
941
+ status?: "active" | "inactive" | undefined;
942
+ id?: string | undefined;
943
+ description?: string | undefined;
944
+ salesWindow?: {
945
+ startDate?: string | undefined;
946
+ endDate?: string | undefined;
947
+ } | undefined;
948
+ limits?: {
949
+ minPerOrder: number;
950
+ maxPerOrder: number;
951
+ } | undefined;
952
+ remaining?: number | undefined;
953
+ sold?: number | undefined;
954
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
955
+ benefits?: string[] | undefined;
956
+ }, {
957
+ name: string;
958
+ price: {
959
+ amount: number;
960
+ currency?: string | undefined;
961
+ };
962
+ quantity: number;
963
+ status?: "active" | "inactive" | undefined;
964
+ id?: string | undefined;
965
+ description?: string | undefined;
966
+ salesWindow?: {
967
+ startDate?: string | undefined;
968
+ endDate?: string | undefined;
969
+ } | undefined;
970
+ limits?: {
971
+ minPerOrder?: number | undefined;
972
+ maxPerOrder?: number | undefined;
973
+ } | undefined;
974
+ remaining?: number | undefined;
975
+ sold?: number | undefined;
976
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
977
+ benefits?: string[] | undefined;
978
+ tier?: "early_bird" | "regular" | "vip" | undefined;
979
+ }>, "many">;
980
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
981
+ tickets: z.ZodArray<z.ZodObject<{
982
+ id: z.ZodOptional<z.ZodString>;
983
+ name: z.ZodString;
984
+ description: z.ZodOptional<z.ZodString>;
985
+ price: z.ZodObject<{
986
+ amount: z.ZodNumber;
987
+ currency: z.ZodDefault<z.ZodString>;
988
+ }, "strip", z.ZodTypeAny, {
989
+ amount: number;
990
+ currency: string;
991
+ }, {
992
+ amount: number;
993
+ currency?: string | undefined;
994
+ }>;
995
+ quantity: z.ZodNumber;
996
+ salesWindow: z.ZodOptional<z.ZodObject<{
997
+ startDate: z.ZodOptional<z.ZodString>;
998
+ endDate: z.ZodOptional<z.ZodString>;
999
+ }, "strip", z.ZodTypeAny, {
1000
+ startDate?: string | undefined;
1001
+ endDate?: string | undefined;
1002
+ }, {
1003
+ startDate?: string | undefined;
1004
+ endDate?: string | undefined;
1005
+ }>>;
1006
+ limits: z.ZodOptional<z.ZodObject<{
1007
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
1008
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
1009
+ }, "strip", z.ZodTypeAny, {
1010
+ minPerOrder: number;
1011
+ maxPerOrder: number;
1012
+ }, {
1013
+ minPerOrder?: number | undefined;
1014
+ maxPerOrder?: number | undefined;
1015
+ }>>;
1016
+ remaining: z.ZodOptional<z.ZodNumber>;
1017
+ sold: z.ZodOptional<z.ZodNumber>;
1018
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1019
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1020
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1021
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
1022
+ }, "strip", z.ZodTypeAny, {
1023
+ name: string;
1024
+ price: {
1025
+ amount: number;
1026
+ currency: string;
1027
+ };
1028
+ quantity: number;
1029
+ tier: "early_bird" | "regular" | "vip";
1030
+ status?: "active" | "inactive" | undefined;
1031
+ id?: string | undefined;
1032
+ description?: string | undefined;
1033
+ salesWindow?: {
1034
+ startDate?: string | undefined;
1035
+ endDate?: string | undefined;
1036
+ } | undefined;
1037
+ limits?: {
1038
+ minPerOrder: number;
1039
+ maxPerOrder: number;
1040
+ } | undefined;
1041
+ remaining?: number | undefined;
1042
+ sold?: number | undefined;
1043
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1044
+ benefits?: string[] | undefined;
1045
+ }, {
1046
+ name: string;
1047
+ price: {
1048
+ amount: number;
1049
+ currency?: string | undefined;
1050
+ };
1051
+ quantity: number;
1052
+ status?: "active" | "inactive" | undefined;
1053
+ id?: string | undefined;
1054
+ description?: string | undefined;
1055
+ salesWindow?: {
1056
+ startDate?: string | undefined;
1057
+ endDate?: string | undefined;
1058
+ } | undefined;
1059
+ limits?: {
1060
+ minPerOrder?: number | undefined;
1061
+ maxPerOrder?: number | undefined;
1062
+ } | undefined;
1063
+ remaining?: number | undefined;
1064
+ sold?: number | undefined;
1065
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1066
+ benefits?: string[] | undefined;
1067
+ tier?: "early_bird" | "regular" | "vip" | undefined;
1068
+ }>, "many">;
1069
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
1070
+ tickets: z.ZodArray<z.ZodObject<{
1071
+ id: z.ZodOptional<z.ZodString>;
1072
+ name: z.ZodString;
1073
+ description: z.ZodOptional<z.ZodString>;
1074
+ price: z.ZodObject<{
1075
+ amount: z.ZodNumber;
1076
+ currency: z.ZodDefault<z.ZodString>;
1077
+ }, "strip", z.ZodTypeAny, {
1078
+ amount: number;
1079
+ currency: string;
1080
+ }, {
1081
+ amount: number;
1082
+ currency?: string | undefined;
1083
+ }>;
1084
+ quantity: z.ZodNumber;
1085
+ salesWindow: z.ZodOptional<z.ZodObject<{
1086
+ startDate: z.ZodOptional<z.ZodString>;
1087
+ endDate: z.ZodOptional<z.ZodString>;
1088
+ }, "strip", z.ZodTypeAny, {
1089
+ startDate?: string | undefined;
1090
+ endDate?: string | undefined;
1091
+ }, {
1092
+ startDate?: string | undefined;
1093
+ endDate?: string | undefined;
1094
+ }>>;
1095
+ limits: z.ZodOptional<z.ZodObject<{
1096
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
1097
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
1098
+ }, "strip", z.ZodTypeAny, {
1099
+ minPerOrder: number;
1100
+ maxPerOrder: number;
1101
+ }, {
1102
+ minPerOrder?: number | undefined;
1103
+ maxPerOrder?: number | undefined;
1104
+ }>>;
1105
+ remaining: z.ZodOptional<z.ZodNumber>;
1106
+ sold: z.ZodOptional<z.ZodNumber>;
1107
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1108
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1109
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1110
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
1111
+ }, "strip", z.ZodTypeAny, {
1112
+ name: string;
1113
+ price: {
1114
+ amount: number;
1115
+ currency: string;
1116
+ };
1117
+ quantity: number;
1118
+ tier: "early_bird" | "regular" | "vip";
1119
+ status?: "active" | "inactive" | undefined;
1120
+ id?: string | undefined;
1121
+ description?: string | undefined;
1122
+ salesWindow?: {
1123
+ startDate?: string | undefined;
1124
+ endDate?: string | undefined;
1125
+ } | undefined;
1126
+ limits?: {
1127
+ minPerOrder: number;
1128
+ maxPerOrder: number;
1129
+ } | undefined;
1130
+ remaining?: number | undefined;
1131
+ sold?: number | undefined;
1132
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1133
+ benefits?: string[] | undefined;
1134
+ }, {
1135
+ name: string;
1136
+ price: {
1137
+ amount: number;
1138
+ currency?: string | undefined;
1139
+ };
1140
+ quantity: number;
1141
+ status?: "active" | "inactive" | undefined;
1142
+ id?: string | undefined;
1143
+ description?: string | undefined;
1144
+ salesWindow?: {
1145
+ startDate?: string | undefined;
1146
+ endDate?: string | undefined;
1147
+ } | undefined;
1148
+ limits?: {
1149
+ minPerOrder?: number | undefined;
1150
+ maxPerOrder?: number | undefined;
1151
+ } | undefined;
1152
+ remaining?: number | undefined;
1153
+ sold?: number | undefined;
1154
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1155
+ benefits?: string[] | undefined;
1156
+ tier?: "early_bird" | "regular" | "vip" | undefined;
1157
+ }>, "many">;
1158
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1159
+ tickets: z.ZodArray<z.ZodObject<{
1160
+ id: z.ZodOptional<z.ZodString>;
1161
+ name: z.ZodString;
1162
+ description: z.ZodOptional<z.ZodString>;
1163
+ price: z.ZodObject<{
1164
+ amount: z.ZodNumber;
1165
+ currency: z.ZodDefault<z.ZodString>;
1166
+ }, "strip", z.ZodTypeAny, {
1167
+ amount: number;
1168
+ currency: string;
1169
+ }, {
1170
+ amount: number;
1171
+ currency?: string | undefined;
1172
+ }>;
1173
+ quantity: z.ZodNumber;
1174
+ salesWindow: z.ZodOptional<z.ZodObject<{
1175
+ startDate: z.ZodOptional<z.ZodString>;
1176
+ endDate: z.ZodOptional<z.ZodString>;
1177
+ }, "strip", z.ZodTypeAny, {
1178
+ startDate?: string | undefined;
1179
+ endDate?: string | undefined;
1180
+ }, {
1181
+ startDate?: string | undefined;
1182
+ endDate?: string | undefined;
1183
+ }>>;
1184
+ limits: z.ZodOptional<z.ZodObject<{
1185
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
1186
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
1187
+ }, "strip", z.ZodTypeAny, {
1188
+ minPerOrder: number;
1189
+ maxPerOrder: number;
1190
+ }, {
1191
+ minPerOrder?: number | undefined;
1192
+ maxPerOrder?: number | undefined;
1193
+ }>>;
1194
+ remaining: z.ZodOptional<z.ZodNumber>;
1195
+ sold: z.ZodOptional<z.ZodNumber>;
1196
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1197
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1198
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1199
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
1200
+ }, "strip", z.ZodTypeAny, {
1201
+ name: string;
1202
+ price: {
1203
+ amount: number;
1204
+ currency: string;
1205
+ };
1206
+ quantity: number;
1207
+ tier: "early_bird" | "regular" | "vip";
1208
+ status?: "active" | "inactive" | undefined;
1209
+ id?: string | undefined;
1210
+ description?: string | undefined;
1211
+ salesWindow?: {
1212
+ startDate?: string | undefined;
1213
+ endDate?: string | undefined;
1214
+ } | undefined;
1215
+ limits?: {
1216
+ minPerOrder: number;
1217
+ maxPerOrder: number;
1218
+ } | undefined;
1219
+ remaining?: number | undefined;
1220
+ sold?: number | undefined;
1221
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1222
+ benefits?: string[] | undefined;
1223
+ }, {
1224
+ name: string;
1225
+ price: {
1226
+ amount: number;
1227
+ currency?: string | undefined;
1228
+ };
1229
+ quantity: number;
1230
+ status?: "active" | "inactive" | undefined;
1231
+ id?: string | undefined;
1232
+ description?: string | undefined;
1233
+ salesWindow?: {
1234
+ startDate?: string | undefined;
1235
+ endDate?: string | undefined;
1236
+ } | undefined;
1237
+ limits?: {
1238
+ minPerOrder?: number | undefined;
1239
+ maxPerOrder?: number | undefined;
1240
+ } | undefined;
1241
+ remaining?: number | undefined;
1242
+ sold?: number | undefined;
1243
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1244
+ benefits?: string[] | undefined;
1245
+ tier?: "early_bird" | "regular" | "vip" | undefined;
1246
+ }>, "many">;
1247
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
1248
+ tickets: z.ZodArray<z.ZodObject<{
1249
+ id: z.ZodOptional<z.ZodString>;
1250
+ name: z.ZodString;
1251
+ description: z.ZodOptional<z.ZodString>;
1252
+ price: z.ZodObject<{
1253
+ amount: z.ZodNumber;
1254
+ currency: z.ZodDefault<z.ZodString>;
1255
+ }, "strip", z.ZodTypeAny, {
1256
+ amount: number;
1257
+ currency: string;
1258
+ }, {
1259
+ amount: number;
1260
+ currency?: string | undefined;
1261
+ }>;
1262
+ quantity: z.ZodNumber;
1263
+ salesWindow: z.ZodOptional<z.ZodObject<{
1264
+ startDate: z.ZodOptional<z.ZodString>;
1265
+ endDate: z.ZodOptional<z.ZodString>;
1266
+ }, "strip", z.ZodTypeAny, {
1267
+ startDate?: string | undefined;
1268
+ endDate?: string | undefined;
1269
+ }, {
1270
+ startDate?: string | undefined;
1271
+ endDate?: string | undefined;
1272
+ }>>;
1273
+ limits: z.ZodOptional<z.ZodObject<{
1274
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
1275
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
1276
+ }, "strip", z.ZodTypeAny, {
1277
+ minPerOrder: number;
1278
+ maxPerOrder: number;
1279
+ }, {
1280
+ minPerOrder?: number | undefined;
1281
+ maxPerOrder?: number | undefined;
1282
+ }>>;
1283
+ remaining: z.ZodOptional<z.ZodNumber>;
1284
+ sold: z.ZodOptional<z.ZodNumber>;
1285
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1286
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1287
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1288
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
1289
+ }, "strip", z.ZodTypeAny, {
1290
+ name: string;
1291
+ price: {
1292
+ amount: number;
1293
+ currency: string;
1294
+ };
1295
+ quantity: number;
1296
+ tier: "early_bird" | "regular" | "vip";
1297
+ status?: "active" | "inactive" | undefined;
1298
+ id?: string | undefined;
1299
+ description?: string | undefined;
1300
+ salesWindow?: {
1301
+ startDate?: string | undefined;
1302
+ endDate?: string | undefined;
1303
+ } | undefined;
1304
+ limits?: {
1305
+ minPerOrder: number;
1306
+ maxPerOrder: number;
1307
+ } | undefined;
1308
+ remaining?: number | undefined;
1309
+ sold?: number | undefined;
1310
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1311
+ benefits?: string[] | undefined;
1312
+ }, {
1313
+ name: string;
1314
+ price: {
1315
+ amount: number;
1316
+ currency?: string | undefined;
1317
+ };
1318
+ quantity: number;
1319
+ status?: "active" | "inactive" | undefined;
1320
+ id?: string | undefined;
1321
+ description?: string | undefined;
1322
+ salesWindow?: {
1323
+ startDate?: string | undefined;
1324
+ endDate?: string | undefined;
1325
+ } | undefined;
1326
+ limits?: {
1327
+ minPerOrder?: number | undefined;
1328
+ maxPerOrder?: number | undefined;
1329
+ } | undefined;
1330
+ remaining?: number | undefined;
1331
+ sold?: number | undefined;
1332
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1333
+ benefits?: string[] | undefined;
1334
+ tier?: "early_bird" | "regular" | "vip" | undefined;
1335
+ }>, "many">;
1336
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1337
+ tickets: z.ZodArray<z.ZodObject<{
1338
+ id: z.ZodOptional<z.ZodString>;
1339
+ name: z.ZodString;
1340
+ description: z.ZodOptional<z.ZodString>;
1341
+ price: z.ZodObject<{
1342
+ amount: z.ZodNumber;
1343
+ currency: z.ZodDefault<z.ZodString>;
1344
+ }, "strip", z.ZodTypeAny, {
1345
+ amount: number;
1346
+ currency: string;
1347
+ }, {
1348
+ amount: number;
1349
+ currency?: string | undefined;
1350
+ }>;
1351
+ quantity: z.ZodNumber;
1352
+ salesWindow: z.ZodOptional<z.ZodObject<{
1353
+ startDate: z.ZodOptional<z.ZodString>;
1354
+ endDate: z.ZodOptional<z.ZodString>;
1355
+ }, "strip", z.ZodTypeAny, {
1356
+ startDate?: string | undefined;
1357
+ endDate?: string | undefined;
1358
+ }, {
1359
+ startDate?: string | undefined;
1360
+ endDate?: string | undefined;
1361
+ }>>;
1362
+ limits: z.ZodOptional<z.ZodObject<{
1363
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
1364
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
1365
+ }, "strip", z.ZodTypeAny, {
1366
+ minPerOrder: number;
1367
+ maxPerOrder: number;
1368
+ }, {
1369
+ minPerOrder?: number | undefined;
1370
+ maxPerOrder?: number | undefined;
1371
+ }>>;
1372
+ remaining: z.ZodOptional<z.ZodNumber>;
1373
+ sold: z.ZodOptional<z.ZodNumber>;
1374
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1375
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1376
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1377
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
1378
+ }, "strip", z.ZodTypeAny, {
1379
+ name: string;
1380
+ price: {
1381
+ amount: number;
1382
+ currency: string;
1383
+ };
1384
+ quantity: number;
1385
+ tier: "early_bird" | "regular" | "vip";
1386
+ status?: "active" | "inactive" | undefined;
1387
+ id?: string | undefined;
1388
+ description?: string | undefined;
1389
+ salesWindow?: {
1390
+ startDate?: string | undefined;
1391
+ endDate?: string | undefined;
1392
+ } | undefined;
1393
+ limits?: {
1394
+ minPerOrder: number;
1395
+ maxPerOrder: number;
1396
+ } | undefined;
1397
+ remaining?: number | undefined;
1398
+ sold?: number | undefined;
1399
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1400
+ benefits?: string[] | undefined;
1401
+ }, {
1402
+ name: string;
1403
+ price: {
1404
+ amount: number;
1405
+ currency?: string | undefined;
1406
+ };
1407
+ quantity: number;
1408
+ status?: "active" | "inactive" | undefined;
1409
+ id?: string | undefined;
1410
+ description?: string | undefined;
1411
+ salesWindow?: {
1412
+ startDate?: string | undefined;
1413
+ endDate?: string | undefined;
1414
+ } | undefined;
1415
+ limits?: {
1416
+ minPerOrder?: number | undefined;
1417
+ maxPerOrder?: number | undefined;
1418
+ } | undefined;
1419
+ remaining?: number | undefined;
1420
+ sold?: number | undefined;
1421
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1422
+ benefits?: string[] | undefined;
1423
+ tier?: "early_bird" | "regular" | "vip" | undefined;
1424
+ }>, "many">;
1425
+ }, z.ZodTypeAny, "passthrough">>;
1426
+ export declare const stepReviewSchema: z.ZodObject<{
1427
+ termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
1428
+ legalPermissionAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
1429
+ platformTermsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
1430
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1431
+ termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
1432
+ legalPermissionAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
1433
+ platformTermsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
1434
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1435
+ termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
1436
+ legalPermissionAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
1437
+ platformTermsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
1438
+ }, z.ZodTypeAny, "passthrough">>;
1439
+ export declare const getEventSchema: z.ZodObject<{
1440
+ eventId: z.ZodOptional<z.ZodString>;
1441
+ }, "strip", z.ZodTypeAny, {
1442
+ eventId?: string | undefined;
1443
+ }, {
1444
+ eventId?: string | undefined;
1445
+ }>;
1446
+ export declare const protectedEventSchema: z.ZodObject<{
1447
+ eventId: z.ZodString;
1448
+ hostId: z.ZodString;
1449
+ }, "strip", z.ZodTypeAny, {
1450
+ eventId: string;
1451
+ hostId: string;
1452
+ }, {
1453
+ eventId: string;
1454
+ hostId: string;
1455
+ }>;
1456
+ export declare const pendingApprovalEditSchema: z.ZodObject<{
1457
+ eventId: z.ZodString;
1458
+ hostId: z.ZodString;
1459
+ media: z.ZodObject<{
1460
+ coverImage: z.ZodObject<{
1461
+ alt: z.ZodString;
1462
+ thumbnailUrl: z.ZodString;
1463
+ url: z.ZodString;
1464
+ }, "strip", z.ZodTypeAny, {
1465
+ alt: string;
1466
+ thumbnailUrl: string;
1467
+ url: string;
1468
+ }, {
1469
+ alt: string;
1470
+ thumbnailUrl: string;
1471
+ url: string;
1472
+ }>;
1473
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
1474
+ alt: z.ZodString;
1475
+ thumbnailUrl: z.ZodString;
1476
+ url: z.ZodString;
1477
+ }, "strip", z.ZodTypeAny, {
1478
+ alt: string;
1479
+ thumbnailUrl: string;
1480
+ url: string;
1481
+ }, {
1482
+ alt: string;
1483
+ thumbnailUrl: string;
1484
+ url: string;
1485
+ }>, "many">>;
1486
+ }, "strip", z.ZodTypeAny, {
1487
+ coverImage: {
1488
+ alt: string;
1489
+ thumbnailUrl: string;
1490
+ url: string;
1491
+ };
1492
+ gallery?: {
1493
+ alt: string;
1494
+ thumbnailUrl: string;
1495
+ url: string;
1496
+ }[] | undefined;
1497
+ }, {
1498
+ coverImage: {
1499
+ alt: string;
1500
+ thumbnailUrl: string;
1501
+ url: string;
1502
+ };
1503
+ gallery?: {
1504
+ alt: string;
1505
+ thumbnailUrl: string;
1506
+ url: string;
1507
+ }[] | undefined;
1508
+ }>;
1509
+ description: z.ZodString;
1510
+ }, "strip", z.ZodTypeAny, {
1511
+ description: string;
1512
+ media: {
1513
+ coverImage: {
1514
+ alt: string;
1515
+ thumbnailUrl: string;
1516
+ url: string;
1517
+ };
1518
+ gallery?: {
1519
+ alt: string;
1520
+ thumbnailUrl: string;
1521
+ url: string;
1522
+ }[] | undefined;
1523
+ };
1524
+ eventId: string;
1525
+ hostId: string;
1526
+ }, {
1527
+ description: string;
1528
+ media: {
1529
+ coverImage: {
1530
+ alt: string;
1531
+ thumbnailUrl: string;
1532
+ url: string;
1533
+ };
1534
+ gallery?: {
1535
+ alt: string;
1536
+ thumbnailUrl: string;
1537
+ url: string;
1538
+ }[] | undefined;
1539
+ };
1540
+ eventId: string;
1541
+ hostId: string;
1542
+ }>;
1543
+ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1544
+ eventId: z.ZodString;
1545
+ hostId: z.ZodString;
1546
+ media: z.ZodObject<{
1547
+ coverImage: z.ZodObject<{
1548
+ alt: z.ZodString;
1549
+ thumbnailUrl: z.ZodString;
1550
+ url: z.ZodString;
1551
+ }, "strip", z.ZodTypeAny, {
1552
+ alt: string;
1553
+ thumbnailUrl: string;
1554
+ url: string;
1555
+ }, {
1556
+ alt: string;
1557
+ thumbnailUrl: string;
1558
+ url: string;
1559
+ }>;
1560
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
1561
+ alt: z.ZodString;
1562
+ thumbnailUrl: z.ZodString;
1563
+ url: z.ZodString;
1564
+ }, "strip", z.ZodTypeAny, {
1565
+ alt: string;
1566
+ thumbnailUrl: string;
1567
+ url: string;
1568
+ }, {
1569
+ alt: string;
1570
+ thumbnailUrl: string;
1571
+ url: string;
1572
+ }>, "many">>;
1573
+ }, "strip", z.ZodTypeAny, {
1574
+ coverImage: {
1575
+ alt: string;
1576
+ thumbnailUrl: string;
1577
+ url: string;
1578
+ };
1579
+ gallery?: {
1580
+ alt: string;
1581
+ thumbnailUrl: string;
1582
+ url: string;
1583
+ }[] | undefined;
1584
+ }, {
1585
+ coverImage: {
1586
+ alt: string;
1587
+ thumbnailUrl: string;
1588
+ url: string;
1589
+ };
1590
+ gallery?: {
1591
+ alt: string;
1592
+ thumbnailUrl: string;
1593
+ url: string;
1594
+ }[] | undefined;
1595
+ }>;
1596
+ description: z.ZodString;
1597
+ tickets: z.ZodArray<z.ZodObject<{
1598
+ id: z.ZodOptional<z.ZodString>;
1599
+ name: z.ZodString;
1600
+ description: z.ZodOptional<z.ZodString>;
1601
+ price: z.ZodObject<{
1602
+ amount: z.ZodNumber;
1603
+ currency: z.ZodDefault<z.ZodString>;
1604
+ }, "strip", z.ZodTypeAny, {
1605
+ amount: number;
1606
+ currency: string;
1607
+ }, {
1608
+ amount: number;
1609
+ currency?: string | undefined;
1610
+ }>;
1611
+ quantity: z.ZodNumber;
1612
+ salesWindow: z.ZodOptional<z.ZodObject<{
1613
+ startDate: z.ZodOptional<z.ZodString>;
1614
+ endDate: z.ZodOptional<z.ZodString>;
1615
+ }, "strip", z.ZodTypeAny, {
1616
+ startDate?: string | undefined;
1617
+ endDate?: string | undefined;
1618
+ }, {
1619
+ startDate?: string | undefined;
1620
+ endDate?: string | undefined;
1621
+ }>>;
1622
+ limits: z.ZodOptional<z.ZodObject<{
1623
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
1624
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
1625
+ }, "strip", z.ZodTypeAny, {
1626
+ minPerOrder: number;
1627
+ maxPerOrder: number;
1628
+ }, {
1629
+ minPerOrder?: number | undefined;
1630
+ maxPerOrder?: number | undefined;
1631
+ }>>;
1632
+ remaining: z.ZodOptional<z.ZodNumber>;
1633
+ sold: z.ZodOptional<z.ZodNumber>;
1634
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1635
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1636
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1637
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
1638
+ }, "strip", z.ZodTypeAny, {
1639
+ name: string;
1640
+ price: {
1641
+ amount: number;
1642
+ currency: string;
1643
+ };
1644
+ quantity: number;
1645
+ tier: "early_bird" | "regular" | "vip";
1646
+ status?: "active" | "inactive" | undefined;
1647
+ id?: string | undefined;
1648
+ description?: string | undefined;
1649
+ salesWindow?: {
1650
+ startDate?: string | undefined;
1651
+ endDate?: string | undefined;
1652
+ } | undefined;
1653
+ limits?: {
1654
+ minPerOrder: number;
1655
+ maxPerOrder: number;
1656
+ } | undefined;
1657
+ remaining?: number | undefined;
1658
+ sold?: number | undefined;
1659
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1660
+ benefits?: string[] | undefined;
1661
+ }, {
1662
+ name: string;
1663
+ price: {
1664
+ amount: number;
1665
+ currency?: string | undefined;
1666
+ };
1667
+ quantity: number;
1668
+ status?: "active" | "inactive" | undefined;
1669
+ id?: string | undefined;
1670
+ description?: string | undefined;
1671
+ salesWindow?: {
1672
+ startDate?: string | undefined;
1673
+ endDate?: string | undefined;
1674
+ } | undefined;
1675
+ limits?: {
1676
+ minPerOrder?: number | undefined;
1677
+ maxPerOrder?: number | undefined;
1678
+ } | undefined;
1679
+ remaining?: number | undefined;
1680
+ sold?: number | undefined;
1681
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1682
+ benefits?: string[] | undefined;
1683
+ tier?: "early_bird" | "regular" | "vip" | undefined;
1684
+ }>, "many">;
1685
+ }, "strip", z.ZodTypeAny, {
1686
+ description: string;
1687
+ media: {
1688
+ coverImage: {
1689
+ alt: string;
1690
+ thumbnailUrl: string;
1691
+ url: string;
1692
+ };
1693
+ gallery?: {
1694
+ alt: string;
1695
+ thumbnailUrl: string;
1696
+ url: string;
1697
+ }[] | undefined;
1698
+ };
1699
+ tickets: {
1700
+ name: string;
1701
+ price: {
1702
+ amount: number;
1703
+ currency: string;
1704
+ };
1705
+ quantity: number;
1706
+ tier: "early_bird" | "regular" | "vip";
1707
+ status?: "active" | "inactive" | undefined;
1708
+ id?: string | undefined;
1709
+ description?: string | undefined;
1710
+ salesWindow?: {
1711
+ startDate?: string | undefined;
1712
+ endDate?: string | undefined;
1713
+ } | undefined;
1714
+ limits?: {
1715
+ minPerOrder: number;
1716
+ maxPerOrder: number;
1717
+ } | undefined;
1718
+ remaining?: number | undefined;
1719
+ sold?: number | undefined;
1720
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1721
+ benefits?: string[] | undefined;
1722
+ }[];
1723
+ eventId: string;
1724
+ hostId: string;
1725
+ }, {
1726
+ description: string;
1727
+ media: {
1728
+ coverImage: {
1729
+ alt: string;
1730
+ thumbnailUrl: string;
1731
+ url: string;
1732
+ };
1733
+ gallery?: {
1734
+ alt: string;
1735
+ thumbnailUrl: string;
1736
+ url: string;
1737
+ }[] | undefined;
1738
+ };
1739
+ tickets: {
1740
+ name: string;
1741
+ price: {
1742
+ amount: number;
1743
+ currency?: string | undefined;
1744
+ };
1745
+ quantity: number;
1746
+ status?: "active" | "inactive" | undefined;
1747
+ id?: string | undefined;
1748
+ description?: string | undefined;
1749
+ salesWindow?: {
1750
+ startDate?: string | undefined;
1751
+ endDate?: string | undefined;
1752
+ } | undefined;
1753
+ limits?: {
1754
+ minPerOrder?: number | undefined;
1755
+ maxPerOrder?: number | undefined;
1756
+ } | undefined;
1757
+ remaining?: number | undefined;
1758
+ sold?: number | undefined;
1759
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1760
+ benefits?: string[] | undefined;
1761
+ tier?: "early_bird" | "regular" | "vip" | undefined;
1762
+ }[];
1763
+ eventId: string;
1764
+ hostId: string;
1765
+ }>, {
1766
+ description: string;
1767
+ media: {
1768
+ coverImage: {
1769
+ alt: string;
1770
+ thumbnailUrl: string;
1771
+ url: string;
1772
+ };
1773
+ gallery?: {
1774
+ alt: string;
1775
+ thumbnailUrl: string;
1776
+ url: string;
1777
+ }[] | undefined;
1778
+ };
1779
+ tickets: {
1780
+ name: string;
1781
+ price: {
1782
+ amount: number;
1783
+ currency: string;
1784
+ };
1785
+ quantity: number;
1786
+ tier: "early_bird" | "regular" | "vip";
1787
+ status?: "active" | "inactive" | undefined;
1788
+ id?: string | undefined;
1789
+ description?: string | undefined;
1790
+ salesWindow?: {
1791
+ startDate?: string | undefined;
1792
+ endDate?: string | undefined;
1793
+ } | undefined;
1794
+ limits?: {
1795
+ minPerOrder: number;
1796
+ maxPerOrder: number;
1797
+ } | undefined;
1798
+ remaining?: number | undefined;
1799
+ sold?: number | undefined;
1800
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1801
+ benefits?: string[] | undefined;
1802
+ }[];
1803
+ eventId: string;
1804
+ hostId: string;
1805
+ }, {
1806
+ description: string;
1807
+ media: {
1808
+ coverImage: {
1809
+ alt: string;
1810
+ thumbnailUrl: string;
1811
+ url: string;
1812
+ };
1813
+ gallery?: {
1814
+ alt: string;
1815
+ thumbnailUrl: string;
1816
+ url: string;
1817
+ }[] | undefined;
1818
+ };
1819
+ tickets: {
1820
+ name: string;
1821
+ price: {
1822
+ amount: number;
1823
+ currency?: string | undefined;
1824
+ };
1825
+ quantity: number;
1826
+ status?: "active" | "inactive" | undefined;
1827
+ id?: string | undefined;
1828
+ description?: string | undefined;
1829
+ salesWindow?: {
1830
+ startDate?: string | undefined;
1831
+ endDate?: string | undefined;
1832
+ } | undefined;
1833
+ limits?: {
1834
+ minPerOrder?: number | undefined;
1835
+ maxPerOrder?: number | undefined;
1836
+ } | undefined;
1837
+ remaining?: number | undefined;
1838
+ sold?: number | undefined;
1839
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
1840
+ benefits?: string[] | undefined;
1841
+ tier?: "early_bird" | "regular" | "vip" | undefined;
1842
+ }[];
1843
+ eventId: string;
1844
+ hostId: string;
1845
+ }>;
1846
+ export declare const submitEventSchema: z.ZodObject<{
1847
+ title: z.ZodString;
1848
+ tagline: z.ZodOptional<z.ZodString>;
1849
+ type: z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>;
1850
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1851
+ } & {
1852
+ media: z.ZodObject<{
1853
+ coverImage: z.ZodObject<{
1854
+ alt: z.ZodString;
1855
+ thumbnailUrl: z.ZodString;
1856
+ url: z.ZodString;
1857
+ }, "strip", z.ZodTypeAny, {
1858
+ alt: string;
1859
+ thumbnailUrl: string;
1860
+ url: string;
1861
+ }, {
1862
+ alt: string;
1863
+ thumbnailUrl: string;
1864
+ url: string;
1865
+ }>;
1866
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
1867
+ alt: z.ZodString;
1868
+ thumbnailUrl: z.ZodString;
1869
+ url: z.ZodString;
1870
+ }, "strip", z.ZodTypeAny, {
1871
+ alt: string;
1872
+ thumbnailUrl: string;
1873
+ url: string;
1874
+ }, {
1875
+ alt: string;
1876
+ thumbnailUrl: string;
1877
+ url: string;
1878
+ }>, "many">>;
1879
+ }, "strip", z.ZodTypeAny, {
1880
+ coverImage: {
1881
+ alt: string;
1882
+ thumbnailUrl: string;
1883
+ url: string;
1884
+ };
1885
+ gallery?: {
1886
+ alt: string;
1887
+ thumbnailUrl: string;
1888
+ url: string;
1889
+ }[] | undefined;
1890
+ }, {
1891
+ coverImage: {
1892
+ alt: string;
1893
+ thumbnailUrl: string;
1894
+ url: string;
1895
+ };
1896
+ gallery?: {
1897
+ alt: string;
1898
+ thumbnailUrl: string;
1899
+ url: string;
1900
+ }[] | undefined;
1901
+ }>;
1902
+ description: z.ZodString;
1903
+ highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1904
+ language: z.ZodString;
1905
+ ageRestriction: z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>;
1906
+ dressCode: z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>;
1907
+ } & {
1908
+ schedule: z.ZodObject<{
1909
+ startDate: z.ZodString;
1910
+ endDate: z.ZodString;
1911
+ timezone: z.ZodOptional<z.ZodString>;
1912
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
1913
+ doors: z.ZodOptional<z.ZodString>;
1914
+ }, "strip", z.ZodTypeAny, {
1915
+ startDate: string;
1916
+ endDate: string;
1917
+ timezone?: string | undefined;
1918
+ isMultiDay?: boolean | undefined;
1919
+ doors?: string | undefined;
1920
+ }, {
1921
+ startDate: string;
1922
+ endDate: string;
1923
+ timezone?: string | undefined;
1924
+ isMultiDay?: boolean | undefined;
1925
+ doors?: string | undefined;
1926
+ }>;
1927
+ venue: z.ZodObject<{
1928
+ name: z.ZodString;
1929
+ address: z.ZodObject<{
1930
+ street: z.ZodString;
1931
+ city: z.ZodString;
1932
+ country: z.ZodString;
1933
+ }, "strip", z.ZodTypeAny, {
1934
+ street: string;
1935
+ city: string;
1936
+ country: string;
1937
+ }, {
1938
+ street: string;
1939
+ city: string;
1940
+ country: string;
1941
+ }>;
1942
+ coordinates: z.ZodOptional<z.ZodObject<{
1943
+ type: z.ZodLiteral<"Point">;
1944
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
1945
+ }, "strip", z.ZodTypeAny, {
1946
+ type: "Point";
1947
+ coordinates: [number, number];
1948
+ }, {
1949
+ type: "Point";
1950
+ coordinates: [number, number];
1951
+ }>>;
1952
+ capacity: z.ZodNumber;
1953
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
1954
+ parking: z.ZodOptional<z.ZodBoolean>;
1955
+ publicTransit: z.ZodOptional<z.ZodString>;
1956
+ }, "strip", z.ZodTypeAny, {
1957
+ name: string;
1958
+ address: {
1959
+ street: string;
1960
+ city: string;
1961
+ country: string;
1962
+ };
1963
+ capacity: number;
1964
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
1965
+ coordinates?: {
1966
+ type: "Point";
1967
+ coordinates: [number, number];
1968
+ } | undefined;
1969
+ parking?: boolean | undefined;
1970
+ publicTransit?: string | undefined;
1971
+ }, {
1972
+ name: string;
1973
+ address: {
1974
+ street: string;
1975
+ city: string;
1976
+ country: string;
1977
+ };
1978
+ capacity: number;
1979
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
1980
+ coordinates?: {
1981
+ type: "Point";
1982
+ coordinates: [number, number];
1983
+ } | undefined;
1984
+ parking?: boolean | undefined;
1985
+ publicTransit?: string | undefined;
1986
+ }>;
1987
+ } & {
1988
+ organizer: z.ZodObject<{
1989
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
1990
+ companyName: z.ZodOptional<z.ZodString>;
1991
+ contactPerson: z.ZodObject<{
1992
+ name: z.ZodString;
1993
+ phone: z.ZodString;
1994
+ email: z.ZodString;
1995
+ designation: z.ZodOptional<z.ZodString>;
1996
+ }, "strip", z.ZodTypeAny, {
1997
+ email: string;
1998
+ name: string;
1999
+ phone: string;
2000
+ designation?: string | undefined;
2001
+ }, {
2002
+ email: string;
2003
+ name: string;
2004
+ phone: string;
2005
+ designation?: string | undefined;
2006
+ }>;
2007
+ }, "strip", z.ZodTypeAny, {
2008
+ contactPerson: {
2009
+ email: string;
2010
+ name: string;
2011
+ phone: string;
2012
+ designation?: string | undefined;
2013
+ };
2014
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
2015
+ companyName?: string | undefined;
2016
+ }, {
2017
+ contactPerson: {
2018
+ email: string;
2019
+ name: string;
2020
+ phone: string;
2021
+ designation?: string | undefined;
2022
+ };
2023
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
2024
+ companyName?: string | undefined;
2025
+ }>;
2026
+ verification: z.ZodObject<{
2027
+ documents: z.ZodArray<z.ZodObject<{
2028
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
2029
+ url: z.ZodOptional<z.ZodString>;
2030
+ filename: z.ZodString;
2031
+ objectKey: z.ZodString;
2032
+ }, "strip", z.ZodTypeAny, {
2033
+ filename: string;
2034
+ objectKey: string;
2035
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2036
+ url?: string | undefined;
2037
+ }, {
2038
+ filename: string;
2039
+ objectKey: string;
2040
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2041
+ url?: string | undefined;
2042
+ }>, "many">;
2043
+ }, "strip", z.ZodTypeAny, {
2044
+ documents: {
2045
+ filename: string;
2046
+ objectKey: string;
2047
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2048
+ url?: string | undefined;
2049
+ }[];
2050
+ }, {
2051
+ documents: {
2052
+ filename: string;
2053
+ objectKey: string;
2054
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2055
+ url?: string | undefined;
2056
+ }[];
2057
+ }>;
2058
+ } & {
2059
+ tickets: z.ZodArray<z.ZodObject<{
2060
+ id: z.ZodOptional<z.ZodString>;
2061
+ name: z.ZodString;
2062
+ description: z.ZodOptional<z.ZodString>;
2063
+ price: z.ZodObject<{
2064
+ amount: z.ZodNumber;
2065
+ currency: z.ZodDefault<z.ZodString>;
2066
+ }, "strip", z.ZodTypeAny, {
2067
+ amount: number;
2068
+ currency: string;
2069
+ }, {
2070
+ amount: number;
2071
+ currency?: string | undefined;
2072
+ }>;
2073
+ quantity: z.ZodNumber;
2074
+ salesWindow: z.ZodOptional<z.ZodObject<{
2075
+ startDate: z.ZodOptional<z.ZodString>;
2076
+ endDate: z.ZodOptional<z.ZodString>;
2077
+ }, "strip", z.ZodTypeAny, {
2078
+ startDate?: string | undefined;
2079
+ endDate?: string | undefined;
2080
+ }, {
2081
+ startDate?: string | undefined;
2082
+ endDate?: string | undefined;
2083
+ }>>;
2084
+ limits: z.ZodOptional<z.ZodObject<{
2085
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
2086
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
2087
+ }, "strip", z.ZodTypeAny, {
2088
+ minPerOrder: number;
2089
+ maxPerOrder: number;
2090
+ }, {
2091
+ minPerOrder?: number | undefined;
2092
+ maxPerOrder?: number | undefined;
2093
+ }>>;
2094
+ remaining: z.ZodOptional<z.ZodNumber>;
2095
+ sold: z.ZodOptional<z.ZodNumber>;
2096
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
2097
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
2098
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2099
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
2100
+ }, "strip", z.ZodTypeAny, {
2101
+ name: string;
2102
+ price: {
2103
+ amount: number;
2104
+ currency: string;
2105
+ };
2106
+ quantity: number;
2107
+ tier: "early_bird" | "regular" | "vip";
2108
+ status?: "active" | "inactive" | undefined;
2109
+ id?: string | undefined;
2110
+ description?: string | undefined;
2111
+ salesWindow?: {
2112
+ startDate?: string | undefined;
2113
+ endDate?: string | undefined;
2114
+ } | undefined;
2115
+ limits?: {
2116
+ minPerOrder: number;
2117
+ maxPerOrder: number;
2118
+ } | undefined;
2119
+ remaining?: number | undefined;
2120
+ sold?: number | undefined;
2121
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
2122
+ benefits?: string[] | undefined;
2123
+ }, {
2124
+ name: string;
2125
+ price: {
2126
+ amount: number;
2127
+ currency?: string | undefined;
2128
+ };
2129
+ quantity: number;
2130
+ status?: "active" | "inactive" | undefined;
2131
+ id?: string | undefined;
2132
+ description?: string | undefined;
2133
+ salesWindow?: {
2134
+ startDate?: string | undefined;
2135
+ endDate?: string | undefined;
2136
+ } | undefined;
2137
+ limits?: {
2138
+ minPerOrder?: number | undefined;
2139
+ maxPerOrder?: number | undefined;
2140
+ } | undefined;
2141
+ remaining?: number | undefined;
2142
+ sold?: number | undefined;
2143
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
2144
+ benefits?: string[] | undefined;
2145
+ tier?: "early_bird" | "regular" | "vip" | undefined;
2146
+ }>, "many">;
2147
+ } & {
2148
+ termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
2149
+ legalPermissionAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
2150
+ platformTermsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
2151
+ } & {
2152
+ eventId: z.ZodOptional<z.ZodString>;
2153
+ hostId: z.ZodOptional<z.ZodString>;
2154
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2155
+ title: z.ZodString;
2156
+ tagline: z.ZodOptional<z.ZodString>;
2157
+ type: z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>;
2158
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2159
+ } & {
2160
+ media: z.ZodObject<{
2161
+ coverImage: z.ZodObject<{
2162
+ alt: z.ZodString;
2163
+ thumbnailUrl: z.ZodString;
2164
+ url: z.ZodString;
2165
+ }, "strip", z.ZodTypeAny, {
2166
+ alt: string;
2167
+ thumbnailUrl: string;
2168
+ url: string;
2169
+ }, {
2170
+ alt: string;
2171
+ thumbnailUrl: string;
2172
+ url: string;
2173
+ }>;
2174
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
2175
+ alt: z.ZodString;
2176
+ thumbnailUrl: z.ZodString;
2177
+ url: z.ZodString;
2178
+ }, "strip", z.ZodTypeAny, {
2179
+ alt: string;
2180
+ thumbnailUrl: string;
2181
+ url: string;
2182
+ }, {
2183
+ alt: string;
2184
+ thumbnailUrl: string;
2185
+ url: string;
2186
+ }>, "many">>;
2187
+ }, "strip", z.ZodTypeAny, {
2188
+ coverImage: {
2189
+ alt: string;
2190
+ thumbnailUrl: string;
2191
+ url: string;
2192
+ };
2193
+ gallery?: {
2194
+ alt: string;
2195
+ thumbnailUrl: string;
2196
+ url: string;
2197
+ }[] | undefined;
2198
+ }, {
2199
+ coverImage: {
2200
+ alt: string;
2201
+ thumbnailUrl: string;
2202
+ url: string;
2203
+ };
2204
+ gallery?: {
2205
+ alt: string;
2206
+ thumbnailUrl: string;
2207
+ url: string;
2208
+ }[] | undefined;
2209
+ }>;
2210
+ description: z.ZodString;
2211
+ highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2212
+ language: z.ZodString;
2213
+ ageRestriction: z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>;
2214
+ dressCode: z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>;
2215
+ } & {
2216
+ schedule: z.ZodObject<{
2217
+ startDate: z.ZodString;
2218
+ endDate: z.ZodString;
2219
+ timezone: z.ZodOptional<z.ZodString>;
2220
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
2221
+ doors: z.ZodOptional<z.ZodString>;
2222
+ }, "strip", z.ZodTypeAny, {
2223
+ startDate: string;
2224
+ endDate: string;
2225
+ timezone?: string | undefined;
2226
+ isMultiDay?: boolean | undefined;
2227
+ doors?: string | undefined;
2228
+ }, {
2229
+ startDate: string;
2230
+ endDate: string;
2231
+ timezone?: string | undefined;
2232
+ isMultiDay?: boolean | undefined;
2233
+ doors?: string | undefined;
2234
+ }>;
2235
+ venue: z.ZodObject<{
2236
+ name: z.ZodString;
2237
+ address: z.ZodObject<{
2238
+ street: z.ZodString;
2239
+ city: z.ZodString;
2240
+ country: z.ZodString;
2241
+ }, "strip", z.ZodTypeAny, {
2242
+ street: string;
2243
+ city: string;
2244
+ country: string;
2245
+ }, {
2246
+ street: string;
2247
+ city: string;
2248
+ country: string;
2249
+ }>;
2250
+ coordinates: z.ZodOptional<z.ZodObject<{
2251
+ type: z.ZodLiteral<"Point">;
2252
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2253
+ }, "strip", z.ZodTypeAny, {
2254
+ type: "Point";
2255
+ coordinates: [number, number];
2256
+ }, {
2257
+ type: "Point";
2258
+ coordinates: [number, number];
2259
+ }>>;
2260
+ capacity: z.ZodNumber;
2261
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
2262
+ parking: z.ZodOptional<z.ZodBoolean>;
2263
+ publicTransit: z.ZodOptional<z.ZodString>;
2264
+ }, "strip", z.ZodTypeAny, {
2265
+ name: string;
2266
+ address: {
2267
+ street: string;
2268
+ city: string;
2269
+ country: string;
2270
+ };
2271
+ capacity: number;
2272
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
2273
+ coordinates?: {
2274
+ type: "Point";
2275
+ coordinates: [number, number];
2276
+ } | undefined;
2277
+ parking?: boolean | undefined;
2278
+ publicTransit?: string | undefined;
2279
+ }, {
2280
+ name: string;
2281
+ address: {
2282
+ street: string;
2283
+ city: string;
2284
+ country: string;
2285
+ };
2286
+ capacity: number;
2287
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
2288
+ coordinates?: {
2289
+ type: "Point";
2290
+ coordinates: [number, number];
2291
+ } | undefined;
2292
+ parking?: boolean | undefined;
2293
+ publicTransit?: string | undefined;
2294
+ }>;
2295
+ } & {
2296
+ organizer: z.ZodObject<{
2297
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
2298
+ companyName: z.ZodOptional<z.ZodString>;
2299
+ contactPerson: z.ZodObject<{
2300
+ name: z.ZodString;
2301
+ phone: z.ZodString;
2302
+ email: z.ZodString;
2303
+ designation: z.ZodOptional<z.ZodString>;
2304
+ }, "strip", z.ZodTypeAny, {
2305
+ email: string;
2306
+ name: string;
2307
+ phone: string;
2308
+ designation?: string | undefined;
2309
+ }, {
2310
+ email: string;
2311
+ name: string;
2312
+ phone: string;
2313
+ designation?: string | undefined;
2314
+ }>;
2315
+ }, "strip", z.ZodTypeAny, {
2316
+ contactPerson: {
2317
+ email: string;
2318
+ name: string;
2319
+ phone: string;
2320
+ designation?: string | undefined;
2321
+ };
2322
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
2323
+ companyName?: string | undefined;
2324
+ }, {
2325
+ contactPerson: {
2326
+ email: string;
2327
+ name: string;
2328
+ phone: string;
2329
+ designation?: string | undefined;
2330
+ };
2331
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
2332
+ companyName?: string | undefined;
2333
+ }>;
2334
+ verification: z.ZodObject<{
2335
+ documents: z.ZodArray<z.ZodObject<{
2336
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
2337
+ url: z.ZodOptional<z.ZodString>;
2338
+ filename: z.ZodString;
2339
+ objectKey: z.ZodString;
2340
+ }, "strip", z.ZodTypeAny, {
2341
+ filename: string;
2342
+ objectKey: string;
2343
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2344
+ url?: string | undefined;
2345
+ }, {
2346
+ filename: string;
2347
+ objectKey: string;
2348
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2349
+ url?: string | undefined;
2350
+ }>, "many">;
2351
+ }, "strip", z.ZodTypeAny, {
2352
+ documents: {
2353
+ filename: string;
2354
+ objectKey: string;
2355
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2356
+ url?: string | undefined;
2357
+ }[];
2358
+ }, {
2359
+ documents: {
2360
+ filename: string;
2361
+ objectKey: string;
2362
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2363
+ url?: string | undefined;
2364
+ }[];
2365
+ }>;
2366
+ } & {
2367
+ tickets: z.ZodArray<z.ZodObject<{
2368
+ id: z.ZodOptional<z.ZodString>;
2369
+ name: z.ZodString;
2370
+ description: z.ZodOptional<z.ZodString>;
2371
+ price: z.ZodObject<{
2372
+ amount: z.ZodNumber;
2373
+ currency: z.ZodDefault<z.ZodString>;
2374
+ }, "strip", z.ZodTypeAny, {
2375
+ amount: number;
2376
+ currency: string;
2377
+ }, {
2378
+ amount: number;
2379
+ currency?: string | undefined;
2380
+ }>;
2381
+ quantity: z.ZodNumber;
2382
+ salesWindow: z.ZodOptional<z.ZodObject<{
2383
+ startDate: z.ZodOptional<z.ZodString>;
2384
+ endDate: z.ZodOptional<z.ZodString>;
2385
+ }, "strip", z.ZodTypeAny, {
2386
+ startDate?: string | undefined;
2387
+ endDate?: string | undefined;
2388
+ }, {
2389
+ startDate?: string | undefined;
2390
+ endDate?: string | undefined;
2391
+ }>>;
2392
+ limits: z.ZodOptional<z.ZodObject<{
2393
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
2394
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
2395
+ }, "strip", z.ZodTypeAny, {
2396
+ minPerOrder: number;
2397
+ maxPerOrder: number;
2398
+ }, {
2399
+ minPerOrder?: number | undefined;
2400
+ maxPerOrder?: number | undefined;
2401
+ }>>;
2402
+ remaining: z.ZodOptional<z.ZodNumber>;
2403
+ sold: z.ZodOptional<z.ZodNumber>;
2404
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
2405
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
2406
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2407
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
2408
+ }, "strip", z.ZodTypeAny, {
2409
+ name: string;
2410
+ price: {
2411
+ amount: number;
2412
+ currency: string;
2413
+ };
2414
+ quantity: number;
2415
+ tier: "early_bird" | "regular" | "vip";
2416
+ status?: "active" | "inactive" | undefined;
2417
+ id?: string | undefined;
2418
+ description?: string | undefined;
2419
+ salesWindow?: {
2420
+ startDate?: string | undefined;
2421
+ endDate?: string | undefined;
2422
+ } | undefined;
2423
+ limits?: {
2424
+ minPerOrder: number;
2425
+ maxPerOrder: number;
2426
+ } | undefined;
2427
+ remaining?: number | undefined;
2428
+ sold?: number | undefined;
2429
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
2430
+ benefits?: string[] | undefined;
2431
+ }, {
2432
+ name: string;
2433
+ price: {
2434
+ amount: number;
2435
+ currency?: string | undefined;
2436
+ };
2437
+ quantity: number;
2438
+ status?: "active" | "inactive" | undefined;
2439
+ id?: string | undefined;
2440
+ description?: string | undefined;
2441
+ salesWindow?: {
2442
+ startDate?: string | undefined;
2443
+ endDate?: string | undefined;
2444
+ } | undefined;
2445
+ limits?: {
2446
+ minPerOrder?: number | undefined;
2447
+ maxPerOrder?: number | undefined;
2448
+ } | undefined;
2449
+ remaining?: number | undefined;
2450
+ sold?: number | undefined;
2451
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
2452
+ benefits?: string[] | undefined;
2453
+ tier?: "early_bird" | "regular" | "vip" | undefined;
2454
+ }>, "many">;
2455
+ } & {
2456
+ termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
2457
+ legalPermissionAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
2458
+ platformTermsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
2459
+ } & {
2460
+ eventId: z.ZodOptional<z.ZodString>;
2461
+ hostId: z.ZodOptional<z.ZodString>;
2462
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2463
+ title: z.ZodString;
2464
+ tagline: z.ZodOptional<z.ZodString>;
2465
+ type: z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>;
2466
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2467
+ } & {
2468
+ media: z.ZodObject<{
2469
+ coverImage: z.ZodObject<{
2470
+ alt: z.ZodString;
2471
+ thumbnailUrl: z.ZodString;
2472
+ url: z.ZodString;
2473
+ }, "strip", z.ZodTypeAny, {
2474
+ alt: string;
2475
+ thumbnailUrl: string;
2476
+ url: string;
2477
+ }, {
2478
+ alt: string;
2479
+ thumbnailUrl: string;
2480
+ url: string;
2481
+ }>;
2482
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
2483
+ alt: z.ZodString;
2484
+ thumbnailUrl: z.ZodString;
2485
+ url: z.ZodString;
2486
+ }, "strip", z.ZodTypeAny, {
2487
+ alt: string;
2488
+ thumbnailUrl: string;
2489
+ url: string;
2490
+ }, {
2491
+ alt: string;
2492
+ thumbnailUrl: string;
2493
+ url: string;
2494
+ }>, "many">>;
2495
+ }, "strip", z.ZodTypeAny, {
2496
+ coverImage: {
2497
+ alt: string;
2498
+ thumbnailUrl: string;
2499
+ url: string;
2500
+ };
2501
+ gallery?: {
2502
+ alt: string;
2503
+ thumbnailUrl: string;
2504
+ url: string;
2505
+ }[] | undefined;
2506
+ }, {
2507
+ coverImage: {
2508
+ alt: string;
2509
+ thumbnailUrl: string;
2510
+ url: string;
2511
+ };
2512
+ gallery?: {
2513
+ alt: string;
2514
+ thumbnailUrl: string;
2515
+ url: string;
2516
+ }[] | undefined;
2517
+ }>;
2518
+ description: z.ZodString;
2519
+ highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2520
+ language: z.ZodString;
2521
+ ageRestriction: z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>;
2522
+ dressCode: z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>;
2523
+ } & {
2524
+ schedule: z.ZodObject<{
2525
+ startDate: z.ZodString;
2526
+ endDate: z.ZodString;
2527
+ timezone: z.ZodOptional<z.ZodString>;
2528
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
2529
+ doors: z.ZodOptional<z.ZodString>;
2530
+ }, "strip", z.ZodTypeAny, {
2531
+ startDate: string;
2532
+ endDate: string;
2533
+ timezone?: string | undefined;
2534
+ isMultiDay?: boolean | undefined;
2535
+ doors?: string | undefined;
2536
+ }, {
2537
+ startDate: string;
2538
+ endDate: string;
2539
+ timezone?: string | undefined;
2540
+ isMultiDay?: boolean | undefined;
2541
+ doors?: string | undefined;
2542
+ }>;
2543
+ venue: z.ZodObject<{
2544
+ name: z.ZodString;
2545
+ address: z.ZodObject<{
2546
+ street: z.ZodString;
2547
+ city: z.ZodString;
2548
+ country: z.ZodString;
2549
+ }, "strip", z.ZodTypeAny, {
2550
+ street: string;
2551
+ city: string;
2552
+ country: string;
2553
+ }, {
2554
+ street: string;
2555
+ city: string;
2556
+ country: string;
2557
+ }>;
2558
+ coordinates: z.ZodOptional<z.ZodObject<{
2559
+ type: z.ZodLiteral<"Point">;
2560
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2561
+ }, "strip", z.ZodTypeAny, {
2562
+ type: "Point";
2563
+ coordinates: [number, number];
2564
+ }, {
2565
+ type: "Point";
2566
+ coordinates: [number, number];
2567
+ }>>;
2568
+ capacity: z.ZodNumber;
2569
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
2570
+ parking: z.ZodOptional<z.ZodBoolean>;
2571
+ publicTransit: z.ZodOptional<z.ZodString>;
2572
+ }, "strip", z.ZodTypeAny, {
2573
+ name: string;
2574
+ address: {
2575
+ street: string;
2576
+ city: string;
2577
+ country: string;
2578
+ };
2579
+ capacity: number;
2580
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
2581
+ coordinates?: {
2582
+ type: "Point";
2583
+ coordinates: [number, number];
2584
+ } | undefined;
2585
+ parking?: boolean | undefined;
2586
+ publicTransit?: string | undefined;
2587
+ }, {
2588
+ name: string;
2589
+ address: {
2590
+ street: string;
2591
+ city: string;
2592
+ country: string;
2593
+ };
2594
+ capacity: number;
2595
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
2596
+ coordinates?: {
2597
+ type: "Point";
2598
+ coordinates: [number, number];
2599
+ } | undefined;
2600
+ parking?: boolean | undefined;
2601
+ publicTransit?: string | undefined;
2602
+ }>;
2603
+ } & {
2604
+ organizer: z.ZodObject<{
2605
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
2606
+ companyName: z.ZodOptional<z.ZodString>;
2607
+ contactPerson: z.ZodObject<{
2608
+ name: z.ZodString;
2609
+ phone: z.ZodString;
2610
+ email: z.ZodString;
2611
+ designation: z.ZodOptional<z.ZodString>;
2612
+ }, "strip", z.ZodTypeAny, {
2613
+ email: string;
2614
+ name: string;
2615
+ phone: string;
2616
+ designation?: string | undefined;
2617
+ }, {
2618
+ email: string;
2619
+ name: string;
2620
+ phone: string;
2621
+ designation?: string | undefined;
2622
+ }>;
2623
+ }, "strip", z.ZodTypeAny, {
2624
+ contactPerson: {
2625
+ email: string;
2626
+ name: string;
2627
+ phone: string;
2628
+ designation?: string | undefined;
2629
+ };
2630
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
2631
+ companyName?: string | undefined;
2632
+ }, {
2633
+ contactPerson: {
2634
+ email: string;
2635
+ name: string;
2636
+ phone: string;
2637
+ designation?: string | undefined;
2638
+ };
2639
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
2640
+ companyName?: string | undefined;
2641
+ }>;
2642
+ verification: z.ZodObject<{
2643
+ documents: z.ZodArray<z.ZodObject<{
2644
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
2645
+ url: z.ZodOptional<z.ZodString>;
2646
+ filename: z.ZodString;
2647
+ objectKey: z.ZodString;
2648
+ }, "strip", z.ZodTypeAny, {
2649
+ filename: string;
2650
+ objectKey: string;
2651
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2652
+ url?: string | undefined;
2653
+ }, {
2654
+ filename: string;
2655
+ objectKey: string;
2656
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2657
+ url?: string | undefined;
2658
+ }>, "many">;
2659
+ }, "strip", z.ZodTypeAny, {
2660
+ documents: {
2661
+ filename: string;
2662
+ objectKey: string;
2663
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2664
+ url?: string | undefined;
2665
+ }[];
2666
+ }, {
2667
+ documents: {
2668
+ filename: string;
2669
+ objectKey: string;
2670
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2671
+ url?: string | undefined;
2672
+ }[];
2673
+ }>;
2674
+ } & {
2675
+ tickets: z.ZodArray<z.ZodObject<{
2676
+ id: z.ZodOptional<z.ZodString>;
2677
+ name: z.ZodString;
2678
+ description: z.ZodOptional<z.ZodString>;
2679
+ price: z.ZodObject<{
2680
+ amount: z.ZodNumber;
2681
+ currency: z.ZodDefault<z.ZodString>;
2682
+ }, "strip", z.ZodTypeAny, {
2683
+ amount: number;
2684
+ currency: string;
2685
+ }, {
2686
+ amount: number;
2687
+ currency?: string | undefined;
2688
+ }>;
2689
+ quantity: z.ZodNumber;
2690
+ salesWindow: z.ZodOptional<z.ZodObject<{
2691
+ startDate: z.ZodOptional<z.ZodString>;
2692
+ endDate: z.ZodOptional<z.ZodString>;
2693
+ }, "strip", z.ZodTypeAny, {
2694
+ startDate?: string | undefined;
2695
+ endDate?: string | undefined;
2696
+ }, {
2697
+ startDate?: string | undefined;
2698
+ endDate?: string | undefined;
2699
+ }>>;
2700
+ limits: z.ZodOptional<z.ZodObject<{
2701
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
2702
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
2703
+ }, "strip", z.ZodTypeAny, {
2704
+ minPerOrder: number;
2705
+ maxPerOrder: number;
2706
+ }, {
2707
+ minPerOrder?: number | undefined;
2708
+ maxPerOrder?: number | undefined;
2709
+ }>>;
2710
+ remaining: z.ZodOptional<z.ZodNumber>;
2711
+ sold: z.ZodOptional<z.ZodNumber>;
2712
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
2713
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
2714
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2715
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
2716
+ }, "strip", z.ZodTypeAny, {
2717
+ name: string;
2718
+ price: {
2719
+ amount: number;
2720
+ currency: string;
2721
+ };
2722
+ quantity: number;
2723
+ tier: "early_bird" | "regular" | "vip";
2724
+ status?: "active" | "inactive" | undefined;
2725
+ id?: string | undefined;
2726
+ description?: string | undefined;
2727
+ salesWindow?: {
2728
+ startDate?: string | undefined;
2729
+ endDate?: string | undefined;
2730
+ } | undefined;
2731
+ limits?: {
2732
+ minPerOrder: number;
2733
+ maxPerOrder: number;
2734
+ } | undefined;
2735
+ remaining?: number | undefined;
2736
+ sold?: number | undefined;
2737
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
2738
+ benefits?: string[] | undefined;
2739
+ }, {
2740
+ name: string;
2741
+ price: {
2742
+ amount: number;
2743
+ currency?: string | undefined;
2744
+ };
2745
+ quantity: number;
2746
+ status?: "active" | "inactive" | undefined;
2747
+ id?: string | undefined;
2748
+ description?: string | undefined;
2749
+ salesWindow?: {
2750
+ startDate?: string | undefined;
2751
+ endDate?: string | undefined;
2752
+ } | undefined;
2753
+ limits?: {
2754
+ minPerOrder?: number | undefined;
2755
+ maxPerOrder?: number | undefined;
2756
+ } | undefined;
2757
+ remaining?: number | undefined;
2758
+ sold?: number | undefined;
2759
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
2760
+ benefits?: string[] | undefined;
2761
+ tier?: "early_bird" | "regular" | "vip" | undefined;
2762
+ }>, "many">;
2763
+ } & {
2764
+ termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
2765
+ legalPermissionAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
2766
+ platformTermsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
2767
+ } & {
2768
+ eventId: z.ZodOptional<z.ZodString>;
2769
+ hostId: z.ZodOptional<z.ZodString>;
2770
+ }, z.ZodTypeAny, "passthrough">>;
2771
+ export declare const clientGetEventSchema: z.ZodObject<{
2772
+ title: z.ZodString;
2773
+ tagline: z.ZodOptional<z.ZodString>;
2774
+ type: z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>;
2775
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2776
+ } & {
2777
+ media: z.ZodObject<{
2778
+ coverImage: z.ZodObject<{
2779
+ alt: z.ZodString;
2780
+ thumbnailUrl: z.ZodString;
2781
+ url: z.ZodString;
2782
+ }, "strip", z.ZodTypeAny, {
2783
+ alt: string;
2784
+ thumbnailUrl: string;
2785
+ url: string;
2786
+ }, {
2787
+ alt: string;
2788
+ thumbnailUrl: string;
2789
+ url: string;
2790
+ }>;
2791
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
2792
+ alt: z.ZodString;
2793
+ thumbnailUrl: z.ZodString;
2794
+ url: z.ZodString;
2795
+ }, "strip", z.ZodTypeAny, {
2796
+ alt: string;
2797
+ thumbnailUrl: string;
2798
+ url: string;
2799
+ }, {
2800
+ alt: string;
2801
+ thumbnailUrl: string;
2802
+ url: string;
2803
+ }>, "many">>;
2804
+ }, "strip", z.ZodTypeAny, {
2805
+ coverImage: {
2806
+ alt: string;
2807
+ thumbnailUrl: string;
2808
+ url: string;
2809
+ };
2810
+ gallery?: {
2811
+ alt: string;
2812
+ thumbnailUrl: string;
2813
+ url: string;
2814
+ }[] | undefined;
2815
+ }, {
2816
+ coverImage: {
2817
+ alt: string;
2818
+ thumbnailUrl: string;
2819
+ url: string;
2820
+ };
2821
+ gallery?: {
2822
+ alt: string;
2823
+ thumbnailUrl: string;
2824
+ url: string;
2825
+ }[] | undefined;
2826
+ }>;
2827
+ description: z.ZodString;
2828
+ highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2829
+ language: z.ZodString;
2830
+ ageRestriction: z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>;
2831
+ dressCode: z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>;
2832
+ } & {
2833
+ schedule: z.ZodObject<{
2834
+ startDate: z.ZodString;
2835
+ endDate: z.ZodString;
2836
+ timezone: z.ZodOptional<z.ZodString>;
2837
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
2838
+ doors: z.ZodOptional<z.ZodString>;
2839
+ }, "strip", z.ZodTypeAny, {
2840
+ startDate: string;
2841
+ endDate: string;
2842
+ timezone?: string | undefined;
2843
+ isMultiDay?: boolean | undefined;
2844
+ doors?: string | undefined;
2845
+ }, {
2846
+ startDate: string;
2847
+ endDate: string;
2848
+ timezone?: string | undefined;
2849
+ isMultiDay?: boolean | undefined;
2850
+ doors?: string | undefined;
2851
+ }>;
2852
+ venue: z.ZodObject<{
2853
+ name: z.ZodString;
2854
+ address: z.ZodObject<{
2855
+ street: z.ZodString;
2856
+ city: z.ZodString;
2857
+ country: z.ZodString;
2858
+ }, "strip", z.ZodTypeAny, {
2859
+ street: string;
2860
+ city: string;
2861
+ country: string;
2862
+ }, {
2863
+ street: string;
2864
+ city: string;
2865
+ country: string;
2866
+ }>;
2867
+ coordinates: z.ZodOptional<z.ZodObject<{
2868
+ type: z.ZodLiteral<"Point">;
2869
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2870
+ }, "strip", z.ZodTypeAny, {
2871
+ type: "Point";
2872
+ coordinates: [number, number];
2873
+ }, {
2874
+ type: "Point";
2875
+ coordinates: [number, number];
2876
+ }>>;
2877
+ capacity: z.ZodNumber;
2878
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
2879
+ parking: z.ZodOptional<z.ZodBoolean>;
2880
+ publicTransit: z.ZodOptional<z.ZodString>;
2881
+ }, "strip", z.ZodTypeAny, {
2882
+ name: string;
2883
+ address: {
2884
+ street: string;
2885
+ city: string;
2886
+ country: string;
2887
+ };
2888
+ capacity: number;
2889
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
2890
+ coordinates?: {
2891
+ type: "Point";
2892
+ coordinates: [number, number];
2893
+ } | undefined;
2894
+ parking?: boolean | undefined;
2895
+ publicTransit?: string | undefined;
2896
+ }, {
2897
+ name: string;
2898
+ address: {
2899
+ street: string;
2900
+ city: string;
2901
+ country: string;
2902
+ };
2903
+ capacity: number;
2904
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
2905
+ coordinates?: {
2906
+ type: "Point";
2907
+ coordinates: [number, number];
2908
+ } | undefined;
2909
+ parking?: boolean | undefined;
2910
+ publicTransit?: string | undefined;
2911
+ }>;
2912
+ } & {
2913
+ organizer: z.ZodObject<{
2914
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
2915
+ companyName: z.ZodOptional<z.ZodString>;
2916
+ contactPerson: z.ZodObject<{
2917
+ name: z.ZodString;
2918
+ phone: z.ZodString;
2919
+ email: z.ZodString;
2920
+ designation: z.ZodOptional<z.ZodString>;
2921
+ }, "strip", z.ZodTypeAny, {
2922
+ email: string;
2923
+ name: string;
2924
+ phone: string;
2925
+ designation?: string | undefined;
2926
+ }, {
2927
+ email: string;
2928
+ name: string;
2929
+ phone: string;
2930
+ designation?: string | undefined;
2931
+ }>;
2932
+ }, "strip", z.ZodTypeAny, {
2933
+ contactPerson: {
2934
+ email: string;
2935
+ name: string;
2936
+ phone: string;
2937
+ designation?: string | undefined;
2938
+ };
2939
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
2940
+ companyName?: string | undefined;
2941
+ }, {
2942
+ contactPerson: {
2943
+ email: string;
2944
+ name: string;
2945
+ phone: string;
2946
+ designation?: string | undefined;
2947
+ };
2948
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
2949
+ companyName?: string | undefined;
2950
+ }>;
2951
+ verification: z.ZodObject<{
2952
+ documents: z.ZodArray<z.ZodObject<{
2953
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
2954
+ url: z.ZodOptional<z.ZodString>;
2955
+ filename: z.ZodString;
2956
+ objectKey: z.ZodString;
2957
+ }, "strip", z.ZodTypeAny, {
2958
+ filename: string;
2959
+ objectKey: string;
2960
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2961
+ url?: string | undefined;
2962
+ }, {
2963
+ filename: string;
2964
+ objectKey: string;
2965
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2966
+ url?: string | undefined;
2967
+ }>, "many">;
2968
+ }, "strip", z.ZodTypeAny, {
2969
+ documents: {
2970
+ filename: string;
2971
+ objectKey: string;
2972
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2973
+ url?: string | undefined;
2974
+ }[];
2975
+ }, {
2976
+ documents: {
2977
+ filename: string;
2978
+ objectKey: string;
2979
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
2980
+ url?: string | undefined;
2981
+ }[];
2982
+ }>;
2983
+ } & {
2984
+ tickets: z.ZodArray<z.ZodObject<{
2985
+ id: z.ZodOptional<z.ZodString>;
2986
+ name: z.ZodString;
2987
+ description: z.ZodOptional<z.ZodString>;
2988
+ price: z.ZodObject<{
2989
+ amount: z.ZodNumber;
2990
+ currency: z.ZodDefault<z.ZodString>;
2991
+ }, "strip", z.ZodTypeAny, {
2992
+ amount: number;
2993
+ currency: string;
2994
+ }, {
2995
+ amount: number;
2996
+ currency?: string | undefined;
2997
+ }>;
2998
+ quantity: z.ZodNumber;
2999
+ salesWindow: z.ZodOptional<z.ZodObject<{
3000
+ startDate: z.ZodOptional<z.ZodString>;
3001
+ endDate: z.ZodOptional<z.ZodString>;
3002
+ }, "strip", z.ZodTypeAny, {
3003
+ startDate?: string | undefined;
3004
+ endDate?: string | undefined;
3005
+ }, {
3006
+ startDate?: string | undefined;
3007
+ endDate?: string | undefined;
3008
+ }>>;
3009
+ limits: z.ZodOptional<z.ZodObject<{
3010
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
3011
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
3012
+ }, "strip", z.ZodTypeAny, {
3013
+ minPerOrder: number;
3014
+ maxPerOrder: number;
3015
+ }, {
3016
+ minPerOrder?: number | undefined;
3017
+ maxPerOrder?: number | undefined;
3018
+ }>>;
3019
+ remaining: z.ZodOptional<z.ZodNumber>;
3020
+ sold: z.ZodOptional<z.ZodNumber>;
3021
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
3022
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
3023
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3024
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
3025
+ }, "strip", z.ZodTypeAny, {
3026
+ name: string;
3027
+ price: {
3028
+ amount: number;
3029
+ currency: string;
3030
+ };
3031
+ quantity: number;
3032
+ tier: "early_bird" | "regular" | "vip";
3033
+ status?: "active" | "inactive" | undefined;
3034
+ id?: string | undefined;
3035
+ description?: string | undefined;
3036
+ salesWindow?: {
3037
+ startDate?: string | undefined;
3038
+ endDate?: string | undefined;
3039
+ } | undefined;
3040
+ limits?: {
3041
+ minPerOrder: number;
3042
+ maxPerOrder: number;
3043
+ } | undefined;
3044
+ remaining?: number | undefined;
3045
+ sold?: number | undefined;
3046
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
3047
+ benefits?: string[] | undefined;
3048
+ }, {
3049
+ name: string;
3050
+ price: {
3051
+ amount: number;
3052
+ currency?: string | undefined;
3053
+ };
3054
+ quantity: number;
3055
+ status?: "active" | "inactive" | undefined;
3056
+ id?: string | undefined;
3057
+ description?: string | undefined;
3058
+ salesWindow?: {
3059
+ startDate?: string | undefined;
3060
+ endDate?: string | undefined;
3061
+ } | undefined;
3062
+ limits?: {
3063
+ minPerOrder?: number | undefined;
3064
+ maxPerOrder?: number | undefined;
3065
+ } | undefined;
3066
+ remaining?: number | undefined;
3067
+ sold?: number | undefined;
3068
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
3069
+ benefits?: string[] | undefined;
3070
+ tier?: "early_bird" | "regular" | "vip" | undefined;
3071
+ }>, "many">;
3072
+ } & {
3073
+ termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
3074
+ legalPermissionAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
3075
+ platformTermsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
3076
+ } & {
3077
+ _id: z.ZodString;
3078
+ status: z.ZodDefault<z.ZodEnum<["draft", "pending_approval", "approved", "rejected", "published", "live", "ended", "cancelled"]>>;
3079
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3080
+ title: z.ZodString;
3081
+ tagline: z.ZodOptional<z.ZodString>;
3082
+ type: z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>;
3083
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3084
+ } & {
3085
+ media: z.ZodObject<{
3086
+ coverImage: z.ZodObject<{
3087
+ alt: z.ZodString;
3088
+ thumbnailUrl: z.ZodString;
3089
+ url: z.ZodString;
3090
+ }, "strip", z.ZodTypeAny, {
3091
+ alt: string;
3092
+ thumbnailUrl: string;
3093
+ url: string;
3094
+ }, {
3095
+ alt: string;
3096
+ thumbnailUrl: string;
3097
+ url: string;
3098
+ }>;
3099
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
3100
+ alt: z.ZodString;
3101
+ thumbnailUrl: z.ZodString;
3102
+ url: z.ZodString;
3103
+ }, "strip", z.ZodTypeAny, {
3104
+ alt: string;
3105
+ thumbnailUrl: string;
3106
+ url: string;
3107
+ }, {
3108
+ alt: string;
3109
+ thumbnailUrl: string;
3110
+ url: string;
3111
+ }>, "many">>;
3112
+ }, "strip", z.ZodTypeAny, {
3113
+ coverImage: {
3114
+ alt: string;
3115
+ thumbnailUrl: string;
3116
+ url: string;
3117
+ };
3118
+ gallery?: {
3119
+ alt: string;
3120
+ thumbnailUrl: string;
3121
+ url: string;
3122
+ }[] | undefined;
3123
+ }, {
3124
+ coverImage: {
3125
+ alt: string;
3126
+ thumbnailUrl: string;
3127
+ url: string;
3128
+ };
3129
+ gallery?: {
3130
+ alt: string;
3131
+ thumbnailUrl: string;
3132
+ url: string;
3133
+ }[] | undefined;
3134
+ }>;
3135
+ description: z.ZodString;
3136
+ highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3137
+ language: z.ZodString;
3138
+ ageRestriction: z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>;
3139
+ dressCode: z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>;
3140
+ } & {
3141
+ schedule: z.ZodObject<{
3142
+ startDate: z.ZodString;
3143
+ endDate: z.ZodString;
3144
+ timezone: z.ZodOptional<z.ZodString>;
3145
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
3146
+ doors: z.ZodOptional<z.ZodString>;
3147
+ }, "strip", z.ZodTypeAny, {
3148
+ startDate: string;
3149
+ endDate: string;
3150
+ timezone?: string | undefined;
3151
+ isMultiDay?: boolean | undefined;
3152
+ doors?: string | undefined;
3153
+ }, {
3154
+ startDate: string;
3155
+ endDate: string;
3156
+ timezone?: string | undefined;
3157
+ isMultiDay?: boolean | undefined;
3158
+ doors?: string | undefined;
3159
+ }>;
3160
+ venue: z.ZodObject<{
3161
+ name: z.ZodString;
3162
+ address: z.ZodObject<{
3163
+ street: z.ZodString;
3164
+ city: z.ZodString;
3165
+ country: z.ZodString;
3166
+ }, "strip", z.ZodTypeAny, {
3167
+ street: string;
3168
+ city: string;
3169
+ country: string;
3170
+ }, {
3171
+ street: string;
3172
+ city: string;
3173
+ country: string;
3174
+ }>;
3175
+ coordinates: z.ZodOptional<z.ZodObject<{
3176
+ type: z.ZodLiteral<"Point">;
3177
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
3178
+ }, "strip", z.ZodTypeAny, {
3179
+ type: "Point";
3180
+ coordinates: [number, number];
3181
+ }, {
3182
+ type: "Point";
3183
+ coordinates: [number, number];
3184
+ }>>;
3185
+ capacity: z.ZodNumber;
3186
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
3187
+ parking: z.ZodOptional<z.ZodBoolean>;
3188
+ publicTransit: z.ZodOptional<z.ZodString>;
3189
+ }, "strip", z.ZodTypeAny, {
3190
+ name: string;
3191
+ address: {
3192
+ street: string;
3193
+ city: string;
3194
+ country: string;
3195
+ };
3196
+ capacity: number;
3197
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
3198
+ coordinates?: {
3199
+ type: "Point";
3200
+ coordinates: [number, number];
3201
+ } | undefined;
3202
+ parking?: boolean | undefined;
3203
+ publicTransit?: string | undefined;
3204
+ }, {
3205
+ name: string;
3206
+ address: {
3207
+ street: string;
3208
+ city: string;
3209
+ country: string;
3210
+ };
3211
+ capacity: number;
3212
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
3213
+ coordinates?: {
3214
+ type: "Point";
3215
+ coordinates: [number, number];
3216
+ } | undefined;
3217
+ parking?: boolean | undefined;
3218
+ publicTransit?: string | undefined;
3219
+ }>;
3220
+ } & {
3221
+ organizer: z.ZodObject<{
3222
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
3223
+ companyName: z.ZodOptional<z.ZodString>;
3224
+ contactPerson: z.ZodObject<{
3225
+ name: z.ZodString;
3226
+ phone: z.ZodString;
3227
+ email: z.ZodString;
3228
+ designation: z.ZodOptional<z.ZodString>;
3229
+ }, "strip", z.ZodTypeAny, {
3230
+ email: string;
3231
+ name: string;
3232
+ phone: string;
3233
+ designation?: string | undefined;
3234
+ }, {
3235
+ email: string;
3236
+ name: string;
3237
+ phone: string;
3238
+ designation?: string | undefined;
3239
+ }>;
3240
+ }, "strip", z.ZodTypeAny, {
3241
+ contactPerson: {
3242
+ email: string;
3243
+ name: string;
3244
+ phone: string;
3245
+ designation?: string | undefined;
3246
+ };
3247
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
3248
+ companyName?: string | undefined;
3249
+ }, {
3250
+ contactPerson: {
3251
+ email: string;
3252
+ name: string;
3253
+ phone: string;
3254
+ designation?: string | undefined;
3255
+ };
3256
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
3257
+ companyName?: string | undefined;
3258
+ }>;
3259
+ verification: z.ZodObject<{
3260
+ documents: z.ZodArray<z.ZodObject<{
3261
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
3262
+ url: z.ZodOptional<z.ZodString>;
3263
+ filename: z.ZodString;
3264
+ objectKey: z.ZodString;
3265
+ }, "strip", z.ZodTypeAny, {
3266
+ filename: string;
3267
+ objectKey: string;
3268
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3269
+ url?: string | undefined;
3270
+ }, {
3271
+ filename: string;
3272
+ objectKey: string;
3273
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3274
+ url?: string | undefined;
3275
+ }>, "many">;
3276
+ }, "strip", z.ZodTypeAny, {
3277
+ documents: {
3278
+ filename: string;
3279
+ objectKey: string;
3280
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3281
+ url?: string | undefined;
3282
+ }[];
3283
+ }, {
3284
+ documents: {
3285
+ filename: string;
3286
+ objectKey: string;
3287
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3288
+ url?: string | undefined;
3289
+ }[];
3290
+ }>;
3291
+ } & {
3292
+ tickets: z.ZodArray<z.ZodObject<{
3293
+ id: z.ZodOptional<z.ZodString>;
3294
+ name: z.ZodString;
3295
+ description: z.ZodOptional<z.ZodString>;
3296
+ price: z.ZodObject<{
3297
+ amount: z.ZodNumber;
3298
+ currency: z.ZodDefault<z.ZodString>;
3299
+ }, "strip", z.ZodTypeAny, {
3300
+ amount: number;
3301
+ currency: string;
3302
+ }, {
3303
+ amount: number;
3304
+ currency?: string | undefined;
3305
+ }>;
3306
+ quantity: z.ZodNumber;
3307
+ salesWindow: z.ZodOptional<z.ZodObject<{
3308
+ startDate: z.ZodOptional<z.ZodString>;
3309
+ endDate: z.ZodOptional<z.ZodString>;
3310
+ }, "strip", z.ZodTypeAny, {
3311
+ startDate?: string | undefined;
3312
+ endDate?: string | undefined;
3313
+ }, {
3314
+ startDate?: string | undefined;
3315
+ endDate?: string | undefined;
3316
+ }>>;
3317
+ limits: z.ZodOptional<z.ZodObject<{
3318
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
3319
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
3320
+ }, "strip", z.ZodTypeAny, {
3321
+ minPerOrder: number;
3322
+ maxPerOrder: number;
3323
+ }, {
3324
+ minPerOrder?: number | undefined;
3325
+ maxPerOrder?: number | undefined;
3326
+ }>>;
3327
+ remaining: z.ZodOptional<z.ZodNumber>;
3328
+ sold: z.ZodOptional<z.ZodNumber>;
3329
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
3330
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
3331
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3332
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
3333
+ }, "strip", z.ZodTypeAny, {
3334
+ name: string;
3335
+ price: {
3336
+ amount: number;
3337
+ currency: string;
3338
+ };
3339
+ quantity: number;
3340
+ tier: "early_bird" | "regular" | "vip";
3341
+ status?: "active" | "inactive" | undefined;
3342
+ id?: string | undefined;
3343
+ description?: string | undefined;
3344
+ salesWindow?: {
3345
+ startDate?: string | undefined;
3346
+ endDate?: string | undefined;
3347
+ } | undefined;
3348
+ limits?: {
3349
+ minPerOrder: number;
3350
+ maxPerOrder: number;
3351
+ } | undefined;
3352
+ remaining?: number | undefined;
3353
+ sold?: number | undefined;
3354
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
3355
+ benefits?: string[] | undefined;
3356
+ }, {
3357
+ name: string;
3358
+ price: {
3359
+ amount: number;
3360
+ currency?: string | undefined;
3361
+ };
3362
+ quantity: number;
3363
+ status?: "active" | "inactive" | undefined;
3364
+ id?: string | undefined;
3365
+ description?: string | undefined;
3366
+ salesWindow?: {
3367
+ startDate?: string | undefined;
3368
+ endDate?: string | undefined;
3369
+ } | undefined;
3370
+ limits?: {
3371
+ minPerOrder?: number | undefined;
3372
+ maxPerOrder?: number | undefined;
3373
+ } | undefined;
3374
+ remaining?: number | undefined;
3375
+ sold?: number | undefined;
3376
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
3377
+ benefits?: string[] | undefined;
3378
+ tier?: "early_bird" | "regular" | "vip" | undefined;
3379
+ }>, "many">;
3380
+ } & {
3381
+ termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
3382
+ legalPermissionAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
3383
+ platformTermsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
3384
+ } & {
3385
+ _id: z.ZodString;
3386
+ status: z.ZodDefault<z.ZodEnum<["draft", "pending_approval", "approved", "rejected", "published", "live", "ended", "cancelled"]>>;
3387
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3388
+ title: z.ZodString;
3389
+ tagline: z.ZodOptional<z.ZodString>;
3390
+ type: z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>;
3391
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3392
+ } & {
3393
+ media: z.ZodObject<{
3394
+ coverImage: z.ZodObject<{
3395
+ alt: z.ZodString;
3396
+ thumbnailUrl: z.ZodString;
3397
+ url: z.ZodString;
3398
+ }, "strip", z.ZodTypeAny, {
3399
+ alt: string;
3400
+ thumbnailUrl: string;
3401
+ url: string;
3402
+ }, {
3403
+ alt: string;
3404
+ thumbnailUrl: string;
3405
+ url: string;
3406
+ }>;
3407
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
3408
+ alt: z.ZodString;
3409
+ thumbnailUrl: z.ZodString;
3410
+ url: z.ZodString;
3411
+ }, "strip", z.ZodTypeAny, {
3412
+ alt: string;
3413
+ thumbnailUrl: string;
3414
+ url: string;
3415
+ }, {
3416
+ alt: string;
3417
+ thumbnailUrl: string;
3418
+ url: string;
3419
+ }>, "many">>;
3420
+ }, "strip", z.ZodTypeAny, {
3421
+ coverImage: {
3422
+ alt: string;
3423
+ thumbnailUrl: string;
3424
+ url: string;
3425
+ };
3426
+ gallery?: {
3427
+ alt: string;
3428
+ thumbnailUrl: string;
3429
+ url: string;
3430
+ }[] | undefined;
3431
+ }, {
3432
+ coverImage: {
3433
+ alt: string;
3434
+ thumbnailUrl: string;
3435
+ url: string;
3436
+ };
3437
+ gallery?: {
3438
+ alt: string;
3439
+ thumbnailUrl: string;
3440
+ url: string;
3441
+ }[] | undefined;
3442
+ }>;
3443
+ description: z.ZodString;
3444
+ highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3445
+ language: z.ZodString;
3446
+ ageRestriction: z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>;
3447
+ dressCode: z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>;
3448
+ } & {
3449
+ schedule: z.ZodObject<{
3450
+ startDate: z.ZodString;
3451
+ endDate: z.ZodString;
3452
+ timezone: z.ZodOptional<z.ZodString>;
3453
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
3454
+ doors: z.ZodOptional<z.ZodString>;
3455
+ }, "strip", z.ZodTypeAny, {
3456
+ startDate: string;
3457
+ endDate: string;
3458
+ timezone?: string | undefined;
3459
+ isMultiDay?: boolean | undefined;
3460
+ doors?: string | undefined;
3461
+ }, {
3462
+ startDate: string;
3463
+ endDate: string;
3464
+ timezone?: string | undefined;
3465
+ isMultiDay?: boolean | undefined;
3466
+ doors?: string | undefined;
3467
+ }>;
3468
+ venue: z.ZodObject<{
3469
+ name: z.ZodString;
3470
+ address: z.ZodObject<{
3471
+ street: z.ZodString;
3472
+ city: z.ZodString;
3473
+ country: z.ZodString;
3474
+ }, "strip", z.ZodTypeAny, {
3475
+ street: string;
3476
+ city: string;
3477
+ country: string;
3478
+ }, {
3479
+ street: string;
3480
+ city: string;
3481
+ country: string;
3482
+ }>;
3483
+ coordinates: z.ZodOptional<z.ZodObject<{
3484
+ type: z.ZodLiteral<"Point">;
3485
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
3486
+ }, "strip", z.ZodTypeAny, {
3487
+ type: "Point";
3488
+ coordinates: [number, number];
3489
+ }, {
3490
+ type: "Point";
3491
+ coordinates: [number, number];
3492
+ }>>;
3493
+ capacity: z.ZodNumber;
3494
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
3495
+ parking: z.ZodOptional<z.ZodBoolean>;
3496
+ publicTransit: z.ZodOptional<z.ZodString>;
3497
+ }, "strip", z.ZodTypeAny, {
3498
+ name: string;
3499
+ address: {
3500
+ street: string;
3501
+ city: string;
3502
+ country: string;
3503
+ };
3504
+ capacity: number;
3505
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
3506
+ coordinates?: {
3507
+ type: "Point";
3508
+ coordinates: [number, number];
3509
+ } | undefined;
3510
+ parking?: boolean | undefined;
3511
+ publicTransit?: string | undefined;
3512
+ }, {
3513
+ name: string;
3514
+ address: {
3515
+ street: string;
3516
+ city: string;
3517
+ country: string;
3518
+ };
3519
+ capacity: number;
3520
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
3521
+ coordinates?: {
3522
+ type: "Point";
3523
+ coordinates: [number, number];
3524
+ } | undefined;
3525
+ parking?: boolean | undefined;
3526
+ publicTransit?: string | undefined;
3527
+ }>;
3528
+ } & {
3529
+ organizer: z.ZodObject<{
3530
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
3531
+ companyName: z.ZodOptional<z.ZodString>;
3532
+ contactPerson: z.ZodObject<{
3533
+ name: z.ZodString;
3534
+ phone: z.ZodString;
3535
+ email: z.ZodString;
3536
+ designation: z.ZodOptional<z.ZodString>;
3537
+ }, "strip", z.ZodTypeAny, {
3538
+ email: string;
3539
+ name: string;
3540
+ phone: string;
3541
+ designation?: string | undefined;
3542
+ }, {
3543
+ email: string;
3544
+ name: string;
3545
+ phone: string;
3546
+ designation?: string | undefined;
3547
+ }>;
3548
+ }, "strip", z.ZodTypeAny, {
3549
+ contactPerson: {
3550
+ email: string;
3551
+ name: string;
3552
+ phone: string;
3553
+ designation?: string | undefined;
3554
+ };
3555
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
3556
+ companyName?: string | undefined;
3557
+ }, {
3558
+ contactPerson: {
3559
+ email: string;
3560
+ name: string;
3561
+ phone: string;
3562
+ designation?: string | undefined;
3563
+ };
3564
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
3565
+ companyName?: string | undefined;
3566
+ }>;
3567
+ verification: z.ZodObject<{
3568
+ documents: z.ZodArray<z.ZodObject<{
3569
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
3570
+ url: z.ZodOptional<z.ZodString>;
3571
+ filename: z.ZodString;
3572
+ objectKey: z.ZodString;
3573
+ }, "strip", z.ZodTypeAny, {
3574
+ filename: string;
3575
+ objectKey: string;
3576
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3577
+ url?: string | undefined;
3578
+ }, {
3579
+ filename: string;
3580
+ objectKey: string;
3581
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3582
+ url?: string | undefined;
3583
+ }>, "many">;
3584
+ }, "strip", z.ZodTypeAny, {
3585
+ documents: {
3586
+ filename: string;
3587
+ objectKey: string;
3588
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3589
+ url?: string | undefined;
3590
+ }[];
3591
+ }, {
3592
+ documents: {
3593
+ filename: string;
3594
+ objectKey: string;
3595
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3596
+ url?: string | undefined;
3597
+ }[];
3598
+ }>;
3599
+ } & {
3600
+ tickets: z.ZodArray<z.ZodObject<{
3601
+ id: z.ZodOptional<z.ZodString>;
3602
+ name: z.ZodString;
3603
+ description: z.ZodOptional<z.ZodString>;
3604
+ price: z.ZodObject<{
3605
+ amount: z.ZodNumber;
3606
+ currency: z.ZodDefault<z.ZodString>;
3607
+ }, "strip", z.ZodTypeAny, {
3608
+ amount: number;
3609
+ currency: string;
3610
+ }, {
3611
+ amount: number;
3612
+ currency?: string | undefined;
3613
+ }>;
3614
+ quantity: z.ZodNumber;
3615
+ salesWindow: z.ZodOptional<z.ZodObject<{
3616
+ startDate: z.ZodOptional<z.ZodString>;
3617
+ endDate: z.ZodOptional<z.ZodString>;
3618
+ }, "strip", z.ZodTypeAny, {
3619
+ startDate?: string | undefined;
3620
+ endDate?: string | undefined;
3621
+ }, {
3622
+ startDate?: string | undefined;
3623
+ endDate?: string | undefined;
3624
+ }>>;
3625
+ limits: z.ZodOptional<z.ZodObject<{
3626
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
3627
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
3628
+ }, "strip", z.ZodTypeAny, {
3629
+ minPerOrder: number;
3630
+ maxPerOrder: number;
3631
+ }, {
3632
+ minPerOrder?: number | undefined;
3633
+ maxPerOrder?: number | undefined;
3634
+ }>>;
3635
+ remaining: z.ZodOptional<z.ZodNumber>;
3636
+ sold: z.ZodOptional<z.ZodNumber>;
3637
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
3638
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
3639
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3640
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
3641
+ }, "strip", z.ZodTypeAny, {
3642
+ name: string;
3643
+ price: {
3644
+ amount: number;
3645
+ currency: string;
3646
+ };
3647
+ quantity: number;
3648
+ tier: "early_bird" | "regular" | "vip";
3649
+ status?: "active" | "inactive" | undefined;
3650
+ id?: string | undefined;
3651
+ description?: string | undefined;
3652
+ salesWindow?: {
3653
+ startDate?: string | undefined;
3654
+ endDate?: string | undefined;
3655
+ } | undefined;
3656
+ limits?: {
3657
+ minPerOrder: number;
3658
+ maxPerOrder: number;
3659
+ } | undefined;
3660
+ remaining?: number | undefined;
3661
+ sold?: number | undefined;
3662
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
3663
+ benefits?: string[] | undefined;
3664
+ }, {
3665
+ name: string;
3666
+ price: {
3667
+ amount: number;
3668
+ currency?: string | undefined;
3669
+ };
3670
+ quantity: number;
3671
+ status?: "active" | "inactive" | undefined;
3672
+ id?: string | undefined;
3673
+ description?: string | undefined;
3674
+ salesWindow?: {
3675
+ startDate?: string | undefined;
3676
+ endDate?: string | undefined;
3677
+ } | undefined;
3678
+ limits?: {
3679
+ minPerOrder?: number | undefined;
3680
+ maxPerOrder?: number | undefined;
3681
+ } | undefined;
3682
+ remaining?: number | undefined;
3683
+ sold?: number | undefined;
3684
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
3685
+ benefits?: string[] | undefined;
3686
+ tier?: "early_bird" | "regular" | "vip" | undefined;
3687
+ }>, "many">;
3688
+ } & {
3689
+ termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
3690
+ legalPermissionAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
3691
+ platformTermsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
3692
+ } & {
3693
+ _id: z.ZodString;
3694
+ status: z.ZodDefault<z.ZodEnum<["draft", "pending_approval", "approved", "rejected", "published", "live", "ended", "cancelled"]>>;
3695
+ }, z.ZodTypeAny, "passthrough">>;
3696
+ export declare const draftEventSchema: z.ZodObject<{
3697
+ tagline: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3698
+ type: z.ZodOptional<z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>>;
3699
+ categories: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
3700
+ media: z.ZodOptional<z.ZodObject<{
3701
+ coverImage: z.ZodObject<{
3702
+ alt: z.ZodString;
3703
+ thumbnailUrl: z.ZodString;
3704
+ url: z.ZodString;
3705
+ }, "strip", z.ZodTypeAny, {
3706
+ alt: string;
3707
+ thumbnailUrl: string;
3708
+ url: string;
3709
+ }, {
3710
+ alt: string;
3711
+ thumbnailUrl: string;
3712
+ url: string;
3713
+ }>;
3714
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
3715
+ alt: z.ZodString;
3716
+ thumbnailUrl: z.ZodString;
3717
+ url: z.ZodString;
3718
+ }, "strip", z.ZodTypeAny, {
3719
+ alt: string;
3720
+ thumbnailUrl: string;
3721
+ url: string;
3722
+ }, {
3723
+ alt: string;
3724
+ thumbnailUrl: string;
3725
+ url: string;
3726
+ }>, "many">>;
3727
+ }, "strip", z.ZodTypeAny, {
3728
+ coverImage: {
3729
+ alt: string;
3730
+ thumbnailUrl: string;
3731
+ url: string;
3732
+ };
3733
+ gallery?: {
3734
+ alt: string;
3735
+ thumbnailUrl: string;
3736
+ url: string;
3737
+ }[] | undefined;
3738
+ }, {
3739
+ coverImage: {
3740
+ alt: string;
3741
+ thumbnailUrl: string;
3742
+ url: string;
3743
+ };
3744
+ gallery?: {
3745
+ alt: string;
3746
+ thumbnailUrl: string;
3747
+ url: string;
3748
+ }[] | undefined;
3749
+ }>>;
3750
+ description: z.ZodOptional<z.ZodString>;
3751
+ highlights: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
3752
+ language: z.ZodOptional<z.ZodString>;
3753
+ ageRestriction: z.ZodOptional<z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>>;
3754
+ dressCode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>>;
3755
+ schedule: z.ZodOptional<z.ZodObject<{
3756
+ startDate: z.ZodString;
3757
+ endDate: z.ZodString;
3758
+ timezone: z.ZodOptional<z.ZodString>;
3759
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
3760
+ doors: z.ZodOptional<z.ZodString>;
3761
+ }, "strip", z.ZodTypeAny, {
3762
+ startDate: string;
3763
+ endDate: string;
3764
+ timezone?: string | undefined;
3765
+ isMultiDay?: boolean | undefined;
3766
+ doors?: string | undefined;
3767
+ }, {
3768
+ startDate: string;
3769
+ endDate: string;
3770
+ timezone?: string | undefined;
3771
+ isMultiDay?: boolean | undefined;
3772
+ doors?: string | undefined;
3773
+ }>>;
3774
+ venue: z.ZodOptional<z.ZodObject<{
3775
+ name: z.ZodString;
3776
+ address: z.ZodObject<{
3777
+ street: z.ZodString;
3778
+ city: z.ZodString;
3779
+ country: z.ZodString;
3780
+ }, "strip", z.ZodTypeAny, {
3781
+ street: string;
3782
+ city: string;
3783
+ country: string;
3784
+ }, {
3785
+ street: string;
3786
+ city: string;
3787
+ country: string;
3788
+ }>;
3789
+ coordinates: z.ZodOptional<z.ZodObject<{
3790
+ type: z.ZodLiteral<"Point">;
3791
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
3792
+ }, "strip", z.ZodTypeAny, {
3793
+ type: "Point";
3794
+ coordinates: [number, number];
3795
+ }, {
3796
+ type: "Point";
3797
+ coordinates: [number, number];
3798
+ }>>;
3799
+ capacity: z.ZodNumber;
3800
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
3801
+ parking: z.ZodOptional<z.ZodBoolean>;
3802
+ publicTransit: z.ZodOptional<z.ZodString>;
3803
+ }, "strip", z.ZodTypeAny, {
3804
+ name: string;
3805
+ address: {
3806
+ street: string;
3807
+ city: string;
3808
+ country: string;
3809
+ };
3810
+ capacity: number;
3811
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
3812
+ coordinates?: {
3813
+ type: "Point";
3814
+ coordinates: [number, number];
3815
+ } | undefined;
3816
+ parking?: boolean | undefined;
3817
+ publicTransit?: string | undefined;
3818
+ }, {
3819
+ name: string;
3820
+ address: {
3821
+ street: string;
3822
+ city: string;
3823
+ country: string;
3824
+ };
3825
+ capacity: number;
3826
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
3827
+ coordinates?: {
3828
+ type: "Point";
3829
+ coordinates: [number, number];
3830
+ } | undefined;
3831
+ parking?: boolean | undefined;
3832
+ publicTransit?: string | undefined;
3833
+ }>>;
3834
+ organizer: z.ZodOptional<z.ZodObject<{
3835
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
3836
+ companyName: z.ZodOptional<z.ZodString>;
3837
+ contactPerson: z.ZodObject<{
3838
+ name: z.ZodString;
3839
+ phone: z.ZodString;
3840
+ email: z.ZodString;
3841
+ designation: z.ZodOptional<z.ZodString>;
3842
+ }, "strip", z.ZodTypeAny, {
3843
+ email: string;
3844
+ name: string;
3845
+ phone: string;
3846
+ designation?: string | undefined;
3847
+ }, {
3848
+ email: string;
3849
+ name: string;
3850
+ phone: string;
3851
+ designation?: string | undefined;
3852
+ }>;
3853
+ }, "strip", z.ZodTypeAny, {
3854
+ contactPerson: {
3855
+ email: string;
3856
+ name: string;
3857
+ phone: string;
3858
+ designation?: string | undefined;
3859
+ };
3860
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
3861
+ companyName?: string | undefined;
3862
+ }, {
3863
+ contactPerson: {
3864
+ email: string;
3865
+ name: string;
3866
+ phone: string;
3867
+ designation?: string | undefined;
3868
+ };
3869
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
3870
+ companyName?: string | undefined;
3871
+ }>>;
3872
+ verification: z.ZodOptional<z.ZodObject<{
3873
+ documents: z.ZodArray<z.ZodObject<{
3874
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
3875
+ url: z.ZodOptional<z.ZodString>;
3876
+ filename: z.ZodString;
3877
+ objectKey: z.ZodString;
3878
+ }, "strip", z.ZodTypeAny, {
3879
+ filename: string;
3880
+ objectKey: string;
3881
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3882
+ url?: string | undefined;
3883
+ }, {
3884
+ filename: string;
3885
+ objectKey: string;
3886
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3887
+ url?: string | undefined;
3888
+ }>, "many">;
3889
+ }, "strip", z.ZodTypeAny, {
3890
+ documents: {
3891
+ filename: string;
3892
+ objectKey: string;
3893
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3894
+ url?: string | undefined;
3895
+ }[];
3896
+ }, {
3897
+ documents: {
3898
+ filename: string;
3899
+ objectKey: string;
3900
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
3901
+ url?: string | undefined;
3902
+ }[];
3903
+ }>>;
3904
+ tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
3905
+ id: z.ZodOptional<z.ZodString>;
3906
+ name: z.ZodString;
3907
+ description: z.ZodOptional<z.ZodString>;
3908
+ price: z.ZodObject<{
3909
+ amount: z.ZodNumber;
3910
+ currency: z.ZodDefault<z.ZodString>;
3911
+ }, "strip", z.ZodTypeAny, {
3912
+ amount: number;
3913
+ currency: string;
3914
+ }, {
3915
+ amount: number;
3916
+ currency?: string | undefined;
3917
+ }>;
3918
+ quantity: z.ZodNumber;
3919
+ salesWindow: z.ZodOptional<z.ZodObject<{
3920
+ startDate: z.ZodOptional<z.ZodString>;
3921
+ endDate: z.ZodOptional<z.ZodString>;
3922
+ }, "strip", z.ZodTypeAny, {
3923
+ startDate?: string | undefined;
3924
+ endDate?: string | undefined;
3925
+ }, {
3926
+ startDate?: string | undefined;
3927
+ endDate?: string | undefined;
3928
+ }>>;
3929
+ limits: z.ZodOptional<z.ZodObject<{
3930
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
3931
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
3932
+ }, "strip", z.ZodTypeAny, {
3933
+ minPerOrder: number;
3934
+ maxPerOrder: number;
3935
+ }, {
3936
+ minPerOrder?: number | undefined;
3937
+ maxPerOrder?: number | undefined;
3938
+ }>>;
3939
+ remaining: z.ZodOptional<z.ZodNumber>;
3940
+ sold: z.ZodOptional<z.ZodNumber>;
3941
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
3942
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
3943
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3944
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
3945
+ }, "strip", z.ZodTypeAny, {
3946
+ name: string;
3947
+ price: {
3948
+ amount: number;
3949
+ currency: string;
3950
+ };
3951
+ quantity: number;
3952
+ tier: "early_bird" | "regular" | "vip";
3953
+ status?: "active" | "inactive" | undefined;
3954
+ id?: string | undefined;
3955
+ description?: string | undefined;
3956
+ salesWindow?: {
3957
+ startDate?: string | undefined;
3958
+ endDate?: string | undefined;
3959
+ } | undefined;
3960
+ limits?: {
3961
+ minPerOrder: number;
3962
+ maxPerOrder: number;
3963
+ } | undefined;
3964
+ remaining?: number | undefined;
3965
+ sold?: number | undefined;
3966
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
3967
+ benefits?: string[] | undefined;
3968
+ }, {
3969
+ name: string;
3970
+ price: {
3971
+ amount: number;
3972
+ currency?: string | undefined;
3973
+ };
3974
+ quantity: number;
3975
+ status?: "active" | "inactive" | undefined;
3976
+ id?: string | undefined;
3977
+ description?: string | undefined;
3978
+ salesWindow?: {
3979
+ startDate?: string | undefined;
3980
+ endDate?: string | undefined;
3981
+ } | undefined;
3982
+ limits?: {
3983
+ minPerOrder?: number | undefined;
3984
+ maxPerOrder?: number | undefined;
3985
+ } | undefined;
3986
+ remaining?: number | undefined;
3987
+ sold?: number | undefined;
3988
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
3989
+ benefits?: string[] | undefined;
3990
+ tier?: "early_bird" | "regular" | "vip" | undefined;
3991
+ }>, "many">>;
3992
+ termsAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
3993
+ legalPermissionAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
3994
+ platformTermsAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
3995
+ eventId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3996
+ hostId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3997
+ } & {
3998
+ title: z.ZodString;
3999
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4000
+ tagline: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4001
+ type: z.ZodOptional<z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>>;
4002
+ categories: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
4003
+ media: z.ZodOptional<z.ZodObject<{
4004
+ coverImage: z.ZodObject<{
4005
+ alt: z.ZodString;
4006
+ thumbnailUrl: z.ZodString;
4007
+ url: z.ZodString;
4008
+ }, "strip", z.ZodTypeAny, {
4009
+ alt: string;
4010
+ thumbnailUrl: string;
4011
+ url: string;
4012
+ }, {
4013
+ alt: string;
4014
+ thumbnailUrl: string;
4015
+ url: string;
4016
+ }>;
4017
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
4018
+ alt: z.ZodString;
4019
+ thumbnailUrl: z.ZodString;
4020
+ url: z.ZodString;
4021
+ }, "strip", z.ZodTypeAny, {
4022
+ alt: string;
4023
+ thumbnailUrl: string;
4024
+ url: string;
4025
+ }, {
4026
+ alt: string;
4027
+ thumbnailUrl: string;
4028
+ url: string;
4029
+ }>, "many">>;
4030
+ }, "strip", z.ZodTypeAny, {
4031
+ coverImage: {
4032
+ alt: string;
4033
+ thumbnailUrl: string;
4034
+ url: string;
4035
+ };
4036
+ gallery?: {
4037
+ alt: string;
4038
+ thumbnailUrl: string;
4039
+ url: string;
4040
+ }[] | undefined;
4041
+ }, {
4042
+ coverImage: {
4043
+ alt: string;
4044
+ thumbnailUrl: string;
4045
+ url: string;
4046
+ };
4047
+ gallery?: {
4048
+ alt: string;
4049
+ thumbnailUrl: string;
4050
+ url: string;
4051
+ }[] | undefined;
4052
+ }>>;
4053
+ description: z.ZodOptional<z.ZodString>;
4054
+ highlights: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
4055
+ language: z.ZodOptional<z.ZodString>;
4056
+ ageRestriction: z.ZodOptional<z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>>;
4057
+ dressCode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>>;
4058
+ schedule: z.ZodOptional<z.ZodObject<{
4059
+ startDate: z.ZodString;
4060
+ endDate: z.ZodString;
4061
+ timezone: z.ZodOptional<z.ZodString>;
4062
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
4063
+ doors: z.ZodOptional<z.ZodString>;
4064
+ }, "strip", z.ZodTypeAny, {
4065
+ startDate: string;
4066
+ endDate: string;
4067
+ timezone?: string | undefined;
4068
+ isMultiDay?: boolean | undefined;
4069
+ doors?: string | undefined;
4070
+ }, {
4071
+ startDate: string;
4072
+ endDate: string;
4073
+ timezone?: string | undefined;
4074
+ isMultiDay?: boolean | undefined;
4075
+ doors?: string | undefined;
4076
+ }>>;
4077
+ venue: z.ZodOptional<z.ZodObject<{
4078
+ name: z.ZodString;
4079
+ address: z.ZodObject<{
4080
+ street: z.ZodString;
4081
+ city: z.ZodString;
4082
+ country: z.ZodString;
4083
+ }, "strip", z.ZodTypeAny, {
4084
+ street: string;
4085
+ city: string;
4086
+ country: string;
4087
+ }, {
4088
+ street: string;
4089
+ city: string;
4090
+ country: string;
4091
+ }>;
4092
+ coordinates: z.ZodOptional<z.ZodObject<{
4093
+ type: z.ZodLiteral<"Point">;
4094
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
4095
+ }, "strip", z.ZodTypeAny, {
4096
+ type: "Point";
4097
+ coordinates: [number, number];
4098
+ }, {
4099
+ type: "Point";
4100
+ coordinates: [number, number];
4101
+ }>>;
4102
+ capacity: z.ZodNumber;
4103
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
4104
+ parking: z.ZodOptional<z.ZodBoolean>;
4105
+ publicTransit: z.ZodOptional<z.ZodString>;
4106
+ }, "strip", z.ZodTypeAny, {
4107
+ name: string;
4108
+ address: {
4109
+ street: string;
4110
+ city: string;
4111
+ country: string;
4112
+ };
4113
+ capacity: number;
4114
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
4115
+ coordinates?: {
4116
+ type: "Point";
4117
+ coordinates: [number, number];
4118
+ } | undefined;
4119
+ parking?: boolean | undefined;
4120
+ publicTransit?: string | undefined;
4121
+ }, {
4122
+ name: string;
4123
+ address: {
4124
+ street: string;
4125
+ city: string;
4126
+ country: string;
4127
+ };
4128
+ capacity: number;
4129
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
4130
+ coordinates?: {
4131
+ type: "Point";
4132
+ coordinates: [number, number];
4133
+ } | undefined;
4134
+ parking?: boolean | undefined;
4135
+ publicTransit?: string | undefined;
4136
+ }>>;
4137
+ organizer: z.ZodOptional<z.ZodObject<{
4138
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
4139
+ companyName: z.ZodOptional<z.ZodString>;
4140
+ contactPerson: z.ZodObject<{
4141
+ name: z.ZodString;
4142
+ phone: z.ZodString;
4143
+ email: z.ZodString;
4144
+ designation: z.ZodOptional<z.ZodString>;
4145
+ }, "strip", z.ZodTypeAny, {
4146
+ email: string;
4147
+ name: string;
4148
+ phone: string;
4149
+ designation?: string | undefined;
4150
+ }, {
4151
+ email: string;
4152
+ name: string;
4153
+ phone: string;
4154
+ designation?: string | undefined;
4155
+ }>;
4156
+ }, "strip", z.ZodTypeAny, {
4157
+ contactPerson: {
4158
+ email: string;
4159
+ name: string;
4160
+ phone: string;
4161
+ designation?: string | undefined;
4162
+ };
4163
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
4164
+ companyName?: string | undefined;
4165
+ }, {
4166
+ contactPerson: {
4167
+ email: string;
4168
+ name: string;
4169
+ phone: string;
4170
+ designation?: string | undefined;
4171
+ };
4172
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
4173
+ companyName?: string | undefined;
4174
+ }>>;
4175
+ verification: z.ZodOptional<z.ZodObject<{
4176
+ documents: z.ZodArray<z.ZodObject<{
4177
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
4178
+ url: z.ZodOptional<z.ZodString>;
4179
+ filename: z.ZodString;
4180
+ objectKey: z.ZodString;
4181
+ }, "strip", z.ZodTypeAny, {
4182
+ filename: string;
4183
+ objectKey: string;
4184
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
4185
+ url?: string | undefined;
4186
+ }, {
4187
+ filename: string;
4188
+ objectKey: string;
4189
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
4190
+ url?: string | undefined;
4191
+ }>, "many">;
4192
+ }, "strip", z.ZodTypeAny, {
4193
+ documents: {
4194
+ filename: string;
4195
+ objectKey: string;
4196
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
4197
+ url?: string | undefined;
4198
+ }[];
4199
+ }, {
4200
+ documents: {
4201
+ filename: string;
4202
+ objectKey: string;
4203
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
4204
+ url?: string | undefined;
4205
+ }[];
4206
+ }>>;
4207
+ tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
4208
+ id: z.ZodOptional<z.ZodString>;
4209
+ name: z.ZodString;
4210
+ description: z.ZodOptional<z.ZodString>;
4211
+ price: z.ZodObject<{
4212
+ amount: z.ZodNumber;
4213
+ currency: z.ZodDefault<z.ZodString>;
4214
+ }, "strip", z.ZodTypeAny, {
4215
+ amount: number;
4216
+ currency: string;
4217
+ }, {
4218
+ amount: number;
4219
+ currency?: string | undefined;
4220
+ }>;
4221
+ quantity: z.ZodNumber;
4222
+ salesWindow: z.ZodOptional<z.ZodObject<{
4223
+ startDate: z.ZodOptional<z.ZodString>;
4224
+ endDate: z.ZodOptional<z.ZodString>;
4225
+ }, "strip", z.ZodTypeAny, {
4226
+ startDate?: string | undefined;
4227
+ endDate?: string | undefined;
4228
+ }, {
4229
+ startDate?: string | undefined;
4230
+ endDate?: string | undefined;
4231
+ }>>;
4232
+ limits: z.ZodOptional<z.ZodObject<{
4233
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
4234
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
4235
+ }, "strip", z.ZodTypeAny, {
4236
+ minPerOrder: number;
4237
+ maxPerOrder: number;
4238
+ }, {
4239
+ minPerOrder?: number | undefined;
4240
+ maxPerOrder?: number | undefined;
4241
+ }>>;
4242
+ remaining: z.ZodOptional<z.ZodNumber>;
4243
+ sold: z.ZodOptional<z.ZodNumber>;
4244
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
4245
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
4246
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4247
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
4248
+ }, "strip", z.ZodTypeAny, {
4249
+ name: string;
4250
+ price: {
4251
+ amount: number;
4252
+ currency: string;
4253
+ };
4254
+ quantity: number;
4255
+ tier: "early_bird" | "regular" | "vip";
4256
+ status?: "active" | "inactive" | undefined;
4257
+ id?: string | undefined;
4258
+ description?: string | undefined;
4259
+ salesWindow?: {
4260
+ startDate?: string | undefined;
4261
+ endDate?: string | undefined;
4262
+ } | undefined;
4263
+ limits?: {
4264
+ minPerOrder: number;
4265
+ maxPerOrder: number;
4266
+ } | undefined;
4267
+ remaining?: number | undefined;
4268
+ sold?: number | undefined;
4269
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
4270
+ benefits?: string[] | undefined;
4271
+ }, {
4272
+ name: string;
4273
+ price: {
4274
+ amount: number;
4275
+ currency?: string | undefined;
4276
+ };
4277
+ quantity: number;
4278
+ status?: "active" | "inactive" | undefined;
4279
+ id?: string | undefined;
4280
+ description?: string | undefined;
4281
+ salesWindow?: {
4282
+ startDate?: string | undefined;
4283
+ endDate?: string | undefined;
4284
+ } | undefined;
4285
+ limits?: {
4286
+ minPerOrder?: number | undefined;
4287
+ maxPerOrder?: number | undefined;
4288
+ } | undefined;
4289
+ remaining?: number | undefined;
4290
+ sold?: number | undefined;
4291
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
4292
+ benefits?: string[] | undefined;
4293
+ tier?: "early_bird" | "regular" | "vip" | undefined;
4294
+ }>, "many">>;
4295
+ termsAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
4296
+ legalPermissionAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
4297
+ platformTermsAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
4298
+ eventId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4299
+ hostId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4300
+ } & {
4301
+ title: z.ZodString;
4302
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4303
+ tagline: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4304
+ type: z.ZodOptional<z.ZodDefault<z.ZodEnum<["concert", "festival", "conference", "theater", "sports", "other"]>>>;
4305
+ categories: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
4306
+ media: z.ZodOptional<z.ZodObject<{
4307
+ coverImage: z.ZodObject<{
4308
+ alt: z.ZodString;
4309
+ thumbnailUrl: z.ZodString;
4310
+ url: z.ZodString;
4311
+ }, "strip", z.ZodTypeAny, {
4312
+ alt: string;
4313
+ thumbnailUrl: string;
4314
+ url: string;
4315
+ }, {
4316
+ alt: string;
4317
+ thumbnailUrl: string;
4318
+ url: string;
4319
+ }>;
4320
+ gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
4321
+ alt: z.ZodString;
4322
+ thumbnailUrl: z.ZodString;
4323
+ url: z.ZodString;
4324
+ }, "strip", z.ZodTypeAny, {
4325
+ alt: string;
4326
+ thumbnailUrl: string;
4327
+ url: string;
4328
+ }, {
4329
+ alt: string;
4330
+ thumbnailUrl: string;
4331
+ url: string;
4332
+ }>, "many">>;
4333
+ }, "strip", z.ZodTypeAny, {
4334
+ coverImage: {
4335
+ alt: string;
4336
+ thumbnailUrl: string;
4337
+ url: string;
4338
+ };
4339
+ gallery?: {
4340
+ alt: string;
4341
+ thumbnailUrl: string;
4342
+ url: string;
4343
+ }[] | undefined;
4344
+ }, {
4345
+ coverImage: {
4346
+ alt: string;
4347
+ thumbnailUrl: string;
4348
+ url: string;
4349
+ };
4350
+ gallery?: {
4351
+ alt: string;
4352
+ thumbnailUrl: string;
4353
+ url: string;
4354
+ }[] | undefined;
4355
+ }>>;
4356
+ description: z.ZodOptional<z.ZodString>;
4357
+ highlights: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
4358
+ language: z.ZodOptional<z.ZodString>;
4359
+ ageRestriction: z.ZodOptional<z.ZodDefault<z.ZodEnum<["all_ages", "18+", "21+"]>>>;
4360
+ dressCode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["casual", "formal", "semi-formal", "other"]>>>;
4361
+ schedule: z.ZodOptional<z.ZodObject<{
4362
+ startDate: z.ZodString;
4363
+ endDate: z.ZodString;
4364
+ timezone: z.ZodOptional<z.ZodString>;
4365
+ isMultiDay: z.ZodOptional<z.ZodBoolean>;
4366
+ doors: z.ZodOptional<z.ZodString>;
4367
+ }, "strip", z.ZodTypeAny, {
4368
+ startDate: string;
4369
+ endDate: string;
4370
+ timezone?: string | undefined;
4371
+ isMultiDay?: boolean | undefined;
4372
+ doors?: string | undefined;
4373
+ }, {
4374
+ startDate: string;
4375
+ endDate: string;
4376
+ timezone?: string | undefined;
4377
+ isMultiDay?: boolean | undefined;
4378
+ doors?: string | undefined;
4379
+ }>>;
4380
+ venue: z.ZodOptional<z.ZodObject<{
4381
+ name: z.ZodString;
4382
+ address: z.ZodObject<{
4383
+ street: z.ZodString;
4384
+ city: z.ZodString;
4385
+ country: z.ZodString;
4386
+ }, "strip", z.ZodTypeAny, {
4387
+ street: string;
4388
+ city: string;
4389
+ country: string;
4390
+ }, {
4391
+ street: string;
4392
+ city: string;
4393
+ country: string;
4394
+ }>;
4395
+ coordinates: z.ZodOptional<z.ZodObject<{
4396
+ type: z.ZodLiteral<"Point">;
4397
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
4398
+ }, "strip", z.ZodTypeAny, {
4399
+ type: "Point";
4400
+ coordinates: [number, number];
4401
+ }, {
4402
+ type: "Point";
4403
+ coordinates: [number, number];
4404
+ }>>;
4405
+ capacity: z.ZodNumber;
4406
+ type: z.ZodOptional<z.ZodEnum<["indoor", "outdoor", "hybrid"]>>;
4407
+ parking: z.ZodOptional<z.ZodBoolean>;
4408
+ publicTransit: z.ZodOptional<z.ZodString>;
4409
+ }, "strip", z.ZodTypeAny, {
4410
+ name: string;
4411
+ address: {
4412
+ street: string;
4413
+ city: string;
4414
+ country: string;
4415
+ };
4416
+ capacity: number;
4417
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
4418
+ coordinates?: {
4419
+ type: "Point";
4420
+ coordinates: [number, number];
4421
+ } | undefined;
4422
+ parking?: boolean | undefined;
4423
+ publicTransit?: string | undefined;
4424
+ }, {
4425
+ name: string;
4426
+ address: {
4427
+ street: string;
4428
+ city: string;
4429
+ country: string;
4430
+ };
4431
+ capacity: number;
4432
+ type?: "indoor" | "outdoor" | "hybrid" | undefined;
4433
+ coordinates?: {
4434
+ type: "Point";
4435
+ coordinates: [number, number];
4436
+ } | undefined;
4437
+ parking?: boolean | undefined;
4438
+ publicTransit?: string | undefined;
4439
+ }>>;
4440
+ organizer: z.ZodOptional<z.ZodObject<{
4441
+ role: z.ZodOptional<z.ZodEnum<["event_organizer", "venue_owner", "authorized_rep", "artist"]>>;
4442
+ companyName: z.ZodOptional<z.ZodString>;
4443
+ contactPerson: z.ZodObject<{
4444
+ name: z.ZodString;
4445
+ phone: z.ZodString;
4446
+ email: z.ZodString;
4447
+ designation: z.ZodOptional<z.ZodString>;
4448
+ }, "strip", z.ZodTypeAny, {
4449
+ email: string;
4450
+ name: string;
4451
+ phone: string;
4452
+ designation?: string | undefined;
4453
+ }, {
4454
+ email: string;
4455
+ name: string;
4456
+ phone: string;
4457
+ designation?: string | undefined;
4458
+ }>;
4459
+ }, "strip", z.ZodTypeAny, {
4460
+ contactPerson: {
4461
+ email: string;
4462
+ name: string;
4463
+ phone: string;
4464
+ designation?: string | undefined;
4465
+ };
4466
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
4467
+ companyName?: string | undefined;
4468
+ }, {
4469
+ contactPerson: {
4470
+ email: string;
4471
+ name: string;
4472
+ phone: string;
4473
+ designation?: string | undefined;
4474
+ };
4475
+ role?: "event_organizer" | "venue_owner" | "authorized_rep" | "artist" | undefined;
4476
+ companyName?: string | undefined;
4477
+ }>>;
4478
+ verification: z.ZodOptional<z.ZodObject<{
4479
+ documents: z.ZodArray<z.ZodObject<{
4480
+ type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
4481
+ url: z.ZodOptional<z.ZodString>;
4482
+ filename: z.ZodString;
4483
+ objectKey: z.ZodString;
4484
+ }, "strip", z.ZodTypeAny, {
4485
+ filename: string;
4486
+ objectKey: string;
4487
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
4488
+ url?: string | undefined;
4489
+ }, {
4490
+ filename: string;
4491
+ objectKey: string;
4492
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
4493
+ url?: string | undefined;
4494
+ }>, "many">;
4495
+ }, "strip", z.ZodTypeAny, {
4496
+ documents: {
4497
+ filename: string;
4498
+ objectKey: string;
4499
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
4500
+ url?: string | undefined;
4501
+ }[];
4502
+ }, {
4503
+ documents: {
4504
+ filename: string;
4505
+ objectKey: string;
4506
+ type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
4507
+ url?: string | undefined;
4508
+ }[];
4509
+ }>>;
4510
+ tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
4511
+ id: z.ZodOptional<z.ZodString>;
4512
+ name: z.ZodString;
4513
+ description: z.ZodOptional<z.ZodString>;
4514
+ price: z.ZodObject<{
4515
+ amount: z.ZodNumber;
4516
+ currency: z.ZodDefault<z.ZodString>;
4517
+ }, "strip", z.ZodTypeAny, {
4518
+ amount: number;
4519
+ currency: string;
4520
+ }, {
4521
+ amount: number;
4522
+ currency?: string | undefined;
4523
+ }>;
4524
+ quantity: z.ZodNumber;
4525
+ salesWindow: z.ZodOptional<z.ZodObject<{
4526
+ startDate: z.ZodOptional<z.ZodString>;
4527
+ endDate: z.ZodOptional<z.ZodString>;
4528
+ }, "strip", z.ZodTypeAny, {
4529
+ startDate?: string | undefined;
4530
+ endDate?: string | undefined;
4531
+ }, {
4532
+ startDate?: string | undefined;
4533
+ endDate?: string | undefined;
4534
+ }>>;
4535
+ limits: z.ZodOptional<z.ZodObject<{
4536
+ minPerOrder: z.ZodDefault<z.ZodNumber>;
4537
+ maxPerOrder: z.ZodDefault<z.ZodNumber>;
4538
+ }, "strip", z.ZodTypeAny, {
4539
+ minPerOrder: number;
4540
+ maxPerOrder: number;
4541
+ }, {
4542
+ minPerOrder?: number | undefined;
4543
+ maxPerOrder?: number | undefined;
4544
+ }>>;
4545
+ remaining: z.ZodOptional<z.ZodNumber>;
4546
+ sold: z.ZodOptional<z.ZodNumber>;
4547
+ visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
4548
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
4549
+ benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4550
+ tier: z.ZodDefault<z.ZodEnum<["early_bird", "regular", "vip"]>>;
4551
+ }, "strip", z.ZodTypeAny, {
4552
+ name: string;
4553
+ price: {
4554
+ amount: number;
4555
+ currency: string;
4556
+ };
4557
+ quantity: number;
4558
+ tier: "early_bird" | "regular" | "vip";
4559
+ status?: "active" | "inactive" | undefined;
4560
+ id?: string | undefined;
4561
+ description?: string | undefined;
4562
+ salesWindow?: {
4563
+ startDate?: string | undefined;
4564
+ endDate?: string | undefined;
4565
+ } | undefined;
4566
+ limits?: {
4567
+ minPerOrder: number;
4568
+ maxPerOrder: number;
4569
+ } | undefined;
4570
+ remaining?: number | undefined;
4571
+ sold?: number | undefined;
4572
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
4573
+ benefits?: string[] | undefined;
4574
+ }, {
4575
+ name: string;
4576
+ price: {
4577
+ amount: number;
4578
+ currency?: string | undefined;
4579
+ };
4580
+ quantity: number;
4581
+ status?: "active" | "inactive" | undefined;
4582
+ id?: string | undefined;
4583
+ description?: string | undefined;
4584
+ salesWindow?: {
4585
+ startDate?: string | undefined;
4586
+ endDate?: string | undefined;
4587
+ } | undefined;
4588
+ limits?: {
4589
+ minPerOrder?: number | undefined;
4590
+ maxPerOrder?: number | undefined;
4591
+ } | undefined;
4592
+ remaining?: number | undefined;
4593
+ sold?: number | undefined;
4594
+ visibility?: "public" | "hidden" | "invite_only" | undefined;
4595
+ benefits?: string[] | undefined;
4596
+ tier?: "early_bird" | "regular" | "vip" | undefined;
4597
+ }>, "many">>;
4598
+ termsAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
4599
+ legalPermissionAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
4600
+ platformTermsAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
4601
+ eventId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4602
+ hostId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4603
+ } & {
4604
+ title: z.ZodString;
4605
+ }, z.ZodTypeAny, "passthrough">>;