@_henriquewilson/gabirubi-domain 1.4.0 → 1.4.1

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.
Files changed (45) hide show
  1. package/dist/model/correios/additional-service.d.mts +4 -4
  2. package/dist/model/correios/additional-service.d.ts +4 -4
  3. package/dist/model/correios/correios.d.mts +20 -20
  4. package/dist/model/correios/correios.d.ts +20 -20
  5. package/dist/model/correios/price.d.mts +24 -24
  6. package/dist/model/correios/price.d.ts +24 -24
  7. package/dist/model/integrada/order.d.mts +177 -177
  8. package/dist/model/integrada/order.d.ts +177 -177
  9. package/dist/model/intercom/conversation.d.mts +325 -325
  10. package/dist/model/intercom/conversation.d.ts +325 -325
  11. package/dist/model/intercom/hook.d.mts +3209 -3209
  12. package/dist/model/intercom/hook.d.ts +3209 -3209
  13. package/dist/model/iugu/iugu-invoice.d.mts +36 -36
  14. package/dist/model/iugu/iugu-invoice.d.ts +36 -36
  15. package/dist/model/journey.d.mts +1 -1
  16. package/dist/model/journey.d.ts +1 -1
  17. package/dist/model/melhorenvio/calculate.d.mts +10 -10
  18. package/dist/model/melhorenvio/calculate.d.ts +10 -10
  19. package/dist/model/melhorenvio/order.d.mts +40 -40
  20. package/dist/model/melhorenvio/order.d.ts +40 -40
  21. package/dist/model/melhorenvio/service.d.mts +36 -36
  22. package/dist/model/melhorenvio/service.d.ts +36 -36
  23. package/dist/model/store/shipping.d.mts +30 -30
  24. package/dist/model/store/shipping.d.ts +30 -30
  25. package/dist/model/subscription.model.d.mts +219 -214
  26. package/dist/model/subscription.model.d.ts +219 -214
  27. package/dist/model/subscription.model.js +2 -1
  28. package/dist/model/subscription.model.js.map +1 -1
  29. package/dist/model/subscription.model.mjs +2 -1
  30. package/dist/model/subscription.model.mjs.map +1 -1
  31. package/dist/model/user.model.d.mts +5 -2
  32. package/dist/model/user.model.d.ts +5 -2
  33. package/dist/model/user.model.js +2 -1
  34. package/dist/model/user.model.js.map +1 -1
  35. package/dist/model/user.model.mjs +2 -1
  36. package/dist/model/user.model.mjs.map +1 -1
  37. package/dist/test/subscription.test.js +2 -1
  38. package/dist/test/subscription.test.js.map +1 -1
  39. package/dist/test/subscription.test.mjs +2 -1
  40. package/dist/test/subscription.test.mjs.map +1 -1
  41. package/dist/test/user.test.js +2 -1
  42. package/dist/test/user.test.js.map +1 -1
  43. package/dist/test/user.test.mjs +2 -1
  44. package/dist/test/user.test.mjs.map +1 -1
  45. package/package.json +1 -1
@@ -80,14 +80,14 @@ declare const AdditionalServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
80
80
  mensagem: z.ZodOptional<z.ZodString>;
