@77sol-lab/form-schemas 1.2.0 → 1.3.0

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.
@@ -0,0 +1,1335 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const unifiedPjObject: z.ZodObject<{
4
+ financing_company: z.ZodObject<{
5
+ corporate_name: z.ZodString;
6
+ cnpj: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
7
+ foundation_date: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
8
+ address: z.ZodString;
9
+ number: z.ZodString;
10
+ email: z.ZodEffects<z.ZodString, string, string>;
11
+ complement: z.ZodOptional<z.ZodString>;
12
+ phone: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
13
+ district: z.ZodString;
14
+ legal_nature: z.ZodString;
15
+ city: z.ZodString;
16
+ state: z.ZodString;
17
+ cep: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
18
+ economic_activity: z.ZodOptional<z.ZodString>;
19
+ economic_activity_group: z.ZodOptional<z.ZodString>;
20
+ monthly_income: z.ZodOptional<z.ZodNumber>;
21
+ residence_situation: z.ZodOptional<z.ZodString>;
22
+ months_in_residence: z.ZodOptional<z.ZodNumber>;
23
+ capital_social: z.ZodOptional<z.ZodNumber>;
24
+ }, "strict", z.ZodTypeAny, {
25
+ number: string;
26
+ cep: string;
27
+ address: string;
28
+ district: string;
29
+ city: string;
30
+ state: string;
31
+ email: string;
32
+ corporate_name: string;
33
+ foundation_date: string;
34
+ cnpj: string;
35
+ phone: string;
36
+ legal_nature: string;
37
+ complement?: string | undefined;
38
+ monthly_income?: number | undefined;
39
+ economic_activity_group?: string | undefined;
40
+ economic_activity?: string | undefined;
41
+ residence_situation?: string | undefined;
42
+ months_in_residence?: number | undefined;
43
+ capital_social?: number | undefined;
44
+ }, {
45
+ number: string;
46
+ cep: string;
47
+ address: string;
48
+ district: string;
49
+ city: string;
50
+ state: string;
51
+ email: string;
52
+ corporate_name: string;
53
+ foundation_date: string;
54
+ cnpj: string;
55
+ phone: string;
56
+ legal_nature: string;
57
+ complement?: string | undefined;
58
+ monthly_income?: number | undefined;
59
+ economic_activity_group?: string | undefined;
60
+ economic_activity?: string | undefined;
61
+ residence_situation?: string | undefined;
62
+ months_in_residence?: number | undefined;
63
+ capital_social?: number | undefined;
64
+ }>;
65
+ financing_company_guarantor: z.ZodOptional<z.ZodArray<z.ZodObject<{
66
+ name: z.ZodString;
67
+ cpf: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
68
+ birth_date: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
69
+ address: z.ZodString;
70
+ number: z.ZodString;
71
+ cep: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
72
+ complement: z.ZodOptional<z.ZodString>;
73
+ cellphone: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
74
+ email: z.ZodEffects<z.ZodString, string, string>;
75
+ district: z.ZodString;
76
+ sex: z.ZodEnum<["masculino", "feminino"]>;
77
+ city: z.ZodString;
78
+ state: z.ZodString;
79
+ mother_name: z.ZodString;
80
+ nationality: z.ZodString;
81
+ office: z.ZodOptional<z.ZodString>;
82
+ phone: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
83
+ civil_status: z.ZodOptional<z.ZodString>;
84
+ residence_situation: z.ZodOptional<z.ZodString>;
85
+ months_in_residence: z.ZodOptional<z.ZodNumber>;
86
+ type_doc: z.ZodOptional<z.ZodEnum<["rg", "cnh", "rne"]>>;
87
+ doc: z.ZodOptional<z.ZodString>;
88
+ issuing_body: z.ZodOptional<z.ZodString>;
89
+ uf_issuing_body: z.ZodOptional<z.ZodString>;
90
+ doc_issue_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
91
+ doc_expiration_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
92
+ monthly_income: z.ZodOptional<z.ZodNumber>;
93
+ patrimony: z.ZodOptional<z.ZodNumber>;
94
+ naturalness: z.ZodOptional<z.ZodString>;
95
+ uf_naturalness: z.ZodOptional<z.ZodString>;
96
+ pep_relationship: z.ZodOptional<z.ZodString>;
97
+ entry_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
98
+ doc_issuance_uf: z.ZodOptional<z.ZodString>;
99
+ }, "strict", z.ZodTypeAny, {
100
+ number: string;
101
+ nationality: string;
102
+ name: string;
103
+ cep: string;
104
+ cpf: string;
105
+ address: string;
106
+ birth_date: string;
107
+ sex: "masculino" | "feminino";
108
+ mother_name: string;
109
+ district: string;
110
+ city: string;
111
+ state: string;
112
+ cellphone: string;
113
+ email: string;
114
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
115
+ doc_issue_date?: string | undefined;
116
+ complement?: string | undefined;
117
+ monthly_income?: number | undefined;
118
+ doc?: string | undefined;
119
+ issuing_body?: string | undefined;
120
+ phone?: string | undefined;
121
+ office?: string | undefined;
122
+ civil_status?: string | undefined;
123
+ uf_issuing_body?: string | undefined;
124
+ doc_expiration_date?: string | undefined;
125
+ patrimony?: number | undefined;
126
+ uf_naturalness?: string | undefined;
127
+ residence_situation?: string | undefined;
128
+ months_in_residence?: number | undefined;
129
+ naturalness?: string | undefined;
130
+ pep_relationship?: string | undefined;
131
+ entry_date?: string | undefined;
132
+ doc_issuance_uf?: string | undefined;
133
+ }, {
134
+ number: string;
135
+ nationality: string;
136
+ name: string;
137
+ cep: string;
138
+ cpf: string;
139
+ address: string;
140
+ birth_date: string;
141
+ sex: "masculino" | "feminino";
142
+ mother_name: string;
143
+ district: string;
144
+ city: string;
145
+ state: string;
146
+ cellphone: string;
147
+ email: string;
148
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
149
+ doc_issue_date?: string | undefined;
150
+ complement?: string | undefined;
151
+ monthly_income?: number | undefined;
152
+ doc?: string | undefined;
153
+ issuing_body?: string | undefined;
154
+ phone?: string | undefined;
155
+ office?: string | undefined;
156
+ civil_status?: string | undefined;
157
+ uf_issuing_body?: string | undefined;
158
+ doc_expiration_date?: string | undefined;
159
+ patrimony?: number | undefined;
160
+ uf_naturalness?: string | undefined;
161
+ residence_situation?: string | undefined;
162
+ months_in_residence?: number | undefined;
163
+ naturalness?: string | undefined;
164
+ pep_relationship?: string | undefined;
165
+ entry_date?: string | undefined;
166
+ doc_issuance_uf?: string | undefined;
167
+ }>, "many">>;
168
+ financing_company_qsa: z.ZodOptional<z.ZodArray<z.ZodObject<{
169
+ name: z.ZodString;
170
+ cpf: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
171
+ birth_date: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
172
+ address: z.ZodString;
173
+ number: z.ZodString;
174
+ cep: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
175
+ complement: z.ZodOptional<z.ZodString>;
176
+ cellphone: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
177
+ email: z.ZodEffects<z.ZodString, string, string>;
178
+ district: z.ZodString;
179
+ sex: z.ZodEnum<["masculino", "feminino"]>;
180
+ city: z.ZodString;
181
+ state: z.ZodString;
182
+ mother_name: z.ZodString;
183
+ nationality: z.ZodString;
184
+ office: z.ZodOptional<z.ZodString>;
185
+ phone: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
186
+ civil_status: z.ZodOptional<z.ZodString>;
187
+ residence_situation: z.ZodOptional<z.ZodString>;
188
+ months_in_residence: z.ZodOptional<z.ZodNumber>;
189
+ type_doc: z.ZodOptional<z.ZodEnum<["rg", "cnh", "rne"]>>;
190
+ doc: z.ZodOptional<z.ZodString>;
191
+ issuing_body: z.ZodOptional<z.ZodString>;
192
+ uf_issuing_body: z.ZodOptional<z.ZodString>;
193
+ doc_issue_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
194
+ doc_expiration_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
195
+ monthly_income: z.ZodOptional<z.ZodNumber>;
196
+ patrimony: z.ZodOptional<z.ZodNumber>;
197
+ naturalness: z.ZodOptional<z.ZodString>;
198
+ uf_naturalness: z.ZodOptional<z.ZodString>;
199
+ pep_relationship: z.ZodOptional<z.ZodString>;
200
+ entry_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
201
+ doc_issuance_uf: z.ZodOptional<z.ZodString>;
202
+ }, "strict", z.ZodTypeAny, {
203
+ number: string;
204
+ nationality: string;
205
+ name: string;
206
+ cep: string;
207
+ cpf: string;
208
+ address: string;
209
+ birth_date: string;
210
+ sex: "masculino" | "feminino";
211
+ mother_name: string;
212
+ district: string;
213
+ city: string;
214
+ state: string;
215
+ cellphone: string;
216
+ email: string;
217
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
218
+ doc_issue_date?: string | undefined;
219
+ complement?: string | undefined;
220
+ monthly_income?: number | undefined;
221
+ doc?: string | undefined;
222
+ issuing_body?: string | undefined;
223
+ phone?: string | undefined;
224
+ office?: string | undefined;
225
+ civil_status?: string | undefined;
226
+ uf_issuing_body?: string | undefined;
227
+ doc_expiration_date?: string | undefined;
228
+ patrimony?: number | undefined;
229
+ uf_naturalness?: string | undefined;
230
+ residence_situation?: string | undefined;
231
+ months_in_residence?: number | undefined;
232
+ naturalness?: string | undefined;
233
+ pep_relationship?: string | undefined;
234
+ entry_date?: string | undefined;
235
+ doc_issuance_uf?: string | undefined;
236
+ }, {
237
+ number: string;
238
+ nationality: string;
239
+ name: string;
240
+ cep: string;
241
+ cpf: string;
242
+ address: string;
243
+ birth_date: string;
244
+ sex: "masculino" | "feminino";
245
+ mother_name: string;
246
+ district: string;
247
+ city: string;
248
+ state: string;
249
+ cellphone: string;
250
+ email: string;
251
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
252
+ doc_issue_date?: string | undefined;
253
+ complement?: string | undefined;
254
+ monthly_income?: number | undefined;
255
+ doc?: string | undefined;
256
+ issuing_body?: string | undefined;
257
+ phone?: string | undefined;
258
+ office?: string | undefined;
259
+ civil_status?: string | undefined;
260
+ uf_issuing_body?: string | undefined;
261
+ doc_expiration_date?: string | undefined;
262
+ patrimony?: number | undefined;
263
+ uf_naturalness?: string | undefined;
264
+ residence_situation?: string | undefined;
265
+ months_in_residence?: number | undefined;
266
+ naturalness?: string | undefined;
267
+ pep_relationship?: string | undefined;
268
+ entry_date?: string | undefined;
269
+ doc_issuance_uf?: string | undefined;
270
+ }>, "many">>;
271
+ energy_bill_upload: z.ZodObject<{
272
+ url: z.ZodOptional<z.ZodString>;
273
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
274
+ sizeBytes: z.ZodNumber;
275
+ }, "strip", z.ZodTypeAny, {
276
+ mime: "image/jpeg" | "image/png" | "application/pdf";
277
+ sizeBytes: number;
278
+ url?: string | undefined;
279
+ }, {
280
+ mime: "image/jpeg" | "image/png" | "application/pdf";
281
+ sizeBytes: number;
282
+ url?: string | undefined;
283
+ }>;
284
+ account_third_party: z.ZodEnum<["nao_se_aplica", "conjuge", "pai_mae", "filho_filha", "parente", "outro"]>;
285
+ bond_document_upload: z.ZodOptional<z.ZodObject<{
286
+ url: z.ZodOptional<z.ZodString>;
287
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
288
+ sizeBytes: z.ZodNumber;
289
+ }, "strip", z.ZodTypeAny, {
290
+ mime: "image/jpeg" | "image/png" | "application/pdf";
291
+ sizeBytes: number;
292
+ url?: string | undefined;
293
+ }, {
294
+ mime: "image/jpeg" | "image/png" | "application/pdf";
295
+ sizeBytes: number;
296
+ url?: string | undefined;
297
+ }>>;
298
+ document_front_upload: z.ZodObject<{
299
+ url: z.ZodOptional<z.ZodString>;
300
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
301
+ sizeBytes: z.ZodNumber;
302
+ }, "strip", z.ZodTypeAny, {
303
+ mime: "image/jpeg" | "image/png" | "application/pdf";
304
+ sizeBytes: number;
305
+ url?: string | undefined;
306
+ }, {
307
+ mime: "image/jpeg" | "image/png" | "application/pdf";
308
+ sizeBytes: number;
309
+ url?: string | undefined;
310
+ }>;
311
+ document_back_upload: z.ZodObject<{
312
+ url: z.ZodOptional<z.ZodString>;
313
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
314
+ sizeBytes: z.ZodNumber;
315
+ }, "strip", z.ZodTypeAny, {
316
+ mime: "image/jpeg" | "image/png" | "application/pdf";
317
+ sizeBytes: number;
318
+ url?: string | undefined;
319
+ }, {
320
+ mime: "image/jpeg" | "image/png" | "application/pdf";
321
+ sizeBytes: number;
322
+ url?: string | undefined;
323
+ }>;
324
+ rd_re_insurance_toggle: z.ZodDefault<z.ZodBoolean>;
325
+ }, "strip", z.ZodTypeAny, {
326
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
327
+ energy_bill_upload: {
328
+ mime: "image/jpeg" | "image/png" | "application/pdf";
329
+ sizeBytes: number;
330
+ url?: string | undefined;
331
+ };
332
+ document_front_upload: {
333
+ mime: "image/jpeg" | "image/png" | "application/pdf";
334
+ sizeBytes: number;
335
+ url?: string | undefined;
336
+ };
337
+ document_back_upload: {
338
+ mime: "image/jpeg" | "image/png" | "application/pdf";
339
+ sizeBytes: number;
340
+ url?: string | undefined;
341
+ };
342
+ rd_re_insurance_toggle: boolean;
343
+ financing_company: {
344
+ number: string;
345
+ cep: string;
346
+ address: string;
347
+ district: string;
348
+ city: string;
349
+ state: string;
350
+ email: string;
351
+ corporate_name: string;
352
+ foundation_date: string;
353
+ cnpj: string;
354
+ phone: string;
355
+ legal_nature: string;
356
+ complement?: string | undefined;
357
+ monthly_income?: number | undefined;
358
+ economic_activity_group?: string | undefined;
359
+ economic_activity?: string | undefined;
360
+ residence_situation?: string | undefined;
361
+ months_in_residence?: number | undefined;
362
+ capital_social?: number | undefined;
363
+ };
364
+ bond_document_upload?: {
365
+ mime: "image/jpeg" | "image/png" | "application/pdf";
366
+ sizeBytes: number;
367
+ url?: string | undefined;
368
+ } | undefined;
369
+ financing_company_guarantor?: {
370
+ number: string;
371
+ nationality: string;
372
+ name: string;
373
+ cep: string;
374
+ cpf: string;
375
+ address: string;
376
+ birth_date: string;
377
+ sex: "masculino" | "feminino";
378
+ mother_name: string;
379
+ district: string;
380
+ city: string;
381
+ state: string;
382
+ cellphone: string;
383
+ email: string;
384
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
385
+ doc_issue_date?: string | undefined;
386
+ complement?: string | undefined;
387
+ monthly_income?: number | undefined;
388
+ doc?: string | undefined;
389
+ issuing_body?: string | undefined;
390
+ phone?: string | undefined;
391
+ office?: string | undefined;
392
+ civil_status?: string | undefined;
393
+ uf_issuing_body?: string | undefined;
394
+ doc_expiration_date?: string | undefined;
395
+ patrimony?: number | undefined;
396
+ uf_naturalness?: string | undefined;
397
+ residence_situation?: string | undefined;
398
+ months_in_residence?: number | undefined;
399
+ naturalness?: string | undefined;
400
+ pep_relationship?: string | undefined;
401
+ entry_date?: string | undefined;
402
+ doc_issuance_uf?: string | undefined;
403
+ }[] | undefined;
404
+ financing_company_qsa?: {
405
+ number: string;
406
+ nationality: string;
407
+ name: string;
408
+ cep: string;
409
+ cpf: string;
410
+ address: string;
411
+ birth_date: string;
412
+ sex: "masculino" | "feminino";
413
+ mother_name: string;
414
+ district: string;
415
+ city: string;
416
+ state: string;
417
+ cellphone: string;
418
+ email: string;
419
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
420
+ doc_issue_date?: string | undefined;
421
+ complement?: string | undefined;
422
+ monthly_income?: number | undefined;
423
+ doc?: string | undefined;
424
+ issuing_body?: string | undefined;
425
+ phone?: string | undefined;
426
+ office?: string | undefined;
427
+ civil_status?: string | undefined;
428
+ uf_issuing_body?: string | undefined;
429
+ doc_expiration_date?: string | undefined;
430
+ patrimony?: number | undefined;
431
+ uf_naturalness?: string | undefined;
432
+ residence_situation?: string | undefined;
433
+ months_in_residence?: number | undefined;
434
+ naturalness?: string | undefined;
435
+ pep_relationship?: string | undefined;
436
+ entry_date?: string | undefined;
437
+ doc_issuance_uf?: string | undefined;
438
+ }[] | undefined;
439
+ }, {
440
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
441
+ energy_bill_upload: {
442
+ mime: "image/jpeg" | "image/png" | "application/pdf";
443
+ sizeBytes: number;
444
+ url?: string | undefined;
445
+ };
446
+ document_front_upload: {
447
+ mime: "image/jpeg" | "image/png" | "application/pdf";
448
+ sizeBytes: number;
449
+ url?: string | undefined;
450
+ };
451
+ document_back_upload: {
452
+ mime: "image/jpeg" | "image/png" | "application/pdf";
453
+ sizeBytes: number;
454
+ url?: string | undefined;
455
+ };
456
+ financing_company: {
457
+ number: string;
458
+ cep: string;
459
+ address: string;
460
+ district: string;
461
+ city: string;
462
+ state: string;
463
+ email: string;
464
+ corporate_name: string;
465
+ foundation_date: string;
466
+ cnpj: string;
467
+ phone: string;
468
+ legal_nature: string;
469
+ complement?: string | undefined;
470
+ monthly_income?: number | undefined;
471
+ economic_activity_group?: string | undefined;
472
+ economic_activity?: string | undefined;
473
+ residence_situation?: string | undefined;
474
+ months_in_residence?: number | undefined;
475
+ capital_social?: number | undefined;
476
+ };
477
+ bond_document_upload?: {
478
+ mime: "image/jpeg" | "image/png" | "application/pdf";
479
+ sizeBytes: number;
480
+ url?: string | undefined;
481
+ } | undefined;
482
+ rd_re_insurance_toggle?: boolean | undefined;
483
+ financing_company_guarantor?: {
484
+ number: string;
485
+ nationality: string;
486
+ name: string;
487
+ cep: string;
488
+ cpf: string;
489
+ address: string;
490
+ birth_date: string;
491
+ sex: "masculino" | "feminino";
492
+ mother_name: string;
493
+ district: string;
494
+ city: string;
495
+ state: string;
496
+ cellphone: string;
497
+ email: string;
498
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
499
+ doc_issue_date?: string | undefined;
500
+ complement?: string | undefined;
501
+ monthly_income?: number | undefined;
502
+ doc?: string | undefined;
503
+ issuing_body?: string | undefined;
504
+ phone?: string | undefined;
505
+ office?: string | undefined;
506
+ civil_status?: string | undefined;
507
+ uf_issuing_body?: string | undefined;
508
+ doc_expiration_date?: string | undefined;
509
+ patrimony?: number | undefined;
510
+ uf_naturalness?: string | undefined;
511
+ residence_situation?: string | undefined;
512
+ months_in_residence?: number | undefined;
513
+ naturalness?: string | undefined;
514
+ pep_relationship?: string | undefined;
515
+ entry_date?: string | undefined;
516
+ doc_issuance_uf?: string | undefined;
517
+ }[] | undefined;
518
+ financing_company_qsa?: {
519
+ number: string;
520
+ nationality: string;
521
+ name: string;
522
+ cep: string;
523
+ cpf: string;
524
+ address: string;
525
+ birth_date: string;
526
+ sex: "masculino" | "feminino";
527
+ mother_name: string;
528
+ district: string;
529
+ city: string;
530
+ state: string;
531
+ cellphone: string;
532
+ email: string;
533
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
534
+ doc_issue_date?: string | undefined;
535
+ complement?: string | undefined;
536
+ monthly_income?: number | undefined;
537
+ doc?: string | undefined;
538
+ issuing_body?: string | undefined;
539
+ phone?: string | undefined;
540
+ office?: string | undefined;
541
+ civil_status?: string | undefined;
542
+ uf_issuing_body?: string | undefined;
543
+ doc_expiration_date?: string | undefined;
544
+ patrimony?: number | undefined;
545
+ uf_naturalness?: string | undefined;
546
+ residence_situation?: string | undefined;
547
+ months_in_residence?: number | undefined;
548
+ naturalness?: string | undefined;
549
+ pep_relationship?: string | undefined;
550
+ entry_date?: string | undefined;
551
+ doc_issuance_uf?: string | undefined;
552
+ }[] | undefined;
553
+ }>;
554
+ declare const unifiedPjSchema: z.ZodEffects<z.ZodObject<{
555
+ financing_company: z.ZodObject<{
556
+ corporate_name: z.ZodString;
557
+ cnpj: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
558
+ foundation_date: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
559
+ address: z.ZodString;
560
+ number: z.ZodString;
561
+ email: z.ZodEffects<z.ZodString, string, string>;
562
+ complement: z.ZodOptional<z.ZodString>;
563
+ phone: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
564
+ district: z.ZodString;
565
+ legal_nature: z.ZodString;
566
+ city: z.ZodString;
567
+ state: z.ZodString;
568
+ cep: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
569
+ economic_activity: z.ZodOptional<z.ZodString>;
570
+ economic_activity_group: z.ZodOptional<z.ZodString>;
571
+ monthly_income: z.ZodOptional<z.ZodNumber>;
572
+ residence_situation: z.ZodOptional<z.ZodString>;
573
+ months_in_residence: z.ZodOptional<z.ZodNumber>;
574
+ capital_social: z.ZodOptional<z.ZodNumber>;
575
+ }, "strict", z.ZodTypeAny, {
576
+ number: string;
577
+ cep: string;
578
+ address: string;
579
+ district: string;
580
+ city: string;
581
+ state: string;
582
+ email: string;
583
+ corporate_name: string;
584
+ foundation_date: string;
585
+ cnpj: string;
586
+ phone: string;
587
+ legal_nature: string;
588
+ complement?: string | undefined;
589
+ monthly_income?: number | undefined;
590
+ economic_activity_group?: string | undefined;
591
+ economic_activity?: string | undefined;
592
+ residence_situation?: string | undefined;
593
+ months_in_residence?: number | undefined;
594
+ capital_social?: number | undefined;
595
+ }, {
596
+ number: string;
597
+ cep: string;
598
+ address: string;
599
+ district: string;
600
+ city: string;
601
+ state: string;
602
+ email: string;
603
+ corporate_name: string;
604
+ foundation_date: string;
605
+ cnpj: string;
606
+ phone: string;
607
+ legal_nature: string;
608
+ complement?: string | undefined;
609
+ monthly_income?: number | undefined;
610
+ economic_activity_group?: string | undefined;
611
+ economic_activity?: string | undefined;
612
+ residence_situation?: string | undefined;
613
+ months_in_residence?: number | undefined;
614
+ capital_social?: number | undefined;
615
+ }>;
616
+ financing_company_guarantor: z.ZodOptional<z.ZodArray<z.ZodObject<{
617
+ name: z.ZodString;
618
+ cpf: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
619
+ birth_date: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
620
+ address: z.ZodString;
621
+ number: z.ZodString;
622
+ cep: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
623
+ complement: z.ZodOptional<z.ZodString>;
624
+ cellphone: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
625
+ email: z.ZodEffects<z.ZodString, string, string>;
626
+ district: z.ZodString;
627
+ sex: z.ZodEnum<["masculino", "feminino"]>;
628
+ city: z.ZodString;
629
+ state: z.ZodString;
630
+ mother_name: z.ZodString;
631
+ nationality: z.ZodString;
632
+ office: z.ZodOptional<z.ZodString>;
633
+ phone: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
634
+ civil_status: z.ZodOptional<z.ZodString>;
635
+ residence_situation: z.ZodOptional<z.ZodString>;
636
+ months_in_residence: z.ZodOptional<z.ZodNumber>;
637
+ type_doc: z.ZodOptional<z.ZodEnum<["rg", "cnh", "rne"]>>;
638
+ doc: z.ZodOptional<z.ZodString>;
639
+ issuing_body: z.ZodOptional<z.ZodString>;
640
+ uf_issuing_body: z.ZodOptional<z.ZodString>;
641
+ doc_issue_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
642
+ doc_expiration_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
643
+ monthly_income: z.ZodOptional<z.ZodNumber>;
644
+ patrimony: z.ZodOptional<z.ZodNumber>;
645
+ naturalness: z.ZodOptional<z.ZodString>;
646
+ uf_naturalness: z.ZodOptional<z.ZodString>;
647
+ pep_relationship: z.ZodOptional<z.ZodString>;
648
+ entry_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
649
+ doc_issuance_uf: z.ZodOptional<z.ZodString>;
650
+ }, "strict", z.ZodTypeAny, {
651
+ number: string;
652
+ nationality: string;
653
+ name: string;
654
+ cep: string;
655
+ cpf: string;
656
+ address: string;
657
+ birth_date: string;
658
+ sex: "masculino" | "feminino";
659
+ mother_name: string;
660
+ district: string;
661
+ city: string;
662
+ state: string;
663
+ cellphone: string;
664
+ email: string;
665
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
666
+ doc_issue_date?: string | undefined;
667
+ complement?: string | undefined;
668
+ monthly_income?: number | undefined;
669
+ doc?: string | undefined;
670
+ issuing_body?: string | undefined;
671
+ phone?: string | undefined;
672
+ office?: string | undefined;
673
+ civil_status?: string | undefined;
674
+ uf_issuing_body?: string | undefined;
675
+ doc_expiration_date?: string | undefined;
676
+ patrimony?: number | undefined;
677
+ uf_naturalness?: string | undefined;
678
+ residence_situation?: string | undefined;
679
+ months_in_residence?: number | undefined;
680
+ naturalness?: string | undefined;
681
+ pep_relationship?: string | undefined;
682
+ entry_date?: string | undefined;
683
+ doc_issuance_uf?: string | undefined;
684
+ }, {
685
+ number: string;
686
+ nationality: string;
687
+ name: string;
688
+ cep: string;
689
+ cpf: string;
690
+ address: string;
691
+ birth_date: string;
692
+ sex: "masculino" | "feminino";
693
+ mother_name: string;
694
+ district: string;
695
+ city: string;
696
+ state: string;
697
+ cellphone: string;
698
+ email: string;
699
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
700
+ doc_issue_date?: string | undefined;
701
+ complement?: string | undefined;
702
+ monthly_income?: number | undefined;
703
+ doc?: string | undefined;
704
+ issuing_body?: string | undefined;
705
+ phone?: string | undefined;
706
+ office?: string | undefined;
707
+ civil_status?: string | undefined;
708
+ uf_issuing_body?: string | undefined;
709
+ doc_expiration_date?: string | undefined;
710
+ patrimony?: number | undefined;
711
+ uf_naturalness?: string | undefined;
712
+ residence_situation?: string | undefined;
713
+ months_in_residence?: number | undefined;
714
+ naturalness?: string | undefined;
715
+ pep_relationship?: string | undefined;
716
+ entry_date?: string | undefined;
717
+ doc_issuance_uf?: string | undefined;
718
+ }>, "many">>;
719
+ financing_company_qsa: z.ZodOptional<z.ZodArray<z.ZodObject<{
720
+ name: z.ZodString;
721
+ cpf: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
722
+ birth_date: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
723
+ address: z.ZodString;
724
+ number: z.ZodString;
725
+ cep: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
726
+ complement: z.ZodOptional<z.ZodString>;
727
+ cellphone: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
728
+ email: z.ZodEffects<z.ZodString, string, string>;
729
+ district: z.ZodString;
730
+ sex: z.ZodEnum<["masculino", "feminino"]>;
731
+ city: z.ZodString;
732
+ state: z.ZodString;
733
+ mother_name: z.ZodString;
734
+ nationality: z.ZodString;
735
+ office: z.ZodOptional<z.ZodString>;
736
+ phone: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
737
+ civil_status: z.ZodOptional<z.ZodString>;
738
+ residence_situation: z.ZodOptional<z.ZodString>;
739
+ months_in_residence: z.ZodOptional<z.ZodNumber>;
740
+ type_doc: z.ZodOptional<z.ZodEnum<["rg", "cnh", "rne"]>>;
741
+ doc: z.ZodOptional<z.ZodString>;
742
+ issuing_body: z.ZodOptional<z.ZodString>;
743
+ uf_issuing_body: z.ZodOptional<z.ZodString>;
744
+ doc_issue_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
745
+ doc_expiration_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
746
+ monthly_income: z.ZodOptional<z.ZodNumber>;
747
+ patrimony: z.ZodOptional<z.ZodNumber>;
748
+ naturalness: z.ZodOptional<z.ZodString>;
749
+ uf_naturalness: z.ZodOptional<z.ZodString>;
750
+ pep_relationship: z.ZodOptional<z.ZodString>;
751
+ entry_date: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
752
+ doc_issuance_uf: z.ZodOptional<z.ZodString>;
753
+ }, "strict", z.ZodTypeAny, {
754
+ number: string;
755
+ nationality: string;
756
+ name: string;
757
+ cep: string;
758
+ cpf: string;
759
+ address: string;
760
+ birth_date: string;
761
+ sex: "masculino" | "feminino";
762
+ mother_name: string;
763
+ district: string;
764
+ city: string;
765
+ state: string;
766
+ cellphone: string;
767
+ email: string;
768
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
769
+ doc_issue_date?: string | undefined;
770
+ complement?: string | undefined;
771
+ monthly_income?: number | undefined;
772
+ doc?: string | undefined;
773
+ issuing_body?: string | undefined;
774
+ phone?: string | undefined;
775
+ office?: string | undefined;
776
+ civil_status?: string | undefined;
777
+ uf_issuing_body?: string | undefined;
778
+ doc_expiration_date?: string | undefined;
779
+ patrimony?: number | undefined;
780
+ uf_naturalness?: string | undefined;
781
+ residence_situation?: string | undefined;
782
+ months_in_residence?: number | undefined;
783
+ naturalness?: string | undefined;
784
+ pep_relationship?: string | undefined;
785
+ entry_date?: string | undefined;
786
+ doc_issuance_uf?: string | undefined;
787
+ }, {
788
+ number: string;
789
+ nationality: string;
790
+ name: string;
791
+ cep: string;
792
+ cpf: string;
793
+ address: string;
794
+ birth_date: string;
795
+ sex: "masculino" | "feminino";
796
+ mother_name: string;
797
+ district: string;
798
+ city: string;
799
+ state: string;
800
+ cellphone: string;
801
+ email: string;
802
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
803
+ doc_issue_date?: string | undefined;
804
+ complement?: string | undefined;
805
+ monthly_income?: number | undefined;
806
+ doc?: string | undefined;
807
+ issuing_body?: string | undefined;
808
+ phone?: string | undefined;
809
+ office?: string | undefined;
810
+ civil_status?: string | undefined;
811
+ uf_issuing_body?: string | undefined;
812
+ doc_expiration_date?: string | undefined;
813
+ patrimony?: number | undefined;
814
+ uf_naturalness?: string | undefined;
815
+ residence_situation?: string | undefined;
816
+ months_in_residence?: number | undefined;
817
+ naturalness?: string | undefined;
818
+ pep_relationship?: string | undefined;
819
+ entry_date?: string | undefined;
820
+ doc_issuance_uf?: string | undefined;
821
+ }>, "many">>;
822
+ energy_bill_upload: z.ZodObject<{
823
+ url: z.ZodOptional<z.ZodString>;
824
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
825
+ sizeBytes: z.ZodNumber;
826
+ }, "strip", z.ZodTypeAny, {
827
+ mime: "image/jpeg" | "image/png" | "application/pdf";
828
+ sizeBytes: number;
829
+ url?: string | undefined;
830
+ }, {
831
+ mime: "image/jpeg" | "image/png" | "application/pdf";
832
+ sizeBytes: number;
833
+ url?: string | undefined;
834
+ }>;
835
+ account_third_party: z.ZodEnum<["nao_se_aplica", "conjuge", "pai_mae", "filho_filha", "parente", "outro"]>;
836
+ bond_document_upload: z.ZodOptional<z.ZodObject<{
837
+ url: z.ZodOptional<z.ZodString>;
838
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
839
+ sizeBytes: z.ZodNumber;
840
+ }, "strip", z.ZodTypeAny, {
841
+ mime: "image/jpeg" | "image/png" | "application/pdf";
842
+ sizeBytes: number;
843
+ url?: string | undefined;
844
+ }, {
845
+ mime: "image/jpeg" | "image/png" | "application/pdf";
846
+ sizeBytes: number;
847
+ url?: string | undefined;
848
+ }>>;
849
+ document_front_upload: z.ZodObject<{
850
+ url: z.ZodOptional<z.ZodString>;
851
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
852
+ sizeBytes: z.ZodNumber;
853
+ }, "strip", z.ZodTypeAny, {
854
+ mime: "image/jpeg" | "image/png" | "application/pdf";
855
+ sizeBytes: number;
856
+ url?: string | undefined;
857
+ }, {
858
+ mime: "image/jpeg" | "image/png" | "application/pdf";
859
+ sizeBytes: number;
860
+ url?: string | undefined;
861
+ }>;
862
+ document_back_upload: z.ZodObject<{
863
+ url: z.ZodOptional<z.ZodString>;
864
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
865
+ sizeBytes: z.ZodNumber;
866
+ }, "strip", z.ZodTypeAny, {
867
+ mime: "image/jpeg" | "image/png" | "application/pdf";
868
+ sizeBytes: number;
869
+ url?: string | undefined;
870
+ }, {
871
+ mime: "image/jpeg" | "image/png" | "application/pdf";
872
+ sizeBytes: number;
873
+ url?: string | undefined;
874
+ }>;
875
+ rd_re_insurance_toggle: z.ZodDefault<z.ZodBoolean>;
876
+ }, "strict", z.ZodTypeAny, {
877
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
878
+ energy_bill_upload: {
879
+ mime: "image/jpeg" | "image/png" | "application/pdf";
880
+ sizeBytes: number;
881
+ url?: string | undefined;
882
+ };
883
+ document_front_upload: {
884
+ mime: "image/jpeg" | "image/png" | "application/pdf";
885
+ sizeBytes: number;
886
+ url?: string | undefined;
887
+ };
888
+ document_back_upload: {
889
+ mime: "image/jpeg" | "image/png" | "application/pdf";
890
+ sizeBytes: number;
891
+ url?: string | undefined;
892
+ };
893
+ rd_re_insurance_toggle: boolean;
894
+ financing_company: {
895
+ number: string;
896
+ cep: string;
897
+ address: string;
898
+ district: string;
899
+ city: string;
900
+ state: string;
901
+ email: string;
902
+ corporate_name: string;
903
+ foundation_date: string;
904
+ cnpj: string;
905
+ phone: string;
906
+ legal_nature: string;
907
+ complement?: string | undefined;
908
+ monthly_income?: number | undefined;
909
+ economic_activity_group?: string | undefined;
910
+ economic_activity?: string | undefined;
911
+ residence_situation?: string | undefined;
912
+ months_in_residence?: number | undefined;
913
+ capital_social?: number | undefined;
914
+ };
915
+ bond_document_upload?: {
916
+ mime: "image/jpeg" | "image/png" | "application/pdf";
917
+ sizeBytes: number;
918
+ url?: string | undefined;
919
+ } | undefined;
920
+ financing_company_guarantor?: {
921
+ number: string;
922
+ nationality: string;
923
+ name: string;
924
+ cep: string;
925
+ cpf: string;
926
+ address: string;
927
+ birth_date: string;
928
+ sex: "masculino" | "feminino";
929
+ mother_name: string;
930
+ district: string;
931
+ city: string;
932
+ state: string;
933
+ cellphone: string;
934
+ email: string;
935
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
936
+ doc_issue_date?: string | undefined;
937
+ complement?: string | undefined;
938
+ monthly_income?: number | undefined;
939
+ doc?: string | undefined;
940
+ issuing_body?: string | undefined;
941
+ phone?: string | undefined;
942
+ office?: string | undefined;
943
+ civil_status?: string | undefined;
944
+ uf_issuing_body?: string | undefined;
945
+ doc_expiration_date?: string | undefined;
946
+ patrimony?: number | undefined;
947
+ uf_naturalness?: string | undefined;
948
+ residence_situation?: string | undefined;
949
+ months_in_residence?: number | undefined;
950
+ naturalness?: string | undefined;
951
+ pep_relationship?: string | undefined;
952
+ entry_date?: string | undefined;
953
+ doc_issuance_uf?: string | undefined;
954
+ }[] | undefined;
955
+ financing_company_qsa?: {
956
+ number: string;
957
+ nationality: string;
958
+ name: string;
959
+ cep: string;
960
+ cpf: string;
961
+ address: string;
962
+ birth_date: string;
963
+ sex: "masculino" | "feminino";
964
+ mother_name: string;
965
+ district: string;
966
+ city: string;
967
+ state: string;
968
+ cellphone: string;
969
+ email: string;
970
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
971
+ doc_issue_date?: string | undefined;
972
+ complement?: string | undefined;
973
+ monthly_income?: number | undefined;
974
+ doc?: string | undefined;
975
+ issuing_body?: string | undefined;
976
+ phone?: string | undefined;
977
+ office?: string | undefined;
978
+ civil_status?: string | undefined;
979
+ uf_issuing_body?: string | undefined;
980
+ doc_expiration_date?: string | undefined;
981
+ patrimony?: number | undefined;
982
+ uf_naturalness?: string | undefined;
983
+ residence_situation?: string | undefined;
984
+ months_in_residence?: number | undefined;
985
+ naturalness?: string | undefined;
986
+ pep_relationship?: string | undefined;
987
+ entry_date?: string | undefined;
988
+ doc_issuance_uf?: string | undefined;
989
+ }[] | undefined;
990
+ }, {
991
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
992
+ energy_bill_upload: {
993
+ mime: "image/jpeg" | "image/png" | "application/pdf";
994
+ sizeBytes: number;
995
+ url?: string | undefined;
996
+ };
997
+ document_front_upload: {
998
+ mime: "image/jpeg" | "image/png" | "application/pdf";
999
+ sizeBytes: number;
1000
+ url?: string | undefined;
1001
+ };
1002
+ document_back_upload: {
1003
+ mime: "image/jpeg" | "image/png" | "application/pdf";
1004
+ sizeBytes: number;
1005
+ url?: string | undefined;
1006
+ };
1007
+ financing_company: {
1008
+ number: string;
1009
+ cep: string;
1010
+ address: string;
1011
+ district: string;
1012
+ city: string;
1013
+ state: string;
1014
+ email: string;
1015
+ corporate_name: string;
1016
+ foundation_date: string;
1017
+ cnpj: string;
1018
+ phone: string;
1019
+ legal_nature: string;
1020
+ complement?: string | undefined;
1021
+ monthly_income?: number | undefined;
1022
+ economic_activity_group?: string | undefined;
1023
+ economic_activity?: string | undefined;
1024
+ residence_situation?: string | undefined;
1025
+ months_in_residence?: number | undefined;
1026
+ capital_social?: number | undefined;
1027
+ };
1028
+ bond_document_upload?: {
1029
+ mime: "image/jpeg" | "image/png" | "application/pdf";
1030
+ sizeBytes: number;
1031
+ url?: string | undefined;
1032
+ } | undefined;
1033
+ rd_re_insurance_toggle?: boolean | undefined;
1034
+ financing_company_guarantor?: {
1035
+ number: string;
1036
+ nationality: string;
1037
+ name: string;
1038
+ cep: string;
1039
+ cpf: string;
1040
+ address: string;
1041
+ birth_date: string;
1042
+ sex: "masculino" | "feminino";
1043
+ mother_name: string;
1044
+ district: string;
1045
+ city: string;
1046
+ state: string;
1047
+ cellphone: string;
1048
+ email: string;
1049
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
1050
+ doc_issue_date?: string | undefined;
1051
+ complement?: string | undefined;
1052
+ monthly_income?: number | undefined;
1053
+ doc?: string | undefined;
1054
+ issuing_body?: string | undefined;
1055
+ phone?: string | undefined;
1056
+ office?: string | undefined;
1057
+ civil_status?: string | undefined;
1058
+ uf_issuing_body?: string | undefined;
1059
+ doc_expiration_date?: string | undefined;
1060
+ patrimony?: number | undefined;
1061
+ uf_naturalness?: string | undefined;
1062
+ residence_situation?: string | undefined;
1063
+ months_in_residence?: number | undefined;
1064
+ naturalness?: string | undefined;
1065
+ pep_relationship?: string | undefined;
1066
+ entry_date?: string | undefined;
1067
+ doc_issuance_uf?: string | undefined;
1068
+ }[] | undefined;
1069
+ financing_company_qsa?: {
1070
+ number: string;
1071
+ nationality: string;
1072
+ name: string;
1073
+ cep: string;
1074
+ cpf: string;
1075
+ address: string;
1076
+ birth_date: string;
1077
+ sex: "masculino" | "feminino";
1078
+ mother_name: string;
1079
+ district: string;
1080
+ city: string;
1081
+ state: string;
1082
+ cellphone: string;
1083
+ email: string;
1084
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
1085
+ doc_issue_date?: string | undefined;
1086
+ complement?: string | undefined;
1087
+ monthly_income?: number | undefined;
1088
+ doc?: string | undefined;
1089
+ issuing_body?: string | undefined;
1090
+ phone?: string | undefined;
1091
+ office?: string | undefined;
1092
+ civil_status?: string | undefined;
1093
+ uf_issuing_body?: string | undefined;
1094
+ doc_expiration_date?: string | undefined;
1095
+ patrimony?: number | undefined;
1096
+ uf_naturalness?: string | undefined;
1097
+ residence_situation?: string | undefined;
1098
+ months_in_residence?: number | undefined;
1099
+ naturalness?: string | undefined;
1100
+ pep_relationship?: string | undefined;
1101
+ entry_date?: string | undefined;
1102
+ doc_issuance_uf?: string | undefined;
1103
+ }[] | undefined;
1104
+ }>, {
1105
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
1106
+ energy_bill_upload: {
1107
+ mime: "image/jpeg" | "image/png" | "application/pdf";
1108
+ sizeBytes: number;
1109
+ url?: string | undefined;
1110
+ };
1111
+ document_front_upload: {
1112
+ mime: "image/jpeg" | "image/png" | "application/pdf";
1113
+ sizeBytes: number;
1114
+ url?: string | undefined;
1115
+ };
1116
+ document_back_upload: {
1117
+ mime: "image/jpeg" | "image/png" | "application/pdf";
1118
+ sizeBytes: number;
1119
+ url?: string | undefined;
1120
+ };
1121
+ rd_re_insurance_toggle: boolean;
1122
+ financing_company: {
1123
+ number: string;
1124
+ cep: string;
1125
+ address: string;
1126
+ district: string;
1127
+ city: string;
1128
+ state: string;
1129
+ email: string;
1130
+ corporate_name: string;
1131
+ foundation_date: string;
1132
+ cnpj: string;
1133
+ phone: string;
1134
+ legal_nature: string;
1135
+ complement?: string | undefined;
1136
+ monthly_income?: number | undefined;
1137
+ economic_activity_group?: string | undefined;
1138
+ economic_activity?: string | undefined;
1139
+ residence_situation?: string | undefined;
1140
+ months_in_residence?: number | undefined;
1141
+ capital_social?: number | undefined;
1142
+ };
1143
+ bond_document_upload?: {
1144
+ mime: "image/jpeg" | "image/png" | "application/pdf";
1145
+ sizeBytes: number;
1146
+ url?: string | undefined;
1147
+ } | undefined;
1148
+ financing_company_guarantor?: {
1149
+ number: string;
1150
+ nationality: string;
1151
+ name: string;
1152
+ cep: string;
1153
+ cpf: string;
1154
+ address: string;
1155
+ birth_date: string;
1156
+ sex: "masculino" | "feminino";
1157
+ mother_name: string;
1158
+ district: string;
1159
+ city: string;
1160
+ state: string;
1161
+ cellphone: string;
1162
+ email: string;
1163
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
1164
+ doc_issue_date?: string | undefined;
1165
+ complement?: string | undefined;
1166
+ monthly_income?: number | undefined;
1167
+ doc?: string | undefined;
1168
+ issuing_body?: string | undefined;
1169
+ phone?: string | undefined;
1170
+ office?: string | undefined;
1171
+ civil_status?: string | undefined;
1172
+ uf_issuing_body?: string | undefined;
1173
+ doc_expiration_date?: string | undefined;
1174
+ patrimony?: number | undefined;
1175
+ uf_naturalness?: string | undefined;
1176
+ residence_situation?: string | undefined;
1177
+ months_in_residence?: number | undefined;
1178
+ naturalness?: string | undefined;
1179
+ pep_relationship?: string | undefined;
1180
+ entry_date?: string | undefined;
1181
+ doc_issuance_uf?: string | undefined;
1182
+ }[] | undefined;
1183
+ financing_company_qsa?: {
1184
+ number: string;
1185
+ nationality: string;
1186
+ name: string;
1187
+ cep: string;
1188
+ cpf: string;
1189
+ address: string;
1190
+ birth_date: string;
1191
+ sex: "masculino" | "feminino";
1192
+ mother_name: string;
1193
+ district: string;
1194
+ city: string;
1195
+ state: string;
1196
+ cellphone: string;
1197
+ email: string;
1198
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
1199
+ doc_issue_date?: string | undefined;
1200
+ complement?: string | undefined;
1201
+ monthly_income?: number | undefined;
1202
+ doc?: string | undefined;
1203
+ issuing_body?: string | undefined;
1204
+ phone?: string | undefined;
1205
+ office?: string | undefined;
1206
+ civil_status?: string | undefined;
1207
+ uf_issuing_body?: string | undefined;
1208
+ doc_expiration_date?: string | undefined;
1209
+ patrimony?: number | undefined;
1210
+ uf_naturalness?: string | undefined;
1211
+ residence_situation?: string | undefined;
1212
+ months_in_residence?: number | undefined;
1213
+ naturalness?: string | undefined;
1214
+ pep_relationship?: string | undefined;
1215
+ entry_date?: string | undefined;
1216
+ doc_issuance_uf?: string | undefined;
1217
+ }[] | undefined;
1218
+ }, {
1219
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
1220
+ energy_bill_upload: {
1221
+ mime: "image/jpeg" | "image/png" | "application/pdf";
1222
+ sizeBytes: number;
1223
+ url?: string | undefined;
1224
+ };
1225
+ document_front_upload: {
1226
+ mime: "image/jpeg" | "image/png" | "application/pdf";
1227
+ sizeBytes: number;
1228
+ url?: string | undefined;
1229
+ };
1230
+ document_back_upload: {
1231
+ mime: "image/jpeg" | "image/png" | "application/pdf";
1232
+ sizeBytes: number;
1233
+ url?: string | undefined;
1234
+ };
1235
+ financing_company: {
1236
+ number: string;
1237
+ cep: string;
1238
+ address: string;
1239
+ district: string;
1240
+ city: string;
1241
+ state: string;
1242
+ email: string;
1243
+ corporate_name: string;
1244
+ foundation_date: string;
1245
+ cnpj: string;
1246
+ phone: string;
1247
+ legal_nature: string;
1248
+ complement?: string | undefined;
1249
+ monthly_income?: number | undefined;
1250
+ economic_activity_group?: string | undefined;
1251
+ economic_activity?: string | undefined;
1252
+ residence_situation?: string | undefined;
1253
+ months_in_residence?: number | undefined;
1254
+ capital_social?: number | undefined;
1255
+ };
1256
+ bond_document_upload?: {
1257
+ mime: "image/jpeg" | "image/png" | "application/pdf";
1258
+ sizeBytes: number;
1259
+ url?: string | undefined;
1260
+ } | undefined;
1261
+ rd_re_insurance_toggle?: boolean | undefined;
1262
+ financing_company_guarantor?: {
1263
+ number: string;
1264
+ nationality: string;
1265
+ name: string;
1266
+ cep: string;
1267
+ cpf: string;
1268
+ address: string;
1269
+ birth_date: string;
1270
+ sex: "masculino" | "feminino";
1271
+ mother_name: string;
1272
+ district: string;
1273
+ city: string;
1274
+ state: string;
1275
+ cellphone: string;
1276
+ email: string;
1277
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
1278
+ doc_issue_date?: string | undefined;
1279
+ complement?: string | undefined;
1280
+ monthly_income?: number | undefined;
1281
+ doc?: string | undefined;
1282
+ issuing_body?: string | undefined;
1283
+ phone?: string | undefined;
1284
+ office?: string | undefined;
1285
+ civil_status?: string | undefined;
1286
+ uf_issuing_body?: string | undefined;
1287
+ doc_expiration_date?: string | undefined;
1288
+ patrimony?: number | undefined;
1289
+ uf_naturalness?: string | undefined;
1290
+ residence_situation?: string | undefined;
1291
+ months_in_residence?: number | undefined;
1292
+ naturalness?: string | undefined;
1293
+ pep_relationship?: string | undefined;
1294
+ entry_date?: string | undefined;
1295
+ doc_issuance_uf?: string | undefined;
1296
+ }[] | undefined;
1297
+ financing_company_qsa?: {
1298
+ number: string;
1299
+ nationality: string;
1300
+ name: string;
1301
+ cep: string;
1302
+ cpf: string;
1303
+ address: string;
1304
+ birth_date: string;
1305
+ sex: "masculino" | "feminino";
1306
+ mother_name: string;
1307
+ district: string;
1308
+ city: string;
1309
+ state: string;
1310
+ cellphone: string;
1311
+ email: string;
1312
+ type_doc?: "rg" | "cnh" | "rne" | undefined;
1313
+ doc_issue_date?: string | undefined;
1314
+ complement?: string | undefined;
1315
+ monthly_income?: number | undefined;
1316
+ doc?: string | undefined;
1317
+ issuing_body?: string | undefined;
1318
+ phone?: string | undefined;
1319
+ office?: string | undefined;
1320
+ civil_status?: string | undefined;
1321
+ uf_issuing_body?: string | undefined;
1322
+ doc_expiration_date?: string | undefined;
1323
+ patrimony?: number | undefined;
1324
+ uf_naturalness?: string | undefined;
1325
+ residence_situation?: string | undefined;
1326
+ months_in_residence?: number | undefined;
1327
+ naturalness?: string | undefined;
1328
+ pep_relationship?: string | undefined;
1329
+ entry_date?: string | undefined;
1330
+ doc_issuance_uf?: string | undefined;
1331
+ }[] | undefined;
1332
+ }>;
1333
+ type UnifiedPjFicha = z.infer<typeof unifiedPjSchema>;
1334
+
1335
+ export { type UnifiedPjFicha, unifiedPjObject, unifiedPjSchema };