@voyant-travel/mice 0.1.0 → 0.3.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 (39) hide show
  1. package/LICENSE +201 -0
  2. package/dist/booking-extension.d.ts +130 -0
  3. package/dist/booking-extension.d.ts.map +1 -0
  4. package/dist/booking-extension.js +83 -0
  5. package/dist/index.d.ts +8 -0
  6. package/dist/index.d.ts.map +1 -1
  7. package/dist/index.js +21 -0
  8. package/dist/routes.d.ts +458 -58
  9. package/dist/routes.d.ts.map +1 -1
  10. package/dist/routes.js +89 -1
  11. package/dist/schema-delegates.d.ts +340 -0
  12. package/dist/schema-delegates.d.ts.map +1 -0
  13. package/dist/schema-delegates.js +76 -0
  14. package/dist/schema-rooming.d.ts +333 -0
  15. package/dist/schema-rooming.d.ts.map +1 -0
  16. package/dist/schema-rooming.js +47 -0
  17. package/dist/schema.d.ts +6 -2
  18. package/dist/schema.d.ts.map +1 -1
  19. package/dist/schema.js +3 -0
  20. package/dist/service-delegates.d.ts +40 -0
  21. package/dist/service-delegates.d.ts.map +1 -0
  22. package/dist/service-delegates.js +107 -0
  23. package/dist/service-rooming.d.ts +50 -0
  24. package/dist/service-rooming.d.ts.map +1 -0
  25. package/dist/service-rooming.js +102 -0
  26. package/dist/service-sessions.d.ts +7 -1
  27. package/dist/service-sessions.d.ts.map +1 -1
  28. package/dist/service-sessions.js +11 -1
  29. package/dist/validation-delegates.d.ts +109 -0
  30. package/dist/validation-delegates.d.ts.map +1 -0
  31. package/dist/validation-delegates.js +41 -0
  32. package/dist/validation-rooming.d.ts +37 -0
  33. package/dist/validation-rooming.d.ts.map +1 -0
  34. package/dist/validation-rooming.js +28 -0
  35. package/dist/validation-sessions.d.ts +3 -3
  36. package/dist/validation.d.ts +12 -12
  37. package/migrations/0002_mice_baseline.sql +86 -0
  38. package/migrations/meta/_journal.json +7 -0
  39. package/package.json +45 -47
