@kl1/contracts 1.1.25-uat → 1.1.27-uat

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 (47) hide show
  1. package/dist/index.js +349 -185
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +348 -185
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/business-calendar/index.d.ts +414 -0
  6. package/dist/src/business-calendar/index.d.ts.map +1 -0
  7. package/dist/src/business-calendar/schema.d.ts +99 -0
  8. package/dist/src/business-calendar/schema.d.ts.map +1 -0
  9. package/dist/src/business-calendar/validation.d.ts +260 -0
  10. package/dist/src/business-calendar/validation.d.ts.map +1 -0
  11. package/dist/src/chat/index.d.ts +4867 -22
  12. package/dist/src/chat/index.d.ts.map +1 -1
  13. package/dist/src/chat/schema.d.ts +764 -4
  14. package/dist/src/chat/schema.d.ts.map +1 -1
  15. package/dist/src/chat/validation.d.ts +984 -14
  16. package/dist/src/chat/validation.d.ts.map +1 -1
  17. package/dist/src/contract.d.ts +9819 -44
  18. package/dist/src/contract.d.ts.map +1 -1
  19. package/dist/src/cx-log/index.d.ts +347 -2
  20. package/dist/src/cx-log/index.d.ts.map +1 -1
  21. package/dist/src/cx-log/schema.d.ts +554 -4
  22. package/dist/src/cx-log/schema.d.ts.map +1 -1
  23. package/dist/src/instagram/index.d.ts +487 -2
  24. package/dist/src/instagram/index.d.ts.map +1 -1
  25. package/dist/src/line/index.d.ts +487 -2
  26. package/dist/src/line/index.d.ts.map +1 -1
  27. package/dist/src/mail/mail-contract.d.ts +1251 -6
  28. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  29. package/dist/src/mail/room-contract.d.ts +1251 -6
  30. package/dist/src/mail/room-contract.d.ts.map +1 -1
  31. package/dist/src/mail/schemas/room-validation.schema.d.ts +417 -2
  32. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  33. package/dist/src/mail/schemas/room.schema.d.ts +347 -2
  34. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  35. package/dist/src/messenger/index.d.ts +487 -2
  36. package/dist/src/messenger/index.d.ts.map +1 -1
  37. package/dist/src/viber/index.d.ts +487 -2
  38. package/dist/src/viber/index.d.ts.map +1 -1
  39. package/dist/src/webchat/index.d.ts +487 -2
  40. package/dist/src/webchat/index.d.ts.map +1 -1
  41. package/dist/src/wrap-up-form/index.d.ts +997 -6
  42. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  43. package/dist/src/wrap-up-form/schema.d.ts +207 -2
  44. package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
  45. package/dist/src/wrap-up-form/validation.d.ts +26 -0
  46. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  47. package/package.json +1 -1
