@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
@@ -2265,6 +2265,42 @@ export declare const commentContract: {
|
|
2265
2265
|
}[];
|
2266
2266
|
}[];
|
2267
2267
|
}[];
|
2268
|
+
customFields: {
|
2269
|
+
id: string;
|
2270
|
+
createdAt: Date;
|
2271
|
+
updatedAt: Date;
|
2272
|
+
deletedAt: Date | null;
|
2273
|
+
attribute: {
|
2274
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2275
|
+
id: string;
|
2276
|
+
position: number;
|
2277
|
+
createdAt: Date;
|
2278
|
+
updatedAt: Date;
|
2279
|
+
deletedAt: Date | null;
|
2280
|
+
systemName: string;
|
2281
|
+
displayName: string;
|
2282
|
+
isDefault: boolean;
|
2283
|
+
isArchived: boolean;
|
2284
|
+
isRequired: boolean;
|
2285
|
+
isUnique: boolean;
|
2286
|
+
};
|
2287
|
+
textValue: string | null;
|
2288
|
+
booleanValue: boolean | null;
|
2289
|
+
numberValue: number | null;
|
2290
|
+
dateValue: Date | null;
|
2291
|
+
uploads: {
|
2292
|
+
id: string;
|
2293
|
+
createdAt: Date;
|
2294
|
+
updatedAt: Date;
|
2295
|
+
deletedAt: Date | null;
|
2296
|
+
fileName: string;
|
2297
|
+
fileKey: string;
|
2298
|
+
bucketName: string;
|
2299
|
+
fileSize: number;
|
2300
|
+
fileUrl: string | null;
|
2301
|
+
status?: string | undefined;
|
2302
|
+
}[];
|
2303
|
+
}[];
|
2268
2304
|
contact: {
|
2269
2305
|
id: string;
|
2270
2306
|
channel: string | null;
|
@@ -2369,42 +2405,6 @@ export declare const commentContract: {
|
|
2369
2405
|
};
|
2370
2406
|
}[] | undefined;
|
2371
2407
|
};
|
2372
|
-
customFields: {
|
2373
|
-
id: string;
|
2374
|
-
createdAt: Date;
|
2375
|
-
updatedAt: Date;
|
2376
|
-
deletedAt: Date | null;
|
2377
|
-
attribute: {
|
2378
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2379
|
-
id: string;
|
2380
|
-
position: number;
|
2381
|
-
createdAt: Date;
|
2382
|
-
updatedAt: Date;
|
2383
|
-
deletedAt: Date | null;
|
2384
|
-
systemName: string;
|
2385
|
-
displayName: string;
|
2386
|
-
isDefault: boolean;
|
2387
|
-
isArchived: boolean;
|
2388
|
-
isRequired: boolean;
|
2389
|
-
isUnique: boolean;
|
2390
|
-
};
|
2391
|
-
textValue: string | null;
|
2392
|
-
booleanValue: boolean | null;
|
2393
|
-
numberValue: number | null;
|
2394
|
-
dateValue: Date | null;
|
2395
|
-
uploads: {
|
2396
|
-
id: string;
|
2397
|
-
createdAt: Date;
|
2398
|
-
updatedAt: Date;
|
2399
|
-
deletedAt: Date | null;
|
2400
|
-
fileName: string;
|
2401
|
-
fileKey: string;
|
2402
|
-
bucketName: string;
|
2403
|
-
fileSize: number;
|
2404
|
-
fileUrl: string | null;
|
2405
|
-
status?: string | undefined;
|
2406
|
-
}[];
|
2407
|
-
}[];
|
2408
2408
|
tags: {
|
2409
2409
|
id: string;
|
2410
2410
|
name: string;
|
@@ -2598,6 +2598,42 @@ export declare const commentContract: {
|
|
2598
2598
|
}[];
|
2599
2599
|
}[];
|
2600
2600
|
}[];
|
2601
|
+
customFields: {
|
2602
|
+
id: string;
|
2603
|
+
createdAt: Date;
|
2604
|
+
updatedAt: Date;
|
2605
|
+
deletedAt: Date | null;
|
2606
|
+
attribute: {
|
2607
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2608
|
+
id: string;
|
2609
|
+
position: number;
|
2610
|
+
createdAt: Date;
|
2611
|
+
updatedAt: Date;
|
2612
|
+
deletedAt: Date | null;
|
2613
|
+
systemName: string;
|
2614
|
+
displayName: string;
|
2615
|
+
isDefault: boolean;
|
2616
|
+
isArchived: boolean;
|
2617
|
+
isRequired: boolean;
|
2618
|
+
isUnique: boolean;
|
2619
|
+
};
|
2620
|
+
textValue: string | null;
|
2621
|
+
booleanValue: boolean | null;
|
2622
|
+
numberValue: number | null;
|
2623
|
+
dateValue: Date | null;
|
2624
|
+
uploads: {
|
2625
|
+
id: string;
|
2626
|
+
createdAt: Date;
|
2627
|
+
updatedAt: Date;
|
2628
|
+
deletedAt: Date | null;
|
2629
|
+
fileName: string;
|
2630
|
+
fileKey: string;
|
2631
|
+
bucketName: string;
|
2632
|
+
fileSize: number;
|
2633
|
+
fileUrl: string | null;
|
2634
|
+
status?: string | undefined;
|
2635
|
+
}[];
|
2636
|
+
}[];
|
2601
2637
|
contact: {
|
2602
2638
|
id: string;
|
2603
2639
|
channel: string | null;
|
@@ -2702,42 +2738,6 @@ export declare const commentContract: {
|
|
2702
2738
|
};
|
2703
2739
|
}[] | undefined;
|
2704
2740
|
};
|
2705
|
-
customFields: {
|
2706
|
-
id: string;
|
2707
|
-
createdAt: Date;
|
2708
|
-
updatedAt: Date;
|
2709
|
-
deletedAt: Date | null;
|
2710
|
-
attribute: {
|
2711
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2712
|
-
id: string;
|
2713
|
-
position: number;
|
2714
|
-
createdAt: Date;
|
2715
|
-
updatedAt: Date;
|
2716
|
-
deletedAt: Date | null;
|
2717
|
-
systemName: string;
|
2718
|
-
displayName: string;
|
2719
|
-
isDefault: boolean;
|
2720
|
-
isArchived: boolean;
|
2721
|
-
isRequired: boolean;
|
2722
|
-
isUnique: boolean;
|
2723
|
-
};
|
2724
|
-
textValue: string | null;
|
2725
|
-
booleanValue: boolean | null;
|
2726
|
-
numberValue: number | null;
|
2727
|
-
dateValue: Date | null;
|
2728
|
-
uploads: {
|
2729
|
-
id: string;
|
2730
|
-
createdAt: Date;
|
2731
|
-
updatedAt: Date;
|
2732
|
-
deletedAt: Date | null;
|
2733
|
-
fileName: string;
|
2734
|
-
fileKey: string;
|
2735
|
-
bucketName: string;
|
2736
|
-
fileSize: number;
|
2737
|
-
fileUrl: string | null;
|
2738
|
-
status?: string | undefined;
|
2739
|
-
}[];
|
2740
|
-
}[];
|
2741
2741
|
tags: {
|
2742
2742
|
id: string;
|
2743
2743
|
name: string;
|
@@ -3141,6 +3141,42 @@ export declare const commentContract: {
|
|
3141
3141
|
}[];
|
3142
3142
|
}[];
|
3143
3143
|
}[];
|
3144
|
+
customFields: {
|
3145
|
+
id: string;
|
3146
|
+
createdAt: Date;
|
3147
|
+
updatedAt: Date;
|
3148
|
+
deletedAt: Date | null;
|
3149
|
+
attribute: {
|
3150
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3151
|
+
id: string;
|
3152
|
+
position: number;
|
3153
|
+
createdAt: Date;
|
3154
|
+
updatedAt: Date;
|
3155
|
+
deletedAt: Date | null;
|
3156
|
+
systemName: string;
|
3157
|
+
displayName: string;
|
3158
|
+
isDefault: boolean;
|
3159
|
+
isArchived: boolean;
|
3160
|
+
isRequired: boolean;
|
3161
|
+
isUnique: boolean;
|
3162
|
+
};
|
3163
|
+
textValue: string | null;
|
3164
|
+
booleanValue: boolean | null;
|
3165
|
+
numberValue: number | null;
|
3166
|
+
dateValue: Date | null;
|
3167
|
+
uploads: {
|
3168
|
+
id: string;
|
3169
|
+
createdAt: Date;
|
3170
|
+
updatedAt: Date;
|
3171
|
+
deletedAt: Date | null;
|
3172
|
+
fileName: string;
|
3173
|
+
fileKey: string;
|
3174
|
+
bucketName: string;
|
3175
|
+
fileSize: number;
|
3176
|
+
fileUrl: string | null;
|
3177
|
+
status?: string | undefined;
|
3178
|
+
}[];
|
3179
|
+
}[];
|
3144
3180
|
contact: {
|
3145
3181
|
id: string;
|
3146
3182
|
channel: string | null;
|
@@ -3245,42 +3281,6 @@ export declare const commentContract: {
|
|
3245
3281
|
};
|
3246
3282
|
}[] | undefined;
|
3247
3283
|
};
|
3248
|
-
customFields: {
|
3249
|
-
id: string;
|
3250
|
-
createdAt: Date;
|
3251
|
-
updatedAt: Date;
|
3252
|
-
deletedAt: Date | null;
|
3253
|
-
attribute: {
|
3254
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3255
|
-
id: string;
|
3256
|
-
position: number;
|
3257
|
-
createdAt: Date;
|
3258
|
-
updatedAt: Date;
|
3259
|
-
deletedAt: Date | null;
|
3260
|
-
systemName: string;
|
3261
|
-
displayName: string;
|
3262
|
-
isDefault: boolean;
|
3263
|
-
isArchived: boolean;
|
3264
|
-
isRequired: boolean;
|
3265
|
-
isUnique: boolean;
|
3266
|
-
};
|
3267
|
-
textValue: string | null;
|
3268
|
-
booleanValue: boolean | null;
|
3269
|
-
numberValue: number | null;
|
3270
|
-
dateValue: Date | null;
|
3271
|
-
uploads: {
|
3272
|
-
id: string;
|
3273
|
-
createdAt: Date;
|
3274
|
-
updatedAt: Date;
|
3275
|
-
deletedAt: Date | null;
|
3276
|
-
fileName: string;
|
3277
|
-
fileKey: string;
|
3278
|
-
bucketName: string;
|
3279
|
-
fileSize: number;
|
3280
|
-
fileUrl: string | null;
|
3281
|
-
status?: string | undefined;
|
3282
|
-
}[];
|
3283
|
-
}[];
|
3284
3284
|
tags: {
|
3285
3285
|
id: string;
|
3286
3286
|
name: string;
|
@@ -3586,6 +3586,42 @@ export declare const commentContract: {
|
|
3586
3586
|
}[];
|
3587
3587
|
}[];
|
3588
3588
|
}[];
|
3589
|
+
customFields: {
|
3590
|
+
id: string;
|
3591
|
+
createdAt: Date;
|
3592
|
+
updatedAt: Date;
|
3593
|
+
deletedAt: Date | null;
|
3594
|
+
attribute: {
|
3595
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3596
|
+
id: string;
|
3597
|
+
position: number;
|
3598
|
+
createdAt: Date;
|
3599
|
+
updatedAt: Date;
|
3600
|
+
deletedAt: Date | null;
|
3601
|
+
systemName: string;
|
3602
|
+
displayName: string;
|
3603
|
+
isDefault: boolean;
|
3604
|
+
isArchived: boolean;
|
3605
|
+
isRequired: boolean;
|
3606
|
+
isUnique: boolean;
|
3607
|
+
};
|
3608
|
+
textValue: string | null;
|
3609
|
+
booleanValue: boolean | null;
|
3610
|
+
numberValue: number | null;
|
3611
|
+
dateValue: Date | null;
|
3612
|
+
uploads: {
|
3613
|
+
id: string;
|
3614
|
+
createdAt: Date;
|
3615
|
+
updatedAt: Date;
|
3616
|
+
deletedAt: Date | null;
|
3617
|
+
fileName: string;
|
3618
|
+
fileKey: string;
|
3619
|
+
bucketName: string;
|
3620
|
+
fileSize: number;
|
3621
|
+
fileUrl: string | null;
|
3622
|
+
status?: string | undefined;
|
3623
|
+
}[];
|
3624
|
+
}[];
|
3589
3625
|
contact: {
|
3590
3626
|
id: string;
|
3591
3627
|
channel: string | null;
|
@@ -3690,42 +3726,6 @@ export declare const commentContract: {
|
|
3690
3726
|
};
|
3691
3727
|
}[] | undefined;
|
3692
3728
|
};
|
3693
|
-
customFields: {
|
3694
|
-
id: string;
|
3695
|
-
createdAt: Date;
|
3696
|
-
updatedAt: Date;
|
3697
|
-
deletedAt: Date | null;
|
3698
|
-
attribute: {
|
3699
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3700
|
-
id: string;
|
3701
|
-
position: number;
|
3702
|
-
createdAt: Date;
|
3703
|
-
updatedAt: Date;
|
3704
|
-
deletedAt: Date | null;
|
3705
|
-
systemName: string;
|
3706
|
-
displayName: string;
|
3707
|
-
isDefault: boolean;
|
3708
|
-
isArchived: boolean;
|
3709
|
-
isRequired: boolean;
|
3710
|
-
isUnique: boolean;
|
3711
|
-
};
|
3712
|
-
textValue: string | null;
|
3713
|
-
booleanValue: boolean | null;
|
3714
|
-
numberValue: number | null;
|
3715
|
-
dateValue: Date | null;
|
3716
|
-
uploads: {
|
3717
|
-
id: string;
|
3718
|
-
createdAt: Date;
|
3719
|
-
updatedAt: Date;
|
3720
|
-
deletedAt: Date | null;
|
3721
|
-
fileName: string;
|
3722
|
-
fileKey: string;
|
3723
|
-
bucketName: string;
|
3724
|
-
fileSize: number;
|
3725
|
-
fileUrl: string | null;
|
3726
|
-
status?: string | undefined;
|
3727
|
-
}[];
|
3728
|
-
}[];
|
3729
3729
|
tags: {
|
3730
3730
|
id: string;
|
3731
3731
|
name: string;
|
@@ -4034,6 +4034,42 @@ export declare const commentContract: {
|
|
4034
4034
|
}[];
|
4035
4035
|
}[];
|
4036
4036
|
}[];
|
4037
|
+
customFields: {
|
4038
|
+
id: string;
|
4039
|
+
createdAt: Date;
|
4040
|
+
updatedAt: Date;
|
4041
|
+
deletedAt: Date | null;
|
4042
|
+
attribute: {
|
4043
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4044
|
+
id: string;
|
4045
|
+
position: number;
|
4046
|
+
createdAt: Date;
|
4047
|
+
updatedAt: Date;
|
4048
|
+
deletedAt: Date | null;
|
4049
|
+
systemName: string;
|
4050
|
+
displayName: string;
|
4051
|
+
isDefault: boolean;
|
4052
|
+
isArchived: boolean;
|
4053
|
+
isRequired: boolean;
|
4054
|
+
isUnique: boolean;
|
4055
|
+
};
|
4056
|
+
textValue: string | null;
|
4057
|
+
booleanValue: boolean | null;
|
4058
|
+
numberValue: number | null;
|
4059
|
+
dateValue: Date | null;
|
4060
|
+
uploads: {
|
4061
|
+
id: string;
|
4062
|
+
createdAt: Date;
|
4063
|
+
updatedAt: Date;
|
4064
|
+
deletedAt: Date | null;
|
4065
|
+
fileName: string;
|
4066
|
+
fileKey: string;
|
4067
|
+
bucketName: string;
|
4068
|
+
fileSize: number;
|
4069
|
+
fileUrl: string | null;
|
4070
|
+
status?: string | undefined;
|
4071
|
+
}[];
|
4072
|
+
}[];
|
4037
4073
|
contact: {
|
4038
4074
|
id: string;
|
4039
4075
|
channel: string | null;
|
@@ -4138,42 +4174,6 @@ export declare const commentContract: {
|
|
4138
4174
|
};
|
4139
4175
|
}[] | undefined;
|
4140
4176
|
};
|
4141
|
-
customFields: {
|
4142
|
-
id: string;
|
4143
|
-
createdAt: Date;
|
4144
|
-
updatedAt: Date;
|
4145
|
-
deletedAt: Date | null;
|
4146
|
-
attribute: {
|
4147
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4148
|
-
id: string;
|
4149
|
-
position: number;
|
4150
|
-
createdAt: Date;
|
4151
|
-
updatedAt: Date;
|
4152
|
-
deletedAt: Date | null;
|
4153
|
-
systemName: string;
|
4154
|
-
displayName: string;
|
4155
|
-
isDefault: boolean;
|
4156
|
-
isArchived: boolean;
|
4157
|
-
isRequired: boolean;
|
4158
|
-
isUnique: boolean;
|
4159
|
-
};
|
4160
|
-
textValue: string | null;
|
4161
|
-
booleanValue: boolean | null;
|
4162
|
-
numberValue: number | null;
|
4163
|
-
dateValue: Date | null;
|
4164
|
-
uploads: {
|
4165
|
-
id: string;
|
4166
|
-
createdAt: Date;
|
4167
|
-
updatedAt: Date;
|
4168
|
-
deletedAt: Date | null;
|
4169
|
-
fileName: string;
|
4170
|
-
fileKey: string;
|
4171
|
-
bucketName: string;
|
4172
|
-
fileSize: number;
|
4173
|
-
fileUrl: string | null;
|
4174
|
-
status?: string | undefined;
|
4175
|
-
}[];
|
4176
|
-
}[];
|
4177
4177
|
tags: {
|
4178
4178
|
id: string;
|
4179
4179
|
name: string;
|
@@ -4482,6 +4482,42 @@ export declare const commentContract: {
|
|
4482
4482
|
}[];
|
4483
4483
|
}[];
|
4484
4484
|
}[];
|
4485
|
+
customFields: {
|
4486
|
+
id: string;
|
4487
|
+
createdAt: Date;
|
4488
|
+
updatedAt: Date;
|
4489
|
+
deletedAt: Date | null;
|
4490
|
+
attribute: {
|
4491
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4492
|
+
id: string;
|
4493
|
+
position: number;
|
4494
|
+
createdAt: Date;
|
4495
|
+
updatedAt: Date;
|
4496
|
+
deletedAt: Date | null;
|
4497
|
+
systemName: string;
|
4498
|
+
displayName: string;
|
4499
|
+
isDefault: boolean;
|
4500
|
+
isArchived: boolean;
|
4501
|
+
isRequired: boolean;
|
4502
|
+
isUnique: boolean;
|
4503
|
+
};
|
4504
|
+
textValue: string | null;
|
4505
|
+
booleanValue: boolean | null;
|
4506
|
+
numberValue: number | null;
|
4507
|
+
dateValue: Date | null;
|
4508
|
+
uploads: {
|
4509
|
+
id: string;
|
4510
|
+
createdAt: Date;
|
4511
|
+
updatedAt: Date;
|
4512
|
+
deletedAt: Date | null;
|
4513
|
+
fileName: string;
|
4514
|
+
fileKey: string;
|
4515
|
+
bucketName: string;
|
4516
|
+
fileSize: number;
|
4517
|
+
fileUrl: string | null;
|
4518
|
+
status?: string | undefined;
|
4519
|
+
}[];
|
4520
|
+
}[];
|
4485
4521
|
contact: {
|
4486
4522
|
id: string;
|
4487
4523
|
channel: string | null;
|
@@ -4556,72 +4592,36 @@ export declare const commentContract: {
|
|
4556
4592
|
contactEmails: {
|
4557
4593
|
id: string;
|
4558
4594
|
isPrimary: boolean;
|
4559
|
-
email: string;
|
4560
|
-
createdAt: Date;
|
4561
|
-
updatedAt: Date;
|
4562
|
-
deletedAt: Date | null;
|
4563
|
-
}[];
|
4564
|
-
contactPhones: {
|
4565
|
-
id: string;
|
4566
|
-
isPrimary: boolean;
|
4567
|
-
createdAt: Date;
|
4568
|
-
updatedAt: Date;
|
4569
|
-
deletedAt: Date | null;
|
4570
|
-
phone: string;
|
4571
|
-
}[];
|
4572
|
-
activityLogs?: {
|
4573
|
-
id: string;
|
4574
|
-
description: string;
|
4575
|
-
createdAt: Date;
|
4576
|
-
updatedAt: Date;
|
4577
|
-
deletedAt: Date | null;
|
4578
|
-
entityId: string;
|
4579
|
-
entityType: {
|
4580
|
-
id: string;
|
4581
|
-
description: string | null;
|
4582
|
-
createdAt: Date;
|
4583
|
-
updatedAt: Date;
|
4584
|
-
deletedAt: Date | null;
|
4585
|
-
entity: string;
|
4586
|
-
};
|
4587
|
-
}[] | undefined;
|
4588
|
-
};
|
4589
|
-
customFields: {
|
4590
|
-
id: string;
|
4591
|
-
createdAt: Date;
|
4592
|
-
updatedAt: Date;
|
4593
|
-
deletedAt: Date | null;
|
4594
|
-
attribute: {
|
4595
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4596
|
-
id: string;
|
4597
|
-
position: number;
|
4598
|
-
createdAt: Date;
|
4599
|
-
updatedAt: Date;
|
4600
|
-
deletedAt: Date | null;
|
4601
|
-
systemName: string;
|
4602
|
-
displayName: string;
|
4603
|
-
isDefault: boolean;
|
4604
|
-
isArchived: boolean;
|
4605
|
-
isRequired: boolean;
|
4606
|
-
isUnique: boolean;
|
4607
|
-
};
|
4608
|
-
textValue: string | null;
|
4609
|
-
booleanValue: boolean | null;
|
4610
|
-
numberValue: number | null;
|
4611
|
-
dateValue: Date | null;
|
4612
|
-
uploads: {
|
4595
|
+
email: string;
|
4596
|
+
createdAt: Date;
|
4597
|
+
updatedAt: Date;
|
4598
|
+
deletedAt: Date | null;
|
4599
|
+
}[];
|
4600
|
+
contactPhones: {
|
4613
4601
|
id: string;
|
4602
|
+
isPrimary: boolean;
|
4614
4603
|
createdAt: Date;
|
4615
4604
|
updatedAt: Date;
|
4616
4605
|
deletedAt: Date | null;
|
4617
|
-
|
4618
|
-
fileKey: string;
|
4619
|
-
bucketName: string;
|
4620
|
-
fileSize: number;
|
4621
|
-
fileUrl: string | null;
|
4622
|
-
status?: string | undefined;
|
4606
|
+
phone: string;
|
4623
4607
|
}[];
|
4624
|
-
|
4608
|
+
activityLogs?: {
|
4609
|
+
id: string;
|
4610
|
+
description: string;
|
4611
|
+
createdAt: Date;
|
4612
|
+
updatedAt: Date;
|
4613
|
+
deletedAt: Date | null;
|
4614
|
+
entityId: string;
|
4615
|
+
entityType: {
|
4616
|
+
id: string;
|
4617
|
+
description: string | null;
|
4618
|
+
createdAt: Date;
|
4619
|
+
updatedAt: Date;
|
4620
|
+
deletedAt: Date | null;
|
4621
|
+
entity: string;
|
4622
|
+
};
|
4623
|
+
}[] | undefined;
|
4624
|
+
};
|
4625
4625
|
tags: {
|
4626
4626
|
id: string;
|
4627
4627
|
name: string;
|
@@ -7191,6 +7191,42 @@ export declare const commentContract: {
|
|
7191
7191
|
}[];
|
7192
7192
|
}[];
|
7193
7193
|
}[];
|
7194
|
+
customFields: {
|
7195
|
+
id: string;
|
7196
|
+
createdAt: Date;
|
7197
|
+
updatedAt: Date;
|
7198
|
+
deletedAt: Date | null;
|
7199
|
+
attribute: {
|
7200
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7201
|
+
id: string;
|
7202
|
+
position: number;
|
7203
|
+
createdAt: Date;
|
7204
|
+
updatedAt: Date;
|
7205
|
+
deletedAt: Date | null;
|
7206
|
+
systemName: string;
|
7207
|
+
displayName: string;
|
7208
|
+
isDefault: boolean;
|
7209
|
+
isArchived: boolean;
|
7210
|
+
isRequired: boolean;
|
7211
|
+
isUnique: boolean;
|
7212
|
+
};
|
7213
|
+
textValue: string | null;
|
7214
|
+
booleanValue: boolean | null;
|
7215
|
+
numberValue: number | null;
|
7216
|
+
dateValue: Date | null;
|
7217
|
+
uploads: {
|
7218
|
+
id: string;
|
7219
|
+
createdAt: Date;
|
7220
|
+
updatedAt: Date;
|
7221
|
+
deletedAt: Date | null;
|
7222
|
+
fileName: string;
|
7223
|
+
fileKey: string;
|
7224
|
+
bucketName: string;
|
7225
|
+
fileSize: number;
|
7226
|
+
fileUrl: string | null;
|
7227
|
+
status?: string | undefined;
|
7228
|
+
}[];
|
7229
|
+
}[];
|
7194
7230
|
contact: {
|
7195
7231
|
id: string;
|
7196
7232
|
channel: string | null;
|
@@ -7295,42 +7331,6 @@ export declare const commentContract: {
|
|
7295
7331
|
};
|
7296
7332
|
}[] | undefined;
|
7297
7333
|
};
|
7298
|
-
customFields: {
|
7299
|
-
id: string;
|
7300
|
-
createdAt: Date;
|
7301
|
-
updatedAt: Date;
|
7302
|
-
deletedAt: Date | null;
|
7303
|
-
attribute: {
|
7304
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7305
|
-
id: string;
|
7306
|
-
position: number;
|
7307
|
-
createdAt: Date;
|
7308
|
-
updatedAt: Date;
|
7309
|
-
deletedAt: Date | null;
|
7310
|
-
systemName: string;
|
7311
|
-
displayName: string;
|
7312
|
-
isDefault: boolean;
|
7313
|
-
isArchived: boolean;
|
7314
|
-
isRequired: boolean;
|
7315
|
-
isUnique: boolean;
|
7316
|
-
};
|
7317
|
-
textValue: string | null;
|
7318
|
-
booleanValue: boolean | null;
|
7319
|
-
numberValue: number | null;
|
7320
|
-
dateValue: Date | null;
|
7321
|
-
uploads: {
|
7322
|
-
id: string;
|
7323
|
-
createdAt: Date;
|
7324
|
-
updatedAt: Date;
|
7325
|
-
deletedAt: Date | null;
|
7326
|
-
fileName: string;
|
7327
|
-
fileKey: string;
|
7328
|
-
bucketName: string;
|
7329
|
-
fileSize: number;
|
7330
|
-
fileUrl: string | null;
|
7331
|
-
status?: string | undefined;
|
7332
|
-
}[];
|
7333
|
-
}[];
|
7334
7334
|
tags: {
|
7335
7335
|
id: string;
|
7336
7336
|
name: string;
|
@@ -7524,6 +7524,42 @@ export declare const commentContract: {
|
|
7524
7524
|
}[];
|
7525
7525
|
}[];
|
7526
7526
|
}[];
|
7527
|
+
customFields: {
|
7528
|
+
id: string;
|
7529
|
+
createdAt: Date;
|
7530
|
+
updatedAt: Date;
|
7531
|
+
deletedAt: Date | null;
|
7532
|
+
attribute: {
|
7533
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7534
|
+
id: string;
|
7535
|
+
position: number;
|
7536
|
+
createdAt: Date;
|
7537
|
+
updatedAt: Date;
|
7538
|
+
deletedAt: Date | null;
|
7539
|
+
systemName: string;
|
7540
|
+
displayName: string;
|
7541
|
+
isDefault: boolean;
|
7542
|
+
isArchived: boolean;
|
7543
|
+
isRequired: boolean;
|
7544
|
+
isUnique: boolean;
|
7545
|
+
};
|
7546
|
+
textValue: string | null;
|
7547
|
+
booleanValue: boolean | null;
|
7548
|
+
numberValue: number | null;
|
7549
|
+
dateValue: Date | null;
|
7550
|
+
uploads: {
|
7551
|
+
id: string;
|
7552
|
+
createdAt: Date;
|
7553
|
+
updatedAt: Date;
|
7554
|
+
deletedAt: Date | null;
|
7555
|
+
fileName: string;
|
7556
|
+
fileKey: string;
|
7557
|
+
bucketName: string;
|
7558
|
+
fileSize: number;
|
7559
|
+
fileUrl: string | null;
|
7560
|
+
status?: string | undefined;
|
7561
|
+
}[];
|
7562
|
+
}[];
|
7527
7563
|
contact: {
|
7528
7564
|
id: string;
|
7529
7565
|
channel: string | null;
|
@@ -7628,42 +7664,6 @@ export declare const commentContract: {
|
|
7628
7664
|
};
|
7629
7665
|
}[] | undefined;
|
7630
7666
|
};
|
7631
|
-
customFields: {
|
7632
|
-
id: string;
|
7633
|
-
createdAt: Date;
|
7634
|
-
updatedAt: Date;
|
7635
|
-
deletedAt: Date | null;
|
7636
|
-
attribute: {
|
7637
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7638
|
-
id: string;
|
7639
|
-
position: number;
|
7640
|
-
createdAt: Date;
|
7641
|
-
updatedAt: Date;
|
7642
|
-
deletedAt: Date | null;
|
7643
|
-
systemName: string;
|
7644
|
-
displayName: string;
|
7645
|
-
isDefault: boolean;
|
7646
|
-
isArchived: boolean;
|
7647
|
-
isRequired: boolean;
|
7648
|
-
isUnique: boolean;
|
7649
|
-
};
|
7650
|
-
textValue: string | null;
|
7651
|
-
booleanValue: boolean | null;
|
7652
|
-
numberValue: number | null;
|
7653
|
-
dateValue: Date | null;
|
7654
|
-
uploads: {
|
7655
|
-
id: string;
|
7656
|
-
createdAt: Date;
|
7657
|
-
updatedAt: Date;
|
7658
|
-
deletedAt: Date | null;
|
7659
|
-
fileName: string;
|
7660
|
-
fileKey: string;
|
7661
|
-
bucketName: string;
|
7662
|
-
fileSize: number;
|
7663
|
-
fileUrl: string | null;
|
7664
|
-
status?: string | undefined;
|
7665
|
-
}[];
|
7666
|
-
}[];
|
7667
7667
|
tags: {
|
7668
7668
|
id: string;
|
7669
7669
|
name: string;
|
@@ -8067,6 +8067,42 @@ export declare const commentContract: {
|
|
8067
8067
|
}[];
|
8068
8068
|
}[];
|
8069
8069
|
}[];
|
8070
|
+
customFields: {
|
8071
|
+
id: string;
|
8072
|
+
createdAt: Date;
|
8073
|
+
updatedAt: Date;
|
8074
|
+
deletedAt: Date | null;
|
8075
|
+
attribute: {
|
8076
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
8077
|
+
id: string;
|
8078
|
+
position: number;
|
8079
|
+
createdAt: Date;
|
8080
|
+
updatedAt: Date;
|
8081
|
+
deletedAt: Date | null;
|
8082
|
+
systemName: string;
|
8083
|
+
displayName: string;
|
8084
|
+
isDefault: boolean;
|
8085
|
+
isArchived: boolean;
|
8086
|
+
isRequired: boolean;
|
8087
|
+
isUnique: boolean;
|
8088
|
+
};
|
8089
|
+
textValue: string | null;
|
8090
|
+
booleanValue: boolean | null;
|
8091
|
+
numberValue: number | null;
|
8092
|
+
dateValue: Date | null;
|
8093
|
+
uploads: {
|
8094
|
+
id: string;
|
8095
|
+
createdAt: Date;
|
8096
|
+
updatedAt: Date;
|
8097
|
+
deletedAt: Date | null;
|
8098
|
+
fileName: string;
|
8099
|
+
fileKey: string;
|
8100
|
+
bucketName: string;
|
8101
|
+
fileSize: number;
|
8102
|
+
fileUrl: string | null;
|
8103
|
+
status?: string | undefined;
|
8104
|
+
}[];
|
8105
|
+
}[];
|
8070
8106
|
contact: {
|
8071
8107
|
id: string;
|
8072
8108
|
channel: string | null;
|
@@ -8163,50 +8199,14 @@ export declare const commentContract: {
|
|
8163
8199
|
entityId: string;
|
8164
8200
|
entityType: {
|
8165
8201
|
id: string;
|
8166
|
-
description: string | null;
|
8167
|
-
createdAt: Date;
|
8168
|
-
updatedAt: Date;
|
8169
|
-
deletedAt: Date | null;
|
8170
|
-
entity: string;
|
8171
|
-
};
|
8172
|
-
}[] | undefined;
|
8173
|
-
};
|
8174
|
-
customFields: {
|
8175
|
-
id: string;
|
8176
|
-
createdAt: Date;
|
8177
|
-
updatedAt: Date;
|
8178
|
-
deletedAt: Date | null;
|
8179
|
-
attribute: {
|
8180
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
8181
|
-
id: string;
|
8182
|
-
position: number;
|
8183
|
-
createdAt: Date;
|
8184
|
-
updatedAt: Date;
|
8185
|
-
deletedAt: Date | null;
|
8186
|
-
systemName: string;
|
8187
|
-
displayName: string;
|
8188
|
-
isDefault: boolean;
|
8189
|
-
isArchived: boolean;
|
8190
|
-
isRequired: boolean;
|
8191
|
-
isUnique: boolean;
|
8192
|
-
};
|
8193
|
-
textValue: string | null;
|
8194
|
-
booleanValue: boolean | null;
|
8195
|
-
numberValue: number | null;
|
8196
|
-
dateValue: Date | null;
|
8197
|
-
uploads: {
|
8198
|
-
id: string;
|
8199
|
-
createdAt: Date;
|
8200
|
-
updatedAt: Date;
|
8201
|
-
deletedAt: Date | null;
|
8202
|
-
fileName: string;
|
8203
|
-
fileKey: string;
|
8204
|
-
bucketName: string;
|
8205
|
-
fileSize: number;
|
8206
|
-
fileUrl: string | null;
|
8207
|
-
status?: string | undefined;
|
8208
|
-
}[];
|
8209
|
-
}[];
|
8202
|
+
description: string | null;
|
8203
|
+
createdAt: Date;
|
8204
|
+
updatedAt: Date;
|
8205
|
+
deletedAt: Date | null;
|
8206
|
+
entity: string;
|
8207
|
+
};
|
8208
|
+
}[] | undefined;
|
8209
|
+
};
|
8210
8210
|
tags: {
|
8211
8211
|
id: string;
|
8212
8212
|
name: string;
|
@@ -8512,6 +8512,42 @@ export declare const commentContract: {
|
|
8512
8512
|
}[];
|
8513
8513
|
}[];
|
8514
8514
|
}[];
|
8515
|
+
customFields: {
|
8516
|
+
id: string;
|
8517
|
+
createdAt: Date;
|
8518
|
+
updatedAt: Date;
|
8519
|
+
deletedAt: Date | null;
|
8520
|
+
attribute: {
|
8521
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
8522
|
+
id: string;
|
8523
|
+
position: number;
|
8524
|
+
createdAt: Date;
|
8525
|
+
updatedAt: Date;
|
8526
|
+
deletedAt: Date | null;
|
8527
|
+
systemName: string;
|
8528
|
+
displayName: string;
|
8529
|
+
isDefault: boolean;
|
8530
|
+
isArchived: boolean;
|
8531
|
+
isRequired: boolean;
|
8532
|
+
isUnique: boolean;
|
8533
|
+
};
|
8534
|
+
textValue: string | null;
|
8535
|
+
booleanValue: boolean | null;
|
8536
|
+
numberValue: number | null;
|
8537
|
+
dateValue: Date | null;
|
8538
|
+
uploads: {
|
8539
|
+
id: string;
|
8540
|
+
createdAt: Date;
|
8541
|
+
updatedAt: Date;
|
8542
|
+
deletedAt: Date | null;
|
8543
|
+
fileName: string;
|
8544
|
+
fileKey: string;
|
8545
|
+
bucketName: string;
|
8546
|
+
fileSize: number;
|
8547
|
+
fileUrl: string | null;
|
8548
|
+
status?: string | undefined;
|
8549
|
+
}[];
|
8550
|
+
}[];
|
8515
8551
|
contact: {
|
8516
8552
|
id: string;
|
8517
8553
|
channel: string | null;
|
@@ -8616,42 +8652,6 @@ export declare const commentContract: {
|
|
8616
8652
|
};
|
8617
8653
|
}[] | undefined;
|
8618
8654
|
};
|
8619
|
-
customFields: {
|
8620
|
-
id: string;
|
8621
|
-
createdAt: Date;
|
8622
|
-
updatedAt: Date;
|
8623
|
-
deletedAt: Date | null;
|
8624
|
-
attribute: {
|
8625
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
8626
|
-
id: string;
|
8627
|
-
position: number;
|
8628
|
-
createdAt: Date;
|
8629
|
-
updatedAt: Date;
|
8630
|
-
deletedAt: Date | null;
|
8631
|
-
systemName: string;
|
8632
|
-
displayName: string;
|
8633
|
-
isDefault: boolean;
|
8634
|
-
isArchived: boolean;
|
8635
|
-
isRequired: boolean;
|
8636
|
-
isUnique: boolean;
|
8637
|
-
};
|
8638
|
-
textValue: string | null;
|
8639
|
-
booleanValue: boolean | null;
|
8640
|
-
numberValue: number | null;
|
8641
|
-
dateValue: Date | null;
|
8642
|
-
uploads: {
|
8643
|
-
id: string;
|
8644
|
-
createdAt: Date;
|
8645
|
-
updatedAt: Date;
|
8646
|
-
deletedAt: Date | null;
|
8647
|
-
fileName: string;
|
8648
|
-
fileKey: string;
|
8649
|
-
bucketName: string;
|
8650
|
-
fileSize: number;
|
8651
|
-
fileUrl: string | null;
|
8652
|
-
status?: string | undefined;
|
8653
|
-
}[];
|
8654
|
-
}[];
|
8655
8655
|
tags: {
|
8656
8656
|
id: string;
|
8657
8657
|
name: string;
|
@@ -11232,6 +11232,42 @@ export declare const commentContract: {
|
|
11232
11232
|
}[];
|
11233
11233
|
}[];
|
11234
11234
|
}[];
|
11235
|
+
customFields: {
|
11236
|
+
id: string;
|
11237
|
+
createdAt: Date;
|
11238
|
+
updatedAt: Date;
|
11239
|
+
deletedAt: Date | null;
|
11240
|
+
attribute: {
|
11241
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
11242
|
+
id: string;
|
11243
|
+
position: number;
|
11244
|
+
createdAt: Date;
|
11245
|
+
updatedAt: Date;
|
11246
|
+
deletedAt: Date | null;
|
11247
|
+
systemName: string;
|
11248
|
+
displayName: string;
|
11249
|
+
isDefault: boolean;
|
11250
|
+
isArchived: boolean;
|
11251
|
+
isRequired: boolean;
|
11252
|
+
isUnique: boolean;
|
11253
|
+
};
|
11254
|
+
textValue: string | null;
|
11255
|
+
booleanValue: boolean | null;
|
11256
|
+
numberValue: number | null;
|
11257
|
+
dateValue: Date | null;
|
11258
|
+
uploads: {
|
11259
|
+
id: string;
|
11260
|
+
createdAt: Date;
|
11261
|
+
updatedAt: Date;
|
11262
|
+
deletedAt: Date | null;
|
11263
|
+
fileName: string;
|
11264
|
+
fileKey: string;
|
11265
|
+
bucketName: string;
|
11266
|
+
fileSize: number;
|
11267
|
+
fileUrl: string | null;
|
11268
|
+
status?: string | undefined;
|
11269
|
+
}[];
|
11270
|
+
}[];
|
11235
11271
|
contact: {
|
11236
11272
|
id: string;
|
11237
11273
|
channel: string | null;
|
@@ -11336,42 +11372,6 @@ export declare const commentContract: {
|
|
11336
11372
|
};
|
11337
11373
|
}[] | undefined;
|
11338
11374
|
};
|
11339
|
-
customFields: {
|
11340
|
-
id: string;
|
11341
|
-
createdAt: Date;
|
11342
|
-
updatedAt: Date;
|
11343
|
-
deletedAt: Date | null;
|
11344
|
-
attribute: {
|
11345
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
11346
|
-
id: string;
|
11347
|
-
position: number;
|
11348
|
-
createdAt: Date;
|
11349
|
-
updatedAt: Date;
|
11350
|
-
deletedAt: Date | null;
|
11351
|
-
systemName: string;
|
11352
|
-
displayName: string;
|
11353
|
-
isDefault: boolean;
|
11354
|
-
isArchived: boolean;
|
11355
|
-
isRequired: boolean;
|
11356
|
-
isUnique: boolean;
|
11357
|
-
};
|
11358
|
-
textValue: string | null;
|
11359
|
-
booleanValue: boolean | null;
|
11360
|
-
numberValue: number | null;
|
11361
|
-
dateValue: Date | null;
|
11362
|
-
uploads: {
|
11363
|
-
id: string;
|
11364
|
-
createdAt: Date;
|
11365
|
-
updatedAt: Date;
|
11366
|
-
deletedAt: Date | null;
|
11367
|
-
fileName: string;
|
11368
|
-
fileKey: string;
|
11369
|
-
bucketName: string;
|
11370
|
-
fileSize: number;
|
11371
|
-
fileUrl: string | null;
|
11372
|
-
status?: string | undefined;
|
11373
|
-
}[];
|
11374
|
-
}[];
|
11375
11375
|
tags: {
|
11376
11376
|
id: string;
|
11377
11377
|
name: string;
|
@@ -11565,6 +11565,42 @@ export declare const commentContract: {
|
|
11565
11565
|
}[];
|
11566
11566
|
}[];
|
11567
11567
|
}[];
|
11568
|
+
customFields: {
|
11569
|
+
id: string;
|
11570
|
+
createdAt: Date;
|
11571
|
+
updatedAt: Date;
|
11572
|
+
deletedAt: Date | null;
|
11573
|
+
attribute: {
|
11574
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
11575
|
+
id: string;
|
11576
|
+
position: number;
|
11577
|
+
createdAt: Date;
|
11578
|
+
updatedAt: Date;
|
11579
|
+
deletedAt: Date | null;
|
11580
|
+
systemName: string;
|
11581
|
+
displayName: string;
|
11582
|
+
isDefault: boolean;
|
11583
|
+
isArchived: boolean;
|
11584
|
+
isRequired: boolean;
|
11585
|
+
isUnique: boolean;
|
11586
|
+
};
|
11587
|
+
textValue: string | null;
|
11588
|
+
booleanValue: boolean | null;
|
11589
|
+
numberValue: number | null;
|
11590
|
+
dateValue: Date | null;
|
11591
|
+
uploads: {
|
11592
|
+
id: string;
|
11593
|
+
createdAt: Date;
|
11594
|
+
updatedAt: Date;
|
11595
|
+
deletedAt: Date | null;
|
11596
|
+
fileName: string;
|
11597
|
+
fileKey: string;
|
11598
|
+
bucketName: string;
|
11599
|
+
fileSize: number;
|
11600
|
+
fileUrl: string | null;
|
11601
|
+
status?: string | undefined;
|
11602
|
+
}[];
|
11603
|
+
}[];
|
11568
11604
|
contact: {
|
11569
11605
|
id: string;
|
11570
11606
|
channel: string | null;
|
@@ -11669,42 +11705,6 @@ export declare const commentContract: {
|
|
11669
11705
|
};
|
11670
11706
|
}[] | undefined;
|
11671
11707
|
};
|
11672
|
-
customFields: {
|
11673
|
-
id: string;
|
11674
|
-
createdAt: Date;
|
11675
|
-
updatedAt: Date;
|
11676
|
-
deletedAt: Date | null;
|
11677
|
-
attribute: {
|
11678
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
11679
|
-
id: string;
|
11680
|
-
position: number;
|
11681
|
-
createdAt: Date;
|
11682
|
-
updatedAt: Date;
|
11683
|
-
deletedAt: Date | null;
|
11684
|
-
systemName: string;
|
11685
|
-
displayName: string;
|
11686
|
-
isDefault: boolean;
|
11687
|
-
isArchived: boolean;
|
11688
|
-
isRequired: boolean;
|
11689
|
-
isUnique: boolean;
|
11690
|
-
};
|
11691
|
-
textValue: string | null;
|
11692
|
-
booleanValue: boolean | null;
|
11693
|
-
numberValue: number | null;
|
11694
|
-
dateValue: Date | null;
|
11695
|
-
uploads: {
|
11696
|
-
id: string;
|
11697
|
-
createdAt: Date;
|
11698
|
-
updatedAt: Date;
|
11699
|
-
deletedAt: Date | null;
|
11700
|
-
fileName: string;
|
11701
|
-
fileKey: string;
|
11702
|
-
bucketName: string;
|
11703
|
-
fileSize: number;
|
11704
|
-
fileUrl: string | null;
|
11705
|
-
status?: string | undefined;
|
11706
|
-
}[];
|
11707
|
-
}[];
|
11708
11708
|
tags: {
|
11709
11709
|
id: string;
|
11710
11710
|
name: string;
|
@@ -12108,6 +12108,42 @@ export declare const commentContract: {
|
|
12108
12108
|
}[];
|
12109
12109
|
}[];
|
12110
12110
|
}[];
|
12111
|
+
customFields: {
|
12112
|
+
id: string;
|
12113
|
+
createdAt: Date;
|
12114
|
+
updatedAt: Date;
|
12115
|
+
deletedAt: Date | null;
|
12116
|
+
attribute: {
|
12117
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
12118
|
+
id: string;
|
12119
|
+
position: number;
|
12120
|
+
createdAt: Date;
|
12121
|
+
updatedAt: Date;
|
12122
|
+
deletedAt: Date | null;
|
12123
|
+
systemName: string;
|
12124
|
+
displayName: string;
|
12125
|
+
isDefault: boolean;
|
12126
|
+
isArchived: boolean;
|
12127
|
+
isRequired: boolean;
|
12128
|
+
isUnique: boolean;
|
12129
|
+
};
|
12130
|
+
textValue: string | null;
|
12131
|
+
booleanValue: boolean | null;
|
12132
|
+
numberValue: number | null;
|
12133
|
+
dateValue: Date | null;
|
12134
|
+
uploads: {
|
12135
|
+
id: string;
|
12136
|
+
createdAt: Date;
|
12137
|
+
updatedAt: Date;
|
12138
|
+
deletedAt: Date | null;
|
12139
|
+
fileName: string;
|
12140
|
+
fileKey: string;
|
12141
|
+
bucketName: string;
|
12142
|
+
fileSize: number;
|
12143
|
+
fileUrl: string | null;
|
12144
|
+
status?: string | undefined;
|
12145
|
+
}[];
|
12146
|
+
}[];
|
12111
12147
|
contact: {
|
12112
12148
|
id: string;
|
12113
12149
|
channel: string | null;
|
@@ -12212,42 +12248,6 @@ export declare const commentContract: {
|
|
12212
12248
|
};
|
12213
12249
|
}[] | undefined;
|
12214
12250
|
};
|
12215
|
-
customFields: {
|
12216
|
-
id: string;
|
12217
|
-
createdAt: Date;
|
12218
|
-
updatedAt: Date;
|
12219
|
-
deletedAt: Date | null;
|
12220
|
-
attribute: {
|
12221
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
12222
|
-
id: string;
|
12223
|
-
position: number;
|
12224
|
-
createdAt: Date;
|
12225
|
-
updatedAt: Date;
|
12226
|
-
deletedAt: Date | null;
|
12227
|
-
systemName: string;
|
12228
|
-
displayName: string;
|
12229
|
-
isDefault: boolean;
|
12230
|
-
isArchived: boolean;
|
12231
|
-
isRequired: boolean;
|
12232
|
-
isUnique: boolean;
|
12233
|
-
};
|
12234
|
-
textValue: string | null;
|
12235
|
-
booleanValue: boolean | null;
|
12236
|
-
numberValue: number | null;
|
12237
|
-
dateValue: Date | null;
|
12238
|
-
uploads: {
|
12239
|
-
id: string;
|
12240
|
-
createdAt: Date;
|
12241
|
-
updatedAt: Date;
|
12242
|
-
deletedAt: Date | null;
|
12243
|
-
fileName: string;
|
12244
|
-
fileKey: string;
|
12245
|
-
bucketName: string;
|
12246
|
-
fileSize: number;
|
12247
|
-
fileUrl: string | null;
|
12248
|
-
status?: string | undefined;
|
12249
|
-
}[];
|
12250
|
-
}[];
|
12251
12251
|
tags: {
|
12252
12252
|
id: string;
|
12253
12253
|
name: string;
|
@@ -12553,6 +12553,42 @@ export declare const commentContract: {
|
|
12553
12553
|
}[];
|
12554
12554
|
}[];
|
12555
12555
|
}[];
|
12556
|
+
customFields: {
|
12557
|
+
id: string;
|
12558
|
+
createdAt: Date;
|
12559
|
+
updatedAt: Date;
|
12560
|
+
deletedAt: Date | null;
|
12561
|
+
attribute: {
|
12562
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
12563
|
+
id: string;
|
12564
|
+
position: number;
|
12565
|
+
createdAt: Date;
|
12566
|
+
updatedAt: Date;
|
12567
|
+
deletedAt: Date | null;
|
12568
|
+
systemName: string;
|
12569
|
+
displayName: string;
|
12570
|
+
isDefault: boolean;
|
12571
|
+
isArchived: boolean;
|
12572
|
+
isRequired: boolean;
|
12573
|
+
isUnique: boolean;
|
12574
|
+
};
|
12575
|
+
textValue: string | null;
|
12576
|
+
booleanValue: boolean | null;
|
12577
|
+
numberValue: number | null;
|
12578
|
+
dateValue: Date | null;
|
12579
|
+
uploads: {
|
12580
|
+
id: string;
|
12581
|
+
createdAt: Date;
|
12582
|
+
updatedAt: Date;
|
12583
|
+
deletedAt: Date | null;
|
12584
|
+
fileName: string;
|
12585
|
+
fileKey: string;
|
12586
|
+
bucketName: string;
|
12587
|
+
fileSize: number;
|
12588
|
+
fileUrl: string | null;
|
12589
|
+
status?: string | undefined;
|
12590
|
+
}[];
|
12591
|
+
}[];
|
12556
12592
|
contact: {
|
12557
12593
|
id: string;
|
12558
12594
|
channel: string | null;
|
@@ -12657,42 +12693,6 @@ export declare const commentContract: {
|
|
12657
12693
|
};
|
12658
12694
|
}[] | undefined;
|
12659
12695
|
};
|
12660
|
-
customFields: {
|
12661
|
-
id: string;
|
12662
|
-
createdAt: Date;
|
12663
|
-
updatedAt: Date;
|
12664
|
-
deletedAt: Date | null;
|
12665
|
-
attribute: {
|
12666
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
12667
|
-
id: string;
|
12668
|
-
position: number;
|
12669
|
-
createdAt: Date;
|
12670
|
-
updatedAt: Date;
|
12671
|
-
deletedAt: Date | null;
|
12672
|
-
systemName: string;
|
12673
|
-
displayName: string;
|
12674
|
-
isDefault: boolean;
|
12675
|
-
isArchived: boolean;
|
12676
|
-
isRequired: boolean;
|
12677
|
-
isUnique: boolean;
|
12678
|
-
};
|
12679
|
-
textValue: string | null;
|
12680
|
-
booleanValue: boolean | null;
|
12681
|
-
numberValue: number | null;
|
12682
|
-
dateValue: Date | null;
|
12683
|
-
uploads: {
|
12684
|
-
id: string;
|
12685
|
-
createdAt: Date;
|
12686
|
-
updatedAt: Date;
|
12687
|
-
deletedAt: Date | null;
|
12688
|
-
fileName: string;
|
12689
|
-
fileKey: string;
|
12690
|
-
bucketName: string;
|
12691
|
-
fileSize: number;
|
12692
|
-
fileUrl: string | null;
|
12693
|
-
status?: string | undefined;
|
12694
|
-
}[];
|
12695
|
-
}[];
|
12696
12696
|
tags: {
|
12697
12697
|
id: string;
|
12698
12698
|
name: string;
|
@@ -13001,6 +13001,42 @@ export declare const commentContract: {
|
|
13001
13001
|
}[];
|
13002
13002
|
}[];
|
13003
13003
|
}[];
|
13004
|
+
customFields: {
|
13005
|
+
id: string;
|
13006
|
+
createdAt: Date;
|
13007
|
+
updatedAt: Date;
|
13008
|
+
deletedAt: Date | null;
|
13009
|
+
attribute: {
|
13010
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
13011
|
+
id: string;
|
13012
|
+
position: number;
|
13013
|
+
createdAt: Date;
|
13014
|
+
updatedAt: Date;
|
13015
|
+
deletedAt: Date | null;
|
13016
|
+
systemName: string;
|
13017
|
+
displayName: string;
|
13018
|
+
isDefault: boolean;
|
13019
|
+
isArchived: boolean;
|
13020
|
+
isRequired: boolean;
|
13021
|
+
isUnique: boolean;
|
13022
|
+
};
|
13023
|
+
textValue: string | null;
|
13024
|
+
booleanValue: boolean | null;
|
13025
|
+
numberValue: number | null;
|
13026
|
+
dateValue: Date | null;
|
13027
|
+
uploads: {
|
13028
|
+
id: string;
|
13029
|
+
createdAt: Date;
|
13030
|
+
updatedAt: Date;
|
13031
|
+
deletedAt: Date | null;
|
13032
|
+
fileName: string;
|
13033
|
+
fileKey: string;
|
13034
|
+
bucketName: string;
|
13035
|
+
fileSize: number;
|
13036
|
+
fileUrl: string | null;
|
13037
|
+
status?: string | undefined;
|
13038
|
+
}[];
|
13039
|
+
}[];
|
13004
13040
|
contact: {
|
13005
13041
|
id: string;
|
13006
13042
|
channel: string | null;
|
@@ -13105,42 +13141,6 @@ export declare const commentContract: {
|
|
13105
13141
|
};
|
13106
13142
|
}[] | undefined;
|
13107
13143
|
};
|
13108
|
-
customFields: {
|
13109
|
-
id: string;
|
13110
|
-
createdAt: Date;
|
13111
|
-
updatedAt: Date;
|
13112
|
-
deletedAt: Date | null;
|
13113
|
-
attribute: {
|
13114
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
13115
|
-
id: string;
|
13116
|
-
position: number;
|
13117
|
-
createdAt: Date;
|
13118
|
-
updatedAt: Date;
|
13119
|
-
deletedAt: Date | null;
|
13120
|
-
systemName: string;
|
13121
|
-
displayName: string;
|
13122
|
-
isDefault: boolean;
|
13123
|
-
isArchived: boolean;
|
13124
|
-
isRequired: boolean;
|
13125
|
-
isUnique: boolean;
|
13126
|
-
};
|
13127
|
-
textValue: string | null;
|
13128
|
-
booleanValue: boolean | null;
|
13129
|
-
numberValue: number | null;
|
13130
|
-
dateValue: Date | null;
|
13131
|
-
uploads: {
|
13132
|
-
id: string;
|
13133
|
-
createdAt: Date;
|
13134
|
-
updatedAt: Date;
|
13135
|
-
deletedAt: Date | null;
|
13136
|
-
fileName: string;
|
13137
|
-
fileKey: string;
|
13138
|
-
bucketName: string;
|
13139
|
-
fileSize: number;
|
13140
|
-
fileUrl: string | null;
|
13141
|
-
status?: string | undefined;
|
13142
|
-
}[];
|
13143
|
-
}[];
|
13144
13144
|
tags: {
|
13145
13145
|
id: string;
|
13146
13146
|
name: string;
|
@@ -13449,6 +13449,42 @@ export declare const commentContract: {
|
|
13449
13449
|
}[];
|
13450
13450
|
}[];
|
13451
13451
|
}[];
|
13452
|
+
customFields: {
|
13453
|
+
id: string;
|
13454
|
+
createdAt: Date;
|
13455
|
+
updatedAt: Date;
|
13456
|
+
deletedAt: Date | null;
|
13457
|
+
attribute: {
|
13458
|
+
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
13459
|
+
id: string;
|
13460
|
+
position: number;
|
13461
|
+
createdAt: Date;
|
13462
|
+
updatedAt: Date;
|
13463
|
+
deletedAt: Date | null;
|
13464
|
+
systemName: string;
|
13465
|
+
displayName: string;
|
13466
|
+
isDefault: boolean;
|
13467
|
+
isArchived: boolean;
|
13468
|
+
isRequired: boolean;
|
13469
|
+
isUnique: boolean;
|
13470
|
+
};
|
13471
|
+
textValue: string | null;
|
13472
|
+
booleanValue: boolean | null;
|
13473
|
+
numberValue: number | null;
|
13474
|
+
dateValue: Date | null;
|
13475
|
+
uploads: {
|
13476
|
+
id: string;
|
13477
|
+
createdAt: Date;
|
13478
|
+
updatedAt: Date;
|
13479
|
+
deletedAt: Date | null;
|
13480
|
+
fileName: string;
|
13481
|
+
fileKey: string;
|
13482
|
+
bucketName: string;
|
13483
|
+
fileSize: number;
|
13484
|
+
fileUrl: string | null;
|
13485
|
+
status?: string | undefined;
|
13486
|
+
}[];
|
13487
|
+
}[];
|
13452
13488
|
contact: {
|
13453
13489
|
id: string;
|
13454
13490
|
channel: string | null;
|
@@ -13553,42 +13589,6 @@ export declare const commentContract: {
|
|
13553
13589
|
};
|
13554
13590
|
}[] | undefined;
|
13555
13591
|
};
|
13556
|
-
customFields: {
|
13557
|
-
id: string;
|
13558
|
-
createdAt: Date;
|
13559
|
-
updatedAt: Date;
|
13560
|
-
deletedAt: Date | null;
|
13561
|
-
attribute: {
|
13562
|
-
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
13563
|
-
id: string;
|
13564
|
-
position: number;
|
13565
|
-
createdAt: Date;
|
13566
|
-
updatedAt: Date;
|
13567
|
-
deletedAt: Date | null;
|
13568
|
-
systemName: string;
|
13569
|
-
displayName: string;
|
13570
|
-
isDefault: boolean;
|
13571
|
-
isArchived: boolean;
|
13572
|
-
isRequired: boolean;
|
13573
|
-
isUnique: boolean;
|
13574
|
-
};
|
13575
|
-
textValue: string | null;
|
13576
|
-
booleanValue: boolean | null;
|
13577
|
-
numberValue: number | null;
|
13578
|
-
dateValue: Date | null;
|
13579
|
-
uploads: {
|
13580
|
-
id: string;
|
13581
|
-
createdAt: Date;
|
13582
|
-
updatedAt: Date;
|
13583
|
-
deletedAt: Date | null;
|
13584
|
-
fileName: string;
|
13585
|
-
fileKey: string;
|
13586
|
-
bucketName: string;
|
13587
|
-
fileSize: number;
|
13588
|
-
fileUrl: string | null;
|
13589
|
-
status?: string | undefined;
|
13590
|
-
}[];
|
13591
|
-
}[];
|
13592
13592
|
tags: {
|
13593
13593
|
id: string;
|
13594
13594
|
name: string;
|