@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
@@ -297,46 +297,46 @@ export declare const ContactContractValidationSchema: {
|
|
297
297
|
socialProfileUrl: z.ZodNullable<z.ZodString>;
|
298
298
|
tags: z.ZodArray<z.ZodObject<{
|
299
299
|
id: z.ZodString;
|
300
|
-
createdAt: z.
|
301
|
-
updatedAt: z.
|
302
|
-
deletedAt: z.ZodNullable<z.
|
300
|
+
createdAt: z.ZodString;
|
301
|
+
updatedAt: z.ZodString;
|
302
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
303
303
|
name: z.ZodString;
|
304
304
|
}, "strip", z.ZodTypeAny, {
|
305
305
|
id: string;
|
306
306
|
name: string;
|
307
|
-
createdAt:
|
308
|
-
updatedAt:
|
309
|
-
deletedAt:
|
307
|
+
createdAt: string;
|
308
|
+
updatedAt: string;
|
309
|
+
deletedAt: string | null;
|
310
310
|
}, {
|
311
311
|
id: string;
|
312
312
|
name: string;
|
313
|
-
createdAt:
|
314
|
-
updatedAt:
|
315
|
-
deletedAt:
|
313
|
+
createdAt: string;
|
314
|
+
updatedAt: string;
|
315
|
+
deletedAt: string | null;
|
316
316
|
}>, "many">;
|
317
317
|
company: z.ZodNullable<z.ZodObject<Omit<{
|
318
318
|
id: z.ZodString;
|
319
|
-
createdAt: z.
|
320
|
-
updatedAt: z.
|
321
|
-
deletedAt: z.ZodNullable<z.
|
319
|
+
createdAt: z.ZodString;
|
320
|
+
updatedAt: z.ZodString;
|
321
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
322
322
|
name: z.ZodOptional<z.ZodString>;
|
323
323
|
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
324
324
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
325
325
|
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
326
326
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
327
327
|
id: z.ZodString;
|
328
|
-
createdAt: z.
|
329
|
-
updatedAt: z.
|
330
|
-
deletedAt: z.ZodNullable<z.
|
328
|
+
createdAt: z.ZodString;
|
329
|
+
updatedAt: z.ZodString;
|
330
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
331
331
|
textValue: z.ZodNullable<z.ZodString>;
|
332
332
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
333
333
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
334
334
|
dateValue: z.ZodNullable<z.ZodDate>;
|
335
335
|
attribute: z.ZodObject<Omit<{
|
336
336
|
id: z.ZodString;
|
337
|
-
createdAt: z.
|
338
|
-
updatedAt: z.
|
339
|
-
deletedAt: z.ZodNullable<z.
|
337
|
+
createdAt: z.ZodString;
|
338
|
+
updatedAt: z.ZodString;
|
339
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
340
340
|
systemName: z.ZodString;
|
341
341
|
displayName: z.ZodString;
|
342
342
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -366,23 +366,23 @@ export declare const ContactContractValidationSchema: {
|
|
366
366
|
}>, "many">;
|
367
367
|
group: z.ZodObject<{
|
368
368
|
id: z.ZodString;
|
369
|
-
createdAt: z.
|
370
|
-
updatedAt: z.
|
371
|
-
deletedAt: z.ZodNullable<z.
|
369
|
+
createdAt: z.ZodString;
|
370
|
+
updatedAt: z.ZodString;
|
371
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
372
372
|
systemName: z.ZodString;
|
373
373
|
displayName: z.ZodString;
|
374
374
|
}, "strip", z.ZodTypeAny, {
|
375
375
|
id: string;
|
376
|
-
createdAt:
|
377
|
-
updatedAt:
|
378
|
-
deletedAt:
|
376
|
+
createdAt: string;
|
377
|
+
updatedAt: string;
|
378
|
+
deletedAt: string | null;
|
379
379
|
systemName: string;
|
380
380
|
displayName: string;
|
381
381
|
}, {
|
382
382
|
id: string;
|
383
|
-
createdAt:
|
384
|
-
updatedAt:
|
385
|
-
deletedAt:
|
383
|
+
createdAt: string;
|
384
|
+
updatedAt: string;
|
385
|
+
deletedAt: string | null;
|
386
386
|
systemName: string;
|
387
387
|
displayName: string;
|
388
388
|
}>;
|
@@ -390,9 +390,9 @@ export declare const ContactContractValidationSchema: {
|
|
390
390
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
391
391
|
id: string;
|
392
392
|
position: number;
|
393
|
-
createdAt:
|
394
|
-
updatedAt:
|
395
|
-
deletedAt:
|
393
|
+
createdAt: string;
|
394
|
+
updatedAt: string;
|
395
|
+
deletedAt: string | null;
|
396
396
|
isDefault: boolean;
|
397
397
|
systemName: string;
|
398
398
|
displayName: string;
|
@@ -403,9 +403,9 @@ export declare const ContactContractValidationSchema: {
|
|
403
403
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
404
404
|
id: string;
|
405
405
|
position: number;
|
406
|
-
createdAt:
|
407
|
-
updatedAt:
|
408
|
-
deletedAt:
|
406
|
+
createdAt: string;
|
407
|
+
updatedAt: string;
|
408
|
+
deletedAt: string | null;
|
409
409
|
isDefault: boolean;
|
410
410
|
systemName: string;
|
411
411
|
displayName: string;
|
@@ -415,16 +415,16 @@ export declare const ContactContractValidationSchema: {
|
|
415
415
|
}>;
|
416
416
|
}, "strip", z.ZodTypeAny, {
|
417
417
|
id: string;
|
418
|
-
createdAt:
|
419
|
-
updatedAt:
|
420
|
-
deletedAt:
|
418
|
+
createdAt: string;
|
419
|
+
updatedAt: string;
|
420
|
+
deletedAt: string | null;
|
421
421
|
attribute: {
|
422
422
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
423
423
|
id: string;
|
424
424
|
position: number;
|
425
|
-
createdAt:
|
426
|
-
updatedAt:
|
427
|
-
deletedAt:
|
425
|
+
createdAt: string;
|
426
|
+
updatedAt: string;
|
427
|
+
deletedAt: string | null;
|
428
428
|
isDefault: boolean;
|
429
429
|
systemName: string;
|
430
430
|
displayName: string;
|
@@ -438,16 +438,16 @@ export declare const ContactContractValidationSchema: {
|
|
438
438
|
dateValue: Date | null;
|
439
439
|
}, {
|
440
440
|
id: string;
|
441
|
-
createdAt:
|
442
|
-
updatedAt:
|
443
|
-
deletedAt:
|
441
|
+
createdAt: string;
|
442
|
+
updatedAt: string;
|
443
|
+
deletedAt: string | null;
|
444
444
|
attribute: {
|
445
445
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
446
446
|
id: string;
|
447
447
|
position: number;
|
448
|
-
createdAt:
|
449
|
-
updatedAt:
|
450
|
-
deletedAt:
|
448
|
+
createdAt: string;
|
449
|
+
updatedAt: string;
|
450
|
+
deletedAt: string | null;
|
451
451
|
isDefault: boolean;
|
452
452
|
systemName: string;
|
453
453
|
displayName: string;
|
@@ -462,18 +462,18 @@ export declare const ContactContractValidationSchema: {
|
|
462
462
|
}>, "many">>;
|
463
463
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
464
464
|
id: string;
|
465
|
-
createdAt:
|
466
|
-
updatedAt:
|
467
|
-
deletedAt:
|
465
|
+
createdAt: string;
|
466
|
+
updatedAt: string;
|
467
|
+
deletedAt: string | null;
|
468
468
|
address?: string | null | undefined;
|
469
469
|
name?: string | undefined;
|
470
470
|
phone?: string | null | undefined;
|
471
471
|
industry?: string | null | undefined;
|
472
472
|
}, {
|
473
473
|
id: string;
|
474
|
-
createdAt:
|
475
|
-
updatedAt:
|
476
|
-
deletedAt:
|
474
|
+
createdAt: string;
|
475
|
+
updatedAt: string;
|
476
|
+
deletedAt: string | null;
|
477
477
|
address?: string | null | undefined;
|
478
478
|
name?: string | undefined;
|
479
479
|
phone?: string | null | undefined;
|
@@ -490,9 +490,9 @@ export declare const ContactContractValidationSchema: {
|
|
490
490
|
dateValue: z.ZodNullable<z.ZodDate>;
|
491
491
|
attribute: z.ZodObject<Omit<{
|
492
492
|
id: z.ZodString;
|
493
|
-
createdAt: z.
|
494
|
-
updatedAt: z.
|
495
|
-
deletedAt: z.ZodNullable<z.
|
493
|
+
createdAt: z.ZodString;
|
494
|
+
updatedAt: z.ZodString;
|
495
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
496
496
|
systemName: z.ZodString;
|
497
497
|
displayName: z.ZodString;
|
498
498
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -522,23 +522,23 @@ export declare const ContactContractValidationSchema: {
|
|
522
522
|
}>, "many">;
|
523
523
|
group: z.ZodObject<{
|
524
524
|
id: z.ZodString;
|
525
|
-
createdAt: z.
|
526
|
-
updatedAt: z.
|
527
|
-
deletedAt: z.ZodNullable<z.
|
525
|
+
createdAt: z.ZodString;
|
526
|
+
updatedAt: z.ZodString;
|
527
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
528
528
|
systemName: z.ZodString;
|
529
529
|
displayName: z.ZodString;
|
530
530
|
}, "strip", z.ZodTypeAny, {
|
531
531
|
id: string;
|
532
|
-
createdAt:
|
533
|
-
updatedAt:
|
534
|
-
deletedAt:
|
532
|
+
createdAt: string;
|
533
|
+
updatedAt: string;
|
534
|
+
deletedAt: string | null;
|
535
535
|
systemName: string;
|
536
536
|
displayName: string;
|
537
537
|
}, {
|
538
538
|
id: string;
|
539
|
-
createdAt:
|
540
|
-
updatedAt:
|
541
|
-
deletedAt:
|
539
|
+
createdAt: string;
|
540
|
+
updatedAt: string;
|
541
|
+
deletedAt: string | null;
|
542
542
|
systemName: string;
|
543
543
|
displayName: string;
|
544
544
|
}>;
|
@@ -546,9 +546,9 @@ export declare const ContactContractValidationSchema: {
|
|
546
546
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
547
547
|
id: string;
|
548
548
|
position: number;
|
549
|
-
createdAt:
|
550
|
-
updatedAt:
|
551
|
-
deletedAt:
|
549
|
+
createdAt: string;
|
550
|
+
updatedAt: string;
|
551
|
+
deletedAt: string | null;
|
552
552
|
isDefault: boolean;
|
553
553
|
systemName: string;
|
554
554
|
displayName: string;
|
@@ -559,9 +559,9 @@ export declare const ContactContractValidationSchema: {
|
|
559
559
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
560
560
|
id: string;
|
561
561
|
position: number;
|
562
|
-
createdAt:
|
563
|
-
updatedAt:
|
564
|
-
deletedAt:
|
562
|
+
createdAt: string;
|
563
|
+
updatedAt: string;
|
564
|
+
deletedAt: string | null;
|
565
565
|
isDefault: boolean;
|
566
566
|
systemName: string;
|
567
567
|
displayName: string;
|
@@ -571,33 +571,33 @@ export declare const ContactContractValidationSchema: {
|
|
571
571
|
}>;
|
572
572
|
uploads: z.ZodArray<z.ZodObject<{
|
573
573
|
id: z.ZodString;
|
574
|
-
createdAt: z.
|
575
|
-
updatedAt: z.
|
576
|
-
deletedAt: z.ZodNullable<z.
|
574
|
+
createdAt: z.ZodString;
|
575
|
+
updatedAt: z.ZodString;
|
576
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
577
577
|
customFieldId: z.ZodString;
|
578
578
|
upload: z.ZodObject<{
|
579
579
|
id: z.ZodString;
|
580
|
-
createdAt: z.
|
581
|
-
updatedAt: z.
|
582
|
-
deletedAt: z.ZodNullable<z.
|
580
|
+
createdAt: z.ZodString;
|
581
|
+
updatedAt: z.ZodString;
|
582
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
583
583
|
bucketName: z.ZodString;
|
584
584
|
fileName: z.ZodString;
|
585
585
|
fileSize: z.ZodNumber;
|
586
586
|
fileKey: z.ZodString;
|
587
587
|
}, "strip", z.ZodTypeAny, {
|
588
588
|
id: string;
|
589
|
-
createdAt:
|
590
|
-
updatedAt:
|
591
|
-
deletedAt:
|
589
|
+
createdAt: string;
|
590
|
+
updatedAt: string;
|
591
|
+
deletedAt: string | null;
|
592
592
|
fileName: string;
|
593
593
|
fileKey: string;
|
594
594
|
bucketName: string;
|
595
595
|
fileSize: number;
|
596
596
|
}, {
|
597
597
|
id: string;
|
598
|
-
createdAt:
|
599
|
-
updatedAt:
|
600
|
-
deletedAt:
|
598
|
+
createdAt: string;
|
599
|
+
updatedAt: string;
|
600
|
+
deletedAt: string | null;
|
601
601
|
fileName: string;
|
602
602
|
fileKey: string;
|
603
603
|
bucketName: string;
|
@@ -605,15 +605,15 @@ export declare const ContactContractValidationSchema: {
|
|
605
605
|
}>;
|
606
606
|
}, "strip", z.ZodTypeAny, {
|
607
607
|
id: string;
|
608
|
-
createdAt:
|
609
|
-
updatedAt:
|
610
|
-
deletedAt:
|
608
|
+
createdAt: string;
|
609
|
+
updatedAt: string;
|
610
|
+
deletedAt: string | null;
|
611
611
|
customFieldId: string;
|
612
612
|
upload: {
|
613
613
|
id: string;
|
614
|
-
createdAt:
|
615
|
-
updatedAt:
|
616
|
-
deletedAt:
|
614
|
+
createdAt: string;
|
615
|
+
updatedAt: string;
|
616
|
+
deletedAt: string | null;
|
617
617
|
fileName: string;
|
618
618
|
fileKey: string;
|
619
619
|
bucketName: string;
|
@@ -621,15 +621,15 @@ export declare const ContactContractValidationSchema: {
|
|
621
621
|
};
|
622
622
|
}, {
|
623
623
|
id: string;
|
624
|
-
createdAt:
|
625
|
-
updatedAt:
|
626
|
-
deletedAt:
|
624
|
+
createdAt: string;
|
625
|
+
updatedAt: string;
|
626
|
+
deletedAt: string | null;
|
627
627
|
customFieldId: string;
|
628
628
|
upload: {
|
629
629
|
id: string;
|
630
|
-
createdAt:
|
631
|
-
updatedAt:
|
632
|
-
deletedAt:
|
630
|
+
createdAt: string;
|
631
|
+
updatedAt: string;
|
632
|
+
deletedAt: string | null;
|
633
633
|
fileName: string;
|
634
634
|
fileKey: string;
|
635
635
|
bucketName: string;
|
@@ -645,9 +645,9 @@ export declare const ContactContractValidationSchema: {
|
|
645
645
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
646
646
|
id: string;
|
647
647
|
position: number;
|
648
|
-
createdAt:
|
649
|
-
updatedAt:
|
650
|
-
deletedAt:
|
648
|
+
createdAt: string;
|
649
|
+
updatedAt: string;
|
650
|
+
deletedAt: string | null;
|
651
651
|
isDefault: boolean;
|
652
652
|
systemName: string;
|
653
653
|
displayName: string;
|
@@ -661,15 +661,15 @@ export declare const ContactContractValidationSchema: {
|
|
661
661
|
dateValue: Date | null;
|
662
662
|
uploads: {
|
663
663
|
id: string;
|
664
|
-
createdAt:
|
665
|
-
updatedAt:
|
666
|
-
deletedAt:
|
664
|
+
createdAt: string;
|
665
|
+
updatedAt: string;
|
666
|
+
deletedAt: string | null;
|
667
667
|
customFieldId: string;
|
668
668
|
upload: {
|
669
669
|
id: string;
|
670
|
-
createdAt:
|
671
|
-
updatedAt:
|
672
|
-
deletedAt:
|
670
|
+
createdAt: string;
|
671
|
+
updatedAt: string;
|
672
|
+
deletedAt: string | null;
|
673
673
|
fileName: string;
|
674
674
|
fileKey: string;
|
675
675
|
bucketName: string;
|
@@ -685,9 +685,9 @@ export declare const ContactContractValidationSchema: {
|
|
685
685
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
686
686
|
id: string;
|
687
687
|
position: number;
|
688
|
-
createdAt:
|
689
|
-
updatedAt:
|
690
|
-
deletedAt:
|
688
|
+
createdAt: string;
|
689
|
+
updatedAt: string;
|
690
|
+
deletedAt: string | null;
|
691
691
|
isDefault: boolean;
|
692
692
|
systemName: string;
|
693
693
|
displayName: string;
|
@@ -701,15 +701,15 @@ export declare const ContactContractValidationSchema: {
|
|
701
701
|
dateValue: Date | null;
|
702
702
|
uploads: {
|
703
703
|
id: string;
|
704
|
-
createdAt:
|
705
|
-
updatedAt:
|
706
|
-
deletedAt:
|
704
|
+
createdAt: string;
|
705
|
+
updatedAt: string;
|
706
|
+
deletedAt: string | null;
|
707
707
|
customFieldId: string;
|
708
708
|
upload: {
|
709
709
|
id: string;
|
710
|
-
createdAt:
|
711
|
-
updatedAt:
|
712
|
-
deletedAt:
|
710
|
+
createdAt: string;
|
711
|
+
updatedAt: string;
|
712
|
+
deletedAt: string | null;
|
713
713
|
fileName: string;
|
714
714
|
fileKey: string;
|
715
715
|
bucketName: string;
|
@@ -838,9 +838,9 @@ export declare const ContactContractValidationSchema: {
|
|
838
838
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
839
839
|
id: string;
|
840
840
|
position: number;
|
841
|
-
createdAt:
|
842
|
-
updatedAt:
|
843
|
-
deletedAt:
|
841
|
+
createdAt: string;
|
842
|
+
updatedAt: string;
|
843
|
+
deletedAt: string | null;
|
844
844
|
isDefault: boolean;
|
845
845
|
systemName: string;
|
846
846
|
displayName: string;
|
@@ -854,15 +854,15 @@ export declare const ContactContractValidationSchema: {
|
|
854
854
|
dateValue: Date | null;
|
855
855
|
uploads: {
|
856
856
|
id: string;
|
857
|
-
createdAt:
|
858
|
-
updatedAt:
|
859
|
-
deletedAt:
|
857
|
+
createdAt: string;
|
858
|
+
updatedAt: string;
|
859
|
+
deletedAt: string | null;
|
860
860
|
customFieldId: string;
|
861
861
|
upload: {
|
862
862
|
id: string;
|
863
|
-
createdAt:
|
864
|
-
updatedAt:
|
865
|
-
deletedAt:
|
863
|
+
createdAt: string;
|
864
|
+
updatedAt: string;
|
865
|
+
deletedAt: string | null;
|
866
866
|
fileName: string;
|
867
867
|
fileKey: string;
|
868
868
|
bucketName: string;
|
@@ -876,15 +876,15 @@ export declare const ContactContractValidationSchema: {
|
|
876
876
|
tags: {
|
877
877
|
id: string;
|
878
878
|
name: string;
|
879
|
-
createdAt:
|
880
|
-
updatedAt:
|
881
|
-
deletedAt:
|
879
|
+
createdAt: string;
|
880
|
+
updatedAt: string;
|
881
|
+
deletedAt: string | null;
|
882
882
|
}[];
|
883
883
|
company: {
|
884
884
|
id: string;
|
885
|
-
createdAt:
|
886
|
-
updatedAt:
|
887
|
-
deletedAt:
|
885
|
+
createdAt: string;
|
886
|
+
updatedAt: string;
|
887
|
+
deletedAt: string | null;
|
888
888
|
address?: string | null | undefined;
|
889
889
|
name?: string | undefined;
|
890
890
|
phone?: string | null | undefined;
|
@@ -939,9 +939,9 @@ export declare const ContactContractValidationSchema: {
|
|
939
939
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
940
940
|
id: string;
|
941
941
|
position: number;
|
942
|
-
createdAt:
|
943
|
-
updatedAt:
|
944
|
-
deletedAt:
|
942
|
+
createdAt: string;
|
943
|
+
updatedAt: string;
|
944
|
+
deletedAt: string | null;
|
945
945
|
isDefault: boolean;
|
946
946
|
systemName: string;
|
947
947
|
displayName: string;
|
@@ -955,15 +955,15 @@ export declare const ContactContractValidationSchema: {
|
|
955
955
|
dateValue: Date | null;
|
956
956
|
uploads: {
|
957
957
|
id: string;
|
958
|
-
createdAt:
|
959
|
-
updatedAt:
|
960
|
-
deletedAt:
|
958
|
+
createdAt: string;
|
959
|
+
updatedAt: string;
|
960
|
+
deletedAt: string | null;
|
961
961
|
customFieldId: string;
|
962
962
|
upload: {
|
963
963
|
id: string;
|
964
|
-
createdAt:
|
965
|
-
updatedAt:
|
966
|
-
deletedAt:
|
964
|
+
createdAt: string;
|
965
|
+
updatedAt: string;
|
966
|
+
deletedAt: string | null;
|
967
967
|
fileName: string;
|
968
968
|
fileKey: string;
|
969
969
|
bucketName: string;
|
@@ -977,15 +977,15 @@ export declare const ContactContractValidationSchema: {
|
|
977
977
|
tags: {
|
978
978
|
id: string;
|
979
979
|
name: string;
|
980
|
-
createdAt:
|
981
|
-
updatedAt:
|
982
|
-
deletedAt:
|
980
|
+
createdAt: string;
|
981
|
+
updatedAt: string;
|
982
|
+
deletedAt: string | null;
|
983
983
|
}[];
|
984
984
|
company: {
|
985
985
|
id: string;
|
986
|
-
createdAt:
|
987
|
-
updatedAt:
|
988
|
-
deletedAt:
|
986
|
+
createdAt: string;
|
987
|
+
updatedAt: string;
|
988
|
+
deletedAt: string | null;
|
989
989
|
address?: string | null | undefined;
|
990
990
|
name?: string | undefined;
|
991
991
|
phone?: string | null | undefined;
|
@@ -1117,46 +1117,46 @@ export declare const ContactContractValidationSchema: {
|
|
1117
1117
|
socialProfileUrl: z.ZodNullable<z.ZodString>;
|
1118
1118
|
tags: z.ZodArray<z.ZodObject<{
|
1119
1119
|
id: z.ZodString;
|
1120
|
-
createdAt: z.
|
1121
|
-
updatedAt: z.
|
1122
|
-
deletedAt: z.ZodNullable<z.
|
1120
|
+
createdAt: z.ZodString;
|
1121
|
+
updatedAt: z.ZodString;
|
1122
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1123
1123
|
name: z.ZodString;
|
1124
1124
|
}, "strip", z.ZodTypeAny, {
|
1125
1125
|
id: string;
|
1126
1126
|
name: string;
|
1127
|
-
createdAt:
|
1128
|
-
updatedAt:
|
1129
|
-
deletedAt:
|
1127
|
+
createdAt: string;
|
1128
|
+
updatedAt: string;
|
1129
|
+
deletedAt: string | null;
|
1130
1130
|
}, {
|
1131
1131
|
id: string;
|
1132
1132
|
name: string;
|
1133
|
-
createdAt:
|
1134
|
-
updatedAt:
|
1135
|
-
deletedAt:
|
1133
|
+
createdAt: string;
|
1134
|
+
updatedAt: string;
|
1135
|
+
deletedAt: string | null;
|
1136
1136
|
}>, "many">;
|
1137
1137
|
company: z.ZodNullable<z.ZodObject<Omit<{
|
1138
1138
|
id: z.ZodString;
|
1139
|
-
createdAt: z.
|
1140
|
-
updatedAt: z.
|
1141
|
-
deletedAt: z.ZodNullable<z.
|
1139
|
+
createdAt: z.ZodString;
|
1140
|
+
updatedAt: z.ZodString;
|
1141
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1142
1142
|
name: z.ZodOptional<z.ZodString>;
|
1143
1143
|
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1144
1144
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1145
1145
|
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1146
1146
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1147
1147
|
id: z.ZodString;
|
1148
|
-
createdAt: z.
|
1149
|
-
updatedAt: z.
|
1150
|
-
deletedAt: z.ZodNullable<z.
|
1148
|
+
createdAt: z.ZodString;
|
1149
|
+
updatedAt: z.ZodString;
|
1150
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1151
1151
|
textValue: z.ZodNullable<z.ZodString>;
|
1152
1152
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
1153
1153
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
1154
1154
|
dateValue: z.ZodNullable<z.ZodDate>;
|
1155
1155
|
attribute: z.ZodObject<Omit<{
|
1156
1156
|
id: z.ZodString;
|
1157
|
-
createdAt: z.
|
1158
|
-
updatedAt: z.
|
1159
|
-
deletedAt: z.ZodNullable<z.
|
1157
|
+
createdAt: z.ZodString;
|
1158
|
+
updatedAt: z.ZodString;
|
1159
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1160
1160
|
systemName: z.ZodString;
|
1161
1161
|
displayName: z.ZodString;
|
1162
1162
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -1186,23 +1186,23 @@ export declare const ContactContractValidationSchema: {
|
|
1186
1186
|
}>, "many">;
|
1187
1187
|
group: z.ZodObject<{
|
1188
1188
|
id: z.ZodString;
|
1189
|
-
createdAt: z.
|
1190
|
-
updatedAt: z.
|
1191
|
-
deletedAt: z.ZodNullable<z.
|
1189
|
+
createdAt: z.ZodString;
|
1190
|
+
updatedAt: z.ZodString;
|
1191
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1192
1192
|
systemName: z.ZodString;
|
1193
1193
|
displayName: z.ZodString;
|
1194
1194
|
}, "strip", z.ZodTypeAny, {
|
1195
1195
|
id: string;
|
1196
|
-
createdAt:
|
1197
|
-
updatedAt:
|
1198
|
-
deletedAt:
|
1196
|
+
createdAt: string;
|
1197
|
+
updatedAt: string;
|
1198
|
+
deletedAt: string | null;
|
1199
1199
|
systemName: string;
|
1200
1200
|
displayName: string;
|
1201
1201
|
}, {
|
1202
1202
|
id: string;
|
1203
|
-
createdAt:
|
1204
|
-
updatedAt:
|
1205
|
-
deletedAt:
|
1203
|
+
createdAt: string;
|
1204
|
+
updatedAt: string;
|
1205
|
+
deletedAt: string | null;
|
1206
1206
|
systemName: string;
|
1207
1207
|
displayName: string;
|
1208
1208
|
}>;
|
@@ -1210,9 +1210,9 @@ export declare const ContactContractValidationSchema: {
|
|
1210
1210
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1211
1211
|
id: string;
|
1212
1212
|
position: number;
|
1213
|
-
createdAt:
|
1214
|
-
updatedAt:
|
1215
|
-
deletedAt:
|
1213
|
+
createdAt: string;
|
1214
|
+
updatedAt: string;
|
1215
|
+
deletedAt: string | null;
|
1216
1216
|
isDefault: boolean;
|
1217
1217
|
systemName: string;
|
1218
1218
|
displayName: string;
|
@@ -1223,9 +1223,9 @@ export declare const ContactContractValidationSchema: {
|
|
1223
1223
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1224
1224
|
id: string;
|
1225
1225
|
position: number;
|
1226
|
-
createdAt:
|
1227
|
-
updatedAt:
|
1228
|
-
deletedAt:
|
1226
|
+
createdAt: string;
|
1227
|
+
updatedAt: string;
|
1228
|
+
deletedAt: string | null;
|
1229
1229
|
isDefault: boolean;
|
1230
1230
|
systemName: string;
|
1231
1231
|
displayName: string;
|
@@ -1235,16 +1235,16 @@ export declare const ContactContractValidationSchema: {
|
|
1235
1235
|
}>;
|
1236
1236
|
}, "strip", z.ZodTypeAny, {
|
1237
1237
|
id: string;
|
1238
|
-
createdAt:
|
1239
|
-
updatedAt:
|
1240
|
-
deletedAt:
|
1238
|
+
createdAt: string;
|
1239
|
+
updatedAt: string;
|
1240
|
+
deletedAt: string | null;
|
1241
1241
|
attribute: {
|
1242
1242
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1243
1243
|
id: string;
|
1244
1244
|
position: number;
|
1245
|
-
createdAt:
|
1246
|
-
updatedAt:
|
1247
|
-
deletedAt:
|
1245
|
+
createdAt: string;
|
1246
|
+
updatedAt: string;
|
1247
|
+
deletedAt: string | null;
|
1248
1248
|
isDefault: boolean;
|
1249
1249
|
systemName: string;
|
1250
1250
|
displayName: string;
|
@@ -1258,16 +1258,16 @@ export declare const ContactContractValidationSchema: {
|
|
1258
1258
|
dateValue: Date | null;
|
1259
1259
|
}, {
|
1260
1260
|
id: string;
|
1261
|
-
createdAt:
|
1262
|
-
updatedAt:
|
1263
|
-
deletedAt:
|
1261
|
+
createdAt: string;
|
1262
|
+
updatedAt: string;
|
1263
|
+
deletedAt: string | null;
|
1264
1264
|
attribute: {
|
1265
1265
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1266
1266
|
id: string;
|
1267
1267
|
position: number;
|
1268
|
-
createdAt:
|
1269
|
-
updatedAt:
|
1270
|
-
deletedAt:
|
1268
|
+
createdAt: string;
|
1269
|
+
updatedAt: string;
|
1270
|
+
deletedAt: string | null;
|
1271
1271
|
isDefault: boolean;
|
1272
1272
|
systemName: string;
|
1273
1273
|
displayName: string;
|
@@ -1282,18 +1282,18 @@ export declare const ContactContractValidationSchema: {
|
|
1282
1282
|
}>, "many">>;
|
1283
1283
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
1284
1284
|
id: string;
|
1285
|
-
createdAt:
|
1286
|
-
updatedAt:
|
1287
|
-
deletedAt:
|
1285
|
+
createdAt: string;
|
1286
|
+
updatedAt: string;
|
1287
|
+
deletedAt: string | null;
|
1288
1288
|
address?: string | null | undefined;
|
1289
1289
|
name?: string | undefined;
|
1290
1290
|
phone?: string | null | undefined;
|
1291
1291
|
industry?: string | null | undefined;
|
1292
1292
|
}, {
|
1293
1293
|
id: string;
|
1294
|
-
createdAt:
|
1295
|
-
updatedAt:
|
1296
|
-
deletedAt:
|
1294
|
+
createdAt: string;
|
1295
|
+
updatedAt: string;
|
1296
|
+
deletedAt: string | null;
|
1297
1297
|
address?: string | null | undefined;
|
1298
1298
|
name?: string | undefined;
|
1299
1299
|
phone?: string | null | undefined;
|
@@ -1310,9 +1310,9 @@ export declare const ContactContractValidationSchema: {
|
|
1310
1310
|
dateValue: z.ZodNullable<z.ZodDate>;
|
1311
1311
|
attribute: z.ZodObject<Omit<{
|
1312
1312
|
id: z.ZodString;
|
1313
|
-
createdAt: z.
|
1314
|
-
updatedAt: z.
|
1315
|
-
deletedAt: z.ZodNullable<z.
|
1313
|
+
createdAt: z.ZodString;
|
1314
|
+
updatedAt: z.ZodString;
|
1315
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1316
1316
|
systemName: z.ZodString;
|
1317
1317
|
displayName: z.ZodString;
|
1318
1318
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -1342,23 +1342,23 @@ export declare const ContactContractValidationSchema: {
|
|
1342
1342
|
}>, "many">;
|
1343
1343
|
group: z.ZodObject<{
|
1344
1344
|
id: z.ZodString;
|
1345
|
-
createdAt: z.
|
1346
|
-
updatedAt: z.
|
1347
|
-
deletedAt: z.ZodNullable<z.
|
1345
|
+
createdAt: z.ZodString;
|
1346
|
+
updatedAt: z.ZodString;
|
1347
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1348
1348
|
systemName: z.ZodString;
|
1349
1349
|
displayName: z.ZodString;
|
1350
1350
|
}, "strip", z.ZodTypeAny, {
|
1351
1351
|
id: string;
|
1352
|
-
createdAt:
|
1353
|
-
updatedAt:
|
1354
|
-
deletedAt:
|
1352
|
+
createdAt: string;
|
1353
|
+
updatedAt: string;
|
1354
|
+
deletedAt: string | null;
|
1355
1355
|
systemName: string;
|
1356
1356
|
displayName: string;
|
1357
1357
|
}, {
|
1358
1358
|
id: string;
|
1359
|
-
createdAt:
|
1360
|
-
updatedAt:
|
1361
|
-
deletedAt:
|
1359
|
+
createdAt: string;
|
1360
|
+
updatedAt: string;
|
1361
|
+
deletedAt: string | null;
|
1362
1362
|
systemName: string;
|
1363
1363
|
displayName: string;
|
1364
1364
|
}>;
|
@@ -1366,9 +1366,9 @@ export declare const ContactContractValidationSchema: {
|
|
1366
1366
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1367
1367
|
id: string;
|
1368
1368
|
position: number;
|
1369
|
-
createdAt:
|
1370
|
-
updatedAt:
|
1371
|
-
deletedAt:
|
1369
|
+
createdAt: string;
|
1370
|
+
updatedAt: string;
|
1371
|
+
deletedAt: string | null;
|
1372
1372
|
isDefault: boolean;
|
1373
1373
|
systemName: string;
|
1374
1374
|
displayName: string;
|
@@ -1379,9 +1379,9 @@ export declare const ContactContractValidationSchema: {
|
|
1379
1379
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1380
1380
|
id: string;
|
1381
1381
|
position: number;
|
1382
|
-
createdAt:
|
1383
|
-
updatedAt:
|
1384
|
-
deletedAt:
|
1382
|
+
createdAt: string;
|
1383
|
+
updatedAt: string;
|
1384
|
+
deletedAt: string | null;
|
1385
1385
|
isDefault: boolean;
|
1386
1386
|
systemName: string;
|
1387
1387
|
displayName: string;
|
@@ -1391,33 +1391,33 @@ export declare const ContactContractValidationSchema: {
|
|
1391
1391
|
}>;
|
1392
1392
|
uploads: z.ZodArray<z.ZodObject<{
|
1393
1393
|
id: z.ZodString;
|
1394
|
-
createdAt: z.
|
1395
|
-
updatedAt: z.
|
1396
|
-
deletedAt: z.ZodNullable<z.
|
1394
|
+
createdAt: z.ZodString;
|
1395
|
+
updatedAt: z.ZodString;
|
1396
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1397
1397
|
customFieldId: z.ZodString;
|
1398
1398
|
upload: z.ZodObject<{
|
1399
1399
|
id: z.ZodString;
|
1400
|
-
createdAt: z.
|
1401
|
-
updatedAt: z.
|
1402
|
-
deletedAt: z.ZodNullable<z.
|
1400
|
+
createdAt: z.ZodString;
|
1401
|
+
updatedAt: z.ZodString;
|
1402
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1403
1403
|
bucketName: z.ZodString;
|
1404
1404
|
fileName: z.ZodString;
|
1405
1405
|
fileSize: z.ZodNumber;
|
1406
1406
|
fileKey: z.ZodString;
|
1407
1407
|
}, "strip", z.ZodTypeAny, {
|
1408
1408
|
id: string;
|
1409
|
-
createdAt:
|
1410
|
-
updatedAt:
|
1411
|
-
deletedAt:
|
1409
|
+
createdAt: string;
|
1410
|
+
updatedAt: string;
|
1411
|
+
deletedAt: string | null;
|
1412
1412
|
fileName: string;
|
1413
1413
|
fileKey: string;
|
1414
1414
|
bucketName: string;
|
1415
1415
|
fileSize: number;
|
1416
1416
|
}, {
|
1417
1417
|
id: string;
|
1418
|
-
createdAt:
|
1419
|
-
updatedAt:
|
1420
|
-
deletedAt:
|
1418
|
+
createdAt: string;
|
1419
|
+
updatedAt: string;
|
1420
|
+
deletedAt: string | null;
|
1421
1421
|
fileName: string;
|
1422
1422
|
fileKey: string;
|
1423
1423
|
bucketName: string;
|
@@ -1425,15 +1425,15 @@ export declare const ContactContractValidationSchema: {
|
|
1425
1425
|
}>;
|
1426
1426
|
}, "strip", z.ZodTypeAny, {
|
1427
1427
|
id: string;
|
1428
|
-
createdAt:
|
1429
|
-
updatedAt:
|
1430
|
-
deletedAt:
|
1428
|
+
createdAt: string;
|
1429
|
+
updatedAt: string;
|
1430
|
+
deletedAt: string | null;
|
1431
1431
|
customFieldId: string;
|
1432
1432
|
upload: {
|
1433
1433
|
id: string;
|
1434
|
-
createdAt:
|
1435
|
-
updatedAt:
|
1436
|
-
deletedAt:
|
1434
|
+
createdAt: string;
|
1435
|
+
updatedAt: string;
|
1436
|
+
deletedAt: string | null;
|
1437
1437
|
fileName: string;
|
1438
1438
|
fileKey: string;
|
1439
1439
|
bucketName: string;
|
@@ -1441,15 +1441,15 @@ export declare const ContactContractValidationSchema: {
|
|
1441
1441
|
};
|
1442
1442
|
}, {
|
1443
1443
|
id: string;
|
1444
|
-
createdAt:
|
1445
|
-
updatedAt:
|
1446
|
-
deletedAt:
|
1444
|
+
createdAt: string;
|
1445
|
+
updatedAt: string;
|
1446
|
+
deletedAt: string | null;
|
1447
1447
|
customFieldId: string;
|
1448
1448
|
upload: {
|
1449
1449
|
id: string;
|
1450
|
-
createdAt:
|
1451
|
-
updatedAt:
|
1452
|
-
deletedAt:
|
1450
|
+
createdAt: string;
|
1451
|
+
updatedAt: string;
|
1452
|
+
deletedAt: string | null;
|
1453
1453
|
fileName: string;
|
1454
1454
|
fileKey: string;
|
1455
1455
|
bucketName: string;
|
@@ -1465,9 +1465,9 @@ export declare const ContactContractValidationSchema: {
|
|
1465
1465
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1466
1466
|
id: string;
|
1467
1467
|
position: number;
|
1468
|
-
createdAt:
|
1469
|
-
updatedAt:
|
1470
|
-
deletedAt:
|
1468
|
+
createdAt: string;
|
1469
|
+
updatedAt: string;
|
1470
|
+
deletedAt: string | null;
|
1471
1471
|
isDefault: boolean;
|
1472
1472
|
systemName: string;
|
1473
1473
|
displayName: string;
|
@@ -1481,15 +1481,15 @@ export declare const ContactContractValidationSchema: {
|
|
1481
1481
|
dateValue: Date | null;
|
1482
1482
|
uploads: {
|
1483
1483
|
id: string;
|
1484
|
-
createdAt:
|
1485
|
-
updatedAt:
|
1486
|
-
deletedAt:
|
1484
|
+
createdAt: string;
|
1485
|
+
updatedAt: string;
|
1486
|
+
deletedAt: string | null;
|
1487
1487
|
customFieldId: string;
|
1488
1488
|
upload: {
|
1489
1489
|
id: string;
|
1490
|
-
createdAt:
|
1491
|
-
updatedAt:
|
1492
|
-
deletedAt:
|
1490
|
+
createdAt: string;
|
1491
|
+
updatedAt: string;
|
1492
|
+
deletedAt: string | null;
|
1493
1493
|
fileName: string;
|
1494
1494
|
fileKey: string;
|
1495
1495
|
bucketName: string;
|
@@ -1505,9 +1505,9 @@ export declare const ContactContractValidationSchema: {
|
|
1505
1505
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1506
1506
|
id: string;
|
1507
1507
|
position: number;
|
1508
|
-
createdAt:
|
1509
|
-
updatedAt:
|
1510
|
-
deletedAt:
|
1508
|
+
createdAt: string;
|
1509
|
+
updatedAt: string;
|
1510
|
+
deletedAt: string | null;
|
1511
1511
|
isDefault: boolean;
|
1512
1512
|
systemName: string;
|
1513
1513
|
displayName: string;
|
@@ -1521,15 +1521,15 @@ export declare const ContactContractValidationSchema: {
|
|
1521
1521
|
dateValue: Date | null;
|
1522
1522
|
uploads: {
|
1523
1523
|
id: string;
|
1524
|
-
createdAt:
|
1525
|
-
updatedAt:
|
1526
|
-
deletedAt:
|
1524
|
+
createdAt: string;
|
1525
|
+
updatedAt: string;
|
1526
|
+
deletedAt: string | null;
|
1527
1527
|
customFieldId: string;
|
1528
1528
|
upload: {
|
1529
1529
|
id: string;
|
1530
|
-
createdAt:
|
1531
|
-
updatedAt:
|
1532
|
-
deletedAt:
|
1530
|
+
createdAt: string;
|
1531
|
+
updatedAt: string;
|
1532
|
+
deletedAt: string | null;
|
1533
1533
|
fileName: string;
|
1534
1534
|
fileKey: string;
|
1535
1535
|
bucketName: string;
|
@@ -1658,9 +1658,9 @@ export declare const ContactContractValidationSchema: {
|
|
1658
1658
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1659
1659
|
id: string;
|
1660
1660
|
position: number;
|
1661
|
-
createdAt:
|
1662
|
-
updatedAt:
|
1663
|
-
deletedAt:
|
1661
|
+
createdAt: string;
|
1662
|
+
updatedAt: string;
|
1663
|
+
deletedAt: string | null;
|
1664
1664
|
isDefault: boolean;
|
1665
1665
|
systemName: string;
|
1666
1666
|
displayName: string;
|
@@ -1674,15 +1674,15 @@ export declare const ContactContractValidationSchema: {
|
|
1674
1674
|
dateValue: Date | null;
|
1675
1675
|
uploads: {
|
1676
1676
|
id: string;
|
1677
|
-
createdAt:
|
1678
|
-
updatedAt:
|
1679
|
-
deletedAt:
|
1677
|
+
createdAt: string;
|
1678
|
+
updatedAt: string;
|
1679
|
+
deletedAt: string | null;
|
1680
1680
|
customFieldId: string;
|
1681
1681
|
upload: {
|
1682
1682
|
id: string;
|
1683
|
-
createdAt:
|
1684
|
-
updatedAt:
|
1685
|
-
deletedAt:
|
1683
|
+
createdAt: string;
|
1684
|
+
updatedAt: string;
|
1685
|
+
deletedAt: string | null;
|
1686
1686
|
fileName: string;
|
1687
1687
|
fileKey: string;
|
1688
1688
|
bucketName: string;
|
@@ -1696,15 +1696,15 @@ export declare const ContactContractValidationSchema: {
|
|
1696
1696
|
tags: {
|
1697
1697
|
id: string;
|
1698
1698
|
name: string;
|
1699
|
-
createdAt:
|
1700
|
-
updatedAt:
|
1701
|
-
deletedAt:
|
1699
|
+
createdAt: string;
|
1700
|
+
updatedAt: string;
|
1701
|
+
deletedAt: string | null;
|
1702
1702
|
}[];
|
1703
1703
|
company: {
|
1704
1704
|
id: string;
|
1705
|
-
createdAt:
|
1706
|
-
updatedAt:
|
1707
|
-
deletedAt:
|
1705
|
+
createdAt: string;
|
1706
|
+
updatedAt: string;
|
1707
|
+
deletedAt: string | null;
|
1708
1708
|
address?: string | null | undefined;
|
1709
1709
|
name?: string | undefined;
|
1710
1710
|
phone?: string | null | undefined;
|
@@ -1759,9 +1759,9 @@ export declare const ContactContractValidationSchema: {
|
|
1759
1759
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1760
1760
|
id: string;
|
1761
1761
|
position: number;
|
1762
|
-
createdAt:
|
1763
|
-
updatedAt:
|
1764
|
-
deletedAt:
|
1762
|
+
createdAt: string;
|
1763
|
+
updatedAt: string;
|
1764
|
+
deletedAt: string | null;
|
1765
1765
|
isDefault: boolean;
|
1766
1766
|
systemName: string;
|
1767
1767
|
displayName: string;
|
@@ -1775,15 +1775,15 @@ export declare const ContactContractValidationSchema: {
|
|
1775
1775
|
dateValue: Date | null;
|
1776
1776
|
uploads: {
|
1777
1777
|
id: string;
|
1778
|
-
createdAt:
|
1779
|
-
updatedAt:
|
1780
|
-
deletedAt:
|
1778
|
+
createdAt: string;
|
1779
|
+
updatedAt: string;
|
1780
|
+
deletedAt: string | null;
|
1781
1781
|
customFieldId: string;
|
1782
1782
|
upload: {
|
1783
1783
|
id: string;
|
1784
|
-
createdAt:
|
1785
|
-
updatedAt:
|
1786
|
-
deletedAt:
|
1784
|
+
createdAt: string;
|
1785
|
+
updatedAt: string;
|
1786
|
+
deletedAt: string | null;
|
1787
1787
|
fileName: string;
|
1788
1788
|
fileKey: string;
|
1789
1789
|
bucketName: string;
|
@@ -1797,15 +1797,15 @@ export declare const ContactContractValidationSchema: {
|
|
1797
1797
|
tags: {
|
1798
1798
|
id: string;
|
1799
1799
|
name: string;
|
1800
|
-
createdAt:
|
1801
|
-
updatedAt:
|
1802
|
-
deletedAt:
|
1800
|
+
createdAt: string;
|
1801
|
+
updatedAt: string;
|
1802
|
+
deletedAt: string | null;
|
1803
1803
|
}[];
|
1804
1804
|
company: {
|
1805
1805
|
id: string;
|
1806
|
-
createdAt:
|
1807
|
-
updatedAt:
|
1808
|
-
deletedAt:
|
1806
|
+
createdAt: string;
|
1807
|
+
updatedAt: string;
|
1808
|
+
deletedAt: string | null;
|
1809
1809
|
address?: string | null | undefined;
|
1810
1810
|
name?: string | undefined;
|
1811
1811
|
phone?: string | null | undefined;
|
@@ -1867,46 +1867,46 @@ export declare const ContactContractValidationSchema: {
|
|
1867
1867
|
socialProfileUrl: z.ZodNullable<z.ZodString>;
|
1868
1868
|
tags: z.ZodArray<z.ZodObject<{
|
1869
1869
|
id: z.ZodString;
|
1870
|
-
createdAt: z.
|
1871
|
-
updatedAt: z.
|
1872
|
-
deletedAt: z.ZodNullable<z.
|
1870
|
+
createdAt: z.ZodString;
|
1871
|
+
updatedAt: z.ZodString;
|
1872
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1873
1873
|
name: z.ZodString;
|
1874
1874
|
}, "strip", z.ZodTypeAny, {
|
1875
1875
|
id: string;
|
1876
1876
|
name: string;
|
1877
|
-
createdAt:
|
1878
|
-
updatedAt:
|
1879
|
-
deletedAt:
|
1877
|
+
createdAt: string;
|
1878
|
+
updatedAt: string;
|
1879
|
+
deletedAt: string | null;
|
1880
1880
|
}, {
|
1881
1881
|
id: string;
|
1882
1882
|
name: string;
|
1883
|
-
createdAt:
|
1884
|
-
updatedAt:
|
1885
|
-
deletedAt:
|
1883
|
+
createdAt: string;
|
1884
|
+
updatedAt: string;
|
1885
|
+
deletedAt: string | null;
|
1886
1886
|
}>, "many">;
|
1887
1887
|
company: z.ZodNullable<z.ZodObject<Omit<{
|
1888
1888
|
id: z.ZodString;
|
1889
|
-
createdAt: z.
|
1890
|
-
updatedAt: z.
|
1891
|
-
deletedAt: z.ZodNullable<z.
|
1889
|
+
createdAt: z.ZodString;
|
1890
|
+
updatedAt: z.ZodString;
|
1891
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1892
1892
|
name: z.ZodOptional<z.ZodString>;
|
1893
1893
|
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1894
1894
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1895
1895
|
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1896
1896
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1897
1897
|
id: z.ZodString;
|
1898
|
-
createdAt: z.
|
1899
|
-
updatedAt: z.
|
1900
|
-
deletedAt: z.ZodNullable<z.
|
1898
|
+
createdAt: z.ZodString;
|
1899
|
+
updatedAt: z.ZodString;
|
1900
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1901
1901
|
textValue: z.ZodNullable<z.ZodString>;
|
1902
1902
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
1903
1903
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
1904
1904
|
dateValue: z.ZodNullable<z.ZodDate>;
|
1905
1905
|
attribute: z.ZodObject<Omit<{
|
1906
1906
|
id: z.ZodString;
|
1907
|
-
createdAt: z.
|
1908
|
-
updatedAt: z.
|
1909
|
-
deletedAt: z.ZodNullable<z.
|
1907
|
+
createdAt: z.ZodString;
|
1908
|
+
updatedAt: z.ZodString;
|
1909
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1910
1910
|
systemName: z.ZodString;
|
1911
1911
|
displayName: z.ZodString;
|
1912
1912
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -1936,23 +1936,23 @@ export declare const ContactContractValidationSchema: {
|
|
1936
1936
|
}>, "many">;
|
1937
1937
|
group: z.ZodObject<{
|
1938
1938
|
id: z.ZodString;
|
1939
|
-
createdAt: z.
|
1940
|
-
updatedAt: z.
|
1941
|
-
deletedAt: z.ZodNullable<z.
|
1939
|
+
createdAt: z.ZodString;
|
1940
|
+
updatedAt: z.ZodString;
|
1941
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1942
1942
|
systemName: z.ZodString;
|
1943
1943
|
displayName: z.ZodString;
|
1944
1944
|
}, "strip", z.ZodTypeAny, {
|
1945
1945
|
id: string;
|
1946
|
-
createdAt:
|
1947
|
-
updatedAt:
|
1948
|
-
deletedAt:
|
1946
|
+
createdAt: string;
|
1947
|
+
updatedAt: string;
|
1948
|
+
deletedAt: string | null;
|
1949
1949
|
systemName: string;
|
1950
1950
|
displayName: string;
|
1951
1951
|
}, {
|
1952
1952
|
id: string;
|
1953
|
-
createdAt:
|
1954
|
-
updatedAt:
|
1955
|
-
deletedAt:
|
1953
|
+
createdAt: string;
|
1954
|
+
updatedAt: string;
|
1955
|
+
deletedAt: string | null;
|
1956
1956
|
systemName: string;
|
1957
1957
|
displayName: string;
|
1958
1958
|
}>;
|
@@ -1960,9 +1960,9 @@ export declare const ContactContractValidationSchema: {
|
|
1960
1960
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1961
1961
|
id: string;
|
1962
1962
|
position: number;
|
1963
|
-
createdAt:
|
1964
|
-
updatedAt:
|
1965
|
-
deletedAt:
|
1963
|
+
createdAt: string;
|
1964
|
+
updatedAt: string;
|
1965
|
+
deletedAt: string | null;
|
1966
1966
|
isDefault: boolean;
|
1967
1967
|
systemName: string;
|
1968
1968
|
displayName: string;
|
@@ -1973,9 +1973,9 @@ export declare const ContactContractValidationSchema: {
|
|
1973
1973
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1974
1974
|
id: string;
|
1975
1975
|
position: number;
|
1976
|
-
createdAt:
|
1977
|
-
updatedAt:
|
1978
|
-
deletedAt:
|
1976
|
+
createdAt: string;
|
1977
|
+
updatedAt: string;
|
1978
|
+
deletedAt: string | null;
|
1979
1979
|
isDefault: boolean;
|
1980
1980
|
systemName: string;
|
1981
1981
|
displayName: string;
|
@@ -1985,16 +1985,16 @@ export declare const ContactContractValidationSchema: {
|
|
1985
1985
|
}>;
|
1986
1986
|
}, "strip", z.ZodTypeAny, {
|
1987
1987
|
id: string;
|
1988
|
-
createdAt:
|
1989
|
-
updatedAt:
|
1990
|
-
deletedAt:
|
1988
|
+
createdAt: string;
|
1989
|
+
updatedAt: string;
|
1990
|
+
deletedAt: string | null;
|
1991
1991
|
attribute: {
|
1992
1992
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1993
1993
|
id: string;
|
1994
1994
|
position: number;
|
1995
|
-
createdAt:
|
1996
|
-
updatedAt:
|
1997
|
-
deletedAt:
|
1995
|
+
createdAt: string;
|
1996
|
+
updatedAt: string;
|
1997
|
+
deletedAt: string | null;
|
1998
1998
|
isDefault: boolean;
|
1999
1999
|
systemName: string;
|
2000
2000
|
displayName: string;
|
@@ -2008,16 +2008,16 @@ export declare const ContactContractValidationSchema: {
|
|
2008
2008
|
dateValue: Date | null;
|
2009
2009
|
}, {
|
2010
2010
|
id: string;
|
2011
|
-
createdAt:
|
2012
|
-
updatedAt:
|
2013
|
-
deletedAt:
|
2011
|
+
createdAt: string;
|
2012
|
+
updatedAt: string;
|
2013
|
+
deletedAt: string | null;
|
2014
2014
|
attribute: {
|
2015
2015
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2016
2016
|
id: string;
|
2017
2017
|
position: number;
|
2018
|
-
createdAt:
|
2019
|
-
updatedAt:
|
2020
|
-
deletedAt:
|
2018
|
+
createdAt: string;
|
2019
|
+
updatedAt: string;
|
2020
|
+
deletedAt: string | null;
|
2021
2021
|
isDefault: boolean;
|
2022
2022
|
systemName: string;
|
2023
2023
|
displayName: string;
|
@@ -2032,18 +2032,18 @@ export declare const ContactContractValidationSchema: {
|
|
2032
2032
|
}>, "many">>;
|
2033
2033
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
2034
2034
|
id: string;
|
2035
|
-
createdAt:
|
2036
|
-
updatedAt:
|
2037
|
-
deletedAt:
|
2035
|
+
createdAt: string;
|
2036
|
+
updatedAt: string;
|
2037
|
+
deletedAt: string | null;
|
2038
2038
|
address?: string | null | undefined;
|
2039
2039
|
name?: string | undefined;
|
2040
2040
|
phone?: string | null | undefined;
|
2041
2041
|
industry?: string | null | undefined;
|
2042
2042
|
}, {
|
2043
2043
|
id: string;
|
2044
|
-
createdAt:
|
2045
|
-
updatedAt:
|
2046
|
-
deletedAt:
|
2044
|
+
createdAt: string;
|
2045
|
+
updatedAt: string;
|
2046
|
+
deletedAt: string | null;
|
2047
2047
|
address?: string | null | undefined;
|
2048
2048
|
name?: string | undefined;
|
2049
2049
|
phone?: string | null | undefined;
|
@@ -2060,9 +2060,9 @@ export declare const ContactContractValidationSchema: {
|
|
2060
2060
|
dateValue: z.ZodNullable<z.ZodDate>;
|
2061
2061
|
attribute: z.ZodObject<Omit<{
|
2062
2062
|
id: z.ZodString;
|
2063
|
-
createdAt: z.
|
2064
|
-
updatedAt: z.
|
2065
|
-
deletedAt: z.ZodNullable<z.
|
2063
|
+
createdAt: z.ZodString;
|
2064
|
+
updatedAt: z.ZodString;
|
2065
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2066
2066
|
systemName: z.ZodString;
|
2067
2067
|
displayName: z.ZodString;
|
2068
2068
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -2092,23 +2092,23 @@ export declare const ContactContractValidationSchema: {
|
|
2092
2092
|
}>, "many">;
|
2093
2093
|
group: z.ZodObject<{
|
2094
2094
|
id: z.ZodString;
|
2095
|
-
createdAt: z.
|
2096
|
-
updatedAt: z.
|
2097
|
-
deletedAt: z.ZodNullable<z.
|
2095
|
+
createdAt: z.ZodString;
|
2096
|
+
updatedAt: z.ZodString;
|
2097
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2098
2098
|
systemName: z.ZodString;
|
2099
2099
|
displayName: z.ZodString;
|
2100
2100
|
}, "strip", z.ZodTypeAny, {
|
2101
2101
|
id: string;
|
2102
|
-
createdAt:
|
2103
|
-
updatedAt:
|
2104
|
-
deletedAt:
|
2102
|
+
createdAt: string;
|
2103
|
+
updatedAt: string;
|
2104
|
+
deletedAt: string | null;
|
2105
2105
|
systemName: string;
|
2106
2106
|
displayName: string;
|
2107
2107
|
}, {
|
2108
2108
|
id: string;
|
2109
|
-
createdAt:
|
2110
|
-
updatedAt:
|
2111
|
-
deletedAt:
|
2109
|
+
createdAt: string;
|
2110
|
+
updatedAt: string;
|
2111
|
+
deletedAt: string | null;
|
2112
2112
|
systemName: string;
|
2113
2113
|
displayName: string;
|
2114
2114
|
}>;
|
@@ -2116,9 +2116,9 @@ export declare const ContactContractValidationSchema: {
|
|
2116
2116
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2117
2117
|
id: string;
|
2118
2118
|
position: number;
|
2119
|
-
createdAt:
|
2120
|
-
updatedAt:
|
2121
|
-
deletedAt:
|
2119
|
+
createdAt: string;
|
2120
|
+
updatedAt: string;
|
2121
|
+
deletedAt: string | null;
|
2122
2122
|
isDefault: boolean;
|
2123
2123
|
systemName: string;
|
2124
2124
|
displayName: string;
|
@@ -2129,9 +2129,9 @@ export declare const ContactContractValidationSchema: {
|
|
2129
2129
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2130
2130
|
id: string;
|
2131
2131
|
position: number;
|
2132
|
-
createdAt:
|
2133
|
-
updatedAt:
|
2134
|
-
deletedAt:
|
2132
|
+
createdAt: string;
|
2133
|
+
updatedAt: string;
|
2134
|
+
deletedAt: string | null;
|
2135
2135
|
isDefault: boolean;
|
2136
2136
|
systemName: string;
|
2137
2137
|
displayName: string;
|
@@ -2141,33 +2141,33 @@ export declare const ContactContractValidationSchema: {
|
|
2141
2141
|
}>;
|
2142
2142
|
uploads: z.ZodArray<z.ZodObject<{
|
2143
2143
|
id: z.ZodString;
|
2144
|
-
createdAt: z.
|
2145
|
-
updatedAt: z.
|
2146
|
-
deletedAt: z.ZodNullable<z.
|
2144
|
+
createdAt: z.ZodString;
|
2145
|
+
updatedAt: z.ZodString;
|
2146
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2147
2147
|
customFieldId: z.ZodString;
|
2148
2148
|
upload: z.ZodObject<{
|
2149
2149
|
id: z.ZodString;
|
2150
|
-
createdAt: z.
|
2151
|
-
updatedAt: z.
|
2152
|
-
deletedAt: z.ZodNullable<z.
|
2150
|
+
createdAt: z.ZodString;
|
2151
|
+
updatedAt: z.ZodString;
|
2152
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2153
2153
|
bucketName: z.ZodString;
|
2154
2154
|
fileName: z.ZodString;
|
2155
2155
|
fileSize: z.ZodNumber;
|
2156
2156
|
fileKey: z.ZodString;
|
2157
2157
|
}, "strip", z.ZodTypeAny, {
|
2158
2158
|
id: string;
|
2159
|
-
createdAt:
|
2160
|
-
updatedAt:
|
2161
|
-
deletedAt:
|
2159
|
+
createdAt: string;
|
2160
|
+
updatedAt: string;
|
2161
|
+
deletedAt: string | null;
|
2162
2162
|
fileName: string;
|
2163
2163
|
fileKey: string;
|
2164
2164
|
bucketName: string;
|
2165
2165
|
fileSize: number;
|
2166
2166
|
}, {
|
2167
2167
|
id: string;
|
2168
|
-
createdAt:
|
2169
|
-
updatedAt:
|
2170
|
-
deletedAt:
|
2168
|
+
createdAt: string;
|
2169
|
+
updatedAt: string;
|
2170
|
+
deletedAt: string | null;
|
2171
2171
|
fileName: string;
|
2172
2172
|
fileKey: string;
|
2173
2173
|
bucketName: string;
|
@@ -2175,15 +2175,15 @@ export declare const ContactContractValidationSchema: {
|
|
2175
2175
|
}>;
|
2176
2176
|
}, "strip", z.ZodTypeAny, {
|
2177
2177
|
id: string;
|
2178
|
-
createdAt:
|
2179
|
-
updatedAt:
|
2180
|
-
deletedAt:
|
2178
|
+
createdAt: string;
|
2179
|
+
updatedAt: string;
|
2180
|
+
deletedAt: string | null;
|
2181
2181
|
customFieldId: string;
|
2182
2182
|
upload: {
|
2183
2183
|
id: string;
|
2184
|
-
createdAt:
|
2185
|
-
updatedAt:
|
2186
|
-
deletedAt:
|
2184
|
+
createdAt: string;
|
2185
|
+
updatedAt: string;
|
2186
|
+
deletedAt: string | null;
|
2187
2187
|
fileName: string;
|
2188
2188
|
fileKey: string;
|
2189
2189
|
bucketName: string;
|
@@ -2191,15 +2191,15 @@ export declare const ContactContractValidationSchema: {
|
|
2191
2191
|
};
|
2192
2192
|
}, {
|
2193
2193
|
id: string;
|
2194
|
-
createdAt:
|
2195
|
-
updatedAt:
|
2196
|
-
deletedAt:
|
2194
|
+
createdAt: string;
|
2195
|
+
updatedAt: string;
|
2196
|
+
deletedAt: string | null;
|
2197
2197
|
customFieldId: string;
|
2198
2198
|
upload: {
|
2199
2199
|
id: string;
|
2200
|
-
createdAt:
|
2201
|
-
updatedAt:
|
2202
|
-
deletedAt:
|
2200
|
+
createdAt: string;
|
2201
|
+
updatedAt: string;
|
2202
|
+
deletedAt: string | null;
|
2203
2203
|
fileName: string;
|
2204
2204
|
fileKey: string;
|
2205
2205
|
bucketName: string;
|
@@ -2215,9 +2215,9 @@ export declare const ContactContractValidationSchema: {
|
|
2215
2215
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2216
2216
|
id: string;
|
2217
2217
|
position: number;
|
2218
|
-
createdAt:
|
2219
|
-
updatedAt:
|
2220
|
-
deletedAt:
|
2218
|
+
createdAt: string;
|
2219
|
+
updatedAt: string;
|
2220
|
+
deletedAt: string | null;
|
2221
2221
|
isDefault: boolean;
|
2222
2222
|
systemName: string;
|
2223
2223
|
displayName: string;
|
@@ -2231,15 +2231,15 @@ export declare const ContactContractValidationSchema: {
|
|
2231
2231
|
dateValue: Date | null;
|
2232
2232
|
uploads: {
|
2233
2233
|
id: string;
|
2234
|
-
createdAt:
|
2235
|
-
updatedAt:
|
2236
|
-
deletedAt:
|
2234
|
+
createdAt: string;
|
2235
|
+
updatedAt: string;
|
2236
|
+
deletedAt: string | null;
|
2237
2237
|
customFieldId: string;
|
2238
2238
|
upload: {
|
2239
2239
|
id: string;
|
2240
|
-
createdAt:
|
2241
|
-
updatedAt:
|
2242
|
-
deletedAt:
|
2240
|
+
createdAt: string;
|
2241
|
+
updatedAt: string;
|
2242
|
+
deletedAt: string | null;
|
2243
2243
|
fileName: string;
|
2244
2244
|
fileKey: string;
|
2245
2245
|
bucketName: string;
|
@@ -2255,9 +2255,9 @@ export declare const ContactContractValidationSchema: {
|
|
2255
2255
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2256
2256
|
id: string;
|
2257
2257
|
position: number;
|
2258
|
-
createdAt:
|
2259
|
-
updatedAt:
|
2260
|
-
deletedAt:
|
2258
|
+
createdAt: string;
|
2259
|
+
updatedAt: string;
|
2260
|
+
deletedAt: string | null;
|
2261
2261
|
isDefault: boolean;
|
2262
2262
|
systemName: string;
|
2263
2263
|
displayName: string;
|
@@ -2271,15 +2271,15 @@ export declare const ContactContractValidationSchema: {
|
|
2271
2271
|
dateValue: Date | null;
|
2272
2272
|
uploads: {
|
2273
2273
|
id: string;
|
2274
|
-
createdAt:
|
2275
|
-
updatedAt:
|
2276
|
-
deletedAt:
|
2274
|
+
createdAt: string;
|
2275
|
+
updatedAt: string;
|
2276
|
+
deletedAt: string | null;
|
2277
2277
|
customFieldId: string;
|
2278
2278
|
upload: {
|
2279
2279
|
id: string;
|
2280
|
-
createdAt:
|
2281
|
-
updatedAt:
|
2282
|
-
deletedAt:
|
2280
|
+
createdAt: string;
|
2281
|
+
updatedAt: string;
|
2282
|
+
deletedAt: string | null;
|
2283
2283
|
fileName: string;
|
2284
2284
|
fileKey: string;
|
2285
2285
|
bucketName: string;
|
@@ -2408,9 +2408,9 @@ export declare const ContactContractValidationSchema: {
|
|
2408
2408
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2409
2409
|
id: string;
|
2410
2410
|
position: number;
|
2411
|
-
createdAt:
|
2412
|
-
updatedAt:
|
2413
|
-
deletedAt:
|
2411
|
+
createdAt: string;
|
2412
|
+
updatedAt: string;
|
2413
|
+
deletedAt: string | null;
|
2414
2414
|
isDefault: boolean;
|
2415
2415
|
systemName: string;
|
2416
2416
|
displayName: string;
|
@@ -2424,15 +2424,15 @@ export declare const ContactContractValidationSchema: {
|
|
2424
2424
|
dateValue: Date | null;
|
2425
2425
|
uploads: {
|
2426
2426
|
id: string;
|
2427
|
-
createdAt:
|
2428
|
-
updatedAt:
|
2429
|
-
deletedAt:
|
2427
|
+
createdAt: string;
|
2428
|
+
updatedAt: string;
|
2429
|
+
deletedAt: string | null;
|
2430
2430
|
customFieldId: string;
|
2431
2431
|
upload: {
|
2432
2432
|
id: string;
|
2433
|
-
createdAt:
|
2434
|
-
updatedAt:
|
2435
|
-
deletedAt:
|
2433
|
+
createdAt: string;
|
2434
|
+
updatedAt: string;
|
2435
|
+
deletedAt: string | null;
|
2436
2436
|
fileName: string;
|
2437
2437
|
fileKey: string;
|
2438
2438
|
bucketName: string;
|
@@ -2446,15 +2446,15 @@ export declare const ContactContractValidationSchema: {
|
|
2446
2446
|
tags: {
|
2447
2447
|
id: string;
|
2448
2448
|
name: string;
|
2449
|
-
createdAt:
|
2450
|
-
updatedAt:
|
2451
|
-
deletedAt:
|
2449
|
+
createdAt: string;
|
2450
|
+
updatedAt: string;
|
2451
|
+
deletedAt: string | null;
|
2452
2452
|
}[];
|
2453
2453
|
company: {
|
2454
2454
|
id: string;
|
2455
|
-
createdAt:
|
2456
|
-
updatedAt:
|
2457
|
-
deletedAt:
|
2455
|
+
createdAt: string;
|
2456
|
+
updatedAt: string;
|
2457
|
+
deletedAt: string | null;
|
2458
2458
|
address?: string | null | undefined;
|
2459
2459
|
name?: string | undefined;
|
2460
2460
|
phone?: string | null | undefined;
|
@@ -2509,9 +2509,9 @@ export declare const ContactContractValidationSchema: {
|
|
2509
2509
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2510
2510
|
id: string;
|
2511
2511
|
position: number;
|
2512
|
-
createdAt:
|
2513
|
-
updatedAt:
|
2514
|
-
deletedAt:
|
2512
|
+
createdAt: string;
|
2513
|
+
updatedAt: string;
|
2514
|
+
deletedAt: string | null;
|
2515
2515
|
isDefault: boolean;
|
2516
2516
|
systemName: string;
|
2517
2517
|
displayName: string;
|
@@ -2525,15 +2525,15 @@ export declare const ContactContractValidationSchema: {
|
|
2525
2525
|
dateValue: Date | null;
|
2526
2526
|
uploads: {
|
2527
2527
|
id: string;
|
2528
|
-
createdAt:
|
2529
|
-
updatedAt:
|
2530
|
-
deletedAt:
|
2528
|
+
createdAt: string;
|
2529
|
+
updatedAt: string;
|
2530
|
+
deletedAt: string | null;
|
2531
2531
|
customFieldId: string;
|
2532
2532
|
upload: {
|
2533
2533
|
id: string;
|
2534
|
-
createdAt:
|
2535
|
-
updatedAt:
|
2536
|
-
deletedAt:
|
2534
|
+
createdAt: string;
|
2535
|
+
updatedAt: string;
|
2536
|
+
deletedAt: string | null;
|
2537
2537
|
fileName: string;
|
2538
2538
|
fileKey: string;
|
2539
2539
|
bucketName: string;
|
@@ -2547,15 +2547,15 @@ export declare const ContactContractValidationSchema: {
|
|
2547
2547
|
tags: {
|
2548
2548
|
id: string;
|
2549
2549
|
name: string;
|
2550
|
-
createdAt:
|
2551
|
-
updatedAt:
|
2552
|
-
deletedAt:
|
2550
|
+
createdAt: string;
|
2551
|
+
updatedAt: string;
|
2552
|
+
deletedAt: string | null;
|
2553
2553
|
}[];
|
2554
2554
|
company: {
|
2555
2555
|
id: string;
|
2556
|
-
createdAt:
|
2557
|
-
updatedAt:
|
2558
|
-
deletedAt:
|
2556
|
+
createdAt: string;
|
2557
|
+
updatedAt: string;
|
2558
|
+
deletedAt: string | null;
|
2559
2559
|
address?: string | null | undefined;
|
2560
2560
|
name?: string | undefined;
|
2561
2561
|
phone?: string | null | undefined;
|
@@ -2616,46 +2616,46 @@ export declare const ContactContractValidationSchema: {
|
|
2616
2616
|
socialProfileUrl: z.ZodNullable<z.ZodString>;
|
2617
2617
|
tags: z.ZodArray<z.ZodObject<{
|
2618
2618
|
id: z.ZodString;
|
2619
|
-
createdAt: z.
|
2620
|
-
updatedAt: z.
|
2621
|
-
deletedAt: z.ZodNullable<z.
|
2619
|
+
createdAt: z.ZodString;
|
2620
|
+
updatedAt: z.ZodString;
|
2621
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2622
2622
|
name: z.ZodString;
|
2623
2623
|
}, "strip", z.ZodTypeAny, {
|
2624
2624
|
id: string;
|
2625
2625
|
name: string;
|
2626
|
-
createdAt:
|
2627
|
-
updatedAt:
|
2628
|
-
deletedAt:
|
2626
|
+
createdAt: string;
|
2627
|
+
updatedAt: string;
|
2628
|
+
deletedAt: string | null;
|
2629
2629
|
}, {
|
2630
2630
|
id: string;
|
2631
2631
|
name: string;
|
2632
|
-
createdAt:
|
2633
|
-
updatedAt:
|
2634
|
-
deletedAt:
|
2632
|
+
createdAt: string;
|
2633
|
+
updatedAt: string;
|
2634
|
+
deletedAt: string | null;
|
2635
2635
|
}>, "many">;
|
2636
2636
|
company: z.ZodNullable<z.ZodObject<Omit<{
|
2637
2637
|
id: z.ZodString;
|
2638
|
-
createdAt: z.
|
2639
|
-
updatedAt: z.
|
2640
|
-
deletedAt: z.ZodNullable<z.
|
2638
|
+
createdAt: z.ZodString;
|
2639
|
+
updatedAt: z.ZodString;
|
2640
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2641
2641
|
name: z.ZodOptional<z.ZodString>;
|
2642
2642
|
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2643
2643
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2644
2644
|
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2645
2645
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2646
2646
|
id: z.ZodString;
|
2647
|
-
createdAt: z.
|
2648
|
-
updatedAt: z.
|
2649
|
-
deletedAt: z.ZodNullable<z.
|
2647
|
+
createdAt: z.ZodString;
|
2648
|
+
updatedAt: z.ZodString;
|
2649
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2650
2650
|
textValue: z.ZodNullable<z.ZodString>;
|
2651
2651
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2652
2652
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
2653
2653
|
dateValue: z.ZodNullable<z.ZodDate>;
|
2654
2654
|
attribute: z.ZodObject<Omit<{
|
2655
2655
|
id: z.ZodString;
|
2656
|
-
createdAt: z.
|
2657
|
-
updatedAt: z.
|
2658
|
-
deletedAt: z.ZodNullable<z.
|
2656
|
+
createdAt: z.ZodString;
|
2657
|
+
updatedAt: z.ZodString;
|
2658
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2659
2659
|
systemName: z.ZodString;
|
2660
2660
|
displayName: z.ZodString;
|
2661
2661
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -2685,23 +2685,23 @@ export declare const ContactContractValidationSchema: {
|
|
2685
2685
|
}>, "many">;
|
2686
2686
|
group: z.ZodObject<{
|
2687
2687
|
id: z.ZodString;
|
2688
|
-
createdAt: z.
|
2689
|
-
updatedAt: z.
|
2690
|
-
deletedAt: z.ZodNullable<z.
|
2688
|
+
createdAt: z.ZodString;
|
2689
|
+
updatedAt: z.ZodString;
|
2690
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2691
2691
|
systemName: z.ZodString;
|
2692
2692
|
displayName: z.ZodString;
|
2693
2693
|
}, "strip", z.ZodTypeAny, {
|
2694
2694
|
id: string;
|
2695
|
-
createdAt:
|
2696
|
-
updatedAt:
|
2697
|
-
deletedAt:
|
2695
|
+
createdAt: string;
|
2696
|
+
updatedAt: string;
|
2697
|
+
deletedAt: string | null;
|
2698
2698
|
systemName: string;
|
2699
2699
|
displayName: string;
|
2700
2700
|
}, {
|
2701
2701
|
id: string;
|
2702
|
-
createdAt:
|
2703
|
-
updatedAt:
|
2704
|
-
deletedAt:
|
2702
|
+
createdAt: string;
|
2703
|
+
updatedAt: string;
|
2704
|
+
deletedAt: string | null;
|
2705
2705
|
systemName: string;
|
2706
2706
|
displayName: string;
|
2707
2707
|
}>;
|
@@ -2709,9 +2709,9 @@ export declare const ContactContractValidationSchema: {
|
|
2709
2709
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2710
2710
|
id: string;
|
2711
2711
|
position: number;
|
2712
|
-
createdAt:
|
2713
|
-
updatedAt:
|
2714
|
-
deletedAt:
|
2712
|
+
createdAt: string;
|
2713
|
+
updatedAt: string;
|
2714
|
+
deletedAt: string | null;
|
2715
2715
|
isDefault: boolean;
|
2716
2716
|
systemName: string;
|
2717
2717
|
displayName: string;
|
@@ -2722,9 +2722,9 @@ export declare const ContactContractValidationSchema: {
|
|
2722
2722
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2723
2723
|
id: string;
|
2724
2724
|
position: number;
|
2725
|
-
createdAt:
|
2726
|
-
updatedAt:
|
2727
|
-
deletedAt:
|
2725
|
+
createdAt: string;
|
2726
|
+
updatedAt: string;
|
2727
|
+
deletedAt: string | null;
|
2728
2728
|
isDefault: boolean;
|
2729
2729
|
systemName: string;
|
2730
2730
|
displayName: string;
|
@@ -2734,16 +2734,16 @@ export declare const ContactContractValidationSchema: {
|
|
2734
2734
|
}>;
|
2735
2735
|
}, "strip", z.ZodTypeAny, {
|
2736
2736
|
id: string;
|
2737
|
-
createdAt:
|
2738
|
-
updatedAt:
|
2739
|
-
deletedAt:
|
2737
|
+
createdAt: string;
|
2738
|
+
updatedAt: string;
|
2739
|
+
deletedAt: string | null;
|
2740
2740
|
attribute: {
|
2741
2741
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2742
2742
|
id: string;
|
2743
2743
|
position: number;
|
2744
|
-
createdAt:
|
2745
|
-
updatedAt:
|
2746
|
-
deletedAt:
|
2744
|
+
createdAt: string;
|
2745
|
+
updatedAt: string;
|
2746
|
+
deletedAt: string | null;
|
2747
2747
|
isDefault: boolean;
|
2748
2748
|
systemName: string;
|
2749
2749
|
displayName: string;
|
@@ -2757,16 +2757,16 @@ export declare const ContactContractValidationSchema: {
|
|
2757
2757
|
dateValue: Date | null;
|
2758
2758
|
}, {
|
2759
2759
|
id: string;
|
2760
|
-
createdAt:
|
2761
|
-
updatedAt:
|
2762
|
-
deletedAt:
|
2760
|
+
createdAt: string;
|
2761
|
+
updatedAt: string;
|
2762
|
+
deletedAt: string | null;
|
2763
2763
|
attribute: {
|
2764
2764
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2765
2765
|
id: string;
|
2766
2766
|
position: number;
|
2767
|
-
createdAt:
|
2768
|
-
updatedAt:
|
2769
|
-
deletedAt:
|
2767
|
+
createdAt: string;
|
2768
|
+
updatedAt: string;
|
2769
|
+
deletedAt: string | null;
|
2770
2770
|
isDefault: boolean;
|
2771
2771
|
systemName: string;
|
2772
2772
|
displayName: string;
|
@@ -2781,18 +2781,18 @@ export declare const ContactContractValidationSchema: {
|
|
2781
2781
|
}>, "many">>;
|
2782
2782
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
2783
2783
|
id: string;
|
2784
|
-
createdAt:
|
2785
|
-
updatedAt:
|
2786
|
-
deletedAt:
|
2784
|
+
createdAt: string;
|
2785
|
+
updatedAt: string;
|
2786
|
+
deletedAt: string | null;
|
2787
2787
|
address?: string | null | undefined;
|
2788
2788
|
name?: string | undefined;
|
2789
2789
|
phone?: string | null | undefined;
|
2790
2790
|
industry?: string | null | undefined;
|
2791
2791
|
}, {
|
2792
2792
|
id: string;
|
2793
|
-
createdAt:
|
2794
|
-
updatedAt:
|
2795
|
-
deletedAt:
|
2793
|
+
createdAt: string;
|
2794
|
+
updatedAt: string;
|
2795
|
+
deletedAt: string | null;
|
2796
2796
|
address?: string | null | undefined;
|
2797
2797
|
name?: string | undefined;
|
2798
2798
|
phone?: string | null | undefined;
|
@@ -2809,9 +2809,9 @@ export declare const ContactContractValidationSchema: {
|
|
2809
2809
|
dateValue: z.ZodNullable<z.ZodDate>;
|
2810
2810
|
attribute: z.ZodObject<Omit<{
|
2811
2811
|
id: z.ZodString;
|
2812
|
-
createdAt: z.
|
2813
|
-
updatedAt: z.
|
2814
|
-
deletedAt: z.ZodNullable<z.
|
2812
|
+
createdAt: z.ZodString;
|
2813
|
+
updatedAt: z.ZodString;
|
2814
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2815
2815
|
systemName: z.ZodString;
|
2816
2816
|
displayName: z.ZodString;
|
2817
2817
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -2841,23 +2841,23 @@ export declare const ContactContractValidationSchema: {
|
|
2841
2841
|
}>, "many">;
|
2842
2842
|
group: z.ZodObject<{
|
2843
2843
|
id: z.ZodString;
|
2844
|
-
createdAt: z.
|
2845
|
-
updatedAt: z.
|
2846
|
-
deletedAt: z.ZodNullable<z.
|
2844
|
+
createdAt: z.ZodString;
|
2845
|
+
updatedAt: z.ZodString;
|
2846
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2847
2847
|
systemName: z.ZodString;
|
2848
2848
|
displayName: z.ZodString;
|
2849
2849
|
}, "strip", z.ZodTypeAny, {
|
2850
2850
|
id: string;
|
2851
|
-
createdAt:
|
2852
|
-
updatedAt:
|
2853
|
-
deletedAt:
|
2851
|
+
createdAt: string;
|
2852
|
+
updatedAt: string;
|
2853
|
+
deletedAt: string | null;
|
2854
2854
|
systemName: string;
|
2855
2855
|
displayName: string;
|
2856
2856
|
}, {
|
2857
2857
|
id: string;
|
2858
|
-
createdAt:
|
2859
|
-
updatedAt:
|
2860
|
-
deletedAt:
|
2858
|
+
createdAt: string;
|
2859
|
+
updatedAt: string;
|
2860
|
+
deletedAt: string | null;
|
2861
2861
|
systemName: string;
|
2862
2862
|
displayName: string;
|
2863
2863
|
}>;
|
@@ -2865,9 +2865,9 @@ export declare const ContactContractValidationSchema: {
|
|
2865
2865
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2866
2866
|
id: string;
|
2867
2867
|
position: number;
|
2868
|
-
createdAt:
|
2869
|
-
updatedAt:
|
2870
|
-
deletedAt:
|
2868
|
+
createdAt: string;
|
2869
|
+
updatedAt: string;
|
2870
|
+
deletedAt: string | null;
|
2871
2871
|
isDefault: boolean;
|
2872
2872
|
systemName: string;
|
2873
2873
|
displayName: string;
|
@@ -2878,9 +2878,9 @@ export declare const ContactContractValidationSchema: {
|
|
2878
2878
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2879
2879
|
id: string;
|
2880
2880
|
position: number;
|
2881
|
-
createdAt:
|
2882
|
-
updatedAt:
|
2883
|
-
deletedAt:
|
2881
|
+
createdAt: string;
|
2882
|
+
updatedAt: string;
|
2883
|
+
deletedAt: string | null;
|
2884
2884
|
isDefault: boolean;
|
2885
2885
|
systemName: string;
|
2886
2886
|
displayName: string;
|
@@ -2890,33 +2890,33 @@ export declare const ContactContractValidationSchema: {
|
|
2890
2890
|
}>;
|
2891
2891
|
uploads: z.ZodArray<z.ZodObject<{
|
2892
2892
|
id: z.ZodString;
|
2893
|
-
createdAt: z.
|
2894
|
-
updatedAt: z.
|
2895
|
-
deletedAt: z.ZodNullable<z.
|
2893
|
+
createdAt: z.ZodString;
|
2894
|
+
updatedAt: z.ZodString;
|
2895
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2896
2896
|
customFieldId: z.ZodString;
|
2897
2897
|
upload: z.ZodObject<{
|
2898
2898
|
id: z.ZodString;
|
2899
|
-
createdAt: z.
|
2900
|
-
updatedAt: z.
|
2901
|
-
deletedAt: z.ZodNullable<z.
|
2899
|
+
createdAt: z.ZodString;
|
2900
|
+
updatedAt: z.ZodString;
|
2901
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2902
2902
|
bucketName: z.ZodString;
|
2903
2903
|
fileName: z.ZodString;
|
2904
2904
|
fileSize: z.ZodNumber;
|
2905
2905
|
fileKey: z.ZodString;
|
2906
2906
|
}, "strip", z.ZodTypeAny, {
|
2907
2907
|
id: string;
|
2908
|
-
createdAt:
|
2909
|
-
updatedAt:
|
2910
|
-
deletedAt:
|
2908
|
+
createdAt: string;
|
2909
|
+
updatedAt: string;
|
2910
|
+
deletedAt: string | null;
|
2911
2911
|
fileName: string;
|
2912
2912
|
fileKey: string;
|
2913
2913
|
bucketName: string;
|
2914
2914
|
fileSize: number;
|
2915
2915
|
}, {
|
2916
2916
|
id: string;
|
2917
|
-
createdAt:
|
2918
|
-
updatedAt:
|
2919
|
-
deletedAt:
|
2917
|
+
createdAt: string;
|
2918
|
+
updatedAt: string;
|
2919
|
+
deletedAt: string | null;
|
2920
2920
|
fileName: string;
|
2921
2921
|
fileKey: string;
|
2922
2922
|
bucketName: string;
|
@@ -2924,15 +2924,15 @@ export declare const ContactContractValidationSchema: {
|
|
2924
2924
|
}>;
|
2925
2925
|
}, "strip", z.ZodTypeAny, {
|
2926
2926
|
id: string;
|
2927
|
-
createdAt:
|
2928
|
-
updatedAt:
|
2929
|
-
deletedAt:
|
2927
|
+
createdAt: string;
|
2928
|
+
updatedAt: string;
|
2929
|
+
deletedAt: string | null;
|
2930
2930
|
customFieldId: string;
|
2931
2931
|
upload: {
|
2932
2932
|
id: string;
|
2933
|
-
createdAt:
|
2934
|
-
updatedAt:
|
2935
|
-
deletedAt:
|
2933
|
+
createdAt: string;
|
2934
|
+
updatedAt: string;
|
2935
|
+
deletedAt: string | null;
|
2936
2936
|
fileName: string;
|
2937
2937
|
fileKey: string;
|
2938
2938
|
bucketName: string;
|
@@ -2940,15 +2940,15 @@ export declare const ContactContractValidationSchema: {
|
|
2940
2940
|
};
|
2941
2941
|
}, {
|
2942
2942
|
id: string;
|
2943
|
-
createdAt:
|
2944
|
-
updatedAt:
|
2945
|
-
deletedAt:
|
2943
|
+
createdAt: string;
|
2944
|
+
updatedAt: string;
|
2945
|
+
deletedAt: string | null;
|
2946
2946
|
customFieldId: string;
|
2947
2947
|
upload: {
|
2948
2948
|
id: string;
|
2949
|
-
createdAt:
|
2950
|
-
updatedAt:
|
2951
|
-
deletedAt:
|
2949
|
+
createdAt: string;
|
2950
|
+
updatedAt: string;
|
2951
|
+
deletedAt: string | null;
|
2952
2952
|
fileName: string;
|
2953
2953
|
fileKey: string;
|
2954
2954
|
bucketName: string;
|
@@ -2964,9 +2964,9 @@ export declare const ContactContractValidationSchema: {
|
|
2964
2964
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2965
2965
|
id: string;
|
2966
2966
|
position: number;
|
2967
|
-
createdAt:
|
2968
|
-
updatedAt:
|
2969
|
-
deletedAt:
|
2967
|
+
createdAt: string;
|
2968
|
+
updatedAt: string;
|
2969
|
+
deletedAt: string | null;
|
2970
2970
|
isDefault: boolean;
|
2971
2971
|
systemName: string;
|
2972
2972
|
displayName: string;
|
@@ -2980,15 +2980,15 @@ export declare const ContactContractValidationSchema: {
|
|
2980
2980
|
dateValue: Date | null;
|
2981
2981
|
uploads: {
|
2982
2982
|
id: string;
|
2983
|
-
createdAt:
|
2984
|
-
updatedAt:
|
2985
|
-
deletedAt:
|
2983
|
+
createdAt: string;
|
2984
|
+
updatedAt: string;
|
2985
|
+
deletedAt: string | null;
|
2986
2986
|
customFieldId: string;
|
2987
2987
|
upload: {
|
2988
2988
|
id: string;
|
2989
|
-
createdAt:
|
2990
|
-
updatedAt:
|
2991
|
-
deletedAt:
|
2989
|
+
createdAt: string;
|
2990
|
+
updatedAt: string;
|
2991
|
+
deletedAt: string | null;
|
2992
2992
|
fileName: string;
|
2993
2993
|
fileKey: string;
|
2994
2994
|
bucketName: string;
|
@@ -3004,9 +3004,9 @@ export declare const ContactContractValidationSchema: {
|
|
3004
3004
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3005
3005
|
id: string;
|
3006
3006
|
position: number;
|
3007
|
-
createdAt:
|
3008
|
-
updatedAt:
|
3009
|
-
deletedAt:
|
3007
|
+
createdAt: string;
|
3008
|
+
updatedAt: string;
|
3009
|
+
deletedAt: string | null;
|
3010
3010
|
isDefault: boolean;
|
3011
3011
|
systemName: string;
|
3012
3012
|
displayName: string;
|
@@ -3020,15 +3020,15 @@ export declare const ContactContractValidationSchema: {
|
|
3020
3020
|
dateValue: Date | null;
|
3021
3021
|
uploads: {
|
3022
3022
|
id: string;
|
3023
|
-
createdAt:
|
3024
|
-
updatedAt:
|
3025
|
-
deletedAt:
|
3023
|
+
createdAt: string;
|
3024
|
+
updatedAt: string;
|
3025
|
+
deletedAt: string | null;
|
3026
3026
|
customFieldId: string;
|
3027
3027
|
upload: {
|
3028
3028
|
id: string;
|
3029
|
-
createdAt:
|
3030
|
-
updatedAt:
|
3031
|
-
deletedAt:
|
3029
|
+
createdAt: string;
|
3030
|
+
updatedAt: string;
|
3031
|
+
deletedAt: string | null;
|
3032
3032
|
fileName: string;
|
3033
3033
|
fileKey: string;
|
3034
3034
|
bucketName: string;
|
@@ -3157,9 +3157,9 @@ export declare const ContactContractValidationSchema: {
|
|
3157
3157
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3158
3158
|
id: string;
|
3159
3159
|
position: number;
|
3160
|
-
createdAt:
|
3161
|
-
updatedAt:
|
3162
|
-
deletedAt:
|
3160
|
+
createdAt: string;
|
3161
|
+
updatedAt: string;
|
3162
|
+
deletedAt: string | null;
|
3163
3163
|
isDefault: boolean;
|
3164
3164
|
systemName: string;
|
3165
3165
|
displayName: string;
|
@@ -3173,15 +3173,15 @@ export declare const ContactContractValidationSchema: {
|
|
3173
3173
|
dateValue: Date | null;
|
3174
3174
|
uploads: {
|
3175
3175
|
id: string;
|
3176
|
-
createdAt:
|
3177
|
-
updatedAt:
|
3178
|
-
deletedAt:
|
3176
|
+
createdAt: string;
|
3177
|
+
updatedAt: string;
|
3178
|
+
deletedAt: string | null;
|
3179
3179
|
customFieldId: string;
|
3180
3180
|
upload: {
|
3181
3181
|
id: string;
|
3182
|
-
createdAt:
|
3183
|
-
updatedAt:
|
3184
|
-
deletedAt:
|
3182
|
+
createdAt: string;
|
3183
|
+
updatedAt: string;
|
3184
|
+
deletedAt: string | null;
|
3185
3185
|
fileName: string;
|
3186
3186
|
fileKey: string;
|
3187
3187
|
bucketName: string;
|
@@ -3195,15 +3195,15 @@ export declare const ContactContractValidationSchema: {
|
|
3195
3195
|
tags: {
|
3196
3196
|
id: string;
|
3197
3197
|
name: string;
|
3198
|
-
createdAt:
|
3199
|
-
updatedAt:
|
3200
|
-
deletedAt:
|
3198
|
+
createdAt: string;
|
3199
|
+
updatedAt: string;
|
3200
|
+
deletedAt: string | null;
|
3201
3201
|
}[];
|
3202
3202
|
company: {
|
3203
3203
|
id: string;
|
3204
|
-
createdAt:
|
3205
|
-
updatedAt:
|
3206
|
-
deletedAt:
|
3204
|
+
createdAt: string;
|
3205
|
+
updatedAt: string;
|
3206
|
+
deletedAt: string | null;
|
3207
3207
|
address?: string | null | undefined;
|
3208
3208
|
name?: string | undefined;
|
3209
3209
|
phone?: string | null | undefined;
|
@@ -3258,9 +3258,9 @@ export declare const ContactContractValidationSchema: {
|
|
3258
3258
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3259
3259
|
id: string;
|
3260
3260
|
position: number;
|
3261
|
-
createdAt:
|
3262
|
-
updatedAt:
|
3263
|
-
deletedAt:
|
3261
|
+
createdAt: string;
|
3262
|
+
updatedAt: string;
|
3263
|
+
deletedAt: string | null;
|
3264
3264
|
isDefault: boolean;
|
3265
3265
|
systemName: string;
|
3266
3266
|
displayName: string;
|
@@ -3274,15 +3274,15 @@ export declare const ContactContractValidationSchema: {
|
|
3274
3274
|
dateValue: Date | null;
|
3275
3275
|
uploads: {
|
3276
3276
|
id: string;
|
3277
|
-
createdAt:
|
3278
|
-
updatedAt:
|
3279
|
-
deletedAt:
|
3277
|
+
createdAt: string;
|
3278
|
+
updatedAt: string;
|
3279
|
+
deletedAt: string | null;
|
3280
3280
|
customFieldId: string;
|
3281
3281
|
upload: {
|
3282
3282
|
id: string;
|
3283
|
-
createdAt:
|
3284
|
-
updatedAt:
|
3285
|
-
deletedAt:
|
3283
|
+
createdAt: string;
|
3284
|
+
updatedAt: string;
|
3285
|
+
deletedAt: string | null;
|
3286
3286
|
fileName: string;
|
3287
3287
|
fileKey: string;
|
3288
3288
|
bucketName: string;
|
@@ -3296,15 +3296,15 @@ export declare const ContactContractValidationSchema: {
|
|
3296
3296
|
tags: {
|
3297
3297
|
id: string;
|
3298
3298
|
name: string;
|
3299
|
-
createdAt:
|
3300
|
-
updatedAt:
|
3301
|
-
deletedAt:
|
3299
|
+
createdAt: string;
|
3300
|
+
updatedAt: string;
|
3301
|
+
deletedAt: string | null;
|
3302
3302
|
}[];
|
3303
3303
|
company: {
|
3304
3304
|
id: string;
|
3305
|
-
createdAt:
|
3306
|
-
updatedAt:
|
3307
|
-
deletedAt:
|
3305
|
+
createdAt: string;
|
3306
|
+
updatedAt: string;
|
3307
|
+
deletedAt: string | null;
|
3308
3308
|
address?: string | null | undefined;
|
3309
3309
|
name?: string | undefined;
|
3310
3310
|
phone?: string | null | undefined;
|
@@ -3368,46 +3368,46 @@ export declare const ContactContractValidationSchema: {
|
|
3368
3368
|
socialProfileUrl: z.ZodNullable<z.ZodString>;
|
3369
3369
|
tags: z.ZodArray<z.ZodObject<{
|
3370
3370
|
id: z.ZodString;
|
3371
|
-
createdAt: z.
|
3372
|
-
updatedAt: z.
|
3373
|
-
deletedAt: z.ZodNullable<z.
|
3371
|
+
createdAt: z.ZodString;
|
3372
|
+
updatedAt: z.ZodString;
|
3373
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3374
3374
|
name: z.ZodString;
|
3375
3375
|
}, "strip", z.ZodTypeAny, {
|
3376
3376
|
id: string;
|
3377
3377
|
name: string;
|
3378
|
-
createdAt:
|
3379
|
-
updatedAt:
|
3380
|
-
deletedAt:
|
3378
|
+
createdAt: string;
|
3379
|
+
updatedAt: string;
|
3380
|
+
deletedAt: string | null;
|
3381
3381
|
}, {
|
3382
3382
|
id: string;
|
3383
3383
|
name: string;
|
3384
|
-
createdAt:
|
3385
|
-
updatedAt:
|
3386
|
-
deletedAt:
|
3384
|
+
createdAt: string;
|
3385
|
+
updatedAt: string;
|
3386
|
+
deletedAt: string | null;
|
3387
3387
|
}>, "many">;
|
3388
3388
|
company: z.ZodNullable<z.ZodObject<Omit<{
|
3389
3389
|
id: z.ZodString;
|
3390
|
-
createdAt: z.
|
3391
|
-
updatedAt: z.
|
3392
|
-
deletedAt: z.ZodNullable<z.
|
3390
|
+
createdAt: z.ZodString;
|
3391
|
+
updatedAt: z.ZodString;
|
3392
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3393
3393
|
name: z.ZodOptional<z.ZodString>;
|
3394
3394
|
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3395
3395
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3396
3396
|
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3397
3397
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3398
3398
|
id: z.ZodString;
|
3399
|
-
createdAt: z.
|
3400
|
-
updatedAt: z.
|
3401
|
-
deletedAt: z.ZodNullable<z.
|
3399
|
+
createdAt: z.ZodString;
|
3400
|
+
updatedAt: z.ZodString;
|
3401
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3402
3402
|
textValue: z.ZodNullable<z.ZodString>;
|
3403
3403
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
3404
3404
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
3405
3405
|
dateValue: z.ZodNullable<z.ZodDate>;
|
3406
3406
|
attribute: z.ZodObject<Omit<{
|
3407
3407
|
id: z.ZodString;
|
3408
|
-
createdAt: z.
|
3409
|
-
updatedAt: z.
|
3410
|
-
deletedAt: z.ZodNullable<z.
|
3408
|
+
createdAt: z.ZodString;
|
3409
|
+
updatedAt: z.ZodString;
|
3410
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3411
3411
|
systemName: z.ZodString;
|
3412
3412
|
displayName: z.ZodString;
|
3413
3413
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -3437,23 +3437,23 @@ export declare const ContactContractValidationSchema: {
|
|
3437
3437
|
}>, "many">;
|
3438
3438
|
group: z.ZodObject<{
|
3439
3439
|
id: z.ZodString;
|
3440
|
-
createdAt: z.
|
3441
|
-
updatedAt: z.
|
3442
|
-
deletedAt: z.ZodNullable<z.
|
3440
|
+
createdAt: z.ZodString;
|
3441
|
+
updatedAt: z.ZodString;
|
3442
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3443
3443
|
systemName: z.ZodString;
|
3444
3444
|
displayName: z.ZodString;
|
3445
3445
|
}, "strip", z.ZodTypeAny, {
|
3446
3446
|
id: string;
|
3447
|
-
createdAt:
|
3448
|
-
updatedAt:
|
3449
|
-
deletedAt:
|
3447
|
+
createdAt: string;
|
3448
|
+
updatedAt: string;
|
3449
|
+
deletedAt: string | null;
|
3450
3450
|
systemName: string;
|
3451
3451
|
displayName: string;
|
3452
3452
|
}, {
|
3453
3453
|
id: string;
|
3454
|
-
createdAt:
|
3455
|
-
updatedAt:
|
3456
|
-
deletedAt:
|
3454
|
+
createdAt: string;
|
3455
|
+
updatedAt: string;
|
3456
|
+
deletedAt: string | null;
|
3457
3457
|
systemName: string;
|
3458
3458
|
displayName: string;
|
3459
3459
|
}>;
|
@@ -3461,9 +3461,9 @@ export declare const ContactContractValidationSchema: {
|
|
3461
3461
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3462
3462
|
id: string;
|
3463
3463
|
position: number;
|
3464
|
-
createdAt:
|
3465
|
-
updatedAt:
|
3466
|
-
deletedAt:
|
3464
|
+
createdAt: string;
|
3465
|
+
updatedAt: string;
|
3466
|
+
deletedAt: string | null;
|
3467
3467
|
isDefault: boolean;
|
3468
3468
|
systemName: string;
|
3469
3469
|
displayName: string;
|
@@ -3474,9 +3474,9 @@ export declare const ContactContractValidationSchema: {
|
|
3474
3474
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3475
3475
|
id: string;
|
3476
3476
|
position: number;
|
3477
|
-
createdAt:
|
3478
|
-
updatedAt:
|
3479
|
-
deletedAt:
|
3477
|
+
createdAt: string;
|
3478
|
+
updatedAt: string;
|
3479
|
+
deletedAt: string | null;
|
3480
3480
|
isDefault: boolean;
|
3481
3481
|
systemName: string;
|
3482
3482
|
displayName: string;
|
@@ -3486,16 +3486,16 @@ export declare const ContactContractValidationSchema: {
|
|
3486
3486
|
}>;
|
3487
3487
|
}, "strip", z.ZodTypeAny, {
|
3488
3488
|
id: string;
|
3489
|
-
createdAt:
|
3490
|
-
updatedAt:
|
3491
|
-
deletedAt:
|
3489
|
+
createdAt: string;
|
3490
|
+
updatedAt: string;
|
3491
|
+
deletedAt: string | null;
|
3492
3492
|
attribute: {
|
3493
3493
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3494
3494
|
id: string;
|
3495
3495
|
position: number;
|
3496
|
-
createdAt:
|
3497
|
-
updatedAt:
|
3498
|
-
deletedAt:
|
3496
|
+
createdAt: string;
|
3497
|
+
updatedAt: string;
|
3498
|
+
deletedAt: string | null;
|
3499
3499
|
isDefault: boolean;
|
3500
3500
|
systemName: string;
|
3501
3501
|
displayName: string;
|
@@ -3509,16 +3509,16 @@ export declare const ContactContractValidationSchema: {
|
|
3509
3509
|
dateValue: Date | null;
|
3510
3510
|
}, {
|
3511
3511
|
id: string;
|
3512
|
-
createdAt:
|
3513
|
-
updatedAt:
|
3514
|
-
deletedAt:
|
3512
|
+
createdAt: string;
|
3513
|
+
updatedAt: string;
|
3514
|
+
deletedAt: string | null;
|
3515
3515
|
attribute: {
|
3516
3516
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3517
3517
|
id: string;
|
3518
3518
|
position: number;
|
3519
|
-
createdAt:
|
3520
|
-
updatedAt:
|
3521
|
-
deletedAt:
|
3519
|
+
createdAt: string;
|
3520
|
+
updatedAt: string;
|
3521
|
+
deletedAt: string | null;
|
3522
3522
|
isDefault: boolean;
|
3523
3523
|
systemName: string;
|
3524
3524
|
displayName: string;
|
@@ -3533,18 +3533,18 @@ export declare const ContactContractValidationSchema: {
|
|
3533
3533
|
}>, "many">>;
|
3534
3534
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
3535
3535
|
id: string;
|
3536
|
-
createdAt:
|
3537
|
-
updatedAt:
|
3538
|
-
deletedAt:
|
3536
|
+
createdAt: string;
|
3537
|
+
updatedAt: string;
|
3538
|
+
deletedAt: string | null;
|
3539
3539
|
address?: string | null | undefined;
|
3540
3540
|
name?: string | undefined;
|
3541
3541
|
phone?: string | null | undefined;
|
3542
3542
|
industry?: string | null | undefined;
|
3543
3543
|
}, {
|
3544
3544
|
id: string;
|
3545
|
-
createdAt:
|
3546
|
-
updatedAt:
|
3547
|
-
deletedAt:
|
3545
|
+
createdAt: string;
|
3546
|
+
updatedAt: string;
|
3547
|
+
deletedAt: string | null;
|
3548
3548
|
address?: string | null | undefined;
|
3549
3549
|
name?: string | undefined;
|
3550
3550
|
phone?: string | null | undefined;
|
@@ -3561,9 +3561,9 @@ export declare const ContactContractValidationSchema: {
|
|
3561
3561
|
dateValue: z.ZodNullable<z.ZodDate>;
|
3562
3562
|
attribute: z.ZodObject<Omit<{
|
3563
3563
|
id: z.ZodString;
|
3564
|
-
createdAt: z.
|
3565
|
-
updatedAt: z.
|
3566
|
-
deletedAt: z.ZodNullable<z.
|
3564
|
+
createdAt: z.ZodString;
|
3565
|
+
updatedAt: z.ZodString;
|
3566
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3567
3567
|
systemName: z.ZodString;
|
3568
3568
|
displayName: z.ZodString;
|
3569
3569
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -3593,23 +3593,23 @@ export declare const ContactContractValidationSchema: {
|
|
3593
3593
|
}>, "many">;
|
3594
3594
|
group: z.ZodObject<{
|
3595
3595
|
id: z.ZodString;
|
3596
|
-
createdAt: z.
|
3597
|
-
updatedAt: z.
|
3598
|
-
deletedAt: z.ZodNullable<z.
|
3596
|
+
createdAt: z.ZodString;
|
3597
|
+
updatedAt: z.ZodString;
|
3598
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3599
3599
|
systemName: z.ZodString;
|
3600
3600
|
displayName: z.ZodString;
|
3601
3601
|
}, "strip", z.ZodTypeAny, {
|
3602
3602
|
id: string;
|
3603
|
-
createdAt:
|
3604
|
-
updatedAt:
|
3605
|
-
deletedAt:
|
3603
|
+
createdAt: string;
|
3604
|
+
updatedAt: string;
|
3605
|
+
deletedAt: string | null;
|
3606
3606
|
systemName: string;
|
3607
3607
|
displayName: string;
|
3608
3608
|
}, {
|
3609
3609
|
id: string;
|
3610
|
-
createdAt:
|
3611
|
-
updatedAt:
|
3612
|
-
deletedAt:
|
3610
|
+
createdAt: string;
|
3611
|
+
updatedAt: string;
|
3612
|
+
deletedAt: string | null;
|
3613
3613
|
systemName: string;
|
3614
3614
|
displayName: string;
|
3615
3615
|
}>;
|
@@ -3617,9 +3617,9 @@ export declare const ContactContractValidationSchema: {
|
|
3617
3617
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3618
3618
|
id: string;
|
3619
3619
|
position: number;
|
3620
|
-
createdAt:
|
3621
|
-
updatedAt:
|
3622
|
-
deletedAt:
|
3620
|
+
createdAt: string;
|
3621
|
+
updatedAt: string;
|
3622
|
+
deletedAt: string | null;
|
3623
3623
|
isDefault: boolean;
|
3624
3624
|
systemName: string;
|
3625
3625
|
displayName: string;
|
@@ -3630,9 +3630,9 @@ export declare const ContactContractValidationSchema: {
|
|
3630
3630
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3631
3631
|
id: string;
|
3632
3632
|
position: number;
|
3633
|
-
createdAt:
|
3634
|
-
updatedAt:
|
3635
|
-
deletedAt:
|
3633
|
+
createdAt: string;
|
3634
|
+
updatedAt: string;
|
3635
|
+
deletedAt: string | null;
|
3636
3636
|
isDefault: boolean;
|
3637
3637
|
systemName: string;
|
3638
3638
|
displayName: string;
|
@@ -3642,33 +3642,33 @@ export declare const ContactContractValidationSchema: {
|
|
3642
3642
|
}>;
|
3643
3643
|
uploads: z.ZodArray<z.ZodObject<{
|
3644
3644
|
id: z.ZodString;
|
3645
|
-
createdAt: z.
|
3646
|
-
updatedAt: z.
|
3647
|
-
deletedAt: z.ZodNullable<z.
|
3645
|
+
createdAt: z.ZodString;
|
3646
|
+
updatedAt: z.ZodString;
|
3647
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3648
3648
|
customFieldId: z.ZodString;
|
3649
3649
|
upload: z.ZodObject<{
|
3650
3650
|
id: z.ZodString;
|
3651
|
-
createdAt: z.
|
3652
|
-
updatedAt: z.
|
3653
|
-
deletedAt: z.ZodNullable<z.
|
3651
|
+
createdAt: z.ZodString;
|
3652
|
+
updatedAt: z.ZodString;
|
3653
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3654
3654
|
bucketName: z.ZodString;
|
3655
3655
|
fileName: z.ZodString;
|
3656
3656
|
fileSize: z.ZodNumber;
|
3657
3657
|
fileKey: z.ZodString;
|
3658
3658
|
}, "strip", z.ZodTypeAny, {
|
3659
3659
|
id: string;
|
3660
|
-
createdAt:
|
3661
|
-
updatedAt:
|
3662
|
-
deletedAt:
|
3660
|
+
createdAt: string;
|
3661
|
+
updatedAt: string;
|
3662
|
+
deletedAt: string | null;
|
3663
3663
|
fileName: string;
|
3664
3664
|
fileKey: string;
|
3665
3665
|
bucketName: string;
|
3666
3666
|
fileSize: number;
|
3667
3667
|
}, {
|
3668
3668
|
id: string;
|
3669
|
-
createdAt:
|
3670
|
-
updatedAt:
|
3671
|
-
deletedAt:
|
3669
|
+
createdAt: string;
|
3670
|
+
updatedAt: string;
|
3671
|
+
deletedAt: string | null;
|
3672
3672
|
fileName: string;
|
3673
3673
|
fileKey: string;
|
3674
3674
|
bucketName: string;
|
@@ -3676,15 +3676,15 @@ export declare const ContactContractValidationSchema: {
|
|
3676
3676
|
}>;
|
3677
3677
|
}, "strip", z.ZodTypeAny, {
|
3678
3678
|
id: string;
|
3679
|
-
createdAt:
|
3680
|
-
updatedAt:
|
3681
|
-
deletedAt:
|
3679
|
+
createdAt: string;
|
3680
|
+
updatedAt: string;
|
3681
|
+
deletedAt: string | null;
|
3682
3682
|
customFieldId: string;
|
3683
3683
|
upload: {
|
3684
3684
|
id: string;
|
3685
|
-
createdAt:
|
3686
|
-
updatedAt:
|
3687
|
-
deletedAt:
|
3685
|
+
createdAt: string;
|
3686
|
+
updatedAt: string;
|
3687
|
+
deletedAt: string | null;
|
3688
3688
|
fileName: string;
|
3689
3689
|
fileKey: string;
|
3690
3690
|
bucketName: string;
|
@@ -3692,15 +3692,15 @@ export declare const ContactContractValidationSchema: {
|
|
3692
3692
|
};
|
3693
3693
|
}, {
|
3694
3694
|
id: string;
|
3695
|
-
createdAt:
|
3696
|
-
updatedAt:
|
3697
|
-
deletedAt:
|
3695
|
+
createdAt: string;
|
3696
|
+
updatedAt: string;
|
3697
|
+
deletedAt: string | null;
|
3698
3698
|
customFieldId: string;
|
3699
3699
|
upload: {
|
3700
3700
|
id: string;
|
3701
|
-
createdAt:
|
3702
|
-
updatedAt:
|
3703
|
-
deletedAt:
|
3701
|
+
createdAt: string;
|
3702
|
+
updatedAt: string;
|
3703
|
+
deletedAt: string | null;
|
3704
3704
|
fileName: string;
|
3705
3705
|
fileKey: string;
|
3706
3706
|
bucketName: string;
|
@@ -3716,9 +3716,9 @@ export declare const ContactContractValidationSchema: {
|
|
3716
3716
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3717
3717
|
id: string;
|
3718
3718
|
position: number;
|
3719
|
-
createdAt:
|
3720
|
-
updatedAt:
|
3721
|
-
deletedAt:
|
3719
|
+
createdAt: string;
|
3720
|
+
updatedAt: string;
|
3721
|
+
deletedAt: string | null;
|
3722
3722
|
isDefault: boolean;
|
3723
3723
|
systemName: string;
|
3724
3724
|
displayName: string;
|
@@ -3732,15 +3732,15 @@ export declare const ContactContractValidationSchema: {
|
|
3732
3732
|
dateValue: Date | null;
|
3733
3733
|
uploads: {
|
3734
3734
|
id: string;
|
3735
|
-
createdAt:
|
3736
|
-
updatedAt:
|
3737
|
-
deletedAt:
|
3735
|
+
createdAt: string;
|
3736
|
+
updatedAt: string;
|
3737
|
+
deletedAt: string | null;
|
3738
3738
|
customFieldId: string;
|
3739
3739
|
upload: {
|
3740
3740
|
id: string;
|
3741
|
-
createdAt:
|
3742
|
-
updatedAt:
|
3743
|
-
deletedAt:
|
3741
|
+
createdAt: string;
|
3742
|
+
updatedAt: string;
|
3743
|
+
deletedAt: string | null;
|
3744
3744
|
fileName: string;
|
3745
3745
|
fileKey: string;
|
3746
3746
|
bucketName: string;
|
@@ -3756,9 +3756,9 @@ export declare const ContactContractValidationSchema: {
|
|
3756
3756
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3757
3757
|
id: string;
|
3758
3758
|
position: number;
|
3759
|
-
createdAt:
|
3760
|
-
updatedAt:
|
3761
|
-
deletedAt:
|
3759
|
+
createdAt: string;
|
3760
|
+
updatedAt: string;
|
3761
|
+
deletedAt: string | null;
|
3762
3762
|
isDefault: boolean;
|
3763
3763
|
systemName: string;
|
3764
3764
|
displayName: string;
|
@@ -3771,16 +3771,16 @@ export declare const ContactContractValidationSchema: {
|
|
3771
3771
|
numberValue: number | null;
|
3772
3772
|
dateValue: Date | null;
|
3773
3773
|
uploads: {
|
3774
|
-
id: string;
|
3775
|
-
createdAt:
|
3776
|
-
updatedAt:
|
3777
|
-
deletedAt:
|
3774
|
+
id: string;
|
3775
|
+
createdAt: string;
|
3776
|
+
updatedAt: string;
|
3777
|
+
deletedAt: string | null;
|
3778
3778
|
customFieldId: string;
|
3779
3779
|
upload: {
|
3780
3780
|
id: string;
|
3781
|
-
createdAt:
|
3782
|
-
updatedAt:
|
3783
|
-
deletedAt:
|
3781
|
+
createdAt: string;
|
3782
|
+
updatedAt: string;
|
3783
|
+
deletedAt: string | null;
|
3784
3784
|
fileName: string;
|
3785
3785
|
fileKey: string;
|
3786
3786
|
bucketName: string;
|
@@ -3909,9 +3909,9 @@ export declare const ContactContractValidationSchema: {
|
|
3909
3909
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3910
3910
|
id: string;
|
3911
3911
|
position: number;
|
3912
|
-
createdAt:
|
3913
|
-
updatedAt:
|
3914
|
-
deletedAt:
|
3912
|
+
createdAt: string;
|
3913
|
+
updatedAt: string;
|
3914
|
+
deletedAt: string | null;
|
3915
3915
|
isDefault: boolean;
|
3916
3916
|
systemName: string;
|
3917
3917
|
displayName: string;
|
@@ -3925,15 +3925,15 @@ export declare const ContactContractValidationSchema: {
|
|
3925
3925
|
dateValue: Date | null;
|
3926
3926
|
uploads: {
|
3927
3927
|
id: string;
|
3928
|
-
createdAt:
|
3929
|
-
updatedAt:
|
3930
|
-
deletedAt:
|
3928
|
+
createdAt: string;
|
3929
|
+
updatedAt: string;
|
3930
|
+
deletedAt: string | null;
|
3931
3931
|
customFieldId: string;
|
3932
3932
|
upload: {
|
3933
3933
|
id: string;
|
3934
|
-
createdAt:
|
3935
|
-
updatedAt:
|
3936
|
-
deletedAt:
|
3934
|
+
createdAt: string;
|
3935
|
+
updatedAt: string;
|
3936
|
+
deletedAt: string | null;
|
3937
3937
|
fileName: string;
|
3938
3938
|
fileKey: string;
|
3939
3939
|
bucketName: string;
|
@@ -3947,15 +3947,15 @@ export declare const ContactContractValidationSchema: {
|
|
3947
3947
|
tags: {
|
3948
3948
|
id: string;
|
3949
3949
|
name: string;
|
3950
|
-
createdAt:
|
3951
|
-
updatedAt:
|
3952
|
-
deletedAt:
|
3950
|
+
createdAt: string;
|
3951
|
+
updatedAt: string;
|
3952
|
+
deletedAt: string | null;
|
3953
3953
|
}[];
|
3954
3954
|
company: {
|
3955
3955
|
id: string;
|
3956
|
-
createdAt:
|
3957
|
-
updatedAt:
|
3958
|
-
deletedAt:
|
3956
|
+
createdAt: string;
|
3957
|
+
updatedAt: string;
|
3958
|
+
deletedAt: string | null;
|
3959
3959
|
address?: string | null | undefined;
|
3960
3960
|
name?: string | undefined;
|
3961
3961
|
phone?: string | null | undefined;
|
@@ -4010,9 +4010,9 @@ export declare const ContactContractValidationSchema: {
|
|
4010
4010
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4011
4011
|
id: string;
|
4012
4012
|
position: number;
|
4013
|
-
createdAt:
|
4014
|
-
updatedAt:
|
4015
|
-
deletedAt:
|
4013
|
+
createdAt: string;
|
4014
|
+
updatedAt: string;
|
4015
|
+
deletedAt: string | null;
|
4016
4016
|
isDefault: boolean;
|
4017
4017
|
systemName: string;
|
4018
4018
|
displayName: string;
|
@@ -4026,15 +4026,15 @@ export declare const ContactContractValidationSchema: {
|
|
4026
4026
|
dateValue: Date | null;
|
4027
4027
|
uploads: {
|
4028
4028
|
id: string;
|
4029
|
-
createdAt:
|
4030
|
-
updatedAt:
|
4031
|
-
deletedAt:
|
4029
|
+
createdAt: string;
|
4030
|
+
updatedAt: string;
|
4031
|
+
deletedAt: string | null;
|
4032
4032
|
customFieldId: string;
|
4033
4033
|
upload: {
|
4034
4034
|
id: string;
|
4035
|
-
createdAt:
|
4036
|
-
updatedAt:
|
4037
|
-
deletedAt:
|
4035
|
+
createdAt: string;
|
4036
|
+
updatedAt: string;
|
4037
|
+
deletedAt: string | null;
|
4038
4038
|
fileName: string;
|
4039
4039
|
fileKey: string;
|
4040
4040
|
bucketName: string;
|
@@ -4048,15 +4048,15 @@ export declare const ContactContractValidationSchema: {
|
|
4048
4048
|
tags: {
|
4049
4049
|
id: string;
|
4050
4050
|
name: string;
|
4051
|
-
createdAt:
|
4052
|
-
updatedAt:
|
4053
|
-
deletedAt:
|
4051
|
+
createdAt: string;
|
4052
|
+
updatedAt: string;
|
4053
|
+
deletedAt: string | null;
|
4054
4054
|
}[];
|
4055
4055
|
company: {
|
4056
4056
|
id: string;
|
4057
|
-
createdAt:
|
4058
|
-
updatedAt:
|
4059
|
-
deletedAt:
|
4057
|
+
createdAt: string;
|
4058
|
+
updatedAt: string;
|
4059
|
+
deletedAt: string | null;
|
4060
4060
|
address?: string | null | undefined;
|
4061
4061
|
name?: string | undefined;
|
4062
4062
|
phone?: string | null | undefined;
|
@@ -4156,46 +4156,46 @@ export declare const ContactContractValidationSchema: {
|
|
4156
4156
|
socialProfileUrl: z.ZodNullable<z.ZodString>;
|
4157
4157
|
tags: z.ZodArray<z.ZodObject<{
|
4158
4158
|
id: z.ZodString;
|
4159
|
-
createdAt: z.
|
4160
|
-
updatedAt: z.
|
4161
|
-
deletedAt: z.ZodNullable<z.
|
4159
|
+
createdAt: z.ZodString;
|
4160
|
+
updatedAt: z.ZodString;
|
4161
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4162
4162
|
name: z.ZodString;
|
4163
4163
|
}, "strip", z.ZodTypeAny, {
|
4164
4164
|
id: string;
|
4165
4165
|
name: string;
|
4166
|
-
createdAt:
|
4167
|
-
updatedAt:
|
4168
|
-
deletedAt:
|
4166
|
+
createdAt: string;
|
4167
|
+
updatedAt: string;
|
4168
|
+
deletedAt: string | null;
|
4169
4169
|
}, {
|
4170
4170
|
id: string;
|
4171
4171
|
name: string;
|
4172
|
-
createdAt:
|
4173
|
-
updatedAt:
|
4174
|
-
deletedAt:
|
4172
|
+
createdAt: string;
|
4173
|
+
updatedAt: string;
|
4174
|
+
deletedAt: string | null;
|
4175
4175
|
}>, "many">;
|
4176
4176
|
company: z.ZodNullable<z.ZodObject<Omit<{
|
4177
4177
|
id: z.ZodString;
|
4178
|
-
createdAt: z.
|
4179
|
-
updatedAt: z.
|
4180
|
-
deletedAt: z.ZodNullable<z.
|
4178
|
+
createdAt: z.ZodString;
|
4179
|
+
updatedAt: z.ZodString;
|
4180
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4181
4181
|
name: z.ZodOptional<z.ZodString>;
|
4182
4182
|
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4183
4183
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4184
4184
|
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4185
4185
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
4186
4186
|
id: z.ZodString;
|
4187
|
-
createdAt: z.
|
4188
|
-
updatedAt: z.
|
4189
|
-
deletedAt: z.ZodNullable<z.
|
4187
|
+
createdAt: z.ZodString;
|
4188
|
+
updatedAt: z.ZodString;
|
4189
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4190
4190
|
textValue: z.ZodNullable<z.ZodString>;
|
4191
4191
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
4192
4192
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
4193
4193
|
dateValue: z.ZodNullable<z.ZodDate>;
|
4194
4194
|
attribute: z.ZodObject<Omit<{
|
4195
4195
|
id: z.ZodString;
|
4196
|
-
createdAt: z.
|
4197
|
-
updatedAt: z.
|
4198
|
-
deletedAt: z.ZodNullable<z.
|
4196
|
+
createdAt: z.ZodString;
|
4197
|
+
updatedAt: z.ZodString;
|
4198
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4199
4199
|
systemName: z.ZodString;
|
4200
4200
|
displayName: z.ZodString;
|
4201
4201
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -4225,23 +4225,23 @@ export declare const ContactContractValidationSchema: {
|
|
4225
4225
|
}>, "many">;
|
4226
4226
|
group: z.ZodObject<{
|
4227
4227
|
id: z.ZodString;
|
4228
|
-
createdAt: z.
|
4229
|
-
updatedAt: z.
|
4230
|
-
deletedAt: z.ZodNullable<z.
|
4228
|
+
createdAt: z.ZodString;
|
4229
|
+
updatedAt: z.ZodString;
|
4230
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4231
4231
|
systemName: z.ZodString;
|
4232
4232
|
displayName: z.ZodString;
|
4233
4233
|
}, "strip", z.ZodTypeAny, {
|
4234
4234
|
id: string;
|
4235
|
-
createdAt:
|
4236
|
-
updatedAt:
|
4237
|
-
deletedAt:
|
4235
|
+
createdAt: string;
|
4236
|
+
updatedAt: string;
|
4237
|
+
deletedAt: string | null;
|
4238
4238
|
systemName: string;
|
4239
4239
|
displayName: string;
|
4240
4240
|
}, {
|
4241
4241
|
id: string;
|
4242
|
-
createdAt:
|
4243
|
-
updatedAt:
|
4244
|
-
deletedAt:
|
4242
|
+
createdAt: string;
|
4243
|
+
updatedAt: string;
|
4244
|
+
deletedAt: string | null;
|
4245
4245
|
systemName: string;
|
4246
4246
|
displayName: string;
|
4247
4247
|
}>;
|
@@ -4249,9 +4249,9 @@ export declare const ContactContractValidationSchema: {
|
|
4249
4249
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4250
4250
|
id: string;
|
4251
4251
|
position: number;
|
4252
|
-
createdAt:
|
4253
|
-
updatedAt:
|
4254
|
-
deletedAt:
|
4252
|
+
createdAt: string;
|
4253
|
+
updatedAt: string;
|
4254
|
+
deletedAt: string | null;
|
4255
4255
|
isDefault: boolean;
|
4256
4256
|
systemName: string;
|
4257
4257
|
displayName: string;
|
@@ -4262,9 +4262,9 @@ export declare const ContactContractValidationSchema: {
|
|
4262
4262
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4263
4263
|
id: string;
|
4264
4264
|
position: number;
|
4265
|
-
createdAt:
|
4266
|
-
updatedAt:
|
4267
|
-
deletedAt:
|
4265
|
+
createdAt: string;
|
4266
|
+
updatedAt: string;
|
4267
|
+
deletedAt: string | null;
|
4268
4268
|
isDefault: boolean;
|
4269
4269
|
systemName: string;
|
4270
4270
|
displayName: string;
|
@@ -4274,16 +4274,16 @@ export declare const ContactContractValidationSchema: {
|
|
4274
4274
|
}>;
|
4275
4275
|
}, "strip", z.ZodTypeAny, {
|
4276
4276
|
id: string;
|
4277
|
-
createdAt:
|
4278
|
-
updatedAt:
|
4279
|
-
deletedAt:
|
4277
|
+
createdAt: string;
|
4278
|
+
updatedAt: string;
|
4279
|
+
deletedAt: string | null;
|
4280
4280
|
attribute: {
|
4281
4281
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4282
4282
|
id: string;
|
4283
4283
|
position: number;
|
4284
|
-
createdAt:
|
4285
|
-
updatedAt:
|
4286
|
-
deletedAt:
|
4284
|
+
createdAt: string;
|
4285
|
+
updatedAt: string;
|
4286
|
+
deletedAt: string | null;
|
4287
4287
|
isDefault: boolean;
|
4288
4288
|
systemName: string;
|
4289
4289
|
displayName: string;
|
@@ -4297,16 +4297,16 @@ export declare const ContactContractValidationSchema: {
|
|
4297
4297
|
dateValue: Date | null;
|
4298
4298
|
}, {
|
4299
4299
|
id: string;
|
4300
|
-
createdAt:
|
4301
|
-
updatedAt:
|
4302
|
-
deletedAt:
|
4300
|
+
createdAt: string;
|
4301
|
+
updatedAt: string;
|
4302
|
+
deletedAt: string | null;
|
4303
4303
|
attribute: {
|
4304
4304
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4305
4305
|
id: string;
|
4306
4306
|
position: number;
|
4307
|
-
createdAt:
|
4308
|
-
updatedAt:
|
4309
|
-
deletedAt:
|
4307
|
+
createdAt: string;
|
4308
|
+
updatedAt: string;
|
4309
|
+
deletedAt: string | null;
|
4310
4310
|
isDefault: boolean;
|
4311
4311
|
systemName: string;
|
4312
4312
|
displayName: string;
|
@@ -4321,18 +4321,18 @@ export declare const ContactContractValidationSchema: {
|
|
4321
4321
|
}>, "many">>;
|
4322
4322
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
4323
4323
|
id: string;
|
4324
|
-
createdAt:
|
4325
|
-
updatedAt:
|
4326
|
-
deletedAt:
|
4324
|
+
createdAt: string;
|
4325
|
+
updatedAt: string;
|
4326
|
+
deletedAt: string | null;
|
4327
4327
|
address?: string | null | undefined;
|
4328
4328
|
name?: string | undefined;
|
4329
4329
|
phone?: string | null | undefined;
|
4330
4330
|
industry?: string | null | undefined;
|
4331
4331
|
}, {
|
4332
4332
|
id: string;
|
4333
|
-
createdAt:
|
4334
|
-
updatedAt:
|
4335
|
-
deletedAt:
|
4333
|
+
createdAt: string;
|
4334
|
+
updatedAt: string;
|
4335
|
+
deletedAt: string | null;
|
4336
4336
|
address?: string | null | undefined;
|
4337
4337
|
name?: string | undefined;
|
4338
4338
|
phone?: string | null | undefined;
|
@@ -4349,9 +4349,9 @@ export declare const ContactContractValidationSchema: {
|
|
4349
4349
|
dateValue: z.ZodNullable<z.ZodDate>;
|
4350
4350
|
attribute: z.ZodObject<Omit<{
|
4351
4351
|
id: z.ZodString;
|
4352
|
-
createdAt: z.
|
4353
|
-
updatedAt: z.
|
4354
|
-
deletedAt: z.ZodNullable<z.
|
4352
|
+
createdAt: z.ZodString;
|
4353
|
+
updatedAt: z.ZodString;
|
4354
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4355
4355
|
systemName: z.ZodString;
|
4356
4356
|
displayName: z.ZodString;
|
4357
4357
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -4381,23 +4381,23 @@ export declare const ContactContractValidationSchema: {
|
|
4381
4381
|
}>, "many">;
|
4382
4382
|
group: z.ZodObject<{
|
4383
4383
|
id: z.ZodString;
|
4384
|
-
createdAt: z.
|
4385
|
-
updatedAt: z.
|
4386
|
-
deletedAt: z.ZodNullable<z.
|
4384
|
+
createdAt: z.ZodString;
|
4385
|
+
updatedAt: z.ZodString;
|
4386
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4387
4387
|
systemName: z.ZodString;
|
4388
4388
|
displayName: z.ZodString;
|
4389
4389
|
}, "strip", z.ZodTypeAny, {
|
4390
4390
|
id: string;
|
4391
|
-
createdAt:
|
4392
|
-
updatedAt:
|
4393
|
-
deletedAt:
|
4391
|
+
createdAt: string;
|
4392
|
+
updatedAt: string;
|
4393
|
+
deletedAt: string | null;
|
4394
4394
|
systemName: string;
|
4395
4395
|
displayName: string;
|
4396
4396
|
}, {
|
4397
4397
|
id: string;
|
4398
|
-
createdAt:
|
4399
|
-
updatedAt:
|
4400
|
-
deletedAt:
|
4398
|
+
createdAt: string;
|
4399
|
+
updatedAt: string;
|
4400
|
+
deletedAt: string | null;
|
4401
4401
|
systemName: string;
|
4402
4402
|
displayName: string;
|
4403
4403
|
}>;
|
@@ -4405,9 +4405,9 @@ export declare const ContactContractValidationSchema: {
|
|
4405
4405
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4406
4406
|
id: string;
|
4407
4407
|
position: number;
|
4408
|
-
createdAt:
|
4409
|
-
updatedAt:
|
4410
|
-
deletedAt:
|
4408
|
+
createdAt: string;
|
4409
|
+
updatedAt: string;
|
4410
|
+
deletedAt: string | null;
|
4411
4411
|
isDefault: boolean;
|
4412
4412
|
systemName: string;
|
4413
4413
|
displayName: string;
|
@@ -4418,9 +4418,9 @@ export declare const ContactContractValidationSchema: {
|
|
4418
4418
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4419
4419
|
id: string;
|
4420
4420
|
position: number;
|
4421
|
-
createdAt:
|
4422
|
-
updatedAt:
|
4423
|
-
deletedAt:
|
4421
|
+
createdAt: string;
|
4422
|
+
updatedAt: string;
|
4423
|
+
deletedAt: string | null;
|
4424
4424
|
isDefault: boolean;
|
4425
4425
|
systemName: string;
|
4426
4426
|
displayName: string;
|
@@ -4430,33 +4430,33 @@ export declare const ContactContractValidationSchema: {
|
|
4430
4430
|
}>;
|
4431
4431
|
uploads: z.ZodArray<z.ZodObject<{
|
4432
4432
|
id: z.ZodString;
|
4433
|
-
createdAt: z.
|
4434
|
-
updatedAt: z.
|
4435
|
-
deletedAt: z.ZodNullable<z.
|
4433
|
+
createdAt: z.ZodString;
|
4434
|
+
updatedAt: z.ZodString;
|
4435
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4436
4436
|
customFieldId: z.ZodString;
|
4437
4437
|
upload: z.ZodObject<{
|
4438
4438
|
id: z.ZodString;
|
4439
|
-
createdAt: z.
|
4440
|
-
updatedAt: z.
|
4441
|
-
deletedAt: z.ZodNullable<z.
|
4439
|
+
createdAt: z.ZodString;
|
4440
|
+
updatedAt: z.ZodString;
|
4441
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4442
4442
|
bucketName: z.ZodString;
|
4443
4443
|
fileName: z.ZodString;
|
4444
4444
|
fileSize: z.ZodNumber;
|
4445
4445
|
fileKey: z.ZodString;
|
4446
4446
|
}, "strip", z.ZodTypeAny, {
|
4447
4447
|
id: string;
|
4448
|
-
createdAt:
|
4449
|
-
updatedAt:
|
4450
|
-
deletedAt:
|
4448
|
+
createdAt: string;
|
4449
|
+
updatedAt: string;
|
4450
|
+
deletedAt: string | null;
|
4451
4451
|
fileName: string;
|
4452
4452
|
fileKey: string;
|
4453
4453
|
bucketName: string;
|
4454
4454
|
fileSize: number;
|
4455
4455
|
}, {
|
4456
4456
|
id: string;
|
4457
|
-
createdAt:
|
4458
|
-
updatedAt:
|
4459
|
-
deletedAt:
|
4457
|
+
createdAt: string;
|
4458
|
+
updatedAt: string;
|
4459
|
+
deletedAt: string | null;
|
4460
4460
|
fileName: string;
|
4461
4461
|
fileKey: string;
|
4462
4462
|
bucketName: string;
|
@@ -4464,15 +4464,15 @@ export declare const ContactContractValidationSchema: {
|
|
4464
4464
|
}>;
|
4465
4465
|
}, "strip", z.ZodTypeAny, {
|
4466
4466
|
id: string;
|
4467
|
-
createdAt:
|
4468
|
-
updatedAt:
|
4469
|
-
deletedAt:
|
4467
|
+
createdAt: string;
|
4468
|
+
updatedAt: string;
|
4469
|
+
deletedAt: string | null;
|
4470
4470
|
customFieldId: string;
|
4471
4471
|
upload: {
|
4472
4472
|
id: string;
|
4473
|
-
createdAt:
|
4474
|
-
updatedAt:
|
4475
|
-
deletedAt:
|
4473
|
+
createdAt: string;
|
4474
|
+
updatedAt: string;
|
4475
|
+
deletedAt: string | null;
|
4476
4476
|
fileName: string;
|
4477
4477
|
fileKey: string;
|
4478
4478
|
bucketName: string;
|
@@ -4480,15 +4480,15 @@ export declare const ContactContractValidationSchema: {
|
|
4480
4480
|
};
|
4481
4481
|
}, {
|
4482
4482
|
id: string;
|
4483
|
-
createdAt:
|
4484
|
-
updatedAt:
|
4485
|
-
deletedAt:
|
4483
|
+
createdAt: string;
|
4484
|
+
updatedAt: string;
|
4485
|
+
deletedAt: string | null;
|
4486
4486
|
customFieldId: string;
|
4487
4487
|
upload: {
|
4488
4488
|
id: string;
|
4489
|
-
createdAt:
|
4490
|
-
updatedAt:
|
4491
|
-
deletedAt:
|
4489
|
+
createdAt: string;
|
4490
|
+
updatedAt: string;
|
4491
|
+
deletedAt: string | null;
|
4492
4492
|
fileName: string;
|
4493
4493
|
fileKey: string;
|
4494
4494
|
bucketName: string;
|
@@ -4504,9 +4504,9 @@ export declare const ContactContractValidationSchema: {
|
|
4504
4504
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4505
4505
|
id: string;
|
4506
4506
|
position: number;
|
4507
|
-
createdAt:
|
4508
|
-
updatedAt:
|
4509
|
-
deletedAt:
|
4507
|
+
createdAt: string;
|
4508
|
+
updatedAt: string;
|
4509
|
+
deletedAt: string | null;
|
4510
4510
|
isDefault: boolean;
|
4511
4511
|
systemName: string;
|
4512
4512
|
displayName: string;
|
@@ -4520,15 +4520,15 @@ export declare const ContactContractValidationSchema: {
|
|
4520
4520
|
dateValue: Date | null;
|
4521
4521
|
uploads: {
|
4522
4522
|
id: string;
|
4523
|
-
createdAt:
|
4524
|
-
updatedAt:
|
4525
|
-
deletedAt:
|
4523
|
+
createdAt: string;
|
4524
|
+
updatedAt: string;
|
4525
|
+
deletedAt: string | null;
|
4526
4526
|
customFieldId: string;
|
4527
4527
|
upload: {
|
4528
4528
|
id: string;
|
4529
|
-
createdAt:
|
4530
|
-
updatedAt:
|
4531
|
-
deletedAt:
|
4529
|
+
createdAt: string;
|
4530
|
+
updatedAt: string;
|
4531
|
+
deletedAt: string | null;
|
4532
4532
|
fileName: string;
|
4533
4533
|
fileKey: string;
|
4534
4534
|
bucketName: string;
|
@@ -4544,9 +4544,9 @@ export declare const ContactContractValidationSchema: {
|
|
4544
4544
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4545
4545
|
id: string;
|
4546
4546
|
position: number;
|
4547
|
-
createdAt:
|
4548
|
-
updatedAt:
|
4549
|
-
deletedAt:
|
4547
|
+
createdAt: string;
|
4548
|
+
updatedAt: string;
|
4549
|
+
deletedAt: string | null;
|
4550
4550
|
isDefault: boolean;
|
4551
4551
|
systemName: string;
|
4552
4552
|
displayName: string;
|
@@ -4560,15 +4560,15 @@ export declare const ContactContractValidationSchema: {
|
|
4560
4560
|
dateValue: Date | null;
|
4561
4561
|
uploads: {
|
4562
4562
|
id: string;
|
4563
|
-
createdAt:
|
4564
|
-
updatedAt:
|
4565
|
-
deletedAt:
|
4563
|
+
createdAt: string;
|
4564
|
+
updatedAt: string;
|
4565
|
+
deletedAt: string | null;
|
4566
4566
|
customFieldId: string;
|
4567
4567
|
upload: {
|
4568
4568
|
id: string;
|
4569
|
-
createdAt:
|
4570
|
-
updatedAt:
|
4571
|
-
deletedAt:
|
4569
|
+
createdAt: string;
|
4570
|
+
updatedAt: string;
|
4571
|
+
deletedAt: string | null;
|
4572
4572
|
fileName: string;
|
4573
4573
|
fileKey: string;
|
4574
4574
|
bucketName: string;
|
@@ -4697,9 +4697,9 @@ export declare const ContactContractValidationSchema: {
|
|
4697
4697
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4698
4698
|
id: string;
|
4699
4699
|
position: number;
|
4700
|
-
createdAt:
|
4701
|
-
updatedAt:
|
4702
|
-
deletedAt:
|
4700
|
+
createdAt: string;
|
4701
|
+
updatedAt: string;
|
4702
|
+
deletedAt: string | null;
|
4703
4703
|
isDefault: boolean;
|
4704
4704
|
systemName: string;
|
4705
4705
|
displayName: string;
|
@@ -4713,15 +4713,15 @@ export declare const ContactContractValidationSchema: {
|
|
4713
4713
|
dateValue: Date | null;
|
4714
4714
|
uploads: {
|
4715
4715
|
id: string;
|
4716
|
-
createdAt:
|
4717
|
-
updatedAt:
|
4718
|
-
deletedAt:
|
4716
|
+
createdAt: string;
|
4717
|
+
updatedAt: string;
|
4718
|
+
deletedAt: string | null;
|
4719
4719
|
customFieldId: string;
|
4720
4720
|
upload: {
|
4721
4721
|
id: string;
|
4722
|
-
createdAt:
|
4723
|
-
updatedAt:
|
4724
|
-
deletedAt:
|
4722
|
+
createdAt: string;
|
4723
|
+
updatedAt: string;
|
4724
|
+
deletedAt: string | null;
|
4725
4725
|
fileName: string;
|
4726
4726
|
fileKey: string;
|
4727
4727
|
bucketName: string;
|
@@ -4735,15 +4735,15 @@ export declare const ContactContractValidationSchema: {
|
|
4735
4735
|
tags: {
|
4736
4736
|
id: string;
|
4737
4737
|
name: string;
|
4738
|
-
createdAt:
|
4739
|
-
updatedAt:
|
4740
|
-
deletedAt:
|
4738
|
+
createdAt: string;
|
4739
|
+
updatedAt: string;
|
4740
|
+
deletedAt: string | null;
|
4741
4741
|
}[];
|
4742
4742
|
company: {
|
4743
4743
|
id: string;
|
4744
|
-
createdAt:
|
4745
|
-
updatedAt:
|
4746
|
-
deletedAt:
|
4744
|
+
createdAt: string;
|
4745
|
+
updatedAt: string;
|
4746
|
+
deletedAt: string | null;
|
4747
4747
|
address?: string | null | undefined;
|
4748
4748
|
name?: string | undefined;
|
4749
4749
|
phone?: string | null | undefined;
|
@@ -4798,9 +4798,9 @@ export declare const ContactContractValidationSchema: {
|
|
4798
4798
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4799
4799
|
id: string;
|
4800
4800
|
position: number;
|
4801
|
-
createdAt:
|
4802
|
-
updatedAt:
|
4803
|
-
deletedAt:
|
4801
|
+
createdAt: string;
|
4802
|
+
updatedAt: string;
|
4803
|
+
deletedAt: string | null;
|
4804
4804
|
isDefault: boolean;
|
4805
4805
|
systemName: string;
|
4806
4806
|
displayName: string;
|
@@ -4814,15 +4814,15 @@ export declare const ContactContractValidationSchema: {
|
|
4814
4814
|
dateValue: Date | null;
|
4815
4815
|
uploads: {
|
4816
4816
|
id: string;
|
4817
|
-
createdAt:
|
4818
|
-
updatedAt:
|
4819
|
-
deletedAt:
|
4817
|
+
createdAt: string;
|
4818
|
+
updatedAt: string;
|
4819
|
+
deletedAt: string | null;
|
4820
4820
|
customFieldId: string;
|
4821
4821
|
upload: {
|
4822
4822
|
id: string;
|
4823
|
-
createdAt:
|
4824
|
-
updatedAt:
|
4825
|
-
deletedAt:
|
4823
|
+
createdAt: string;
|
4824
|
+
updatedAt: string;
|
4825
|
+
deletedAt: string | null;
|
4826
4826
|
fileName: string;
|
4827
4827
|
fileKey: string;
|
4828
4828
|
bucketName: string;
|
@@ -4836,15 +4836,15 @@ export declare const ContactContractValidationSchema: {
|
|
4836
4836
|
tags: {
|
4837
4837
|
id: string;
|
4838
4838
|
name: string;
|
4839
|
-
createdAt:
|
4840
|
-
updatedAt:
|
4841
|
-
deletedAt:
|
4839
|
+
createdAt: string;
|
4840
|
+
updatedAt: string;
|
4841
|
+
deletedAt: string | null;
|
4842
4842
|
}[];
|
4843
4843
|
company: {
|
4844
4844
|
id: string;
|
4845
|
-
createdAt:
|
4846
|
-
updatedAt:
|
4847
|
-
deletedAt:
|
4845
|
+
createdAt: string;
|
4846
|
+
updatedAt: string;
|
4847
|
+
deletedAt: string | null;
|
4848
4848
|
address?: string | null | undefined;
|
4849
4849
|
name?: string | undefined;
|
4850
4850
|
phone?: string | null | undefined;
|
@@ -4942,46 +4942,46 @@ export declare const ContactContractValidationSchema: {
|
|
4942
4942
|
socialProfileUrl: z.ZodNullable<z.ZodString>;
|
4943
4943
|
tags: z.ZodArray<z.ZodObject<{
|
4944
4944
|
id: z.ZodString;
|
4945
|
-
createdAt: z.
|
4946
|
-
updatedAt: z.
|
4947
|
-
deletedAt: z.ZodNullable<z.
|
4945
|
+
createdAt: z.ZodString;
|
4946
|
+
updatedAt: z.ZodString;
|
4947
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4948
4948
|
name: z.ZodString;
|
4949
4949
|
}, "strip", z.ZodTypeAny, {
|
4950
4950
|
id: string;
|
4951
4951
|
name: string;
|
4952
|
-
createdAt:
|
4953
|
-
updatedAt:
|
4954
|
-
deletedAt:
|
4952
|
+
createdAt: string;
|
4953
|
+
updatedAt: string;
|
4954
|
+
deletedAt: string | null;
|
4955
4955
|
}, {
|
4956
4956
|
id: string;
|
4957
4957
|
name: string;
|
4958
|
-
createdAt:
|
4959
|
-
updatedAt:
|
4960
|
-
deletedAt:
|
4958
|
+
createdAt: string;
|
4959
|
+
updatedAt: string;
|
4960
|
+
deletedAt: string | null;
|
4961
4961
|
}>, "many">;
|
4962
4962
|
company: z.ZodNullable<z.ZodObject<Omit<{
|
4963
4963
|
id: z.ZodString;
|
4964
|
-
createdAt: z.
|
4965
|
-
updatedAt: z.
|
4966
|
-
deletedAt: z.ZodNullable<z.
|
4964
|
+
createdAt: z.ZodString;
|
4965
|
+
updatedAt: z.ZodString;
|
4966
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4967
4967
|
name: z.ZodOptional<z.ZodString>;
|
4968
4968
|
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4969
4969
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4970
4970
|
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4971
4971
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
4972
4972
|
id: z.ZodString;
|
4973
|
-
createdAt: z.
|
4974
|
-
updatedAt: z.
|
4975
|
-
deletedAt: z.ZodNullable<z.
|
4973
|
+
createdAt: z.ZodString;
|
4974
|
+
updatedAt: z.ZodString;
|
4975
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4976
4976
|
textValue: z.ZodNullable<z.ZodString>;
|
4977
4977
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
4978
4978
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
4979
4979
|
dateValue: z.ZodNullable<z.ZodDate>;
|
4980
4980
|
attribute: z.ZodObject<Omit<{
|
4981
4981
|
id: z.ZodString;
|
4982
|
-
createdAt: z.
|
4983
|
-
updatedAt: z.
|
4984
|
-
deletedAt: z.ZodNullable<z.
|
4982
|
+
createdAt: z.ZodString;
|
4983
|
+
updatedAt: z.ZodString;
|
4984
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4985
4985
|
systemName: z.ZodString;
|
4986
4986
|
displayName: z.ZodString;
|
4987
4987
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -5011,23 +5011,23 @@ export declare const ContactContractValidationSchema: {
|
|
5011
5011
|
}>, "many">;
|
5012
5012
|
group: z.ZodObject<{
|
5013
5013
|
id: z.ZodString;
|
5014
|
-
createdAt: z.
|
5015
|
-
updatedAt: z.
|
5016
|
-
deletedAt: z.ZodNullable<z.
|
5014
|
+
createdAt: z.ZodString;
|
5015
|
+
updatedAt: z.ZodString;
|
5016
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5017
5017
|
systemName: z.ZodString;
|
5018
5018
|
displayName: z.ZodString;
|
5019
5019
|
}, "strip", z.ZodTypeAny, {
|
5020
5020
|
id: string;
|
5021
|
-
createdAt:
|
5022
|
-
updatedAt:
|
5023
|
-
deletedAt:
|
5021
|
+
createdAt: string;
|
5022
|
+
updatedAt: string;
|
5023
|
+
deletedAt: string | null;
|
5024
5024
|
systemName: string;
|
5025
5025
|
displayName: string;
|
5026
5026
|
}, {
|
5027
5027
|
id: string;
|
5028
|
-
createdAt:
|
5029
|
-
updatedAt:
|
5030
|
-
deletedAt:
|
5028
|
+
createdAt: string;
|
5029
|
+
updatedAt: string;
|
5030
|
+
deletedAt: string | null;
|
5031
5031
|
systemName: string;
|
5032
5032
|
displayName: string;
|
5033
5033
|
}>;
|
@@ -5035,9 +5035,9 @@ export declare const ContactContractValidationSchema: {
|
|
5035
5035
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5036
5036
|
id: string;
|
5037
5037
|
position: number;
|
5038
|
-
createdAt:
|
5039
|
-
updatedAt:
|
5040
|
-
deletedAt:
|
5038
|
+
createdAt: string;
|
5039
|
+
updatedAt: string;
|
5040
|
+
deletedAt: string | null;
|
5041
5041
|
isDefault: boolean;
|
5042
5042
|
systemName: string;
|
5043
5043
|
displayName: string;
|
@@ -5048,9 +5048,9 @@ export declare const ContactContractValidationSchema: {
|
|
5048
5048
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5049
5049
|
id: string;
|
5050
5050
|
position: number;
|
5051
|
-
createdAt:
|
5052
|
-
updatedAt:
|
5053
|
-
deletedAt:
|
5051
|
+
createdAt: string;
|
5052
|
+
updatedAt: string;
|
5053
|
+
deletedAt: string | null;
|
5054
5054
|
isDefault: boolean;
|
5055
5055
|
systemName: string;
|
5056
5056
|
displayName: string;
|
@@ -5060,16 +5060,16 @@ export declare const ContactContractValidationSchema: {
|
|
5060
5060
|
}>;
|
5061
5061
|
}, "strip", z.ZodTypeAny, {
|
5062
5062
|
id: string;
|
5063
|
-
createdAt:
|
5064
|
-
updatedAt:
|
5065
|
-
deletedAt:
|
5063
|
+
createdAt: string;
|
5064
|
+
updatedAt: string;
|
5065
|
+
deletedAt: string | null;
|
5066
5066
|
attribute: {
|
5067
5067
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5068
5068
|
id: string;
|
5069
5069
|
position: number;
|
5070
|
-
createdAt:
|
5071
|
-
updatedAt:
|
5072
|
-
deletedAt:
|
5070
|
+
createdAt: string;
|
5071
|
+
updatedAt: string;
|
5072
|
+
deletedAt: string | null;
|
5073
5073
|
isDefault: boolean;
|
5074
5074
|
systemName: string;
|
5075
5075
|
displayName: string;
|
@@ -5083,16 +5083,16 @@ export declare const ContactContractValidationSchema: {
|
|
5083
5083
|
dateValue: Date | null;
|
5084
5084
|
}, {
|
5085
5085
|
id: string;
|
5086
|
-
createdAt:
|
5087
|
-
updatedAt:
|
5088
|
-
deletedAt:
|
5086
|
+
createdAt: string;
|
5087
|
+
updatedAt: string;
|
5088
|
+
deletedAt: string | null;
|
5089
5089
|
attribute: {
|
5090
5090
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5091
5091
|
id: string;
|
5092
5092
|
position: number;
|
5093
|
-
createdAt:
|
5094
|
-
updatedAt:
|
5095
|
-
deletedAt:
|
5093
|
+
createdAt: string;
|
5094
|
+
updatedAt: string;
|
5095
|
+
deletedAt: string | null;
|
5096
5096
|
isDefault: boolean;
|
5097
5097
|
systemName: string;
|
5098
5098
|
displayName: string;
|
@@ -5107,18 +5107,18 @@ export declare const ContactContractValidationSchema: {
|
|
5107
5107
|
}>, "many">>;
|
5108
5108
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
5109
5109
|
id: string;
|
5110
|
-
createdAt:
|
5111
|
-
updatedAt:
|
5112
|
-
deletedAt:
|
5110
|
+
createdAt: string;
|
5111
|
+
updatedAt: string;
|
5112
|
+
deletedAt: string | null;
|
5113
5113
|
address?: string | null | undefined;
|
5114
5114
|
name?: string | undefined;
|
5115
5115
|
phone?: string | null | undefined;
|
5116
5116
|
industry?: string | null | undefined;
|
5117
5117
|
}, {
|
5118
5118
|
id: string;
|
5119
|
-
createdAt:
|
5120
|
-
updatedAt:
|
5121
|
-
deletedAt:
|
5119
|
+
createdAt: string;
|
5120
|
+
updatedAt: string;
|
5121
|
+
deletedAt: string | null;
|
5122
5122
|
address?: string | null | undefined;
|
5123
5123
|
name?: string | undefined;
|
5124
5124
|
phone?: string | null | undefined;
|
@@ -5135,9 +5135,9 @@ export declare const ContactContractValidationSchema: {
|
|
5135
5135
|
dateValue: z.ZodNullable<z.ZodDate>;
|
5136
5136
|
attribute: z.ZodObject<Omit<{
|
5137
5137
|
id: z.ZodString;
|
5138
|
-
createdAt: z.
|
5139
|
-
updatedAt: z.
|
5140
|
-
deletedAt: z.ZodNullable<z.
|
5138
|
+
createdAt: z.ZodString;
|
5139
|
+
updatedAt: z.ZodString;
|
5140
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5141
5141
|
systemName: z.ZodString;
|
5142
5142
|
displayName: z.ZodString;
|
5143
5143
|
type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
|
@@ -5167,23 +5167,23 @@ export declare const ContactContractValidationSchema: {
|
|
5167
5167
|
}>, "many">;
|
5168
5168
|
group: z.ZodObject<{
|
5169
5169
|
id: z.ZodString;
|
5170
|
-
createdAt: z.
|
5171
|
-
updatedAt: z.
|
5172
|
-
deletedAt: z.ZodNullable<z.
|
5170
|
+
createdAt: z.ZodString;
|
5171
|
+
updatedAt: z.ZodString;
|
5172
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5173
5173
|
systemName: z.ZodString;
|
5174
5174
|
displayName: z.ZodString;
|
5175
5175
|
}, "strip", z.ZodTypeAny, {
|
5176
5176
|
id: string;
|
5177
|
-
createdAt:
|
5178
|
-
updatedAt:
|
5179
|
-
deletedAt:
|
5177
|
+
createdAt: string;
|
5178
|
+
updatedAt: string;
|
5179
|
+
deletedAt: string | null;
|
5180
5180
|
systemName: string;
|
5181
5181
|
displayName: string;
|
5182
5182
|
}, {
|
5183
5183
|
id: string;
|
5184
|
-
createdAt:
|
5185
|
-
updatedAt:
|
5186
|
-
deletedAt:
|
5184
|
+
createdAt: string;
|
5185
|
+
updatedAt: string;
|
5186
|
+
deletedAt: string | null;
|
5187
5187
|
systemName: string;
|
5188
5188
|
displayName: string;
|
5189
5189
|
}>;
|
@@ -5191,9 +5191,9 @@ export declare const ContactContractValidationSchema: {
|
|
5191
5191
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5192
5192
|
id: string;
|
5193
5193
|
position: number;
|
5194
|
-
createdAt:
|
5195
|
-
updatedAt:
|
5196
|
-
deletedAt:
|
5194
|
+
createdAt: string;
|
5195
|
+
updatedAt: string;
|
5196
|
+
deletedAt: string | null;
|
5197
5197
|
isDefault: boolean;
|
5198
5198
|
systemName: string;
|
5199
5199
|
displayName: string;
|
@@ -5204,9 +5204,9 @@ export declare const ContactContractValidationSchema: {
|
|
5204
5204
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5205
5205
|
id: string;
|
5206
5206
|
position: number;
|
5207
|
-
createdAt:
|
5208
|
-
updatedAt:
|
5209
|
-
deletedAt:
|
5207
|
+
createdAt: string;
|
5208
|
+
updatedAt: string;
|
5209
|
+
deletedAt: string | null;
|
5210
5210
|
isDefault: boolean;
|
5211
5211
|
systemName: string;
|
5212
5212
|
displayName: string;
|
@@ -5216,33 +5216,33 @@ export declare const ContactContractValidationSchema: {
|
|
5216
5216
|
}>;
|
5217
5217
|
uploads: z.ZodArray<z.ZodObject<{
|
5218
5218
|
id: z.ZodString;
|
5219
|
-
createdAt: z.
|
5220
|
-
updatedAt: z.
|
5221
|
-
deletedAt: z.ZodNullable<z.
|
5219
|
+
createdAt: z.ZodString;
|
5220
|
+
updatedAt: z.ZodString;
|
5221
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5222
5222
|
customFieldId: z.ZodString;
|
5223
5223
|
upload: z.ZodObject<{
|
5224
5224
|
id: z.ZodString;
|
5225
|
-
createdAt: z.
|
5226
|
-
updatedAt: z.
|
5227
|
-
deletedAt: z.ZodNullable<z.
|
5225
|
+
createdAt: z.ZodString;
|
5226
|
+
updatedAt: z.ZodString;
|
5227
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5228
5228
|
bucketName: z.ZodString;
|
5229
5229
|
fileName: z.ZodString;
|
5230
5230
|
fileSize: z.ZodNumber;
|
5231
5231
|
fileKey: z.ZodString;
|
5232
5232
|
}, "strip", z.ZodTypeAny, {
|
5233
5233
|
id: string;
|
5234
|
-
createdAt:
|
5235
|
-
updatedAt:
|
5236
|
-
deletedAt:
|
5234
|
+
createdAt: string;
|
5235
|
+
updatedAt: string;
|
5236
|
+
deletedAt: string | null;
|
5237
5237
|
fileName: string;
|
5238
5238
|
fileKey: string;
|
5239
5239
|
bucketName: string;
|
5240
5240
|
fileSize: number;
|
5241
5241
|
}, {
|
5242
5242
|
id: string;
|
5243
|
-
createdAt:
|
5244
|
-
updatedAt:
|
5245
|
-
deletedAt:
|
5243
|
+
createdAt: string;
|
5244
|
+
updatedAt: string;
|
5245
|
+
deletedAt: string | null;
|
5246
5246
|
fileName: string;
|
5247
5247
|
fileKey: string;
|
5248
5248
|
bucketName: string;
|
@@ -5250,15 +5250,15 @@ export declare const ContactContractValidationSchema: {
|
|
5250
5250
|
}>;
|
5251
5251
|
}, "strip", z.ZodTypeAny, {
|
5252
5252
|
id: string;
|
5253
|
-
createdAt:
|
5254
|
-
updatedAt:
|
5255
|
-
deletedAt:
|
5253
|
+
createdAt: string;
|
5254
|
+
updatedAt: string;
|
5255
|
+
deletedAt: string | null;
|
5256
5256
|
customFieldId: string;
|
5257
5257
|
upload: {
|
5258
5258
|
id: string;
|
5259
|
-
createdAt:
|
5260
|
-
updatedAt:
|
5261
|
-
deletedAt:
|
5259
|
+
createdAt: string;
|
5260
|
+
updatedAt: string;
|
5261
|
+
deletedAt: string | null;
|
5262
5262
|
fileName: string;
|
5263
5263
|
fileKey: string;
|
5264
5264
|
bucketName: string;
|
@@ -5266,15 +5266,15 @@ export declare const ContactContractValidationSchema: {
|
|
5266
5266
|
};
|
5267
5267
|
}, {
|
5268
5268
|
id: string;
|
5269
|
-
createdAt:
|
5270
|
-
updatedAt:
|
5271
|
-
deletedAt:
|
5269
|
+
createdAt: string;
|
5270
|
+
updatedAt: string;
|
5271
|
+
deletedAt: string | null;
|
5272
5272
|
customFieldId: string;
|
5273
5273
|
upload: {
|
5274
5274
|
id: string;
|
5275
|
-
createdAt:
|
5276
|
-
updatedAt:
|
5277
|
-
deletedAt:
|
5275
|
+
createdAt: string;
|
5276
|
+
updatedAt: string;
|
5277
|
+
deletedAt: string | null;
|
5278
5278
|
fileName: string;
|
5279
5279
|
fileKey: string;
|
5280
5280
|
bucketName: string;
|
@@ -5290,9 +5290,9 @@ export declare const ContactContractValidationSchema: {
|
|
5290
5290
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5291
5291
|
id: string;
|
5292
5292
|
position: number;
|
5293
|
-
createdAt:
|
5294
|
-
updatedAt:
|
5295
|
-
deletedAt:
|
5293
|
+
createdAt: string;
|
5294
|
+
updatedAt: string;
|
5295
|
+
deletedAt: string | null;
|
5296
5296
|
isDefault: boolean;
|
5297
5297
|
systemName: string;
|
5298
5298
|
displayName: string;
|
@@ -5306,15 +5306,15 @@ export declare const ContactContractValidationSchema: {
|
|
5306
5306
|
dateValue: Date | null;
|
5307
5307
|
uploads: {
|
5308
5308
|
id: string;
|
5309
|
-
createdAt:
|
5310
|
-
updatedAt:
|
5311
|
-
deletedAt:
|
5309
|
+
createdAt: string;
|
5310
|
+
updatedAt: string;
|
5311
|
+
deletedAt: string | null;
|
5312
5312
|
customFieldId: string;
|
5313
5313
|
upload: {
|
5314
5314
|
id: string;
|
5315
|
-
createdAt:
|
5316
|
-
updatedAt:
|
5317
|
-
deletedAt:
|
5315
|
+
createdAt: string;
|
5316
|
+
updatedAt: string;
|
5317
|
+
deletedAt: string | null;
|
5318
5318
|
fileName: string;
|
5319
5319
|
fileKey: string;
|
5320
5320
|
bucketName: string;
|
@@ -5330,9 +5330,9 @@ export declare const ContactContractValidationSchema: {
|
|
5330
5330
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5331
5331
|
id: string;
|
5332
5332
|
position: number;
|
5333
|
-
createdAt:
|
5334
|
-
updatedAt:
|
5335
|
-
deletedAt:
|
5333
|
+
createdAt: string;
|
5334
|
+
updatedAt: string;
|
5335
|
+
deletedAt: string | null;
|
5336
5336
|
isDefault: boolean;
|
5337
5337
|
systemName: string;
|
5338
5338
|
displayName: string;
|
@@ -5346,15 +5346,15 @@ export declare const ContactContractValidationSchema: {
|
|
5346
5346
|
dateValue: Date | null;
|
5347
5347
|
uploads: {
|
5348
5348
|
id: string;
|
5349
|
-
createdAt:
|
5350
|
-
updatedAt:
|
5351
|
-
deletedAt:
|
5349
|
+
createdAt: string;
|
5350
|
+
updatedAt: string;
|
5351
|
+
deletedAt: string | null;
|
5352
5352
|
customFieldId: string;
|
5353
5353
|
upload: {
|
5354
5354
|
id: string;
|
5355
|
-
createdAt:
|
5356
|
-
updatedAt:
|
5357
|
-
deletedAt:
|
5355
|
+
createdAt: string;
|
5356
|
+
updatedAt: string;
|
5357
|
+
deletedAt: string | null;
|
5358
5358
|
fileName: string;
|
5359
5359
|
fileKey: string;
|
5360
5360
|
bucketName: string;
|
@@ -5483,9 +5483,9 @@ export declare const ContactContractValidationSchema: {
|
|
5483
5483
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5484
5484
|
id: string;
|
5485
5485
|
position: number;
|
5486
|
-
createdAt:
|
5487
|
-
updatedAt:
|
5488
|
-
deletedAt:
|
5486
|
+
createdAt: string;
|
5487
|
+
updatedAt: string;
|
5488
|
+
deletedAt: string | null;
|
5489
5489
|
isDefault: boolean;
|
5490
5490
|
systemName: string;
|
5491
5491
|
displayName: string;
|
@@ -5499,15 +5499,15 @@ export declare const ContactContractValidationSchema: {
|
|
5499
5499
|
dateValue: Date | null;
|
5500
5500
|
uploads: {
|
5501
5501
|
id: string;
|
5502
|
-
createdAt:
|
5503
|
-
updatedAt:
|
5504
|
-
deletedAt:
|
5502
|
+
createdAt: string;
|
5503
|
+
updatedAt: string;
|
5504
|
+
deletedAt: string | null;
|
5505
5505
|
customFieldId: string;
|
5506
5506
|
upload: {
|
5507
5507
|
id: string;
|
5508
|
-
createdAt:
|
5509
|
-
updatedAt:
|
5510
|
-
deletedAt:
|
5508
|
+
createdAt: string;
|
5509
|
+
updatedAt: string;
|
5510
|
+
deletedAt: string | null;
|
5511
5511
|
fileName: string;
|
5512
5512
|
fileKey: string;
|
5513
5513
|
bucketName: string;
|
@@ -5521,15 +5521,15 @@ export declare const ContactContractValidationSchema: {
|
|
5521
5521
|
tags: {
|
5522
5522
|
id: string;
|
5523
5523
|
name: string;
|
5524
|
-
createdAt:
|
5525
|
-
updatedAt:
|
5526
|
-
deletedAt:
|
5524
|
+
createdAt: string;
|
5525
|
+
updatedAt: string;
|
5526
|
+
deletedAt: string | null;
|
5527
5527
|
}[];
|
5528
5528
|
company: {
|
5529
5529
|
id: string;
|
5530
|
-
createdAt:
|
5531
|
-
updatedAt:
|
5532
|
-
deletedAt:
|
5530
|
+
createdAt: string;
|
5531
|
+
updatedAt: string;
|
5532
|
+
deletedAt: string | null;
|
5533
5533
|
address?: string | null | undefined;
|
5534
5534
|
name?: string | undefined;
|
5535
5535
|
phone?: string | null | undefined;
|
@@ -5584,9 +5584,9 @@ export declare const ContactContractValidationSchema: {
|
|
5584
5584
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5585
5585
|
id: string;
|
5586
5586
|
position: number;
|
5587
|
-
createdAt:
|
5588
|
-
updatedAt:
|
5589
|
-
deletedAt:
|
5587
|
+
createdAt: string;
|
5588
|
+
updatedAt: string;
|
5589
|
+
deletedAt: string | null;
|
5590
5590
|
isDefault: boolean;
|
5591
5591
|
systemName: string;
|
5592
5592
|
displayName: string;
|
@@ -5600,15 +5600,15 @@ export declare const ContactContractValidationSchema: {
|
|
5600
5600
|
dateValue: Date | null;
|
5601
5601
|
uploads: {
|
5602
5602
|
id: string;
|
5603
|
-
createdAt:
|
5604
|
-
updatedAt:
|
5605
|
-
deletedAt:
|
5603
|
+
createdAt: string;
|
5604
|
+
updatedAt: string;
|
5605
|
+
deletedAt: string | null;
|
5606
5606
|
customFieldId: string;
|
5607
5607
|
upload: {
|
5608
5608
|
id: string;
|
5609
|
-
createdAt:
|
5610
|
-
updatedAt:
|
5611
|
-
deletedAt:
|
5609
|
+
createdAt: string;
|
5610
|
+
updatedAt: string;
|
5611
|
+
deletedAt: string | null;
|
5612
5612
|
fileName: string;
|
5613
5613
|
fileKey: string;
|
5614
5614
|
bucketName: string;
|
@@ -5622,15 +5622,15 @@ export declare const ContactContractValidationSchema: {
|
|
5622
5622
|
tags: {
|
5623
5623
|
id: string;
|
5624
5624
|
name: string;
|
5625
|
-
createdAt:
|
5626
|
-
updatedAt:
|
5627
|
-
deletedAt:
|
5625
|
+
createdAt: string;
|
5626
|
+
updatedAt: string;
|
5627
|
+
deletedAt: string | null;
|
5628
5628
|
}[];
|
5629
5629
|
company: {
|
5630
5630
|
id: string;
|
5631
|
-
createdAt:
|
5632
|
-
updatedAt:
|
5633
|
-
deletedAt:
|
5631
|
+
createdAt: string;
|
5632
|
+
updatedAt: string;
|
5633
|
+
deletedAt: string | null;
|
5634
5634
|
address?: string | null | undefined;
|
5635
5635
|
name?: string | undefined;
|
5636
5636
|
phone?: string | null | undefined;
|
@@ -5709,9 +5709,9 @@ export declare const ContactContractValidationSchema: {
|
|
5709
5709
|
}>;
|
5710
5710
|
response: z.ZodObject<{
|
5711
5711
|
id: z.ZodString;
|
5712
|
-
createdAt: z.
|
5713
|
-
updatedAt: z.
|
5714
|
-
deletedAt: z.ZodNullable<z.
|
5712
|
+
createdAt: z.ZodString;
|
5713
|
+
updatedAt: z.ZodString;
|
5714
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5715
5715
|
textValue: z.ZodNullable<z.ZodString>;
|
5716
5716
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
5717
5717
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
@@ -5720,9 +5720,9 @@ export declare const ContactContractValidationSchema: {
|
|
5720
5720
|
attributeId: z.ZodString;
|
5721
5721
|
}, "strip", z.ZodTypeAny, {
|
5722
5722
|
id: string;
|
5723
|
-
createdAt:
|
5724
|
-
updatedAt:
|
5725
|
-
deletedAt:
|
5723
|
+
createdAt: string;
|
5724
|
+
updatedAt: string;
|
5725
|
+
deletedAt: string | null;
|
5726
5726
|
attributeId: string;
|
5727
5727
|
textValue: string | null;
|
5728
5728
|
booleanValue: boolean | null;
|
@@ -5731,9 +5731,9 @@ export declare const ContactContractValidationSchema: {
|
|
5731
5731
|
entityId: string;
|
5732
5732
|
}, {
|
5733
5733
|
id: string;
|
5734
|
-
createdAt:
|
5735
|
-
updatedAt:
|
5736
|
-
deletedAt:
|
5734
|
+
createdAt: string;
|
5735
|
+
updatedAt: string;
|
5736
|
+
deletedAt: string | null;
|
5737
5737
|
attributeId: string;
|
5738
5738
|
textValue: string | null;
|
5739
5739
|
booleanValue: boolean | null;
|