@kl1/contracts 1.0.66 → 1.0.67
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 +2329 -2329
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2329 -2329
- package/dist/index.mjs.map +1 -1
- package/dist/src/call-log/schema.d.ts +4 -4
- package/dist/src/call-log/validation.d.ts +2 -2
- package/dist/src/channel/index.d.ts +67 -707
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +19 -0
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +600 -600
- package/dist/src/chat/schema.d.ts +74 -74
- package/dist/src/chat/validation.d.ts +128 -128
- package/dist/src/comment/index.d.ts +609 -609
- package/dist/src/comment/schema.d.ts +144 -144
- package/dist/src/contract.d.ts +3385 -4031
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +90 -90
- package/dist/src/cx-log/schema.d.ts +62 -62
- package/dist/src/instagram/index.d.ts +78 -78
- package/dist/src/line/index.d.ts +96 -96
- package/dist/src/line/schema.d.ts +19 -19
- package/dist/src/line/schema.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +24 -24
- package/dist/src/mail/room-contract.d.ts +24 -24
- package/dist/src/mail/schemas/room-validation.schema.d.ts +8 -8
- package/dist/src/mail/schemas/room.schema.d.ts +4 -4
- package/dist/src/messenger/index.d.ts +78 -78
- package/dist/src/telephony-cdr/index.d.ts +38 -38
- package/dist/src/telephony-cdr/schema.d.ts +6 -6
- package/dist/src/telephony-cdr/validation.d.ts +5 -5
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +1084 -1084
- package/dist/src/ticket/schema.d.ts +72 -72
- package/dist/src/ticket/validation.d.ts +12 -12
- package/dist/src/user-presence-status-log/index.d.ts +4 -9
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/validation.d.ts +7 -0
- package/dist/src/user-presence-status-log/validation.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +19 -19
- package/dist/src/wrap-up-form/schema.d.ts +2 -2
- package/dist/src/wrap-up-form/validation.d.ts +3 -3
- package/package.json +1 -1
@@ -113,12 +113,12 @@ export declare const ticketContract: {
|
|
113
113
|
isRequired: boolean;
|
114
114
|
attributeId: string;
|
115
115
|
};
|
116
|
-
contact: {
|
117
|
-
[x: string]: any;
|
118
|
-
};
|
119
116
|
customFields: {
|
120
117
|
[x: string]: any;
|
121
118
|
}[];
|
119
|
+
contact: {
|
120
|
+
[x: string]: any;
|
121
|
+
};
|
122
122
|
tags: {
|
123
123
|
[x: string]: any;
|
124
124
|
};
|
@@ -154,12 +154,12 @@ export declare const ticketContract: {
|
|
154
154
|
isRequired: boolean;
|
155
155
|
attributeId: string;
|
156
156
|
};
|
157
|
-
contact: {
|
158
|
-
[x: string]: any;
|
159
|
-
};
|
160
157
|
customFields: {
|
161
158
|
[x: string]: any;
|
162
159
|
}[];
|
160
|
+
contact: {
|
161
|
+
[x: string]: any;
|
162
|
+
};
|
163
163
|
tags: {
|
164
164
|
[x: string]: any;
|
165
165
|
};
|
@@ -2058,6 +2058,42 @@ export declare const ticketContract: {
|
|
2058
2058
|
}[];
|
2059
2059
|
}[];
|
2060
2060
|
}[];
|
2061
|
+
customFields: {
|
2062
|
+
id: string;
|
2063
|
+
createdAt: Date;
|
2064
|
+
updatedAt: Date;
|
2065
|
+
deletedAt: Date | null;
|
2066
|
+
attribute: {
|
2067
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2068
|
+
id: string;
|
2069
|
+
position: number;
|
2070
|
+
createdAt: Date;
|
2071
|
+
updatedAt: Date;
|
2072
|
+
deletedAt: Date | null;
|
2073
|
+
systemName: string;
|
2074
|
+
displayName: string;
|
2075
|
+
isDefault: boolean;
|
2076
|
+
isArchived: boolean;
|
2077
|
+
isRequired: boolean;
|
2078
|
+
isUnique: boolean;
|
2079
|
+
};
|
2080
|
+
textValue: string | null;
|
2081
|
+
booleanValue: boolean | null;
|
2082
|
+
numberValue: number | null;
|
2083
|
+
dateValue: Date | null;
|
2084
|
+
uploads: {
|
2085
|
+
id: string;
|
2086
|
+
createdAt: Date;
|
2087
|
+
updatedAt: Date;
|
2088
|
+
deletedAt: Date | null;
|
2089
|
+
fileName: string;
|
2090
|
+
fileKey: string;
|
2091
|
+
bucketName: string;
|
2092
|
+
fileSize: number;
|
2093
|
+
fileUrl: string | null;
|
2094
|
+
status?: string | undefined;
|
2095
|
+
}[];
|
2096
|
+
}[];
|
2061
2097
|
contact: {
|
2062
2098
|
id: string;
|
2063
2099
|
channel: string | null;
|
@@ -2162,42 +2198,6 @@ export declare const ticketContract: {
|
|
2162
2198
|
};
|
2163
2199
|
}[] | undefined;
|
2164
2200
|
};
|
2165
|
-
customFields: {
|
2166
|
-
id: string;
|
2167
|
-
createdAt: Date;
|
2168
|
-
updatedAt: Date;
|
2169
|
-
deletedAt: Date | null;
|
2170
|
-
attribute: {
|
2171
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2172
|
-
id: string;
|
2173
|
-
position: number;
|
2174
|
-
createdAt: Date;
|
2175
|
-
updatedAt: Date;
|
2176
|
-
deletedAt: Date | null;
|
2177
|
-
systemName: string;
|
2178
|
-
displayName: string;
|
2179
|
-
isDefault: boolean;
|
2180
|
-
isArchived: boolean;
|
2181
|
-
isRequired: boolean;
|
2182
|
-
isUnique: boolean;
|
2183
|
-
};
|
2184
|
-
textValue: string | null;
|
2185
|
-
booleanValue: boolean | null;
|
2186
|
-
numberValue: number | null;
|
2187
|
-
dateValue: Date | null;
|
2188
|
-
uploads: {
|
2189
|
-
id: string;
|
2190
|
-
createdAt: Date;
|
2191
|
-
updatedAt: Date;
|
2192
|
-
deletedAt: Date | null;
|
2193
|
-
fileName: string;
|
2194
|
-
fileKey: string;
|
2195
|
-
bucketName: string;
|
2196
|
-
fileSize: number;
|
2197
|
-
fileUrl: string | null;
|
2198
|
-
status?: string | undefined;
|
2199
|
-
}[];
|
2200
|
-
}[];
|
2201
2201
|
tags: {
|
2202
2202
|
id: string;
|
2203
2203
|
name: string;
|
@@ -2391,6 +2391,42 @@ export declare const ticketContract: {
|
|
2391
2391
|
}[];
|
2392
2392
|
}[];
|
2393
2393
|
}[];
|
2394
|
+
customFields: {
|
2395
|
+
id: string;
|
2396
|
+
createdAt: Date;
|
2397
|
+
updatedAt: Date;
|
2398
|
+
deletedAt: Date | null;
|
2399
|
+
attribute: {
|
2400
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2401
|
+
id: string;
|
2402
|
+
position: number;
|
2403
|
+
createdAt: Date;
|
2404
|
+
updatedAt: Date;
|
2405
|
+
deletedAt: Date | null;
|
2406
|
+
systemName: string;
|
2407
|
+
displayName: string;
|
2408
|
+
isDefault: boolean;
|
2409
|
+
isArchived: boolean;
|
2410
|
+
isRequired: boolean;
|
2411
|
+
isUnique: boolean;
|
2412
|
+
};
|
2413
|
+
textValue: string | null;
|
2414
|
+
booleanValue: boolean | null;
|
2415
|
+
numberValue: number | null;
|
2416
|
+
dateValue: Date | null;
|
2417
|
+
uploads: {
|
2418
|
+
id: string;
|
2419
|
+
createdAt: Date;
|
2420
|
+
updatedAt: Date;
|
2421
|
+
deletedAt: Date | null;
|
2422
|
+
fileName: string;
|
2423
|
+
fileKey: string;
|
2424
|
+
bucketName: string;
|
2425
|
+
fileSize: number;
|
2426
|
+
fileUrl: string | null;
|
2427
|
+
status?: string | undefined;
|
2428
|
+
}[];
|
2429
|
+
}[];
|
2394
2430
|
contact: {
|
2395
2431
|
id: string;
|
2396
2432
|
channel: string | null;
|
@@ -2495,42 +2531,6 @@ export declare const ticketContract: {
|
|
2495
2531
|
};
|
2496
2532
|
}[] | undefined;
|
2497
2533
|
};
|
2498
|
-
customFields: {
|
2499
|
-
id: string;
|
2500
|
-
createdAt: Date;
|
2501
|
-
updatedAt: Date;
|
2502
|
-
deletedAt: Date | null;
|
2503
|
-
attribute: {
|
2504
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2505
|
-
id: string;
|
2506
|
-
position: number;
|
2507
|
-
createdAt: Date;
|
2508
|
-
updatedAt: Date;
|
2509
|
-
deletedAt: Date | null;
|
2510
|
-
systemName: string;
|
2511
|
-
displayName: string;
|
2512
|
-
isDefault: boolean;
|
2513
|
-
isArchived: boolean;
|
2514
|
-
isRequired: boolean;
|
2515
|
-
isUnique: boolean;
|
2516
|
-
};
|
2517
|
-
textValue: string | null;
|
2518
|
-
booleanValue: boolean | null;
|
2519
|
-
numberValue: number | null;
|
2520
|
-
dateValue: Date | null;
|
2521
|
-
uploads: {
|
2522
|
-
id: string;
|
2523
|
-
createdAt: Date;
|
2524
|
-
updatedAt: Date;
|
2525
|
-
deletedAt: Date | null;
|
2526
|
-
fileName: string;
|
2527
|
-
fileKey: string;
|
2528
|
-
bucketName: string;
|
2529
|
-
fileSize: number;
|
2530
|
-
fileUrl: string | null;
|
2531
|
-
status?: string | undefined;
|
2532
|
-
}[];
|
2533
|
-
}[];
|
2534
2534
|
tags: {
|
2535
2535
|
id: string;
|
2536
2536
|
name: string;
|
@@ -2726,6 +2726,42 @@ export declare const ticketContract: {
|
|
2726
2726
|
}[];
|
2727
2727
|
}[];
|
2728
2728
|
}[];
|
2729
|
+
customFields: {
|
2730
|
+
id: string;
|
2731
|
+
createdAt: Date;
|
2732
|
+
updatedAt: Date;
|
2733
|
+
deletedAt: Date | null;
|
2734
|
+
attribute: {
|
2735
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2736
|
+
id: string;
|
2737
|
+
position: number;
|
2738
|
+
createdAt: Date;
|
2739
|
+
updatedAt: Date;
|
2740
|
+
deletedAt: Date | null;
|
2741
|
+
systemName: string;
|
2742
|
+
displayName: string;
|
2743
|
+
isDefault: boolean;
|
2744
|
+
isArchived: boolean;
|
2745
|
+
isRequired: boolean;
|
2746
|
+
isUnique: boolean;
|
2747
|
+
};
|
2748
|
+
textValue: string | null;
|
2749
|
+
booleanValue: boolean | null;
|
2750
|
+
numberValue: number | null;
|
2751
|
+
dateValue: Date | null;
|
2752
|
+
uploads: {
|
2753
|
+
id: string;
|
2754
|
+
createdAt: Date;
|
2755
|
+
updatedAt: Date;
|
2756
|
+
deletedAt: Date | null;
|
2757
|
+
fileName: string;
|
2758
|
+
fileKey: string;
|
2759
|
+
bucketName: string;
|
2760
|
+
fileSize: number;
|
2761
|
+
fileUrl: string | null;
|
2762
|
+
status?: string | undefined;
|
2763
|
+
}[];
|
2764
|
+
}[];
|
2729
2765
|
contact: {
|
2730
2766
|
id: string;
|
2731
2767
|
channel: string | null;
|
@@ -2830,42 +2866,6 @@ export declare const ticketContract: {
|
|
2830
2866
|
};
|
2831
2867
|
}[] | undefined;
|
2832
2868
|
};
|
2833
|
-
customFields: {
|
2834
|
-
id: string;
|
2835
|
-
createdAt: Date;
|
2836
|
-
updatedAt: Date;
|
2837
|
-
deletedAt: Date | null;
|
2838
|
-
attribute: {
|
2839
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2840
|
-
id: string;
|
2841
|
-
position: number;
|
2842
|
-
createdAt: Date;
|
2843
|
-
updatedAt: Date;
|
2844
|
-
deletedAt: Date | null;
|
2845
|
-
systemName: string;
|
2846
|
-
displayName: string;
|
2847
|
-
isDefault: boolean;
|
2848
|
-
isArchived: boolean;
|
2849
|
-
isRequired: boolean;
|
2850
|
-
isUnique: boolean;
|
2851
|
-
};
|
2852
|
-
textValue: string | null;
|
2853
|
-
booleanValue: boolean | null;
|
2854
|
-
numberValue: number | null;
|
2855
|
-
dateValue: Date | null;
|
2856
|
-
uploads: {
|
2857
|
-
id: string;
|
2858
|
-
createdAt: Date;
|
2859
|
-
updatedAt: Date;
|
2860
|
-
deletedAt: Date | null;
|
2861
|
-
fileName: string;
|
2862
|
-
fileKey: string;
|
2863
|
-
bucketName: string;
|
2864
|
-
fileSize: number;
|
2865
|
-
fileUrl: string | null;
|
2866
|
-
status?: string | undefined;
|
2867
|
-
}[];
|
2868
|
-
}[];
|
2869
2869
|
tags: {
|
2870
2870
|
id: string;
|
2871
2871
|
name: string;
|
@@ -3062,38 +3062,74 @@ export declare const ticketContract: {
|
|
3062
3062
|
}[];
|
3063
3063
|
}[];
|
3064
3064
|
}[];
|
3065
|
-
|
3065
|
+
customFields: {
|
3066
3066
|
id: string;
|
3067
|
-
channel: string | null;
|
3068
|
-
address: string | null;
|
3069
|
-
name: string;
|
3070
3067
|
createdAt: Date;
|
3071
3068
|
updatedAt: Date;
|
3072
3069
|
deletedAt: Date | null;
|
3073
|
-
|
3070
|
+
attribute: {
|
3071
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3074
3072
|
id: string;
|
3073
|
+
position: number;
|
3075
3074
|
createdAt: Date;
|
3076
3075
|
updatedAt: Date;
|
3077
3076
|
deletedAt: Date | null;
|
3078
|
-
|
3079
|
-
|
3080
|
-
|
3081
|
-
|
3082
|
-
|
3083
|
-
|
3084
|
-
|
3085
|
-
|
3086
|
-
|
3087
|
-
|
3088
|
-
|
3089
|
-
|
3090
|
-
|
3091
|
-
|
3092
|
-
|
3093
|
-
|
3094
|
-
|
3095
|
-
|
3096
|
-
|
3077
|
+
systemName: string;
|
3078
|
+
displayName: string;
|
3079
|
+
isDefault: boolean;
|
3080
|
+
isArchived: boolean;
|
3081
|
+
isRequired: boolean;
|
3082
|
+
isUnique: boolean;
|
3083
|
+
};
|
3084
|
+
textValue: string | null;
|
3085
|
+
booleanValue: boolean | null;
|
3086
|
+
numberValue: number | null;
|
3087
|
+
dateValue: Date | null;
|
3088
|
+
uploads: {
|
3089
|
+
id: string;
|
3090
|
+
createdAt: Date;
|
3091
|
+
updatedAt: Date;
|
3092
|
+
deletedAt: Date | null;
|
3093
|
+
fileName: string;
|
3094
|
+
fileKey: string;
|
3095
|
+
bucketName: string;
|
3096
|
+
fileSize: number;
|
3097
|
+
fileUrl: string | null;
|
3098
|
+
status?: string | undefined;
|
3099
|
+
}[];
|
3100
|
+
}[];
|
3101
|
+
contact: {
|
3102
|
+
id: string;
|
3103
|
+
channel: string | null;
|
3104
|
+
address: string | null;
|
3105
|
+
name: string;
|
3106
|
+
createdAt: Date;
|
3107
|
+
updatedAt: Date;
|
3108
|
+
deletedAt: Date | null;
|
3109
|
+
customFields: {
|
3110
|
+
id: string;
|
3111
|
+
createdAt: Date;
|
3112
|
+
updatedAt: Date;
|
3113
|
+
deletedAt: Date | null;
|
3114
|
+
attribute: {
|
3115
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3116
|
+
id: string;
|
3117
|
+
position: number;
|
3118
|
+
createdAt: Date;
|
3119
|
+
updatedAt: Date;
|
3120
|
+
deletedAt: Date | null;
|
3121
|
+
systemName: string;
|
3122
|
+
displayName: string;
|
3123
|
+
isDefault: boolean;
|
3124
|
+
isArchived: boolean;
|
3125
|
+
isRequired: boolean;
|
3126
|
+
isUnique: boolean;
|
3127
|
+
};
|
3128
|
+
textValue: string | null;
|
3129
|
+
booleanValue: boolean | null;
|
3130
|
+
numberValue: number | null;
|
3131
|
+
dateValue: Date | null;
|
3132
|
+
uploads: {
|
3097
3133
|
id: string;
|
3098
3134
|
createdAt: Date;
|
3099
3135
|
updatedAt: Date;
|
@@ -3166,42 +3202,6 @@ export declare const ticketContract: {
|
|
3166
3202
|
};
|
3167
3203
|
}[] | undefined;
|
3168
3204
|
};
|
3169
|
-
customFields: {
|
3170
|
-
id: string;
|
3171
|
-
createdAt: Date;
|
3172
|
-
updatedAt: Date;
|
3173
|
-
deletedAt: Date | null;
|
3174
|
-
attribute: {
|
3175
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3176
|
-
id: string;
|
3177
|
-
position: number;
|
3178
|
-
createdAt: Date;
|
3179
|
-
updatedAt: Date;
|
3180
|
-
deletedAt: Date | null;
|
3181
|
-
systemName: string;
|
3182
|
-
displayName: string;
|
3183
|
-
isDefault: boolean;
|
3184
|
-
isArchived: boolean;
|
3185
|
-
isRequired: boolean;
|
3186
|
-
isUnique: boolean;
|
3187
|
-
};
|
3188
|
-
textValue: string | null;
|
3189
|
-
booleanValue: boolean | null;
|
3190
|
-
numberValue: number | null;
|
3191
|
-
dateValue: Date | null;
|
3192
|
-
uploads: {
|
3193
|
-
id: string;
|
3194
|
-
createdAt: Date;
|
3195
|
-
updatedAt: Date;
|
3196
|
-
deletedAt: Date | null;
|
3197
|
-
fileName: string;
|
3198
|
-
fileKey: string;
|
3199
|
-
bucketName: string;
|
3200
|
-
fileSize: number;
|
3201
|
-
fileUrl: string | null;
|
3202
|
-
status?: string | undefined;
|
3203
|
-
}[];
|
3204
|
-
}[];
|
3205
3205
|
tags: {
|
3206
3206
|
id: string;
|
3207
3207
|
name: string;
|
@@ -3551,6 +3551,42 @@ export declare const ticketContract: {
|
|
3551
3551
|
}[];
|
3552
3552
|
}[];
|
3553
3553
|
}[];
|
3554
|
+
customFields: {
|
3555
|
+
id: string;
|
3556
|
+
createdAt: Date;
|
3557
|
+
updatedAt: Date;
|
3558
|
+
deletedAt: Date | null;
|
3559
|
+
attribute: {
|
3560
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3561
|
+
id: string;
|
3562
|
+
position: number;
|
3563
|
+
createdAt: Date;
|
3564
|
+
updatedAt: Date;
|
3565
|
+
deletedAt: Date | null;
|
3566
|
+
systemName: string;
|
3567
|
+
displayName: string;
|
3568
|
+
isDefault: boolean;
|
3569
|
+
isArchived: boolean;
|
3570
|
+
isRequired: boolean;
|
3571
|
+
isUnique: boolean;
|
3572
|
+
};
|
3573
|
+
textValue: string | null;
|
3574
|
+
booleanValue: boolean | null;
|
3575
|
+
numberValue: number | null;
|
3576
|
+
dateValue: Date | null;
|
3577
|
+
uploads: {
|
3578
|
+
id: string;
|
3579
|
+
createdAt: Date;
|
3580
|
+
updatedAt: Date;
|
3581
|
+
deletedAt: Date | null;
|
3582
|
+
fileName: string;
|
3583
|
+
fileKey: string;
|
3584
|
+
bucketName: string;
|
3585
|
+
fileSize: number;
|
3586
|
+
fileUrl: string | null;
|
3587
|
+
status?: string | undefined;
|
3588
|
+
}[];
|
3589
|
+
}[];
|
3554
3590
|
contact: {
|
3555
3591
|
id: string;
|
3556
3592
|
channel: string | null;
|
@@ -3655,42 +3691,6 @@ export declare const ticketContract: {
|
|
3655
3691
|
};
|
3656
3692
|
}[] | undefined;
|
3657
3693
|
};
|
3658
|
-
customFields: {
|
3659
|
-
id: string;
|
3660
|
-
createdAt: Date;
|
3661
|
-
updatedAt: Date;
|
3662
|
-
deletedAt: Date | null;
|
3663
|
-
attribute: {
|
3664
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3665
|
-
id: string;
|
3666
|
-
position: number;
|
3667
|
-
createdAt: Date;
|
3668
|
-
updatedAt: Date;
|
3669
|
-
deletedAt: Date | null;
|
3670
|
-
systemName: string;
|
3671
|
-
displayName: string;
|
3672
|
-
isDefault: boolean;
|
3673
|
-
isArchived: boolean;
|
3674
|
-
isRequired: boolean;
|
3675
|
-
isUnique: boolean;
|
3676
|
-
};
|
3677
|
-
textValue: string | null;
|
3678
|
-
booleanValue: boolean | null;
|
3679
|
-
numberValue: number | null;
|
3680
|
-
dateValue: Date | null;
|
3681
|
-
uploads: {
|
3682
|
-
id: string;
|
3683
|
-
createdAt: Date;
|
3684
|
-
updatedAt: Date;
|
3685
|
-
deletedAt: Date | null;
|
3686
|
-
fileName: string;
|
3687
|
-
fileKey: string;
|
3688
|
-
bucketName: string;
|
3689
|
-
fileSize: number;
|
3690
|
-
fileUrl: string | null;
|
3691
|
-
status?: string | undefined;
|
3692
|
-
}[];
|
3693
|
-
}[];
|
3694
3694
|
tags: {
|
3695
3695
|
id: string;
|
3696
3696
|
name: string;
|
@@ -3884,6 +3884,42 @@ export declare const ticketContract: {
|
|
3884
3884
|
}[];
|
3885
3885
|
}[];
|
3886
3886
|
}[];
|
3887
|
+
customFields: {
|
3888
|
+
id: string;
|
3889
|
+
createdAt: Date;
|
3890
|
+
updatedAt: Date;
|
3891
|
+
deletedAt: Date | null;
|
3892
|
+
attribute: {
|
3893
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3894
|
+
id: string;
|
3895
|
+
position: number;
|
3896
|
+
createdAt: Date;
|
3897
|
+
updatedAt: Date;
|
3898
|
+
deletedAt: Date | null;
|
3899
|
+
systemName: string;
|
3900
|
+
displayName: string;
|
3901
|
+
isDefault: boolean;
|
3902
|
+
isArchived: boolean;
|
3903
|
+
isRequired: boolean;
|
3904
|
+
isUnique: boolean;
|
3905
|
+
};
|
3906
|
+
textValue: string | null;
|
3907
|
+
booleanValue: boolean | null;
|
3908
|
+
numberValue: number | null;
|
3909
|
+
dateValue: Date | null;
|
3910
|
+
uploads: {
|
3911
|
+
id: string;
|
3912
|
+
createdAt: Date;
|
3913
|
+
updatedAt: Date;
|
3914
|
+
deletedAt: Date | null;
|
3915
|
+
fileName: string;
|
3916
|
+
fileKey: string;
|
3917
|
+
bucketName: string;
|
3918
|
+
fileSize: number;
|
3919
|
+
fileUrl: string | null;
|
3920
|
+
status?: string | undefined;
|
3921
|
+
}[];
|
3922
|
+
}[];
|
3887
3923
|
contact: {
|
3888
3924
|
id: string;
|
3889
3925
|
channel: string | null;
|
@@ -3988,42 +4024,6 @@ export declare const ticketContract: {
|
|
3988
4024
|
};
|
3989
4025
|
}[] | undefined;
|
3990
4026
|
};
|
3991
|
-
customFields: {
|
3992
|
-
id: string;
|
3993
|
-
createdAt: Date;
|
3994
|
-
updatedAt: Date;
|
3995
|
-
deletedAt: Date | null;
|
3996
|
-
attribute: {
|
3997
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3998
|
-
id: string;
|
3999
|
-
position: number;
|
4000
|
-
createdAt: Date;
|
4001
|
-
updatedAt: Date;
|
4002
|
-
deletedAt: Date | null;
|
4003
|
-
systemName: string;
|
4004
|
-
displayName: string;
|
4005
|
-
isDefault: boolean;
|
4006
|
-
isArchived: boolean;
|
4007
|
-
isRequired: boolean;
|
4008
|
-
isUnique: boolean;
|
4009
|
-
};
|
4010
|
-
textValue: string | null;
|
4011
|
-
booleanValue: boolean | null;
|
4012
|
-
numberValue: number | null;
|
4013
|
-
dateValue: Date | null;
|
4014
|
-
uploads: {
|
4015
|
-
id: string;
|
4016
|
-
createdAt: Date;
|
4017
|
-
updatedAt: Date;
|
4018
|
-
deletedAt: Date | null;
|
4019
|
-
fileName: string;
|
4020
|
-
fileKey: string;
|
4021
|
-
bucketName: string;
|
4022
|
-
fileSize: number;
|
4023
|
-
fileUrl: string | null;
|
4024
|
-
status?: string | undefined;
|
4025
|
-
}[];
|
4026
|
-
}[];
|
4027
4027
|
tags: {
|
4028
4028
|
id: string;
|
4029
4029
|
name: string;
|
@@ -4219,30 +4219,66 @@ export declare const ticketContract: {
|
|
4219
4219
|
}[];
|
4220
4220
|
}[];
|
4221
4221
|
}[];
|
4222
|
-
|
4222
|
+
customFields: {
|
4223
4223
|
id: string;
|
4224
|
-
channel: string | null;
|
4225
|
-
address: string | null;
|
4226
|
-
name: string;
|
4227
4224
|
createdAt: Date;
|
4228
4225
|
updatedAt: Date;
|
4229
4226
|
deletedAt: Date | null;
|
4230
|
-
|
4227
|
+
attribute: {
|
4228
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4231
4229
|
id: string;
|
4230
|
+
position: number;
|
4232
4231
|
createdAt: Date;
|
4233
4232
|
updatedAt: Date;
|
4234
4233
|
deletedAt: Date | null;
|
4235
|
-
|
4236
|
-
|
4237
|
-
|
4238
|
-
|
4239
|
-
|
4240
|
-
|
4241
|
-
|
4242
|
-
|
4243
|
-
|
4244
|
-
|
4245
|
-
|
4234
|
+
systemName: string;
|
4235
|
+
displayName: string;
|
4236
|
+
isDefault: boolean;
|
4237
|
+
isArchived: boolean;
|
4238
|
+
isRequired: boolean;
|
4239
|
+
isUnique: boolean;
|
4240
|
+
};
|
4241
|
+
textValue: string | null;
|
4242
|
+
booleanValue: boolean | null;
|
4243
|
+
numberValue: number | null;
|
4244
|
+
dateValue: Date | null;
|
4245
|
+
uploads: {
|
4246
|
+
id: string;
|
4247
|
+
createdAt: Date;
|
4248
|
+
updatedAt: Date;
|
4249
|
+
deletedAt: Date | null;
|
4250
|
+
fileName: string;
|
4251
|
+
fileKey: string;
|
4252
|
+
bucketName: string;
|
4253
|
+
fileSize: number;
|
4254
|
+
fileUrl: string | null;
|
4255
|
+
status?: string | undefined;
|
4256
|
+
}[];
|
4257
|
+
}[];
|
4258
|
+
contact: {
|
4259
|
+
id: string;
|
4260
|
+
channel: string | null;
|
4261
|
+
address: string | null;
|
4262
|
+
name: string;
|
4263
|
+
createdAt: Date;
|
4264
|
+
updatedAt: Date;
|
4265
|
+
deletedAt: Date | null;
|
4266
|
+
customFields: {
|
4267
|
+
id: string;
|
4268
|
+
createdAt: Date;
|
4269
|
+
updatedAt: Date;
|
4270
|
+
deletedAt: Date | null;
|
4271
|
+
attribute: {
|
4272
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4273
|
+
id: string;
|
4274
|
+
position: number;
|
4275
|
+
createdAt: Date;
|
4276
|
+
updatedAt: Date;
|
4277
|
+
deletedAt: Date | null;
|
4278
|
+
systemName: string;
|
4279
|
+
displayName: string;
|
4280
|
+
isDefault: boolean;
|
4281
|
+
isArchived: boolean;
|
4246
4282
|
isRequired: boolean;
|
4247
4283
|
isUnique: boolean;
|
4248
4284
|
};
|
@@ -4323,42 +4359,6 @@ export declare const ticketContract: {
|
|
4323
4359
|
};
|
4324
4360
|
}[] | undefined;
|
4325
4361
|
};
|
4326
|
-
customFields: {
|
4327
|
-
id: string;
|
4328
|
-
createdAt: Date;
|
4329
|
-
updatedAt: Date;
|
4330
|
-
deletedAt: Date | null;
|
4331
|
-
attribute: {
|
4332
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4333
|
-
id: string;
|
4334
|
-
position: number;
|
4335
|
-
createdAt: Date;
|
4336
|
-
updatedAt: Date;
|
4337
|
-
deletedAt: Date | null;
|
4338
|
-
systemName: string;
|
4339
|
-
displayName: string;
|
4340
|
-
isDefault: boolean;
|
4341
|
-
isArchived: boolean;
|
4342
|
-
isRequired: boolean;
|
4343
|
-
isUnique: boolean;
|
4344
|
-
};
|
4345
|
-
textValue: string | null;
|
4346
|
-
booleanValue: boolean | null;
|
4347
|
-
numberValue: number | null;
|
4348
|
-
dateValue: Date | null;
|
4349
|
-
uploads: {
|
4350
|
-
id: string;
|
4351
|
-
createdAt: Date;
|
4352
|
-
updatedAt: Date;
|
4353
|
-
deletedAt: Date | null;
|
4354
|
-
fileName: string;
|
4355
|
-
fileKey: string;
|
4356
|
-
bucketName: string;
|
4357
|
-
fileSize: number;
|
4358
|
-
fileUrl: string | null;
|
4359
|
-
status?: string | undefined;
|
4360
|
-
}[];
|
4361
|
-
}[];
|
4362
4362
|
tags: {
|
4363
4363
|
id: string;
|
4364
4364
|
name: string;
|
@@ -4558,6 +4558,42 @@ export declare const ticketContract: {
|
|
4558
4558
|
}[];
|
4559
4559
|
}[];
|
4560
4560
|
}[];
|
4561
|
+
customFields: {
|
4562
|
+
id: string;
|
4563
|
+
createdAt: Date;
|
4564
|
+
updatedAt: Date;
|
4565
|
+
deletedAt: Date | null;
|
4566
|
+
attribute: {
|
4567
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4568
|
+
id: string;
|
4569
|
+
position: number;
|
4570
|
+
createdAt: Date;
|
4571
|
+
updatedAt: Date;
|
4572
|
+
deletedAt: Date | null;
|
4573
|
+
systemName: string;
|
4574
|
+
displayName: string;
|
4575
|
+
isDefault: boolean;
|
4576
|
+
isArchived: boolean;
|
4577
|
+
isRequired: boolean;
|
4578
|
+
isUnique: boolean;
|
4579
|
+
};
|
4580
|
+
textValue: string | null;
|
4581
|
+
booleanValue: boolean | null;
|
4582
|
+
numberValue: number | null;
|
4583
|
+
dateValue: Date | null;
|
4584
|
+
uploads: {
|
4585
|
+
id: string;
|
4586
|
+
createdAt: Date;
|
4587
|
+
updatedAt: Date;
|
4588
|
+
deletedAt: Date | null;
|
4589
|
+
fileName: string;
|
4590
|
+
fileKey: string;
|
4591
|
+
bucketName: string;
|
4592
|
+
fileSize: number;
|
4593
|
+
fileUrl: string | null;
|
4594
|
+
status?: string | undefined;
|
4595
|
+
}[];
|
4596
|
+
}[];
|
4561
4597
|
contact: {
|
4562
4598
|
id: string;
|
4563
4599
|
channel: string | null;
|
@@ -4662,42 +4698,6 @@ export declare const ticketContract: {
|
|
4662
4698
|
};
|
4663
4699
|
}[] | undefined;
|
4664
4700
|
};
|
4665
|
-
customFields: {
|
4666
|
-
id: string;
|
4667
|
-
createdAt: Date;
|
4668
|
-
updatedAt: Date;
|
4669
|
-
deletedAt: Date | null;
|
4670
|
-
attribute: {
|
4671
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4672
|
-
id: string;
|
4673
|
-
position: number;
|
4674
|
-
createdAt: Date;
|
4675
|
-
updatedAt: Date;
|
4676
|
-
deletedAt: Date | null;
|
4677
|
-
systemName: string;
|
4678
|
-
displayName: string;
|
4679
|
-
isDefault: boolean;
|
4680
|
-
isArchived: boolean;
|
4681
|
-
isRequired: boolean;
|
4682
|
-
isUnique: boolean;
|
4683
|
-
};
|
4684
|
-
textValue: string | null;
|
4685
|
-
booleanValue: boolean | null;
|
4686
|
-
numberValue: number | null;
|
4687
|
-
dateValue: Date | null;
|
4688
|
-
uploads: {
|
4689
|
-
id: string;
|
4690
|
-
createdAt: Date;
|
4691
|
-
updatedAt: Date;
|
4692
|
-
deletedAt: Date | null;
|
4693
|
-
fileName: string;
|
4694
|
-
fileKey: string;
|
4695
|
-
bucketName: string;
|
4696
|
-
fileSize: number;
|
4697
|
-
fileUrl: string | null;
|
4698
|
-
status?: string | undefined;
|
4699
|
-
}[];
|
4700
|
-
}[];
|
4701
4701
|
tags: {
|
4702
4702
|
id: string;
|
4703
4703
|
name: string;
|
@@ -4899,6 +4899,42 @@ export declare const ticketContract: {
|
|
4899
4899
|
}[];
|
4900
4900
|
}[];
|
4901
4901
|
}[];
|
4902
|
+
customFields: {
|
4903
|
+
id: string;
|
4904
|
+
createdAt: Date;
|
4905
|
+
updatedAt: Date;
|
4906
|
+
deletedAt: Date | null;
|
4907
|
+
attribute: {
|
4908
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4909
|
+
id: string;
|
4910
|
+
position: number;
|
4911
|
+
createdAt: Date;
|
4912
|
+
updatedAt: Date;
|
4913
|
+
deletedAt: Date | null;
|
4914
|
+
systemName: string;
|
4915
|
+
displayName: string;
|
4916
|
+
isDefault: boolean;
|
4917
|
+
isArchived: boolean;
|
4918
|
+
isRequired: boolean;
|
4919
|
+
isUnique: boolean;
|
4920
|
+
};
|
4921
|
+
textValue: string | null;
|
4922
|
+
booleanValue: boolean | null;
|
4923
|
+
numberValue: number | null;
|
4924
|
+
dateValue: Date | null;
|
4925
|
+
uploads: {
|
4926
|
+
id: string;
|
4927
|
+
createdAt: Date;
|
4928
|
+
updatedAt: Date;
|
4929
|
+
deletedAt: Date | null;
|
4930
|
+
fileName: string;
|
4931
|
+
fileKey: string;
|
4932
|
+
bucketName: string;
|
4933
|
+
fileSize: number;
|
4934
|
+
fileUrl: string | null;
|
4935
|
+
status?: string | undefined;
|
4936
|
+
}[];
|
4937
|
+
}[];
|
4902
4938
|
contact: {
|
4903
4939
|
id: string;
|
4904
4940
|
channel: string | null;
|
@@ -5003,42 +5039,6 @@ export declare const ticketContract: {
|
|
5003
5039
|
};
|
5004
5040
|
}[] | undefined;
|
5005
5041
|
};
|
5006
|
-
customFields: {
|
5007
|
-
id: string;
|
5008
|
-
createdAt: Date;
|
5009
|
-
updatedAt: Date;
|
5010
|
-
deletedAt: Date | null;
|
5011
|
-
attribute: {
|
5012
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5013
|
-
id: string;
|
5014
|
-
position: number;
|
5015
|
-
createdAt: Date;
|
5016
|
-
updatedAt: Date;
|
5017
|
-
deletedAt: Date | null;
|
5018
|
-
systemName: string;
|
5019
|
-
displayName: string;
|
5020
|
-
isDefault: boolean;
|
5021
|
-
isArchived: boolean;
|
5022
|
-
isRequired: boolean;
|
5023
|
-
isUnique: boolean;
|
5024
|
-
};
|
5025
|
-
textValue: string | null;
|
5026
|
-
booleanValue: boolean | null;
|
5027
|
-
numberValue: number | null;
|
5028
|
-
dateValue: Date | null;
|
5029
|
-
uploads: {
|
5030
|
-
id: string;
|
5031
|
-
createdAt: Date;
|
5032
|
-
updatedAt: Date;
|
5033
|
-
deletedAt: Date | null;
|
5034
|
-
fileName: string;
|
5035
|
-
fileKey: string;
|
5036
|
-
bucketName: string;
|
5037
|
-
fileSize: number;
|
5038
|
-
fileUrl: string | null;
|
5039
|
-
status?: string | undefined;
|
5040
|
-
}[];
|
5041
|
-
}[];
|
5042
5042
|
tags: {
|
5043
5043
|
id: string;
|
5044
5044
|
name: string;
|
@@ -5241,6 +5241,42 @@ export declare const ticketContract: {
|
|
5241
5241
|
}[];
|
5242
5242
|
}[];
|
5243
5243
|
}[];
|
5244
|
+
customFields: {
|
5245
|
+
id: string;
|
5246
|
+
createdAt: Date;
|
5247
|
+
updatedAt: Date;
|
5248
|
+
deletedAt: Date | null;
|
5249
|
+
attribute: {
|
5250
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5251
|
+
id: string;
|
5252
|
+
position: number;
|
5253
|
+
createdAt: Date;
|
5254
|
+
updatedAt: Date;
|
5255
|
+
deletedAt: Date | null;
|
5256
|
+
systemName: string;
|
5257
|
+
displayName: string;
|
5258
|
+
isDefault: boolean;
|
5259
|
+
isArchived: boolean;
|
5260
|
+
isRequired: boolean;
|
5261
|
+
isUnique: boolean;
|
5262
|
+
};
|
5263
|
+
textValue: string | null;
|
5264
|
+
booleanValue: boolean | null;
|
5265
|
+
numberValue: number | null;
|
5266
|
+
dateValue: Date | null;
|
5267
|
+
uploads: {
|
5268
|
+
id: string;
|
5269
|
+
createdAt: Date;
|
5270
|
+
updatedAt: Date;
|
5271
|
+
deletedAt: Date | null;
|
5272
|
+
fileName: string;
|
5273
|
+
fileKey: string;
|
5274
|
+
bucketName: string;
|
5275
|
+
fileSize: number;
|
5276
|
+
fileUrl: string | null;
|
5277
|
+
status?: string | undefined;
|
5278
|
+
}[];
|
5279
|
+
}[];
|
5244
5280
|
contact: {
|
5245
5281
|
id: string;
|
5246
5282
|
channel: string | null;
|
@@ -5345,42 +5381,6 @@ export declare const ticketContract: {
|
|
5345
5381
|
};
|
5346
5382
|
}[] | undefined;
|
5347
5383
|
};
|
5348
|
-
customFields: {
|
5349
|
-
id: string;
|
5350
|
-
createdAt: Date;
|
5351
|
-
updatedAt: Date;
|
5352
|
-
deletedAt: Date | null;
|
5353
|
-
attribute: {
|
5354
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5355
|
-
id: string;
|
5356
|
-
position: number;
|
5357
|
-
createdAt: Date;
|
5358
|
-
updatedAt: Date;
|
5359
|
-
deletedAt: Date | null;
|
5360
|
-
systemName: string;
|
5361
|
-
displayName: string;
|
5362
|
-
isDefault: boolean;
|
5363
|
-
isArchived: boolean;
|
5364
|
-
isRequired: boolean;
|
5365
|
-
isUnique: boolean;
|
5366
|
-
};
|
5367
|
-
textValue: string | null;
|
5368
|
-
booleanValue: boolean | null;
|
5369
|
-
numberValue: number | null;
|
5370
|
-
dateValue: Date | null;
|
5371
|
-
uploads: {
|
5372
|
-
id: string;
|
5373
|
-
createdAt: Date;
|
5374
|
-
updatedAt: Date;
|
5375
|
-
deletedAt: Date | null;
|
5376
|
-
fileName: string;
|
5377
|
-
fileKey: string;
|
5378
|
-
bucketName: string;
|
5379
|
-
fileSize: number;
|
5380
|
-
fileUrl: string | null;
|
5381
|
-
status?: string | undefined;
|
5382
|
-
}[];
|
5383
|
-
}[];
|
5384
5384
|
tags: {
|
5385
5385
|
id: string;
|
5386
5386
|
name: string;
|
@@ -7489,6 +7489,42 @@ export declare const ticketContract: {
|
|
7489
7489
|
}[];
|
7490
7490
|
}[];
|
7491
7491
|
}[];
|
7492
|
+
customFields: {
|
7493
|
+
id: string;
|
7494
|
+
createdAt: Date;
|
7495
|
+
updatedAt: Date;
|
7496
|
+
deletedAt: Date | null;
|
7497
|
+
attribute: {
|
7498
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7499
|
+
id: string;
|
7500
|
+
position: number;
|
7501
|
+
createdAt: Date;
|
7502
|
+
updatedAt: Date;
|
7503
|
+
deletedAt: Date | null;
|
7504
|
+
systemName: string;
|
7505
|
+
displayName: string;
|
7506
|
+
isDefault: boolean;
|
7507
|
+
isArchived: boolean;
|
7508
|
+
isRequired: boolean;
|
7509
|
+
isUnique: boolean;
|
7510
|
+
};
|
7511
|
+
textValue: string | null;
|
7512
|
+
booleanValue: boolean | null;
|
7513
|
+
numberValue: number | null;
|
7514
|
+
dateValue: Date | null;
|
7515
|
+
uploads: {
|
7516
|
+
id: string;
|
7517
|
+
createdAt: Date;
|
7518
|
+
updatedAt: Date;
|
7519
|
+
deletedAt: Date | null;
|
7520
|
+
fileName: string;
|
7521
|
+
fileKey: string;
|
7522
|
+
bucketName: string;
|
7523
|
+
fileSize: number;
|
7524
|
+
fileUrl: string | null;
|
7525
|
+
status?: string | undefined;
|
7526
|
+
}[];
|
7527
|
+
}[];
|
7492
7528
|
contact: {
|
7493
7529
|
id: string;
|
7494
7530
|
channel: string | null;
|
@@ -7589,46 +7625,10 @@ export declare const ticketContract: {
|
|
7589
7625
|
createdAt: Date;
|
7590
7626
|
updatedAt: Date;
|
7591
7627
|
deletedAt: Date | null;
|
7592
|
-
entity: string;
|
7593
|
-
};
|
7594
|
-
}[] | undefined;
|
7595
|
-
};
|
7596
|
-
customFields: {
|
7597
|
-
id: string;
|
7598
|
-
createdAt: Date;
|
7599
|
-
updatedAt: Date;
|
7600
|
-
deletedAt: Date | null;
|
7601
|
-
attribute: {
|
7602
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7603
|
-
id: string;
|
7604
|
-
position: number;
|
7605
|
-
createdAt: Date;
|
7606
|
-
updatedAt: Date;
|
7607
|
-
deletedAt: Date | null;
|
7608
|
-
systemName: string;
|
7609
|
-
displayName: string;
|
7610
|
-
isDefault: boolean;
|
7611
|
-
isArchived: boolean;
|
7612
|
-
isRequired: boolean;
|
7613
|
-
isUnique: boolean;
|
7614
|
-
};
|
7615
|
-
textValue: string | null;
|
7616
|
-
booleanValue: boolean | null;
|
7617
|
-
numberValue: number | null;
|
7618
|
-
dateValue: Date | null;
|
7619
|
-
uploads: {
|
7620
|
-
id: string;
|
7621
|
-
createdAt: Date;
|
7622
|
-
updatedAt: Date;
|
7623
|
-
deletedAt: Date | null;
|
7624
|
-
fileName: string;
|
7625
|
-
fileKey: string;
|
7626
|
-
bucketName: string;
|
7627
|
-
fileSize: number;
|
7628
|
-
fileUrl: string | null;
|
7629
|
-
status?: string | undefined;
|
7630
|
-
}[];
|
7631
|
-
}[];
|
7628
|
+
entity: string;
|
7629
|
+
};
|
7630
|
+
}[] | undefined;
|
7631
|
+
};
|
7632
7632
|
tags: {
|
7633
7633
|
id: string;
|
7634
7634
|
name: string;
|
@@ -7822,6 +7822,42 @@ export declare const ticketContract: {
|
|
7822
7822
|
}[];
|
7823
7823
|
}[];
|
7824
7824
|
}[];
|
7825
|
+
customFields: {
|
7826
|
+
id: string;
|
7827
|
+
createdAt: Date;
|
7828
|
+
updatedAt: Date;
|
7829
|
+
deletedAt: Date | null;
|
7830
|
+
attribute: {
|
7831
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7832
|
+
id: string;
|
7833
|
+
position: number;
|
7834
|
+
createdAt: Date;
|
7835
|
+
updatedAt: Date;
|
7836
|
+
deletedAt: Date | null;
|
7837
|
+
systemName: string;
|
7838
|
+
displayName: string;
|
7839
|
+
isDefault: boolean;
|
7840
|
+
isArchived: boolean;
|
7841
|
+
isRequired: boolean;
|
7842
|
+
isUnique: boolean;
|
7843
|
+
};
|
7844
|
+
textValue: string | null;
|
7845
|
+
booleanValue: boolean | null;
|
7846
|
+
numberValue: number | null;
|
7847
|
+
dateValue: Date | null;
|
7848
|
+
uploads: {
|
7849
|
+
id: string;
|
7850
|
+
createdAt: Date;
|
7851
|
+
updatedAt: Date;
|
7852
|
+
deletedAt: Date | null;
|
7853
|
+
fileName: string;
|
7854
|
+
fileKey: string;
|
7855
|
+
bucketName: string;
|
7856
|
+
fileSize: number;
|
7857
|
+
fileUrl: string | null;
|
7858
|
+
status?: string | undefined;
|
7859
|
+
}[];
|
7860
|
+
}[];
|
7825
7861
|
contact: {
|
7826
7862
|
id: string;
|
7827
7863
|
channel: string | null;
|
@@ -7926,42 +7962,6 @@ export declare const ticketContract: {
|
|
7926
7962
|
};
|
7927
7963
|
}[] | undefined;
|
7928
7964
|
};
|
7929
|
-
customFields: {
|
7930
|
-
id: string;
|
7931
|
-
createdAt: Date;
|
7932
|
-
updatedAt: Date;
|
7933
|
-
deletedAt: Date | null;
|
7934
|
-
attribute: {
|
7935
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7936
|
-
id: string;
|
7937
|
-
position: number;
|
7938
|
-
createdAt: Date;
|
7939
|
-
updatedAt: Date;
|
7940
|
-
deletedAt: Date | null;
|
7941
|
-
systemName: string;
|
7942
|
-
displayName: string;
|
7943
|
-
isDefault: boolean;
|
7944
|
-
isArchived: boolean;
|
7945
|
-
isRequired: boolean;
|
7946
|
-
isUnique: boolean;
|
7947
|
-
};
|
7948
|
-
textValue: string | null;
|
7949
|
-
booleanValue: boolean | null;
|
7950
|
-
numberValue: number | null;
|
7951
|
-
dateValue: Date | null;
|
7952
|
-
uploads: {
|
7953
|
-
id: string;
|
7954
|
-
createdAt: Date;
|
7955
|
-
updatedAt: Date;
|
7956
|
-
deletedAt: Date | null;
|
7957
|
-
fileName: string;
|
7958
|
-
fileKey: string;
|
7959
|
-
bucketName: string;
|
7960
|
-
fileSize: number;
|
7961
|
-
fileUrl: string | null;
|
7962
|
-
status?: string | undefined;
|
7963
|
-
}[];
|
7964
|
-
}[];
|
7965
7965
|
tags: {
|
7966
7966
|
id: string;
|
7967
7967
|
name: string;
|
@@ -8157,6 +8157,42 @@ export declare const ticketContract: {
|
|
8157
8157
|
}[];
|
8158
8158
|
}[];
|
8159
8159
|
}[];
|
8160
|
+
customFields: {
|
8161
|
+
id: string;
|
8162
|
+
createdAt: Date;
|
8163
|
+
updatedAt: Date;
|
8164
|
+
deletedAt: Date | null;
|
8165
|
+
attribute: {
|
8166
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
8167
|
+
id: string;
|
8168
|
+
position: number;
|
8169
|
+
createdAt: Date;
|
8170
|
+
updatedAt: Date;
|
8171
|
+
deletedAt: Date | null;
|
8172
|
+
systemName: string;
|
8173
|
+
displayName: string;
|
8174
|
+
isDefault: boolean;
|
8175
|
+
isArchived: boolean;
|
8176
|
+
isRequired: boolean;
|
8177
|
+
isUnique: boolean;
|
8178
|
+
};
|
8179
|
+
textValue: string | null;
|
8180
|
+
booleanValue: boolean | null;
|
8181
|
+
numberValue: number | null;
|
8182
|
+
dateValue: Date | null;
|
8183
|
+
uploads: {
|
8184
|
+
id: string;
|
8185
|
+
createdAt: Date;
|
8186
|
+
updatedAt: Date;
|
8187
|
+
deletedAt: Date | null;
|
8188
|
+
fileName: string;
|
8189
|
+
fileKey: string;
|
8190
|
+
bucketName: string;
|
8191
|
+
fileSize: number;
|
8192
|
+
fileUrl: string | null;
|
8193
|
+
status?: string | undefined;
|
8194
|
+
}[];
|
8195
|
+
}[];
|
8160
8196
|
contact: {
|
8161
8197
|
id: string;
|
8162
8198
|
channel: string | null;
|
@@ -8261,42 +8297,6 @@ export declare const ticketContract: {
|
|
8261
8297
|
};
|
8262
8298
|
}[] | undefined;
|
8263
8299
|
};
|
8264
|
-
customFields: {
|
8265
|
-
id: string;
|
8266
|
-
createdAt: Date;
|
8267
|
-
updatedAt: Date;
|
8268
|
-
deletedAt: Date | null;
|
8269
|
-
attribute: {
|
8270
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
8271
|
-
id: string;
|
8272
|
-
position: number;
|
8273
|
-
createdAt: Date;
|
8274
|
-
updatedAt: Date;
|
8275
|
-
deletedAt: Date | null;
|
8276
|
-
systemName: string;
|
8277
|
-
displayName: string;
|
8278
|
-
isDefault: boolean;
|
8279
|
-
isArchived: boolean;
|
8280
|
-
isRequired: boolean;
|
8281
|
-
isUnique: boolean;
|
8282
|
-
};
|
8283
|
-
textValue: string | null;
|
8284
|
-
booleanValue: boolean | null;
|
8285
|
-
numberValue: number | null;
|
8286
|
-
dateValue: Date | null;
|
8287
|
-
uploads: {
|
8288
|
-
id: string;
|
8289
|
-
createdAt: Date;
|
8290
|
-
updatedAt: Date;
|
8291
|
-
deletedAt: Date | null;
|
8292
|
-
fileName: string;
|
8293
|
-
fileKey: string;
|
8294
|
-
bucketName: string;
|
8295
|
-
fileSize: number;
|
8296
|
-
fileUrl: string | null;
|
8297
|
-
status?: string | undefined;
|
8298
|
-
}[];
|
8299
|
-
}[];
|
8300
8300
|
tags: {
|
8301
8301
|
id: string;
|
8302
8302
|
name: string;
|
@@ -8493,6 +8493,42 @@ export declare const ticketContract: {
|
|
8493
8493
|
}[];
|
8494
8494
|
}[];
|
8495
8495
|
}[];
|
8496
|
+
customFields: {
|
8497
|
+
id: string;
|
8498
|
+
createdAt: Date;
|
8499
|
+
updatedAt: Date;
|
8500
|
+
deletedAt: Date | null;
|
8501
|
+
attribute: {
|
8502
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
8503
|
+
id: string;
|
8504
|
+
position: number;
|
8505
|
+
createdAt: Date;
|
8506
|
+
updatedAt: Date;
|
8507
|
+
deletedAt: Date | null;
|
8508
|
+
systemName: string;
|
8509
|
+
displayName: string;
|
8510
|
+
isDefault: boolean;
|
8511
|
+
isArchived: boolean;
|
8512
|
+
isRequired: boolean;
|
8513
|
+
isUnique: boolean;
|
8514
|
+
};
|
8515
|
+
textValue: string | null;
|
8516
|
+
booleanValue: boolean | null;
|
8517
|
+
numberValue: number | null;
|
8518
|
+
dateValue: Date | null;
|
8519
|
+
uploads: {
|
8520
|
+
id: string;
|
8521
|
+
createdAt: Date;
|
8522
|
+
updatedAt: Date;
|
8523
|
+
deletedAt: Date | null;
|
8524
|
+
fileName: string;
|
8525
|
+
fileKey: string;
|
8526
|
+
bucketName: string;
|
8527
|
+
fileSize: number;
|
8528
|
+
fileUrl: string | null;
|
8529
|
+
status?: string | undefined;
|
8530
|
+
}[];
|
8531
|
+
}[];
|
8496
8532
|
contact: {
|
8497
8533
|
id: string;
|
8498
8534
|
channel: string | null;
|
@@ -8597,42 +8633,6 @@ export declare const ticketContract: {
|
|
8597
8633
|
};
|
8598
8634
|
}[] | undefined;
|
8599
8635
|
};
|
8600
|
-
customFields: {
|
8601
|
-
id: string;
|
8602
|
-
createdAt: Date;
|
8603
|
-
updatedAt: Date;
|
8604
|
-
deletedAt: Date | null;
|
8605
|
-
attribute: {
|
8606
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
8607
|
-
id: string;
|
8608
|
-
position: number;
|
8609
|
-
createdAt: Date;
|
8610
|
-
updatedAt: Date;
|
8611
|
-
deletedAt: Date | null;
|
8612
|
-
systemName: string;
|
8613
|
-
displayName: string;
|
8614
|
-
isDefault: boolean;
|
8615
|
-
isArchived: boolean;
|
8616
|
-
isRequired: boolean;
|
8617
|
-
isUnique: boolean;
|
8618
|
-
};
|
8619
|
-
textValue: string | null;
|
8620
|
-
booleanValue: boolean | null;
|
8621
|
-
numberValue: number | null;
|
8622
|
-
dateValue: Date | null;
|
8623
|
-
uploads: {
|
8624
|
-
id: string;
|
8625
|
-
createdAt: Date;
|
8626
|
-
updatedAt: Date;
|
8627
|
-
deletedAt: Date | null;
|
8628
|
-
fileName: string;
|
8629
|
-
fileKey: string;
|
8630
|
-
bucketName: string;
|
8631
|
-
fileSize: number;
|
8632
|
-
fileUrl: string | null;
|
8633
|
-
status?: string | undefined;
|
8634
|
-
}[];
|
8635
|
-
}[];
|
8636
8636
|
tags: {
|
8637
8637
|
id: string;
|
8638
8638
|
name: string;
|
@@ -8903,6 +8903,42 @@ export declare const ticketContract: {
|
|
8903
8903
|
}[];
|
8904
8904
|
}[];
|
8905
8905
|
}[];
|
8906
|
+
customFields: {
|
8907
|
+
id: string;
|
8908
|
+
createdAt: Date;
|
8909
|
+
updatedAt: Date;
|
8910
|
+
deletedAt: Date | null;
|
8911
|
+
attribute: {
|
8912
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
8913
|
+
id: string;
|
8914
|
+
position: number;
|
8915
|
+
createdAt: Date;
|
8916
|
+
updatedAt: Date;
|
8917
|
+
deletedAt: Date | null;
|
8918
|
+
systemName: string;
|
8919
|
+
displayName: string;
|
8920
|
+
isDefault: boolean;
|
8921
|
+
isArchived: boolean;
|
8922
|
+
isRequired: boolean;
|
8923
|
+
isUnique: boolean;
|
8924
|
+
};
|
8925
|
+
textValue: string | null;
|
8926
|
+
booleanValue: boolean | null;
|
8927
|
+
numberValue: number | null;
|
8928
|
+
dateValue: Date | null;
|
8929
|
+
uploads: {
|
8930
|
+
id: string;
|
8931
|
+
createdAt: Date;
|
8932
|
+
updatedAt: Date;
|
8933
|
+
deletedAt: Date | null;
|
8934
|
+
fileName: string;
|
8935
|
+
fileKey: string;
|
8936
|
+
bucketName: string;
|
8937
|
+
fileSize: number;
|
8938
|
+
fileUrl: string | null;
|
8939
|
+
status?: string | undefined;
|
8940
|
+
}[];
|
8941
|
+
}[];
|
8906
8942
|
contact: {
|
8907
8943
|
id: string;
|
8908
8944
|
channel: string | null;
|
@@ -9007,42 +9043,6 @@ export declare const ticketContract: {
|
|
9007
9043
|
};
|
9008
9044
|
}[] | undefined;
|
9009
9045
|
};
|
9010
|
-
customFields: {
|
9011
|
-
id: string;
|
9012
|
-
createdAt: Date;
|
9013
|
-
updatedAt: Date;
|
9014
|
-
deletedAt: Date | null;
|
9015
|
-
attribute: {
|
9016
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
9017
|
-
id: string;
|
9018
|
-
position: number;
|
9019
|
-
createdAt: Date;
|
9020
|
-
updatedAt: Date;
|
9021
|
-
deletedAt: Date | null;
|
9022
|
-
systemName: string;
|
9023
|
-
displayName: string;
|
9024
|
-
isDefault: boolean;
|
9025
|
-
isArchived: boolean;
|
9026
|
-
isRequired: boolean;
|
9027
|
-
isUnique: boolean;
|
9028
|
-
};
|
9029
|
-
textValue: string | null;
|
9030
|
-
booleanValue: boolean | null;
|
9031
|
-
numberValue: number | null;
|
9032
|
-
dateValue: Date | null;
|
9033
|
-
uploads: {
|
9034
|
-
id: string;
|
9035
|
-
createdAt: Date;
|
9036
|
-
updatedAt: Date;
|
9037
|
-
deletedAt: Date | null;
|
9038
|
-
fileName: string;
|
9039
|
-
fileKey: string;
|
9040
|
-
bucketName: string;
|
9041
|
-
fileSize: number;
|
9042
|
-
fileUrl: string | null;
|
9043
|
-
status?: string | undefined;
|
9044
|
-
}[];
|
9045
|
-
}[];
|
9046
9046
|
tags: {
|
9047
9047
|
id: string;
|
9048
9048
|
name: string;
|
@@ -9236,6 +9236,42 @@ export declare const ticketContract: {
|
|
9236
9236
|
}[];
|
9237
9237
|
}[];
|
9238
9238
|
}[];
|
9239
|
+
customFields: {
|
9240
|
+
id: string;
|
9241
|
+
createdAt: Date;
|
9242
|
+
updatedAt: Date;
|
9243
|
+
deletedAt: Date | null;
|
9244
|
+
attribute: {
|
9245
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
9246
|
+
id: string;
|
9247
|
+
position: number;
|
9248
|
+
createdAt: Date;
|
9249
|
+
updatedAt: Date;
|
9250
|
+
deletedAt: Date | null;
|
9251
|
+
systemName: string;
|
9252
|
+
displayName: string;
|
9253
|
+
isDefault: boolean;
|
9254
|
+
isArchived: boolean;
|
9255
|
+
isRequired: boolean;
|
9256
|
+
isUnique: boolean;
|
9257
|
+
};
|
9258
|
+
textValue: string | null;
|
9259
|
+
booleanValue: boolean | null;
|
9260
|
+
numberValue: number | null;
|
9261
|
+
dateValue: Date | null;
|
9262
|
+
uploads: {
|
9263
|
+
id: string;
|
9264
|
+
createdAt: Date;
|
9265
|
+
updatedAt: Date;
|
9266
|
+
deletedAt: Date | null;
|
9267
|
+
fileName: string;
|
9268
|
+
fileKey: string;
|
9269
|
+
bucketName: string;
|
9270
|
+
fileSize: number;
|
9271
|
+
fileUrl: string | null;
|
9272
|
+
status?: string | undefined;
|
9273
|
+
}[];
|
9274
|
+
}[];
|
9239
9275
|
contact: {
|
9240
9276
|
id: string;
|
9241
9277
|
channel: string | null;
|
@@ -9340,42 +9376,6 @@ export declare const ticketContract: {
|
|
9340
9376
|
};
|
9341
9377
|
}[] | undefined;
|
9342
9378
|
};
|
9343
|
-
customFields: {
|
9344
|
-
id: string;
|
9345
|
-
createdAt: Date;
|
9346
|
-
updatedAt: Date;
|
9347
|
-
deletedAt: Date | null;
|
9348
|
-
attribute: {
|
9349
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
9350
|
-
id: string;
|
9351
|
-
position: number;
|
9352
|
-
createdAt: Date;
|
9353
|
-
updatedAt: Date;
|
9354
|
-
deletedAt: Date | null;
|
9355
|
-
systemName: string;
|
9356
|
-
displayName: string;
|
9357
|
-
isDefault: boolean;
|
9358
|
-
isArchived: boolean;
|
9359
|
-
isRequired: boolean;
|
9360
|
-
isUnique: boolean;
|
9361
|
-
};
|
9362
|
-
textValue: string | null;
|
9363
|
-
booleanValue: boolean | null;
|
9364
|
-
numberValue: number | null;
|
9365
|
-
dateValue: Date | null;
|
9366
|
-
uploads: {
|
9367
|
-
id: string;
|
9368
|
-
createdAt: Date;
|
9369
|
-
updatedAt: Date;
|
9370
|
-
deletedAt: Date | null;
|
9371
|
-
fileName: string;
|
9372
|
-
fileKey: string;
|
9373
|
-
bucketName: string;
|
9374
|
-
fileSize: number;
|
9375
|
-
fileUrl: string | null;
|
9376
|
-
status?: string | undefined;
|
9377
|
-
}[];
|
9378
|
-
}[];
|
9379
9379
|
tags: {
|
9380
9380
|
id: string;
|
9381
9381
|
name: string;
|
@@ -9571,6 +9571,42 @@ export declare const ticketContract: {
|
|
9571
9571
|
}[];
|
9572
9572
|
}[];
|
9573
9573
|
}[];
|
9574
|
+
customFields: {
|
9575
|
+
id: string;
|
9576
|
+
createdAt: Date;
|
9577
|
+
updatedAt: Date;
|
9578
|
+
deletedAt: Date | null;
|
9579
|
+
attribute: {
|
9580
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
9581
|
+
id: string;
|
9582
|
+
position: number;
|
9583
|
+
createdAt: Date;
|
9584
|
+
updatedAt: Date;
|
9585
|
+
deletedAt: Date | null;
|
9586
|
+
systemName: string;
|
9587
|
+
displayName: string;
|
9588
|
+
isDefault: boolean;
|
9589
|
+
isArchived: boolean;
|
9590
|
+
isRequired: boolean;
|
9591
|
+
isUnique: boolean;
|
9592
|
+
};
|
9593
|
+
textValue: string | null;
|
9594
|
+
booleanValue: boolean | null;
|
9595
|
+
numberValue: number | null;
|
9596
|
+
dateValue: Date | null;
|
9597
|
+
uploads: {
|
9598
|
+
id: string;
|
9599
|
+
createdAt: Date;
|
9600
|
+
updatedAt: Date;
|
9601
|
+
deletedAt: Date | null;
|
9602
|
+
fileName: string;
|
9603
|
+
fileKey: string;
|
9604
|
+
bucketName: string;
|
9605
|
+
fileSize: number;
|
9606
|
+
fileUrl: string | null;
|
9607
|
+
status?: string | undefined;
|
9608
|
+
}[];
|
9609
|
+
}[];
|
9574
9610
|
contact: {
|
9575
9611
|
id: string;
|
9576
9612
|
channel: string | null;
|
@@ -9675,42 +9711,6 @@ export declare const ticketContract: {
|
|
9675
9711
|
};
|
9676
9712
|
}[] | undefined;
|
9677
9713
|
};
|
9678
|
-
customFields: {
|
9679
|
-
id: string;
|
9680
|
-
createdAt: Date;
|
9681
|
-
updatedAt: Date;
|
9682
|
-
deletedAt: Date | null;
|
9683
|
-
attribute: {
|
9684
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
9685
|
-
id: string;
|
9686
|
-
position: number;
|
9687
|
-
createdAt: Date;
|
9688
|
-
updatedAt: Date;
|
9689
|
-
deletedAt: Date | null;
|
9690
|
-
systemName: string;
|
9691
|
-
displayName: string;
|
9692
|
-
isDefault: boolean;
|
9693
|
-
isArchived: boolean;
|
9694
|
-
isRequired: boolean;
|
9695
|
-
isUnique: boolean;
|
9696
|
-
};
|
9697
|
-
textValue: string | null;
|
9698
|
-
booleanValue: boolean | null;
|
9699
|
-
numberValue: number | null;
|
9700
|
-
dateValue: Date | null;
|
9701
|
-
uploads: {
|
9702
|
-
id: string;
|
9703
|
-
createdAt: Date;
|
9704
|
-
updatedAt: Date;
|
9705
|
-
deletedAt: Date | null;
|
9706
|
-
fileName: string;
|
9707
|
-
fileKey: string;
|
9708
|
-
bucketName: string;
|
9709
|
-
fileSize: number;
|
9710
|
-
fileUrl: string | null;
|
9711
|
-
status?: string | undefined;
|
9712
|
-
}[];
|
9713
|
-
}[];
|
9714
9714
|
tags: {
|
9715
9715
|
id: string;
|
9716
9716
|
name: string;
|
@@ -9910,6 +9910,42 @@ export declare const ticketContract: {
|
|
9910
9910
|
}[];
|
9911
9911
|
}[];
|
9912
9912
|
}[];
|
9913
|
+
customFields: {
|
9914
|
+
id: string;
|
9915
|
+
createdAt: Date;
|
9916
|
+
updatedAt: Date;
|
9917
|
+
deletedAt: Date | null;
|
9918
|
+
attribute: {
|
9919
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
9920
|
+
id: string;
|
9921
|
+
position: number;
|
9922
|
+
createdAt: Date;
|
9923
|
+
updatedAt: Date;
|
9924
|
+
deletedAt: Date | null;
|
9925
|
+
systemName: string;
|
9926
|
+
displayName: string;
|
9927
|
+
isDefault: boolean;
|
9928
|
+
isArchived: boolean;
|
9929
|
+
isRequired: boolean;
|
9930
|
+
isUnique: boolean;
|
9931
|
+
};
|
9932
|
+
textValue: string | null;
|
9933
|
+
booleanValue: boolean | null;
|
9934
|
+
numberValue: number | null;
|
9935
|
+
dateValue: Date | null;
|
9936
|
+
uploads: {
|
9937
|
+
id: string;
|
9938
|
+
createdAt: Date;
|
9939
|
+
updatedAt: Date;
|
9940
|
+
deletedAt: Date | null;
|
9941
|
+
fileName: string;
|
9942
|
+
fileKey: string;
|
9943
|
+
bucketName: string;
|
9944
|
+
fileSize: number;
|
9945
|
+
fileUrl: string | null;
|
9946
|
+
status?: string | undefined;
|
9947
|
+
}[];
|
9948
|
+
}[];
|
9913
9949
|
contact: {
|
9914
9950
|
id: string;
|
9915
9951
|
channel: string | null;
|
@@ -9999,57 +10035,21 @@ export declare const ticketContract: {
|
|
9999
10035
|
}[];
|
10000
10036
|
activityLogs?: {
|
10001
10037
|
id: string;
|
10002
|
-
description: string;
|
10003
|
-
createdAt: Date;
|
10004
|
-
updatedAt: Date;
|
10005
|
-
deletedAt: Date | null;
|
10006
|
-
entityId: string;
|
10007
|
-
entityType: {
|
10008
|
-
id: string;
|
10009
|
-
description: string | null;
|
10010
|
-
createdAt: Date;
|
10011
|
-
updatedAt: Date;
|
10012
|
-
deletedAt: Date | null;
|
10013
|
-
entity: string;
|
10014
|
-
};
|
10015
|
-
}[] | undefined;
|
10016
|
-
};
|
10017
|
-
customFields: {
|
10018
|
-
id: string;
|
10019
|
-
createdAt: Date;
|
10020
|
-
updatedAt: Date;
|
10021
|
-
deletedAt: Date | null;
|
10022
|
-
attribute: {
|
10023
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
10024
|
-
id: string;
|
10025
|
-
position: number;
|
10026
|
-
createdAt: Date;
|
10027
|
-
updatedAt: Date;
|
10028
|
-
deletedAt: Date | null;
|
10029
|
-
systemName: string;
|
10030
|
-
displayName: string;
|
10031
|
-
isDefault: boolean;
|
10032
|
-
isArchived: boolean;
|
10033
|
-
isRequired: boolean;
|
10034
|
-
isUnique: boolean;
|
10035
|
-
};
|
10036
|
-
textValue: string | null;
|
10037
|
-
booleanValue: boolean | null;
|
10038
|
-
numberValue: number | null;
|
10039
|
-
dateValue: Date | null;
|
10040
|
-
uploads: {
|
10041
|
-
id: string;
|
10038
|
+
description: string;
|
10042
10039
|
createdAt: Date;
|
10043
10040
|
updatedAt: Date;
|
10044
10041
|
deletedAt: Date | null;
|
10045
|
-
|
10046
|
-
|
10047
|
-
|
10048
|
-
|
10049
|
-
|
10050
|
-
|
10051
|
-
|
10052
|
-
|
10042
|
+
entityId: string;
|
10043
|
+
entityType: {
|
10044
|
+
id: string;
|
10045
|
+
description: string | null;
|
10046
|
+
createdAt: Date;
|
10047
|
+
updatedAt: Date;
|
10048
|
+
deletedAt: Date | null;
|
10049
|
+
entity: string;
|
10050
|
+
};
|
10051
|
+
}[] | undefined;
|
10052
|
+
};
|
10053
10053
|
tags: {
|
10054
10054
|
id: string;
|
10055
10055
|
name: string;
|
@@ -10251,6 +10251,42 @@ export declare const ticketContract: {
|
|
10251
10251
|
}[];
|
10252
10252
|
}[];
|
10253
10253
|
}[];
|
10254
|
+
customFields: {
|
10255
|
+
id: string;
|
10256
|
+
createdAt: Date;
|
10257
|
+
updatedAt: Date;
|
10258
|
+
deletedAt: Date | null;
|
10259
|
+
attribute: {
|
10260
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
10261
|
+
id: string;
|
10262
|
+
position: number;
|
10263
|
+
createdAt: Date;
|
10264
|
+
updatedAt: Date;
|
10265
|
+
deletedAt: Date | null;
|
10266
|
+
systemName: string;
|
10267
|
+
displayName: string;
|
10268
|
+
isDefault: boolean;
|
10269
|
+
isArchived: boolean;
|
10270
|
+
isRequired: boolean;
|
10271
|
+
isUnique: boolean;
|
10272
|
+
};
|
10273
|
+
textValue: string | null;
|
10274
|
+
booleanValue: boolean | null;
|
10275
|
+
numberValue: number | null;
|
10276
|
+
dateValue: Date | null;
|
10277
|
+
uploads: {
|
10278
|
+
id: string;
|
10279
|
+
createdAt: Date;
|
10280
|
+
updatedAt: Date;
|
10281
|
+
deletedAt: Date | null;
|
10282
|
+
fileName: string;
|
10283
|
+
fileKey: string;
|
10284
|
+
bucketName: string;
|
10285
|
+
fileSize: number;
|
10286
|
+
fileUrl: string | null;
|
10287
|
+
status?: string | undefined;
|
10288
|
+
}[];
|
10289
|
+
}[];
|
10254
10290
|
contact: {
|
10255
10291
|
id: string;
|
10256
10292
|
channel: string | null;
|
@@ -10355,42 +10391,6 @@ export declare const ticketContract: {
|
|
10355
10391
|
};
|
10356
10392
|
}[] | undefined;
|
10357
10393
|
};
|
10358
|
-
customFields: {
|
10359
|
-
id: string;
|
10360
|
-
createdAt: Date;
|
10361
|
-
updatedAt: Date;
|
10362
|
-
deletedAt: Date | null;
|
10363
|
-
attribute: {
|
10364
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
10365
|
-
id: string;
|
10366
|
-
position: number;
|
10367
|
-
createdAt: Date;
|
10368
|
-
updatedAt: Date;
|
10369
|
-
deletedAt: Date | null;
|
10370
|
-
systemName: string;
|
10371
|
-
displayName: string;
|
10372
|
-
isDefault: boolean;
|
10373
|
-
isArchived: boolean;
|
10374
|
-
isRequired: boolean;
|
10375
|
-
isUnique: boolean;
|
10376
|
-
};
|
10377
|
-
textValue: string | null;
|
10378
|
-
booleanValue: boolean | null;
|
10379
|
-
numberValue: number | null;
|
10380
|
-
dateValue: Date | null;
|
10381
|
-
uploads: {
|
10382
|
-
id: string;
|
10383
|
-
createdAt: Date;
|
10384
|
-
updatedAt: Date;
|
10385
|
-
deletedAt: Date | null;
|
10386
|
-
fileName: string;
|
10387
|
-
fileKey: string;
|
10388
|
-
bucketName: string;
|
10389
|
-
fileSize: number;
|
10390
|
-
fileUrl: string | null;
|
10391
|
-
status?: string | undefined;
|
10392
|
-
}[];
|
10393
|
-
}[];
|
10394
10394
|
tags: {
|
10395
10395
|
id: string;
|
10396
10396
|
name: string;
|
@@ -10593,6 +10593,42 @@ export declare const ticketContract: {
|
|
10593
10593
|
}[];
|
10594
10594
|
}[];
|
10595
10595
|
}[];
|
10596
|
+
customFields: {
|
10597
|
+
id: string;
|
10598
|
+
createdAt: Date;
|
10599
|
+
updatedAt: Date;
|
10600
|
+
deletedAt: Date | null;
|
10601
|
+
attribute: {
|
10602
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
10603
|
+
id: string;
|
10604
|
+
position: number;
|
10605
|
+
createdAt: Date;
|
10606
|
+
updatedAt: Date;
|
10607
|
+
deletedAt: Date | null;
|
10608
|
+
systemName: string;
|
10609
|
+
displayName: string;
|
10610
|
+
isDefault: boolean;
|
10611
|
+
isArchived: boolean;
|
10612
|
+
isRequired: boolean;
|
10613
|
+
isUnique: boolean;
|
10614
|
+
};
|
10615
|
+
textValue: string | null;
|
10616
|
+
booleanValue: boolean | null;
|
10617
|
+
numberValue: number | null;
|
10618
|
+
dateValue: Date | null;
|
10619
|
+
uploads: {
|
10620
|
+
id: string;
|
10621
|
+
createdAt: Date;
|
10622
|
+
updatedAt: Date;
|
10623
|
+
deletedAt: Date | null;
|
10624
|
+
fileName: string;
|
10625
|
+
fileKey: string;
|
10626
|
+
bucketName: string;
|
10627
|
+
fileSize: number;
|
10628
|
+
fileUrl: string | null;
|
10629
|
+
status?: string | undefined;
|
10630
|
+
}[];
|
10631
|
+
}[];
|
10596
10632
|
contact: {
|
10597
10633
|
id: string;
|
10598
10634
|
channel: string | null;
|
@@ -10697,42 +10733,6 @@ export declare const ticketContract: {
|
|
10697
10733
|
};
|
10698
10734
|
}[] | undefined;
|
10699
10735
|
};
|
10700
|
-
customFields: {
|
10701
|
-
id: string;
|
10702
|
-
createdAt: Date;
|
10703
|
-
updatedAt: Date;
|
10704
|
-
deletedAt: Date | null;
|
10705
|
-
attribute: {
|
10706
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
10707
|
-
id: string;
|
10708
|
-
position: number;
|
10709
|
-
createdAt: Date;
|
10710
|
-
updatedAt: Date;
|
10711
|
-
deletedAt: Date | null;
|
10712
|
-
systemName: string;
|
10713
|
-
displayName: string;
|
10714
|
-
isDefault: boolean;
|
10715
|
-
isArchived: boolean;
|
10716
|
-
isRequired: boolean;
|
10717
|
-
isUnique: boolean;
|
10718
|
-
};
|
10719
|
-
textValue: string | null;
|
10720
|
-
booleanValue: boolean | null;
|
10721
|
-
numberValue: number | null;
|
10722
|
-
dateValue: Date | null;
|
10723
|
-
uploads: {
|
10724
|
-
id: string;
|
10725
|
-
createdAt: Date;
|
10726
|
-
updatedAt: Date;
|
10727
|
-
deletedAt: Date | null;
|
10728
|
-
fileName: string;
|
10729
|
-
fileKey: string;
|
10730
|
-
bucketName: string;
|
10731
|
-
fileSize: number;
|
10732
|
-
fileUrl: string | null;
|
10733
|
-
status?: string | undefined;
|
10734
|
-
}[];
|
10735
|
-
}[];
|
10736
10736
|
tags: {
|
10737
10737
|
id: string;
|
10738
10738
|
name: string;
|
@@ -11051,12 +11051,12 @@ export declare const ticketContract: {
|
|
11051
11051
|
isRequired: boolean;
|
11052
11052
|
attributeId: string;
|
11053
11053
|
};
|
11054
|
-
contact: {
|
11055
|
-
[x: string]: any;
|
11056
|
-
};
|
11057
11054
|
customFields: {
|
11058
11055
|
[x: string]: any;
|
11059
11056
|
}[];
|
11057
|
+
contact: {
|
11058
|
+
[x: string]: any;
|
11059
|
+
};
|
11060
11060
|
tags: {
|
11061
11061
|
[x: string]: any;
|
11062
11062
|
};
|
@@ -11092,12 +11092,12 @@ export declare const ticketContract: {
|
|
11092
11092
|
isRequired: boolean;
|
11093
11093
|
attributeId: string;
|
11094
11094
|
};
|
11095
|
-
contact: {
|
11096
|
-
[x: string]: any;
|
11097
|
-
};
|
11098
11095
|
customFields: {
|
11099
11096
|
[x: string]: any;
|
11100
11097
|
}[];
|
11098
|
+
contact: {
|
11099
|
+
[x: string]: any;
|
11100
|
+
};
|
11101
11101
|
tags: {
|
11102
11102
|
[x: string]: any;
|
11103
11103
|
};
|
@@ -13003,6 +13003,42 @@ export declare const ticketContract: {
|
|
13003
13003
|
}[];
|
13004
13004
|
}[];
|
13005
13005
|
}[];
|
13006
|
+
customFields: {
|
13007
|
+
id: string;
|
13008
|
+
createdAt: Date;
|
13009
|
+
updatedAt: Date;
|
13010
|
+
deletedAt: Date | null;
|
13011
|
+
attribute: {
|
13012
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
13013
|
+
id: string;
|
13014
|
+
position: number;
|
13015
|
+
createdAt: Date;
|
13016
|
+
updatedAt: Date;
|
13017
|
+
deletedAt: Date | null;
|
13018
|
+
systemName: string;
|
13019
|
+
displayName: string;
|
13020
|
+
isDefault: boolean;
|
13021
|
+
isArchived: boolean;
|
13022
|
+
isRequired: boolean;
|
13023
|
+
isUnique: boolean;
|
13024
|
+
};
|
13025
|
+
textValue: string | null;
|
13026
|
+
booleanValue: boolean | null;
|
13027
|
+
numberValue: number | null;
|
13028
|
+
dateValue: Date | null;
|
13029
|
+
uploads: {
|
13030
|
+
id: string;
|
13031
|
+
createdAt: Date;
|
13032
|
+
updatedAt: Date;
|
13033
|
+
deletedAt: Date | null;
|
13034
|
+
fileName: string;
|
13035
|
+
fileKey: string;
|
13036
|
+
bucketName: string;
|
13037
|
+
fileSize: number;
|
13038
|
+
fileUrl: string | null;
|
13039
|
+
status?: string | undefined;
|
13040
|
+
}[];
|
13041
|
+
}[];
|
13006
13042
|
contact: {
|
13007
13043
|
id: string;
|
13008
13044
|
channel: string | null;
|
@@ -13099,50 +13135,14 @@ export declare const ticketContract: {
|
|
13099
13135
|
entityId: string;
|
13100
13136
|
entityType: {
|
13101
13137
|
id: string;
|
13102
|
-
description: string | null;
|
13103
|
-
createdAt: Date;
|
13104
|
-
updatedAt: Date;
|
13105
|
-
deletedAt: Date | null;
|
13106
|
-
entity: string;
|
13107
|
-
};
|
13108
|
-
}[] | undefined;
|
13109
|
-
};
|
13110
|
-
customFields: {
|
13111
|
-
id: string;
|
13112
|
-
createdAt: Date;
|
13113
|
-
updatedAt: Date;
|
13114
|
-
deletedAt: Date | null;
|
13115
|
-
attribute: {
|
13116
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
13117
|
-
id: string;
|
13118
|
-
position: number;
|
13119
|
-
createdAt: Date;
|
13120
|
-
updatedAt: Date;
|
13121
|
-
deletedAt: Date | null;
|
13122
|
-
systemName: string;
|
13123
|
-
displayName: string;
|
13124
|
-
isDefault: boolean;
|
13125
|
-
isArchived: boolean;
|
13126
|
-
isRequired: boolean;
|
13127
|
-
isUnique: boolean;
|
13128
|
-
};
|
13129
|
-
textValue: string | null;
|
13130
|
-
booleanValue: boolean | null;
|
13131
|
-
numberValue: number | null;
|
13132
|
-
dateValue: Date | null;
|
13133
|
-
uploads: {
|
13134
|
-
id: string;
|
13135
|
-
createdAt: Date;
|
13136
|
-
updatedAt: Date;
|
13137
|
-
deletedAt: Date | null;
|
13138
|
-
fileName: string;
|
13139
|
-
fileKey: string;
|
13140
|
-
bucketName: string;
|
13141
|
-
fileSize: number;
|
13142
|
-
fileUrl: string | null;
|
13143
|
-
status?: string | undefined;
|
13144
|
-
}[];
|
13145
|
-
}[];
|
13138
|
+
description: string | null;
|
13139
|
+
createdAt: Date;
|
13140
|
+
updatedAt: Date;
|
13141
|
+
deletedAt: Date | null;
|
13142
|
+
entity: string;
|
13143
|
+
};
|
13144
|
+
}[] | undefined;
|
13145
|
+
};
|
13146
13146
|
tags: {
|
13147
13147
|
id: string;
|
13148
13148
|
name: string;
|
@@ -13336,6 +13336,42 @@ export declare const ticketContract: {
|
|
13336
13336
|
}[];
|
13337
13337
|
}[];
|
13338
13338
|
}[];
|
13339
|
+
customFields: {
|
13340
|
+
id: string;
|
13341
|
+
createdAt: Date;
|
13342
|
+
updatedAt: Date;
|
13343
|
+
deletedAt: Date | null;
|
13344
|
+
attribute: {
|
13345
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
13346
|
+
id: string;
|
13347
|
+
position: number;
|
13348
|
+
createdAt: Date;
|
13349
|
+
updatedAt: Date;
|
13350
|
+
deletedAt: Date | null;
|
13351
|
+
systemName: string;
|
13352
|
+
displayName: string;
|
13353
|
+
isDefault: boolean;
|
13354
|
+
isArchived: boolean;
|
13355
|
+
isRequired: boolean;
|
13356
|
+
isUnique: boolean;
|
13357
|
+
};
|
13358
|
+
textValue: string | null;
|
13359
|
+
booleanValue: boolean | null;
|
13360
|
+
numberValue: number | null;
|
13361
|
+
dateValue: Date | null;
|
13362
|
+
uploads: {
|
13363
|
+
id: string;
|
13364
|
+
createdAt: Date;
|
13365
|
+
updatedAt: Date;
|
13366
|
+
deletedAt: Date | null;
|
13367
|
+
fileName: string;
|
13368
|
+
fileKey: string;
|
13369
|
+
bucketName: string;
|
13370
|
+
fileSize: number;
|
13371
|
+
fileUrl: string | null;
|
13372
|
+
status?: string | undefined;
|
13373
|
+
}[];
|
13374
|
+
}[];
|
13339
13375
|
contact: {
|
13340
13376
|
id: string;
|
13341
13377
|
channel: string | null;
|
@@ -13440,42 +13476,6 @@ export declare const ticketContract: {
|
|
13440
13476
|
};
|
13441
13477
|
}[] | undefined;
|
13442
13478
|
};
|
13443
|
-
customFields: {
|
13444
|
-
id: string;
|
13445
|
-
createdAt: Date;
|
13446
|
-
updatedAt: Date;
|
13447
|
-
deletedAt: Date | null;
|
13448
|
-
attribute: {
|
13449
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
13450
|
-
id: string;
|
13451
|
-
position: number;
|
13452
|
-
createdAt: Date;
|
13453
|
-
updatedAt: Date;
|
13454
|
-
deletedAt: Date | null;
|
13455
|
-
systemName: string;
|
13456
|
-
displayName: string;
|
13457
|
-
isDefault: boolean;
|
13458
|
-
isArchived: boolean;
|
13459
|
-
isRequired: boolean;
|
13460
|
-
isUnique: boolean;
|
13461
|
-
};
|
13462
|
-
textValue: string | null;
|
13463
|
-
booleanValue: boolean | null;
|
13464
|
-
numberValue: number | null;
|
13465
|
-
dateValue: Date | null;
|
13466
|
-
uploads: {
|
13467
|
-
id: string;
|
13468
|
-
createdAt: Date;
|
13469
|
-
updatedAt: Date;
|
13470
|
-
deletedAt: Date | null;
|
13471
|
-
fileName: string;
|
13472
|
-
fileKey: string;
|
13473
|
-
bucketName: string;
|
13474
|
-
fileSize: number;
|
13475
|
-
fileUrl: string | null;
|
13476
|
-
status?: string | undefined;
|
13477
|
-
}[];
|
13478
|
-
}[];
|
13479
13479
|
tags: {
|
13480
13480
|
id: string;
|
13481
13481
|
name: string;
|
@@ -13671,6 +13671,42 @@ export declare const ticketContract: {
|
|
13671
13671
|
}[];
|
13672
13672
|
}[];
|
13673
13673
|
}[];
|
13674
|
+
customFields: {
|
13675
|
+
id: string;
|
13676
|
+
createdAt: Date;
|
13677
|
+
updatedAt: Date;
|
13678
|
+
deletedAt: Date | null;
|
13679
|
+
attribute: {
|
13680
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
13681
|
+
id: string;
|
13682
|
+
position: number;
|
13683
|
+
createdAt: Date;
|
13684
|
+
updatedAt: Date;
|
13685
|
+
deletedAt: Date | null;
|
13686
|
+
systemName: string;
|
13687
|
+
displayName: string;
|
13688
|
+
isDefault: boolean;
|
13689
|
+
isArchived: boolean;
|
13690
|
+
isRequired: boolean;
|
13691
|
+
isUnique: boolean;
|
13692
|
+
};
|
13693
|
+
textValue: string | null;
|
13694
|
+
booleanValue: boolean | null;
|
13695
|
+
numberValue: number | null;
|
13696
|
+
dateValue: Date | null;
|
13697
|
+
uploads: {
|
13698
|
+
id: string;
|
13699
|
+
createdAt: Date;
|
13700
|
+
updatedAt: Date;
|
13701
|
+
deletedAt: Date | null;
|
13702
|
+
fileName: string;
|
13703
|
+
fileKey: string;
|
13704
|
+
bucketName: string;
|
13705
|
+
fileSize: number;
|
13706
|
+
fileUrl: string | null;
|
13707
|
+
status?: string | undefined;
|
13708
|
+
}[];
|
13709
|
+
}[];
|
13674
13710
|
contact: {
|
13675
13711
|
id: string;
|
13676
13712
|
channel: string | null;
|
@@ -13775,42 +13811,6 @@ export declare const ticketContract: {
|
|
13775
13811
|
};
|
13776
13812
|
}[] | undefined;
|
13777
13813
|
};
|
13778
|
-
customFields: {
|
13779
|
-
id: string;
|
13780
|
-
createdAt: Date;
|
13781
|
-
updatedAt: Date;
|
13782
|
-
deletedAt: Date | null;
|
13783
|
-
attribute: {
|
13784
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
13785
|
-
id: string;
|
13786
|
-
position: number;
|
13787
|
-
createdAt: Date;
|
13788
|
-
updatedAt: Date;
|
13789
|
-
deletedAt: Date | null;
|
13790
|
-
systemName: string;
|
13791
|
-
displayName: string;
|
13792
|
-
isDefault: boolean;
|
13793
|
-
isArchived: boolean;
|
13794
|
-
isRequired: boolean;
|
13795
|
-
isUnique: boolean;
|
13796
|
-
};
|
13797
|
-
textValue: string | null;
|
13798
|
-
booleanValue: boolean | null;
|
13799
|
-
numberValue: number | null;
|
13800
|
-
dateValue: Date | null;
|
13801
|
-
uploads: {
|
13802
|
-
id: string;
|
13803
|
-
createdAt: Date;
|
13804
|
-
updatedAt: Date;
|
13805
|
-
deletedAt: Date | null;
|
13806
|
-
fileName: string;
|
13807
|
-
fileKey: string;
|
13808
|
-
bucketName: string;
|
13809
|
-
fileSize: number;
|
13810
|
-
fileUrl: string | null;
|
13811
|
-
status?: string | undefined;
|
13812
|
-
}[];
|
13813
|
-
}[];
|
13814
13814
|
tags: {
|
13815
13815
|
id: string;
|
13816
13816
|
name: string;
|
@@ -14007,6 +14007,42 @@ export declare const ticketContract: {
|
|
14007
14007
|
}[];
|
14008
14008
|
}[];
|
14009
14009
|
}[];
|
14010
|
+
customFields: {
|
14011
|
+
id: string;
|
14012
|
+
createdAt: Date;
|
14013
|
+
updatedAt: Date;
|
14014
|
+
deletedAt: Date | null;
|
14015
|
+
attribute: {
|
14016
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
14017
|
+
id: string;
|
14018
|
+
position: number;
|
14019
|
+
createdAt: Date;
|
14020
|
+
updatedAt: Date;
|
14021
|
+
deletedAt: Date | null;
|
14022
|
+
systemName: string;
|
14023
|
+
displayName: string;
|
14024
|
+
isDefault: boolean;
|
14025
|
+
isArchived: boolean;
|
14026
|
+
isRequired: boolean;
|
14027
|
+
isUnique: boolean;
|
14028
|
+
};
|
14029
|
+
textValue: string | null;
|
14030
|
+
booleanValue: boolean | null;
|
14031
|
+
numberValue: number | null;
|
14032
|
+
dateValue: Date | null;
|
14033
|
+
uploads: {
|
14034
|
+
id: string;
|
14035
|
+
createdAt: Date;
|
14036
|
+
updatedAt: Date;
|
14037
|
+
deletedAt: Date | null;
|
14038
|
+
fileName: string;
|
14039
|
+
fileKey: string;
|
14040
|
+
bucketName: string;
|
14041
|
+
fileSize: number;
|
14042
|
+
fileUrl: string | null;
|
14043
|
+
status?: string | undefined;
|
14044
|
+
}[];
|
14045
|
+
}[];
|
14010
14046
|
contact: {
|
14011
14047
|
id: string;
|
14012
14048
|
channel: string | null;
|
@@ -14111,42 +14147,6 @@ export declare const ticketContract: {
|
|
14111
14147
|
};
|
14112
14148
|
}[] | undefined;
|
14113
14149
|
};
|
14114
|
-
customFields: {
|
14115
|
-
id: string;
|
14116
|
-
createdAt: Date;
|
14117
|
-
updatedAt: Date;
|
14118
|
-
deletedAt: Date | null;
|
14119
|
-
attribute: {
|
14120
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
14121
|
-
id: string;
|
14122
|
-
position: number;
|
14123
|
-
createdAt: Date;
|
14124
|
-
updatedAt: Date;
|
14125
|
-
deletedAt: Date | null;
|
14126
|
-
systemName: string;
|
14127
|
-
displayName: string;
|
14128
|
-
isDefault: boolean;
|
14129
|
-
isArchived: boolean;
|
14130
|
-
isRequired: boolean;
|
14131
|
-
isUnique: boolean;
|
14132
|
-
};
|
14133
|
-
textValue: string | null;
|
14134
|
-
booleanValue: boolean | null;
|
14135
|
-
numberValue: number | null;
|
14136
|
-
dateValue: Date | null;
|
14137
|
-
uploads: {
|
14138
|
-
id: string;
|
14139
|
-
createdAt: Date;
|
14140
|
-
updatedAt: Date;
|
14141
|
-
deletedAt: Date | null;
|
14142
|
-
fileName: string;
|
14143
|
-
fileKey: string;
|
14144
|
-
bucketName: string;
|
14145
|
-
fileSize: number;
|
14146
|
-
fileUrl: string | null;
|
14147
|
-
status?: string | undefined;
|
14148
|
-
}[];
|
14149
|
-
}[];
|
14150
14150
|
tags: {
|
14151
14151
|
id: string;
|
14152
14152
|
name: string;
|
@@ -17024,6 +17024,42 @@ export declare const ticketContract: {
|
|
17024
17024
|
}[];
|
17025
17025
|
}[];
|
17026
17026
|
}[];
|
17027
|
+
customFields: {
|
17028
|
+
id: string;
|
17029
|
+
createdAt: Date;
|
17030
|
+
updatedAt: Date;
|
17031
|
+
deletedAt: Date | null;
|
17032
|
+
attribute: {
|
17033
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
17034
|
+
id: string;
|
17035
|
+
position: number;
|
17036
|
+
createdAt: Date;
|
17037
|
+
updatedAt: Date;
|
17038
|
+
deletedAt: Date | null;
|
17039
|
+
systemName: string;
|
17040
|
+
displayName: string;
|
17041
|
+
isDefault: boolean;
|
17042
|
+
isArchived: boolean;
|
17043
|
+
isRequired: boolean;
|
17044
|
+
isUnique: boolean;
|
17045
|
+
};
|
17046
|
+
textValue: string | null;
|
17047
|
+
booleanValue: boolean | null;
|
17048
|
+
numberValue: number | null;
|
17049
|
+
dateValue: Date | null;
|
17050
|
+
uploads: {
|
17051
|
+
id: string;
|
17052
|
+
createdAt: Date;
|
17053
|
+
updatedAt: Date;
|
17054
|
+
deletedAt: Date | null;
|
17055
|
+
fileName: string;
|
17056
|
+
fileKey: string;
|
17057
|
+
bucketName: string;
|
17058
|
+
fileSize: number;
|
17059
|
+
fileUrl: string | null;
|
17060
|
+
status?: string | undefined;
|
17061
|
+
}[];
|
17062
|
+
}[];
|
17027
17063
|
contact: {
|
17028
17064
|
id: string;
|
17029
17065
|
channel: string | null;
|
@@ -17128,42 +17164,6 @@ export declare const ticketContract: {
|
|
17128
17164
|
};
|
17129
17165
|
}[] | undefined;
|
17130
17166
|
};
|
17131
|
-
customFields: {
|
17132
|
-
id: string;
|
17133
|
-
createdAt: Date;
|
17134
|
-
updatedAt: Date;
|
17135
|
-
deletedAt: Date | null;
|
17136
|
-
attribute: {
|
17137
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
17138
|
-
id: string;
|
17139
|
-
position: number;
|
17140
|
-
createdAt: Date;
|
17141
|
-
updatedAt: Date;
|
17142
|
-
deletedAt: Date | null;
|
17143
|
-
systemName: string;
|
17144
|
-
displayName: string;
|
17145
|
-
isDefault: boolean;
|
17146
|
-
isArchived: boolean;
|
17147
|
-
isRequired: boolean;
|
17148
|
-
isUnique: boolean;
|
17149
|
-
};
|
17150
|
-
textValue: string | null;
|
17151
|
-
booleanValue: boolean | null;
|
17152
|
-
numberValue: number | null;
|
17153
|
-
dateValue: Date | null;
|
17154
|
-
uploads: {
|
17155
|
-
id: string;
|
17156
|
-
createdAt: Date;
|
17157
|
-
updatedAt: Date;
|
17158
|
-
deletedAt: Date | null;
|
17159
|
-
fileName: string;
|
17160
|
-
fileKey: string;
|
17161
|
-
bucketName: string;
|
17162
|
-
fileSize: number;
|
17163
|
-
fileUrl: string | null;
|
17164
|
-
status?: string | undefined;
|
17165
|
-
}[];
|
17166
|
-
}[];
|
17167
17167
|
tags: {
|
17168
17168
|
id: string;
|
17169
17169
|
name: string;
|
@@ -17357,6 +17357,42 @@ export declare const ticketContract: {
|
|
17357
17357
|
}[];
|
17358
17358
|
}[];
|
17359
17359
|
}[];
|
17360
|
+
customFields: {
|
17361
|
+
id: string;
|
17362
|
+
createdAt: Date;
|
17363
|
+
updatedAt: Date;
|
17364
|
+
deletedAt: Date | null;
|
17365
|
+
attribute: {
|
17366
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
17367
|
+
id: string;
|
17368
|
+
position: number;
|
17369
|
+
createdAt: Date;
|
17370
|
+
updatedAt: Date;
|
17371
|
+
deletedAt: Date | null;
|
17372
|
+
systemName: string;
|
17373
|
+
displayName: string;
|
17374
|
+
isDefault: boolean;
|
17375
|
+
isArchived: boolean;
|
17376
|
+
isRequired: boolean;
|
17377
|
+
isUnique: boolean;
|
17378
|
+
};
|
17379
|
+
textValue: string | null;
|
17380
|
+
booleanValue: boolean | null;
|
17381
|
+
numberValue: number | null;
|
17382
|
+
dateValue: Date | null;
|
17383
|
+
uploads: {
|
17384
|
+
id: string;
|
17385
|
+
createdAt: Date;
|
17386
|
+
updatedAt: Date;
|
17387
|
+
deletedAt: Date | null;
|
17388
|
+
fileName: string;
|
17389
|
+
fileKey: string;
|
17390
|
+
bucketName: string;
|
17391
|
+
fileSize: number;
|
17392
|
+
fileUrl: string | null;
|
17393
|
+
status?: string | undefined;
|
17394
|
+
}[];
|
17395
|
+
}[];
|
17360
17396
|
contact: {
|
17361
17397
|
id: string;
|
17362
17398
|
channel: string | null;
|
@@ -17461,42 +17497,6 @@ export declare const ticketContract: {
|
|
17461
17497
|
};
|
17462
17498
|
}[] | undefined;
|
17463
17499
|
};
|
17464
|
-
customFields: {
|
17465
|
-
id: string;
|
17466
|
-
createdAt: Date;
|
17467
|
-
updatedAt: Date;
|
17468
|
-
deletedAt: Date | null;
|
17469
|
-
attribute: {
|
17470
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
17471
|
-
id: string;
|
17472
|
-
position: number;
|
17473
|
-
createdAt: Date;
|
17474
|
-
updatedAt: Date;
|
17475
|
-
deletedAt: Date | null;
|
17476
|
-
systemName: string;
|
17477
|
-
displayName: string;
|
17478
|
-
isDefault: boolean;
|
17479
|
-
isArchived: boolean;
|
17480
|
-
isRequired: boolean;
|
17481
|
-
isUnique: boolean;
|
17482
|
-
};
|
17483
|
-
textValue: string | null;
|
17484
|
-
booleanValue: boolean | null;
|
17485
|
-
numberValue: number | null;
|
17486
|
-
dateValue: Date | null;
|
17487
|
-
uploads: {
|
17488
|
-
id: string;
|
17489
|
-
createdAt: Date;
|
17490
|
-
updatedAt: Date;
|
17491
|
-
deletedAt: Date | null;
|
17492
|
-
fileName: string;
|
17493
|
-
fileKey: string;
|
17494
|
-
bucketName: string;
|
17495
|
-
fileSize: number;
|
17496
|
-
fileUrl: string | null;
|
17497
|
-
status?: string | undefined;
|
17498
|
-
}[];
|
17499
|
-
}[];
|
17500
17500
|
tags: {
|
17501
17501
|
id: string;
|
17502
17502
|
name: string;
|
@@ -17692,6 +17692,42 @@ export declare const ticketContract: {
|
|
17692
17692
|
}[];
|
17693
17693
|
}[];
|
17694
17694
|
}[];
|
17695
|
+
customFields: {
|
17696
|
+
id: string;
|
17697
|
+
createdAt: Date;
|
17698
|
+
updatedAt: Date;
|
17699
|
+
deletedAt: Date | null;
|
17700
|
+
attribute: {
|
17701
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
17702
|
+
id: string;
|
17703
|
+
position: number;
|
17704
|
+
createdAt: Date;
|
17705
|
+
updatedAt: Date;
|
17706
|
+
deletedAt: Date | null;
|
17707
|
+
systemName: string;
|
17708
|
+
displayName: string;
|
17709
|
+
isDefault: boolean;
|
17710
|
+
isArchived: boolean;
|
17711
|
+
isRequired: boolean;
|
17712
|
+
isUnique: boolean;
|
17713
|
+
};
|
17714
|
+
textValue: string | null;
|
17715
|
+
booleanValue: boolean | null;
|
17716
|
+
numberValue: number | null;
|
17717
|
+
dateValue: Date | null;
|
17718
|
+
uploads: {
|
17719
|
+
id: string;
|
17720
|
+
createdAt: Date;
|
17721
|
+
updatedAt: Date;
|
17722
|
+
deletedAt: Date | null;
|
17723
|
+
fileName: string;
|
17724
|
+
fileKey: string;
|
17725
|
+
bucketName: string;
|
17726
|
+
fileSize: number;
|
17727
|
+
fileUrl: string | null;
|
17728
|
+
status?: string | undefined;
|
17729
|
+
}[];
|
17730
|
+
}[];
|
17695
17731
|
contact: {
|
17696
17732
|
id: string;
|
17697
17733
|
channel: string | null;
|
@@ -17796,42 +17832,6 @@ export declare const ticketContract: {
|
|
17796
17832
|
};
|
17797
17833
|
}[] | undefined;
|
17798
17834
|
};
|
17799
|
-
customFields: {
|
17800
|
-
id: string;
|
17801
|
-
createdAt: Date;
|
17802
|
-
updatedAt: Date;
|
17803
|
-
deletedAt: Date | null;
|
17804
|
-
attribute: {
|
17805
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
17806
|
-
id: string;
|
17807
|
-
position: number;
|
17808
|
-
createdAt: Date;
|
17809
|
-
updatedAt: Date;
|
17810
|
-
deletedAt: Date | null;
|
17811
|
-
systemName: string;
|
17812
|
-
displayName: string;
|
17813
|
-
isDefault: boolean;
|
17814
|
-
isArchived: boolean;
|
17815
|
-
isRequired: boolean;
|
17816
|
-
isUnique: boolean;
|
17817
|
-
};
|
17818
|
-
textValue: string | null;
|
17819
|
-
booleanValue: boolean | null;
|
17820
|
-
numberValue: number | null;
|
17821
|
-
dateValue: Date | null;
|
17822
|
-
uploads: {
|
17823
|
-
id: string;
|
17824
|
-
createdAt: Date;
|
17825
|
-
updatedAt: Date;
|
17826
|
-
deletedAt: Date | null;
|
17827
|
-
fileName: string;
|
17828
|
-
fileKey: string;
|
17829
|
-
bucketName: string;
|
17830
|
-
fileSize: number;
|
17831
|
-
fileUrl: string | null;
|
17832
|
-
status?: string | undefined;
|
17833
|
-
}[];
|
17834
|
-
}[];
|
17835
17835
|
tags: {
|
17836
17836
|
id: string;
|
17837
17837
|
name: string;
|
@@ -18028,6 +18028,42 @@ export declare const ticketContract: {
|
|
18028
18028
|
}[];
|
18029
18029
|
}[];
|
18030
18030
|
}[];
|
18031
|
+
customFields: {
|
18032
|
+
id: string;
|
18033
|
+
createdAt: Date;
|
18034
|
+
updatedAt: Date;
|
18035
|
+
deletedAt: Date | null;
|
18036
|
+
attribute: {
|
18037
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
18038
|
+
id: string;
|
18039
|
+
position: number;
|
18040
|
+
createdAt: Date;
|
18041
|
+
updatedAt: Date;
|
18042
|
+
deletedAt: Date | null;
|
18043
|
+
systemName: string;
|
18044
|
+
displayName: string;
|
18045
|
+
isDefault: boolean;
|
18046
|
+
isArchived: boolean;
|
18047
|
+
isRequired: boolean;
|
18048
|
+
isUnique: boolean;
|
18049
|
+
};
|
18050
|
+
textValue: string | null;
|
18051
|
+
booleanValue: boolean | null;
|
18052
|
+
numberValue: number | null;
|
18053
|
+
dateValue: Date | null;
|
18054
|
+
uploads: {
|
18055
|
+
id: string;
|
18056
|
+
createdAt: Date;
|
18057
|
+
updatedAt: Date;
|
18058
|
+
deletedAt: Date | null;
|
18059
|
+
fileName: string;
|
18060
|
+
fileKey: string;
|
18061
|
+
bucketName: string;
|
18062
|
+
fileSize: number;
|
18063
|
+
fileUrl: string | null;
|
18064
|
+
status?: string | undefined;
|
18065
|
+
}[];
|
18066
|
+
}[];
|
18031
18067
|
contact: {
|
18032
18068
|
id: string;
|
18033
18069
|
channel: string | null;
|
@@ -18132,42 +18168,6 @@ export declare const ticketContract: {
|
|
18132
18168
|
};
|
18133
18169
|
}[] | undefined;
|
18134
18170
|
};
|
18135
|
-
customFields: {
|
18136
|
-
id: string;
|
18137
|
-
createdAt: Date;
|
18138
|
-
updatedAt: Date;
|
18139
|
-
deletedAt: Date | null;
|
18140
|
-
attribute: {
|
18141
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
18142
|
-
id: string;
|
18143
|
-
position: number;
|
18144
|
-
createdAt: Date;
|
18145
|
-
updatedAt: Date;
|
18146
|
-
deletedAt: Date | null;
|
18147
|
-
systemName: string;
|
18148
|
-
displayName: string;
|
18149
|
-
isDefault: boolean;
|
18150
|
-
isArchived: boolean;
|
18151
|
-
isRequired: boolean;
|
18152
|
-
isUnique: boolean;
|
18153
|
-
};
|
18154
|
-
textValue: string | null;
|
18155
|
-
booleanValue: boolean | null;
|
18156
|
-
numberValue: number | null;
|
18157
|
-
dateValue: Date | null;
|
18158
|
-
uploads: {
|
18159
|
-
id: string;
|
18160
|
-
createdAt: Date;
|
18161
|
-
updatedAt: Date;
|
18162
|
-
deletedAt: Date | null;
|
18163
|
-
fileName: string;
|
18164
|
-
fileKey: string;
|
18165
|
-
bucketName: string;
|
18166
|
-
fileSize: number;
|
18167
|
-
fileUrl: string | null;
|
18168
|
-
status?: string | undefined;
|
18169
|
-
}[];
|
18170
|
-
}[];
|
18171
18171
|
tags: {
|
18172
18172
|
id: string;
|
18173
18173
|
name: string;
|