@@ -2275,8 +2275,7 @@ export declare const MailRoomSchema: z.ZodObject<{
2275
2275
  deletedAt: z.ZodNullable<z.ZodDate>;
2276
2276
  note: z.ZodNullable<z.ZodString>;
2277
2277
  disposition: z.ZodNullable<z.ZodString>;
2278
- callFrom: z.ZodNullable<z.ZodString>;
2279
- callTo: z.ZodNullable<z.ZodString>;
2278
+ type: z.ZodString;
2280
2279
  tags: z.ZodArray<z.ZodObject<{
2281
2280
  id: z.ZodString;
2282
2281
  createdAt: z.ZodDate;
@@ -2296,12 +2295,171 @@ export declare const MailRoomSchema: z.ZodObject<{
2296
2295
  updatedAt: Date;
2297
2296
  deletedAt: Date | null;
2298
2297
  }>, "many">;
2298
+ categories: z.ZodArray<z.ZodObject<{
2299
+ id: z.ZodString;
2300
+ createdAt: z.ZodDate;
2301
+ updatedAt: z.ZodDate;
2302
+ deletedAt: z.ZodNullable<z.ZodDate>;
2303
+ value: z.ZodString;
2304
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
2305
+ parentId: z.ZodNullable<z.ZodString>;
2306
+ childCategoryList: z.ZodArray<z.ZodObject<{
2307
+ id: z.ZodString;
2308
+ value: z.ZodString;
2309
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
2310
+ parentId: z.ZodNullable<z.ZodString>;
2311
+ childCategoryList: z.ZodArray<z.ZodObject<{
2312
+ id: z.ZodString;
2313
+ value: z.ZodString;
2314
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
2315
+ parentId: z.ZodNullable<z.ZodString>;
2316
+ childCategoryList: z.ZodArray<z.ZodAny, "many">;
2317
+ }, "strip", z.ZodTypeAny, {
2318
+ id: string;
2319
+ value: string;
2320
+ level: 2 | 1 | 3;
2321
+ parentId: string | null;
2322
+ childCategoryList: any[];
2323
+ }, {
2324
+ id: string;
2325
+ value: string;
2326
+ level: 2 | 1 | 3;
2327
+ parentId: string | null;
2328
+ childCategoryList: any[];
2329
+ }>, "many">;
2330
+ }, "strip", z.ZodTypeAny, {
2331
+ id: string;
2332
+ value: string;
2333
+ level: 2 | 1 | 3;
2334
+ parentId: string | null;
2335
+ childCategoryList: {
2336
+ id: string;
2337
+ value: string;
2338
+ level: 2 | 1 | 3;
2339
+ parentId: string | null;
2340
+ childCategoryList: any[];
2341
+ }[];
2342
+ }, {
2343
+ id: string;
2344
+ value: string;
2345
+ level: 2 | 1 | 3;
2346
+ parentId: string | null;
2347
+ childCategoryList: {
2348
+ id: string;
2349
+ value: string;
2350
+ level: 2 | 1 | 3;
2351
+ parentId: string | null;
2352
+ childCategoryList: any[];
2353
+ }[];
2354
+ }>, "many">;
2355
+ }, "strip", z.ZodTypeAny, {
2356
+ id: string;
2357
+ value: string;
2358
+ createdAt: Date;
2359
+ updatedAt: Date;
2360
+ deletedAt: Date | null;
2361
+ level: 2 | 1 | 3;
2362
+ parentId: string | null;
2363
+ childCategoryList: {
2364
+ id: string;
2365
+ value: string;
2366
+ level: 2 | 1 | 3;
2367
+ parentId: string | null;
2368
+ childCategoryList: {
2369
+ id: string;
2370
+ value: string;
2371
+ level: 2 | 1 | 3;
2372
+ parentId: string | null;
2373
+ childCategoryList: any[];
2374
+ }[];
2375
+ }[];
2376
+ }, {
2377
+ id: string;
2378
+ value: string;
2379
+ createdAt: Date;
2380
+ updatedAt: Date;
2381
+ deletedAt: Date | null;
2382
+ level: 2 | 1 | 3;
2383
+ parentId: string | null;
2384
+ childCategoryList: {
2385
+ id: string;
2386
+ value: string;
2387
+ level: 2 | 1 | 3;
2388
+ parentId: string | null;
2389
+ childCategoryList: {
2390
+ id: string;
2391
+ value: string;
2392
+ level: 2 | 1 | 3;
2393
+ parentId: string | null;
2394
+ childCategoryList: any[];
2395
+ }[];
2396
+ }[];
2397
+ }>, "many">;
2398
+ callFrom: z.ZodNullable<z.ZodString>;
2399
+ callTo: z.ZodNullable<z.ZodString>;
2400
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
2401
+ id: z.ZodString;
2402
+ createdAt: z.ZodDate;
2403
+ updatedAt: z.ZodDate;
2404
+ deletedAt: z.ZodNullable<z.ZodDate>;
2405
+ textValue: z.ZodNullable<z.ZodString>;
2406
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
2407
+ numberValue: z.ZodNullable<z.ZodNumber>;
2408
+ dateValue: z.ZodNullable<z.ZodDate>;
2409
+ entityId: z.ZodString;
2410
+ attributeId: z.ZodString;
2411
+ }, "strip", z.ZodTypeAny, {
2412
+ id: string;
2413
+ createdAt: Date;
2414
+ updatedAt: Date;
2415
+ deletedAt: Date | null;
2416
+ entityId: string;
2417
+ attributeId: string;
2418
+ textValue: string | null;
2419
+ booleanValue: boolean | null;
2420
+ numberValue: number | null;
2421
+ dateValue: Date | null;
2422
+ }, {
2423
+ id: string;
2424
+ createdAt: Date;
2425
+ updatedAt: Date;
2426
+ deletedAt: Date | null;
2427
+ entityId: string;
2428
+ attributeId: string;
2429
+ textValue: string | null;
2430
+ booleanValue: boolean | null;
2431
+ numberValue: number | null;
2432
+ dateValue: Date | null;
2433
+ }>, "many">>;
2299
2434
  }, "strip", z.ZodTypeAny, {
2435
+ type: string;
2300
2436
  id: string;
2301
2437
  disposition: string | null;
2302
2438
  createdAt: Date;
2303
2439
  updatedAt: Date;
2304
2440
  deletedAt: Date | null;
2441
+ categories: {
2442
+ id: string;
2443
+ value: string;
2444
+ createdAt: Date;
2445
+ updatedAt: Date;
2446
+ deletedAt: Date | null;
2447
+ level: 2 | 1 | 3;
2448
+ parentId: string | null;
2449
+ childCategoryList: {
2450
+ id: string;
2451
+ value: string;
2452
+ level: 2 | 1 | 3;
2453
+ parentId: string | null;
2454
+ childCategoryList: {
2455
+ id: string;
2456
+ value: string;
2457
+ level: 2 | 1 | 3;
2458
+ parentId: string | null;
2459
+ childCategoryList: any[];
2460
+ }[];
2461
+ }[];
2462
+ }[];
2305
2463
  tags: {
2306
2464
  id: string;
2307
2465
  name: string;
@@ -2312,12 +2470,47 @@ export declare const MailRoomSchema: z.ZodObject<{
2312
2470
  callFrom: string | null;
2313
2471
  callTo: string | null;
2314
2472
  note: string | null;
2473
+ customFields?: {
2474
+ id: string;
2475
+ createdAt: Date;
2476
+ updatedAt: Date;
2477
+ deletedAt: Date | null;
2478
+ entityId: string;
2479
+ attributeId: string;
2480
+ textValue: string | null;
2481
+ booleanValue: boolean | null;
2482
+ numberValue: number | null;
2483
+ dateValue: Date | null;
2484
+ }[] | undefined;
2315
2485
  }, {
2486
+ type: string;
2316
2487
  id: string;
2317
2488
  disposition: string | null;
2318
2489
  createdAt: Date;
2319
2490
  updatedAt: Date;
2320
2491
  deletedAt: Date | null;
2492
+ categories: {
2493
+ id: string;
2494
+ value: string;
2495
+ createdAt: Date;
2496
+ updatedAt: Date;
2497
+ deletedAt: Date | null;
2498
+ level: 2 | 1 | 3;
2499
+ parentId: string | null;
2500
+ childCategoryList: {
2501
+ id: string;
2502
+ value: string;
2503
+ level: 2 | 1 | 3;
2504
+ parentId: string | null;
2505
+ childCategoryList: {
2506
+ id: string;
2507
+ value: string;
2508
+ level: 2 | 1 | 3;
2509
+ parentId: string | null;
2510
+ childCategoryList: any[];
2511
+ }[];
2512
+ }[];
2513
+ }[];
2321
2514
  tags: {
2322
2515
  id: string;
2323
2516
  name: string;
@@ -2328,6 +2521,18 @@ export declare const MailRoomSchema: z.ZodObject<{
2328
2521
  callFrom: string | null;
2329
2522
  callTo: string | null;
2330
2523
  note: string | null;
2524
+ customFields?: {
2525
+ id: string;
2526
+ createdAt: Date;
2527
+ updatedAt: Date;
2528
+ deletedAt: Date | null;
2529
+ entityId: string;
2530
+ attributeId: string;
2531
+ textValue: string | null;
2532
+ booleanValue: boolean | null;
2533
+ numberValue: number | null;
2534
+ dateValue: Date | null;
2535
+ }[] | undefined;
2331
2536
  }>>;
2332
2537
  }, "strip", z.ZodTypeAny, {
2333
2538
  id: string;
@@ -2346,11 +2551,34 @@ export declare const MailRoomSchema: z.ZodObject<{
2346
2551
  handledTime: number | null;
2347
2552
  firstResponseTime: number | null;
2348
2553
  wrapUpForm: {
2554
+ type: string;
2349
2555
  id: string;
2350
2556
  disposition: string | null;
2351
2557
  createdAt: Date;
2352
2558
  updatedAt: Date;
2353
2559
  deletedAt: Date | null;
2560
+ categories: {
2561
+ id: string;
2562
+ value: string;
2563
+ createdAt: Date;
2564
+ updatedAt: Date;
2565
+ deletedAt: Date | null;
2566
+ level: 2 | 1 | 3;
2567
+ parentId: string | null;
2568
+ childCategoryList: {
2569
+ id: string;
2570
+ value: string;
2571
+ level: 2 | 1 | 3;
2572
+ parentId: string | null;
2573
+ childCategoryList: {
2574
+ id: string;
2575
+ value: string;
2576
+ level: 2 | 1 | 3;
2577
+ parentId: string | null;
2578
+ childCategoryList: any[];
2579
+ }[];
2580
+ }[];
2581
+ }[];
2354
2582
  tags: {
2355
2583
  id: string;
2356
2584
  name: string;
@@ -2361,6 +2589,18 @@ export declare const MailRoomSchema: z.ZodObject<{
2361
2589
  callFrom: string | null;
2362
2590
  callTo: string | null;
2363
2591
  note: string | null;
2592
+ customFields?: {
2593
+ id: string;
2594
+ createdAt: Date;
2595
+ updatedAt: Date;
2596
+ deletedAt: Date | null;
2597
+ entityId: string;
2598
+ attributeId: string;
2599
+ textValue: string | null;
2600
+ booleanValue: boolean | null;
2601
+ numberValue: number | null;
2602
+ dateValue: Date | null;
2603
+ }[] | undefined;
2364
2604
  } | null;
2365
2605
  }, {
2366
2606
  id: string;
@@ -2379,11 +2619,34 @@ export declare const MailRoomSchema: z.ZodObject<{
2379
2619
  handledTime: number | null;
2380
2620
  firstResponseTime: number | null;
2381
2621
  wrapUpForm: {
2622
+ type: string;
2382
2623
  id: string;
2383
2624
  disposition: string | null;
2384
2625
  createdAt: Date;
2385
2626
  updatedAt: Date;
2386
2627
  deletedAt: Date | null;
2628
+ categories: {
2629
+ id: string;
2630
+ value: string;
2631
+ createdAt: Date;
2632
+ updatedAt: Date;
2633
+ deletedAt: Date | null;
2634
+ level: 2 | 1 | 3;
2635
+ parentId: string | null;
2636
+ childCategoryList: {
2637
+ id: string;
2638
+ value: string;
2639
+ level: 2 | 1 | 3;
2640
+ parentId: string | null;
2641
+ childCategoryList: {
2642
+ id: string;
2643
+ value: string;
2644
+ level: 2 | 1 | 3;
2645
+ parentId: string | null;
2646
+ childCategoryList: any[];
2647
+ }[];
2648
+ }[];
2649
+ }[];
2387
2650
  tags: {
2388
2651
  id: string;
2389
2652
  name: string;
@@ -2394,6 +2657,18 @@ export declare const MailRoomSchema: z.ZodObject<{
2394
2657
  callFrom: string | null;
2395
2658
  callTo: string | null;
2396
2659
  note: string | null;
2660
+ customFields?: {
2661
+ id: string;
2662
+ createdAt: Date;
2663
+ updatedAt: Date;
2664
+ deletedAt: Date | null;
2665
+ entityId: string;
2666
+ attributeId: string;
2667
+ textValue: string | null;
2668
+ booleanValue: boolean | null;
2669
+ numberValue: number | null;
2670
+ dateValue: Date | null;
2671
+ }[] | undefined;
2397
2672
  } | null;
2398
2673
  }>;
2399
2674
  }, "strip", z.ZodTypeAny, {
@@ -2517,11 +2792,34 @@ export declare const MailRoomSchema: z.ZodObject<{
2517
2792
  handledTime: number | null;
2518
2793
  firstResponseTime: number | null;
2519
2794
  wrapUpForm: {
2795
+ type: string;
2520
2796
  id: string;
2521
2797
  disposition: string | null;
2522
2798
  createdAt: Date;
2523
2799
  updatedAt: Date;
2524
2800
  deletedAt: Date | null;
2801
+ categories: {
2802
+ id: string;
2803
+ value: string;
2804
+ createdAt: Date;
2805
+ updatedAt: Date;
2806
+ deletedAt: Date | null;
2807
+ level: 2 | 1 | 3;
2808
+ parentId: string | null;
2809
+ childCategoryList: {
2810
+ id: string;
2811
+ value: string;
2812
+ level: 2 | 1 | 3;
2813
+ parentId: string | null;
2814
+ childCategoryList: {
2815
+ id: string;
2816
+ value: string;
2817
+ level: 2 | 1 | 3;
2818
+ parentId: string | null;
2819
+ childCategoryList: any[];
2820
+ }[];
2821
+ }[];
2822
+ }[];
2525
2823
  tags: {
2526
2824
  id: string;
2527
2825
  name: string;
@@ -2532,6 +2830,18 @@ export declare const MailRoomSchema: z.ZodObject<{
2532
2830
  callFrom: string | null;
2533
2831
  callTo: string | null;
2534
2832
  note: string | null;
2833
+ customFields?: {
2834
+ id: string;
2835
+ createdAt: Date;
2836
+ updatedAt: Date;
2837
+ deletedAt: Date | null;
2838
+ entityId: string;
2839
+ attributeId: string;
2840
+ textValue: string | null;
2841
+ booleanValue: boolean | null;
2842
+ numberValue: number | null;
2843
+ dateValue: Date | null;
2844
+ }[] | undefined;
2535
2845
  } | null;
2536
2846
  };
2537
2847
  assigneeId: string | null;
@@ -2969,11 +3279,34 @@ export declare const MailRoomSchema: z.ZodObject<{
2969
3279
  handledTime: number | null;
2970
3280
  firstResponseTime: number | null;
2971
3281
  wrapUpForm: {
3282
+ type: string;
2972
3283
  id: string;
2973
3284
  disposition: string | null;
2974
3285
  createdAt: Date;
2975
3286
  updatedAt: Date;
2976
3287
  deletedAt: Date | null;
3288
+ categories: {
3289
+ id: string;
3290
+ value: string;
3291
+ createdAt: Date;
3292
+ updatedAt: Date;
3293
+ deletedAt: Date | null;
3294
+ level: 2 | 1 | 3;
3295
+ parentId: string | null;
3296
+ childCategoryList: {
3297
+ id: string;
3298
+ value: string;
3299
+ level: 2 | 1 | 3;
3300
+ parentId: string | null;
3301
+ childCategoryList: {
3302
+ id: string;
3303
+ value: string;
3304
+ level: 2 | 1 | 3;
3305
+ parentId: string | null;
3306
+ childCategoryList: any[];
3307
+ }[];
3308
+ }[];
3309
+ }[];
2977
3310
  tags: {
2978
3311
  id: string;
2979
3312
  name: string;
@@ -2984,6 +3317,18 @@ export declare const MailRoomSchema: z.ZodObject<{
2984
3317
  callFrom: string | null;
2985
3318
  callTo: string | null;
2986
3319
  note: string | null;
3320
+ customFields?: {
3321
+ id: string;
3322
+ createdAt: Date;
3323
+ updatedAt: Date;
3324
+ deletedAt: Date | null;
3325
+ entityId: string;
3326
+ attributeId: string;
3327
+ textValue: string | null;
3328
+ booleanValue: boolean | null;
3329
+ numberValue: number | null;
3330
+ dateValue: Date | null;
3331
+ }[] | undefined;
2987
3332
  } | null;
2988
3333
  };
2989
3334
  assigneeId: string | null;
@@ -1 +1 @@
1
- {"version":3,"file":"room.schema.d.ts","sourceRoot":"","sources":["../../../../src/mail/schemas/room.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;EAOzB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;EAOpB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUpB,CAAC;AAaH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAEjC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BzB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAC"}
1
+ {"version":3,"file":"room.schema.d.ts","sourceRoot":"","sources":["../../../../src/mail/schemas/room.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;EAOzB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;EAOpB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUpB,CAAC;AAaH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAEjC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BzB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAC"}