@kl1/contracts 1.0.66 → 1.0.68
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 +2328 -2331
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2328 -2331
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- 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 +3401 -4062
- 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/dashboard/index.d.ts +16 -31
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +6 -15
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- 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/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- 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/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- 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
@@ -2239,6 +2239,42 @@ export declare const CommentSchema: z.ZodObject<{
|
|
2239
2239
|
}[];
|
2240
2240
|
}[];
|
2241
2241
|
}[];
|
2242
|
+
customFields: {
|
2243
|
+
id: string;
|
2244
|
+
createdAt: Date;
|
2245
|
+
updatedAt: Date;
|
2246
|
+
deletedAt: Date | null;
|
2247
|
+
attribute: {
|
2248
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2249
|
+
id: string;
|
2250
|
+
position: number;
|
2251
|
+
createdAt: Date;
|
2252
|
+
updatedAt: Date;
|
2253
|
+
deletedAt: Date | null;
|
2254
|
+
systemName: string;
|
2255
|
+
displayName: string;
|
2256
|
+
isDefault: boolean;
|
2257
|
+
isArchived: boolean;
|
2258
|
+
isRequired: boolean;
|
2259
|
+
isUnique: boolean;
|
2260
|
+
};
|
2261
|
+
textValue: string | null;
|
2262
|
+
booleanValue: boolean | null;
|
2263
|
+
numberValue: number | null;
|
2264
|
+
dateValue: Date | null;
|
2265
|
+
uploads: {
|
2266
|
+
id: string;
|
2267
|
+
createdAt: Date;
|
2268
|
+
updatedAt: Date;
|
2269
|
+
deletedAt: Date | null;
|
2270
|
+
fileName: string;
|
2271
|
+
fileKey: string;
|
2272
|
+
bucketName: string;
|
2273
|
+
fileSize: number;
|
2274
|
+
fileUrl: string | null;
|
2275
|
+
status?: string | undefined;
|
2276
|
+
}[];
|
2277
|
+
}[];
|
2242
2278
|
contact: {
|
2243
2279
|
id: string;
|
2244
2280
|
channel: string | null;
|
@@ -2343,42 +2379,6 @@ export declare const CommentSchema: z.ZodObject<{
|
|
2343
2379
|
};
|
2344
2380
|
}[] | undefined;
|
2345
2381
|
};
|
2346
|
-
customFields: {
|
2347
|
-
id: string;
|
2348
|
-
createdAt: Date;
|
2349
|
-
updatedAt: Date;
|
2350
|
-
deletedAt: Date | null;
|
2351
|
-
attribute: {
|
2352
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2353
|
-
id: string;
|
2354
|
-
position: number;
|
2355
|
-
createdAt: Date;
|
2356
|
-
updatedAt: Date;
|
2357
|
-
deletedAt: Date | null;
|
2358
|
-
systemName: string;
|
2359
|
-
displayName: string;
|
2360
|
-
isDefault: boolean;
|
2361
|
-
isArchived: boolean;
|
2362
|
-
isRequired: boolean;
|
2363
|
-
isUnique: boolean;
|
2364
|
-
};
|
2365
|
-
textValue: string | null;
|
2366
|
-
booleanValue: boolean | null;
|
2367
|
-
numberValue: number | null;
|
2368
|
-
dateValue: Date | null;
|
2369
|
-
uploads: {
|
2370
|
-
id: string;
|
2371
|
-
createdAt: Date;
|
2372
|
-
updatedAt: Date;
|
2373
|
-
deletedAt: Date | null;
|
2374
|
-
fileName: string;
|
2375
|
-
fileKey: string;
|
2376
|
-
bucketName: string;
|
2377
|
-
fileSize: number;
|
2378
|
-
fileUrl: string | null;
|
2379
|
-
status?: string | undefined;
|
2380
|
-
}[];
|
2381
|
-
}[];
|
2382
2382
|
tags: {
|
2383
2383
|
id: string;
|
2384
2384
|
name: string;
|
@@ -2572,6 +2572,42 @@ export declare const CommentSchema: z.ZodObject<{
|
|
2572
2572
|
}[];
|
2573
2573
|
}[];
|
2574
2574
|
}[];
|
2575
|
+
customFields: {
|
2576
|
+
id: string;
|
2577
|
+
createdAt: Date;
|
2578
|
+
updatedAt: Date;
|
2579
|
+
deletedAt: Date | null;
|
2580
|
+
attribute: {
|
2581
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2582
|
+
id: string;
|
2583
|
+
position: number;
|
2584
|
+
createdAt: Date;
|
2585
|
+
updatedAt: Date;
|
2586
|
+
deletedAt: Date | null;
|
2587
|
+
systemName: string;
|
2588
|
+
displayName: string;
|
2589
|
+
isDefault: boolean;
|
2590
|
+
isArchived: boolean;
|
2591
|
+
isRequired: boolean;
|
2592
|
+
isUnique: boolean;
|
2593
|
+
};
|
2594
|
+
textValue: string | null;
|
2595
|
+
booleanValue: boolean | null;
|
2596
|
+
numberValue: number | null;
|
2597
|
+
dateValue: Date | null;
|
2598
|
+
uploads: {
|
2599
|
+
id: string;
|
2600
|
+
createdAt: Date;
|
2601
|
+
updatedAt: Date;
|
2602
|
+
deletedAt: Date | null;
|
2603
|
+
fileName: string;
|
2604
|
+
fileKey: string;
|
2605
|
+
bucketName: string;
|
2606
|
+
fileSize: number;
|
2607
|
+
fileUrl: string | null;
|
2608
|
+
status?: string | undefined;
|
2609
|
+
}[];
|
2610
|
+
}[];
|
2575
2611
|
contact: {
|
2576
2612
|
id: string;
|
2577
2613
|
channel: string | null;
|
@@ -2676,42 +2712,6 @@ export declare const CommentSchema: z.ZodObject<{
|
|
2676
2712
|
};
|
2677
2713
|
}[] | undefined;
|
2678
2714
|
};
|
2679
|
-
customFields: {
|
2680
|
-
id: string;
|
2681
|
-
createdAt: Date;
|
2682
|
-
updatedAt: Date;
|
2683
|
-
deletedAt: Date | null;
|
2684
|
-
attribute: {
|
2685
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2686
|
-
id: string;
|
2687
|
-
position: number;
|
2688
|
-
createdAt: Date;
|
2689
|
-
updatedAt: Date;
|
2690
|
-
deletedAt: Date | null;
|
2691
|
-
systemName: string;
|
2692
|
-
displayName: string;
|
2693
|
-
isDefault: boolean;
|
2694
|
-
isArchived: boolean;
|
2695
|
-
isRequired: boolean;
|
2696
|
-
isUnique: boolean;
|
2697
|
-
};
|
2698
|
-
textValue: string | null;
|
2699
|
-
booleanValue: boolean | null;
|
2700
|
-
numberValue: number | null;
|
2701
|
-
dateValue: Date | null;
|
2702
|
-
uploads: {
|
2703
|
-
id: string;
|
2704
|
-
createdAt: Date;
|
2705
|
-
updatedAt: Date;
|
2706
|
-
deletedAt: Date | null;
|
2707
|
-
fileName: string;
|
2708
|
-
fileKey: string;
|
2709
|
-
bucketName: string;
|
2710
|
-
fileSize: number;
|
2711
|
-
fileUrl: string | null;
|
2712
|
-
status?: string | undefined;
|
2713
|
-
}[];
|
2714
|
-
}[];
|
2715
2715
|
tags: {
|
2716
2716
|
id: string;
|
2717
2717
|
name: string;
|
@@ -3115,6 +3115,42 @@ export declare const CommentSchema: z.ZodObject<{
|
|
3115
3115
|
}[];
|
3116
3116
|
}[];
|
3117
3117
|
}[];
|
3118
|
+
customFields: {
|
3119
|
+
id: string;
|
3120
|
+
createdAt: Date;
|
3121
|
+
updatedAt: Date;
|
3122
|
+
deletedAt: Date | null;
|
3123
|
+
attribute: {
|
3124
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3125
|
+
id: string;
|
3126
|
+
position: number;
|
3127
|
+
createdAt: Date;
|
3128
|
+
updatedAt: Date;
|
3129
|
+
deletedAt: Date | null;
|
3130
|
+
systemName: string;
|
3131
|
+
displayName: string;
|
3132
|
+
isDefault: boolean;
|
3133
|
+
isArchived: boolean;
|
3134
|
+
isRequired: boolean;
|
3135
|
+
isUnique: boolean;
|
3136
|
+
};
|
3137
|
+
textValue: string | null;
|
3138
|
+
booleanValue: boolean | null;
|
3139
|
+
numberValue: number | null;
|
3140
|
+
dateValue: Date | null;
|
3141
|
+
uploads: {
|
3142
|
+
id: string;
|
3143
|
+
createdAt: Date;
|
3144
|
+
updatedAt: Date;
|
3145
|
+
deletedAt: Date | null;
|
3146
|
+
fileName: string;
|
3147
|
+
fileKey: string;
|
3148
|
+
bucketName: string;
|
3149
|
+
fileSize: number;
|
3150
|
+
fileUrl: string | null;
|
3151
|
+
status?: string | undefined;
|
3152
|
+
}[];
|
3153
|
+
}[];
|
3118
3154
|
contact: {
|
3119
3155
|
id: string;
|
3120
3156
|
channel: string | null;
|
@@ -3219,42 +3255,6 @@ export declare const CommentSchema: z.ZodObject<{
|
|
3219
3255
|
};
|
3220
3256
|
}[] | undefined;
|
3221
3257
|
};
|
3222
|
-
customFields: {
|
3223
|
-
id: string;
|
3224
|
-
createdAt: Date;
|
3225
|
-
updatedAt: Date;
|
3226
|
-
deletedAt: Date | null;
|
3227
|
-
attribute: {
|
3228
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3229
|
-
id: string;
|
3230
|
-
position: number;
|
3231
|
-
createdAt: Date;
|
3232
|
-
updatedAt: Date;
|
3233
|
-
deletedAt: Date | null;
|
3234
|
-
systemName: string;
|
3235
|
-
displayName: string;
|
3236
|
-
isDefault: boolean;
|
3237
|
-
isArchived: boolean;
|
3238
|
-
isRequired: boolean;
|
3239
|
-
isUnique: boolean;
|
3240
|
-
};
|
3241
|
-
textValue: string | null;
|
3242
|
-
booleanValue: boolean | null;
|
3243
|
-
numberValue: number | null;
|
3244
|
-
dateValue: Date | null;
|
3245
|
-
uploads: {
|
3246
|
-
id: string;
|
3247
|
-
createdAt: Date;
|
3248
|
-
updatedAt: Date;
|
3249
|
-
deletedAt: Date | null;
|
3250
|
-
fileName: string;
|
3251
|
-
fileKey: string;
|
3252
|
-
bucketName: string;
|
3253
|
-
fileSize: number;
|
3254
|
-
fileUrl: string | null;
|
3255
|
-
status?: string | undefined;
|
3256
|
-
}[];
|
3257
|
-
}[];
|
3258
3258
|
tags: {
|
3259
3259
|
id: string;
|
3260
3260
|
name: string;
|
@@ -3560,6 +3560,42 @@ export declare const CommentSchema: z.ZodObject<{
|
|
3560
3560
|
}[];
|
3561
3561
|
}[];
|
3562
3562
|
}[];
|
3563
|
+
customFields: {
|
3564
|
+
id: string;
|
3565
|
+
createdAt: Date;
|
3566
|
+
updatedAt: Date;
|
3567
|
+
deletedAt: Date | null;
|
3568
|
+
attribute: {
|
3569
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3570
|
+
id: string;
|
3571
|
+
position: number;
|
3572
|
+
createdAt: Date;
|
3573
|
+
updatedAt: Date;
|
3574
|
+
deletedAt: Date | null;
|
3575
|
+
systemName: string;
|
3576
|
+
displayName: string;
|
3577
|
+
isDefault: boolean;
|
3578
|
+
isArchived: boolean;
|
3579
|
+
isRequired: boolean;
|
3580
|
+
isUnique: boolean;
|
3581
|
+
};
|
3582
|
+
textValue: string | null;
|
3583
|
+
booleanValue: boolean | null;
|
3584
|
+
numberValue: number | null;
|
3585
|
+
dateValue: Date | null;
|
3586
|
+
uploads: {
|
3587
|
+
id: string;
|
3588
|
+
createdAt: Date;
|
3589
|
+
updatedAt: Date;
|
3590
|
+
deletedAt: Date | null;
|
3591
|
+
fileName: string;
|
3592
|
+
fileKey: string;
|
3593
|
+
bucketName: string;
|
3594
|
+
fileSize: number;
|
3595
|
+
fileUrl: string | null;
|
3596
|
+
status?: string | undefined;
|
3597
|
+
}[];
|
3598
|
+
}[];
|
3563
3599
|
contact: {
|
3564
3600
|
id: string;
|
3565
3601
|
channel: string | null;
|
@@ -3664,42 +3700,6 @@ export declare const CommentSchema: z.ZodObject<{
|
|
3664
3700
|
};
|
3665
3701
|
}[] | undefined;
|
3666
3702
|
};
|
3667
|
-
customFields: {
|
3668
|
-
id: string;
|
3669
|
-
createdAt: Date;
|
3670
|
-
updatedAt: Date;
|
3671
|
-
deletedAt: Date | null;
|
3672
|
-
attribute: {
|
3673
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3674
|
-
id: string;
|
3675
|
-
position: number;
|
3676
|
-
createdAt: Date;
|
3677
|
-
updatedAt: Date;
|
3678
|
-
deletedAt: Date | null;
|
3679
|
-
systemName: string;
|
3680
|
-
displayName: string;
|
3681
|
-
isDefault: boolean;
|
3682
|
-
isArchived: boolean;
|
3683
|
-
isRequired: boolean;
|
3684
|
-
isUnique: boolean;
|
3685
|
-
};
|
3686
|
-
textValue: string | null;
|
3687
|
-
booleanValue: boolean | null;
|
3688
|
-
numberValue: number | null;
|
3689
|
-
dateValue: Date | null;
|
3690
|
-
uploads: {
|
3691
|
-
id: string;
|
3692
|
-
createdAt: Date;
|
3693
|
-
updatedAt: Date;
|
3694
|
-
deletedAt: Date | null;
|
3695
|
-
fileName: string;
|
3696
|
-
fileKey: string;
|
3697
|
-
bucketName: string;
|
3698
|
-
fileSize: number;
|
3699
|
-
fileUrl: string | null;
|
3700
|
-
status?: string | undefined;
|
3701
|
-
}[];
|
3702
|
-
}[];
|
3703
3703
|
tags: {
|
3704
3704
|
id: string;
|
3705
3705
|
name: string;
|