@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,535 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const unifiedPfObject: z.ZodObject<{
4
+ name: z.ZodString;
5
+ cep: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
6
+ cpf: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
7
+ address: z.ZodString;
8
+ birth_date: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
9
+ number: z.ZodString;
10
+ sex: z.ZodEnum<["masculino", "feminino"]>;
11
+ complement: z.ZodOptional<z.ZodString>;
12
+ mother_name: z.ZodString;
13
+ district: z.ZodString;
14
+ energy_account_in_requester_name: z.ZodString;
15
+ city: z.ZodString;
16
+ energy_bill_owner_document: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
17
+ state: z.ZodString;
18
+ nationality: z.ZodString;
19
+ cellphone: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
20
+ email: z.ZodEffects<z.ZodString, string, string>;
21
+ monthly_income: z.ZodNumber;
22
+ profession: z.ZodString;
23
+ type_doc: z.ZodEnum<["rg", "cnh", "rne"]>;
24
+ doc: z.ZodString;
25
+ issuing_body: z.ZodString;
26
+ doc_issue_date: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
27
+ residence_situation: z.ZodOptional<z.ZodString>;
28
+ months_in_residence: z.ZodOptional<z.ZodNumber>;
29
+ is_installation_at_requester: z.ZodOptional<z.ZodString>;
30
+ civil_status: z.ZodOptional<z.ZodString>;
31
+ uf_naturalness: z.ZodOptional<z.ZodString>;
32
+ naturalness: z.ZodOptional<z.ZodString>;
33
+ nature_of_occupation: z.ZodOptional<z.ZodString>;
34
+ company_time: z.ZodOptional<z.ZodNumber>;
35
+ cnpj_proprietary: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
36
+ equity_value: z.ZodOptional<z.ZodNumber>;
37
+ emitting_state: z.ZodOptional<z.ZodString>;
38
+ pep_relationship: z.ZodOptional<z.ZodString>;
39
+ energy_bill_upload: z.ZodObject<{
40
+ url: z.ZodOptional<z.ZodString>;
41
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
42
+ sizeBytes: z.ZodNumber;
43
+ }, "strip", z.ZodTypeAny, {
44
+ mime: "image/jpeg" | "image/png" | "application/pdf";
45
+ sizeBytes: number;
46
+ url?: string | undefined;
47
+ }, {
48
+ mime: "image/jpeg" | "image/png" | "application/pdf";
49
+ sizeBytes: number;
50
+ url?: string | undefined;
51
+ }>;
52
+ account_third_party: z.ZodEnum<["nao_se_aplica", "conjuge", "pai_mae", "filho_filha", "parente", "outro"]>;
53
+ bond_document_upload: z.ZodOptional<z.ZodObject<{
54
+ url: z.ZodOptional<z.ZodString>;
55
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
56
+ sizeBytes: z.ZodNumber;
57
+ }, "strip", z.ZodTypeAny, {
58
+ mime: "image/jpeg" | "image/png" | "application/pdf";
59
+ sizeBytes: number;
60
+ url?: string | undefined;
61
+ }, {
62
+ mime: "image/jpeg" | "image/png" | "application/pdf";
63
+ sizeBytes: number;
64
+ url?: string | undefined;
65
+ }>>;
66
+ document_front_upload: z.ZodObject<{
67
+ url: z.ZodOptional<z.ZodString>;
68
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
69
+ sizeBytes: z.ZodNumber;
70
+ }, "strip", z.ZodTypeAny, {
71
+ mime: "image/jpeg" | "image/png" | "application/pdf";
72
+ sizeBytes: number;
73
+ url?: string | undefined;
74
+ }, {
75
+ mime: "image/jpeg" | "image/png" | "application/pdf";
76
+ sizeBytes: number;
77
+ url?: string | undefined;
78
+ }>;
79
+ document_back_upload: z.ZodObject<{
80
+ url: z.ZodOptional<z.ZodString>;
81
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
82
+ sizeBytes: z.ZodNumber;
83
+ }, "strip", z.ZodTypeAny, {
84
+ mime: "image/jpeg" | "image/png" | "application/pdf";
85
+ sizeBytes: number;
86
+ url?: string | undefined;
87
+ }, {
88
+ mime: "image/jpeg" | "image/png" | "application/pdf";
89
+ sizeBytes: number;
90
+ url?: string | undefined;
91
+ }>;
92
+ rd_re_insurance_toggle: z.ZodDefault<z.ZodBoolean>;
93
+ }, "strip", z.ZodTypeAny, {
94
+ number: string;
95
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
96
+ type_doc: "rg" | "cnh" | "rne";
97
+ doc_issue_date: string;
98
+ nationality: string;
99
+ name: string;
100
+ cep: string;
101
+ cpf: string;
102
+ address: string;
103
+ birth_date: string;
104
+ sex: "masculino" | "feminino";
105
+ mother_name: string;
106
+ district: string;
107
+ energy_account_in_requester_name: string;
108
+ city: string;
109
+ state: string;
110
+ cellphone: string;
111
+ email: string;
112
+ monthly_income: number;
113
+ profession: string;
114
+ doc: string;
115
+ issuing_body: string;
116
+ energy_bill_upload: {
117
+ mime: "image/jpeg" | "image/png" | "application/pdf";
118
+ sizeBytes: number;
119
+ url?: string | undefined;
120
+ };
121
+ document_front_upload: {
122
+ mime: "image/jpeg" | "image/png" | "application/pdf";
123
+ sizeBytes: number;
124
+ url?: string | undefined;
125
+ };
126
+ document_back_upload: {
127
+ mime: "image/jpeg" | "image/png" | "application/pdf";
128
+ sizeBytes: number;
129
+ url?: string | undefined;
130
+ };
131
+ rd_re_insurance_toggle: boolean;
132
+ bond_document_upload?: {
133
+ mime: "image/jpeg" | "image/png" | "application/pdf";
134
+ sizeBytes: number;
135
+ url?: string | undefined;
136
+ } | undefined;
137
+ nature_of_occupation?: string | undefined;
138
+ cnpj_proprietary?: string | undefined;
139
+ complement?: string | undefined;
140
+ energy_bill_owner_document?: string | undefined;
141
+ civil_status?: string | undefined;
142
+ uf_naturalness?: string | undefined;
143
+ residence_situation?: string | undefined;
144
+ months_in_residence?: number | undefined;
145
+ is_installation_at_requester?: string | undefined;
146
+ naturalness?: string | undefined;
147
+ company_time?: number | undefined;
148
+ equity_value?: number | undefined;
149
+ emitting_state?: string | undefined;
150
+ pep_relationship?: string | undefined;
151
+ }, {
152
+ number: string;
153
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
154
+ type_doc: "rg" | "cnh" | "rne";
155
+ doc_issue_date: string;
156
+ nationality: string;
157
+ name: string;
158
+ cep: string;
159
+ cpf: string;
160
+ address: string;
161
+ birth_date: string;
162
+ sex: "masculino" | "feminino";
163
+ mother_name: string;
164
+ district: string;
165
+ energy_account_in_requester_name: string;
166
+ city: string;
167
+ state: string;
168
+ cellphone: string;
169
+ email: string;
170
+ monthly_income: number;
171
+ profession: string;
172
+ doc: string;
173
+ issuing_body: string;
174
+ energy_bill_upload: {
175
+ mime: "image/jpeg" | "image/png" | "application/pdf";
176
+ sizeBytes: number;
177
+ url?: string | undefined;
178
+ };
179
+ document_front_upload: {
180
+ mime: "image/jpeg" | "image/png" | "application/pdf";
181
+ sizeBytes: number;
182
+ url?: string | undefined;
183
+ };
184
+ document_back_upload: {
185
+ mime: "image/jpeg" | "image/png" | "application/pdf";
186
+ sizeBytes: number;
187
+ url?: string | undefined;
188
+ };
189
+ bond_document_upload?: {
190
+ mime: "image/jpeg" | "image/png" | "application/pdf";
191
+ sizeBytes: number;
192
+ url?: string | undefined;
193
+ } | undefined;
194
+ nature_of_occupation?: string | undefined;
195
+ cnpj_proprietary?: string | undefined;
196
+ complement?: string | undefined;
197
+ energy_bill_owner_document?: string | undefined;
198
+ rd_re_insurance_toggle?: boolean | undefined;
199
+ civil_status?: string | undefined;
200
+ uf_naturalness?: string | undefined;
201
+ residence_situation?: string | undefined;
202
+ months_in_residence?: number | undefined;
203
+ is_installation_at_requester?: string | undefined;
204
+ naturalness?: string | undefined;
205
+ company_time?: number | undefined;
206
+ equity_value?: number | undefined;
207
+ emitting_state?: string | undefined;
208
+ pep_relationship?: string | undefined;
209
+ }>;
210
+ declare const unifiedPfSchema: z.ZodEffects<z.ZodObject<{
211
+ name: z.ZodString;
212
+ cep: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
213
+ cpf: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
214
+ address: z.ZodString;
215
+ birth_date: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
216
+ number: z.ZodString;
217
+ sex: z.ZodEnum<["masculino", "feminino"]>;
218
+ complement: z.ZodOptional<z.ZodString>;
219
+ mother_name: z.ZodString;
220
+ district: z.ZodString;
221
+ energy_account_in_requester_name: z.ZodString;
222
+ city: z.ZodString;
223
+ energy_bill_owner_document: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
224
+ state: z.ZodString;
225
+ nationality: z.ZodString;
226
+ cellphone: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
227
+ email: z.ZodEffects<z.ZodString, string, string>;
228
+ monthly_income: z.ZodNumber;
229
+ profession: z.ZodString;
230
+ type_doc: z.ZodEnum<["rg", "cnh", "rne"]>;
231
+ doc: z.ZodString;
232
+ issuing_body: z.ZodString;
233
+ doc_issue_date: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>;
234
+ residence_situation: z.ZodOptional<z.ZodString>;
235
+ months_in_residence: z.ZodOptional<z.ZodNumber>;
236
+ is_installation_at_requester: z.ZodOptional<z.ZodString>;
237
+ civil_status: z.ZodOptional<z.ZodString>;
238
+ uf_naturalness: z.ZodOptional<z.ZodString>;
239
+ naturalness: z.ZodOptional<z.ZodString>;
240
+ nature_of_occupation: z.ZodOptional<z.ZodString>;
241
+ company_time: z.ZodOptional<z.ZodNumber>;
242
+ cnpj_proprietary: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
243
+ equity_value: z.ZodOptional<z.ZodNumber>;
244
+ emitting_state: z.ZodOptional<z.ZodString>;
245
+ pep_relationship: z.ZodOptional<z.ZodString>;
246
+ energy_bill_upload: z.ZodObject<{
247
+ url: z.ZodOptional<z.ZodString>;
248
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
249
+ sizeBytes: z.ZodNumber;
250
+ }, "strip", z.ZodTypeAny, {
251
+ mime: "image/jpeg" | "image/png" | "application/pdf";
252
+ sizeBytes: number;
253
+ url?: string | undefined;
254
+ }, {
255
+ mime: "image/jpeg" | "image/png" | "application/pdf";
256
+ sizeBytes: number;
257
+ url?: string | undefined;
258
+ }>;
259
+ account_third_party: z.ZodEnum<["nao_se_aplica", "conjuge", "pai_mae", "filho_filha", "parente", "outro"]>;
260
+ bond_document_upload: z.ZodOptional<z.ZodObject<{
261
+ url: z.ZodOptional<z.ZodString>;
262
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
263
+ sizeBytes: z.ZodNumber;
264
+ }, "strip", z.ZodTypeAny, {
265
+ mime: "image/jpeg" | "image/png" | "application/pdf";
266
+ sizeBytes: number;
267
+ url?: string | undefined;
268
+ }, {
269
+ mime: "image/jpeg" | "image/png" | "application/pdf";
270
+ sizeBytes: number;
271
+ url?: string | undefined;
272
+ }>>;
273
+ document_front_upload: z.ZodObject<{
274
+ url: z.ZodOptional<z.ZodString>;
275
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
276
+ sizeBytes: z.ZodNumber;
277
+ }, "strip", z.ZodTypeAny, {
278
+ mime: "image/jpeg" | "image/png" | "application/pdf";
279
+ sizeBytes: number;
280
+ url?: string | undefined;
281
+ }, {
282
+ mime: "image/jpeg" | "image/png" | "application/pdf";
283
+ sizeBytes: number;
284
+ url?: string | undefined;
285
+ }>;
286
+ document_back_upload: z.ZodObject<{
287
+ url: z.ZodOptional<z.ZodString>;
288
+ mime: z.ZodEnum<["image/jpeg", "image/png", "application/pdf"]>;
289
+ sizeBytes: z.ZodNumber;
290
+ }, "strip", z.ZodTypeAny, {
291
+ mime: "image/jpeg" | "image/png" | "application/pdf";
292
+ sizeBytes: number;
293
+ url?: string | undefined;
294
+ }, {
295
+ mime: "image/jpeg" | "image/png" | "application/pdf";
296
+ sizeBytes: number;
297
+ url?: string | undefined;
298
+ }>;
299
+ rd_re_insurance_toggle: z.ZodDefault<z.ZodBoolean>;
300
+ }, "strict", z.ZodTypeAny, {
301
+ number: string;
302
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
303
+ type_doc: "rg" | "cnh" | "rne";
304
+ doc_issue_date: string;
305
+ nationality: string;
306
+ name: string;
307
+ cep: string;
308
+ cpf: string;
309
+ address: string;
310
+ birth_date: string;
311
+ sex: "masculino" | "feminino";
312
+ mother_name: string;
313
+ district: string;
314
+ energy_account_in_requester_name: string;
315
+ city: string;
316
+ state: string;
317
+ cellphone: string;
318
+ email: string;
319
+ monthly_income: number;
320
+ profession: string;
321
+ doc: string;
322
+ issuing_body: string;
323
+ energy_bill_upload: {
324
+ mime: "image/jpeg" | "image/png" | "application/pdf";
325
+ sizeBytes: number;
326
+ url?: string | undefined;
327
+ };
328
+ document_front_upload: {
329
+ mime: "image/jpeg" | "image/png" | "application/pdf";
330
+ sizeBytes: number;
331
+ url?: string | undefined;
332
+ };
333
+ document_back_upload: {
334
+ mime: "image/jpeg" | "image/png" | "application/pdf";
335
+ sizeBytes: number;
336
+ url?: string | undefined;
337
+ };
338
+ rd_re_insurance_toggle: boolean;
339
+ bond_document_upload?: {
340
+ mime: "image/jpeg" | "image/png" | "application/pdf";
341
+ sizeBytes: number;
342
+ url?: string | undefined;
343
+ } | undefined;
344
+ nature_of_occupation?: string | undefined;
345
+ cnpj_proprietary?: string | undefined;
346
+ complement?: string | undefined;
347
+ energy_bill_owner_document?: string | undefined;
348
+ civil_status?: string | undefined;
349
+ uf_naturalness?: string | undefined;
350
+ residence_situation?: string | undefined;
351
+ months_in_residence?: number | undefined;
352
+ is_installation_at_requester?: string | undefined;
353
+ naturalness?: string | undefined;
354
+ company_time?: number | undefined;
355
+ equity_value?: number | undefined;
356
+ emitting_state?: string | undefined;
357
+ pep_relationship?: string | undefined;
358
+ }, {
359
+ number: string;
360
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
361
+ type_doc: "rg" | "cnh" | "rne";
362
+ doc_issue_date: string;
363
+ nationality: string;
364
+ name: string;
365
+ cep: string;
366
+ cpf: string;
367
+ address: string;
368
+ birth_date: string;
369
+ sex: "masculino" | "feminino";
370
+ mother_name: string;
371
+ district: string;
372
+ energy_account_in_requester_name: string;
373
+ city: string;
374
+ state: string;
375
+ cellphone: string;
376
+ email: string;
377
+ monthly_income: number;
378
+ profession: string;
379
+ doc: string;
380
+ issuing_body: string;
381
+ energy_bill_upload: {
382
+ mime: "image/jpeg" | "image/png" | "application/pdf";
383
+ sizeBytes: number;
384
+ url?: string | undefined;
385
+ };
386
+ document_front_upload: {
387
+ mime: "image/jpeg" | "image/png" | "application/pdf";
388
+ sizeBytes: number;
389
+ url?: string | undefined;
390
+ };
391
+ document_back_upload: {
392
+ mime: "image/jpeg" | "image/png" | "application/pdf";
393
+ sizeBytes: number;
394
+ url?: string | undefined;
395
+ };
396
+ bond_document_upload?: {
397
+ mime: "image/jpeg" | "image/png" | "application/pdf";
398
+ sizeBytes: number;
399
+ url?: string | undefined;
400
+ } | undefined;
401
+ nature_of_occupation?: string | undefined;
402
+ cnpj_proprietary?: string | undefined;
403
+ complement?: string | undefined;
404
+ energy_bill_owner_document?: string | undefined;
405
+ rd_re_insurance_toggle?: boolean | undefined;
406
+ civil_status?: string | undefined;
407
+ uf_naturalness?: string | undefined;
408
+ residence_situation?: string | undefined;
409
+ months_in_residence?: number | undefined;
410
+ is_installation_at_requester?: string | undefined;
411
+ naturalness?: string | undefined;
412
+ company_time?: number | undefined;
413
+ equity_value?: number | undefined;
414
+ emitting_state?: string | undefined;
415
+ pep_relationship?: string | undefined;
416
+ }>, {
417
+ number: string;
418
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
419
+ type_doc: "rg" | "cnh" | "rne";
420
+ doc_issue_date: string;
421
+ nationality: string;
422
+ name: string;
423
+ cep: string;
424
+ cpf: string;
425
+ address: string;
426
+ birth_date: string;
427
+ sex: "masculino" | "feminino";
428
+ mother_name: string;
429
+ district: string;
430
+ energy_account_in_requester_name: string;
431
+ city: string;
432
+ state: string;
433
+ cellphone: string;
434
+ email: string;
435
+ monthly_income: number;
436
+ profession: string;
437
+ doc: string;
438
+ issuing_body: string;
439
+ energy_bill_upload: {
440
+ mime: "image/jpeg" | "image/png" | "application/pdf";
441
+ sizeBytes: number;
442
+ url?: string | undefined;
443
+ };
444
+ document_front_upload: {
445
+ mime: "image/jpeg" | "image/png" | "application/pdf";
446
+ sizeBytes: number;
447
+ url?: string | undefined;
448
+ };
449
+ document_back_upload: {
450
+ mime: "image/jpeg" | "image/png" | "application/pdf";
451
+ sizeBytes: number;
452
+ url?: string | undefined;
453
+ };
454
+ rd_re_insurance_toggle: boolean;
455
+ bond_document_upload?: {
456
+ mime: "image/jpeg" | "image/png" | "application/pdf";
457
+ sizeBytes: number;
458
+ url?: string | undefined;
459
+ } | undefined;
460
+ nature_of_occupation?: string | undefined;
461
+ cnpj_proprietary?: string | undefined;
462
+ complement?: string | undefined;
463
+ energy_bill_owner_document?: string | undefined;
464
+ civil_status?: string | undefined;
465
+ uf_naturalness?: string | undefined;
466
+ residence_situation?: string | undefined;
467
+ months_in_residence?: number | undefined;
468
+ is_installation_at_requester?: string | undefined;
469
+ naturalness?: string | undefined;
470
+ company_time?: number | undefined;
471
+ equity_value?: number | undefined;
472
+ emitting_state?: string | undefined;
473
+ pep_relationship?: string | undefined;
474
+ }, {
475
+ number: string;
476
+ account_third_party: "nao_se_aplica" | "conjuge" | "pai_mae" | "filho_filha" | "parente" | "outro";
477
+ type_doc: "rg" | "cnh" | "rne";
478
+ doc_issue_date: string;
479
+ nationality: string;
480
+ name: string;
481
+ cep: string;
482
+ cpf: string;
483
+ address: string;
484
+ birth_date: string;
485
+ sex: "masculino" | "feminino";
486
+ mother_name: string;
487
+ district: string;
488
+ energy_account_in_requester_name: string;
489
+ city: string;
490
+ state: string;
491
+ cellphone: string;
492
+ email: string;
493
+ monthly_income: number;
494
+ profession: string;
495
+ doc: string;
496
+ issuing_body: string;
497
+ energy_bill_upload: {
498
+ mime: "image/jpeg" | "image/png" | "application/pdf";
499
+ sizeBytes: number;
500
+ url?: string | undefined;
501
+ };
502
+ document_front_upload: {
503
+ mime: "image/jpeg" | "image/png" | "application/pdf";
504
+ sizeBytes: number;
505
+ url?: string | undefined;
506
+ };
507
+ document_back_upload: {
508
+ mime: "image/jpeg" | "image/png" | "application/pdf";
509
+ sizeBytes: number;
510
+ url?: string | undefined;
511
+ };
512
+ bond_document_upload?: {
513
+ mime: "image/jpeg" | "image/png" | "application/pdf";
514
+ sizeBytes: number;
515
+ url?: string | undefined;
516
+ } | undefined;
517
+ nature_of_occupation?: string | undefined;
518
+ cnpj_proprietary?: string | undefined;
519
+ complement?: string | undefined;
520
+ energy_bill_owner_document?: string | undefined;
521
+ rd_re_insurance_toggle?: boolean | undefined;
522
+ civil_status?: string | undefined;
523
+ uf_naturalness?: string | undefined;
524
+ residence_situation?: string | undefined;
525
+ months_in_residence?: number | undefined;
526
+ is_installation_at_requester?: string | undefined;
527
+ naturalness?: string | undefined;
528
+ company_time?: number | undefined;
529
+ equity_value?: number | undefined;
530
+ emitting_state?: string | undefined;
531
+ pep_relationship?: string | undefined;
532
+ }>;
533
+ type UnifiedPfFicha = z.infer<typeof unifiedPfSchema>;
534
+
535
+ export { type UnifiedPfFicha, unifiedPfObject, unifiedPfSchema };