@kl1/contracts 1.1.25-uat → 1.1.27-uat

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/dist/index.js +349 -185
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +348 -185
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/business-calendar/index.d.ts +414 -0
  6. package/dist/src/business-calendar/index.d.ts.map +1 -0
  7. package/dist/src/business-calendar/schema.d.ts +99 -0
  8. package/dist/src/business-calendar/schema.d.ts.map +1 -0
  9. package/dist/src/business-calendar/validation.d.ts +260 -0
  10. package/dist/src/business-calendar/validation.d.ts.map +1 -0
  11. package/dist/src/chat/index.d.ts +4867 -22
  12. package/dist/src/chat/index.d.ts.map +1 -1
  13. package/dist/src/chat/schema.d.ts +764 -4
  14. package/dist/src/chat/schema.d.ts.map +1 -1
  15. package/dist/src/chat/validation.d.ts +984 -14
  16. package/dist/src/chat/validation.d.ts.map +1 -1
  17. package/dist/src/contract.d.ts +9819 -44
  18. package/dist/src/contract.d.ts.map +1 -1
  19. package/dist/src/cx-log/index.d.ts +347 -2
  20. package/dist/src/cx-log/index.d.ts.map +1 -1
  21. package/dist/src/cx-log/schema.d.ts +554 -4
  22. package/dist/src/cx-log/schema.d.ts.map +1 -1
  23. package/dist/src/instagram/index.d.ts +487 -2
  24. package/dist/src/instagram/index.d.ts.map +1 -1
  25. package/dist/src/line/index.d.ts +487 -2
  26. package/dist/src/line/index.d.ts.map +1 -1
  27. package/dist/src/mail/mail-contract.d.ts +1251 -6
  28. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  29. package/dist/src/mail/room-contract.d.ts +1251 -6
  30. package/dist/src/mail/room-contract.d.ts.map +1 -1
  31. package/dist/src/mail/schemas/room-validation.schema.d.ts +417 -2
  32. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  33. package/dist/src/mail/schemas/room.schema.d.ts +347 -2
  34. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  35. package/dist/src/messenger/index.d.ts +487 -2
  36. package/dist/src/messenger/index.d.ts.map +1 -1
  37. package/dist/src/viber/index.d.ts +487 -2
  38. package/dist/src/viber/index.d.ts.map +1 -1
  39. package/dist/src/webchat/index.d.ts +487 -2
  40. package/dist/src/webchat/index.d.ts.map +1 -1
  41. package/dist/src/wrap-up-form/index.d.ts +997 -6
  42. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  43. package/dist/src/wrap-up-form/schema.d.ts +207 -2
  44. package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
  45. package/dist/src/wrap-up-form/validation.d.ts +26 -0
  46. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  47. package/package.json +1 -1
@@ -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
- callFrom: z.ZodNullable<z.ZodString>;
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.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
+ }[] | 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
+ }[] | 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
+ }[] | 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
+ }[] | undefined;
2542
2817
  } | null;
2543
2818
  }>;
2544
2819
  }, "strip", z.ZodTypeAny, {
@@ -2838,11 +3113,34 @@ export declare const instagramContract: {
2838
3113
  handledTime: number | null;
2839
3114
  firstResponseTime: number | null;
2840
3115
  wrapUpForm: {
3116
+ type: string;
2841
3117
  id: string;
2842
3118
  disposition: string | null;
2843
3119
  createdAt: Date;
2844
3120
  updatedAt: Date;
2845
3121
  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
+ }[];
2846
3144
  tags: {
2847
3145
  id: string;
2848
3146
  name: string;
@@ -2853,6 +3151,18 @@ export declare const instagramContract: {
2853
3151
  callFrom: string | null;
2854
3152
  callTo: string | null;
2855
3153
  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
+ }[] | undefined;
2856
3166
  } | null;
2857
3167
  };
2858
3168
  }, {
@@ -3152,11 +3462,34 @@ export declare const instagramContract: {
3152
3462
  handledTime: number | null;
3153
3463
  firstResponseTime: number | null;
3154
3464
  wrapUpForm: {
3465
+ type: string;
3155
3466
  id: string;
3156
3467
  disposition: string | null;
3157
3468
  createdAt: Date;
3158
3469
  updatedAt: Date;
3159
3470
  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
+ }[];
3160
3493
  tags: {
3161
3494
  id: string;
3162
3495
  name: string;
@@ -3167,6 +3500,18 @@ export declare const instagramContract: {
3167
3500
  callFrom: string | null;
3168
3501
  callTo: string | null;
3169
3502
  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
+ }[] | undefined;
3170
3515
  } | null;
3171
3516
  };
3172
3517
  }>;
