@_henriquewilson/gabirubi-domain 1.0.183 → 1.0.185
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/model/correios/prepost.d.mts +130 -129
- package/dist/model/correios/prepost.d.ts +130 -129
- package/dist/model/correios/prepost.js +1 -0
- package/dist/model/correios/prepost.js.map +1 -1
- package/dist/model/correios/prepost.mjs +1 -0
- package/dist/model/correios/prepost.mjs.map +1 -1
- package/dist/model/correios/track.d.mts +170 -170
- package/dist/model/correios/track.d.ts +170 -170
- package/dist/model/correios/track.js.map +1 -1
- package/dist/model/correios/track.mjs.map +1 -1
- package/dist/model/intercom/conversation.d.mts +348 -348
- package/dist/model/intercom/conversation.d.ts +348 -348
- package/dist/model/intercom/hook.d.mts +1003 -1003
- package/dist/model/intercom/hook.d.ts +1003 -1003
- package/dist/model/iugu/iugu-charge.d.mts +2 -2
- package/dist/model/iugu/iugu-charge.d.ts +2 -2
- package/dist/model/iugu/iugu-client.d.mts +12 -12
- package/dist/model/iugu/iugu-client.d.ts +12 -12
- package/package.json +1 -1
|
@@ -5,7 +5,8 @@ declare enum StatusEnumNative {
|
|
|
5
5
|
PREPOSTED = 2,
|
|
6
6
|
POSTED = 3,
|
|
7
7
|
EXPIRED = 4,
|
|
8
|
-
CANCELED = 5
|
|
8
|
+
CANCELED = 5,
|
|
9
|
+
DELIVERED = 6
|
|
9
10
|
}
|
|
10
11
|
declare const StatusSchema: z.ZodNativeEnum<typeof StatusEnumNative>;
|
|
11
12
|
declare const AddressSchema: z.ZodObject<{
|
|
@@ -17,20 +18,20 @@ declare const AddressSchema: z.ZodObject<{
|
|
|
17
18
|
complemento: z.ZodOptional<z.ZodString>;
|
|
18
19
|
uf: z.ZodString;
|
|
19
20
|
}, "strip", z.ZodTypeAny, {
|
|
20
|
-
cidade: string;
|
|
21
|
-
uf: string;
|
|
22
21
|
cep: string;
|
|
23
22
|
logradouro: string;
|
|
24
23
|
numero: string;
|
|
25
24
|
bairro: string;
|
|
26
|
-
complemento?: string | undefined;
|
|
27
|
-
}, {
|
|
28
25
|
cidade: string;
|
|
29
26
|
uf: string;
|
|
27
|
+
complemento?: string | undefined;
|
|
28
|
+
}, {
|
|
30
29
|
cep: string;
|
|
31
30
|
logradouro: string;
|
|
32
31
|
numero: string;
|
|
33
32
|
bairro: string;
|
|
33
|
+
cidade: string;
|
|
34
|
+
uf: string;
|
|
34
35
|
complemento?: string | undefined;
|
|
35
36
|
}>;
|
|
36
37
|
declare const SenderRecipientSchema: z.ZodObject<{
|
|
@@ -48,64 +49,64 @@ declare const SenderRecipientSchema: z.ZodObject<{
|
|
|
48
49
|
complemento: z.ZodOptional<z.ZodString>;
|
|
49
50
|
uf: z.ZodString;
|
|
50
51
|
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
cidade: string;
|
|
52
|
-
uf: string;
|
|
53
52
|
cep: string;
|
|
54
53
|
logradouro: string;
|
|
55
54
|
numero: string;
|
|
56
55
|
bairro: string;
|
|
57
|
-
complemento?: string | undefined;
|
|
58
|
-
}, {
|
|
59
56
|
cidade: string;
|
|
60
57
|
uf: string;
|
|
58
|
+
complemento?: string | undefined;
|
|
59
|
+
}, {
|
|
61
60
|
cep: string;
|
|
62
61
|
logradouro: string;
|
|
63
62
|
numero: string;
|
|
64
63
|
bairro: string;
|
|
64
|
+
cidade: string;
|
|
65
|
+
uf: string;
|
|
65
66
|
complemento?: string | undefined;
|
|
66
67
|
}>;
|
|
67
68
|
}, "strip", z.ZodTypeAny, {
|
|
68
69
|
nome: string;
|
|
70
|
+
dddCelular: string;
|
|
71
|
+
celular: string;
|
|
72
|
+
email: string;
|
|
73
|
+
cpfCnpj: string;
|
|
69
74
|
endereco: {
|
|
70
|
-
cidade: string;
|
|
71
|
-
uf: string;
|
|
72
75
|
cep: string;
|
|
73
76
|
logradouro: string;
|
|
74
77
|
numero: string;
|
|
75
78
|
bairro: string;
|
|
79
|
+
cidade: string;
|
|
80
|
+
uf: string;
|
|
76
81
|
complemento?: string | undefined;
|
|
77
82
|
};
|
|
83
|
+
}, {
|
|
84
|
+
nome: string;
|
|
78
85
|
dddCelular: string;
|
|
79
86
|
celular: string;
|
|
80
87
|
email: string;
|
|
81
88
|
cpfCnpj: string;
|
|
82
|
-
}, {
|
|
83
|
-
nome: string;
|
|
84
89
|
endereco: {
|
|
85
|
-
cidade: string;
|
|
86
|
-
uf: string;
|
|
87
90
|
cep: string;
|
|
88
91
|
logradouro: string;
|
|
89
92
|
numero: string;
|
|
90
93
|
bairro: string;
|
|
94
|
+
cidade: string;
|
|
95
|
+
uf: string;
|
|
91
96
|
complemento?: string | undefined;
|
|
92
97
|
};
|
|
93
|
-
dddCelular: string;
|
|
94
|
-
celular: string;
|
|
95
|
-
email: string;
|
|
96
|
-
cpfCnpj: string;
|
|
97
98
|
}>;
|
|
98
99
|
declare const ItensDeclaracaoConteudoSchema: z.ZodObject<{
|
|
99
100
|
conteudo: z.ZodString;
|
|
100
101
|
quantidade: z.ZodString;
|
|
101
102
|
valor: z.ZodString;
|
|
102
103
|
}, "strip", z.ZodTypeAny, {
|
|
103
|
-
quantidade: string;
|
|
104
104
|
conteudo: string;
|
|
105
|
+
quantidade: string;
|
|
105
106
|
valor: string;
|
|
106
107
|
}, {
|
|
107
|
-
quantidade: string;
|
|
108
108
|
conteudo: string;
|
|
109
|
+
quantidade: string;
|
|
109
110
|
valor: string;
|
|
110
111
|
}>;
|
|
111
112
|
declare const PrepostSchema: z.ZodObject<{
|
|
@@ -125,52 +126,52 @@ declare const PrepostSchema: z.ZodObject<{
|
|
|
125
126
|
complemento: z.ZodOptional<z.ZodString>;
|
|
126
127
|
uf: z.ZodString;
|
|
127
128
|
}, "strip", z.ZodTypeAny, {
|
|
128
|
-
cidade: string;
|
|
129
|
-
uf: string;
|
|
130
129
|
cep: string;
|
|
131
130
|
logradouro: string;
|
|
132
131
|
numero: string;
|
|
133
132
|
bairro: string;
|
|
134
|
-
complemento?: string | undefined;
|
|
135
|
-
}, {
|
|
136
133
|
cidade: string;
|
|
137
134
|
uf: string;
|
|
135
|
+
complemento?: string | undefined;
|
|
136
|
+
}, {
|
|
138
137
|
cep: string;
|
|
139
138
|
logradouro: string;
|
|
140
139
|
numero: string;
|
|
141
140
|
bairro: string;
|
|
141
|
+
cidade: string;
|
|
142
|
+
uf: string;
|
|
142
143
|
complemento?: string | undefined;
|
|
143
144
|
}>;
|
|
144
145
|
}, "strip", z.ZodTypeAny, {
|
|
145
146
|
nome: string;
|
|
147
|
+
dddCelular: string;
|
|
148
|
+
celular: string;
|
|
149
|
+
email: string;
|
|
150
|
+
cpfCnpj: string;
|
|
146
151
|
endereco: {
|
|
147
|
-
cidade: string;
|
|
148
|
-
uf: string;
|
|
149
152
|
cep: string;
|
|
150
153
|
logradouro: string;
|
|
151
154
|
numero: string;
|
|
152
155
|
bairro: string;
|
|
156
|
+
cidade: string;
|
|
157
|
+
uf: string;
|
|
153
158
|
complemento?: string | undefined;
|
|
154
159
|
};
|
|
160
|
+
}, {
|
|
161
|
+
nome: string;
|
|
155
162
|
dddCelular: string;
|
|
156
163
|
celular: string;
|
|
157
164
|
email: string;
|
|
158
165
|
cpfCnpj: string;
|
|
159
|
-
}, {
|
|
160
|
-
nome: string;
|
|
161
166
|
endereco: {
|
|
162
|
-
cidade: string;
|
|
163
|
-
uf: string;
|
|
164
167
|
cep: string;
|
|
165
168
|
logradouro: string;
|
|
166
169
|
numero: string;
|
|
167
170
|
bairro: string;
|
|
171
|
+
cidade: string;
|
|
172
|
+
uf: string;
|
|
168
173
|
complemento?: string | undefined;
|
|
169
174
|
};
|
|
170
|
-
dddCelular: string;
|
|
171
|
-
celular: string;
|
|
172
|
-
email: string;
|
|
173
|
-
cpfCnpj: string;
|
|
174
175
|
}>;
|
|
175
176
|
destinatario: z.ZodObject<{
|
|
176
177
|
nome: z.ZodString;
|
|
@@ -187,52 +188,52 @@ declare const PrepostSchema: z.ZodObject<{
|
|
|
187
188
|
complemento: z.ZodOptional<z.ZodString>;
|
|
188
189
|
uf: z.ZodString;
|
|
189
190
|
}, "strip", z.ZodTypeAny, {
|
|
190
|
-
cidade: string;
|
|
191
|
-
uf: string;
|
|
192
191
|
cep: string;
|
|
193
192
|
logradouro: string;
|
|
194
193
|
numero: string;
|
|
195
194
|
bairro: string;
|
|
196
|
-
complemento?: string | undefined;
|
|
197
|
-
}, {
|
|
198
195
|
cidade: string;
|
|
199
196
|
uf: string;
|
|
197
|
+
complemento?: string | undefined;
|
|
198
|
+
}, {
|
|
200
199
|
cep: string;
|
|
201
200
|
logradouro: string;
|
|
202
201
|
numero: string;
|
|
203
202
|
bairro: string;
|
|
203
|
+
cidade: string;
|
|
204
|
+
uf: string;
|
|
204
205
|
complemento?: string | undefined;
|
|
205
206
|
}>;
|
|
206
207
|
}, "strip", z.ZodTypeAny, {
|
|
207
208
|
nome: string;
|
|
209
|
+
dddCelular: string;
|
|
210
|
+
celular: string;
|
|
211
|
+
email: string;
|
|
212
|
+
cpfCnpj: string;
|
|
208
213
|
endereco: {
|
|
209
|
-
cidade: string;
|
|
210
|
-
uf: string;
|
|
211
214
|
cep: string;
|
|
212
215
|
logradouro: string;
|
|
213
216
|
numero: string;
|
|
214
217
|
bairro: string;
|
|
218
|
+
cidade: string;
|
|
219
|
+
uf: string;
|
|
215
220
|
complemento?: string | undefined;
|
|
216
221
|
};
|
|
222
|
+
}, {
|
|
223
|
+
nome: string;
|
|
217
224
|
dddCelular: string;
|
|
218
225
|
celular: string;
|
|
219
226
|
email: string;
|
|
220
227
|
cpfCnpj: string;
|
|
221
|
-
}, {
|
|
222
|
-
nome: string;
|
|
223
228
|
endereco: {
|
|
224
|
-
cidade: string;
|
|
225
|
-
uf: string;
|
|
226
229
|
cep: string;
|
|
227
230
|
logradouro: string;
|
|
228
231
|
numero: string;
|
|
229
232
|
bairro: string;
|
|
233
|
+
cidade: string;
|
|
234
|
+
uf: string;
|
|
230
235
|
complemento?: string | undefined;
|
|
231
236
|
};
|
|
232
|
-
dddCelular: string;
|
|
233
|
-
celular: string;
|
|
234
|
-
email: string;
|
|
235
|
-
cpfCnpj: string;
|
|
236
237
|
}>;
|
|
237
238
|
codigoServico: z.ZodString;
|
|
238
239
|
numeroCartaoPostagem: z.ZodString;
|
|
@@ -241,12 +242,12 @@ declare const PrepostSchema: z.ZodObject<{
|
|
|
241
242
|
quantidade: z.ZodString;
|
|
242
243
|
valor: z.ZodString;
|
|
243
244
|
}, "strip", z.ZodTypeAny, {
|
|
244
|
-
quantidade: string;
|
|
245
245
|
conteudo: string;
|
|
246
|
+
quantidade: string;
|
|
246
247
|
valor: string;
|
|
247
248
|
}, {
|
|
248
|
-
quantidade: string;
|
|
249
249
|
conteudo: string;
|
|
250
|
+
quantidade: string;
|
|
250
251
|
valor: string;
|
|
251
252
|
}>, "many">;
|
|
252
253
|
pesoInformado: z.ZodString;
|
|
@@ -260,41 +261,41 @@ declare const PrepostSchema: z.ZodObject<{
|
|
|
260
261
|
idCorreios: string;
|
|
261
262
|
remetente: {
|
|
262
263
|
nome: string;
|
|
264
|
+
dddCelular: string;
|
|
265
|
+
celular: string;
|
|
266
|
+
email: string;
|
|
267
|
+
cpfCnpj: string;
|
|
263
268
|
endereco: {
|
|
264
|
-
cidade: string;
|
|
265
|
-
uf: string;
|
|
266
269
|
cep: string;
|
|
267
270
|
logradouro: string;
|
|
268
271
|
numero: string;
|
|
269
272
|
bairro: string;
|
|
273
|
+
cidade: string;
|
|
274
|
+
uf: string;
|
|
270
275
|
complemento?: string | undefined;
|
|
271
276
|
};
|
|
277
|
+
};
|
|
278
|
+
destinatario: {
|
|
279
|
+
nome: string;
|
|
272
280
|
dddCelular: string;
|
|
273
281
|
celular: string;
|
|
274
282
|
email: string;
|
|
275
283
|
cpfCnpj: string;
|
|
276
|
-
};
|
|
277
|
-
destinatario: {
|
|
278
|
-
nome: string;
|
|
279
284
|
endereco: {
|
|
280
|
-
cidade: string;
|
|
281
|
-
uf: string;
|
|
282
285
|
cep: string;
|
|
283
286
|
logradouro: string;
|
|
284
287
|
numero: string;
|
|
285
288
|
bairro: string;
|
|
289
|
+
cidade: string;
|
|
290
|
+
uf: string;
|
|
286
291
|
complemento?: string | undefined;
|
|
287
292
|
};
|
|
288
|
-
dddCelular: string;
|
|
289
|
-
celular: string;
|
|
290
|
-
email: string;
|
|
291
|
-
cpfCnpj: string;
|
|
292
293
|
};
|
|
293
294
|
codigoServico: string;
|
|
294
295
|
numeroCartaoPostagem: string;
|
|
295
296
|
itensDeclaracaoConteudo: {
|
|
296
|
-
quantidade: string;
|
|
297
297
|
conteudo: string;
|
|
298
|
+
quantidade: string;
|
|
298
299
|
valor: string;
|
|
299
300
|
}[];
|
|
300
301
|
pesoInformado: string;
|
|
@@ -308,41 +309,41 @@ declare const PrepostSchema: z.ZodObject<{
|
|
|
308
309
|
idCorreios: string;
|
|
309
310
|
remetente: {
|
|
310
311
|
nome: string;
|
|
312
|
+
dddCelular: string;
|
|
313
|
+
celular: string;
|
|
314
|
+
email: string;
|
|
315
|
+
cpfCnpj: string;
|
|
311
316
|
endereco: {
|
|
312
|
-
cidade: string;
|
|
313
|
-
uf: string;
|
|
314
317
|
cep: string;
|
|
315
318
|
logradouro: string;
|
|
316
319
|
numero: string;
|
|
317
320
|
bairro: string;
|
|
321
|
+
cidade: string;
|
|
322
|
+
uf: string;
|
|
318
323
|
complemento?: string | undefined;
|
|
319
324
|
};
|
|
325
|
+
};
|
|
326
|
+
destinatario: {
|
|
327
|
+
nome: string;
|
|
320
328
|
dddCelular: string;
|
|
321
329
|
celular: string;
|
|
322
330
|
email: string;
|
|
323
331
|
cpfCnpj: string;
|
|
324
|
-
};
|
|
325
|
-
destinatario: {
|
|
326
|
-
nome: string;
|
|
327
332
|
endereco: {
|
|
328
|
-
cidade: string;
|
|
329
|
-
uf: string;
|
|
330
333
|
cep: string;
|
|
331
334
|
logradouro: string;
|
|
332
335
|
numero: string;
|
|
333
336
|
bairro: string;
|
|
337
|
+
cidade: string;
|
|
338
|
+
uf: string;
|
|
334
339
|
complemento?: string | undefined;
|
|
335
340
|
};
|
|
336
|
-
dddCelular: string;
|
|
337
|
-
celular: string;
|
|
338
|
-
email: string;
|
|
339
|
-
cpfCnpj: string;
|
|
340
341
|
};
|
|
341
342
|
codigoServico: string;
|
|
342
343
|
numeroCartaoPostagem: string;
|
|
343
344
|
itensDeclaracaoConteudo: {
|
|
344
|
-
quantidade: string;
|
|
345
345
|
conteudo: string;
|
|
346
|
+
quantidade: string;
|
|
346
347
|
valor: string;
|
|
347
348
|
}[];
|
|
348
349
|
pesoInformado: string;
|
|
@@ -374,52 +375,52 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
374
375
|
complemento: z.ZodOptional<z.ZodString>;
|
|
375
376
|
uf: z.ZodString;
|
|
376
377
|
}, "strip", z.ZodTypeAny, {
|
|
377
|
-
cidade: string;
|
|
378
|
-
uf: string;
|
|
379
378
|
cep: string;
|
|
380
379
|
logradouro: string;
|
|
381
380
|
numero: string;
|
|
382
381
|
bairro: string;
|
|
383
|
-
complemento?: string | undefined;
|
|
384
|
-
}, {
|
|
385
382
|
cidade: string;
|
|
386
383
|
uf: string;
|
|
384
|
+
complemento?: string | undefined;
|
|
385
|
+
}, {
|
|
387
386
|
cep: string;
|
|
388
387
|
logradouro: string;
|
|
389
388
|
numero: string;
|
|
390
389
|
bairro: string;
|
|
390
|
+
cidade: string;
|
|
391
|
+
uf: string;
|
|
391
392
|
complemento?: string | undefined;
|
|
392
393
|
}>;
|
|
393
394
|
}, "strip", z.ZodTypeAny, {
|
|
394
395
|
nome: string;
|
|
396
|
+
dddCelular: string;
|
|
397
|
+
celular: string;
|
|
398
|
+
email: string;
|
|
399
|
+
cpfCnpj: string;
|
|
395
400
|
endereco: {
|
|
396
|
-
cidade: string;
|
|
397
|
-
uf: string;
|
|
398
401
|
cep: string;
|
|
399
402
|
logradouro: string;
|
|
400
403
|
numero: string;
|
|
401
404
|
bairro: string;
|
|
405
|
+
cidade: string;
|
|
406
|
+
uf: string;
|
|
402
407
|
complemento?: string | undefined;
|
|
403
408
|
};
|
|
409
|
+
}, {
|
|
410
|
+
nome: string;
|
|
404
411
|
dddCelular: string;
|
|
405
412
|
celular: string;
|
|
406
413
|
email: string;
|
|
407
414
|
cpfCnpj: string;
|
|
408
|
-
}, {
|
|
409
|
-
nome: string;
|
|
410
415
|
endereco: {
|
|
411
|
-
cidade: string;
|
|
412
|
-
uf: string;
|
|
413
416
|
cep: string;
|
|
414
417
|
logradouro: string;
|
|
415
418
|
numero: string;
|
|
416
419
|
bairro: string;
|
|
420
|
+
cidade: string;
|
|
421
|
+
uf: string;
|
|
417
422
|
complemento?: string | undefined;
|
|
418
423
|
};
|
|
419
|
-
dddCelular: string;
|
|
420
|
-
celular: string;
|
|
421
|
-
email: string;
|
|
422
|
-
cpfCnpj: string;
|
|
423
424
|
}>;
|
|
424
425
|
destinatario: z.ZodObject<{
|
|
425
426
|
nome: z.ZodString;
|
|
@@ -436,52 +437,52 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
436
437
|
complemento: z.ZodOptional<z.ZodString>;
|
|
437
438
|
uf: z.ZodString;
|
|
438
439
|
}, "strip", z.ZodTypeAny, {
|
|
439
|
-
cidade: string;
|
|
440
|
-
uf: string;
|
|
441
440
|
cep: string;
|
|
442
441
|
logradouro: string;
|
|
443
442
|
numero: string;
|
|
444
443
|
bairro: string;
|
|
445
|
-
complemento?: string | undefined;
|
|
446
|
-
}, {
|
|
447
444
|
cidade: string;
|
|
448
445
|
uf: string;
|
|
446
|
+
complemento?: string | undefined;
|
|
447
|
+
}, {
|
|
449
448
|
cep: string;
|
|
450
449
|
logradouro: string;
|
|
451
450
|
numero: string;
|
|
452
451
|
bairro: string;
|
|
452
|
+
cidade: string;
|
|
453
|
+
uf: string;
|
|
453
454
|
complemento?: string | undefined;
|
|
454
455
|
}>;
|
|
455
456
|
}, "strip", z.ZodTypeAny, {
|
|
456
457
|
nome: string;
|
|
458
|
+
dddCelular: string;
|
|
459
|
+
celular: string;
|
|
460
|
+
email: string;
|
|
461
|
+
cpfCnpj: string;
|
|
457
462
|
endereco: {
|
|
458
|
-
cidade: string;
|
|
459
|
-
uf: string;
|
|
460
463
|
cep: string;
|
|
461
464
|
logradouro: string;
|
|
462
465
|
numero: string;
|
|
463
466
|
bairro: string;
|
|
467
|
+
cidade: string;
|
|
468
|
+
uf: string;
|
|
464
469
|
complemento?: string | undefined;
|
|
465
470
|
};
|
|
471
|
+
}, {
|
|
472
|
+
nome: string;
|
|
466
473
|
dddCelular: string;
|
|
467
474
|
celular: string;
|
|
468
475
|
email: string;
|
|
469
476
|
cpfCnpj: string;
|
|
470
|
-
}, {
|
|
471
|
-
nome: string;
|
|
472
477
|
endereco: {
|
|
473
|
-
cidade: string;
|
|
474
|
-
uf: string;
|
|
475
478
|
cep: string;
|
|
476
479
|
logradouro: string;
|
|
477
480
|
numero: string;
|
|
478
481
|
bairro: string;
|
|
482
|
+
cidade: string;
|
|
483
|
+
uf: string;
|
|
479
484
|
complemento?: string | undefined;
|
|
480
485
|
};
|
|
481
|
-
dddCelular: string;
|
|
482
|
-
celular: string;
|
|
483
|
-
email: string;
|
|
484
|
-
cpfCnpj: string;
|
|
485
486
|
}>;
|
|
486
487
|
codigoObjeto: z.ZodString;
|
|
487
488
|
codigoServico: z.ZodString;
|
|
@@ -491,12 +492,12 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
491
492
|
quantidade: z.ZodString;
|
|
492
493
|
valor: z.ZodString;
|
|
493
494
|
}, "strip", z.ZodTypeAny, {
|
|
494
|
-
quantidade: string;
|
|
495
495
|
conteudo: string;
|
|
496
|
+
quantidade: string;
|
|
496
497
|
valor: string;
|
|
497
498
|
}, {
|
|
498
|
-
quantidade: string;
|
|
499
499
|
conteudo: string;
|
|
500
|
+
quantidade: string;
|
|
500
501
|
valor: string;
|
|
501
502
|
}>, "many">;
|
|
502
503
|
pesoInformado: z.ZodString;
|
|
@@ -525,41 +526,41 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
525
526
|
idCorreios: string;
|
|
526
527
|
remetente: {
|
|
527
528
|
nome: string;
|
|
529
|
+
dddCelular: string;
|
|
530
|
+
celular: string;
|
|
531
|
+
email: string;
|
|
532
|
+
cpfCnpj: string;
|
|
528
533
|
endereco: {
|
|
529
|
-
cidade: string;
|
|
530
|
-
uf: string;
|
|
531
534
|
cep: string;
|
|
532
535
|
logradouro: string;
|
|
533
536
|
numero: string;
|
|
534
537
|
bairro: string;
|
|
538
|
+
cidade: string;
|
|
539
|
+
uf: string;
|
|
535
540
|
complemento?: string | undefined;
|
|
536
541
|
};
|
|
542
|
+
};
|
|
543
|
+
destinatario: {
|
|
544
|
+
nome: string;
|
|
537
545
|
dddCelular: string;
|
|
538
546
|
celular: string;
|
|
539
547
|
email: string;
|
|
540
548
|
cpfCnpj: string;
|
|
541
|
-
};
|
|
542
|
-
destinatario: {
|
|
543
|
-
nome: string;
|
|
544
549
|
endereco: {
|
|
545
|
-
cidade: string;
|
|
546
|
-
uf: string;
|
|
547
550
|
cep: string;
|
|
548
551
|
logradouro: string;
|
|
549
552
|
numero: string;
|
|
550
553
|
bairro: string;
|
|
554
|
+
cidade: string;
|
|
555
|
+
uf: string;
|
|
551
556
|
complemento?: string | undefined;
|
|
552
557
|
};
|
|
553
|
-
dddCelular: string;
|
|
554
|
-
celular: string;
|
|
555
|
-
email: string;
|
|
556
|
-
cpfCnpj: string;
|
|
557
558
|
};
|
|
558
559
|
codigoServico: string;
|
|
559
560
|
numeroCartaoPostagem: string;
|
|
560
561
|
itensDeclaracaoConteudo: {
|
|
561
|
-
quantidade: string;
|
|
562
562
|
conteudo: string;
|
|
563
|
+
quantidade: string;
|
|
563
564
|
valor: string;
|
|
564
565
|
}[];
|
|
565
566
|
pesoInformado: string;
|
|
@@ -592,41 +593,41 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
592
593
|
idCorreios: string;
|
|
593
594
|
remetente: {
|
|
594
595
|
nome: string;
|
|
596
|
+
dddCelular: string;
|
|
597
|
+
celular: string;
|
|
598
|
+
email: string;
|
|
599
|
+
cpfCnpj: string;
|
|
595
600
|
endereco: {
|
|
596
|
-
cidade: string;
|
|
597
|
-
uf: string;
|
|
598
601
|
cep: string;
|
|
599
602
|
logradouro: string;
|
|
600
603
|
numero: string;
|
|
601
604
|
bairro: string;
|
|
605
|
+
cidade: string;
|
|
606
|
+
uf: string;
|
|
602
607
|
complemento?: string | undefined;
|
|
603
608
|
};
|
|
609
|
+
};
|
|
610
|
+
destinatario: {
|
|
611
|
+
nome: string;
|
|
604
612
|
dddCelular: string;
|
|
605
613
|
celular: string;
|
|
606
614
|
email: string;
|
|
607
615
|
cpfCnpj: string;
|
|
608
|
-
};
|
|
609
|
-
destinatario: {
|
|
610
|
-
nome: string;
|
|
611
616
|
endereco: {
|
|
612
|
-
cidade: string;
|
|
613
|
-
uf: string;
|
|
614
617
|
cep: string;
|
|
615
618
|
logradouro: string;
|
|
616
619
|
numero: string;
|
|
617
620
|
bairro: string;
|
|
621
|
+
cidade: string;
|
|
622
|
+
uf: string;
|
|
618
623
|
complemento?: string | undefined;
|
|
619
624
|
};
|
|
620
|
-
dddCelular: string;
|
|
621
|
-
celular: string;
|
|
622
|
-
email: string;
|
|
623
|
-
cpfCnpj: string;
|
|
624
625
|
};
|
|
625
626
|
codigoServico: string;
|
|
626
627
|
numeroCartaoPostagem: string;
|
|
627
628
|
itensDeclaracaoConteudo: {
|
|
628
|
-
quantidade: string;
|
|
629
629
|
conteudo: string;
|
|
630
|
+
quantidade: string;
|
|
630
631
|
valor: string;
|
|
631
632
|
}[];
|
|
632
633
|
pesoInformado: string;
|