@kl1/contracts 1.1.25 → 1.1.26
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 +935 -924
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +934 -924
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +4867 -22
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +773 -22
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +975 -5
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +3 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +3 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +164160 -131652
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +352 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +557 -4
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +487 -2
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +487 -2
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +30477 -6759
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +6424 -64
- package/dist/src/mail/message-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +19532 -2172
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/message-validation.schema.d.ts +7 -4
- package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/message.schema.d.ts +762 -40
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +6057 -350
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +5984 -308
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +487 -2
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/call-report.schema.d.ts +62 -62
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +1 -622
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +487 -2
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +487 -2
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +834 -4
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +1447 -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
@@ -2420,8 +2420,7 @@ export declare const instagramContract: {
|
|
2420
2420
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
2421
2421
|
note: z.ZodNullable<z.ZodString>;
|
2422
2422
|
disposition: z.ZodNullable<z.ZodString>;
|
2423
|
-
|
2424
|
-
callTo: z.ZodNullable<z.ZodString>;
|
2423
|
+
type: z.ZodString;
|
2425
2424
|
tags: z.ZodArray<z.ZodObject<{
|
2426
2425
|
id: z.ZodString;
|
2427
2426
|
createdAt: z.ZodDate;
|
@@ -2441,12 +2440,171 @@ export declare const instagramContract: {
|
|
2441
2440
|
updatedAt: Date;
|
2442
2441
|
deletedAt: Date | null;
|
2443
2442
|
}>, "many">;
|
2443
|
+
categories: z.ZodArray<z.ZodObject<{
|
2444
|
+
id: z.ZodString;
|
2445
|
+
createdAt: z.ZodDate;
|
2446
|
+
updatedAt: z.ZodDate;
|
2447
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2448
|
+
value: z.ZodString;
|
2449
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2450
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2451
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
2452
|
+
id: z.ZodString;
|
2453
|
+
value: z.ZodString;
|
2454
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2455
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2456
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
2457
|
+
id: z.ZodString;
|
2458
|
+
value: z.ZodString;
|
2459
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2460
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2461
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
2462
|
+
}, "strip", z.ZodTypeAny, {
|
2463
|
+
id: string;
|
2464
|
+
value: string;
|
2465
|
+
level: 2 | 1 | 3;
|
2466
|
+
parentId: string | null;
|
2467
|
+
childCategoryList: any[];
|
2468
|
+
}, {
|
2469
|
+
id: string;
|
2470
|
+
value: string;
|
2471
|
+
level: 2 | 1 | 3;
|
2472
|
+
parentId: string | null;
|
2473
|
+
childCategoryList: any[];
|
2474
|
+
}>, "many">;
|
2475
|
+
}, "strip", z.ZodTypeAny, {
|
2476
|
+
id: string;
|
2477
|
+
value: string;
|
2478
|
+
level: 2 | 1 | 3;
|
2479
|
+
parentId: string | null;
|
2480
|
+
childCategoryList: {
|
2481
|
+
id: string;
|
2482
|
+
value: string;
|
2483
|
+
level: 2 | 1 | 3;
|
2484
|
+
parentId: string | null;
|
2485
|
+
childCategoryList: any[];
|
2486
|
+
}[];
|
2487
|
+
}, {
|
2488
|
+
id: string;
|
2489
|
+
value: string;
|
2490
|
+
level: 2 | 1 | 3;
|
2491
|
+
parentId: string | null;
|
2492
|
+
childCategoryList: {
|
2493
|
+
id: string;
|
2494
|
+
value: string;
|
2495
|
+
level: 2 | 1 | 3;
|
2496
|
+
parentId: string | null;
|
2497
|
+
childCategoryList: any[];
|
2498
|
+
}[];
|
2499
|
+
}>, "many">;
|
2500
|
+
}, "strip", z.ZodTypeAny, {
|
2501
|
+
id: string;
|
2502
|
+
value: string;
|
2503
|
+
createdAt: Date;
|
2504
|
+
updatedAt: Date;
|
2505
|
+
deletedAt: Date | null;
|
2506
|
+
level: 2 | 1 | 3;
|
2507
|
+
parentId: string | null;
|
2508
|
+
childCategoryList: {
|
2509
|
+
id: string;
|
2510
|
+
value: string;
|
2511
|
+
level: 2 | 1 | 3;
|
2512
|
+
parentId: string | null;
|
2513
|
+
childCategoryList: {
|
2514
|
+
id: string;
|
2515
|
+
value: string;
|
2516
|
+
level: 2 | 1 | 3;
|
2517
|
+
parentId: string | null;
|
2518
|
+
childCategoryList: any[];
|
2519
|
+
}[];
|
2520
|
+
}[];
|
2521
|
+
}, {
|
2522
|
+
id: string;
|
2523
|
+
value: string;
|
2524
|
+
createdAt: Date;
|
2525
|
+
updatedAt: Date;
|
2526
|
+
deletedAt: Date | null;
|
2527
|
+
level: 2 | 1 | 3;
|
2528
|
+
parentId: string | null;
|
2529
|
+
childCategoryList: {
|
2530
|
+
id: string;
|
2531
|
+
value: string;
|
2532
|
+
level: 2 | 1 | 3;
|
2533
|
+
parentId: string | null;
|
2534
|
+
childCategoryList: {
|
2535
|
+
id: string;
|
2536
|
+
value: string;
|
2537
|
+
level: 2 | 1 | 3;
|
2538
|
+
parentId: string | null;
|
2539
|
+
childCategoryList: any[];
|
2540
|
+
}[];
|
2541
|
+
}[];
|
2542
|
+
}>, "many">;
|
2543
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
2544
|
+
callTo: z.ZodNullable<z.ZodString>;
|
2545
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2546
|
+
id: z.ZodString;
|
2547
|
+
createdAt: z.ZodDate;
|
2548
|
+
updatedAt: z.ZodDate;
|
2549
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2550
|
+
textValue: z.ZodNullable<z.ZodString>;
|
2551
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2552
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
2553
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
2554
|
+
entityId: z.ZodString;
|
2555
|
+
attributeId: z.ZodString;
|
2556
|
+
}, "strip", z.ZodTypeAny, {
|
2557
|
+
id: string;
|
2558
|
+
createdAt: Date;
|
2559
|
+
updatedAt: Date;
|
2560
|
+
deletedAt: Date | null;
|
2561
|
+
entityId: string;
|
2562
|
+
attributeId: string;
|
2563
|
+
textValue: string | null;
|
2564
|
+
booleanValue: boolean | null;
|
2565
|
+
numberValue: number | null;
|
2566
|
+
dateValue: Date | null;
|
2567
|
+
}, {
|
2568
|
+
id: string;
|
2569
|
+
createdAt: Date;
|
2570
|
+
updatedAt: Date;
|
2571
|
+
deletedAt: Date | null;
|
2572
|
+
entityId: string;
|
2573
|
+
attributeId: string;
|
2574
|
+
textValue: string | null;
|
2575
|
+
booleanValue: boolean | null;
|
2576
|
+
numberValue: number | null;
|
2577
|
+
dateValue: Date | null;
|
2578
|
+
}>, "many">>>;
|
2444
2579
|
}, "strip", z.ZodTypeAny, {
|
2580
|
+
type: string;
|
2445
2581
|
id: string;
|
2446
2582
|
disposition: string | null;
|
2447
2583
|
createdAt: Date;
|
2448
2584
|
updatedAt: Date;
|
2449
2585
|
deletedAt: Date | null;
|
2586
|
+
categories: {
|
2587
|
+
id: string;
|
2588
|
+
value: string;
|
2589
|
+
createdAt: Date;
|
2590
|
+
updatedAt: Date;
|
2591
|
+
deletedAt: Date | null;
|
2592
|
+
level: 2 | 1 | 3;
|
2593
|
+
parentId: string | null;
|
2594
|
+
childCategoryList: {
|
2595
|
+
id: string;
|
2596
|
+
value: string;
|
2597
|
+
level: 2 | 1 | 3;
|
2598
|
+
parentId: string | null;
|
2599
|
+
childCategoryList: {
|
2600
|
+
id: string;
|
2601
|
+
value: string;
|
2602
|
+
level: 2 | 1 | 3;
|
2603
|
+
parentId: string | null;
|
2604
|
+
childCategoryList: any[];
|
2605
|
+
}[];
|
2606
|
+
}[];
|
2607
|
+
}[];
|
2450
2608
|
tags: {
|
2451
2609
|
id: string;
|
2452
2610
|
name: string;
|
@@ -2457,12 +2615,47 @@ export declare const instagramContract: {
|
|
2457
2615
|
callFrom: string | null;
|
2458
2616
|
callTo: string | null;
|
2459
2617
|
note: string | null;
|
2618
|
+
customFields?: {
|
2619
|
+
id: string;
|
2620
|
+
createdAt: Date;
|
2621
|
+
updatedAt: Date;
|
2622
|
+
deletedAt: Date | null;
|
2623
|
+
entityId: string;
|
2624
|
+
attributeId: string;
|
2625
|
+
textValue: string | null;
|
2626
|
+
booleanValue: boolean | null;
|
2627
|
+
numberValue: number | null;
|
2628
|
+
dateValue: Date | null;
|
2629
|
+
}[] | null | undefined;
|
2460
2630
|
}, {
|
2631
|
+
type: string;
|
2461
2632
|
id: string;
|
2462
2633
|
disposition: string | null;
|
2463
2634
|
createdAt: Date;
|
2464
2635
|
updatedAt: Date;
|
2465
2636
|
deletedAt: Date | null;
|
2637
|
+
categories: {
|
2638
|
+
id: string;
|
2639
|
+
value: string;
|
2640
|
+
createdAt: Date;
|
2641
|
+
updatedAt: Date;
|
2642
|
+
deletedAt: Date | null;
|
2643
|
+
level: 2 | 1 | 3;
|
2644
|
+
parentId: string | null;
|
2645
|
+
childCategoryList: {
|
2646
|
+
id: string;
|
2647
|
+
value: string;
|
2648
|
+
level: 2 | 1 | 3;
|
2649
|
+
parentId: string | null;
|
2650
|
+
childCategoryList: {
|
2651
|
+
id: string;
|
2652
|
+
value: string;
|
2653
|
+
level: 2 | 1 | 3;
|
2654
|
+
parentId: string | null;
|
2655
|
+
childCategoryList: any[];
|
2656
|
+
}[];
|
2657
|
+
}[];
|
2658
|
+
}[];
|
2466
2659
|
tags: {
|
2467
2660
|
id: string;
|
2468
2661
|
name: string;
|
@@ -2473,6 +2666,18 @@ export declare const instagramContract: {
|
|
2473
2666
|
callFrom: string | null;
|
2474
2667
|
callTo: string | null;
|
2475
2668
|
note: string | null;
|
2669
|
+
customFields?: {
|
2670
|
+
id: string;
|
2671
|
+
createdAt: Date;
|
2672
|
+
updatedAt: Date;
|
2673
|
+
deletedAt: Date | null;
|
2674
|
+
entityId: string;
|
2675
|
+
attributeId: string;
|
2676
|
+
textValue: string | null;
|
2677
|
+
booleanValue: boolean | null;
|
2678
|
+
numberValue: number | null;
|
2679
|
+
dateValue: Date | null;
|
2680
|
+
}[] | null | undefined;
|
2476
2681
|
}>>;
|
2477
2682
|
}, "strip", z.ZodTypeAny, {
|
2478
2683
|
id: string;
|
@@ -2491,11 +2696,34 @@ export declare const instagramContract: {
|
|
2491
2696
|
handledTime: number | null;
|
2492
2697
|
firstResponseTime: number | null;
|
2493
2698
|
wrapUpForm: {
|
2699
|
+
type: string;
|
2494
2700
|
id: string;
|
2495
2701
|
disposition: string | null;
|
2496
2702
|
createdAt: Date;
|
2497
2703
|
updatedAt: Date;
|
2498
2704
|
deletedAt: Date | null;
|
2705
|
+
categories: {
|
2706
|
+
id: string;
|
2707
|
+
value: string;
|
2708
|
+
createdAt: Date;
|
2709
|
+
updatedAt: Date;
|
2710
|
+
deletedAt: Date | null;
|
2711
|
+
level: 2 | 1 | 3;
|
2712
|
+
parentId: string | null;
|
2713
|
+
childCategoryList: {
|
2714
|
+
id: string;
|
2715
|
+
value: string;
|
2716
|
+
level: 2 | 1 | 3;
|
2717
|
+
parentId: string | null;
|
2718
|
+
childCategoryList: {
|
2719
|
+
id: string;
|
2720
|
+
value: string;
|
2721
|
+
level: 2 | 1 | 3;
|
2722
|
+
parentId: string | null;
|
2723
|
+
childCategoryList: any[];
|
2724
|
+
}[];
|
2725
|
+
}[];
|
2726
|
+
}[];
|
2499
2727
|
tags: {
|
2500
2728
|
id: string;
|
2501
2729
|
name: string;
|
@@ -2506,6 +2734,18 @@ export declare const instagramContract: {
|
|
2506
2734
|
callFrom: string | null;
|
2507
2735
|
callTo: string | null;
|
2508
2736
|
note: string | null;
|
2737
|
+
customFields?: {
|
2738
|
+
id: string;
|
2739
|
+
createdAt: Date;
|
2740
|
+
updatedAt: Date;
|
2741
|
+
deletedAt: Date | null;
|
2742
|
+
entityId: string;
|
2743
|
+
attributeId: string;
|
2744
|
+
textValue: string | null;
|
2745
|
+
booleanValue: boolean | null;
|
2746
|
+
numberValue: number | null;
|
2747
|
+
dateValue: Date | null;
|
2748
|
+
}[] | null | undefined;
|
2509
2749
|
} | null;
|
2510
2750
|
}, {
|
2511
2751
|
id: string;
|
@@ -2524,11 +2764,34 @@ export declare const instagramContract: {
|
|
2524
2764
|
handledTime: number | null;
|
2525
2765
|
firstResponseTime: number | null;
|
2526
2766
|
wrapUpForm: {
|
2767
|
+
type: string;
|
2527
2768
|
id: string;
|
2528
2769
|
disposition: string | null;
|
2529
2770
|
createdAt: Date;
|
2530
2771
|
updatedAt: Date;
|
2531
2772
|
deletedAt: Date | null;
|
2773
|
+
categories: {
|
2774
|
+
id: string;
|
2775
|
+
value: string;
|
2776
|
+
createdAt: Date;
|
2777
|
+
updatedAt: Date;
|
2778
|
+
deletedAt: Date | null;
|
2779
|
+
level: 2 | 1 | 3;
|
2780
|
+
parentId: string | null;
|
2781
|
+
childCategoryList: {
|
2782
|
+
id: string;
|
2783
|
+
value: string;
|
2784
|
+
level: 2 | 1 | 3;
|
2785
|
+
parentId: string | null;
|
2786
|
+
childCategoryList: {
|
2787
|
+
id: string;
|
2788
|
+
value: string;
|
2789
|
+
level: 2 | 1 | 3;
|
2790
|
+
parentId: string | null;
|
2791
|
+
childCategoryList: any[];
|
2792
|
+
}[];
|
2793
|
+
}[];
|
2794
|
+
}[];
|
2532
2795
|
tags: {
|
2533
2796
|
id: string;
|
2534
2797
|
name: string;
|
@@ -2539,6 +2802,18 @@ export declare const instagramContract: {
|
|
2539
2802
|
callFrom: string | null;
|
2540
2803
|
callTo: string | null;
|
2541
2804
|
note: string | null;
|
2805
|
+
customFields?: {
|
2806
|
+
id: string;
|
2807
|
+
createdAt: Date;
|
2808
|
+
updatedAt: Date;
|
2809
|
+
deletedAt: Date | null;
|
2810
|
+
entityId: string;
|
2811
|
+
attributeId: string;
|
2812
|
+
textValue: string | null;
|
2813
|
+
booleanValue: boolean | null;
|
2814
|
+
numberValue: number | null;
|
2815
|
+
dateValue: Date | null;
|
2816
|
+
}[] | null | undefined;
|
2542
2817
|
} | null;
|
2543
2818
|
}>;
|
2544
2819
|
workflowRule: z.ZodObject<{
|
@@ -2863,11 +3138,34 @@ export declare const instagramContract: {
|
|
2863
3138
|
handledTime: number | null;
|
2864
3139
|
firstResponseTime: number | null;
|
2865
3140
|
wrapUpForm: {
|
3141
|
+
type: string;
|
2866
3142
|
id: string;
|
2867
3143
|
disposition: string | null;
|
2868
3144
|
createdAt: Date;
|
2869
3145
|
updatedAt: Date;
|
2870
3146
|
deletedAt: Date | null;
|
3147
|
+
categories: {
|
3148
|
+
id: string;
|
3149
|
+
value: string;
|
3150
|
+
createdAt: Date;
|
3151
|
+
updatedAt: Date;
|
3152
|
+
deletedAt: Date | null;
|
3153
|
+
level: 2 | 1 | 3;
|
3154
|
+
parentId: string | null;
|
3155
|
+
childCategoryList: {
|
3156
|
+
id: string;
|
3157
|
+
value: string;
|
3158
|
+
level: 2 | 1 | 3;
|
3159
|
+
parentId: string | null;
|
3160
|
+
childCategoryList: {
|
3161
|
+
id: string;
|
3162
|
+
value: string;
|
3163
|
+
level: 2 | 1 | 3;
|
3164
|
+
parentId: string | null;
|
3165
|
+
childCategoryList: any[];
|
3166
|
+
}[];
|
3167
|
+
}[];
|
3168
|
+
}[];
|
2871
3169
|
tags: {
|
2872
3170
|
id: string;
|
2873
3171
|
name: string;
|
@@ -2878,6 +3176,18 @@ export declare const instagramContract: {
|
|
2878
3176
|
callFrom: string | null;
|
2879
3177
|
callTo: string | null;
|
2880
3178
|
note: string | null;
|
3179
|
+
customFields?: {
|
3180
|
+
id: string;
|
3181
|
+
createdAt: Date;
|
3182
|
+
updatedAt: Date;
|
3183
|
+
deletedAt: Date | null;
|
3184
|
+
entityId: string;
|
3185
|
+
attributeId: string;
|
3186
|
+
textValue: string | null;
|
3187
|
+
booleanValue: boolean | null;
|
3188
|
+
numberValue: number | null;
|
3189
|
+
dateValue: Date | null;
|
3190
|
+
}[] | null | undefined;
|
2881
3191
|
} | null;
|
2882
3192
|
};
|
2883
3193
|
workflowRule: {
|
@@ -3186,11 +3496,34 @@ export declare const instagramContract: {
|
|
3186
3496
|
handledTime: number | null;
|
3187
3497
|
firstResponseTime: number | null;
|
3188
3498
|
wrapUpForm: {
|
3499
|
+
type: string;
|
3189
3500
|
id: string;
|
3190
3501
|
disposition: string | null;
|
3191
3502
|
createdAt: Date;
|
3192
3503
|
updatedAt: Date;
|
3193
3504
|
deletedAt: Date | null;
|
3505
|
+
categories: {
|
3506
|
+
id: string;
|
3507
|
+
value: string;
|
3508
|
+
createdAt: Date;
|
3509
|
+
updatedAt: Date;
|
3510
|
+
deletedAt: Date | null;
|
3511
|
+
level: 2 | 1 | 3;
|
3512
|
+
parentId: string | null;
|
3513
|
+
childCategoryList: {
|
3514
|
+
id: string;
|
3515
|
+
value: string;
|
3516
|
+
level: 2 | 1 | 3;
|
3517
|
+
parentId: string | null;
|
3518
|
+
childCategoryList: {
|
3519
|
+
id: string;
|
3520
|
+
value: string;
|
3521
|
+
level: 2 | 1 | 3;
|
3522
|
+
parentId: string | null;
|
3523
|
+
childCategoryList: any[];
|
3524
|
+
}[];
|
3525
|
+
}[];
|
3526
|
+
}[];
|
3194
3527
|
tags: {
|
3195
3528
|
id: string;
|
3196
3529
|
name: string;
|
@@ -3201,6 +3534,18 @@ export declare const instagramContract: {
|
|
3201
3534
|
callFrom: string | null;
|
3202
3535
|
callTo: string | null;
|
3203
3536
|
note: string | null;
|
3537
|
+
customFields?: {
|
3538
|
+
id: string;
|
3539
|
+
createdAt: Date;
|
3540
|
+
updatedAt: Date;
|
3541
|
+
deletedAt: Date | null;
|
3542
|
+
entityId: string;
|
3543
|
+
attributeId: string;
|
3544
|
+
textValue: string | null;
|
3545
|
+
booleanValue: boolean | null;
|
3546
|
+
numberValue: number | null;
|
3547
|
+
dateValue: Date | null;
|
3548
|
+
}[] | null | undefined;
|
3204
3549
|
} | null;
|
3205
3550
|
};
|
3206
3551
|
workflowRule: {
|
@@ -5280,11 +5625,34 @@ export declare const instagramContract: {
|
|
5280
5625
|
handledTime: number | null;
|
5281
5626
|
firstResponseTime: number | null;
|
5282
5627
|
wrapUpForm: {
|
5628
|
+
type: string;
|
5283
5629
|
id: string;
|
5284
5630
|
disposition: string | null;
|
5285
5631
|
createdAt: Date;
|
5286
5632
|
updatedAt: Date;
|
5287
5633
|
deletedAt: Date | null;
|
5634
|
+
categories: {
|
5635
|
+
id: string;
|
5636
|
+
value: string;
|
5637
|
+
createdAt: Date;
|
5638
|
+
updatedAt: Date;
|
5639
|
+
deletedAt: Date | null;
|
5640
|
+
level: 2 | 1 | 3;
|
5641
|
+
parentId: string | null;
|
5642
|
+
childCategoryList: {
|
5643
|
+
id: string;
|
5644
|
+
value: string;
|
5645
|
+
level: 2 | 1 | 3;
|
5646
|
+
parentId: string | null;
|
5647
|
+
childCategoryList: {
|
5648
|
+
id: string;
|
5649
|
+
value: string;
|
5650
|
+
level: 2 | 1 | 3;
|
5651
|
+
parentId: string | null;
|
5652
|
+
childCategoryList: any[];
|
5653
|
+
}[];
|
5654
|
+
}[];
|
5655
|
+
}[];
|
5288
5656
|
tags: {
|
5289
5657
|
id: string;
|
5290
5658
|
name: string;
|
@@ -5295,6 +5663,18 @@ export declare const instagramContract: {
|
|
5295
5663
|
callFrom: string | null;
|
5296
5664
|
callTo: string | null;
|
5297
5665
|
note: string | null;
|
5666
|
+
customFields?: {
|
5667
|
+
id: string;
|
5668
|
+
createdAt: Date;
|
5669
|
+
updatedAt: Date;
|
5670
|
+
deletedAt: Date | null;
|
5671
|
+
entityId: string;
|
5672
|
+
attributeId: string;
|
5673
|
+
textValue: string | null;
|
5674
|
+
booleanValue: boolean | null;
|
5675
|
+
numberValue: number | null;
|
5676
|
+
dateValue: Date | null;
|
5677
|
+
}[] | null | undefined;
|
5298
5678
|
} | null;
|
5299
5679
|
};
|
5300
5680
|
workflowRule: {
|
@@ -5938,11 +6318,34 @@ export declare const instagramContract: {
|
|
5938
6318
|
handledTime: number | null;
|
5939
6319
|
firstResponseTime: number | null;
|
5940
6320
|
wrapUpForm: {
|
6321
|
+
type: string;
|
5941
6322
|
id: string;
|
5942
6323
|
disposition: string | null;
|
5943
6324
|
createdAt: Date;
|
5944
6325
|
updatedAt: Date;
|
5945
6326
|
deletedAt: Date | null;
|
6327
|
+
categories: {
|
6328
|
+
id: string;
|
6329
|
+
value: string;
|
6330
|
+
createdAt: Date;
|
6331
|
+
updatedAt: Date;
|
6332
|
+
deletedAt: Date | null;
|
6333
|
+
level: 2 | 1 | 3;
|
6334
|
+
parentId: string | null;
|
6335
|
+
childCategoryList: {
|
6336
|
+
id: string;
|
6337
|
+
value: string;
|
6338
|
+
level: 2 | 1 | 3;
|
6339
|
+
parentId: string | null;
|
6340
|
+
childCategoryList: {
|
6341
|
+
id: string;
|
6342
|
+
value: string;
|
6343
|
+
level: 2 | 1 | 3;
|
6344
|
+
parentId: string | null;
|
6345
|
+
childCategoryList: any[];
|
6346
|
+
}[];
|
6347
|
+
}[];
|
6348
|
+
}[];
|
5946
6349
|
tags: {
|
5947
6350
|
id: string;
|
5948
6351
|
name: string;
|
@@ -5953,6 +6356,18 @@ export declare const instagramContract: {
|
|
5953
6356
|
callFrom: string | null;
|
5954
6357
|
callTo: string | null;
|
5955
6358
|
note: string | null;
|
6359
|
+
customFields?: {
|
6360
|
+
id: string;
|
6361
|
+
createdAt: Date;
|
6362
|
+
updatedAt: Date;
|
6363
|
+
deletedAt: Date | null;
|
6364
|
+
entityId: string;
|
6365
|
+
attributeId: string;
|
6366
|
+
textValue: string | null;
|
6367
|
+
booleanValue: boolean | null;
|
6368
|
+
numberValue: number | null;
|
6369
|
+
dateValue: Date | null;
|
6370
|
+
}[] | null | undefined;
|
5956
6371
|
} | null;
|
5957
6372
|
};
|
5958
6373
|
workflowRule: {
|
@@ -6598,11 +7013,34 @@ export declare const instagramContract: {
|
|
6598
7013
|
handledTime: number | null;
|
6599
7014
|
firstResponseTime: number | null;
|
6600
7015
|
wrapUpForm: {
|
7016
|
+
type: string;
|
6601
7017
|
id: string;
|
6602
7018
|
disposition: string | null;
|
6603
7019
|
createdAt: Date;
|
6604
7020
|
updatedAt: Date;
|
6605
7021
|
deletedAt: Date | null;
|
7022
|
+
categories: {
|
7023
|
+
id: string;
|
7024
|
+
value: string;
|
7025
|
+
createdAt: Date;
|
7026
|
+
updatedAt: Date;
|
7027
|
+
deletedAt: Date | null;
|
7028
|
+
level: 2 | 1 | 3;
|
7029
|
+
parentId: string | null;
|
7030
|
+
childCategoryList: {
|
7031
|
+
id: string;
|
7032
|
+
value: string;
|
7033
|
+
level: 2 | 1 | 3;
|
7034
|
+
parentId: string | null;
|
7035
|
+
childCategoryList: {
|
7036
|
+
id: string;
|
7037
|
+
value: string;
|
7038
|
+
level: 2 | 1 | 3;
|
7039
|
+
parentId: string | null;
|
7040
|
+
childCategoryList: any[];
|
7041
|
+
}[];
|
7042
|
+
}[];
|
7043
|
+
}[];
|
6606
7044
|
tags: {
|
6607
7045
|
id: string;
|
6608
7046
|
name: string;
|
@@ -6613,6 +7051,18 @@ export declare const instagramContract: {
|
|
6613
7051
|
callFrom: string | null;
|
6614
7052
|
callTo: string | null;
|
6615
7053
|
note: string | null;
|
7054
|
+
customFields?: {
|
7055
|
+
id: string;
|
7056
|
+
createdAt: Date;
|
7057
|
+
updatedAt: Date;
|
7058
|
+
deletedAt: Date | null;
|
7059
|
+
entityId: string;
|
7060
|
+
attributeId: string;
|
7061
|
+
textValue: string | null;
|
7062
|
+
booleanValue: boolean | null;
|
7063
|
+
numberValue: number | null;
|
7064
|
+
dateValue: Date | null;
|
7065
|
+
}[] | null | undefined;
|
6616
7066
|
} | null;
|
6617
7067
|
};
|
6618
7068
|
workflowRule: {
|
@@ -7259,11 +7709,34 @@ export declare const instagramContract: {
|
|
7259
7709
|
handledTime: number | null;
|
7260
7710
|
firstResponseTime: number | null;
|
7261
7711
|
wrapUpForm: {
|
7712
|
+
type: string;
|
7262
7713
|
id: string;
|
7263
7714
|
disposition: string | null;
|
7264
7715
|
createdAt: Date;
|
7265
7716
|
updatedAt: Date;
|
7266
7717
|
deletedAt: Date | null;
|
7718
|
+
categories: {
|
7719
|
+
id: string;
|
7720
|
+
value: string;
|
7721
|
+
createdAt: Date;
|
7722
|
+
updatedAt: Date;
|
7723
|
+
deletedAt: Date | null;
|
7724
|
+
level: 2 | 1 | 3;
|
7725
|
+
parentId: string | null;
|
7726
|
+
childCategoryList: {
|
7727
|
+
id: string;
|
7728
|
+
value: string;
|
7729
|
+
level: 2 | 1 | 3;
|
7730
|
+
parentId: string | null;
|
7731
|
+
childCategoryList: {
|
7732
|
+
id: string;
|
7733
|
+
value: string;
|
7734
|
+
level: 2 | 1 | 3;
|
7735
|
+
parentId: string | null;
|
7736
|
+
childCategoryList: any[];
|
7737
|
+
}[];
|
7738
|
+
}[];
|
7739
|
+
}[];
|
7267
7740
|
tags: {
|
7268
7741
|
id: string;
|
7269
7742
|
name: string;
|
@@ -7274,6 +7747,18 @@ export declare const instagramContract: {
|
|
7274
7747
|
callFrom: string | null;
|
7275
7748
|
callTo: string | null;
|
7276
7749
|
note: string | null;
|
7750
|
+
customFields?: {
|
7751
|
+
id: string;
|
7752
|
+
createdAt: Date;
|
7753
|
+
updatedAt: Date;
|
7754
|
+
deletedAt: Date | null;
|
7755
|
+
entityId: string;
|
7756
|
+
attributeId: string;
|
7757
|
+
textValue: string | null;
|
7758
|
+
booleanValue: boolean | null;
|
7759
|
+
numberValue: number | null;
|
7760
|
+
dateValue: Date | null;
|
7761
|
+
}[] | null | undefined;
|
7277
7762
|
} | null;
|
7278
7763
|
};
|
7279
7764
|
workflowRule: {
|