81
81
  }>, "strip", z.ZodTypeAny, {
82
82
  id: string | number;
83
- nome: string;
84
- tipo: string;
85
83
  dtIniVigencia: string;
86
84
  dtFimVigencia: string;
87
85
  codigo: string;
86
+ nome: string;
88
87
  sigla: string;
89
88
  sgPais: string;
90
89
  preco: number;
90
+ tipo: string;
91
91
  coIndicador: string;
92
92
  noIndicador: string;
93
93
  sgIndicador: string;
@@ -109,14 +109,14 @@ declare const AdditionalServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
109
109
  vlMaxDeclarado?: number | undefined;
110
110
  mensagem?: string | undefined;
111
111
  }, {
112
- nome: string;
113
- tipo: string;
114
112
  dtIniVigencia: string;
115
113
  dtFimVigencia: string;
116
114
  codigo: string;
115
+ nome: string;
117
116
  sigla: string;
118
117
  sgPais: string;
119
118
  preco: number;
119
+ tipo: string;
120
120
  coIndicador: string;
121
121
  noIndicador: string;
122
122
  sgIndicador: string;
@@ -80,14 +80,14 @@ declare const AdditionalServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
80
80
  mensagem: z.ZodOptional<z.ZodString>;
81
81
  }>, "strip", z.ZodTypeAny, {
82
82
  id: string | number;
83
- nome: string;
84
- tipo: string;
85
83
  dtIniVigencia: string;
86
84
  dtFimVigencia: string;
87
85
  codigo: string;
86
+ nome: string;
88
87
  sigla: string;
89
88
  sgPais: string;
90
89
  preco: number;
90
+ tipo: string;
91
91
  coIndicador: string;
92
92
  noIndicador: string;
93
93
  sgIndicador: string;
@@ -109,14 +109,14 @@ declare const AdditionalServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
109
109
  vlMaxDeclarado?: number | undefined;
110
110
  mensagem?: string | undefined;
111
111
  }, {
112
- nome: string;
113
- tipo: string;
114
112
  dtIniVigencia: string;
115
113
  dtFimVigencia: string;
116
114
  codigo: string;
115
+ nome: string;
117
116
  sigla: string;
118
117
  sgPais: string;
119
118
  preco: number;
119
+ tipo: string;
120
120
  coIndicador: string;
121
121
  noIndicador: string;
122
122
  sgIndicador: string;
@@ -61,14 +61,14 @@ declare const ServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
61
61
  mensagem: z.ZodOptional<z.ZodString>;
62
62
  }>, "strip", z.ZodTypeAny, {
63
63
  id: string | number;
64
- nome: string;
65
- tipo: string;
66
64
  dtIniVigencia: string;
67
65
  dtFimVigencia: string;
68
66
  codigo: string;
67
+ nome: string;
69
68
  sigla: string;
70
69
  sgPais: string;
71
70
  preco: number;
71
+ tipo: string;
72
72
  coIndicador: string;
73
73
  noIndicador: string;
74
74
  sgIndicador: string;
@@ -90,14 +90,14 @@ declare const ServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
90
90
  vlMaxDeclarado?: number | undefined;
91
91
  mensagem?: string | undefined;
92
92
  }, {
93
- nome: string;
94
- tipo: string;
95
93
  dtIniVigencia: string;
96
94
  dtFimVigencia: string;
97
95
  codigo: string;
96
+ nome: string;
98
97
  sigla: string;
99
98
  sgPais: string;
100
99
  preco: number;
100
+ tipo: string;
101
101
  coIndicador: string;
102
102
  noIndicador: string;
103
103
  sgIndicador: string;
@@ -131,14 +131,14 @@ declare const ServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
131
131
  order?: number | null | undefined;
132
132
  additionalServices?: {
133
133
  id: string | number;
134
- nome: string;
135
- tipo: string;
136
134
  dtIniVigencia: string;
137
135
  dtFimVigencia: string;
138
136
  codigo: string;
137
+ nome: string;
139
138
  sigla: string;
140
139
  sgPais: string;
141
140
  preco: number;
141
+ tipo: string;
142
142
  coIndicador: string;
143
143
  noIndicador: string;
144
144
  sgIndicador: string;
@@ -170,14 +170,14 @@ declare const ServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
170
170
  updatedAt?: unknown;
171
171
  order?: number | null | undefined;
172
172
  additionalServices?: {
173
- nome: string;
174
- tipo: string;
175
173
  dtIniVigencia: string;
176
174
  dtFimVigencia: string;
177
175
  codigo: string;
176
+ nome: string;
178
177
  sigla: string;
179
178
  sgPais: string;
180
179
  preco: number;
180
+ tipo: string;
181
181
  coIndicador: string;
182
182
  noIndicador: string;
183
183
  sgIndicador: string;
@@ -279,14 +279,14 @@ declare const rootSchema: z.ZodObject<{
279
279
  mensagem: z.ZodOptional<z.ZodString>;
280
280
  }>, "strip", z.ZodTypeAny, {
281
281
  id: string | number;
282
- nome: string;
283
- tipo: string;
284
282
  dtIniVigencia: string;
285
283
  dtFimVigencia: string;
286
284
  codigo: string;
285
+ nome: string;
287
286
  sigla: string;
288
287
  sgPais: string;
289
288
  preco: number;
289
+ tipo: string;
290
290
  coIndicador: string;
291
291
  noIndicador: string;
292
292
  sgIndicador: string;
@@ -308,14 +308,14 @@ declare const rootSchema: z.ZodObject<{
308
308
  vlMaxDeclarado?: number | undefined;
309
309
  mensagem?: string | undefined;
310
310
  }, {
311
- nome: string;
312
- tipo: string;
313
311
  dtIniVigencia: string;
314
312
  dtFimVigencia: string;
315
313
  codigo: string;
314
+ nome: string;
316
315
  sigla: string;
317
316
  sgPais: string;
318
317
  preco: number;
318
+ tipo: string;
319
319
  coIndicador: string;
320
320
  noIndicador: string;
321
321
  sgIndicador: string;
@@ -349,14 +349,14 @@ declare const rootSchema: z.ZodObject<{
349
349
  order?: number | null | undefined;
350
350
  additionalServices?: {
351
351
  id: string | number;
352
- nome: string;
353
- tipo: string;
354
352
  dtIniVigencia: string;
355
353
  dtFimVigencia: string;
356
354
  codigo: string;
355
+ nome: string;
357
356
  sigla: string;
358
357
  sgPais: string;
359
358
  preco: number;
359
+ tipo: string;
360
360
  coIndicador: string;
361
361
  noIndicador: string;
362
362
  sgIndicador: string;
@@ -388,14 +388,14 @@ declare const rootSchema: z.ZodObject<{
388
388
  updatedAt?: unknown;
389
389
  order?: number | null | undefined;
390
390
  additionalServices?: {
391
- nome: string;
392
- tipo: string;
393
391
  dtIniVigencia: string;
394
392
  dtFimVigencia: string;
395
393
  codigo: string;
394
+ nome: string;
396
395
  sigla: string;
397
396
  sgPais: string;
398
397
  preco: number;
398
+ tipo: string;
399
399
  coIndicador: string;
400
400
  noIndicador: string;
401
401
  sgIndicador: string;
@@ -447,14 +447,14 @@ declare const rootSchema: z.ZodObject<{
447
447
  order?: number | null | undefined;
448
448
  additionalServices?: {
449
449
  id: string | number;
450
- nome: string;
451
- tipo: string;
452
450
  dtIniVigencia: string;
453
451
  dtFimVigencia: string;
454
452
  codigo: string;
453
+ nome: string;
455
454
  sigla: string;
456
455
  sgPais: string;
457
456
  preco: number;
457
+ tipo: string;
458
458
  coIndicador: string;
459
459
  noIndicador: string;
460
460
  sgIndicador: string;
@@ -494,14 +494,14 @@ declare const rootSchema: z.ZodObject<{
494
494
  updatedAt?: unknown;
495
495
  order?: number | null | undefined;
496
496
  additionalServices?: {
497
- nome: string;
498
- tipo: string;
499
497
  dtIniVigencia: string;
500
498
  dtFimVigencia: string;
501
499
  codigo: string;
500
+ nome: string;
502
501
  sigla: string;
503
502
  sgPais: string;
504
503
  preco: number;
504
+ tipo: string;
505
505
  coIndicador: string;
506
506
  noIndicador: string;
507
507
  sgIndicador: string;
@@ -61,14 +61,14 @@ declare const ServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
61
61
  mensagem: z.ZodOptional<z.ZodString>;
62
62
  }>, "strip", z.ZodTypeAny, {
63
63
  id: string | number;
64
- nome: string;
65
- tipo: string;
66
64
  dtIniVigencia: string;
67
65
  dtFimVigencia: string;
68
66
  codigo: string;
67
+ nome: string;
69
68
  sigla: string;
70
69
  sgPais: string;
71
70
  preco: number;
71
+ tipo: string;
72
72
  coIndicador: string;
73
73
  noIndicador: string;
74
74
  sgIndicador: string;
@@ -90,14 +90,14 @@ declare const ServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
90
90
  vlMaxDeclarado?: number | undefined;
91
91
  mensagem?: string | undefined;
92
92
  }, {
93
- nome: string;
94
- tipo: string;
95
93
  dtIniVigencia: string;
96
94
  dtFimVigencia: string;
97
95
  codigo: string;
96
+ nome: string;
98
97
  sigla: string;
99
98
  sgPais: string;
100
99
  preco: number;
100
+ tipo: string;
101
101
  coIndicador: string;
102
102
  noIndicador: string;
103
103
  sgIndicador: string;
@@ -131,14 +131,14 @@ declare const ServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
131
131
  order?: number | null | undefined;
132
132
  additionalServices?: {
133
133
  id: string | number;
134
- nome: string;
135
- tipo: string;
136
134
  dtIniVigencia: string;
137
135
  dtFimVigencia: string;
138
136
  codigo: string;
137
+ nome: string;
139
138
  sigla: string;
140
139
  sgPais: string;
141
140
  preco: number;
141
+ tipo: string;
142
142
  coIndicador: string;
143
143
  noIndicador: string;
144
144
  sgIndicador: string;
@@ -170,14 +170,14 @@ declare const ServiceSchema: z.ZodObject<z.objectUtil.extendShape<{
170
170
  updatedAt?: unknown;
171
171
  order?: number | null | undefined;
172
172
  additionalServices?: {
173
- nome: string;
174
- tipo: string;
175
173
  dtIniVigencia: string;
176
174
  dtFimVigencia: string;
177
175
  codigo: string;
176
+ nome: string;
178
177
  sigla: string;
179
178
  sgPais: string;
180
179
  preco: number;
180
+ tipo: string;
181
181
  coIndicador: string;
182
182
  noIndicador: string;
183
183
  sgIndicador: string;
@@ -279,14 +279,14 @@ declare const rootSchema: z.ZodObject<{
279
279
  mensagem: z.ZodOptional<z.ZodString>;
280
280
  }>, "strip", z.ZodTypeAny, {
281
281
  id: string | number;
282
- nome: string;
283
- tipo: string;
284
282
  dtIniVigencia: string;
285
283
  dtFimVigencia: string;
286
284
  codigo: string;
285
+ nome: string;
287
286
  sigla: string;
288
287
  sgPais: string;
289
288
  preco: number;
289
+ tipo: string;
290
290
  coIndicador: string;
291
291
  noIndicador: string;
292
292
  sgIndicador: string;
@@ -308,14 +308,14 @@ declare const rootSchema: z.ZodObject<{
308
308
  vlMaxDeclarado?: number | undefined;
309
309
  mensagem?: string | undefined;
310
310
  }, {
311
- nome: string;
312
- tipo: string;
313
311
  dtIniVigencia: string;
314
312
  dtFimVigencia: string;
315
313
  codigo: string;
314
+ nome: string;
316
315
  sigla: string;
317
316
  sgPais: string;
318
317
  preco: number;
318
+ tipo: string;
319
319
  coIndicador: string;
320
320
  noIndicador: string;
321
321
  sgIndicador: string;
@@ -349,14 +349,14 @@ declare const rootSchema: z.ZodObject<{
349
349
  order?: number | null | undefined;
350
350
  additionalServices?: {
351
351
  id: string | number;
352
- nome: string;
353
- tipo: string;
354
352
  dtIniVigencia: string;
355
353
  dtFimVigencia: string;
356
354
  codigo: string;
355
+ nome: string;
357
356
  sigla: string;
358
357
  sgPais: string;
359
358
  preco: number;
359
+ tipo: string;
360
360
  coIndicador: string;
361
361
  noIndicador: string;
362
362
  sgIndicador: string;
@@ -388,14 +388,14 @@ declare const rootSchema: z.ZodObject<{
388
388
  updatedAt?: unknown;
389
389
  order?: number | null | undefined;
390
390
  additionalServices?: {
391
- nome: string;
392
- tipo: string;
393
391
  dtIniVigencia: string;
394
392
  dtFimVigencia: string;
395
393
  codigo: string;
394
+ nome: string;
396
395
  sigla: string;
397
396
  sgPais: string;
398
397
  preco: number;
398
+ tipo: string;
399
399
  coIndicador: string;
400
400
  noIndicador: string;
401
401
  sgIndicador: string;
@@ -447,14 +447,14 @@ declare const rootSchema: z.ZodObject<{
447
447
  order?: number | null | undefined;
448
448
  additionalServices?: {
449
449
  id: string | number;
450
- nome: string;
451
- tipo: string;
452
450
  dtIniVigencia: string;
453
451
  dtFimVigencia: string;
454
452
  codigo: string;
453
+ nome: string;
455
454
  sigla: string;
456
455
  sgPais: string;
457
456
  preco: number;
457
+ tipo: string;
458
458
  coIndicador: string;
459
459
  noIndicador: string;
460
460
  sgIndicador: string;
@@ -494,14 +494,14 @@ declare const rootSchema: z.ZodObject<{
494
494
  updatedAt?: unknown;
495
495
  order?: number | null | undefined;
496
496
  additionalServices?: {
497
- nome: string;
498
- tipo: string;
499
497
  dtIniVigencia: string;
500
498
  dtFimVigencia: string;
501
499
  codigo: string;
500
+ nome: string;
502
501
  sigla: string;
503
502
  sgPais: string;
504
503
  preco: number;
504
+ tipo: string;
505
505
  coIndicador: string;
506
506
  noIndicador: string;
507
507
  sgIndicador: string;
@@ -23,8 +23,6 @@ declare const ParamsProductSchema: z.ZodObject<{
23
23
  vlRemessa: z.ZodOptional<z.ZodString>;
24
24
  cepDestino: z.ZodString;
25
25
  }, "strip", z.ZodTypeAny, {
26
- altura: string;
27
- largura: string;
28
26
  coProduto: string;
29
27
  nuRequisicao: string;
30
28
  cepOrigem: string;
@@ -32,6 +30,8 @@ declare const ParamsProductSchema: z.ZodObject<{
32
30
  psObjeto: string;
33
31
  tpObjeto: "1" | "2" | "3";
34
32
  comprimento: string;
33
+ largura: string;
34
+ altura: string;
35
35
  nuContrato?: string | undefined;
36
36
  nuDR?: number | undefined;
37
37
  nuUnidade?: string | undefined;
@@ -45,14 +45,14 @@ declare const ParamsProductSchema: z.ZodObject<{
45
45
  dtArmazenagem?: string | undefined;
46
46
  vlRemessa?: string | undefined;
47
47
  }, {
48
- altura: string;
49
- largura: string;
50
48
  coProduto: string;
51
49
  nuRequisicao: string;
52
50
  cepOrigem: string;
53
51
  cepDestino: string;
54
52
  psObjeto: string;
55
53
  comprimento: string;
54
+ largura: string;
55
+ altura: string;
56
56
  nuContrato?: string | undefined;
57
57
  nuDR?: number | undefined;
58
58
  nuUnidade?: string | undefined;
@@ -92,8 +92,6 @@ declare const PriceRequestSchema: z.ZodObject<{
92
92
  vlRemessa: z.ZodOptional<z.ZodString>;
93
93
  cepDestino: z.ZodString;
94
94
  }, "strip", z.ZodTypeAny, {
95
- altura: string;
96
- largura: string;
97
95
  coProduto: string;
98
96
  nuRequisicao: string;
99
97
  cepOrigem: string;
@@ -101,6 +99,8 @@ declare const PriceRequestSchema: z.ZodObject<{
101
99
  psObjeto: string;
102
100
  tpObjeto: "1" | "2" | "3";
103
101
  comprimento: string;
102
+ largura: string;
103
+ altura: string;
104
104
  nuContrato?: string | undefined;
105
105
  nuDR?: number | undefined;
106
106
  nuUnidade?: string | undefined;
@@ -114,14 +114,14 @@ declare const PriceRequestSchema: z.ZodObject<{
114
114
  dtArmazenagem?: string | undefined;
115
115
  vlRemessa?: string | undefined;
116
116
  }, {
117
- altura: string;
118
- largura: string;
119
117
  coProduto: string;
120
118
  nuRequisicao: string;
121
119
  cepOrigem: string;
122
120
  cepDestino: string;
123
121
  psObjeto: string;
124
122
  comprimento: string;
123
+ largura: string;
124
+ altura: string;
125
125
  nuContrato?: string | undefined;
126
126
  nuDR?: number | undefined;
127
127
  nuUnidade?: string | undefined;
@@ -139,8 +139,6 @@ declare const PriceRequestSchema: z.ZodObject<{
139
139
  }, "strip", z.ZodTypeAny, {
140
140
  idLote: string;
141
141
  parametrosProduto: {
142
- altura: string;
143
- largura: string;
144
142
  coProduto: string;
145
143
  nuRequisicao: string;
146
144
  cepOrigem: string;
@@ -148,6 +146,8 @@ declare const PriceRequestSchema: z.ZodObject<{
148
146
  psObjeto: string;
149
147
  tpObjeto: "1" | "2" | "3";
150
148
  comprimento: string;
149
+ largura: string;
150
+ altura: string;
151
151
  nuContrato?: string | undefined;
152
152
  nuDR?: number | undefined;
153
153
  nuUnidade?: string | undefined;
@@ -164,14 +164,14 @@ declare const PriceRequestSchema: z.ZodObject<{
164
164
  }, {
165
165
  idLote: string;
166
166
  parametrosProduto: {
167
- altura: string;
168
- largura: string;
169
167
  coProduto: string;
170
168
  nuRequisicao: string;
171
169
  cepOrigem: string;
172
170
  cepDestino: string;
173
171
  psObjeto: string;
174
172
  comprimento: string;
173
+ largura: string;
174
+ altura: string;
175
175
  nuContrato?: string | undefined;
176
176
  nuDR?: number | undefined;
177
177
  nuUnidade?: string | undefined;
@@ -234,12 +234,12 @@ declare const taxaExtraSchema: z.ZodObject<{
234
234
  tipo: z.ZodString;
235
235
  vlTaxa: z.ZodString;
236
236
  }, "strip", z.ZodTypeAny, {
237
- tipo: string;
238
237
  codigo: string;
238
+ tipo: string;
239
239
  vlTaxa: string;
240
240
  }, {
241
- tipo: string;
242
241
  codigo: string;
242
+ tipo: string;
243
243
  vlTaxa: string;
244
244
  }>;
245
245
  declare const beneficioSchema: z.ZodObject<{
@@ -273,8 +273,8 @@ declare const beneficioSchema: z.ZodObject<{
273
273
  percentual: z.ZodString;
274
274
  valor: z.ZodString;
275
275
  }, "strip", z.ZodTypeAny, {
276
- tipo: string;
277
276
  codigo: string;
277
+ tipo: string;
278
278
  valor: string;
279
279
  tipoBeneficio: string;
280
280
  abrangencia: string;
@@ -291,8 +291,8 @@ declare const beneficioSchema: z.ZodObject<{
291
291
  vlBaseCalculo: string;
292
292
  percentual: string;
293
293
  }, {
294
- tipo: string;
295
294
  codigo: string;
295
+ tipo: string;
296
296
  valor: string;
297
297
  tipoBeneficio: string;
298
298
  abrangencia: string;
@@ -347,8 +347,8 @@ declare const PriceSchema: z.ZodObject<z.objectUtil.extendShape<{
347
347
  percentual: z.ZodString;
348
348
  valor: z.ZodString;
349
349
  }, "strip", z.ZodTypeAny, {
350
- tipo: string;
351
350
  codigo: string;
351
+ tipo: string;
352
352
  valor: string;
353
353
  tipoBeneficio: string;
354
354
  abrangencia: string;
@@ -365,8 +365,8 @@ declare const PriceSchema: z.ZodObject<z.objectUtil.extendShape<{
365
365
  vlBaseCalculo: string;
366
366
  percentual: string;
367
367
  }, {
368
- tipo: string;
369
368
  codigo: string;
369
+ tipo: string;
370
370
  valor: string;
371
371
  tipoBeneficio: string;
372
372
  abrangencia: string;
@@ -431,12 +431,12 @@ declare const PriceSchema: z.ZodObject<z.objectUtil.extendShape<{
431
431
  tipo: z.ZodString;
432
432
  vlTaxa: z.ZodString;
433
433
  }, "strip", z.ZodTypeAny, {
434
- tipo: string;
435
434
  codigo: string;
435
+ tipo: string;
436
436
  vlTaxa: string;
437
437
  }, {
438
- tipo: string;
439
438
  codigo: string;
439
+ tipo: string;
440
440
  vlTaxa: string;
441
441
  }>, "many">;
442
442
  }, {
@@ -451,8 +451,8 @@ declare const PriceSchema: z.ZodObject<z.objectUtil.extendShape<{
451
451
  peVariacao: string;
452
452
  pcReferencia: string;
453
453
  beneficios: {
454
- tipo: string;
455
454
  codigo: string;
455
+ tipo: string;
456
456
  valor: string;
457
457
  tipoBeneficio: string;
458
458
  abrangencia: string;
@@ -497,8 +497,8 @@ declare const PriceSchema: z.ZodObject<z.objectUtil.extendShape<{
497
497
  }[];
498
498
  peIsencaoArmazenagem: string;
499
499
  taxaExtra: {
500
- tipo: string;
501
500
  codigo: string;
501
+ tipo: string;
502
502
  vlTaxa: string;
503
503
  }[];
504
504
  txErro?: string | undefined;
@@ -512,8 +512,8 @@ declare const PriceSchema: z.ZodObject<z.objectUtil.extendShape<{
512
512
  peVariacao: string;
513
513
  pcReferencia: string;
514
514
  beneficios: {
515
- tipo: string;
516
515
  codigo: string;
516
+ tipo: string;
517
517
  valor: string;
518
518
  tipoBeneficio: string;
519
519
  abrangencia: string;
@@ -558,8 +558,8 @@ declare const PriceSchema: z.ZodObject<z.objectUtil.extendShape<{
558
558
  }[];
559
559
  peIsencaoArmazenagem: string;
560
560
  taxaExtra: {
561
- tipo: string;
562
561
  codigo: string;
562
+ tipo: string;
563
563
  vlTaxa: string;
564
564
  }[];
565
565
  txErro?: string | undefined;