package/dist/routes.d.ts CHANGED
@@ -15,26 +15,26 @@ export declare const miceAdminRoutes: import("hono/hono-base").HonoBase<Env, {
15
15
  input: {};
16
16
  output: {
17
17
  data: {
18
- status: "lead" | "planning" | "contracted" | "operating" | "completed" | "cancelled";
19
- type: "meeting" | "incentive" | "conference" | "exhibition" | "other";
20
- organizationId: string | null;
18
+ currency: string | null;
21
19
  metadata: {
22
20
  [x: string]: import("hono/utils/types").JSONValue;
23
21
  } | null;
24
- code: string | null;
22
+ status: "completed" | "cancelled" | "lead" | "planning" | "contracted" | "operating";
23
+ type: "other" | "meeting" | "incentive" | "conference" | "exhibition";
25
24
  id: string;
26
25
  name: string;
26
+ createdAt: string;
27
+ code: string | null;
28
+ updatedAt: string;
29
+ organizationId: string | null;
30
+ startDate: string | null;
31
+ endDate: string | null;
27
32
  primaryContactPersonId: string | null;
28
33
  accountManagerId: string | null;
29
34
  destination: string | null;
30
- startDate: string | null;
31
- endDate: string | null;
32
35
  estimatedPax: number | null;
33
36
  confirmedPax: number | null;
34
- currency: string | null;
35
37
  budgetAmountCents: number | null;
36
- createdAt: string;
37
- updatedAt: string;
38
38
  }[];
39
39
  limit: number;
40
40
  offset: number;
@@ -49,26 +49,26 @@ export declare const miceAdminRoutes: import("hono/hono-base").HonoBase<Env, {
49
49
  input: {};
50
50
  output: {
51
51
  data: {
52
- status: "lead" | "planning" | "contracted" | "operating" | "completed" | "cancelled";
53
- type: "meeting" | "incentive" | "conference" | "exhibition" | "other";
54
- organizationId: string | null;
52
+ currency: string | null;
55
53
  metadata: {
56
54
  [x: string]: import("hono/utils/types").JSONValue;
57
55
  } | null;
58
- code: string | null;
56
+ status: "completed" | "cancelled" | "lead" | "planning" | "contracted" | "operating";
57
+ type: "other" | "meeting" | "incentive" | "conference" | "exhibition";
59
58
  id: string;
60
59
  name: string;
60
+ createdAt: string;
61
+ code: string | null;
62
+ updatedAt: string;
63
+ organizationId: string | null;
64
+ startDate: string | null;
65
+ endDate: string | null;
61
66
  primaryContactPersonId: string | null;
62
67
  accountManagerId: string | null;
63
68
  destination: string | null;
64
- startDate: string | null;
65
- endDate: string | null;
66
69
  estimatedPax: number | null;
67
70
  confirmedPax: number | null;
68
- currency: string | null;
69
71
  budgetAmountCents: number | null;
70
- createdAt: string;
71
- updatedAt: string;
72
72
  };
73
73
  };
74
74
  outputFormat: "json";
@@ -96,26 +96,26 @@ export declare const miceAdminRoutes: import("hono/hono-base").HonoBase<Env, {
96
96
  };
97
97
  output: {
98
98
  data: {
99
- status: "lead" | "planning" | "contracted" | "operating" | "completed" | "cancelled";
100
- type: "meeting" | "incentive" | "conference" | "exhibition" | "other";
101
- organizationId: string | null;
99
+ currency: string | null;
102
100
  metadata: {
103
101
  [x: string]: import("hono/utils/types").JSONValue;
104
102
  } | null;
105
- code: string | null;
103
+ status: "completed" | "cancelled" | "lead" | "planning" | "contracted" | "operating";
104
+ type: "other" | "meeting" | "incentive" | "conference" | "exhibition";
106
105
  id: string;
107
106
  name: string;
107
+ createdAt: string;
108
+ code: string | null;
109
+ updatedAt: string;
110
+ organizationId: string | null;
111
+ startDate: string | null;
112
+ endDate: string | null;
108
113
  primaryContactPersonId: string | null;
109
114
  accountManagerId: string | null;
110
115
  destination: string | null;
111
- startDate: string | null;
112
- endDate: string | null;
113
116
  estimatedPax: number | null;
114
117
  confirmedPax: number | null;
115
- currency: string | null;
116
118
  budgetAmountCents: number | null;
117
- createdAt: string;
118
- updatedAt: string;
119
119
  };
120
120
  };
121
121
  outputFormat: "json";
@@ -143,26 +143,26 @@ export declare const miceAdminRoutes: import("hono/hono-base").HonoBase<Env, {
143
143
  };
144
144
  output: {
145
145
  data: {
146
- status: "lead" | "planning" | "contracted" | "operating" | "completed" | "cancelled";
147
- type: "meeting" | "incentive" | "conference" | "exhibition" | "other";
148
- organizationId: string | null;
146
+ currency: string | null;
149
147
  metadata: {
150
148
  [x: string]: import("hono/utils/types").JSONValue;
151
149
  } | null;
152
- code: string | null;
150
+ status: "completed" | "cancelled" | "lead" | "planning" | "contracted" | "operating";
151
+ type: "other" | "meeting" | "incentive" | "conference" | "exhibition";
153
152
  id: string;
154
153
  name: string;
154
+ createdAt: string;
155
+ code: string | null;
156
+ updatedAt: string;
157
+ organizationId: string | null;
158
+ startDate: string | null;
159
+ endDate: string | null;
155
160
  primaryContactPersonId: string | null;
156
161
  accountManagerId: string | null;
157
162
  destination: string | null;
158
- startDate: string | null;
159
- endDate: string | null;
160
163
  estimatedPax: number | null;
161
164
  confirmedPax: number | null;
162
- currency: string | null;
163
165
  budgetAmountCents: number | null;
164
- createdAt: string;
165
- updatedAt: string;
166
166
  };
167
167
  };
168
168
  outputFormat: "json";
@@ -179,19 +179,19 @@ export declare const miceAdminRoutes: import("hono/hono-base").HonoBase<Env, {
179
179
  [x: string]: import("hono/utils/types").JSONValue;
180
180
  } | null;
181
181
  id: string;
182
- title: string;
183
182
  createdAt: string;
184
183
  updatedAt: string;
184
+ notes: string | null;
185
+ capacity: number | null;
185
186
  programId: string;
186
- sessionType: "keynote" | "breakout" | "meal" | "networking" | "gala" | "excursion" | "free";
187
+ title: string;
187
188
  functionSpaceId: string | null;
189
+ sessionType: "keynote" | "breakout" | "meal" | "networking" | "gala" | "excursion" | "free";
188
190
  dayDate: string | null;
189
191
  startsAt: string | null;
190
192
  endsAt: string | null;
191
193
  track: string | null;
192
- capacity: number | null;
193
194
  requiresRegistration: boolean;
194
- notes: string | null;
195
195
  }[];
196
196
  limit: number;
197
197
  offset: number;
@@ -203,6 +203,13 @@ export declare const miceAdminRoutes: import("hono/hono-base").HonoBase<Env, {
203
203
  } & {
204
204
  "/sessions": {
205
205
  $post: {
206
+ input: {};
207
+ output: {
208
+ error: string;
209
+ };
210
+ outputFormat: "json";
211
+ status: 404;
212
+ } | {
206
213
  input: {};
207
214
  output: {
208
215
  data: {
@@ -210,19 +217,19 @@ export declare const miceAdminRoutes: import("hono/hono-base").HonoBase<Env, {
210
217
  [x: string]: import("hono/utils/types").JSONValue;
211
218
  } | null;
212
219
  id: string;
213
- title: string;
214
220
  createdAt: string;
215
221
  updatedAt: string;
222
+ notes: string | null;
223
+ capacity: number | null;
216
224
  programId: string;
217
- sessionType: "keynote" | "breakout" | "meal" | "networking" | "gala" | "excursion" | "free";
225
+ title: string;
218
226
  functionSpaceId: string | null;
227
+ sessionType: "keynote" | "breakout" | "meal" | "networking" | "gala" | "excursion" | "free";
219
228
  dayDate: string | null;
220
229
  startsAt: string | null;
221
230
  endsAt: string | null;
222
231
  track: string | null;
223
- capacity: number | null;
224
232
  requiresRegistration: boolean;
225
- notes: string | null;
226
233
  };
227
234
  };
228
235
  outputFormat: "json";
@@ -254,29 +261,29 @@ export declare const miceAdminRoutes: import("hono/hono-base").HonoBase<Env, {
254
261
  [x: string]: import("hono/utils/types").JSONValue;
255
262
  } | null;
256
263
  id: string;
257
- title: string;
258
264
  createdAt: string;
259
265
  updatedAt: string;
266
+ notes: string | null;
267
+ capacity: number | null;
260
268
  programId: string;
261
- sessionType: "keynote" | "breakout" | "meal" | "networking" | "gala" | "excursion" | "free";
269
+ title: string;
262
270
  functionSpaceId: string | null;
271
+ sessionType: "keynote" | "breakout" | "meal" | "networking" | "gala" | "excursion" | "free";
263
272
  dayDate: string | null;
264
273
  startsAt: string | null;
265
274
  endsAt: string | null;
266
275
  track: string | null;
267
- capacity: number | null;
268
276
  requiresRegistration: boolean;
269
- notes: string | null;
270
277
  inclusions: {
271
- id: string;
272
- description: string | null;
273
278
  currency: string | null;
279
+ id: string;
274
280
  createdAt: string;
281
+ description: string | null;
275
282
  updatedAt: string;
283
+ sessionId: string;
276
284
  kind: "other" | "fnb" | "av" | "materials" | "signage";
277
285
  quantity: number;
278
286
  costAmountCents: number | null;
279
- sessionId: string;
280
287
  }[];
281
288
  };
282
289
  };
@@ -309,19 +316,19 @@ export declare const miceAdminRoutes: import("hono/hono-base").HonoBase<Env, {
309
316
  [x: string]: import("hono/utils/types").JSONValue;
310
317
  } | null;
311
318
  id: string;
312
- title: string;
313
319
  createdAt: string;
314
320
  updatedAt: string;
321
+ notes: string | null;
322
+ capacity: number | null;
315
323
  programId: string;
316
- sessionType: "keynote" | "breakout" | "meal" | "networking" | "gala" | "excursion" | "free";
324
+ title: string;
317
325
  functionSpaceId: string | null;
326
+ sessionType: "keynote" | "breakout" | "meal" | "networking" | "gala" | "excursion" | "free";
318
327
  dayDate: string | null;
319
328
  startsAt: string | null;
320
329
  endsAt: string | null;
321
330
  track: string | null;
322
- capacity: number | null;
323
331
  requiresRegistration: boolean;
324
- notes: string | null;
325
332
  };
326
333
  };
327
334
  outputFormat: "json";
@@ -375,22 +382,415 @@ export declare const miceAdminRoutes: import("hono/hono-base").HonoBase<Env, {
375
382
  };
376
383
  output: {
377
384
  data: {
378
- id: string;
379
- description: string | null;
380
385
  currency: string | null;
386
+ id: string;
381
387
  createdAt: string;
388
+ description: string | null;
382
389
  updatedAt: string;
390
+ sessionId: string;
383
391
  kind: "other" | "fnb" | "av" | "materials" | "signage";
384
392
  quantity: number;
385
393
  costAmountCents: number | null;
394
+ }[];
395
+ };
396
+ outputFormat: "json";
397
+ status: import("hono/utils/http-status").ContentfulStatusCode;
398
+ };
399
+ };
400
+ } & {
401
+ "/delegates": {
402
+ $get: {
403
+ input: {};
404
+ output: {
405
+ data: {
406
+ metadata: {
407
+ [x: string]: import("hono/utils/types").JSONValue;
408
+ } | null;
409
+ status: "cancelled" | "invited" | "registered" | "confirmed" | "checked_in" | "no_show";
410
+ id: string;
411
+ createdAt: string;
412
+ updatedAt: string;
413
+ role: "staff" | "attendee" | "speaker" | "sponsor" | "vip" | "exhibitor" | "organizer";
414
+ notes: string | null;
415
+ bookingId: string | null;
416
+ programId: string;
417
+ personId: string | null;
418
+ arrivalAt: string | null;
419
+ departureAt: string | null;
420
+ }[];
421
+ limit: number;
422
+ offset: number;
423
+ };
424
+ outputFormat: "json";
425
+ status: import("hono/utils/http-status").ContentfulStatusCode;
426
+ };
427
+ };
428
+ } & {
429
+ "/delegates": {
430
+ $post: {
431
+ input: {};
432
+ output: {
433
+ error: string;
434
+ };
435
+ outputFormat: "json";
436
+ status: 404;
437
+ } | {
438
+ input: {};
439
+ output: {
440
+ data: {
441
+ metadata: {
442
+ [x: string]: import("hono/utils/types").JSONValue;
443
+ } | null;
444
+ status: "cancelled" | "invited" | "registered" | "confirmed" | "checked_in" | "no_show";
445
+ id: string;
446
+ createdAt: string;
447
+ updatedAt: string;
448
+ role: "staff" | "attendee" | "speaker" | "sponsor" | "vip" | "exhibitor" | "organizer";
449
+ notes: string | null;
450
+ bookingId: string | null;
451
+ programId: string;
452
+ personId: string | null;
453
+ arrivalAt: string | null;
454
+ departureAt: string | null;
455
+ };
456
+ };
457
+ outputFormat: "json";
458
+ status: 201;
459
+ };
460
+ };
461
+ } & {
462
+ "/delegates/:id": {
463
+ $get: {
464
+ input: {
465
+ param: {
466
+ id: string;
467
+ };
468
+ };
469
+ output: {
470
+ error: string;
471
+ };
472
+ outputFormat: "json";
473
+ status: 404;
474
+ } | {
475
+ input: {
476
+ param: {
477
+ id: string;
478
+ };
479
+ };
480
+ output: {
481
+ data: {
482
+ metadata: {
483
+ [x: string]: import("hono/utils/types").JSONValue;
484
+ } | null;
485
+ status: "cancelled" | "invited" | "registered" | "confirmed" | "checked_in" | "no_show";
486
+ id: string;
487
+ createdAt: string;
488
+ updatedAt: string;
489
+ role: "staff" | "attendee" | "speaker" | "sponsor" | "vip" | "exhibitor" | "organizer";
490
+ notes: string | null;
491
+ bookingId: string | null;
492
+ programId: string;
493
+ personId: string | null;
494
+ arrivalAt: string | null;
495
+ departureAt: string | null;
496
+ enrollments: {
497
+ status: "cancelled" | "registered" | "waitlisted" | "attended";
498
+ id: string;
499
+ createdAt: string;
500
+ updatedAt: string;
501
+ sessionId: string;
502
+ delegateId: string;
503
+ }[];
504
+ };
505
+ };
506
+ outputFormat: "json";
507
+ status: import("hono/utils/http-status").ContentfulStatusCode;
508
+ };
509
+ };
510
+ } & {
511
+ "/delegates/:id": {
512
+ $patch: {
513
+ input: {
514
+ param: {
515
+ id: string;
516
+ };
517
+ };
518
+ output: {
519
+ error: string;
520
+ };
521
+ outputFormat: "json";
522
+ status: 404;
523
+ } | {
524
+ input: {
525
+ param: {
526
+ id: string;
527
+ };
528
+ };
529
+ output: {
530
+ data: {
531
+ metadata: {
532
+ [x: string]: import("hono/utils/types").JSONValue;
533
+ } | null;
534
+ status: "cancelled" | "invited" | "registered" | "confirmed" | "checked_in" | "no_show";
535
+ id: string;
536
+ createdAt: string;
537
+ updatedAt: string;
538
+ role: "staff" | "attendee" | "speaker" | "sponsor" | "vip" | "exhibitor" | "organizer";
539
+ notes: string | null;
540
+ bookingId: string | null;
541
+ programId: string;
542
+ personId: string | null;
543
+ arrivalAt: string | null;
544
+ departureAt: string | null;
545
+ };
546
+ };
547
+ outputFormat: "json";
548
+ status: import("hono/utils/http-status").ContentfulStatusCode;
549
+ };
550
+ };
551
+ } & {
552
+ "/delegates/:id/enrollments": {
553
+ $post: {
554
+ input: {
555
+ param: {
556
+ id: string;
557
+ };
558
+ };
559
+ output: {
560
+ data: {
561
+ status: "cancelled" | "registered" | "waitlisted" | "attended";
562
+ id: string;
563
+ createdAt: string;
564
+ updatedAt: string;
386
565
  sessionId: string;
566
+ delegateId: string;
567
+ };
568
+ };
569
+ outputFormat: "json";
570
+ status: 200 | 201;
571
+ } | {
572
+ input: {
573
+ param: {
574
+ id: string;
575
+ };
576
+ };
577
+ output: {
578
+ error: string;
579
+ };
580
+ outputFormat: "json";
581
+ status: 404;
582
+ } | {
583
+ input: {
584
+ param: {
585
+ id: string;
586
+ };
587
+ };
588
+ output: {
589
+ error: string;
590
+ };
591
+ outputFormat: "json";
592
+ status: 409;
593
+ };
594
+ };
595
+ } & {
596
+ "/rooming-assignments": {
597
+ $get: {
598
+ input: {};
599
+ output: {
600
+ data: {
601
+ metadata: {
602
+ [x: string]: import("hono/utils/types").JSONValue;
603
+ } | null;
604
+ id: string;
605
+ createdAt: string;
606
+ updatedAt: string;
607
+ programId: string;
608
+ roomBlockId: string | null;
609
+ roomTypeId: string | null;
610
+ bedConfig: string | null;
611
+ sharingGroupId: string | null;
612
+ checkIn: string | null;
613
+ checkOut: string | null;
614
+ specialRequests: string | null;
615
+ }[];
616
+ limit: number;
617
+ offset: number;
618
+ };
619
+ outputFormat: "json";
620
+ status: import("hono/utils/http-status").ContentfulStatusCode;
621
+ };
622
+ };
623
+ } & {
624
+ "/rooming-assignments": {
625
+ $post: {
626
+ input: {};
627
+ output: {
628
+ error: string;
629
+ };
630
+ outputFormat: "json";
631
+ status: 404;
632
+ } | {
633
+ input: {};
634
+ output: {
635
+ data: {
636
+ metadata: {
637
+ [x: string]: import("hono/utils/types").JSONValue;
638
+ } | null;
639
+ id: string;
640
+ createdAt: string;
641
+ updatedAt: string;
642
+ programId: string;
643
+ roomBlockId: string | null;
644
+ roomTypeId: string | null;
645
+ bedConfig: string | null;
646
+ sharingGroupId: string | null;
647
+ checkIn: string | null;
648
+ checkOut: string | null;
649
+ specialRequests: string | null;
650
+ };
651
+ };
652
+ outputFormat: "json";
653
+ status: 201;
654
+ };
655
+ };
656
+ } & {
657
+ "/rooming-assignments/:id": {
658
+ $get: {
659
+ input: {
660
+ param: {
661
+ id: string;
662
+ };
663
+ };
664
+ output: {
665
+ error: string;
666
+ };
667
+ outputFormat: "json";
668
+ status: 404;
669
+ } | {
670
+ input: {
671
+ param: {
672
+ id: string;
673
+ };
674
+ };
675
+ output: {
676
+ data: {
677
+ metadata: {
678
+ [x: string]: import("hono/utils/types").JSONValue;
679
+ } | null;
680
+ id: string;
681
+ createdAt: string;
682
+ updatedAt: string;
683
+ programId: string;
684
+ roomBlockId: string | null;
685
+ roomTypeId: string | null;
686
+ bedConfig: string | null;
687
+ sharingGroupId: string | null;
688
+ checkIn: string | null;
689
+ checkOut: string | null;
690
+ specialRequests: string | null;
691
+ delegates: {
692
+ id: string;
693
+ createdAt: string;
694
+ delegateId: string;
695
+ roomingAssignmentId: string;
696
+ isPrimary: boolean;
697
+ bedLabel: string | null;
698
+ }[];
699
+ };
700
+ };
701
+ outputFormat: "json";
702
+ status: import("hono/utils/http-status").ContentfulStatusCode;
703
+ };
704
+ };
705
+ } & {
706
+ "/rooming-assignments/:id": {
707
+ $patch: {
708
+ input: {
709
+ param: {
710
+ id: string;
711
+ };
712
+ };
713
+ output: {
714
+ error: string;
715
+ };
716
+ outputFormat: "json";
717
+ status: 404;
718
+ } | {
719
+ input: {
720
+ param: {
721
+ id: string;
722
+ };
723
+ };
724
+ output: {
725
+ data: {
726
+ metadata: {
727
+ [x: string]: import("hono/utils/types").JSONValue;
728
+ } | null;
729
+ id: string;
730
+ createdAt: string;
731
+ updatedAt: string;
732
+ programId: string;
733
+ roomBlockId: string | null;
734
+ roomTypeId: string | null;
735
+ bedConfig: string | null;
736
+ sharingGroupId: string | null;
737
+ checkIn: string | null;
738
+ checkOut: string | null;
739
+ specialRequests: string | null;
740
+ };
741
+ };
742
+ outputFormat: "json";
743
+ status: import("hono/utils/http-status").ContentfulStatusCode;
744
+ };
745
+ };
746
+ } & {
747
+ "/rooming-assignments/:id/delegates": {
748
+ $put: {
749
+ input: {
750
+ param: {
751
+ id: string;
752
+ };
753
+ };
754
+ output: {
755
+ data: {
756
+ id: string;
757
+ createdAt: string;
758
+ delegateId: string;
759
+ roomingAssignmentId: string;
760
+ isPrimary: boolean;
761
+ bedLabel: string | null;
387
762
  }[];
388
763
  };
389
764
  outputFormat: "json";
390
765
  status: import("hono/utils/http-status").ContentfulStatusCode;
766
+ } | {
767
+ input: {
768
+ param: {
769
+ id: string;
770
+ };
771
+ };
772
+ output: {
773
+ error: string;
774
+ };
775
+ outputFormat: "json";
776
+ status: 404;
777
+ } | {
778
+ input: {
779
+ param: {
780
+ id: string;
781
+ };
782
+ };
783
+ output: {
784
+ error: string;
785
+ detail: {
786
+ offending: string[];
787
+ };
788
+ };
789
+ outputFormat: "json";
790
+ status: 409;
391
791
  };
392
792
  };
393
- }, "/", "/sessions/:id/inclusions">;
793
+ }, "/", "/rooming-assignments/:id/delegates">;
394
794
  export type MiceAdminRoutes = typeof miceAdminRoutes;
395
795
  export {};
396
796
  //# sourceMappingURL=routes.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../src/routes.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AAoBjE,KAAK,GAAG,GAAG;IACT,SAAS,EAAE;QACT,EAAE,EAAE,kBAAkB,CAAA;QACtB,MAAM,CAAC,EAAE,MAAM,CAAA;KAChB,CAAA;CACF,CAAA;AAED,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAmDxB,CAAA;AAEJ,MAAM,MAAM,eAAe,GAAG,OAAO,eAAe,CAAA"}
1
+ {"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../src/routes.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AA8CjE,KAAK,GAAG,GAAG;IACT,SAAS,EAAE;QACT,EAAE,EAAE,kBAAkB,CAAA;QACtB,MAAM,CAAC,EAAE,MAAM,CAAA;KAChB,CAAA;CACF,CAAA;AAED,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6CAmIxB,CAAA;AAEJ,MAAM,MAAM,eAAe,GAAG,OAAO,eAAe,CAAA"}