@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
@@ -2420,7 +2420,8 @@ 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
|
-
|
2423
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
2424
|
+
callTo: z.ZodNullable<z.ZodString>;
|
2424
2425
|
tags: z.ZodArray<z.ZodObject<{
|
2425
2426
|
id: z.ZodString;
|
2426
2427
|
createdAt: z.ZodDate;
|
@@ -2440,171 +2441,12 @@ export declare const instagramContract: {
|
|
2440
2441
|
updatedAt: Date;
|
2441
2442
|
deletedAt: Date | null;
|
2442
2443
|
}>, "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">>>;
|
2579
2444
|
}, "strip", z.ZodTypeAny, {
|
2580
|
-
type: string;
|
2581
2445
|
id: string;
|
2582
2446
|
disposition: string | null;
|
2583
2447
|
createdAt: Date;
|
2584
2448
|
updatedAt: Date;
|
2585
2449
|
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
|
-
}[];
|
2608
2450
|
tags: {
|
2609
2451
|
id: string;
|
2610
2452
|
name: string;
|
@@ -2615,47 +2457,12 @@ export declare const instagramContract: {
|
|
2615
2457
|
callFrom: string | null;
|
2616
2458
|
callTo: string | null;
|
2617
2459
|
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;
|
2630
2460
|
}, {
|
2631
|
-
type: string;
|
2632
2461
|
id: string;
|
2633
2462
|
disposition: string | null;
|
2634
2463
|
createdAt: Date;
|
2635
2464
|
updatedAt: Date;
|
2636
2465
|
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
|
-
}[];
|
2659
2466
|
tags: {
|
2660
2467
|
id: string;
|
2661
2468
|
name: string;
|
@@ -2666,18 +2473,6 @@ export declare const instagramContract: {
|
|
2666
2473
|
callFrom: string | null;
|
2667
2474
|
callTo: string | null;
|
2668
2475
|
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;
|
2681
2476
|
}>>;
|
2682
2477
|
}, "strip", z.ZodTypeAny, {
|
2683
2478
|
id: string;
|
@@ -2696,34 +2491,11 @@ export declare const instagramContract: {
|
|
2696
2491
|
handledTime: number | null;
|
2697
2492
|
firstResponseTime: number | null;
|
2698
2493
|
wrapUpForm: {
|
2699
|
-
type: string;
|
2700
2494
|
id: string;
|
2701
2495
|
disposition: string | null;
|
2702
2496
|
createdAt: Date;
|
2703
2497
|
updatedAt: Date;
|
2704
2498
|
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
|
-
}[];
|
2727
2499
|
tags: {
|
2728
2500
|
id: string;
|
2729
2501
|
name: string;
|
@@ -2734,18 +2506,6 @@ export declare const instagramContract: {
|
|
2734
2506
|
callFrom: string | null;
|
2735
2507
|
callTo: string | null;
|
2736
2508
|
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;
|
2749
2509
|
} | null;
|
2750
2510
|
}, {
|
2751
2511
|
id: string;
|
@@ -2764,34 +2524,11 @@ export declare const instagramContract: {
|
|
2764
2524
|
handledTime: number | null;
|
2765
2525
|
firstResponseTime: number | null;
|
2766
2526
|
wrapUpForm: {
|
2767
|
-
type: string;
|
2768
2527
|
id: string;
|
2769
2528
|
disposition: string | null;
|
2770
2529
|
createdAt: Date;
|
2771
2530
|
updatedAt: Date;
|
2772
2531
|
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
|
-
}[];
|
2795
2532
|
tags: {
|
2796
2533
|
id: string;
|
2797
2534
|
name: string;
|
@@ -2802,18 +2539,6 @@ export declare const instagramContract: {
|
|
2802
2539
|
callFrom: string | null;
|
2803
2540
|
callTo: string | null;
|
2804
2541
|
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;
|
2817
2542
|
} | null;
|
2818
2543
|
}>;
|
2819
2544
|
}, "strip", z.ZodTypeAny, {
|
@@ -3113,34 +2838,11 @@ export declare const instagramContract: {
|
|
3113
2838
|
handledTime: number | null;
|
3114
2839
|
firstResponseTime: number | null;
|
3115
2840
|
wrapUpForm: {
|
3116
|
-
type: string;
|
3117
2841
|
id: string;
|
3118
2842
|
disposition: string | null;
|
3119
2843
|
createdAt: Date;
|
3120
2844
|
updatedAt: Date;
|
3121
2845
|
deletedAt: Date | null;
|
3122
|
-
categories: {
|
3123
|
-
id: string;
|
3124
|
-
value: string;
|
3125
|
-
createdAt: Date;
|
3126
|
-
updatedAt: Date;
|
3127
|
-
deletedAt: Date | null;
|
3128
|
-
level: 2 | 1 | 3;
|
3129
|
-
parentId: string | null;
|
3130
|
-
childCategoryList: {
|
3131
|
-
id: string;
|
3132
|
-
value: string;
|
3133
|
-
level: 2 | 1 | 3;
|
3134
|
-
parentId: string | null;
|
3135
|
-
childCategoryList: {
|
3136
|
-
id: string;
|
3137
|
-
value: string;
|
3138
|
-
level: 2 | 1 | 3;
|
3139
|
-
parentId: string | null;
|
3140
|
-
childCategoryList: any[];
|
3141
|
-
}[];
|
3142
|
-
}[];
|
3143
|
-
}[];
|
3144
2846
|
tags: {
|
3145
2847
|
id: string;
|
3146
2848
|
name: string;
|
@@ -3151,18 +2853,6 @@ export declare const instagramContract: {
|
|
3151
2853
|
callFrom: string | null;
|
3152
2854
|
callTo: string | null;
|
3153
2855
|
note: string | null;
|
3154
|
-
customFields?: {
|
3155
|
-
id: string;
|
3156
|
-
createdAt: Date;
|
3157
|
-
updatedAt: Date;
|
3158
|
-
deletedAt: Date | null;
|
3159
|
-
entityId: string;
|
3160
|
-
attributeId: string;
|
3161
|
-
textValue: string | null;
|
3162
|
-
booleanValue: boolean | null;
|
3163
|
-
numberValue: number | null;
|
3164
|
-
dateValue: Date | null;
|
3165
|
-
}[] | null | undefined;
|
3166
2856
|
} | null;
|
3167
2857
|
};
|
3168
2858
|
}, {
|
@@ -3462,34 +3152,11 @@ export declare const instagramContract: {
|
|
3462
3152
|
handledTime: number | null;
|
3463
3153
|
firstResponseTime: number | null;
|
3464
3154
|
wrapUpForm: {
|
3465
|
-
type: string;
|
3466
3155
|
id: string;
|
3467
3156
|
disposition: string | null;
|
3468
3157
|
createdAt: Date;
|
3469
3158
|
updatedAt: Date;
|
3470
3159
|
deletedAt: Date | null;
|
3471
|
-
categories: {
|
3472
|
-
id: string;
|
3473
|
-
value: string;
|
3474
|
-
createdAt: Date;
|
3475
|
-
updatedAt: Date;
|
3476
|
-
deletedAt: Date | null;
|
3477
|
-
level: 2 | 1 | 3;
|
3478
|
-
parentId: string | null;
|
3479
|
-
childCategoryList: {
|
3480
|
-
id: string;
|
3481
|
-
value: string;
|
3482
|
-
level: 2 | 1 | 3;
|
3483
|
-
parentId: string | null;
|
3484
|
-
childCategoryList: {
|
3485
|
-
id: string;
|
3486
|
-
value: string;
|
3487
|
-
level: 2 | 1 | 3;
|
3488
|
-
parentId: string | null;
|
3489
|
-
childCategoryList: any[];
|
3490
|
-
}[];
|
3491
|
-
}[];
|
3492
|
-
}[];
|
3493
3160
|
tags: {
|
3494
3161
|
id: string;
|
3495
3162
|
name: string;
|
@@ -3500,18 +3167,6 @@ export declare const instagramContract: {
|
|
3500
3167
|
callFrom: string | null;
|
3501
3168
|
callTo: string | null;
|
3502
3169
|
note: string | null;
|
3503
|
-
customFields?: {
|
3504
|
-
id: string;
|
3505
|
-
createdAt: Date;
|
3506
|
-
updatedAt: Date;
|
3507
|
-
deletedAt: Date | null;
|
3508
|
-
entityId: string;
|
3509
|
-
attributeId: string;
|
3510
|
-
textValue: string | null;
|
3511
|
-
booleanValue: boolean | null;
|
3512
|
-
numberValue: number | null;
|
3513
|
-
dateValue: Date | null;
|
3514
|
-
}[] | null | undefined;
|
3515
3170
|
} | null;
|
3516
3171
|
};
|
3517
3172
|
}>;
|
@@ -5557,34 +5212,11 @@ export declare const instagramContract: {
|
|
5557
5212
|
handledTime: number | null;
|
5558
5213
|
firstResponseTime: number | null;
|
5559
5214
|
wrapUpForm: {
|
5560
|
-
type: string;
|
5561
5215
|
id: string;
|
5562
5216
|
disposition: string | null;
|
5563
5217
|
createdAt: Date;
|
5564
5218
|
updatedAt: Date;
|
5565
5219
|
deletedAt: Date | null;
|
5566
|
-
categories: {
|
5567
|
-
id: string;
|
5568
|
-
value: string;
|
5569
|
-
createdAt: Date;
|
5570
|
-
updatedAt: Date;
|
5571
|
-
deletedAt: Date | null;
|
5572
|
-
level: 2 | 1 | 3;
|
5573
|
-
parentId: string | null;
|
5574
|
-
childCategoryList: {
|
5575
|
-
id: string;
|
5576
|
-
value: string;
|
5577
|
-
level: 2 | 1 | 3;
|
5578
|
-
parentId: string | null;
|
5579
|
-
childCategoryList: {
|
5580
|
-
id: string;
|
5581
|
-
value: string;
|
5582
|
-
level: 2 | 1 | 3;
|
5583
|
-
parentId: string | null;
|
5584
|
-
childCategoryList: any[];
|
5585
|
-
}[];
|
5586
|
-
}[];
|
5587
|
-
}[];
|
5588
5220
|
tags: {
|
5589
5221
|
id: string;
|
5590
5222
|
name: string;
|
@@ -5595,18 +5227,6 @@ export declare const instagramContract: {
|
|
5595
5227
|
callFrom: string | null;
|
5596
5228
|
callTo: string | null;
|
5597
5229
|
note: string | null;
|
5598
|
-
customFields?: {
|
5599
|
-
id: string;
|
5600
|
-
createdAt: Date;
|
5601
|
-
updatedAt: Date;
|
5602
|
-
deletedAt: Date | null;
|
5603
|
-
entityId: string;
|
5604
|
-
attributeId: string;
|
5605
|
-
textValue: string | null;
|
5606
|
-
booleanValue: boolean | null;
|
5607
|
-
numberValue: number | null;
|
5608
|
-
dateValue: Date | null;
|
5609
|
-
}[] | null | undefined;
|
5610
5230
|
} | null;
|
5611
5231
|
};
|
5612
5232
|
};
|
@@ -6232,34 +5852,11 @@ export declare const instagramContract: {
|
|
6232
5852
|
handledTime: number | null;
|
6233
5853
|
firstResponseTime: number | null;
|
6234
5854
|
wrapUpForm: {
|
6235
|
-
type: string;
|
6236
5855
|
id: string;
|
6237
5856
|
disposition: string | null;
|
6238
5857
|
createdAt: Date;
|
6239
5858
|
updatedAt: Date;
|
6240
5859
|
deletedAt: Date | null;
|
6241
|
-
categories: {
|
6242
|
-
id: string;
|
6243
|
-
value: string;
|
6244
|
-
createdAt: Date;
|
6245
|
-
updatedAt: Date;
|
6246
|
-
deletedAt: Date | null;
|
6247
|
-
level: 2 | 1 | 3;
|
6248
|
-
parentId: string | null;
|
6249
|
-
childCategoryList: {
|
6250
|
-
id: string;
|
6251
|
-
value: string;
|
6252
|
-
level: 2 | 1 | 3;
|
6253
|
-
parentId: string | null;
|
6254
|
-
childCategoryList: {
|
6255
|
-
id: string;
|
6256
|
-
value: string;
|
6257
|
-
level: 2 | 1 | 3;
|
6258
|
-
parentId: string | null;
|
6259
|
-
childCategoryList: any[];
|
6260
|
-
}[];
|
6261
|
-
}[];
|
6262
|
-
}[];
|
6263
5860
|
tags: {
|
6264
5861
|
id: string;
|
6265
5862
|
name: string;
|
@@ -6270,18 +5867,6 @@ export declare const instagramContract: {
|
|
6270
5867
|
callFrom: string | null;
|
6271
5868
|
callTo: string | null;
|
6272
5869
|
note: string | null;
|
6273
|
-
customFields?: {
|
6274
|
-
id: string;
|
6275
|
-
createdAt: Date;
|
6276
|
-
updatedAt: Date;
|
6277
|
-
deletedAt: Date | null;
|
6278
|
-
entityId: string;
|
6279
|
-
attributeId: string;
|
6280
|
-
textValue: string | null;
|
6281
|
-
booleanValue: boolean | null;
|
6282
|
-
numberValue: number | null;
|
6283
|
-
dateValue: Date | null;
|
6284
|
-
}[] | null | undefined;
|
6285
5870
|
} | null;
|
6286
5871
|
};
|
6287
5872
|
};
|
@@ -6909,34 +6494,11 @@ export declare const instagramContract: {
|
|
6909
6494
|
handledTime: number | null;
|
6910
6495
|
firstResponseTime: number | null;
|
6911
6496
|
wrapUpForm: {
|
6912
|
-
type: string;
|
6913
6497
|
id: string;
|
6914
6498
|
disposition: string | null;
|
6915
6499
|
createdAt: Date;
|
6916
6500
|
updatedAt: Date;
|
6917
6501
|
deletedAt: Date | null;
|
6918
|
-
categories: {
|
6919
|
-
id: string;
|
6920
|
-
value: string;
|
6921
|
-
createdAt: Date;
|
6922
|
-
updatedAt: Date;
|
6923
|
-
deletedAt: Date | null;
|
6924
|
-
level: 2 | 1 | 3;
|
6925
|
-
parentId: string | null;
|
6926
|
-
childCategoryList: {
|
6927
|
-
id: string;
|
6928
|
-
value: string;
|
6929
|
-
level: 2 | 1 | 3;
|
6930
|
-
parentId: string | null;
|
6931
|
-
childCategoryList: {
|
6932
|
-
id: string;
|
6933
|
-
value: string;
|
6934
|
-
level: 2 | 1 | 3;
|
6935
|
-
parentId: string | null;
|
6936
|
-
childCategoryList: any[];
|
6937
|
-
}[];
|
6938
|
-
}[];
|
6939
|
-
}[];
|
6940
6502
|
tags: {
|
6941
6503
|
id: string;
|
6942
6504
|
name: string;
|
@@ -6947,18 +6509,6 @@ export declare const instagramContract: {
|
|
6947
6509
|
callFrom: string | null;
|
6948
6510
|
callTo: string | null;
|
6949
6511
|
note: string | null;
|
6950
|
-
customFields?: {
|
6951
|
-
id: string;
|
6952
|
-
createdAt: Date;
|
6953
|
-
updatedAt: Date;
|
6954
|
-
deletedAt: Date | null;
|
6955
|
-
entityId: string;
|
6956
|
-
attributeId: string;
|
6957
|
-
textValue: string | null;
|
6958
|
-
booleanValue: boolean | null;
|
6959
|
-
numberValue: number | null;
|
6960
|
-
dateValue: Date | null;
|
6961
|
-
}[] | null | undefined;
|
6962
6512
|
} | null;
|
6963
6513
|
};
|
6964
6514
|
};
|
@@ -7587,34 +7137,11 @@ export declare const instagramContract: {
|
|
7587
7137
|
handledTime: number | null;
|
7588
7138
|
firstResponseTime: number | null;
|
7589
7139
|
wrapUpForm: {
|
7590
|
-
type: string;
|
7591
7140
|
id: string;
|
7592
7141
|
disposition: string | null;
|
7593
7142
|
createdAt: Date;
|
7594
7143
|
updatedAt: Date;
|
7595
7144
|
deletedAt: Date | null;
|
7596
|
-
categories: {
|
7597
|
-
id: string;
|
7598
|
-
value: string;
|
7599
|
-
createdAt: Date;
|
7600
|
-
updatedAt: Date;
|
7601
|
-
deletedAt: Date | null;
|
7602
|
-
level: 2 | 1 | 3;
|
7603
|
-
parentId: string | null;
|
7604
|
-
childCategoryList: {
|
7605
|
-
id: string;
|
7606
|
-
value: string;
|
7607
|
-
level: 2 | 1 | 3;
|
7608
|
-
parentId: string | null;
|
7609
|
-
childCategoryList: {
|
7610
|
-
id: string;
|
7611
|
-
value: string;
|
7612
|
-
level: 2 | 1 | 3;
|
7613
|
-
parentId: string | null;
|
7614
|
-
childCategoryList: any[];
|
7615
|
-
}[];
|
7616
|
-
}[];
|
7617
|
-
}[];
|
7618
7145
|
tags: {
|
7619
7146
|
id: string;
|
7620
7147
|
name: string;
|
@@ -7625,18 +7152,6 @@ export declare const instagramContract: {
|
|
7625
7152
|
callFrom: string | null;
|
7626
7153
|
callTo: string | null;
|
7627
7154
|
note: string | null;
|
7628
|
-
customFields?: {
|
7629
|
-
id: string;
|
7630
|
-
createdAt: Date;
|
7631
|
-
updatedAt: Date;
|
7632
|
-
deletedAt: Date | null;
|
7633
|
-
entityId: string;
|
7634
|
-
attributeId: string;
|
7635
|
-
textValue: string | null;
|
7636
|
-
booleanValue: boolean | null;
|
7637
|
-
numberValue: number | null;
|
7638
|
-
dateValue: Date | null;
|
7639
|
-
}[] | null | undefined;
|
7640
7155
|
} | null;
|
7641
7156
|
};
|
7642
7157
|
};
|