@@ -5212,11 +5557,34 @@ export declare const instagramContract: {
5212
5557
  handledTime: number | null;
5213
5558
  firstResponseTime: number | null;
5214
5559
  wrapUpForm: {
5560
+ type: string;
5215
5561
  id: string;
5216
5562
  disposition: string | null;
5217
5563
  createdAt: Date;
5218
5564
  updatedAt: Date;
5219
5565
  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
+ }[];
5220
5588
  tags: {
5221
5589
  id: string;
5222
5590
  name: string;
@@ -5227,6 +5595,18 @@ export declare const instagramContract: {
5227
5595
  callFrom: string | null;
5228
5596
  callTo: string | null;
5229
5597
  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
+ }[] | undefined;
5230
5610
  } | null;
5231
5611
  };
5232
5612
  };
@@ -5852,11 +6232,34 @@ export declare const instagramContract: {
5852
6232
  handledTime: number | null;
5853
6233
  firstResponseTime: number | null;
5854
6234
  wrapUpForm: {
6235
+ type: string;
5855
6236
  id: string;
5856
6237
  disposition: string | null;
5857
6238
  createdAt: Date;
5858
6239
  updatedAt: Date;
5859
6240
  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
+ }[];
5860
6263
  tags: {
5861
6264
  id: string;
5862
6265
  name: string;
@@ -5867,6 +6270,18 @@ export declare const instagramContract: {
5867
6270
  callFrom: string | null;
5868
6271
  callTo: string | null;
5869
6272
  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
+ }[] | undefined;
5870
6285
  } | null;
5871
6286
  };
5872
6287
  };
@@ -6494,11 +6909,34 @@ export declare const instagramContract: {
6494
6909
  handledTime: number | null;
6495
6910
  firstResponseTime: number | null;
6496
6911
  wrapUpForm: {
6912
+ type: string;
6497
6913
  id: string;
6498
6914
  disposition: string | null;
6499
6915
  createdAt: Date;
6500
6916
  updatedAt: Date;
6501
6917
  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
+ }[];
6502
6940
  tags: {
6503
6941
  id: string;
6504
6942
  name: string;
@@ -6509,6 +6947,18 @@ export declare const instagramContract: {
6509
6947
  callFrom: string | null;
6510
6948
  callTo: string | null;
6511
6949
  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
+ }[] | undefined;
6512
6962
  } | null;
6513
6963
  };
6514
6964
  };
@@ -7137,11 +7587,34 @@ export declare const instagramContract: {
7137
7587
  handledTime: number | null;
7138
7588
  firstResponseTime: number | null;
7139
7589
  wrapUpForm: {
7590
+ type: string;
7140
7591
  id: string;
7141
7592
  disposition: string | null;
7142
7593
  createdAt: Date;
7143
7594
  updatedAt: Date;
7144
7595
  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
+ }[];
7145
7618
  tags: {
7146
7619
  id: string;
7147
7620
  name: string;
@@ -7152,6 +7625,18 @@ export declare const instagramContract: {
7152
7625
  callFrom: string | null;
7153
7626
  callTo: string | null;
7154
7627
  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
+ }[] | undefined;
7155
7640
  } | null;
7156
7641
  };
7157
7642
  };