@kl1/contracts 1.4.16 → 1.4.17

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.
@@ -11,31 +11,55 @@ export declare const companyContract: {
11
11
  body: z.ZodObject<{
12
12
  name: z.ZodObject<{
13
13
  value: z.ZodString;
14
+ isRequired: z.ZodBoolean;
15
+ attributeId: z.ZodString;
14
16
  }, "strip", z.ZodTypeAny, {
15
17
  value: string;
18
+ isRequired: boolean;
19
+ attributeId: string;
16
20
  }, {
17
21
  value: string;
22
+ isRequired: boolean;
23
+ attributeId: string;
18
24
  }>;
19
25
  phone: z.ZodObject<{
20
26
  value: z.ZodString;
27
+ isRequired: z.ZodBoolean;
28
+ attributeId: z.ZodString;
21
29
  }, "strip", z.ZodTypeAny, {
22
30
  value: string;
31
+ isRequired: boolean;
32
+ attributeId: string;
23
33
  }, {
24
34
  value: string;
35
+ isRequired: boolean;
36
+ attributeId: string;
25
37
  }>;
26
38
  address: z.ZodObject<{
27
39
  value: z.ZodString;
40
+ isRequired: z.ZodBoolean;
41
+ attributeId: z.ZodString;
28
42
  }, "strip", z.ZodTypeAny, {
29
43
  value: string;
44
+ isRequired: boolean;
45
+ attributeId: string;
30
46
  }, {
31
47
  value: string;
48
+ isRequired: boolean;
49
+ attributeId: string;
32
50
  }>;
33
51
  industry: z.ZodObject<{
34
52
  value: z.ZodString;
53
+ isRequired: z.ZodBoolean;
54
+ attributeId: z.ZodString;
35
55
  }, "strip", z.ZodTypeAny, {
36
56
  value: string;
57
+ isRequired: boolean;
58
+ attributeId: string;
37
59
  }, {
38
60
  value: string;
61
+ isRequired: boolean;
62
+ attributeId: string;
39
63
  }>;
40
64
  customFields: z.ZodArray<z.ZodObject<{
41
65
  isRequired: z.ZodBoolean;
@@ -59,15 +83,23 @@ export declare const companyContract: {
59
83
  }, "strip", z.ZodTypeAny, {
60
84
  name: {
61
85
  value: string;
86
+ isRequired: boolean;
87
+ attributeId: string;
62
88
  };
63
89
  address: {
64
90
  value: string;
91
+ isRequired: boolean;
92
+ attributeId: string;
65
93
  };
66
94
  phone: {
67
95
  value: string;
96
+ isRequired: boolean;
97
+ attributeId: string;
68
98
  };
69
99
  industry: {
70
100
  value: string;
101
+ isRequired: boolean;
102
+ attributeId: string;
71
103
  };
72
104
  customFields: {
73
105
  type: string;
@@ -79,15 +111,23 @@ export declare const companyContract: {
79
111
  }, {
80
112
  name: {
81
113
  value: string;
114
+ isRequired: boolean;
115
+ attributeId: string;
82
116
  };
83
117
  address: {
84
118
  value: string;
119
+ isRequired: boolean;
120
+ attributeId: string;
85
121
  };
86
122
  phone: {
87
123
  value: string;
124
+ isRequired: boolean;
125
+ attributeId: string;
88
126
  };
89
127
  industry: {
90
128
  value: string;
129
+ isRequired: boolean;
130
+ attributeId: string;
91
131
  };
92
132
  customFields: {
93
133
  type: string;
@@ -446,31 +486,55 @@ export declare const companyContract: {
446
486
  body: z.ZodObject<{
447
487
  name: z.ZodOptional<z.ZodObject<{
448
488
  value: z.ZodString;
489
+ isRequired: z.ZodBoolean;
490
+ attributeId: z.ZodString;
449
491
  }, "strip", z.ZodTypeAny, {
450
492
  value: string;
493
+ isRequired: boolean;
494
+ attributeId: string;
451
495
  }, {
452
496
  value: string;
497
+ isRequired: boolean;
498
+ attributeId: string;
453
499
  }>>;
454
500
  phone: z.ZodOptional<z.ZodObject<{
455
501
  value: z.ZodString;
502
+ isRequired: z.ZodBoolean;
503
+ attributeId: z.ZodString;
456
504
  }, "strip", z.ZodTypeAny, {
457
505
  value: string;
506
+ isRequired: boolean;
507
+ attributeId: string;
458
508
  }, {
459
509
  value: string;
510
+ isRequired: boolean;
511
+ attributeId: string;
460
512
  }>>;
461
513
  address: z.ZodOptional<z.ZodObject<{
462
514
  value: z.ZodString;
515
+ isRequired: z.ZodBoolean;
516
+ attributeId: z.ZodString;
463
517
  }, "strip", z.ZodTypeAny, {
464
518
  value: string;
519
+ isRequired: boolean;
520
+ attributeId: string;
465
521
  }, {
466
522
  value: string;
523
+ isRequired: boolean;
524
+ attributeId: string;
467
525
  }>>;
468
526
  industry: z.ZodOptional<z.ZodObject<{
469
527
  value: z.ZodString;
528
+ isRequired: z.ZodBoolean;
529
+ attributeId: z.ZodString;
470
530
  }, "strip", z.ZodTypeAny, {
471
531
  value: string;
532
+ isRequired: boolean;
533
+ attributeId: string;
472
534
  }, {
473
535
  value: string;
536
+ isRequired: boolean;
537
+ attributeId: string;
474
538
  }>>;
475
539
  customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
476
540
  isRequired: z.ZodBoolean;
@@ -494,15 +558,23 @@ export declare const companyContract: {
494
558
  }, "strip", z.ZodTypeAny, {
495
559
  name?: {
496
560
  value: string;
561
+ isRequired: boolean;
562
+ attributeId: string;
497
563
  } | undefined;
498
564
  phone?: {
499
565
  value: string;
566
+ isRequired: boolean;
567
+ attributeId: string;
500
568
  } | undefined;
501
569
  address?: {
502
570
  value: string;
571
+ isRequired: boolean;
572
+ attributeId: string;
503
573
  } | undefined;
504
574
  industry?: {
505
575
  value: string;
576
+ isRequired: boolean;
577
+ attributeId: string;
506
578
  } | undefined;
507
579
  customFields?: {
508
580
  type: string;
@@ -514,15 +586,23 @@ export declare const companyContract: {
514
586
  }, {
515
587
  name?: {
516
588
  value: string;
589
+ isRequired: boolean;
590
+ attributeId: string;
517
591
  } | undefined;
518
592
  phone?: {
519
593
  value: string;
594
+ isRequired: boolean;
595
+ attributeId: string;
520
596
  } | undefined;
521
597
  address?: {
522
598
  value: string;
599
+ isRequired: boolean;
600
+ attributeId: string;
523
601
  } | undefined;
524
602
  industry?: {
525
603
  value: string;
604
+ isRequired: boolean;
605
+ attributeId: string;
526
606
  } | undefined;
527
607
  customFields?: {
528
608
  type: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/company/index.ts"],"names":[],"mappings":"AAOA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,gCAAgC,EAAE,MAAM,cAAc,CAAC;AAChE,OAAO,EAAE,wBAAwB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEnE,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpD,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,gCAAgC,CAAC,MAAM,CAAC,OAAO,CACvD,CAAC;AACF,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;AACjE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,gCAAgC,CAAC,MAAM,CAAC,OAAO,CACvD,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0H1B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/company/index.ts"],"names":[],"mappings":"AAOA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,gCAAgC,EAAE,MAAM,cAAc,CAAC;AAChE,OAAO,EAAE,wBAAwB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEnE,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpD,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,gCAAgC,CAAC,MAAM,CAAC,OAAO,CACvD,CAAC;AACF,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;AACjE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,gCAAgC,CAAC,MAAM,CAAC,OAAO,CACvD,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0H1B,CAAC"}
@@ -14,31 +14,55 @@ export declare const CompanyContractsValidationSchema: {
14
14
  request: z.ZodObject<{
15
15
  name: z.ZodObject<{
16
16
  value: z.ZodString;
17
+ isRequired: z.ZodBoolean;
18
+ attributeId: z.ZodString;
17
19
  }, "strip", z.ZodTypeAny, {
18
20
  value: string;
21
+ isRequired: boolean;
22
+ attributeId: string;
19
23
  }, {
20
24
  value: string;
25
+ isRequired: boolean;
26
+ attributeId: string;
21
27
  }>;
22
28
  phone: z.ZodObject<{
23
29
  value: z.ZodString;
30
+ isRequired: z.ZodBoolean;
31
+ attributeId: z.ZodString;
24
32
  }, "strip", z.ZodTypeAny, {
25
33
  value: string;
34
+ isRequired: boolean;
35
+ attributeId: string;
26
36
  }, {
27
37
  value: string;
38
+ isRequired: boolean;
39
+ attributeId: string;
28
40
  }>;
29
41
  address: z.ZodObject<{
30
42
  value: z.ZodString;
43
+ isRequired: z.ZodBoolean;
44
+ attributeId: z.ZodString;
31
45
  }, "strip", z.ZodTypeAny, {
32
46
  value: string;
47
+ isRequired: boolean;
48
+ attributeId: string;
33
49
  }, {
34
50
  value: string;
51
+ isRequired: boolean;
52
+ attributeId: string;
35
53
  }>;
36
54
  industry: z.ZodObject<{
37
55
  value: z.ZodString;
56
+ isRequired: z.ZodBoolean;
57
+ attributeId: z.ZodString;
38
58
  }, "strip", z.ZodTypeAny, {
39
59
  value: string;
60
+ isRequired: boolean;
61
+ attributeId: string;
40
62
  }, {
41
63
  value: string;
64
+ isRequired: boolean;
65
+ attributeId: string;
42
66
  }>;
43
67
  customFields: z.ZodArray<z.ZodObject<{
44
68
  isRequired: z.ZodBoolean;
@@ -62,15 +86,23 @@ export declare const CompanyContractsValidationSchema: {
62
86
  }, "strip", z.ZodTypeAny, {
63
87
  name: {
64
88
  value: string;
89
+ isRequired: boolean;
90
+ attributeId: string;
65
91
  };
66
92
  address: {
67
93
  value: string;
94
+ isRequired: boolean;
95
+ attributeId: string;
68
96
  };
69
97
  phone: {
70
98
  value: string;
99
+ isRequired: boolean;
100
+ attributeId: string;
71
101
  };
72
102
  industry: {
73
103
  value: string;
104
+ isRequired: boolean;
105
+ attributeId: string;
74
106
  };
75
107
  customFields: {
76
108
  type: string;
@@ -82,15 +114,23 @@ export declare const CompanyContractsValidationSchema: {
82
114
  }, {
83
115
  name: {
84
116
  value: string;
117
+ isRequired: boolean;
118
+ attributeId: string;
85
119
  };
86
120
  address: {
87
121
  value: string;
122
+ isRequired: boolean;
123
+ attributeId: string;
88
124
  };
89
125
  phone: {
90
126
  value: string;
127
+ isRequired: boolean;
128
+ attributeId: string;
91
129
  };
92
130
  industry: {
93
131
  value: string;
132
+ isRequired: boolean;
133
+ attributeId: string;
94
134
  };
95
135
  customFields: {
96
136
  type: string;
@@ -1 +1 @@
1
- {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../../src/company/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmD5C,CAAC"}
1
+ {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../../src/company/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmE5C,CAAC"}
@@ -38024,31 +38024,55 @@ export declare const apiContract: {
38024
38024
  body: import("zod").ZodObject<{
38025
38025
  name: import("zod").ZodObject<{
38026
38026
  value: import("zod").ZodString;
38027
+ isRequired: import("zod").ZodBoolean;
38028
+ attributeId: import("zod").ZodString;
38027
38029
  }, "strip", import("zod").ZodTypeAny, {
38028
38030
  value: string;
38031
+ isRequired: boolean;
38032
+ attributeId: string;
38029
38033
  }, {
38030
38034
  value: string;
38035
+ isRequired: boolean;
38036
+ attributeId: string;
38031
38037
  }>;
38032
38038
  phone: import("zod").ZodObject<{
38033
38039
  value: import("zod").ZodString;
38040
+ isRequired: import("zod").ZodBoolean;
38041
+ attributeId: import("zod").ZodString;
38034
38042
  }, "strip", import("zod").ZodTypeAny, {
38035
38043
  value: string;
38044
+ isRequired: boolean;
38045
+ attributeId: string;
38036
38046
  }, {
38037
38047
  value: string;
38048
+ isRequired: boolean;
38049
+ attributeId: string;
38038
38050
  }>;
38039
38051
  address: import("zod").ZodObject<{
38040
38052
  value: import("zod").ZodString;
38053
+ isRequired: import("zod").ZodBoolean;
38054
+ attributeId: import("zod").ZodString;
38041
38055
  }, "strip", import("zod").ZodTypeAny, {
38042
38056
  value: string;
38057
+ isRequired: boolean;
38058
+ attributeId: string;
38043
38059
  }, {
38044
38060
  value: string;
38061
+ isRequired: boolean;
38062
+ attributeId: string;
38045
38063
  }>;
38046
38064
  industry: import("zod").ZodObject<{
38047
38065
  value: import("zod").ZodString;
38066
+ isRequired: import("zod").ZodBoolean;
38067
+ attributeId: import("zod").ZodString;
38048
38068
  }, "strip", import("zod").ZodTypeAny, {
38049
38069
  value: string;
38070
+ isRequired: boolean;
38071
+ attributeId: string;
38050
38072
  }, {
38051
38073
  value: string;
38074
+ isRequired: boolean;
38075
+ attributeId: string;
38052
38076
  }>;
38053
38077
  customFields: import("zod").ZodArray<import("zod").ZodObject<{
38054
38078
  isRequired: import("zod").ZodBoolean;
@@ -38072,15 +38096,23 @@ export declare const apiContract: {
38072
38096
  }, "strip", import("zod").ZodTypeAny, {
38073
38097
  name: {
38074
38098
  value: string;
38099
+ isRequired: boolean;
38100
+ attributeId: string;
38075
38101
  };
38076
38102
  address: {
38077
38103
  value: string;
38104
+ isRequired: boolean;
38105
+ attributeId: string;
38078
38106
  };
38079
38107
  phone: {
38080
38108
  value: string;
38109
+ isRequired: boolean;
38110
+ attributeId: string;
38081
38111
  };
38082
38112
  industry: {
38083
38113
  value: string;
38114
+ isRequired: boolean;
38115
+ attributeId: string;
38084
38116
  };
38085
38117
  customFields: {
38086
38118
  type: string;
@@ -38092,15 +38124,23 @@ export declare const apiContract: {
38092
38124
  }, {
38093
38125
  name: {
38094
38126
  value: string;
38127
+ isRequired: boolean;
38128
+ attributeId: string;
38095
38129
  };
38096
38130
  address: {
38097
38131
  value: string;
38132
+ isRequired: boolean;
38133
+ attributeId: string;
38098
38134
  };
38099
38135
  phone: {
38100
38136
  value: string;
38137
+ isRequired: boolean;
38138
+ attributeId: string;
38101
38139
  };
38102
38140
  industry: {
38103
38141
  value: string;
38142
+ isRequired: boolean;
38143
+ attributeId: string;
38104
38144
  };
38105
38145
  customFields: {
38106
38146
  type: string;
@@ -38459,31 +38499,55 @@ export declare const apiContract: {
38459
38499
  body: import("zod").ZodObject<{
38460
38500
  name: import("zod").ZodOptional<import("zod").ZodObject<{
38461
38501
  value: import("zod").ZodString;
38502
+ isRequired: import("zod").ZodBoolean;
38503
+ attributeId: import("zod").ZodString;
38462
38504
  }, "strip", import("zod").ZodTypeAny, {
38463
38505
  value: string;
38506
+ isRequired: boolean;
38507
+ attributeId: string;
38464
38508
  }, {
38465
38509
  value: string;
38510
+ isRequired: boolean;
38511
+ attributeId: string;
38466
38512
  }>>;
38467
38513
  phone: import("zod").ZodOptional<import("zod").ZodObject<{
38468
38514
  value: import("zod").ZodString;
38515
+ isRequired: import("zod").ZodBoolean;
38516
+ attributeId: import("zod").ZodString;
38469
38517
  }, "strip", import("zod").ZodTypeAny, {
38470
38518
  value: string;
38519
+ isRequired: boolean;
38520
+ attributeId: string;
38471
38521
  }, {
38472
38522
  value: string;
38523
+ isRequired: boolean;
38524
+ attributeId: string;
38473
38525
  }>>;
38474
38526
  address: import("zod").ZodOptional<import("zod").ZodObject<{
38475
38527
  value: import("zod").ZodString;
38528
+ isRequired: import("zod").ZodBoolean;
38529
+ attributeId: import("zod").ZodString;
38476
38530
  }, "strip", import("zod").ZodTypeAny, {
38477
38531
  value: string;
38532
+ isRequired: boolean;
38533
+ attributeId: string;
38478
38534
  }, {
38479
38535
  value: string;
38536
+ isRequired: boolean;
38537
+ attributeId: string;
38480
38538
  }>>;
38481
38539
  industry: import("zod").ZodOptional<import("zod").ZodObject<{
38482
38540
  value: import("zod").ZodString;
38541
+ isRequired: import("zod").ZodBoolean;
38542
+ attributeId: import("zod").ZodString;
38483
38543
  }, "strip", import("zod").ZodTypeAny, {
38484
38544
  value: string;
38545
+ isRequired: boolean;
38546
+ attributeId: string;
38485
38547
  }, {
38486
38548
  value: string;
38549
+ isRequired: boolean;
38550
+ attributeId: string;
38487
38551
  }>>;
38488
38552
  customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
38489
38553
  isRequired: import("zod").ZodBoolean;
@@ -38507,15 +38571,23 @@ export declare const apiContract: {
38507
38571
  }, "strip", import("zod").ZodTypeAny, {
38508
38572
  name?: {
38509
38573
  value: string;
38574
+ isRequired: boolean;
38575
+ attributeId: string;
38510
38576
  } | undefined;
38511
38577
  phone?: {
38512
38578
  value: string;
38579
+ isRequired: boolean;
38580
+ attributeId: string;
38513
38581
  } | undefined;
38514
38582
  address?: {
38515
38583
  value: string;
38584
+ isRequired: boolean;
38585
+ attributeId: string;
38516
38586
  } | undefined;
38517
38587
  industry?: {
38518
38588
  value: string;
38589
+ isRequired: boolean;
38590
+ attributeId: string;
38519
38591
  } | undefined;
38520
38592
  customFields?: {
38521
38593
  type: string;
@@ -38527,15 +38599,23 @@ export declare const apiContract: {
38527
38599
  }, {
38528
38600
  name?: {
38529
38601
  value: string;
38602
+ isRequired: boolean;
38603
+ attributeId: string;
38530
38604
  } | undefined;
38531
38605
  phone?: {
38532
38606
  value: string;
38607
+ isRequired: boolean;
38608
+ attributeId: string;
38533
38609
  } | undefined;
38534
38610
  address?: {
38535
38611
  value: string;
38612
+ isRequired: boolean;
38613
+ attributeId: string;
38536
38614
  } | undefined;
38537
38615
  industry?: {
38538
38616
  value: string;
38617
+ isRequired: boolean;
38618
+ attributeId: string;
38539
38619
  } | undefined;
38540
38620
  customFields?: {
38541
38621
  type: string;