@kl1/contracts 1.1.23-uat → 1.1.23
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 +367 -238
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +367 -238
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +799 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +172 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +210 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- package/dist/src/channel/index.d.ts +725 -611
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +12 -12
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +71 -8
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +5144 -299
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +807 -47
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +1093 -118
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +19780 -2109
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +376 -31
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +577 -27
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +628 -138
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +623 -133
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/validation.d.ts +23 -23
- package/dist/src/mail/account-contract.d.ts +156 -3
- package/dist/src/mail/account-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1407 -9
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +1251 -6
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +417 -2
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +347 -2
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +628 -138
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/messenger/validation.d.ts +13 -13
- package/dist/src/viber/index.d.ts +592 -102
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +8506 -0
- package/dist/src/webchat/index.d.ts.map +1 -0
- package/dist/src/webchat/schema.d.ts +95 -0
- package/dist/src/webchat/schema.d.ts.map +1 -0
- package/dist/src/webchat/validation.d.ts +36 -0
- package/dist/src/webchat/validation.d.ts.map +1 -0
- package/dist/src/workflow-rule/index.d.ts +7295 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -0
- package/dist/src/workflow-rule/schema.d.ts +27 -0
- package/dist/src/workflow-rule/schema.d.ts.map +1 -0
- package/dist/src/wrap-up-form/index.d.ts +1000 -6
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +207 -2
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +29 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -2245,8 +2245,7 @@ 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
|
-
|
2249
|
-
callTo: z.ZodNullable<z.ZodString>;
|
2248
|
+
type: z.ZodString;
|
2250
2249
|
tags: z.ZodArray<z.ZodObject<{
|
2251
2250
|
id: z.ZodString;
|
2252
2251
|
createdAt: z.ZodDate;
|
@@ -2266,12 +2265,171 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2266
2265
|
updatedAt: Date;
|
2267
2266
|
deletedAt: Date | null;
|
2268
2267
|
}>, "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">>>;
|
2269
2404
|
}, "strip", z.ZodTypeAny, {
|
2405
|
+
type: string;
|
2270
2406
|
id: string;
|
2271
2407
|
disposition: string | null;
|
2272
2408
|
createdAt: Date;
|
2273
2409
|
updatedAt: Date;
|
2274
2410
|
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
|
+
}[];
|
2275
2433
|
tags: {
|
2276
2434
|
id: string;
|
2277
2435
|
name: string;
|
@@ -2282,12 +2440,47 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2282
2440
|
callFrom: string | null;
|
2283
2441
|
callTo: string | null;
|
2284
2442
|
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;
|
2285
2455
|
}, {
|
2456
|
+
type: string;
|
2286
2457
|
id: string;
|
2287
2458
|
disposition: string | null;
|
2288
2459
|
createdAt: Date;
|
2289
2460
|
updatedAt: Date;
|
2290
2461
|
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
|
+
}[];
|
2291
2484
|
tags: {
|
2292
2485
|
id: string;
|
2293
2486
|
name: string;
|
@@ -2298,6 +2491,18 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2298
2491
|
callFrom: string | null;
|
2299
2492
|
callTo: string | null;
|
2300
2493
|
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;
|
2301
2506
|
}>>;
|
2302
2507
|
}, "strip", z.ZodTypeAny, {
|
2303
2508
|
id: string;
|
@@ -2316,11 +2521,34 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2316
2521
|
handledTime: number | null;
|
2317
2522
|
firstResponseTime: number | null;
|
2318
2523
|
wrapUpForm: {
|
2524
|
+
type: string;
|
2319
2525
|
id: string;
|
2320
2526
|
disposition: string | null;
|
2321
2527
|
createdAt: Date;
|
2322
2528
|
updatedAt: Date;
|
2323
2529
|
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
|
+
}[];
|
2324
2552
|
tags: {
|
2325
2553
|
id: string;
|
2326
2554
|
name: string;
|
@@ -2331,6 +2559,18 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2331
2559
|
callFrom: string | null;
|
2332
2560
|
callTo: string | null;
|
2333
2561
|
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;
|
2334
2574
|
} | null;
|
2335
2575
|
}, {
|
2336
2576
|
id: string;
|
@@ -2349,11 +2589,34 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2349
2589
|
handledTime: number | null;
|
2350
2590
|
firstResponseTime: number | null;
|
2351
2591
|
wrapUpForm: {
|
2592
|
+
type: string;
|
2352
2593
|
id: string;
|
2353
2594
|
disposition: string | null;
|
2354
2595
|
createdAt: Date;
|
2355
2596
|
updatedAt: Date;
|
2356
2597
|
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
|
+
}[];
|
2357
2620
|
tags: {
|
2358
2621
|
id: string;
|
2359
2622
|
name: string;
|
@@ -2364,6 +2627,18 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2364
2627
|
callFrom: string | null;
|
2365
2628
|
callTo: string | null;
|
2366
2629
|
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;
|
2367
2642
|
} | null;
|
2368
2643
|
}>;
|
2369
2644
|
}, "strip", z.ZodTypeAny, {
|
@@ -2485,11 +2760,34 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2485
2760
|
handledTime: number | null;
|
2486
2761
|
firstResponseTime: number | null;
|
2487
2762
|
wrapUpForm: {
|
2763
|
+
type: string;
|
2488
2764
|
id: string;
|
2489
2765
|
disposition: string | null;
|
2490
2766
|
createdAt: Date;
|
2491
2767
|
updatedAt: Date;
|
2492
2768
|
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
|
+
}[];
|
2493
2791
|
tags: {
|
2494
2792
|
id: string;
|
2495
2793
|
name: string;
|
@@ -2500,6 +2798,18 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2500
2798
|
callFrom: string | null;
|
2501
2799
|
callTo: string | null;
|
2502
2800
|
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;
|
2503
2813
|
} | null;
|
2504
2814
|
};
|
2505
2815
|
assigneeId: string | null;
|
@@ -2929,11 +3239,34 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2929
3239
|
handledTime: number | null;
|
2930
3240
|
firstResponseTime: number | null;
|
2931
3241
|
wrapUpForm: {
|
3242
|
+
type: string;
|
2932
3243
|
id: string;
|
2933
3244
|
disposition: string | null;
|
2934
3245
|
createdAt: Date;
|
2935
3246
|
updatedAt: Date;
|
2936
3247
|
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
|
+
}[];
|
2937
3270
|
tags: {
|
2938
3271
|
id: string;
|
2939
3272
|
name: string;
|
@@ -2944,6 +3277,18 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2944
3277
|
callFrom: string | null;
|
2945
3278
|
callTo: string | null;
|
2946
3279
|
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;
|
2947
3292
|
} | null;
|
2948
3293
|
};
|
2949
3294
|
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"}
|