@kl1/contracts 1.3.30 → 1.3.32
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/api-contracts/src/activity-log/index.d.ts +1 -1
- package/dist/api-contracts/src/attribute/index.d.ts +7 -7
- package/dist/api-contracts/src/auth/index.d.ts +1 -1
- package/dist/api-contracts/src/automation-queue/index.d.ts +7 -7
- package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -1
- package/dist/api-contracts/src/aws/index.d.ts +2 -2
- package/dist/api-contracts/src/botpress/index.d.ts +2 -2
- package/dist/api-contracts/src/business-calendar/index.d.ts +4 -4
- package/dist/api-contracts/src/business-calendar/index.d.ts.map +1 -1
- package/dist/api-contracts/src/category/index.d.ts +7 -7
- package/dist/api-contracts/src/channel/index.d.ts +27 -27
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +1821 -1821
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +400 -400
- package/dist/api-contracts/src/chat/validation.d.ts +321 -321
- package/dist/api-contracts/src/comment/index.d.ts +364 -364
- package/dist/api-contracts/src/comment/schema.d.ts +88 -88
- package/dist/api-contracts/src/contract.d.ts +33503 -33503
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +64 -64
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +80 -80
- package/dist/api-contracts/src/dashboard/index.d.ts +19 -19
- package/dist/api-contracts/src/evaluate-form/index.d.ts +1 -1
- package/dist/api-contracts/src/extension/index.d.ts +7 -7
- package/dist/api-contracts/src/facebook-feed/index.d.ts +220 -220
- package/dist/api-contracts/src/general-setting/index.d.ts +2 -2
- package/dist/api-contracts/src/hold-label/index.d.ts +10 -10
- package/dist/api-contracts/src/instagram/index.d.ts +220 -220
- package/dist/api-contracts/src/line/index.d.ts +220 -220
- package/dist/api-contracts/src/mail/email-engine-webhooks-events.contract.d.ts +1 -1
- package/dist/api-contracts/src/mail/email-engine-webhooks-events.contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-contract.d.ts +240 -240
- package/dist/api-contracts/src/mail/room-contract.d.ts +240 -240
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +80 -80
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +60 -60
- package/dist/api-contracts/src/messenger/index.d.ts +220 -220
- package/dist/api-contracts/src/notification/index.d.ts +4 -4
- package/dist/api-contracts/src/permission/index.d.ts +1 -1
- package/dist/api-contracts/src/presence-status/index.d.ts +5 -5
- package/dist/api-contracts/src/role/index.d.ts +5 -5
- package/dist/api-contracts/src/snippet/index.d.ts +8 -8
- package/dist/api-contracts/src/subscription/index.d.ts +5 -5
- package/dist/api-contracts/src/tag/index.d.ts +4 -4
- package/dist/api-contracts/src/telegram/index.d.ts +220 -220
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +3 -3
- package/dist/api-contracts/src/telephony-cdr/index.d.ts +14 -14
- package/dist/api-contracts/src/telephony-extension/index.d.ts +1 -1
- package/dist/api-contracts/src/ticket/index.d.ts +672 -672
- package/dist/api-contracts/src/ticket/schema.d.ts +44 -44
- package/dist/api-contracts/src/ticket/validation.d.ts +20 -20
- package/dist/api-contracts/src/upload/index.d.ts +2 -2
- package/dist/api-contracts/src/user/index.d.ts +7 -7
- package/dist/api-contracts/src/user-presence-status-log/index.d.ts +2 -2
- package/dist/api-contracts/src/viber/index.d.ts +220 -220
- package/dist/api-contracts/src/webchat/index.d.ts +220 -220
- package/dist/api-contracts/src/whatsapp/index.d.ts +220 -220
- package/dist/api-contracts/src/workflow-rule/index.d.ts +260 -260
- package/dist/api-contracts/src/wrap-up-form/index.d.ts +187 -187
- package/dist/api-contracts/src/wrap-up-form/schema.d.ts +20 -20
- package/dist/index.js +187 -169
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +187 -169
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -108,11 +108,6 @@ export declare const ticketContract: {
|
|
|
108
108
|
status: {
|
|
109
109
|
[x: string]: any;
|
|
110
110
|
};
|
|
111
|
-
categories: {
|
|
112
|
-
value: string[];
|
|
113
|
-
isRequired: boolean;
|
|
114
|
-
attributeId: string;
|
|
115
|
-
};
|
|
116
111
|
contact: {
|
|
117
112
|
[x: string]: any;
|
|
118
113
|
};
|
|
@@ -122,6 +117,11 @@ export declare const ticketContract: {
|
|
|
122
117
|
tags: {
|
|
123
118
|
[x: string]: any;
|
|
124
119
|
};
|
|
120
|
+
categories: {
|
|
121
|
+
value: string[];
|
|
122
|
+
isRequired: boolean;
|
|
123
|
+
attributeId: string;
|
|
124
|
+
};
|
|
125
125
|
assignee: {
|
|
126
126
|
value: string;
|
|
127
127
|
isRequired: boolean;
|
|
@@ -149,11 +149,6 @@ export declare const ticketContract: {
|
|
|
149
149
|
status: {
|
|
150
150
|
[x: string]: any;
|
|
151
151
|
};
|
|
152
|
-
categories: {
|
|
153
|
-
value: string[];
|
|
154
|
-
isRequired: boolean;
|
|
155
|
-
attributeId: string;
|
|
156
|
-
};
|
|
157
152
|
contact: {
|
|
158
153
|
[x: string]: any;
|
|
159
154
|
};
|
|
@@ -163,6 +158,11 @@ export declare const ticketContract: {
|
|
|
163
158
|
tags: {
|
|
164
159
|
[x: string]: any;
|
|
165
160
|
};
|
|
161
|
+
categories: {
|
|
162
|
+
value: string[];
|
|
163
|
+
isRequired: boolean;
|
|
164
|
+
attributeId: string;
|
|
165
|
+
};
|
|
166
166
|
assignee: {
|
|
167
167
|
value: string;
|
|
168
168
|
isRequired: boolean;
|
|
@@ -2048,28 +2048,6 @@ export declare const ticketContract: {
|
|
|
2048
2048
|
createdAt: Date;
|
|
2049
2049
|
updatedAt: Date;
|
|
2050
2050
|
deletedAt: Date | null;
|
|
2051
|
-
categories: {
|
|
2052
|
-
id: string;
|
|
2053
|
-
value: string;
|
|
2054
|
-
createdAt: Date;
|
|
2055
|
-
updatedAt: Date;
|
|
2056
|
-
deletedAt: Date | null;
|
|
2057
|
-
level: 2 | 1 | 3;
|
|
2058
|
-
parentId: string | null;
|
|
2059
|
-
childCategoryList: {
|
|
2060
|
-
id: string;
|
|
2061
|
-
value: string;
|
|
2062
|
-
level: 2 | 1 | 3;
|
|
2063
|
-
parentId: string | null;
|
|
2064
|
-
childCategoryList: {
|
|
2065
|
-
id: string;
|
|
2066
|
-
value: string;
|
|
2067
|
-
level: 2 | 1 | 3;
|
|
2068
|
-
parentId: string | null;
|
|
2069
|
-
childCategoryList: any[];
|
|
2070
|
-
}[];
|
|
2071
|
-
}[];
|
|
2072
|
-
}[];
|
|
2073
2051
|
contact: {
|
|
2074
2052
|
name: string;
|
|
2075
2053
|
id: string;
|
|
@@ -2286,6 +2264,28 @@ export declare const ticketContract: {
|
|
|
2286
2264
|
};
|
|
2287
2265
|
}[];
|
|
2288
2266
|
contactId: string;
|
|
2267
|
+
categories: {
|
|
2268
|
+
id: string;
|
|
2269
|
+
value: string;
|
|
2270
|
+
createdAt: Date;
|
|
2271
|
+
updatedAt: Date;
|
|
2272
|
+
deletedAt: Date | null;
|
|
2273
|
+
level: 2 | 1 | 3;
|
|
2274
|
+
parentId: string | null;
|
|
2275
|
+
childCategoryList: {
|
|
2276
|
+
id: string;
|
|
2277
|
+
value: string;
|
|
2278
|
+
level: 2 | 1 | 3;
|
|
2279
|
+
parentId: string | null;
|
|
2280
|
+
childCategoryList: {
|
|
2281
|
+
id: string;
|
|
2282
|
+
value: string;
|
|
2283
|
+
level: 2 | 1 | 3;
|
|
2284
|
+
parentId: string | null;
|
|
2285
|
+
childCategoryList: any[];
|
|
2286
|
+
}[];
|
|
2287
|
+
}[];
|
|
2288
|
+
}[];
|
|
2289
2289
|
assigneeId: string;
|
|
2290
2290
|
creatorId: string;
|
|
2291
2291
|
reasonToAssign: string | null;
|
|
@@ -2389,28 +2389,6 @@ export declare const ticketContract: {
|
|
|
2389
2389
|
createdAt: Date;
|
|
2390
2390
|
updatedAt: Date;
|
|
2391
2391
|
deletedAt: Date | null;
|
|
2392
|
-
categories: {
|
|
2393
|
-
id: string;
|
|
2394
|
-
value: string;
|
|
2395
|
-
createdAt: Date;
|
|
2396
|
-
updatedAt: Date;
|
|
2397
|
-
deletedAt: Date | null;
|
|
2398
|
-
level: 2 | 1 | 3;
|
|
2399
|
-
parentId: string | null;
|
|
2400
|
-
childCategoryList: {
|
|
2401
|
-
id: string;
|
|
2402
|
-
value: string;
|
|
2403
|
-
level: 2 | 1 | 3;
|
|
2404
|
-
parentId: string | null;
|
|
2405
|
-
childCategoryList: {
|
|
2406
|
-
id: string;
|
|
2407
|
-
value: string;
|
|
2408
|
-
level: 2 | 1 | 3;
|
|
2409
|
-
parentId: string | null;
|
|
2410
|
-
childCategoryList: any[];
|
|
2411
|
-
}[];
|
|
2412
|
-
}[];
|
|
2413
|
-
}[];
|
|
2414
2392
|
contact: {
|
|
2415
2393
|
name: string;
|
|
2416
2394
|
id: string;
|
|
@@ -2627,6 +2605,28 @@ export declare const ticketContract: {
|
|
|
2627
2605
|
};
|
|
2628
2606
|
}[];
|
|
2629
2607
|
contactId: string;
|
|
2608
|
+
categories: {
|
|
2609
|
+
id: string;
|
|
2610
|
+
value: string;
|
|
2611
|
+
createdAt: Date;
|
|
2612
|
+
updatedAt: Date;
|
|
2613
|
+
deletedAt: Date | null;
|
|
2614
|
+
level: 2 | 1 | 3;
|
|
2615
|
+
parentId: string | null;
|
|
2616
|
+
childCategoryList: {
|
|
2617
|
+
id: string;
|
|
2618
|
+
value: string;
|
|
2619
|
+
level: 2 | 1 | 3;
|
|
2620
|
+
parentId: string | null;
|
|
2621
|
+
childCategoryList: {
|
|
2622
|
+
id: string;
|
|
2623
|
+
value: string;
|
|
2624
|
+
level: 2 | 1 | 3;
|
|
2625
|
+
parentId: string | null;
|
|
2626
|
+
childCategoryList: any[];
|
|
2627
|
+
}[];
|
|
2628
|
+
}[];
|
|
2629
|
+
}[];
|
|
2630
2630
|
assigneeId: string;
|
|
2631
2631
|
creatorId: string;
|
|
2632
2632
|
reasonToAssign: string | null;
|
|
@@ -2732,28 +2732,6 @@ export declare const ticketContract: {
|
|
|
2732
2732
|
createdAt: Date;
|
|
2733
2733
|
updatedAt: Date;
|
|
2734
2734
|
deletedAt: Date | null;
|
|
2735
|
-
categories: {
|
|
2736
|
-
id: string;
|
|
2737
|
-
value: string;
|
|
2738
|
-
createdAt: Date;
|
|
2739
|
-
updatedAt: Date;
|
|
2740
|
-
deletedAt: Date | null;
|
|
2741
|
-
level: 2 | 1 | 3;
|
|
2742
|
-
parentId: string | null;
|
|
2743
|
-
childCategoryList: {
|
|
2744
|
-
id: string;
|
|
2745
|
-
value: string;
|
|
2746
|
-
level: 2 | 1 | 3;
|
|
2747
|
-
parentId: string | null;
|
|
2748
|
-
childCategoryList: {
|
|
2749
|
-
id: string;
|
|
2750
|
-
value: string;
|
|
2751
|
-
level: 2 | 1 | 3;
|
|
2752
|
-
parentId: string | null;
|
|
2753
|
-
childCategoryList: any[];
|
|
2754
|
-
}[];
|
|
2755
|
-
}[];
|
|
2756
|
-
}[];
|
|
2757
2735
|
contact: {
|
|
2758
2736
|
name: string;
|
|
2759
2737
|
id: string;
|
|
@@ -2970,6 +2948,28 @@ export declare const ticketContract: {
|
|
|
2970
2948
|
};
|
|
2971
2949
|
}[];
|
|
2972
2950
|
contactId: string;
|
|
2951
|
+
categories: {
|
|
2952
|
+
id: string;
|
|
2953
|
+
value: string;
|
|
2954
|
+
createdAt: Date;
|
|
2955
|
+
updatedAt: Date;
|
|
2956
|
+
deletedAt: Date | null;
|
|
2957
|
+
level: 2 | 1 | 3;
|
|
2958
|
+
parentId: string | null;
|
|
2959
|
+
childCategoryList: {
|
|
2960
|
+
id: string;
|
|
2961
|
+
value: string;
|
|
2962
|
+
level: 2 | 1 | 3;
|
|
2963
|
+
parentId: string | null;
|
|
2964
|
+
childCategoryList: {
|
|
2965
|
+
id: string;
|
|
2966
|
+
value: string;
|
|
2967
|
+
level: 2 | 1 | 3;
|
|
2968
|
+
parentId: string | null;
|
|
2969
|
+
childCategoryList: any[];
|
|
2970
|
+
}[];
|
|
2971
|
+
}[];
|
|
2972
|
+
}[];
|
|
2973
2973
|
assigneeId: string;
|
|
2974
2974
|
creatorId: string;
|
|
2975
2975
|
reasonToAssign: string | null;
|
|
@@ -3076,28 +3076,6 @@ export declare const ticketContract: {
|
|
|
3076
3076
|
createdAt: Date;
|
|
3077
3077
|
updatedAt: Date;
|
|
3078
3078
|
deletedAt: Date | null;
|
|
3079
|
-
categories: {
|
|
3080
|
-
id: string;
|
|
3081
|
-
value: string;
|
|
3082
|
-
createdAt: Date;
|
|
3083
|
-
updatedAt: Date;
|
|
3084
|
-
deletedAt: Date | null;
|
|
3085
|
-
level: 2 | 1 | 3;
|
|
3086
|
-
parentId: string | null;
|
|
3087
|
-
childCategoryList: {
|
|
3088
|
-
id: string;
|
|
3089
|
-
value: string;
|
|
3090
|
-
level: 2 | 1 | 3;
|
|
3091
|
-
parentId: string | null;
|
|
3092
|
-
childCategoryList: {
|
|
3093
|
-
id: string;
|
|
3094
|
-
value: string;
|
|
3095
|
-
level: 2 | 1 | 3;
|
|
3096
|
-
parentId: string | null;
|
|
3097
|
-
childCategoryList: any[];
|
|
3098
|
-
}[];
|
|
3099
|
-
}[];
|
|
3100
|
-
}[];
|
|
3101
3079
|
contact: {
|
|
3102
3080
|
name: string;
|
|
3103
3081
|
id: string;
|
|
@@ -3314,6 +3292,28 @@ export declare const ticketContract: {
|
|
|
3314
3292
|
};
|
|
3315
3293
|
}[];
|
|
3316
3294
|
contactId: string;
|
|
3295
|
+
categories: {
|
|
3296
|
+
id: string;
|
|
3297
|
+
value: string;
|
|
3298
|
+
createdAt: Date;
|
|
3299
|
+
updatedAt: Date;
|
|
3300
|
+
deletedAt: Date | null;
|
|
3301
|
+
level: 2 | 1 | 3;
|
|
3302
|
+
parentId: string | null;
|
|
3303
|
+
childCategoryList: {
|
|
3304
|
+
id: string;
|
|
3305
|
+
value: string;
|
|
3306
|
+
level: 2 | 1 | 3;
|
|
3307
|
+
parentId: string | null;
|
|
3308
|
+
childCategoryList: {
|
|
3309
|
+
id: string;
|
|
3310
|
+
value: string;
|
|
3311
|
+
level: 2 | 1 | 3;
|
|
3312
|
+
parentId: string | null;
|
|
3313
|
+
childCategoryList: any[];
|
|
3314
|
+
}[];
|
|
3315
|
+
}[];
|
|
3316
|
+
}[];
|
|
3317
3317
|
assigneeId: string;
|
|
3318
3318
|
creatorId: string;
|
|
3319
3319
|
reasonToAssign: string | null;
|
|
@@ -3576,28 +3576,6 @@ export declare const ticketContract: {
|
|
|
3576
3576
|
createdAt: Date;
|
|
3577
3577
|
updatedAt: Date;
|
|
3578
3578
|
deletedAt: Date | null;
|
|
3579
|
-
categories: {
|
|
3580
|
-
id: string;
|
|
3581
|
-
value: string;
|
|
3582
|
-
createdAt: Date;
|
|
3583
|
-
updatedAt: Date;
|
|
3584
|
-
deletedAt: Date | null;
|
|
3585
|
-
level: 2 | 1 | 3;
|
|
3586
|
-
parentId: string | null;
|
|
3587
|
-
childCategoryList: {
|
|
3588
|
-
id: string;
|
|
3589
|
-
value: string;
|
|
3590
|
-
level: 2 | 1 | 3;
|
|
3591
|
-
parentId: string | null;
|
|
3592
|
-
childCategoryList: {
|
|
3593
|
-
id: string;
|
|
3594
|
-
value: string;
|
|
3595
|
-
level: 2 | 1 | 3;
|
|
3596
|
-
parentId: string | null;
|
|
3597
|
-
childCategoryList: any[];
|
|
3598
|
-
}[];
|
|
3599
|
-
}[];
|
|
3600
|
-
}[];
|
|
3601
3579
|
contact: {
|
|
3602
3580
|
name: string;
|
|
3603
3581
|
id: string;
|
|
@@ -3814,6 +3792,28 @@ export declare const ticketContract: {
|
|
|
3814
3792
|
};
|
|
3815
3793
|
}[];
|
|
3816
3794
|
contactId: string;
|
|
3795
|
+
categories: {
|
|
3796
|
+
id: string;
|
|
3797
|
+
value: string;
|
|
3798
|
+
createdAt: Date;
|
|
3799
|
+
updatedAt: Date;
|
|
3800
|
+
deletedAt: Date | null;
|
|
3801
|
+
level: 2 | 1 | 3;
|
|
3802
|
+
parentId: string | null;
|
|
3803
|
+
childCategoryList: {
|
|
3804
|
+
id: string;
|
|
3805
|
+
value: string;
|
|
3806
|
+
level: 2 | 1 | 3;
|
|
3807
|
+
parentId: string | null;
|
|
3808
|
+
childCategoryList: {
|
|
3809
|
+
id: string;
|
|
3810
|
+
value: string;
|
|
3811
|
+
level: 2 | 1 | 3;
|
|
3812
|
+
parentId: string | null;
|
|
3813
|
+
childCategoryList: any[];
|
|
3814
|
+
}[];
|
|
3815
|
+
}[];
|
|
3816
|
+
}[];
|
|
3817
3817
|
assigneeId: string;
|
|
3818
3818
|
creatorId: string;
|
|
3819
3819
|
reasonToAssign: string | null;
|
|
@@ -3917,37 +3917,15 @@ export declare const ticketContract: {
|
|
|
3917
3917
|
createdAt: Date;
|
|
3918
3918
|
updatedAt: Date;
|
|
3919
3919
|
deletedAt: Date | null;
|
|
3920
|
-
|
|
3920
|
+
contact: {
|
|
3921
|
+
name: string;
|
|
3921
3922
|
id: string;
|
|
3922
|
-
|
|
3923
|
+
channel: string | null;
|
|
3924
|
+
address: string | null;
|
|
3923
3925
|
createdAt: Date;
|
|
3924
3926
|
updatedAt: Date;
|
|
3925
3927
|
deletedAt: Date | null;
|
|
3926
|
-
|
|
3927
|
-
parentId: string | null;
|
|
3928
|
-
childCategoryList: {
|
|
3929
|
-
id: string;
|
|
3930
|
-
value: string;
|
|
3931
|
-
level: 2 | 1 | 3;
|
|
3932
|
-
parentId: string | null;
|
|
3933
|
-
childCategoryList: {
|
|
3934
|
-
id: string;
|
|
3935
|
-
value: string;
|
|
3936
|
-
level: 2 | 1 | 3;
|
|
3937
|
-
parentId: string | null;
|
|
3938
|
-
childCategoryList: any[];
|
|
3939
|
-
}[];
|
|
3940
|
-
}[];
|
|
3941
|
-
}[];
|
|
3942
|
-
contact: {
|
|
3943
|
-
name: string;
|
|
3944
|
-
id: string;
|
|
3945
|
-
channel: string | null;
|
|
3946
|
-
address: string | null;
|
|
3947
|
-
createdAt: Date;
|
|
3948
|
-
updatedAt: Date;
|
|
3949
|
-
deletedAt: Date | null;
|
|
3950
|
-
customFields: {
|
|
3928
|
+
customFields: {
|
|
3951
3929
|
id: string;
|
|
3952
3930
|
createdAt: Date;
|
|
3953
3931
|
updatedAt: Date;
|
|
@@ -4155,6 +4133,28 @@ export declare const ticketContract: {
|
|
|
4155
4133
|
};
|
|
4156
4134
|
}[];
|
|
4157
4135
|
contactId: string;
|
|
4136
|
+
categories: {
|
|
4137
|
+
id: string;
|
|
4138
|
+
value: string;
|
|
4139
|
+
createdAt: Date;
|
|
4140
|
+
updatedAt: Date;
|
|
4141
|
+
deletedAt: Date | null;
|
|
4142
|
+
level: 2 | 1 | 3;
|
|
4143
|
+
parentId: string | null;
|
|
4144
|
+
childCategoryList: {
|
|
4145
|
+
id: string;
|
|
4146
|
+
value: string;
|
|
4147
|
+
level: 2 | 1 | 3;
|
|
4148
|
+
parentId: string | null;
|
|
4149
|
+
childCategoryList: {
|
|
4150
|
+
id: string;
|
|
4151
|
+
value: string;
|
|
4152
|
+
level: 2 | 1 | 3;
|
|
4153
|
+
parentId: string | null;
|
|
4154
|
+
childCategoryList: any[];
|
|
4155
|
+
}[];
|
|
4156
|
+
}[];
|
|
4157
|
+
}[];
|
|
4158
4158
|
assigneeId: string;
|
|
4159
4159
|
creatorId: string;
|
|
4160
4160
|
reasonToAssign: string | null;
|
|
@@ -4260,28 +4260,6 @@ export declare const ticketContract: {
|
|
|
4260
4260
|
createdAt: Date;
|
|
4261
4261
|
updatedAt: Date;
|
|
4262
4262
|
deletedAt: Date | null;
|
|
4263
|
-
categories: {
|
|
4264
|
-
id: string;
|
|
4265
|
-
value: string;
|
|
4266
|
-
createdAt: Date;
|
|
4267
|
-
updatedAt: Date;
|
|
4268
|
-
deletedAt: Date | null;
|
|
4269
|
-
level: 2 | 1 | 3;
|
|
4270
|
-
parentId: string | null;
|
|
4271
|
-
childCategoryList: {
|
|
4272
|
-
id: string;
|
|
4273
|
-
value: string;
|
|
4274
|
-
level: 2 | 1 | 3;
|
|
4275
|
-
parentId: string | null;
|
|
4276
|
-
childCategoryList: {
|
|
4277
|
-
id: string;
|
|
4278
|
-
value: string;
|
|
4279
|
-
level: 2 | 1 | 3;
|
|
4280
|
-
parentId: string | null;
|
|
4281
|
-
childCategoryList: any[];
|
|
4282
|
-
}[];
|
|
4283
|
-
}[];
|
|
4284
|
-
}[];
|
|
4285
4263
|
contact: {
|
|
4286
4264
|
name: string;
|
|
4287
4265
|
id: string;
|
|
@@ -4498,6 +4476,28 @@ export declare const ticketContract: {
|
|
|
4498
4476
|
};
|
|
4499
4477
|
}[];
|
|
4500
4478
|
contactId: string;
|
|
4479
|
+
categories: {
|
|
4480
|
+
id: string;
|
|
4481
|
+
value: string;
|
|
4482
|
+
createdAt: Date;
|
|
4483
|
+
updatedAt: Date;
|
|
4484
|
+
deletedAt: Date | null;
|
|
4485
|
+
level: 2 | 1 | 3;
|
|
4486
|
+
parentId: string | null;
|
|
4487
|
+
childCategoryList: {
|
|
4488
|
+
id: string;
|
|
4489
|
+
value: string;
|
|
4490
|
+
level: 2 | 1 | 3;
|
|
4491
|
+
parentId: string | null;
|
|
4492
|
+
childCategoryList: {
|
|
4493
|
+
id: string;
|
|
4494
|
+
value: string;
|
|
4495
|
+
level: 2 | 1 | 3;
|
|
4496
|
+
parentId: string | null;
|
|
4497
|
+
childCategoryList: any[];
|
|
4498
|
+
}[];
|
|
4499
|
+
}[];
|
|
4500
|
+
}[];
|
|
4501
4501
|
assigneeId: string;
|
|
4502
4502
|
creatorId: string;
|
|
4503
4503
|
reasonToAssign: string | null;
|
|
@@ -4607,28 +4607,6 @@ export declare const ticketContract: {
|
|
|
4607
4607
|
createdAt: Date;
|
|
4608
4608
|
updatedAt: Date;
|
|
4609
4609
|
deletedAt: Date | null;
|
|
4610
|
-
categories: {
|
|
4611
|
-
id: string;
|
|
4612
|
-
value: string;
|
|
4613
|
-
createdAt: Date;
|
|
4614
|
-
updatedAt: Date;
|
|
4615
|
-
deletedAt: Date | null;
|
|
4616
|
-
level: 2 | 1 | 3;
|
|
4617
|
-
parentId: string | null;
|
|
4618
|
-
childCategoryList: {
|
|
4619
|
-
id: string;
|
|
4620
|
-
value: string;
|
|
4621
|
-
level: 2 | 1 | 3;
|
|
4622
|
-
parentId: string | null;
|
|
4623
|
-
childCategoryList: {
|
|
4624
|
-
id: string;
|
|
4625
|
-
value: string;
|
|
4626
|
-
level: 2 | 1 | 3;
|
|
4627
|
-
parentId: string | null;
|
|
4628
|
-
childCategoryList: any[];
|
|
4629
|
-
}[];
|
|
4630
|
-
}[];
|
|
4631
|
-
}[];
|
|
4632
4610
|
contact: {
|
|
4633
4611
|
name: string;
|
|
4634
4612
|
id: string;
|
|
@@ -4845,6 +4823,28 @@ export declare const ticketContract: {
|
|
|
4845
4823
|
};
|
|
4846
4824
|
}[];
|
|
4847
4825
|
contactId: string;
|
|
4826
|
+
categories: {
|
|
4827
|
+
id: string;
|
|
4828
|
+
value: string;
|
|
4829
|
+
createdAt: Date;
|
|
4830
|
+
updatedAt: Date;
|
|
4831
|
+
deletedAt: Date | null;
|
|
4832
|
+
level: 2 | 1 | 3;
|
|
4833
|
+
parentId: string | null;
|
|
4834
|
+
childCategoryList: {
|
|
4835
|
+
id: string;
|
|
4836
|
+
value: string;
|
|
4837
|
+
level: 2 | 1 | 3;
|
|
4838
|
+
parentId: string | null;
|
|
4839
|
+
childCategoryList: {
|
|
4840
|
+
id: string;
|
|
4841
|
+
value: string;
|
|
4842
|
+
level: 2 | 1 | 3;
|
|
4843
|
+
parentId: string | null;
|
|
4844
|
+
childCategoryList: any[];
|
|
4845
|
+
}[];
|
|
4846
|
+
}[];
|
|
4847
|
+
}[];
|
|
4848
4848
|
assigneeId: string;
|
|
4849
4849
|
creatorId: string;
|
|
4850
4850
|
reasonToAssign: string | null;
|
|
@@ -4956,28 +4956,6 @@ export declare const ticketContract: {
|
|
|
4956
4956
|
createdAt: Date;
|
|
4957
4957
|
updatedAt: Date;
|
|
4958
4958
|
deletedAt: Date | null;
|
|
4959
|
-
categories: {
|
|
4960
|
-
id: string;
|
|
4961
|
-
value: string;
|
|
4962
|
-
createdAt: Date;
|
|
4963
|
-
updatedAt: Date;
|
|
4964
|
-
deletedAt: Date | null;
|
|
4965
|
-
level: 2 | 1 | 3;
|
|
4966
|
-
parentId: string | null;
|
|
4967
|
-
childCategoryList: {
|
|
4968
|
-
id: string;
|
|
4969
|
-
value: string;
|
|
4970
|
-
level: 2 | 1 | 3;
|
|
4971
|
-
parentId: string | null;
|
|
4972
|
-
childCategoryList: {
|
|
4973
|
-
id: string;
|
|
4974
|
-
value: string;
|
|
4975
|
-
level: 2 | 1 | 3;
|
|
4976
|
-
parentId: string | null;
|
|
4977
|
-
childCategoryList: any[];
|
|
4978
|
-
}[];
|
|
4979
|
-
}[];
|
|
4980
|
-
}[];
|
|
4981
4959
|
contact: {
|
|
4982
4960
|
name: string;
|
|
4983
4961
|
id: string;
|
|
@@ -5194,6 +5172,28 @@ export declare const ticketContract: {
|
|
|
5194
5172
|
};
|
|
5195
5173
|
}[];
|
|
5196
5174
|
contactId: string;
|
|
5175
|
+
categories: {
|
|
5176
|
+
id: string;
|
|
5177
|
+
value: string;
|
|
5178
|
+
createdAt: Date;
|
|
5179
|
+
updatedAt: Date;
|
|
5180
|
+
deletedAt: Date | null;
|
|
5181
|
+
level: 2 | 1 | 3;
|
|
5182
|
+
parentId: string | null;
|
|
5183
|
+
childCategoryList: {
|
|
5184
|
+
id: string;
|
|
5185
|
+
value: string;
|
|
5186
|
+
level: 2 | 1 | 3;
|
|
5187
|
+
parentId: string | null;
|
|
5188
|
+
childCategoryList: {
|
|
5189
|
+
id: string;
|
|
5190
|
+
value: string;
|
|
5191
|
+
level: 2 | 1 | 3;
|
|
5192
|
+
parentId: string | null;
|
|
5193
|
+
childCategoryList: any[];
|
|
5194
|
+
}[];
|
|
5195
|
+
}[];
|
|
5196
|
+
}[];
|
|
5197
5197
|
assigneeId: string;
|
|
5198
5198
|
creatorId: string;
|
|
5199
5199
|
reasonToAssign: string | null;
|
|
@@ -5306,28 +5306,6 @@ export declare const ticketContract: {
|
|
|
5306
5306
|
createdAt: Date;
|
|
5307
5307
|
updatedAt: Date;
|
|
5308
5308
|
deletedAt: Date | null;
|
|
5309
|
-
categories: {
|
|
5310
|
-
id: string;
|
|
5311
|
-
value: string;
|
|
5312
|
-
createdAt: Date;
|
|
5313
|
-
updatedAt: Date;
|
|
5314
|
-
deletedAt: Date | null;
|
|
5315
|
-
level: 2 | 1 | 3;
|
|
5316
|
-
parentId: string | null;
|
|
5317
|
-
childCategoryList: {
|
|
5318
|
-
id: string;
|
|
5319
|
-
value: string;
|
|
5320
|
-
level: 2 | 1 | 3;
|
|
5321
|
-
parentId: string | null;
|
|
5322
|
-
childCategoryList: {
|
|
5323
|
-
id: string;
|
|
5324
|
-
value: string;
|
|
5325
|
-
level: 2 | 1 | 3;
|
|
5326
|
-
parentId: string | null;
|
|
5327
|
-
childCategoryList: any[];
|
|
5328
|
-
}[];
|
|
5329
|
-
}[];
|
|
5330
|
-
}[];
|
|
5331
5309
|
contact: {
|
|
5332
5310
|
name: string;
|
|
5333
5311
|
id: string;
|
|
@@ -5544,6 +5522,28 @@ export declare const ticketContract: {
|
|
|
5544
5522
|
};
|
|
5545
5523
|
}[];
|
|
5546
5524
|
contactId: string;
|
|
5525
|
+
categories: {
|
|
5526
|
+
id: string;
|
|
5527
|
+
value: string;
|
|
5528
|
+
createdAt: Date;
|
|
5529
|
+
updatedAt: Date;
|
|
5530
|
+
deletedAt: Date | null;
|
|
5531
|
+
level: 2 | 1 | 3;
|
|
5532
|
+
parentId: string | null;
|
|
5533
|
+
childCategoryList: {
|
|
5534
|
+
id: string;
|
|
5535
|
+
value: string;
|
|
5536
|
+
level: 2 | 1 | 3;
|
|
5537
|
+
parentId: string | null;
|
|
5538
|
+
childCategoryList: {
|
|
5539
|
+
id: string;
|
|
5540
|
+
value: string;
|
|
5541
|
+
level: 2 | 1 | 3;
|
|
5542
|
+
parentId: string | null;
|
|
5543
|
+
childCategoryList: any[];
|
|
5544
|
+
}[];
|
|
5545
|
+
}[];
|
|
5546
|
+
}[];
|
|
5547
5547
|
assigneeId: string;
|
|
5548
5548
|
creatorId: string;
|
|
5549
5549
|
reasonToAssign: string | null;
|
|
@@ -7574,28 +7574,6 @@ export declare const ticketContract: {
|
|
|
7574
7574
|
createdAt: Date;
|
|
7575
7575
|
updatedAt: Date;
|
|
7576
7576
|
deletedAt: Date | null;
|
|
7577
|
-
categories: {
|
|
7578
|
-
id: string;
|
|
7579
|
-
value: string;
|
|
7580
|
-
createdAt: Date;
|
|
7581
|
-
updatedAt: Date;
|
|
7582
|
-
deletedAt: Date | null;
|
|
7583
|
-
level: 2 | 1 | 3;
|
|
7584
|
-
parentId: string | null;
|
|
7585
|
-
childCategoryList: {
|
|
7586
|
-
id: string;
|
|
7587
|
-
value: string;
|
|
7588
|
-
level: 2 | 1 | 3;
|
|
7589
|
-
parentId: string | null;
|
|
7590
|
-
childCategoryList: {
|
|
7591
|
-
id: string;
|
|
7592
|
-
value: string;
|
|
7593
|
-
level: 2 | 1 | 3;
|
|
7594
|
-
parentId: string | null;
|
|
7595
|
-
childCategoryList: any[];
|
|
7596
|
-
}[];
|
|
7597
|
-
}[];
|
|
7598
|
-
}[];
|
|
7599
7577
|
contact: {
|
|
7600
7578
|
name: string;
|
|
7601
7579
|
id: string;
|
|
@@ -7812,26 +7790,48 @@ export declare const ticketContract: {
|
|
|
7812
7790
|
};
|
|
7813
7791
|
}[];
|
|
7814
7792
|
contactId: string;
|
|
7815
|
-
|
|
7816
|
-
creatorId: string;
|
|
7817
|
-
reasonToAssign: string | null;
|
|
7818
|
-
creator?: {
|
|
7819
|
-
name: string;
|
|
7793
|
+
categories: {
|
|
7820
7794
|
id: string;
|
|
7821
|
-
|
|
7822
|
-
email: string;
|
|
7795
|
+
value: string;
|
|
7823
7796
|
createdAt: Date;
|
|
7824
7797
|
updatedAt: Date;
|
|
7825
7798
|
deletedAt: Date | null;
|
|
7826
|
-
|
|
7827
|
-
|
|
7828
|
-
|
|
7829
|
-
notificationCount: number | null;
|
|
7830
|
-
roles: {
|
|
7799
|
+
level: 2 | 1 | 3;
|
|
7800
|
+
parentId: string | null;
|
|
7801
|
+
childCategoryList: {
|
|
7831
7802
|
id: string;
|
|
7832
|
-
|
|
7833
|
-
|
|
7834
|
-
|
|
7803
|
+
value: string;
|
|
7804
|
+
level: 2 | 1 | 3;
|
|
7805
|
+
parentId: string | null;
|
|
7806
|
+
childCategoryList: {
|
|
7807
|
+
id: string;
|
|
7808
|
+
value: string;
|
|
7809
|
+
level: 2 | 1 | 3;
|
|
7810
|
+
parentId: string | null;
|
|
7811
|
+
childCategoryList: any[];
|
|
7812
|
+
}[];
|
|
7813
|
+
}[];
|
|
7814
|
+
}[];
|
|
7815
|
+
assigneeId: string;
|
|
7816
|
+
creatorId: string;
|
|
7817
|
+
reasonToAssign: string | null;
|
|
7818
|
+
creator?: {
|
|
7819
|
+
name: string;
|
|
7820
|
+
id: string;
|
|
7821
|
+
address: string | null;
|
|
7822
|
+
email: string;
|
|
7823
|
+
createdAt: Date;
|
|
7824
|
+
updatedAt: Date;
|
|
7825
|
+
deletedAt: Date | null;
|
|
7826
|
+
emailVerifiedAt: Date | null;
|
|
7827
|
+
password: string;
|
|
7828
|
+
phone: string | null;
|
|
7829
|
+
notificationCount: number | null;
|
|
7830
|
+
roles: {
|
|
7831
|
+
id: string;
|
|
7832
|
+
description: string | null;
|
|
7833
|
+
createdAt: Date;
|
|
7834
|
+
updatedAt: Date;
|
|
7835
7835
|
deletedAt: Date | null;
|
|
7836
7836
|
systemName: string;
|
|
7837
7837
|
displayName: string;
|
|
@@ -7915,28 +7915,6 @@ export declare const ticketContract: {
|
|
|
7915
7915
|
createdAt: Date;
|
|
7916
7916
|
updatedAt: Date;
|
|
7917
7917
|
deletedAt: Date | null;
|
|
7918
|
-
categories: {
|
|
7919
|
-
id: string;
|
|
7920
|
-
value: string;
|
|
7921
|
-
createdAt: Date;
|
|
7922
|
-
updatedAt: Date;
|
|
7923
|
-
deletedAt: Date | null;
|
|
7924
|
-
level: 2 | 1 | 3;
|
|
7925
|
-
parentId: string | null;
|
|
7926
|
-
childCategoryList: {
|
|
7927
|
-
id: string;
|
|
7928
|
-
value: string;
|
|
7929
|
-
level: 2 | 1 | 3;
|
|
7930
|
-
parentId: string | null;
|
|
7931
|
-
childCategoryList: {
|
|
7932
|
-
id: string;
|
|
7933
|
-
value: string;
|
|
7934
|
-
level: 2 | 1 | 3;
|
|
7935
|
-
parentId: string | null;
|
|
7936
|
-
childCategoryList: any[];
|
|
7937
|
-
}[];
|
|
7938
|
-
}[];
|
|
7939
|
-
}[];
|
|
7940
7918
|
contact: {
|
|
7941
7919
|
name: string;
|
|
7942
7920
|
id: string;
|
|
@@ -8153,6 +8131,28 @@ export declare const ticketContract: {
|
|
|
8153
8131
|
};
|
|
8154
8132
|
}[];
|
|
8155
8133
|
contactId: string;
|
|
8134
|
+
categories: {
|
|
8135
|
+
id: string;
|
|
8136
|
+
value: string;
|
|
8137
|
+
createdAt: Date;
|
|
8138
|
+
updatedAt: Date;
|
|
8139
|
+
deletedAt: Date | null;
|
|
8140
|
+
level: 2 | 1 | 3;
|
|
8141
|
+
parentId: string | null;
|
|
8142
|
+
childCategoryList: {
|
|
8143
|
+
id: string;
|
|
8144
|
+
value: string;
|
|
8145
|
+
level: 2 | 1 | 3;
|
|
8146
|
+
parentId: string | null;
|
|
8147
|
+
childCategoryList: {
|
|
8148
|
+
id: string;
|
|
8149
|
+
value: string;
|
|
8150
|
+
level: 2 | 1 | 3;
|
|
8151
|
+
parentId: string | null;
|
|
8152
|
+
childCategoryList: any[];
|
|
8153
|
+
}[];
|
|
8154
|
+
}[];
|
|
8155
|
+
}[];
|
|
8156
8156
|
assigneeId: string;
|
|
8157
8157
|
creatorId: string;
|
|
8158
8158
|
reasonToAssign: string | null;
|
|
@@ -8258,28 +8258,6 @@ export declare const ticketContract: {
|
|
|
8258
8258
|
createdAt: Date;
|
|
8259
8259
|
updatedAt: Date;
|
|
8260
8260
|
deletedAt: Date | null;
|
|
8261
|
-
categories: {
|
|
8262
|
-
id: string;
|
|
8263
|
-
value: string;
|
|
8264
|
-
createdAt: Date;
|
|
8265
|
-
updatedAt: Date;
|
|
8266
|
-
deletedAt: Date | null;
|
|
8267
|
-
level: 2 | 1 | 3;
|
|
8268
|
-
parentId: string | null;
|
|
8269
|
-
childCategoryList: {
|
|
8270
|
-
id: string;
|
|
8271
|
-
value: string;
|
|
8272
|
-
level: 2 | 1 | 3;
|
|
8273
|
-
parentId: string | null;
|
|
8274
|
-
childCategoryList: {
|
|
8275
|
-
id: string;
|
|
8276
|
-
value: string;
|
|
8277
|
-
level: 2 | 1 | 3;
|
|
8278
|
-
parentId: string | null;
|
|
8279
|
-
childCategoryList: any[];
|
|
8280
|
-
}[];
|
|
8281
|
-
}[];
|
|
8282
|
-
}[];
|
|
8283
8261
|
contact: {
|
|
8284
8262
|
name: string;
|
|
8285
8263
|
id: string;
|
|
@@ -8496,6 +8474,28 @@ export declare const ticketContract: {
|
|
|
8496
8474
|
};
|
|
8497
8475
|
}[];
|
|
8498
8476
|
contactId: string;
|
|
8477
|
+
categories: {
|
|
8478
|
+
id: string;
|
|
8479
|
+
value: string;
|
|
8480
|
+
createdAt: Date;
|
|
8481
|
+
updatedAt: Date;
|
|
8482
|
+
deletedAt: Date | null;
|
|
8483
|
+
level: 2 | 1 | 3;
|
|
8484
|
+
parentId: string | null;
|
|
8485
|
+
childCategoryList: {
|
|
8486
|
+
id: string;
|
|
8487
|
+
value: string;
|
|
8488
|
+
level: 2 | 1 | 3;
|
|
8489
|
+
parentId: string | null;
|
|
8490
|
+
childCategoryList: {
|
|
8491
|
+
id: string;
|
|
8492
|
+
value: string;
|
|
8493
|
+
level: 2 | 1 | 3;
|
|
8494
|
+
parentId: string | null;
|
|
8495
|
+
childCategoryList: any[];
|
|
8496
|
+
}[];
|
|
8497
|
+
}[];
|
|
8498
|
+
}[];
|
|
8499
8499
|
assigneeId: string;
|
|
8500
8500
|
creatorId: string;
|
|
8501
8501
|
reasonToAssign: string | null;
|
|
@@ -8602,28 +8602,6 @@ export declare const ticketContract: {
|
|
|
8602
8602
|
createdAt: Date;
|
|
8603
8603
|
updatedAt: Date;
|
|
8604
8604
|
deletedAt: Date | null;
|
|
8605
|
-
categories: {
|
|
8606
|
-
id: string;
|
|
8607
|
-
value: string;
|
|
8608
|
-
createdAt: Date;
|
|
8609
|
-
updatedAt: Date;
|
|
8610
|
-
deletedAt: Date | null;
|
|
8611
|
-
level: 2 | 1 | 3;
|
|
8612
|
-
parentId: string | null;
|
|
8613
|
-
childCategoryList: {
|
|
8614
|
-
id: string;
|
|
8615
|
-
value: string;
|
|
8616
|
-
level: 2 | 1 | 3;
|
|
8617
|
-
parentId: string | null;
|
|
8618
|
-
childCategoryList: {
|
|
8619
|
-
id: string;
|
|
8620
|
-
value: string;
|
|
8621
|
-
level: 2 | 1 | 3;
|
|
8622
|
-
parentId: string | null;
|
|
8623
|
-
childCategoryList: any[];
|
|
8624
|
-
}[];
|
|
8625
|
-
}[];
|
|
8626
|
-
}[];
|
|
8627
8605
|
contact: {
|
|
8628
8606
|
name: string;
|
|
8629
8607
|
id: string;
|
|
@@ -8840,6 +8818,28 @@ export declare const ticketContract: {
|
|
|
8840
8818
|
};
|
|
8841
8819
|
}[];
|
|
8842
8820
|
contactId: string;
|
|
8821
|
+
categories: {
|
|
8822
|
+
id: string;
|
|
8823
|
+
value: string;
|
|
8824
|
+
createdAt: Date;
|
|
8825
|
+
updatedAt: Date;
|
|
8826
|
+
deletedAt: Date | null;
|
|
8827
|
+
level: 2 | 1 | 3;
|
|
8828
|
+
parentId: string | null;
|
|
8829
|
+
childCategoryList: {
|
|
8830
|
+
id: string;
|
|
8831
|
+
value: string;
|
|
8832
|
+
level: 2 | 1 | 3;
|
|
8833
|
+
parentId: string | null;
|
|
8834
|
+
childCategoryList: {
|
|
8835
|
+
id: string;
|
|
8836
|
+
value: string;
|
|
8837
|
+
level: 2 | 1 | 3;
|
|
8838
|
+
parentId: string | null;
|
|
8839
|
+
childCategoryList: any[];
|
|
8840
|
+
}[];
|
|
8841
|
+
}[];
|
|
8842
|
+
}[];
|
|
8843
8843
|
assigneeId: string;
|
|
8844
8844
|
creatorId: string;
|
|
8845
8845
|
reasonToAssign: string | null;
|
|
@@ -9020,28 +9020,6 @@ export declare const ticketContract: {
|
|
|
9020
9020
|
createdAt: Date;
|
|
9021
9021
|
updatedAt: Date;
|
|
9022
9022
|
deletedAt: Date | null;
|
|
9023
|
-
categories: {
|
|
9024
|
-
id: string;
|
|
9025
|
-
value: string;
|
|
9026
|
-
createdAt: Date;
|
|
9027
|
-
updatedAt: Date;
|
|
9028
|
-
deletedAt: Date | null;
|
|
9029
|
-
level: 2 | 1 | 3;
|
|
9030
|
-
parentId: string | null;
|
|
9031
|
-
childCategoryList: {
|
|
9032
|
-
id: string;
|
|
9033
|
-
value: string;
|
|
9034
|
-
level: 2 | 1 | 3;
|
|
9035
|
-
parentId: string | null;
|
|
9036
|
-
childCategoryList: {
|
|
9037
|
-
id: string;
|
|
9038
|
-
value: string;
|
|
9039
|
-
level: 2 | 1 | 3;
|
|
9040
|
-
parentId: string | null;
|
|
9041
|
-
childCategoryList: any[];
|
|
9042
|
-
}[];
|
|
9043
|
-
}[];
|
|
9044
|
-
}[];
|
|
9045
9023
|
contact: {
|
|
9046
9024
|
name: string;
|
|
9047
9025
|
id: string;
|
|
@@ -9258,6 +9236,28 @@ export declare const ticketContract: {
|
|
|
9258
9236
|
};
|
|
9259
9237
|
}[];
|
|
9260
9238
|
contactId: string;
|
|
9239
|
+
categories: {
|
|
9240
|
+
id: string;
|
|
9241
|
+
value: string;
|
|
9242
|
+
createdAt: Date;
|
|
9243
|
+
updatedAt: Date;
|
|
9244
|
+
deletedAt: Date | null;
|
|
9245
|
+
level: 2 | 1 | 3;
|
|
9246
|
+
parentId: string | null;
|
|
9247
|
+
childCategoryList: {
|
|
9248
|
+
id: string;
|
|
9249
|
+
value: string;
|
|
9250
|
+
level: 2 | 1 | 3;
|
|
9251
|
+
parentId: string | null;
|
|
9252
|
+
childCategoryList: {
|
|
9253
|
+
id: string;
|
|
9254
|
+
value: string;
|
|
9255
|
+
level: 2 | 1 | 3;
|
|
9256
|
+
parentId: string | null;
|
|
9257
|
+
childCategoryList: any[];
|
|
9258
|
+
}[];
|
|
9259
|
+
}[];
|
|
9260
|
+
}[];
|
|
9261
9261
|
assigneeId: string;
|
|
9262
9262
|
creatorId: string;
|
|
9263
9263
|
reasonToAssign: string | null;
|
|
@@ -9361,28 +9361,6 @@ export declare const ticketContract: {
|
|
|
9361
9361
|
createdAt: Date;
|
|
9362
9362
|
updatedAt: Date;
|
|
9363
9363
|
deletedAt: Date | null;
|
|
9364
|
-
categories: {
|
|
9365
|
-
id: string;
|
|
9366
|
-
value: string;
|
|
9367
|
-
createdAt: Date;
|
|
9368
|
-
updatedAt: Date;
|
|
9369
|
-
deletedAt: Date | null;
|
|
9370
|
-
level: 2 | 1 | 3;
|
|
9371
|
-
parentId: string | null;
|
|
9372
|
-
childCategoryList: {
|
|
9373
|
-
id: string;
|
|
9374
|
-
value: string;
|
|
9375
|
-
level: 2 | 1 | 3;
|
|
9376
|
-
parentId: string | null;
|
|
9377
|
-
childCategoryList: {
|
|
9378
|
-
id: string;
|
|
9379
|
-
value: string;
|
|
9380
|
-
level: 2 | 1 | 3;
|
|
9381
|
-
parentId: string | null;
|
|
9382
|
-
childCategoryList: any[];
|
|
9383
|
-
}[];
|
|
9384
|
-
}[];
|
|
9385
|
-
}[];
|
|
9386
9364
|
contact: {
|
|
9387
9365
|
name: string;
|
|
9388
9366
|
id: string;
|
|
@@ -9599,6 +9577,28 @@ export declare const ticketContract: {
|
|
|
9599
9577
|
};
|
|
9600
9578
|
}[];
|
|
9601
9579
|
contactId: string;
|
|
9580
|
+
categories: {
|
|
9581
|
+
id: string;
|
|
9582
|
+
value: string;
|
|
9583
|
+
createdAt: Date;
|
|
9584
|
+
updatedAt: Date;
|
|
9585
|
+
deletedAt: Date | null;
|
|
9586
|
+
level: 2 | 1 | 3;
|
|
9587
|
+
parentId: string | null;
|
|
9588
|
+
childCategoryList: {
|
|
9589
|
+
id: string;
|
|
9590
|
+
value: string;
|
|
9591
|
+
level: 2 | 1 | 3;
|
|
9592
|
+
parentId: string | null;
|
|
9593
|
+
childCategoryList: {
|
|
9594
|
+
id: string;
|
|
9595
|
+
value: string;
|
|
9596
|
+
level: 2 | 1 | 3;
|
|
9597
|
+
parentId: string | null;
|
|
9598
|
+
childCategoryList: any[];
|
|
9599
|
+
}[];
|
|
9600
|
+
}[];
|
|
9601
|
+
}[];
|
|
9602
9602
|
assigneeId: string;
|
|
9603
9603
|
creatorId: string;
|
|
9604
9604
|
reasonToAssign: string | null;
|
|
@@ -9704,28 +9704,6 @@ export declare const ticketContract: {
|
|
|
9704
9704
|
createdAt: Date;
|
|
9705
9705
|
updatedAt: Date;
|
|
9706
9706
|
deletedAt: Date | null;
|
|
9707
|
-
categories: {
|
|
9708
|
-
id: string;
|
|
9709
|
-
value: string;
|
|
9710
|
-
createdAt: Date;
|
|
9711
|
-
updatedAt: Date;
|
|
9712
|
-
deletedAt: Date | null;
|
|
9713
|
-
level: 2 | 1 | 3;
|
|
9714
|
-
parentId: string | null;
|
|
9715
|
-
childCategoryList: {
|
|
9716
|
-
id: string;
|
|
9717
|
-
value: string;
|
|
9718
|
-
level: 2 | 1 | 3;
|
|
9719
|
-
parentId: string | null;
|
|
9720
|
-
childCategoryList: {
|
|
9721
|
-
id: string;
|
|
9722
|
-
value: string;
|
|
9723
|
-
level: 2 | 1 | 3;
|
|
9724
|
-
parentId: string | null;
|
|
9725
|
-
childCategoryList: any[];
|
|
9726
|
-
}[];
|
|
9727
|
-
}[];
|
|
9728
|
-
}[];
|
|
9729
9707
|
contact: {
|
|
9730
9708
|
name: string;
|
|
9731
9709
|
id: string;
|
|
@@ -9942,6 +9920,28 @@ export declare const ticketContract: {
|
|
|
9942
9920
|
};
|
|
9943
9921
|
}[];
|
|
9944
9922
|
contactId: string;
|
|
9923
|
+
categories: {
|
|
9924
|
+
id: string;
|
|
9925
|
+
value: string;
|
|
9926
|
+
createdAt: Date;
|
|
9927
|
+
updatedAt: Date;
|
|
9928
|
+
deletedAt: Date | null;
|
|
9929
|
+
level: 2 | 1 | 3;
|
|
9930
|
+
parentId: string | null;
|
|
9931
|
+
childCategoryList: {
|
|
9932
|
+
id: string;
|
|
9933
|
+
value: string;
|
|
9934
|
+
level: 2 | 1 | 3;
|
|
9935
|
+
parentId: string | null;
|
|
9936
|
+
childCategoryList: {
|
|
9937
|
+
id: string;
|
|
9938
|
+
value: string;
|
|
9939
|
+
level: 2 | 1 | 3;
|
|
9940
|
+
parentId: string | null;
|
|
9941
|
+
childCategoryList: any[];
|
|
9942
|
+
}[];
|
|
9943
|
+
}[];
|
|
9944
|
+
}[];
|
|
9945
9945
|
assigneeId: string;
|
|
9946
9946
|
creatorId: string;
|
|
9947
9947
|
reasonToAssign: string | null;
|
|
@@ -10049,30 +10049,8 @@ export declare const ticketContract: {
|
|
|
10049
10049
|
description: string | null;
|
|
10050
10050
|
status: string;
|
|
10051
10051
|
createdAt: Date;
|
|
10052
|
-
updatedAt: Date;
|
|
10053
|
-
deletedAt: Date | null;
|
|
10054
|
-
categories: {
|
|
10055
|
-
id: string;
|
|
10056
|
-
value: string;
|
|
10057
|
-
createdAt: Date;
|
|
10058
|
-
updatedAt: Date;
|
|
10059
|
-
deletedAt: Date | null;
|
|
10060
|
-
level: 2 | 1 | 3;
|
|
10061
|
-
parentId: string | null;
|
|
10062
|
-
childCategoryList: {
|
|
10063
|
-
id: string;
|
|
10064
|
-
value: string;
|
|
10065
|
-
level: 2 | 1 | 3;
|
|
10066
|
-
parentId: string | null;
|
|
10067
|
-
childCategoryList: {
|
|
10068
|
-
id: string;
|
|
10069
|
-
value: string;
|
|
10070
|
-
level: 2 | 1 | 3;
|
|
10071
|
-
parentId: string | null;
|
|
10072
|
-
childCategoryList: any[];
|
|
10073
|
-
}[];
|
|
10074
|
-
}[];
|
|
10075
|
-
}[];
|
|
10052
|
+
updatedAt: Date;
|
|
10053
|
+
deletedAt: Date | null;
|
|
10076
10054
|
contact: {
|
|
10077
10055
|
name: string;
|
|
10078
10056
|
id: string;
|
|
@@ -10289,6 +10267,28 @@ export declare const ticketContract: {
|
|
|
10289
10267
|
};
|
|
10290
10268
|
}[];
|
|
10291
10269
|
contactId: string;
|
|
10270
|
+
categories: {
|
|
10271
|
+
id: string;
|
|
10272
|
+
value: string;
|
|
10273
|
+
createdAt: Date;
|
|
10274
|
+
updatedAt: Date;
|
|
10275
|
+
deletedAt: Date | null;
|
|
10276
|
+
level: 2 | 1 | 3;
|
|
10277
|
+
parentId: string | null;
|
|
10278
|
+
childCategoryList: {
|
|
10279
|
+
id: string;
|
|
10280
|
+
value: string;
|
|
10281
|
+
level: 2 | 1 | 3;
|
|
10282
|
+
parentId: string | null;
|
|
10283
|
+
childCategoryList: {
|
|
10284
|
+
id: string;
|
|
10285
|
+
value: string;
|
|
10286
|
+
level: 2 | 1 | 3;
|
|
10287
|
+
parentId: string | null;
|
|
10288
|
+
childCategoryList: any[];
|
|
10289
|
+
}[];
|
|
10290
|
+
}[];
|
|
10291
|
+
}[];
|
|
10292
10292
|
assigneeId: string;
|
|
10293
10293
|
creatorId: string;
|
|
10294
10294
|
reasonToAssign: string | null;
|
|
@@ -10400,28 +10400,6 @@ export declare const ticketContract: {
|
|
|
10400
10400
|
createdAt: Date;
|
|
10401
10401
|
updatedAt: Date;
|
|
10402
10402
|
deletedAt: Date | null;
|
|
10403
|
-
categories: {
|
|
10404
|
-
id: string;
|
|
10405
|
-
value: string;
|
|
10406
|
-
createdAt: Date;
|
|
10407
|
-
updatedAt: Date;
|
|
10408
|
-
deletedAt: Date | null;
|
|
10409
|
-
level: 2 | 1 | 3;
|
|
10410
|
-
parentId: string | null;
|
|
10411
|
-
childCategoryList: {
|
|
10412
|
-
id: string;
|
|
10413
|
-
value: string;
|
|
10414
|
-
level: 2 | 1 | 3;
|
|
10415
|
-
parentId: string | null;
|
|
10416
|
-
childCategoryList: {
|
|
10417
|
-
id: string;
|
|
10418
|
-
value: string;
|
|
10419
|
-
level: 2 | 1 | 3;
|
|
10420
|
-
parentId: string | null;
|
|
10421
|
-
childCategoryList: any[];
|
|
10422
|
-
}[];
|
|
10423
|
-
}[];
|
|
10424
|
-
}[];
|
|
10425
10403
|
contact: {
|
|
10426
10404
|
name: string;
|
|
10427
10405
|
id: string;
|
|
@@ -10638,6 +10616,28 @@ export declare const ticketContract: {
|
|
|
10638
10616
|
};
|
|
10639
10617
|
}[];
|
|
10640
10618
|
contactId: string;
|
|
10619
|
+
categories: {
|
|
10620
|
+
id: string;
|
|
10621
|
+
value: string;
|
|
10622
|
+
createdAt: Date;
|
|
10623
|
+
updatedAt: Date;
|
|
10624
|
+
deletedAt: Date | null;
|
|
10625
|
+
level: 2 | 1 | 3;
|
|
10626
|
+
parentId: string | null;
|
|
10627
|
+
childCategoryList: {
|
|
10628
|
+
id: string;
|
|
10629
|
+
value: string;
|
|
10630
|
+
level: 2 | 1 | 3;
|
|
10631
|
+
parentId: string | null;
|
|
10632
|
+
childCategoryList: {
|
|
10633
|
+
id: string;
|
|
10634
|
+
value: string;
|
|
10635
|
+
level: 2 | 1 | 3;
|
|
10636
|
+
parentId: string | null;
|
|
10637
|
+
childCategoryList: any[];
|
|
10638
|
+
}[];
|
|
10639
|
+
}[];
|
|
10640
|
+
}[];
|
|
10641
10641
|
assigneeId: string;
|
|
10642
10642
|
creatorId: string;
|
|
10643
10643
|
reasonToAssign: string | null;
|
|
@@ -10750,28 +10750,6 @@ export declare const ticketContract: {
|
|
|
10750
10750
|
createdAt: Date;
|
|
10751
10751
|
updatedAt: Date;
|
|
10752
10752
|
deletedAt: Date | null;
|
|
10753
|
-
categories: {
|
|
10754
|
-
id: string;
|
|
10755
|
-
value: string;
|
|
10756
|
-
createdAt: Date;
|
|
10757
|
-
updatedAt: Date;
|
|
10758
|
-
deletedAt: Date | null;
|
|
10759
|
-
level: 2 | 1 | 3;
|
|
10760
|
-
parentId: string | null;
|
|
10761
|
-
childCategoryList: {
|
|
10762
|
-
id: string;
|
|
10763
|
-
value: string;
|
|
10764
|
-
level: 2 | 1 | 3;
|
|
10765
|
-
parentId: string | null;
|
|
10766
|
-
childCategoryList: {
|
|
10767
|
-
id: string;
|
|
10768
|
-
value: string;
|
|
10769
|
-
level: 2 | 1 | 3;
|
|
10770
|
-
parentId: string | null;
|
|
10771
|
-
childCategoryList: any[];
|
|
10772
|
-
}[];
|
|
10773
|
-
}[];
|
|
10774
|
-
}[];
|
|
10775
10753
|
contact: {
|
|
10776
10754
|
name: string;
|
|
10777
10755
|
id: string;
|
|
@@ -10988,6 +10966,28 @@ export declare const ticketContract: {
|
|
|
10988
10966
|
};
|
|
10989
10967
|
}[];
|
|
10990
10968
|
contactId: string;
|
|
10969
|
+
categories: {
|
|
10970
|
+
id: string;
|
|
10971
|
+
value: string;
|
|
10972
|
+
createdAt: Date;
|
|
10973
|
+
updatedAt: Date;
|
|
10974
|
+
deletedAt: Date | null;
|
|
10975
|
+
level: 2 | 1 | 3;
|
|
10976
|
+
parentId: string | null;
|
|
10977
|
+
childCategoryList: {
|
|
10978
|
+
id: string;
|
|
10979
|
+
value: string;
|
|
10980
|
+
level: 2 | 1 | 3;
|
|
10981
|
+
parentId: string | null;
|
|
10982
|
+
childCategoryList: {
|
|
10983
|
+
id: string;
|
|
10984
|
+
value: string;
|
|
10985
|
+
level: 2 | 1 | 3;
|
|
10986
|
+
parentId: string | null;
|
|
10987
|
+
childCategoryList: any[];
|
|
10988
|
+
}[];
|
|
10989
|
+
}[];
|
|
10990
|
+
}[];
|
|
10991
10991
|
assigneeId: string;
|
|
10992
10992
|
creatorId: string;
|
|
10993
10993
|
reasonToAssign: string | null;
|
|
@@ -11233,11 +11233,6 @@ export declare const ticketContract: {
|
|
|
11233
11233
|
status: {
|
|
11234
11234
|
[x: string]: any;
|
|
11235
11235
|
};
|
|
11236
|
-
categories: {
|
|
11237
|
-
value: string[];
|
|
11238
|
-
isRequired: boolean;
|
|
11239
|
-
attributeId: string;
|
|
11240
|
-
};
|
|
11241
11236
|
contact: {
|
|
11242
11237
|
[x: string]: any;
|
|
11243
11238
|
};
|
|
@@ -11247,6 +11242,11 @@ export declare const ticketContract: {
|
|
|
11247
11242
|
tags: {
|
|
11248
11243
|
[x: string]: any;
|
|
11249
11244
|
};
|
|
11245
|
+
categories: {
|
|
11246
|
+
value: string[];
|
|
11247
|
+
isRequired: boolean;
|
|
11248
|
+
attributeId: string;
|
|
11249
|
+
};
|
|
11250
11250
|
assignee: {
|
|
11251
11251
|
value: string;
|
|
11252
11252
|
isRequired: boolean;
|
|
@@ -11274,11 +11274,6 @@ export declare const ticketContract: {
|
|
|
11274
11274
|
status: {
|
|
11275
11275
|
[x: string]: any;
|
|
11276
11276
|
};
|
|
11277
|
-
categories: {
|
|
11278
|
-
value: string[];
|
|
11279
|
-
isRequired: boolean;
|
|
11280
|
-
attributeId: string;
|
|
11281
|
-
};
|
|
11282
11277
|
contact: {
|
|
11283
11278
|
[x: string]: any;
|
|
11284
11279
|
};
|
|
@@ -11288,6 +11283,11 @@ export declare const ticketContract: {
|
|
|
11288
11283
|
tags: {
|
|
11289
11284
|
[x: string]: any;
|
|
11290
11285
|
};
|
|
11286
|
+
categories: {
|
|
11287
|
+
value: string[];
|
|
11288
|
+
isRequired: boolean;
|
|
11289
|
+
attributeId: string;
|
|
11290
|
+
};
|
|
11291
11291
|
assignee: {
|
|
11292
11292
|
value: string;
|
|
11293
11293
|
isRequired: boolean;
|
|
@@ -13180,28 +13180,6 @@ export declare const ticketContract: {
|
|
|
13180
13180
|
createdAt: Date;
|
|
13181
13181
|
updatedAt: Date;
|
|
13182
13182
|
deletedAt: Date | null;
|
|
13183
|
-
categories: {
|
|
13184
|
-
id: string;
|
|
13185
|
-
value: string;
|
|
13186
|
-
createdAt: Date;
|
|
13187
|
-
updatedAt: Date;
|
|
13188
|
-
deletedAt: Date | null;
|
|
13189
|
-
level: 2 | 1 | 3;
|
|
13190
|
-
parentId: string | null;
|
|
13191
|
-
childCategoryList: {
|
|
13192
|
-
id: string;
|
|
13193
|
-
value: string;
|
|
13194
|
-
level: 2 | 1 | 3;
|
|
13195
|
-
parentId: string | null;
|
|
13196
|
-
childCategoryList: {
|
|
13197
|
-
id: string;
|
|
13198
|
-
value: string;
|
|
13199
|
-
level: 2 | 1 | 3;
|
|
13200
|
-
parentId: string | null;
|
|
13201
|
-
childCategoryList: any[];
|
|
13202
|
-
}[];
|
|
13203
|
-
}[];
|
|
13204
|
-
}[];
|
|
13205
13183
|
contact: {
|
|
13206
13184
|
name: string;
|
|
13207
13185
|
id: string;
|
|
@@ -13418,6 +13396,28 @@ export declare const ticketContract: {
|
|
|
13418
13396
|
};
|
|
13419
13397
|
}[];
|
|
13420
13398
|
contactId: string;
|
|
13399
|
+
categories: {
|
|
13400
|
+
id: string;
|
|
13401
|
+
value: string;
|
|
13402
|
+
createdAt: Date;
|
|
13403
|
+
updatedAt: Date;
|
|
13404
|
+
deletedAt: Date | null;
|
|
13405
|
+
level: 2 | 1 | 3;
|
|
13406
|
+
parentId: string | null;
|
|
13407
|
+
childCategoryList: {
|
|
13408
|
+
id: string;
|
|
13409
|
+
value: string;
|
|
13410
|
+
level: 2 | 1 | 3;
|
|
13411
|
+
parentId: string | null;
|
|
13412
|
+
childCategoryList: {
|
|
13413
|
+
id: string;
|
|
13414
|
+
value: string;
|
|
13415
|
+
level: 2 | 1 | 3;
|
|
13416
|
+
parentId: string | null;
|
|
13417
|
+
childCategoryList: any[];
|
|
13418
|
+
}[];
|
|
13419
|
+
}[];
|
|
13420
|
+
}[];
|
|
13421
13421
|
assigneeId: string;
|
|
13422
13422
|
creatorId: string;
|
|
13423
13423
|
reasonToAssign: string | null;
|
|
@@ -13521,28 +13521,6 @@ export declare const ticketContract: {
|
|
|
13521
13521
|
createdAt: Date;
|
|
13522
13522
|
updatedAt: Date;
|
|
13523
13523
|
deletedAt: Date | null;
|
|
13524
|
-
categories: {
|
|
13525
|
-
id: string;
|
|
13526
|
-
value: string;
|
|
13527
|
-
createdAt: Date;
|
|
13528
|
-
updatedAt: Date;
|
|
13529
|
-
deletedAt: Date | null;
|
|
13530
|
-
level: 2 | 1 | 3;
|
|
13531
|
-
parentId: string | null;
|
|
13532
|
-
childCategoryList: {
|
|
13533
|
-
id: string;
|
|
13534
|
-
value: string;
|
|
13535
|
-
level: 2 | 1 | 3;
|
|
13536
|
-
parentId: string | null;
|
|
13537
|
-
childCategoryList: {
|
|
13538
|
-
id: string;
|
|
13539
|
-
value: string;
|
|
13540
|
-
level: 2 | 1 | 3;
|
|
13541
|
-
parentId: string | null;
|
|
13542
|
-
childCategoryList: any[];
|
|
13543
|
-
}[];
|
|
13544
|
-
}[];
|
|
13545
|
-
}[];
|
|
13546
13524
|
contact: {
|
|
13547
13525
|
name: string;
|
|
13548
13526
|
id: string;
|
|
@@ -13759,6 +13737,28 @@ export declare const ticketContract: {
|
|
|
13759
13737
|
};
|
|
13760
13738
|
}[];
|
|
13761
13739
|
contactId: string;
|
|
13740
|
+
categories: {
|
|
13741
|
+
id: string;
|
|
13742
|
+
value: string;
|
|
13743
|
+
createdAt: Date;
|
|
13744
|
+
updatedAt: Date;
|
|
13745
|
+
deletedAt: Date | null;
|
|
13746
|
+
level: 2 | 1 | 3;
|
|
13747
|
+
parentId: string | null;
|
|
13748
|
+
childCategoryList: {
|
|
13749
|
+
id: string;
|
|
13750
|
+
value: string;
|
|
13751
|
+
level: 2 | 1 | 3;
|
|
13752
|
+
parentId: string | null;
|
|
13753
|
+
childCategoryList: {
|
|
13754
|
+
id: string;
|
|
13755
|
+
value: string;
|
|
13756
|
+
level: 2 | 1 | 3;
|
|
13757
|
+
parentId: string | null;
|
|
13758
|
+
childCategoryList: any[];
|
|
13759
|
+
}[];
|
|
13760
|
+
}[];
|
|
13761
|
+
}[];
|
|
13762
13762
|
assigneeId: string;
|
|
13763
13763
|
creatorId: string;
|
|
13764
13764
|
reasonToAssign: string | null;
|
|
@@ -13850,42 +13850,20 @@ export declare const ticketContract: {
|
|
|
13850
13850
|
telephonySignature: string | null;
|
|
13851
13851
|
};
|
|
13852
13852
|
} | null | undefined;
|
|
13853
|
-
ticketNumber?: number | undefined;
|
|
13854
|
-
}>;
|
|
13855
|
-
}, "strip", z.ZodTypeAny, {
|
|
13856
|
-
data: {
|
|
13857
|
-
type: string;
|
|
13858
|
-
id: string;
|
|
13859
|
-
channel: string;
|
|
13860
|
-
priority: string;
|
|
13861
|
-
title: string;
|
|
13862
|
-
description: string | null;
|
|
13863
|
-
status: string;
|
|
13864
|
-
createdAt: Date;
|
|
13865
|
-
updatedAt: Date;
|
|
13866
|
-
deletedAt: Date | null;
|
|
13867
|
-
categories: {
|
|
13868
|
-
id: string;
|
|
13869
|
-
value: string;
|
|
13870
|
-
createdAt: Date;
|
|
13871
|
-
updatedAt: Date;
|
|
13872
|
-
deletedAt: Date | null;
|
|
13873
|
-
level: 2 | 1 | 3;
|
|
13874
|
-
parentId: string | null;
|
|
13875
|
-
childCategoryList: {
|
|
13876
|
-
id: string;
|
|
13877
|
-
value: string;
|
|
13878
|
-
level: 2 | 1 | 3;
|
|
13879
|
-
parentId: string | null;
|
|
13880
|
-
childCategoryList: {
|
|
13881
|
-
id: string;
|
|
13882
|
-
value: string;
|
|
13883
|
-
level: 2 | 1 | 3;
|
|
13884
|
-
parentId: string | null;
|
|
13885
|
-
childCategoryList: any[];
|
|
13886
|
-
}[];
|
|
13887
|
-
}[];
|
|
13888
|
-
}[];
|
|
13853
|
+
ticketNumber?: number | undefined;
|
|
13854
|
+
}>;
|
|
13855
|
+
}, "strip", z.ZodTypeAny, {
|
|
13856
|
+
data: {
|
|
13857
|
+
type: string;
|
|
13858
|
+
id: string;
|
|
13859
|
+
channel: string;
|
|
13860
|
+
priority: string;
|
|
13861
|
+
title: string;
|
|
13862
|
+
description: string | null;
|
|
13863
|
+
status: string;
|
|
13864
|
+
createdAt: Date;
|
|
13865
|
+
updatedAt: Date;
|
|
13866
|
+
deletedAt: Date | null;
|
|
13889
13867
|
contact: {
|
|
13890
13868
|
name: string;
|
|
13891
13869
|
id: string;
|
|
@@ -14102,6 +14080,28 @@ export declare const ticketContract: {
|
|
|
14102
14080
|
};
|
|
14103
14081
|
}[];
|
|
14104
14082
|
contactId: string;
|
|
14083
|
+
categories: {
|
|
14084
|
+
id: string;
|
|
14085
|
+
value: string;
|
|
14086
|
+
createdAt: Date;
|
|
14087
|
+
updatedAt: Date;
|
|
14088
|
+
deletedAt: Date | null;
|
|
14089
|
+
level: 2 | 1 | 3;
|
|
14090
|
+
parentId: string | null;
|
|
14091
|
+
childCategoryList: {
|
|
14092
|
+
id: string;
|
|
14093
|
+
value: string;
|
|
14094
|
+
level: 2 | 1 | 3;
|
|
14095
|
+
parentId: string | null;
|
|
14096
|
+
childCategoryList: {
|
|
14097
|
+
id: string;
|
|
14098
|
+
value: string;
|
|
14099
|
+
level: 2 | 1 | 3;
|
|
14100
|
+
parentId: string | null;
|
|
14101
|
+
childCategoryList: any[];
|
|
14102
|
+
}[];
|
|
14103
|
+
}[];
|
|
14104
|
+
}[];
|
|
14105
14105
|
assigneeId: string;
|
|
14106
14106
|
creatorId: string;
|
|
14107
14107
|
reasonToAssign: string | null;
|
|
@@ -14208,28 +14208,6 @@ export declare const ticketContract: {
|
|
|
14208
14208
|
createdAt: Date;
|
|
14209
14209
|
updatedAt: Date;
|
|
14210
14210
|
deletedAt: Date | null;
|
|
14211
|
-
categories: {
|
|
14212
|
-
id: string;
|
|
14213
|
-
value: string;
|
|
14214
|
-
createdAt: Date;
|
|
14215
|
-
updatedAt: Date;
|
|
14216
|
-
deletedAt: Date | null;
|
|
14217
|
-
level: 2 | 1 | 3;
|
|
14218
|
-
parentId: string | null;
|
|
14219
|
-
childCategoryList: {
|
|
14220
|
-
id: string;
|
|
14221
|
-
value: string;
|
|
14222
|
-
level: 2 | 1 | 3;
|
|
14223
|
-
parentId: string | null;
|
|
14224
|
-
childCategoryList: {
|
|
14225
|
-
id: string;
|
|
14226
|
-
value: string;
|
|
14227
|
-
level: 2 | 1 | 3;
|
|
14228
|
-
parentId: string | null;
|
|
14229
|
-
childCategoryList: any[];
|
|
14230
|
-
}[];
|
|
14231
|
-
}[];
|
|
14232
|
-
}[];
|
|
14233
14211
|
contact: {
|
|
14234
14212
|
name: string;
|
|
14235
14213
|
id: string;
|
|
@@ -14446,6 +14424,28 @@ export declare const ticketContract: {
|
|
|
14446
14424
|
};
|
|
14447
14425
|
}[];
|
|
14448
14426
|
contactId: string;
|
|
14427
|
+
categories: {
|
|
14428
|
+
id: string;
|
|
14429
|
+
value: string;
|
|
14430
|
+
createdAt: Date;
|
|
14431
|
+
updatedAt: Date;
|
|
14432
|
+
deletedAt: Date | null;
|
|
14433
|
+
level: 2 | 1 | 3;
|
|
14434
|
+
parentId: string | null;
|
|
14435
|
+
childCategoryList: {
|
|
14436
|
+
id: string;
|
|
14437
|
+
value: string;
|
|
14438
|
+
level: 2 | 1 | 3;
|
|
14439
|
+
parentId: string | null;
|
|
14440
|
+
childCategoryList: {
|
|
14441
|
+
id: string;
|
|
14442
|
+
value: string;
|
|
14443
|
+
level: 2 | 1 | 3;
|
|
14444
|
+
parentId: string | null;
|
|
14445
|
+
childCategoryList: any[];
|
|
14446
|
+
}[];
|
|
14447
|
+
}[];
|
|
14448
|
+
}[];
|
|
14449
14449
|
assigneeId: string;
|
|
14450
14450
|
creatorId: string;
|
|
14451
14451
|
reasonToAssign: string | null;
|
|
@@ -17245,28 +17245,6 @@ export declare const ticketContract: {
|
|
|
17245
17245
|
createdAt: Date;
|
|
17246
17246
|
updatedAt: Date;
|
|
17247
17247
|
deletedAt: Date | null;
|
|
17248
|
-
categories: {
|
|
17249
|
-
id: string;
|
|
17250
|
-
value: string;
|
|
17251
|
-
createdAt: Date;
|
|
17252
|
-
updatedAt: Date;
|
|
17253
|
-
deletedAt: Date | null;
|
|
17254
|
-
level: 2 | 1 | 3;
|
|
17255
|
-
parentId: string | null;
|
|
17256
|
-
childCategoryList: {
|
|
17257
|
-
id: string;
|
|
17258
|
-
value: string;
|
|
17259
|
-
level: 2 | 1 | 3;
|
|
17260
|
-
parentId: string | null;
|
|
17261
|
-
childCategoryList: {
|
|
17262
|
-
id: string;
|
|
17263
|
-
value: string;
|
|
17264
|
-
level: 2 | 1 | 3;
|
|
17265
|
-
parentId: string | null;
|
|
17266
|
-
childCategoryList: any[];
|
|
17267
|
-
}[];
|
|
17268
|
-
}[];
|
|
17269
|
-
}[];
|
|
17270
17248
|
contact: {
|
|
17271
17249
|
name: string;
|
|
17272
17250
|
id: string;
|
|
@@ -17483,6 +17461,28 @@ export declare const ticketContract: {
|
|
|
17483
17461
|
};
|
|
17484
17462
|
}[];
|
|
17485
17463
|
contactId: string;
|
|
17464
|
+
categories: {
|
|
17465
|
+
id: string;
|
|
17466
|
+
value: string;
|
|
17467
|
+
createdAt: Date;
|
|
17468
|
+
updatedAt: Date;
|
|
17469
|
+
deletedAt: Date | null;
|
|
17470
|
+
level: 2 | 1 | 3;
|
|
17471
|
+
parentId: string | null;
|
|
17472
|
+
childCategoryList: {
|
|
17473
|
+
id: string;
|
|
17474
|
+
value: string;
|
|
17475
|
+
level: 2 | 1 | 3;
|
|
17476
|
+
parentId: string | null;
|
|
17477
|
+
childCategoryList: {
|
|
17478
|
+
id: string;
|
|
17479
|
+
value: string;
|
|
17480
|
+
level: 2 | 1 | 3;
|
|
17481
|
+
parentId: string | null;
|
|
17482
|
+
childCategoryList: any[];
|
|
17483
|
+
}[];
|
|
17484
|
+
}[];
|
|
17485
|
+
}[];
|
|
17486
17486
|
assigneeId: string;
|
|
17487
17487
|
creatorId: string;
|
|
17488
17488
|
reasonToAssign: string | null;
|
|
@@ -17586,28 +17586,6 @@ export declare const ticketContract: {
|
|
|
17586
17586
|
createdAt: Date;
|
|
17587
17587
|
updatedAt: Date;
|
|
17588
17588
|
deletedAt: Date | null;
|
|
17589
|
-
categories: {
|
|
17590
|
-
id: string;
|
|
17591
|
-
value: string;
|
|
17592
|
-
createdAt: Date;
|
|
17593
|
-
updatedAt: Date;
|
|
17594
|
-
deletedAt: Date | null;
|
|
17595
|
-
level: 2 | 1 | 3;
|
|
17596
|
-
parentId: string | null;
|
|
17597
|
-
childCategoryList: {
|
|
17598
|
-
id: string;
|
|
17599
|
-
value: string;
|
|
17600
|
-
level: 2 | 1 | 3;
|
|
17601
|
-
parentId: string | null;
|
|
17602
|
-
childCategoryList: {
|
|
17603
|
-
id: string;
|
|
17604
|
-
value: string;
|
|
17605
|
-
level: 2 | 1 | 3;
|
|
17606
|
-
parentId: string | null;
|
|
17607
|
-
childCategoryList: any[];
|
|
17608
|
-
}[];
|
|
17609
|
-
}[];
|
|
17610
|
-
}[];
|
|
17611
17589
|
contact: {
|
|
17612
17590
|
name: string;
|
|
17613
17591
|
id: string;
|
|
@@ -17824,6 +17802,28 @@ export declare const ticketContract: {
|
|
|
17824
17802
|
};
|
|
17825
17803
|
}[];
|
|
17826
17804
|
contactId: string;
|
|
17805
|
+
categories: {
|
|
17806
|
+
id: string;
|
|
17807
|
+
value: string;
|
|
17808
|
+
createdAt: Date;
|
|
17809
|
+
updatedAt: Date;
|
|
17810
|
+
deletedAt: Date | null;
|
|
17811
|
+
level: 2 | 1 | 3;
|
|
17812
|
+
parentId: string | null;
|
|
17813
|
+
childCategoryList: {
|
|
17814
|
+
id: string;
|
|
17815
|
+
value: string;
|
|
17816
|
+
level: 2 | 1 | 3;
|
|
17817
|
+
parentId: string | null;
|
|
17818
|
+
childCategoryList: {
|
|
17819
|
+
id: string;
|
|
17820
|
+
value: string;
|
|
17821
|
+
level: 2 | 1 | 3;
|
|
17822
|
+
parentId: string | null;
|
|
17823
|
+
childCategoryList: any[];
|
|
17824
|
+
}[];
|
|
17825
|
+
}[];
|
|
17826
|
+
}[];
|
|
17827
17827
|
assigneeId: string;
|
|
17828
17828
|
creatorId: string;
|
|
17829
17829
|
reasonToAssign: string | null;
|
|
@@ -17929,28 +17929,6 @@ export declare const ticketContract: {
|
|
|
17929
17929
|
createdAt: Date;
|
|
17930
17930
|
updatedAt: Date;
|
|
17931
17931
|
deletedAt: Date | null;
|
|
17932
|
-
categories: {
|
|
17933
|
-
id: string;
|
|
17934
|
-
value: string;
|
|
17935
|
-
createdAt: Date;
|
|
17936
|
-
updatedAt: Date;
|
|
17937
|
-
deletedAt: Date | null;
|
|
17938
|
-
level: 2 | 1 | 3;
|
|
17939
|
-
parentId: string | null;
|
|
17940
|
-
childCategoryList: {
|
|
17941
|
-
id: string;
|
|
17942
|
-
value: string;
|
|
17943
|
-
level: 2 | 1 | 3;
|
|
17944
|
-
parentId: string | null;
|
|
17945
|
-
childCategoryList: {
|
|
17946
|
-
id: string;
|
|
17947
|
-
value: string;
|
|
17948
|
-
level: 2 | 1 | 3;
|
|
17949
|
-
parentId: string | null;
|
|
17950
|
-
childCategoryList: any[];
|
|
17951
|
-
}[];
|
|
17952
|
-
}[];
|
|
17953
|
-
}[];
|
|
17954
17932
|
contact: {
|
|
17955
17933
|
name: string;
|
|
17956
17934
|
id: string;
|
|
@@ -18167,6 +18145,28 @@ export declare const ticketContract: {
|
|
|
18167
18145
|
};
|
|
18168
18146
|
}[];
|
|
18169
18147
|
contactId: string;
|
|
18148
|
+
categories: {
|
|
18149
|
+
id: string;
|
|
18150
|
+
value: string;
|
|
18151
|
+
createdAt: Date;
|
|
18152
|
+
updatedAt: Date;
|
|
18153
|
+
deletedAt: Date | null;
|
|
18154
|
+
level: 2 | 1 | 3;
|
|
18155
|
+
parentId: string | null;
|
|
18156
|
+
childCategoryList: {
|
|
18157
|
+
id: string;
|
|
18158
|
+
value: string;
|
|
18159
|
+
level: 2 | 1 | 3;
|
|
18160
|
+
parentId: string | null;
|
|
18161
|
+
childCategoryList: {
|
|
18162
|
+
id: string;
|
|
18163
|
+
value: string;
|
|
18164
|
+
level: 2 | 1 | 3;
|
|
18165
|
+
parentId: string | null;
|
|
18166
|
+
childCategoryList: any[];
|
|
18167
|
+
}[];
|
|
18168
|
+
}[];
|
|
18169
|
+
}[];
|
|
18170
18170
|
assigneeId: string;
|
|
18171
18171
|
creatorId: string;
|
|
18172
18172
|
reasonToAssign: string | null;
|
|
@@ -18273,28 +18273,6 @@ export declare const ticketContract: {
|
|
|
18273
18273
|
createdAt: Date;
|
|
18274
18274
|
updatedAt: Date;
|
|
18275
18275
|
deletedAt: Date | null;
|
|
18276
|
-
categories: {
|
|
18277
|
-
id: string;
|
|
18278
|
-
value: string;
|
|
18279
|
-
createdAt: Date;
|
|
18280
|
-
updatedAt: Date;
|
|
18281
|
-
deletedAt: Date | null;
|
|
18282
|
-
level: 2 | 1 | 3;
|
|
18283
|
-
parentId: string | null;
|
|
18284
|
-
childCategoryList: {
|
|
18285
|
-
id: string;
|
|
18286
|
-
value: string;
|
|
18287
|
-
level: 2 | 1 | 3;
|
|
18288
|
-
parentId: string | null;
|
|
18289
|
-
childCategoryList: {
|
|
18290
|
-
id: string;
|
|
18291
|
-
value: string;
|
|
18292
|
-
level: 2 | 1 | 3;
|
|
18293
|
-
parentId: string | null;
|
|
18294
|
-
childCategoryList: any[];
|
|
18295
|
-
}[];
|
|
18296
|
-
}[];
|
|
18297
|
-
}[];
|
|
18298
18276
|
contact: {
|
|
18299
18277
|
name: string;
|
|
18300
18278
|
id: string;
|
|
@@ -18511,6 +18489,28 @@ export declare const ticketContract: {
|
|
|
18511
18489
|
};
|
|
18512
18490
|
}[];
|
|
18513
18491
|
contactId: string;
|
|
18492
|
+
categories: {
|
|
18493
|
+
id: string;
|
|
18494
|
+
value: string;
|
|
18495
|
+
createdAt: Date;
|
|
18496
|
+
updatedAt: Date;
|
|
18497
|
+
deletedAt: Date | null;
|
|
18498
|
+
level: 2 | 1 | 3;
|
|
18499
|
+
parentId: string | null;
|
|
18500
|
+
childCategoryList: {
|
|
18501
|
+
id: string;
|
|
18502
|
+
value: string;
|
|
18503
|
+
level: 2 | 1 | 3;
|
|
18504
|
+
parentId: string | null;
|
|
18505
|
+
childCategoryList: {
|
|
18506
|
+
id: string;
|
|
18507
|
+
value: string;
|
|
18508
|
+
level: 2 | 1 | 3;
|
|
18509
|
+
parentId: string | null;
|
|
18510
|
+
childCategoryList: any[];
|
|
18511
|
+
}[];
|
|
18512
|
+
}[];
|
|
18513
|
+
}[];
|
|
18514
18514
|
assigneeId: string;
|
|
18515
18515
|
creatorId: string;
|
|
18516
18516
|
reasonToAssign: string | null;
|