@kl1/contracts 1.1.23 → 1.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -30
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +22 -4867
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +4 -764
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +4 -974
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +44 -9413
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +2 -347
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +4 -554
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +2 -487
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +2 -487
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +6 -1251
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +6 -1251
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +2 -417
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +2 -347
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +2 -487
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +2 -487
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +2 -487
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +6 -1000
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +2 -207
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +0 -29
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -2245,7 +2245,8 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2245
2245
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
2246
2246
|
note: z.ZodNullable<z.ZodString>;
|
2247
2247
|
disposition: z.ZodNullable<z.ZodString>;
|
2248
|
-
|
2248
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
2249
|
+
callTo: z.ZodNullable<z.ZodString>;
|
2249
2250
|
tags: z.ZodArray<z.ZodObject<{
|
2250
2251
|
id: z.ZodString;
|
2251
2252
|
createdAt: z.ZodDate;
|
@@ -2265,171 +2266,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2265
2266
|
updatedAt: Date;
|
2266
2267
|
deletedAt: Date | null;
|
2267
2268
|
}>, "many">;
|
2268
|
-
categories: z.ZodArray<z.ZodObject<{
|
2269
|
-
id: z.ZodString;
|
2270
|
-
createdAt: z.ZodDate;
|
2271
|
-
updatedAt: z.ZodDate;
|
2272
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
2273
|
-
value: z.ZodString;
|
2274
|
-
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2275
|
-
parentId: z.ZodNullable<z.ZodString>;
|
2276
|
-
childCategoryList: z.ZodArray<z.ZodObject<{
|
2277
|
-
id: z.ZodString;
|
2278
|
-
value: z.ZodString;
|
2279
|
-
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2280
|
-
parentId: z.ZodNullable<z.ZodString>;
|
2281
|
-
childCategoryList: z.ZodArray<z.ZodObject<{
|
2282
|
-
id: z.ZodString;
|
2283
|
-
value: z.ZodString;
|
2284
|
-
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2285
|
-
parentId: z.ZodNullable<z.ZodString>;
|
2286
|
-
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
2287
|
-
}, "strip", z.ZodTypeAny, {
|
2288
|
-
id: string;
|
2289
|
-
value: string;
|
2290
|
-
level: 2 | 1 | 3;
|
2291
|
-
parentId: string | null;
|
2292
|
-
childCategoryList: any[];
|
2293
|
-
}, {
|
2294
|
-
id: string;
|
2295
|
-
value: string;
|
2296
|
-
level: 2 | 1 | 3;
|
2297
|
-
parentId: string | null;
|
2298
|
-
childCategoryList: any[];
|
2299
|
-
}>, "many">;
|
2300
|
-
}, "strip", z.ZodTypeAny, {
|
2301
|
-
id: string;
|
2302
|
-
value: string;
|
2303
|
-
level: 2 | 1 | 3;
|
2304
|
-
parentId: string | null;
|
2305
|
-
childCategoryList: {
|
2306
|
-
id: string;
|
2307
|
-
value: string;
|
2308
|
-
level: 2 | 1 | 3;
|
2309
|
-
parentId: string | null;
|
2310
|
-
childCategoryList: any[];
|
2311
|
-
}[];
|
2312
|
-
}, {
|
2313
|
-
id: string;
|
2314
|
-
value: string;
|
2315
|
-
level: 2 | 1 | 3;
|
2316
|
-
parentId: string | null;
|
2317
|
-
childCategoryList: {
|
2318
|
-
id: string;
|
2319
|
-
value: string;
|
2320
|
-
level: 2 | 1 | 3;
|
2321
|
-
parentId: string | null;
|
2322
|
-
childCategoryList: any[];
|
2323
|
-
}[];
|
2324
|
-
}>, "many">;
|
2325
|
-
}, "strip", z.ZodTypeAny, {
|
2326
|
-
id: string;
|
2327
|
-
value: string;
|
2328
|
-
createdAt: Date;
|
2329
|
-
updatedAt: Date;
|
2330
|
-
deletedAt: Date | null;
|
2331
|
-
level: 2 | 1 | 3;
|
2332
|
-
parentId: string | null;
|
2333
|
-
childCategoryList: {
|
2334
|
-
id: string;
|
2335
|
-
value: string;
|
2336
|
-
level: 2 | 1 | 3;
|
2337
|
-
parentId: string | null;
|
2338
|
-
childCategoryList: {
|
2339
|
-
id: string;
|
2340
|
-
value: string;
|
2341
|
-
level: 2 | 1 | 3;
|
2342
|
-
parentId: string | null;
|
2343
|
-
childCategoryList: any[];
|
2344
|
-
}[];
|
2345
|
-
}[];
|
2346
|
-
}, {
|
2347
|
-
id: string;
|
2348
|
-
value: string;
|
2349
|
-
createdAt: Date;
|
2350
|
-
updatedAt: Date;
|
2351
|
-
deletedAt: Date | null;
|
2352
|
-
level: 2 | 1 | 3;
|
2353
|
-
parentId: string | null;
|
2354
|
-
childCategoryList: {
|
2355
|
-
id: string;
|
2356
|
-
value: string;
|
2357
|
-
level: 2 | 1 | 3;
|
2358
|
-
parentId: string | null;
|
2359
|
-
childCategoryList: {
|
2360
|
-
id: string;
|
2361
|
-
value: string;
|
2362
|
-
level: 2 | 1 | 3;
|
2363
|
-
parentId: string | null;
|
2364
|
-
childCategoryList: any[];
|
2365
|
-
}[];
|
2366
|
-
}[];
|
2367
|
-
}>, "many">;
|
2368
|
-
callFrom: z.ZodNullable<z.ZodString>;
|
2369
|
-
callTo: z.ZodNullable<z.ZodString>;
|
2370
|
-
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2371
|
-
id: z.ZodString;
|
2372
|
-
createdAt: z.ZodDate;
|
2373
|
-
updatedAt: z.ZodDate;
|
2374
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
2375
|
-
textValue: z.ZodNullable<z.ZodString>;
|
2376
|
-
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2377
|
-
numberValue: z.ZodNullable<z.ZodNumber>;
|
2378
|
-
dateValue: z.ZodNullable<z.ZodDate>;
|
2379
|
-
entityId: z.ZodString;
|
2380
|
-
attributeId: z.ZodString;
|
2381
|
-
}, "strip", z.ZodTypeAny, {
|
2382
|
-
id: string;
|
2383
|
-
createdAt: Date;
|
2384
|
-
updatedAt: Date;
|
2385
|
-
deletedAt: Date | null;
|
2386
|
-
entityId: string;
|
2387
|
-
attributeId: string;
|
2388
|
-
textValue: string | null;
|
2389
|
-
booleanValue: boolean | null;
|
2390
|
-
numberValue: number | null;
|
2391
|
-
dateValue: Date | null;
|
2392
|
-
}, {
|
2393
|
-
id: string;
|
2394
|
-
createdAt: Date;
|
2395
|
-
updatedAt: Date;
|
2396
|
-
deletedAt: Date | null;
|
2397
|
-
entityId: string;
|
2398
|
-
attributeId: string;
|
2399
|
-
textValue: string | null;
|
2400
|
-
booleanValue: boolean | null;
|
2401
|
-
numberValue: number | null;
|
2402
|
-
dateValue: Date | null;
|
2403
|
-
}>, "many">>>;
|
2404
2269
|
}, "strip", z.ZodTypeAny, {
|
2405
|
-
type: string;
|
2406
2270
|
id: string;
|
2407
2271
|
disposition: string | null;
|
2408
2272
|
createdAt: Date;
|
2409
2273
|
updatedAt: Date;
|
2410
2274
|
deletedAt: Date | null;
|
2411
|
-
categories: {
|
2412
|
-
id: string;
|
2413
|
-
value: string;
|
2414
|
-
createdAt: Date;
|
2415
|
-
updatedAt: Date;
|
2416
|
-
deletedAt: Date | null;
|
2417
|
-
level: 2 | 1 | 3;
|
2418
|
-
parentId: string | null;
|
2419
|
-
childCategoryList: {
|
2420
|
-
id: string;
|
2421
|
-
value: string;
|
2422
|
-
level: 2 | 1 | 3;
|
2423
|
-
parentId: string | null;
|
2424
|
-
childCategoryList: {
|
2425
|
-
id: string;
|
2426
|
-
value: string;
|
2427
|
-
level: 2 | 1 | 3;
|
2428
|
-
parentId: string | null;
|
2429
|
-
childCategoryList: any[];
|
2430
|
-
}[];
|
2431
|
-
}[];
|
2432
|
-
}[];
|
2433
2275
|
tags: {
|
2434
2276
|
id: string;
|
2435
2277
|
name: string;
|
@@ -2440,47 +2282,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2440
2282
|
callFrom: string | null;
|
2441
2283
|
callTo: string | null;
|
2442
2284
|
note: string | null;
|
2443
|
-
customFields?: {
|
2444
|
-
id: string;
|
2445
|
-
createdAt: Date;
|
2446
|
-
updatedAt: Date;
|
2447
|
-
deletedAt: Date | null;
|
2448
|
-
entityId: string;
|
2449
|
-
attributeId: string;
|
2450
|
-
textValue: string | null;
|
2451
|
-
booleanValue: boolean | null;
|
2452
|
-
numberValue: number | null;
|
2453
|
-
dateValue: Date | null;
|
2454
|
-
}[] | null | undefined;
|
2455
2285
|
}, {
|
2456
|
-
type: string;
|
2457
2286
|
id: string;
|
2458
2287
|
disposition: string | null;
|
2459
2288
|
createdAt: Date;
|
2460
2289
|
updatedAt: Date;
|
2461
2290
|
deletedAt: Date | null;
|
2462
|
-
categories: {
|
2463
|
-
id: string;
|
2464
|
-
value: string;
|
2465
|
-
createdAt: Date;
|
2466
|
-
updatedAt: Date;
|
2467
|
-
deletedAt: Date | null;
|
2468
|
-
level: 2 | 1 | 3;
|
2469
|
-
parentId: string | null;
|
2470
|
-
childCategoryList: {
|
2471
|
-
id: string;
|
2472
|
-
value: string;
|
2473
|
-
level: 2 | 1 | 3;
|
2474
|
-
parentId: string | null;
|
2475
|
-
childCategoryList: {
|
2476
|
-
id: string;
|
2477
|
-
value: string;
|
2478
|
-
level: 2 | 1 | 3;
|
2479
|
-
parentId: string | null;
|
2480
|
-
childCategoryList: any[];
|
2481
|
-
}[];
|
2482
|
-
}[];
|
2483
|
-
}[];
|
2484
2291
|
tags: {
|
2485
2292
|
id: string;
|
2486
2293
|
name: string;
|
@@ -2491,18 +2298,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2491
2298
|
callFrom: string | null;
|
2492
2299
|
callTo: string | null;
|
2493
2300
|
note: string | null;
|
2494
|
-
customFields?: {
|
2495
|
-
id: string;
|
2496
|
-
createdAt: Date;
|
2497
|
-
updatedAt: Date;
|
2498
|
-
deletedAt: Date | null;
|
2499
|
-
entityId: string;
|
2500
|
-
attributeId: string;
|
2501
|
-
textValue: string | null;
|
2502
|
-
booleanValue: boolean | null;
|
2503
|
-
numberValue: number | null;
|
2504
|
-
dateValue: Date | null;
|
2505
|
-
}[] | null | undefined;
|
2506
2301
|
}>>;
|
2507
2302
|
}, "strip", z.ZodTypeAny, {
|
2508
2303
|
id: string;
|
@@ -2521,34 +2316,11 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2521
2316
|
handledTime: number | null;
|
2522
2317
|
firstResponseTime: number | null;
|
2523
2318
|
wrapUpForm: {
|
2524
|
-
type: string;
|
2525
2319
|
id: string;
|
2526
2320
|
disposition: string | null;
|
2527
2321
|
createdAt: Date;
|
2528
2322
|
updatedAt: Date;
|
2529
2323
|
deletedAt: Date | null;
|
2530
|
-
categories: {
|
2531
|
-
id: string;
|
2532
|
-
value: string;
|
2533
|
-
createdAt: Date;
|
2534
|
-
updatedAt: Date;
|
2535
|
-
deletedAt: Date | null;
|
2536
|
-
level: 2 | 1 | 3;
|
2537
|
-
parentId: string | null;
|
2538
|
-
childCategoryList: {
|
2539
|
-
id: string;
|
2540
|
-
value: string;
|
2541
|
-
level: 2 | 1 | 3;
|
2542
|
-
parentId: string | null;
|
2543
|
-
childCategoryList: {
|
2544
|
-
id: string;
|
2545
|
-
value: string;
|
2546
|
-
level: 2 | 1 | 3;
|
2547
|
-
parentId: string | null;
|
2548
|
-
childCategoryList: any[];
|
2549
|
-
}[];
|
2550
|
-
}[];
|
2551
|
-
}[];
|
2552
2324
|
tags: {
|
2553
2325
|
id: string;
|
2554
2326
|
name: string;
|
@@ -2559,18 +2331,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2559
2331
|
callFrom: string | null;
|
2560
2332
|
callTo: string | null;
|
2561
2333
|
note: string | null;
|
2562
|
-
customFields?: {
|
2563
|
-
id: string;
|
2564
|
-
createdAt: Date;
|
2565
|
-
updatedAt: Date;
|
2566
|
-
deletedAt: Date | null;
|
2567
|
-
entityId: string;
|
2568
|
-
attributeId: string;
|
2569
|
-
textValue: string | null;
|
2570
|
-
booleanValue: boolean | null;
|
2571
|
-
numberValue: number | null;
|
2572
|
-
dateValue: Date | null;
|
2573
|
-
}[] | null | undefined;
|
2574
2334
|
} | null;
|
2575
2335
|
}, {
|
2576
2336
|
id: string;
|
@@ -2589,34 +2349,11 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2589
2349
|
handledTime: number | null;
|
2590
2350
|
firstResponseTime: number | null;
|
2591
2351
|
wrapUpForm: {
|
2592
|
-
type: string;
|
2593
2352
|
id: string;
|
2594
2353
|
disposition: string | null;
|
2595
2354
|
createdAt: Date;
|
2596
2355
|
updatedAt: Date;
|
2597
2356
|
deletedAt: Date | null;
|
2598
|
-
categories: {
|
2599
|
-
id: string;
|
2600
|
-
value: string;
|
2601
|
-
createdAt: Date;
|
2602
|
-
updatedAt: Date;
|
2603
|
-
deletedAt: Date | null;
|
2604
|
-
level: 2 | 1 | 3;
|
2605
|
-
parentId: string | null;
|
2606
|
-
childCategoryList: {
|
2607
|
-
id: string;
|
2608
|
-
value: string;
|
2609
|
-
level: 2 | 1 | 3;
|
2610
|
-
parentId: string | null;
|
2611
|
-
childCategoryList: {
|
2612
|
-
id: string;
|
2613
|
-
value: string;
|
2614
|
-
level: 2 | 1 | 3;
|
2615
|
-
parentId: string | null;
|
2616
|
-
childCategoryList: any[];
|
2617
|
-
}[];
|
2618
|
-
}[];
|
2619
|
-
}[];
|
2620
2357
|
tags: {
|
2621
2358
|
id: string;
|
2622
2359
|
name: string;
|
@@ -2627,18 +2364,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2627
2364
|
callFrom: string | null;
|
2628
2365
|
callTo: string | null;
|
2629
2366
|
note: string | null;
|
2630
|
-
customFields?: {
|
2631
|
-
id: string;
|
2632
|
-
createdAt: Date;
|
2633
|
-
updatedAt: Date;
|
2634
|
-
deletedAt: Date | null;
|
2635
|
-
entityId: string;
|
2636
|
-
attributeId: string;
|
2637
|
-
textValue: string | null;
|
2638
|
-
booleanValue: boolean | null;
|
2639
|
-
numberValue: number | null;
|
2640
|
-
dateValue: Date | null;
|
2641
|
-
}[] | null | undefined;
|
2642
2367
|
} | null;
|
2643
2368
|
}>;
|
2644
2369
|
}, "strip", z.ZodTypeAny, {
|
@@ -2760,34 +2485,11 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2760
2485
|
handledTime: number | null;
|
2761
2486
|
firstResponseTime: number | null;
|
2762
2487
|
wrapUpForm: {
|
2763
|
-
type: string;
|
2764
2488
|
id: string;
|
2765
2489
|
disposition: string | null;
|
2766
2490
|
createdAt: Date;
|
2767
2491
|
updatedAt: Date;
|
2768
2492
|
deletedAt: Date | null;
|
2769
|
-
categories: {
|
2770
|
-
id: string;
|
2771
|
-
value: string;
|
2772
|
-
createdAt: Date;
|
2773
|
-
updatedAt: Date;
|
2774
|
-
deletedAt: Date | null;
|
2775
|
-
level: 2 | 1 | 3;
|
2776
|
-
parentId: string | null;
|
2777
|
-
childCategoryList: {
|
2778
|
-
id: string;
|
2779
|
-
value: string;
|
2780
|
-
level: 2 | 1 | 3;
|
2781
|
-
parentId: string | null;
|
2782
|
-
childCategoryList: {
|
2783
|
-
id: string;
|
2784
|
-
value: string;
|
2785
|
-
level: 2 | 1 | 3;
|
2786
|
-
parentId: string | null;
|
2787
|
-
childCategoryList: any[];
|
2788
|
-
}[];
|
2789
|
-
}[];
|
2790
|
-
}[];
|
2791
2493
|
tags: {
|
2792
2494
|
id: string;
|
2793
2495
|
name: string;
|
@@ -2798,18 +2500,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2798
2500
|
callFrom: string | null;
|
2799
2501
|
callTo: string | null;
|
2800
2502
|
note: string | null;
|
2801
|
-
customFields?: {
|
2802
|
-
id: string;
|
2803
|
-
createdAt: Date;
|
2804
|
-
updatedAt: Date;
|
2805
|
-
deletedAt: Date | null;
|
2806
|
-
entityId: string;
|
2807
|
-
attributeId: string;
|
2808
|
-
textValue: string | null;
|
2809
|
-
booleanValue: boolean | null;
|
2810
|
-
numberValue: number | null;
|
2811
|
-
dateValue: Date | null;
|
2812
|
-
}[] | null | undefined;
|
2813
2503
|
} | null;
|
2814
2504
|
};
|
2815
2505
|
assigneeId: string | null;
|
@@ -3239,34 +2929,11 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
3239
2929
|
handledTime: number | null;
|
3240
2930
|
firstResponseTime: number | null;
|
3241
2931
|
wrapUpForm: {
|
3242
|
-
type: string;
|
3243
2932
|
id: string;
|
3244
2933
|
disposition: string | null;
|
3245
2934
|
createdAt: Date;
|
3246
2935
|
updatedAt: Date;
|
3247
2936
|
deletedAt: Date | null;
|
3248
|
-
categories: {
|
3249
|
-
id: string;
|
3250
|
-
value: string;
|
3251
|
-
createdAt: Date;
|
3252
|
-
updatedAt: Date;
|
3253
|
-
deletedAt: Date | null;
|
3254
|
-
level: 2 | 1 | 3;
|
3255
|
-
parentId: string | null;
|
3256
|
-
childCategoryList: {
|
3257
|
-
id: string;
|
3258
|
-
value: string;
|
3259
|
-
level: 2 | 1 | 3;
|
3260
|
-
parentId: string | null;
|
3261
|
-
childCategoryList: {
|
3262
|
-
id: string;
|
3263
|
-
value: string;
|
3264
|
-
level: 2 | 1 | 3;
|
3265
|
-
parentId: string | null;
|
3266
|
-
childCategoryList: any[];
|
3267
|
-
}[];
|
3268
|
-
}[];
|
3269
|
-
}[];
|
3270
2937
|
tags: {
|
3271
2938
|
id: string;
|
3272
2939
|
name: string;
|
@@ -3277,18 +2944,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
3277
2944
|
callFrom: string | null;
|
3278
2945
|
callTo: string | null;
|
3279
2946
|
note: string | null;
|
3280
|
-
customFields?: {
|
3281
|
-
id: string;
|
3282
|
-
createdAt: Date;
|
3283
|
-
updatedAt: Date;
|
3284
|
-
deletedAt: Date | null;
|
3285
|
-
entityId: string;
|
3286
|
-
attributeId: string;
|
3287
|
-
textValue: string | null;
|
3288
|
-
booleanValue: boolean | null;
|
3289
|
-
numberValue: number | null;
|
3290
|
-
dateValue: Date | null;
|
3291
|
-
}[] | null | undefined;
|
3292
2947
|
} | null;
|
3293
2948
|
};
|
3294
2949
|
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
|
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"}
|