@kl1/contracts 1.0.26 → 1.0.27
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 +1556 -1493
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1555 -1493
- package/dist/index.mjs.map +1 -1
- package/dist/src/attribute/index.d.ts +108 -108
- package/dist/src/attribute/schema.d.ts +24 -24
- package/dist/src/attribute-option/schema.d.ts +9 -9
- package/dist/src/base-contract.d.ts +9 -9
- package/dist/src/call-log/schema.d.ts +9 -9
- package/dist/src/category/index.d.ts +42 -42
- package/dist/src/category/schema.d.ts +9 -9
- package/dist/src/channel/index.d.ts +218 -32
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +9 -9
- package/dist/src/chat/index.d.ts +5335 -5335
- package/dist/src/chat/schema.d.ts +877 -877
- package/dist/src/chat/validation.d.ts +1009 -1009
- package/dist/src/comment/index.d.ts +363 -363
- package/dist/src/comment/schema.d.ts +105 -105
- package/dist/src/company/index.d.ts +296 -293
- package/dist/src/company/index.d.ts.map +1 -1
- package/dist/src/company/schema.d.ts +191 -54
- package/dist/src/company/schema.d.ts.map +1 -1
- package/dist/src/company/validation.d.ts +162 -162
- package/dist/src/contact/index.d.ts +1213 -1213
- package/dist/src/contact/schema.d.ts +201 -201
- package/dist/src/contact/validation.d.ts +997 -997
- package/dist/src/contact-email/schema.d.ts +9 -9
- package/dist/src/contact-phone/schema.d.ts +9 -9
- package/dist/src/contract.d.ts +9543 -9231
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/custom-field/schema.d.ts +9 -9
- package/dist/src/custom-field-upload/schema.d.ts +9 -9
- package/dist/src/cx-log/index.d.ts +621 -621
- package/dist/src/cx-log/schema.d.ts +564 -564
- package/dist/src/dashboard/index.d.ts +5 -1
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +125 -0
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/evaluate-form/schema.d.ts +9 -9
- package/dist/src/group/schema.d.ts +9 -9
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/log-form/schema.d.ts +9 -9
- package/dist/src/mail/mail-contract.d.ts +21 -21
- package/dist/src/mail/room-contract.d.ts +21 -21
- package/dist/src/mail/schemas/room.schema.d.ts +15 -15
- package/dist/src/messenger/index.d.ts +1226 -1096
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/messenger/validation.d.ts +108 -1
- package/dist/src/messenger/validation.d.ts.map +1 -1
- package/dist/src/tag/index.d.ts +45 -45
- package/dist/src/tag/schema.d.ts +9 -9
- package/dist/src/tag-group/schema.d.ts +9 -9
- package/dist/src/telephony-agent-presence-status/index.d.ts +93 -93
- package/dist/src/telephony-agent-presence-status/schema.d.ts +33 -33
- package/dist/src/telephony-cdr/schema.d.ts +9 -9
- package/dist/src/telephony-live-queue-call/schema.d.ts +9 -9
- package/dist/src/telephony-queue-call-count/schema.d.ts +9 -9
- package/dist/src/tenant/schema.d.ts +9 -9
- package/dist/src/ticket/index.d.ts +570 -570
- package/dist/src/ticket/schema.d.ts +135 -135
- package/dist/src/upload/schema.d.ts +9 -9
- package/dist/src/user-presence-status-log/index.d.ts +36 -36
- package/dist/src/user-presence-status-log/schema.d.ts +39 -39
- package/dist/src/widget/index.d.ts +78 -78
- package/dist/src/widget/schema.d.ts +9 -9
- package/dist/src/wrap-up-form/index.d.ts +96 -96
- package/dist/src/wrap-up-form/schema.d.ts +24 -24
- package/package.json +4 -10
- package/dist/src/app/index.d.ts +0 -17
- package/dist/src/app/index.d.ts.map +0 -1
- package/dist/src/mail/mail-server.d.ts +0 -216
- package/dist/src/mail/mail-server.d.ts.map +0 -1
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -54,9 +54,9 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
54
54
|
dateValue: z.ZodNullable<z.ZodDate>;
|
55
55
|
attribute: z.ZodObject<Omit<{
|
56
56
|
id: z.ZodString;
|
57
|
-
createdAt: z.
|
58
|
-
updatedAt: z.
|
59
|
-
deletedAt: z.ZodNullable<z.
|
57
|
+
createdAt: z.ZodString;
|
58
|
+
updatedAt: z.ZodString;
|
59
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
60
60
|
systemName: z.ZodString;
|
61
61
|
displayName: z.ZodString;
|
62
62
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -86,23 +86,23 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
86
86
|
}>, "many">;
|
87
87
|
group: z.ZodObject<{
|
88
88
|
id: z.ZodString;
|
89
|
-
createdAt: z.
|
90
|
-
updatedAt: z.
|
91
|
-
deletedAt: z.ZodNullable<z.
|
89
|
+
createdAt: z.ZodString;
|
90
|
+
updatedAt: z.ZodString;
|
91
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
92
92
|
systemName: z.ZodString;
|
93
93
|
displayName: z.ZodString;
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
95
95
|
id: string;
|
96
|
-
createdAt:
|
97
|
-
updatedAt:
|
98
|
-
deletedAt:
|
96
|
+
createdAt: string;
|
97
|
+
updatedAt: string;
|
98
|
+
deletedAt: string | null;
|
99
99
|
systemName: string;
|
100
100
|
displayName: string;
|
101
101
|
}, {
|
102
102
|
id: string;
|
103
|
-
createdAt:
|
104
|
-
updatedAt:
|
105
|
-
deletedAt:
|
103
|
+
createdAt: string;
|
104
|
+
updatedAt: string;
|
105
|
+
deletedAt: string | null;
|
106
106
|
systemName: string;
|
107
107
|
displayName: string;
|
108
108
|
}>;
|
@@ -110,9 +110,9 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
110
110
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
111
111
|
id: string;
|
112
112
|
position: number;
|
113
|
-
createdAt:
|
114
|
-
updatedAt:
|
115
|
-
deletedAt:
|
113
|
+
createdAt: string;
|
114
|
+
updatedAt: string;
|
115
|
+
deletedAt: string | null;
|
116
116
|
isDefault: boolean;
|
117
117
|
systemName: string;
|
118
118
|
displayName: string;
|
@@ -123,9 +123,9 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
123
123
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
124
124
|
id: string;
|
125
125
|
position: number;
|
126
|
-
createdAt:
|
127
|
-
updatedAt:
|
128
|
-
deletedAt:
|
126
|
+
createdAt: string;
|
127
|
+
updatedAt: string;
|
128
|
+
deletedAt: string | null;
|
129
129
|
isDefault: boolean;
|
130
130
|
systemName: string;
|
131
131
|
displayName: string;
|
@@ -135,33 +135,33 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
135
135
|
}>;
|
136
136
|
uploads: z.ZodArray<z.ZodObject<{
|
137
137
|
id: z.ZodString;
|
138
|
-
createdAt: z.
|
139
|
-
updatedAt: z.
|
140
|
-
deletedAt: z.ZodNullable<z.
|
138
|
+
createdAt: z.ZodString;
|
139
|
+
updatedAt: z.ZodString;
|
140
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
141
141
|
customFieldId: z.ZodString;
|
142
142
|
upload: z.ZodObject<{
|
143
143
|
id: z.ZodString;
|
144
|
-
createdAt: z.
|
145
|
-
updatedAt: z.
|
146
|
-
deletedAt: z.ZodNullable<z.
|
144
|
+
createdAt: z.ZodString;
|
145
|
+
updatedAt: z.ZodString;
|
146
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
147
147
|
bucketName: z.ZodString;
|
148
148
|
fileName: z.ZodString;
|
149
149
|
fileSize: z.ZodNumber;
|
150
150
|
fileKey: z.ZodString;
|
151
151
|
}, "strip", z.ZodTypeAny, {
|
152
152
|
id: string;
|
153
|
-
createdAt:
|
154
|
-
updatedAt:
|
155
|
-
deletedAt:
|
153
|
+
createdAt: string;
|
154
|
+
updatedAt: string;
|
155
|
+
deletedAt: string | null;
|
156
156
|
fileName: string;
|
157
157
|
fileKey: string;
|
158
158
|
bucketName: string;
|
159
159
|
fileSize: number;
|
160
160
|
}, {
|
161
161
|
id: string;
|
162
|
-
createdAt:
|
163
|
-
updatedAt:
|
164
|
-
deletedAt:
|
162
|
+
createdAt: string;
|
163
|
+
updatedAt: string;
|
164
|
+
deletedAt: string | null;
|
165
165
|
fileName: string;
|
166
166
|
fileKey: string;
|
167
167
|
bucketName: string;
|
@@ -169,15 +169,15 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
169
169
|
}>;
|
170
170
|
}, "strip", z.ZodTypeAny, {
|
171
171
|
id: string;
|
172
|
-
createdAt:
|
173
|
-
updatedAt:
|
174
|
-
deletedAt:
|
172
|
+
createdAt: string;
|
173
|
+
updatedAt: string;
|
174
|
+
deletedAt: string | null;
|
175
175
|
customFieldId: string;
|
176
176
|
upload: {
|
177
177
|
id: string;
|
178
|
-
createdAt:
|
179
|
-
updatedAt:
|
180
|
-
deletedAt:
|
178
|
+
createdAt: string;
|
179
|
+
updatedAt: string;
|
180
|
+
deletedAt: string | null;
|
181
181
|
fileName: string;
|
182
182
|
fileKey: string;
|
183
183
|
bucketName: string;
|
@@ -185,15 +185,15 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
185
185
|
};
|
186
186
|
}, {
|
187
187
|
id: string;
|
188
|
-
createdAt:
|
189
|
-
updatedAt:
|
190
|
-
deletedAt:
|
188
|
+
createdAt: string;
|
189
|
+
updatedAt: string;
|
190
|
+
deletedAt: string | null;
|
191
191
|
customFieldId: string;
|
192
192
|
upload: {
|
193
193
|
id: string;
|
194
|
-
createdAt:
|
195
|
-
updatedAt:
|
196
|
-
deletedAt:
|
194
|
+
createdAt: string;
|
195
|
+
updatedAt: string;
|
196
|
+
deletedAt: string | null;
|
197
197
|
fileName: string;
|
198
198
|
fileKey: string;
|
199
199
|
bucketName: string;
|
@@ -209,9 +209,9 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
209
209
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
210
210
|
id: string;
|
211
211
|
position: number;
|
212
|
-
createdAt:
|
213
|
-
updatedAt:
|
214
|
-
deletedAt:
|
212
|
+
createdAt: string;
|
213
|
+
updatedAt: string;
|
214
|
+
deletedAt: string | null;
|
215
215
|
isDefault: boolean;
|
216
216
|
systemName: string;
|
217
217
|
displayName: string;
|
@@ -225,15 +225,15 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
225
225
|
dateValue: Date | null;
|
226
226
|
uploads: {
|
227
227
|
id: string;
|
228
|
-
createdAt:
|
229
|
-
updatedAt:
|
230
|
-
deletedAt:
|
228
|
+
createdAt: string;
|
229
|
+
updatedAt: string;
|
230
|
+
deletedAt: string | null;
|
231
231
|
customFieldId: string;
|
232
232
|
upload: {
|
233
233
|
id: string;
|
234
|
-
createdAt:
|
235
|
-
updatedAt:
|
236
|
-
deletedAt:
|
234
|
+
createdAt: string;
|
235
|
+
updatedAt: string;
|
236
|
+
deletedAt: string | null;
|
237
237
|
fileName: string;
|
238
238
|
fileKey: string;
|
239
239
|
bucketName: string;
|
@@ -249,9 +249,9 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
249
249
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
250
250
|
id: string;
|
251
251
|
position: number;
|
252
|
-
createdAt:
|
253
|
-
updatedAt:
|
254
|
-
deletedAt:
|
252
|
+
createdAt: string;
|
253
|
+
updatedAt: string;
|
254
|
+
deletedAt: string | null;
|
255
255
|
isDefault: boolean;
|
256
256
|
systemName: string;
|
257
257
|
displayName: string;
|
@@ -265,15 +265,15 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
265
265
|
dateValue: Date | null;
|
266
266
|
uploads: {
|
267
267
|
id: string;
|
268
|
-
createdAt:
|
269
|
-
updatedAt:
|
270
|
-
deletedAt:
|
268
|
+
createdAt: string;
|
269
|
+
updatedAt: string;
|
270
|
+
deletedAt: string | null;
|
271
271
|
customFieldId: string;
|
272
272
|
upload: {
|
273
273
|
id: string;
|
274
|
-
createdAt:
|
275
|
-
updatedAt:
|
276
|
-
deletedAt:
|
274
|
+
createdAt: string;
|
275
|
+
updatedAt: string;
|
276
|
+
deletedAt: string | null;
|
277
277
|
fileName: string;
|
278
278
|
fileKey: string;
|
279
279
|
bucketName: string;
|
@@ -376,46 +376,46 @@ export declare const ContactSchema: z.ZodObject<{
|
|
376
376
|
socialProfileUrl: z.ZodNullable<z.ZodString>;
|
377
377
|
tags: z.ZodArray<z.ZodObject<{
|
378
378
|
id: z.ZodString;
|
379
|
-
createdAt: z.
|
380
|
-
updatedAt: z.
|
381
|
-
deletedAt: z.ZodNullable<z.
|
379
|
+
createdAt: z.ZodString;
|
380
|
+
updatedAt: z.ZodString;
|
381
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
382
382
|
name: z.ZodString;
|
383
383
|
}, "strip", z.ZodTypeAny, {
|
384
384
|
id: string;
|
385
385
|
name: string;
|
386
|
-
createdAt:
|
387
|
-
updatedAt:
|
388
|
-
deletedAt:
|
386
|
+
createdAt: string;
|
387
|
+
updatedAt: string;
|
388
|
+
deletedAt: string | null;
|
389
389
|
}, {
|
390
390
|
id: string;
|
391
391
|
name: string;
|
392
|
-
createdAt:
|
393
|
-
updatedAt:
|
394
|
-
deletedAt:
|
392
|
+
createdAt: string;
|
393
|
+
updatedAt: string;
|
394
|
+
deletedAt: string | null;
|
395
395
|
}>, "many">;
|
396
396
|
company: z.ZodNullable<z.ZodObject<Omit<{
|
397
397
|
id: z.ZodString;
|
398
|
-
createdAt: z.
|
399
|
-
updatedAt: z.
|
400
|
-
deletedAt: z.ZodNullable<z.
|
398
|
+
createdAt: z.ZodString;
|
399
|
+
updatedAt: z.ZodString;
|
400
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
401
401
|
name: z.ZodOptional<z.ZodString>;
|
402
402
|
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
403
403
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
404
404
|
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
405
405
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
406
406
|
id: z.ZodString;
|
407
|
-
createdAt: z.
|
408
|
-
updatedAt: z.
|
409
|
-
deletedAt: z.ZodNullable<z.
|
407
|
+
createdAt: z.ZodString;
|
408
|
+
updatedAt: z.ZodString;
|
409
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
410
410
|
textValue: z.ZodNullable<z.ZodString>;
|
411
411
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
412
412
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
413
413
|
dateValue: z.ZodNullable<z.ZodDate>;
|
414
414
|
attribute: z.ZodObject<Omit<{
|
415
415
|
id: z.ZodString;
|
416
|
-
createdAt: z.
|
417
|
-
updatedAt: z.
|
418
|
-
deletedAt: z.ZodNullable<z.
|
416
|
+
createdAt: z.ZodString;
|
417
|
+
updatedAt: z.ZodString;
|
418
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
419
419
|
systemName: z.ZodString;
|
420
420
|
displayName: z.ZodString;
|
421
421
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -445,23 +445,23 @@ export declare const ContactSchema: z.ZodObject<{
|
|
445
445
|
}>, "many">;
|
446
446
|
group: z.ZodObject<{
|
447
447
|
id: z.ZodString;
|
448
|
-
createdAt: z.
|
449
|
-
updatedAt: z.
|
450
|
-
deletedAt: z.ZodNullable<z.
|
448
|
+
createdAt: z.ZodString;
|
449
|
+
updatedAt: z.ZodString;
|
450
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
451
451
|
systemName: z.ZodString;
|
452
452
|
displayName: z.ZodString;
|
453
453
|
}, "strip", z.ZodTypeAny, {
|
454
454
|
id: string;
|
455
|
-
createdAt:
|
456
|
-
updatedAt:
|
457
|
-
deletedAt:
|
455
|
+
createdAt: string;
|
456
|
+
updatedAt: string;
|
457
|
+
deletedAt: string | null;
|
458
458
|
systemName: string;
|
459
459
|
displayName: string;
|
460
460
|
}, {
|
461
461
|
id: string;
|
462
|
-
createdAt:
|
463
|
-
updatedAt:
|
464
|
-
deletedAt:
|
462
|
+
createdAt: string;
|
463
|
+
updatedAt: string;
|
464
|
+
deletedAt: string | null;
|
465
465
|
systemName: string;
|
466
466
|
displayName: string;
|
467
467
|
}>;
|
@@ -469,9 +469,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
469
469
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
470
470
|
id: string;
|
471
471
|
position: number;
|
472
|
-
createdAt:
|
473
|
-
updatedAt:
|
474
|
-
deletedAt:
|
472
|
+
createdAt: string;
|
473
|
+
updatedAt: string;
|
474
|
+
deletedAt: string | null;
|
475
475
|
isDefault: boolean;
|
476
476
|
systemName: string;
|
477
477
|
displayName: string;
|
@@ -482,9 +482,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
482
482
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
483
483
|
id: string;
|
484
484
|
position: number;
|
485
|
-
createdAt:
|
486
|
-
updatedAt:
|
487
|
-
deletedAt:
|
485
|
+
createdAt: string;
|
486
|
+
updatedAt: string;
|
487
|
+
deletedAt: string | null;
|
488
488
|
isDefault: boolean;
|
489
489
|
systemName: string;
|
490
490
|
displayName: string;
|
@@ -494,16 +494,16 @@ export declare const ContactSchema: z.ZodObject<{
|
|
494
494
|
}>;
|
495
495
|
}, "strip", z.ZodTypeAny, {
|
496
496
|
id: string;
|
497
|
-
createdAt:
|
498
|
-
updatedAt:
|
499
|
-
deletedAt:
|
497
|
+
createdAt: string;
|
498
|
+
updatedAt: string;
|
499
|
+
deletedAt: string | null;
|
500
500
|
attribute: {
|
501
501
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
502
502
|
id: string;
|
503
503
|
position: number;
|
504
|
-
createdAt:
|
505
|
-
updatedAt:
|
506
|
-
deletedAt:
|
504
|
+
createdAt: string;
|
505
|
+
updatedAt: string;
|
506
|
+
deletedAt: string | null;
|
507
507
|
isDefault: boolean;
|
508
508
|
systemName: string;
|
509
509
|
displayName: string;
|
@@ -517,16 +517,16 @@ export declare const ContactSchema: z.ZodObject<{
|
|
517
517
|
dateValue: Date | null;
|
518
518
|
}, {
|
519
519
|
id: string;
|
520
|
-
createdAt:
|
521
|
-
updatedAt:
|
522
|
-
deletedAt:
|
520
|
+
createdAt: string;
|
521
|
+
updatedAt: string;
|
522
|
+
deletedAt: string | null;
|
523
523
|
attribute: {
|
524
524
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
525
525
|
id: string;
|
526
526
|
position: number;
|
527
|
-
createdAt:
|
528
|
-
updatedAt:
|
529
|
-
deletedAt:
|
527
|
+
createdAt: string;
|
528
|
+
updatedAt: string;
|
529
|
+
deletedAt: string | null;
|
530
530
|
isDefault: boolean;
|
531
531
|
systemName: string;
|
532
532
|
displayName: string;
|
@@ -541,18 +541,18 @@ export declare const ContactSchema: z.ZodObject<{
|
|
541
541
|
}>, "many">>;
|
542
542
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
543
543
|
id: string;
|
544
|
-
createdAt:
|
545
|
-
updatedAt:
|
546
|
-
deletedAt:
|
544
|
+
createdAt: string;
|
545
|
+
updatedAt: string;
|
546
|
+
deletedAt: string | null;
|
547
547
|
address?: string | null | undefined;
|
548
548
|
name?: string | undefined;
|
549
549
|
phone?: string | null | undefined;
|
550
550
|
industry?: string | null | undefined;
|
551
551
|
}, {
|
552
552
|
id: string;
|
553
|
-
createdAt:
|
554
|
-
updatedAt:
|
555
|
-
deletedAt:
|
553
|
+
createdAt: string;
|
554
|
+
updatedAt: string;
|
555
|
+
deletedAt: string | null;
|
556
556
|
address?: string | null | undefined;
|
557
557
|
name?: string | undefined;
|
558
558
|
phone?: string | null | undefined;
|
@@ -569,9 +569,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
569
569
|
dateValue: z.ZodNullable<z.ZodDate>;
|
570
570
|
attribute: z.ZodObject<Omit<{
|
571
571
|
id: z.ZodString;
|
572
|
-
createdAt: z.
|
573
|
-
updatedAt: z.
|
574
|
-
deletedAt: z.ZodNullable<z.
|
572
|
+
createdAt: z.ZodString;
|
573
|
+
updatedAt: z.ZodString;
|
574
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
575
575
|
systemName: z.ZodString;
|
576
576
|
displayName: z.ZodString;
|
577
577
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -601,23 +601,23 @@ export declare const ContactSchema: z.ZodObject<{
|
|
601
601
|
}>, "many">;
|
602
602
|
group: z.ZodObject<{
|
603
603
|
id: z.ZodString;
|
604
|
-
createdAt: z.
|
605
|
-
updatedAt: z.
|
606
|
-
deletedAt: z.ZodNullable<z.
|
604
|
+
createdAt: z.ZodString;
|
605
|
+
updatedAt: z.ZodString;
|
606
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
607
607
|
systemName: z.ZodString;
|
608
608
|
displayName: z.ZodString;
|
609
609
|
}, "strip", z.ZodTypeAny, {
|
610
610
|
id: string;
|
611
|
-
createdAt:
|
612
|
-
updatedAt:
|
613
|
-
deletedAt:
|
611
|
+
createdAt: string;
|
612
|
+
updatedAt: string;
|
613
|
+
deletedAt: string | null;
|
614
614
|
systemName: string;
|
615
615
|
displayName: string;
|
616
616
|
}, {
|
617
617
|
id: string;
|
618
|
-
createdAt:
|
619
|
-
updatedAt:
|
620
|
-
deletedAt:
|
618
|
+
createdAt: string;
|
619
|
+
updatedAt: string;
|
620
|
+
deletedAt: string | null;
|
621
621
|
systemName: string;
|
622
622
|
displayName: string;
|
623
623
|
}>;
|
@@ -625,9 +625,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
625
625
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
626
626
|
id: string;
|
627
627
|
position: number;
|
628
|
-
createdAt:
|
629
|
-
updatedAt:
|
630
|
-
deletedAt:
|
628
|
+
createdAt: string;
|
629
|
+
updatedAt: string;
|
630
|
+
deletedAt: string | null;
|
631
631
|
isDefault: boolean;
|
632
632
|
systemName: string;
|
633
633
|
displayName: string;
|
@@ -638,9 +638,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
638
638
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
639
639
|
id: string;
|
640
640
|
position: number;
|
641
|
-
createdAt:
|
642
|
-
updatedAt:
|
643
|
-
deletedAt:
|
641
|
+
createdAt: string;
|
642
|
+
updatedAt: string;
|
643
|
+
deletedAt: string | null;
|
644
644
|
isDefault: boolean;
|
645
645
|
systemName: string;
|
646
646
|
displayName: string;
|
@@ -650,33 +650,33 @@ export declare const ContactSchema: z.ZodObject<{
|
|
650
650
|
}>;
|
651
651
|
uploads: z.ZodArray<z.ZodObject<{
|
652
652
|
id: z.ZodString;
|
653
|
-
createdAt: z.
|
654
|
-
updatedAt: z.
|
655
|
-
deletedAt: z.ZodNullable<z.
|
653
|
+
createdAt: z.ZodString;
|
654
|
+
updatedAt: z.ZodString;
|
655
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
656
656
|
customFieldId: z.ZodString;
|
657
657
|
upload: z.ZodObject<{
|
658
658
|
id: z.ZodString;
|
659
|
-
createdAt: z.
|
660
|
-
updatedAt: z.
|
661
|
-
deletedAt: z.ZodNullable<z.
|
659
|
+
createdAt: z.ZodString;
|
660
|
+
updatedAt: z.ZodString;
|
661
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
662
662
|
bucketName: z.ZodString;
|
663
663
|
fileName: z.ZodString;
|
664
664
|
fileSize: z.ZodNumber;
|
665
665
|
fileKey: z.ZodString;
|
666
666
|
}, "strip", z.ZodTypeAny, {
|
667
667
|
id: string;
|
668
|
-
createdAt:
|
669
|
-
updatedAt:
|
670
|
-
deletedAt:
|
668
|
+
createdAt: string;
|
669
|
+
updatedAt: string;
|
670
|
+
deletedAt: string | null;
|
671
671
|
fileName: string;
|
672
672
|
fileKey: string;
|
673
673
|
bucketName: string;
|
674
674
|
fileSize: number;
|
675
675
|
}, {
|
676
676
|
id: string;
|
677
|
-
createdAt:
|
678
|
-
updatedAt:
|
679
|
-
deletedAt:
|
677
|
+
createdAt: string;
|
678
|
+
updatedAt: string;
|
679
|
+
deletedAt: string | null;
|
680
680
|
fileName: string;
|
681
681
|
fileKey: string;
|
682
682
|
bucketName: string;
|
@@ -684,15 +684,15 @@ export declare const ContactSchema: z.ZodObject<{
|
|
684
684
|
}>;
|
685
685
|
}, "strip", z.ZodTypeAny, {
|
686
686
|
id: string;
|
687
|
-
createdAt:
|
688
|
-
updatedAt:
|
689
|
-
deletedAt:
|
687
|
+
createdAt: string;
|
688
|
+
updatedAt: string;
|
689
|
+
deletedAt: string | null;
|
690
690
|
customFieldId: string;
|
691
691
|
upload: {
|
692
692
|
id: string;
|
693
|
-
createdAt:
|
694
|
-
updatedAt:
|
695
|
-
deletedAt:
|
693
|
+
createdAt: string;
|
694
|
+
updatedAt: string;
|
695
|
+
deletedAt: string | null;
|
696
696
|
fileName: string;
|
697
697
|
fileKey: string;
|
698
698
|
bucketName: string;
|
@@ -700,15 +700,15 @@ export declare const ContactSchema: z.ZodObject<{
|
|
700
700
|
};
|
701
701
|
}, {
|
702
702
|
id: string;
|
703
|
-
createdAt:
|
704
|
-
updatedAt:
|
705
|
-
deletedAt:
|
703
|
+
createdAt: string;
|
704
|
+
updatedAt: string;
|
705
|
+
deletedAt: string | null;
|
706
706
|
customFieldId: string;
|
707
707
|
upload: {
|
708
708
|
id: string;
|
709
|
-
createdAt:
|
710
|
-
updatedAt:
|
711
|
-
deletedAt:
|
709
|
+
createdAt: string;
|
710
|
+
updatedAt: string;
|
711
|
+
deletedAt: string | null;
|
712
712
|
fileName: string;
|
713
713
|
fileKey: string;
|
714
714
|
bucketName: string;
|
@@ -724,9 +724,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
724
724
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
725
725
|
id: string;
|
726
726
|
position: number;
|
727
|
-
createdAt:
|
728
|
-
updatedAt:
|
729
|
-
deletedAt:
|
727
|
+
createdAt: string;
|
728
|
+
updatedAt: string;
|
729
|
+
deletedAt: string | null;
|
730
730
|
isDefault: boolean;
|
731
731
|
systemName: string;
|
732
732
|
displayName: string;
|
@@ -740,15 +740,15 @@ export declare const ContactSchema: z.ZodObject<{
|
|
740
740
|
dateValue: Date | null;
|
741
741
|
uploads: {
|
742
742
|
id: string;
|
743
|
-
createdAt:
|
744
|
-
updatedAt:
|
745
|
-
deletedAt:
|
743
|
+
createdAt: string;
|
744
|
+
updatedAt: string;
|
745
|
+
deletedAt: string | null;
|
746
746
|
customFieldId: string;
|
747
747
|
upload: {
|
748
748
|
id: string;
|
749
|
-
createdAt:
|
750
|
-
updatedAt:
|
751
|
-
deletedAt:
|
749
|
+
createdAt: string;
|
750
|
+
updatedAt: string;
|
751
|
+
deletedAt: string | null;
|
752
752
|
fileName: string;
|
753
753
|
fileKey: string;
|
754
754
|
bucketName: string;
|
@@ -764,9 +764,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
764
764
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
765
765
|
id: string;
|
766
766
|
position: number;
|
767
|
-
createdAt:
|
768
|
-
updatedAt:
|
769
|
-
deletedAt:
|
767
|
+
createdAt: string;
|
768
|
+
updatedAt: string;
|
769
|
+
deletedAt: string | null;
|
770
770
|
isDefault: boolean;
|
771
771
|
systemName: string;
|
772
772
|
displayName: string;
|
@@ -780,15 +780,15 @@ export declare const ContactSchema: z.ZodObject<{
|
|
780
780
|
dateValue: Date | null;
|
781
781
|
uploads: {
|
782
782
|
id: string;
|
783
|
-
createdAt:
|
784
|
-
updatedAt:
|
785
|
-
deletedAt:
|
783
|
+
createdAt: string;
|
784
|
+
updatedAt: string;
|
785
|
+
deletedAt: string | null;
|
786
786
|
customFieldId: string;
|
787
787
|
upload: {
|
788
788
|
id: string;
|
789
|
-
createdAt:
|
790
|
-
updatedAt:
|
791
|
-
deletedAt:
|
789
|
+
createdAt: string;
|
790
|
+
updatedAt: string;
|
791
|
+
deletedAt: string | null;
|
792
792
|
fileName: string;
|
793
793
|
fileKey: string;
|
794
794
|
bucketName: string;
|
@@ -917,9 +917,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
917
917
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
918
918
|
id: string;
|
919
919
|
position: number;
|
920
|
-
createdAt:
|
921
|
-
updatedAt:
|
922
|
-
deletedAt:
|
920
|
+
createdAt: string;
|
921
|
+
updatedAt: string;
|
922
|
+
deletedAt: string | null;
|
923
923
|
isDefault: boolean;
|
924
924
|
systemName: string;
|
925
925
|
displayName: string;
|
@@ -933,15 +933,15 @@ export declare const ContactSchema: z.ZodObject<{
|
|
933
933
|
dateValue: Date | null;
|
934
934
|
uploads: {
|
935
935
|
id: string;
|
936
|
-
createdAt:
|
937
|
-
updatedAt:
|
938
|
-
deletedAt:
|
936
|
+
createdAt: string;
|
937
|
+
updatedAt: string;
|
938
|
+
deletedAt: string | null;
|
939
939
|
customFieldId: string;
|
940
940
|
upload: {
|
941
941
|
id: string;
|
942
|
-
createdAt:
|
943
|
-
updatedAt:
|
944
|
-
deletedAt:
|
942
|
+
createdAt: string;
|
943
|
+
updatedAt: string;
|
944
|
+
deletedAt: string | null;
|
945
945
|
fileName: string;
|
946
946
|
fileKey: string;
|
947
947
|
bucketName: string;
|
@@ -955,15 +955,15 @@ export declare const ContactSchema: z.ZodObject<{
|
|
955
955
|
tags: {
|
956
956
|
id: string;
|
957
957
|
name: string;
|
958
|
-
createdAt:
|
959
|
-
updatedAt:
|
960
|
-
deletedAt:
|
958
|
+
createdAt: string;
|
959
|
+
updatedAt: string;
|
960
|
+
deletedAt: string | null;
|
961
961
|
}[];
|
962
962
|
company: {
|
963
963
|
id: string;
|
964
|
-
createdAt:
|
965
|
-
updatedAt:
|
966
|
-
deletedAt:
|
964
|
+
createdAt: string;
|
965
|
+
updatedAt: string;
|
966
|
+
deletedAt: string | null;
|
967
967
|
address?: string | null | undefined;
|
968
968
|
name?: string | undefined;
|
969
969
|
phone?: string | null | undefined;
|
@@ -1018,9 +1018,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
1018
1018
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1019
1019
|
id: string;
|
1020
1020
|
position: number;
|
1021
|
-
createdAt:
|
1022
|
-
updatedAt:
|
1023
|
-
deletedAt:
|
1021
|
+
createdAt: string;
|
1022
|
+
updatedAt: string;
|
1023
|
+
deletedAt: string | null;
|
1024
1024
|
isDefault: boolean;
|
1025
1025
|
systemName: string;
|
1026
1026
|
displayName: string;
|
@@ -1034,15 +1034,15 @@ export declare const ContactSchema: z.ZodObject<{
|
|
1034
1034
|
dateValue: Date | null;
|
1035
1035
|
uploads: {
|
1036
1036
|
id: string;
|
1037
|
-
createdAt:
|
1038
|
-
updatedAt:
|
1039
|
-
deletedAt:
|
1037
|
+
createdAt: string;
|
1038
|
+
updatedAt: string;
|
1039
|
+
deletedAt: string | null;
|
1040
1040
|
customFieldId: string;
|
1041
1041
|
upload: {
|
1042
1042
|
id: string;
|
1043
|
-
createdAt:
|
1044
|
-
updatedAt:
|
1045
|
-
deletedAt:
|
1043
|
+
createdAt: string;
|
1044
|
+
updatedAt: string;
|
1045
|
+
deletedAt: string | null;
|
1046
1046
|
fileName: string;
|
1047
1047
|
fileKey: string;
|
1048
1048
|
bucketName: string;
|
@@ -1056,15 +1056,15 @@ export declare const ContactSchema: z.ZodObject<{
|
|
1056
1056
|
tags: {
|
1057
1057
|
id: string;
|
1058
1058
|
name: string;
|
1059
|
-
createdAt:
|
1060
|
-
updatedAt:
|
1061
|
-
deletedAt:
|
1059
|
+
createdAt: string;
|
1060
|
+
updatedAt: string;
|
1061
|
+
deletedAt: string | null;
|
1062
1062
|
}[];
|
1063
1063
|
company: {
|
1064
1064
|
id: string;
|
1065
|
-
createdAt:
|
1066
|
-
updatedAt:
|
1067
|
-
deletedAt:
|
1065
|
+
createdAt: string;
|
1066
|
+
updatedAt: string;
|
1067
|
+
deletedAt: string | null;
|
1068
1068
|
address?: string | null | undefined;
|
1069
1069
|
name?: string | undefined;
|
1070
1070
|
phone?: string | null | undefined;
|