@_henriquewilson/gabirubi-domain 1.4.13 → 1.4.15
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 +186 -186
- package/dist/model/correios/prepost.d.ts +186 -186
- package/dist/model/correios/track.d.mts +148 -148
- package/dist/model/correios/track.d.ts +148 -148
- package/dist/model/integrada/order.d.mts +873 -99
- package/dist/model/integrada/order.d.ts +873 -99
- package/dist/model/integrada/order.js +312 -166
- package/dist/model/integrada/order.js.map +1 -1
- package/dist/model/integrada/order.mjs +312 -166
- package/dist/model/integrada/order.mjs.map +1 -1
- package/dist/model/integrada/product.d.mts +22 -22
- package/dist/model/integrada/product.d.ts +22 -22
- package/dist/model/journey.d.mts +992 -34
- package/dist/model/journey.d.ts +992 -34
- package/dist/model/journey.js +96 -61
- package/dist/model/journey.js.map +1 -1
- package/dist/model/journey.mjs +96 -61
- package/dist/model/journey.mjs.map +1 -1
- package/dist/model/melhorenvio/order.d.mts +10 -10
- package/dist/model/melhorenvio/order.d.ts +10 -10
- package/dist/model/melhorenvio/service.d.mts +100 -100
- package/dist/model/melhorenvio/service.d.ts +100 -100
- package/dist/model/storage/image.d.mts +141 -0
- package/dist/model/storage/image.d.ts +141 -0
- package/dist/model/storage/image.js +89 -0
- package/dist/model/storage/image.js.map +1 -0
- package/dist/model/storage/image.mjs +28 -0
- package/dist/model/storage/image.mjs.map +1 -0
- package/dist/model/store/shipping.d.mts +12 -12
- package/dist/model/store/shipping.d.ts +12 -12
- package/dist/model/store/shipping.js +324 -177
- package/dist/model/store/shipping.js.map +1 -1
- package/dist/model/store/shipping.mjs +324 -177
- package/dist/model/store/shipping.mjs.map +1 -1
- package/dist/model/subscription.model.d.mts +9 -9
- package/dist/model/subscription.model.d.ts +9 -9
- package/dist/model/user.model.d.mts +2 -2
- package/dist/model/user.model.d.ts +2 -2
- package/dist/test/activity.test.js +96 -61
- package/dist/test/activity.test.js.map +1 -1
- package/dist/test/activity.test.mjs +96 -61
- package/dist/test/activity.test.mjs.map +1 -1
- package/dist/test/store.test.js +312 -166
- package/dist/test/store.test.js.map +1 -1
- package/dist/test/store.test.mjs +312 -166
- package/dist/test/store.test.mjs.map +1 -1
- package/dist/util/store.util.d.mts +1 -0
- package/dist/util/store.util.d.ts +1 -0
- package/package.json +1 -1
|
@@ -18,20 +18,20 @@ declare const AddressSchema: z.ZodObject<{
|
|
|
18
18
|
complemento: z.ZodOptional<z.ZodString>;
|
|
19
19
|
uf: z.ZodString;
|
|
20
20
|
}, "strip", z.ZodTypeAny, {
|
|
21
|
+
cidade: string;
|
|
22
|
+
uf: string;
|
|
21
23
|
cep: string;
|
|
22
24
|
logradouro: string;
|
|
23
25
|
numero: string;
|
|
24
26
|
bairro: string;
|
|
25
|
-
cidade: string;
|
|
26
|
-
uf: string;
|
|
27
27
|
complemento?: string | undefined;
|
|
28
28
|
}, {
|
|
29
|
+
cidade: string;
|
|
30
|
+
uf: string;
|
|
29
31
|
cep: string;
|
|
30
32
|
logradouro: string;
|
|
31
33
|
numero: string;
|
|
32
34
|
bairro: string;
|
|
33
|
-
cidade: string;
|
|
34
|
-
uf: string;
|
|
35
35
|
complemento?: string | undefined;
|
|
36
36
|
}>;
|
|
37
37
|
declare const SenderRecipientSchema: z.ZodObject<{
|
|
@@ -49,65 +49,65 @@ declare const SenderRecipientSchema: z.ZodObject<{
|
|
|
49
49
|
complemento: z.ZodOptional<z.ZodString>;
|
|
50
50
|
uf: z.ZodString;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
|
+
cidade: string;
|
|
53
|
+
uf: string;
|
|
52
54
|
cep: string;
|
|
53
55
|
logradouro: string;
|
|
54
56
|
numero: string;
|
|
55
57
|
bairro: string;
|
|
56
|
-
cidade: string;
|
|
57
|
-
uf: string;
|
|
58
58
|
complemento?: string | undefined;
|
|
59
59
|
}, {
|
|
60
|
+
cidade: string;
|
|
61
|
+
uf: string;
|
|
60
62
|
cep: string;
|
|
61
63
|
logradouro: string;
|
|
62
64
|
numero: string;
|
|
63
65
|
bairro: string;
|
|
64
|
-
cidade: string;
|
|
65
|
-
uf: string;
|
|
66
66
|
complemento?: string | undefined;
|
|
67
67
|
}>;
|
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
|
69
|
-
nome: string;
|
|
70
|
-
dddCelular: string;
|
|
71
|
-
celular: string;
|
|
72
69
|
email: string;
|
|
73
|
-
|
|
70
|
+
nome: string;
|
|
74
71
|
endereco: {
|
|
72
|
+
cidade: string;
|
|
73
|
+
uf: string;
|
|
75
74
|
cep: string;
|
|
76
75
|
logradouro: string;
|
|
77
76
|
numero: string;
|
|
78
77
|
bairro: string;
|
|
79
|
-
cidade: string;
|
|
80
|
-
uf: string;
|
|
81
78
|
complemento?: string | undefined;
|
|
82
79
|
};
|
|
83
|
-
}, {
|
|
84
|
-
nome: string;
|
|
85
80
|
dddCelular: string;
|
|
86
81
|
celular: string;
|
|
87
|
-
email: string;
|
|
88
82
|
cpfCnpj: string;
|
|
83
|
+
}, {
|
|
84
|
+
email: string;
|
|
85
|
+
nome: string;
|
|
89
86
|
endereco: {
|
|
87
|
+
cidade: string;
|
|
88
|
+
uf: string;
|
|
90
89
|
cep: string;
|
|
91
90
|
logradouro: string;
|
|
92
91
|
numero: string;
|
|
93
92
|
bairro: string;
|
|
94
|
-
cidade: string;
|
|
95
|
-
uf: string;
|
|
96
93
|
complemento?: string | undefined;
|
|
97
94
|
};
|
|
95
|
+
dddCelular: string;
|
|
96
|
+
celular: string;
|
|
97
|
+
cpfCnpj: string;
|
|
98
98
|
}>;
|
|
99
99
|
declare const ItensDeclaracaoConteudoSchema: z.ZodObject<{
|
|
100
100
|
conteudo: z.ZodString;
|
|
101
101
|
quantidade: z.ZodString;
|
|
102
102
|
valor: z.ZodString;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
|
-
conteudo: string;
|
|
105
|
-
quantidade: string;
|
|
106
104
|
valor: string;
|
|
107
|
-
}, {
|
|
108
|
-
conteudo: string;
|
|
109
105
|
quantidade: string;
|
|
106
|
+
conteudo: string;
|
|
107
|
+
}, {
|
|
110
108
|
valor: string;
|
|
109
|
+
quantidade: string;
|
|
110
|
+
conteudo: string;
|
|
111
111
|
}>;
|
|
112
112
|
declare const PrepostSchema: z.ZodObject<{
|
|
113
113
|
idCorreios: z.ZodString;
|
|
@@ -126,52 +126,52 @@ declare const PrepostSchema: z.ZodObject<{
|
|
|
126
126
|
complemento: z.ZodOptional<z.ZodString>;
|
|
127
127
|
uf: z.ZodString;
|
|
128
128
|
}, "strip", z.ZodTypeAny, {
|
|
129
|
+
cidade: string;
|
|
130
|
+
uf: string;
|
|
129
131
|
cep: string;
|
|
130
132
|
logradouro: string;
|
|
131
133
|
numero: string;
|
|
132
134
|
bairro: string;
|
|
133
|
-
cidade: string;
|
|
134
|
-
uf: string;
|
|
135
135
|
complemento?: string | undefined;
|
|
136
136
|
}, {
|
|
137
|
+
cidade: string;
|
|
138
|
+
uf: string;
|
|
137
139
|
cep: string;
|
|
138
140
|
logradouro: string;
|
|
139
141
|
numero: string;
|
|
140
142
|
bairro: string;
|
|
141
|
-
cidade: string;
|
|
142
|
-
uf: string;
|
|
143
143
|
complemento?: string | undefined;
|
|
144
144
|
}>;
|
|
145
145
|
}, "strip", z.ZodTypeAny, {
|
|
146
|
-
nome: string;
|
|
147
|
-
dddCelular: string;
|
|
148
|
-
celular: string;
|
|
149
146
|
email: string;
|
|
150
|
-
|
|
147
|
+
nome: string;
|
|
151
148
|
endereco: {
|
|
149
|
+
cidade: string;
|
|
150
|
+
uf: string;
|
|
152
151
|
cep: string;
|
|
153
152
|
logradouro: string;
|
|
154
153
|
numero: string;
|
|
155
154
|
bairro: string;
|
|
156
|
-
cidade: string;
|
|
157
|
-
uf: string;
|
|
158
155
|
complemento?: string | undefined;
|
|
159
156
|
};
|
|
160
|
-
}, {
|
|
161
|
-
nome: string;
|
|
162
157
|
dddCelular: string;
|
|
163
158
|
celular: string;
|
|
164
|
-
email: string;
|
|
165
159
|
cpfCnpj: string;
|
|
160
|
+
}, {
|
|
161
|
+
email: string;
|
|
162
|
+
nome: string;
|
|
166
163
|
endereco: {
|
|
164
|
+
cidade: string;
|
|
165
|
+
uf: string;
|
|
167
166
|
cep: string;
|
|
168
167
|
logradouro: string;
|
|
169
168
|
numero: string;
|
|
170
169
|
bairro: string;
|
|
171
|
-
cidade: string;
|
|
172
|
-
uf: string;
|
|
173
170
|
complemento?: string | undefined;
|
|
174
171
|
};
|
|
172
|
+
dddCelular: string;
|
|
173
|
+
celular: string;
|
|
174
|
+
cpfCnpj: string;
|
|
175
175
|
}>;
|
|
176
176
|
destinatario: z.ZodObject<{
|
|
177
177
|
nome: z.ZodString;
|
|
@@ -188,52 +188,52 @@ declare const PrepostSchema: z.ZodObject<{
|
|
|
188
188
|
complemento: z.ZodOptional<z.ZodString>;
|
|
189
189
|
uf: z.ZodString;
|
|
190
190
|
}, "strip", z.ZodTypeAny, {
|
|
191
|
+
cidade: string;
|
|
192
|
+
uf: string;
|
|
191
193
|
cep: string;
|
|
192
194
|
logradouro: string;
|
|
193
195
|
numero: string;
|
|
194
196
|
bairro: string;
|
|
195
|
-
cidade: string;
|
|
196
|
-
uf: string;
|
|
197
197
|
complemento?: string | undefined;
|
|
198
198
|
}, {
|
|
199
|
+
cidade: string;
|
|
200
|
+
uf: string;
|
|
199
201
|
cep: string;
|
|
200
202
|
logradouro: string;
|
|
201
203
|
numero: string;
|
|
202
204
|
bairro: string;
|
|
203
|
-
cidade: string;
|
|
204
|
-
uf: string;
|
|
205
205
|
complemento?: string | undefined;
|
|
206
206
|
}>;
|
|
207
207
|
}, "strip", z.ZodTypeAny, {
|
|
208
|
-
nome: string;
|
|
209
|
-
dddCelular: string;
|
|
210
|
-
celular: string;
|
|
211
208
|
email: string;
|
|
212
|
-
|
|
209
|
+
nome: string;
|
|
213
210
|
endereco: {
|
|
211
|
+
cidade: string;
|
|
212
|
+
uf: string;
|
|
214
213
|
cep: string;
|
|
215
214
|
logradouro: string;
|
|
216
215
|
numero: string;
|
|
217
216
|
bairro: string;
|
|
218
|
-
cidade: string;
|
|
219
|
-
uf: string;
|
|
220
217
|
complemento?: string | undefined;
|
|
221
218
|
};
|
|
222
|
-
}, {
|
|
223
|
-
nome: string;
|
|
224
219
|
dddCelular: string;
|
|
225
220
|
celular: string;
|
|
226
|
-
email: string;
|
|
227
221
|
cpfCnpj: string;
|
|
222
|
+
}, {
|
|
223
|
+
email: string;
|
|
224
|
+
nome: string;
|
|
228
225
|
endereco: {
|
|
226
|
+
cidade: string;
|
|
227
|
+
uf: string;
|
|
229
228
|
cep: string;
|
|
230
229
|
logradouro: string;
|
|
231
230
|
numero: string;
|
|
232
231
|
bairro: string;
|
|
233
|
-
cidade: string;
|
|
234
|
-
uf: string;
|
|
235
232
|
complemento?: string | undefined;
|
|
236
233
|
};
|
|
234
|
+
dddCelular: string;
|
|
235
|
+
celular: string;
|
|
236
|
+
cpfCnpj: string;
|
|
237
237
|
}>;
|
|
238
238
|
codigoServico: z.ZodString;
|
|
239
239
|
numeroCartaoPostagem: z.ZodString;
|
|
@@ -242,13 +242,13 @@ declare const PrepostSchema: z.ZodObject<{
|
|
|
242
242
|
quantidade: z.ZodString;
|
|
243
243
|
valor: z.ZodString;
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
|
-
conteudo: string;
|
|
246
|
-
quantidade: string;
|
|
247
245
|
valor: string;
|
|
248
|
-
}, {
|
|
249
|
-
conteudo: string;
|
|
250
246
|
quantidade: string;
|
|
247
|
+
conteudo: string;
|
|
248
|
+
}, {
|
|
251
249
|
valor: string;
|
|
250
|
+
quantidade: string;
|
|
251
|
+
conteudo: string;
|
|
252
252
|
}>, "many">;
|
|
253
253
|
pesoInformado: z.ZodString;
|
|
254
254
|
codigoFormatoObjetoInformado: z.ZodString;
|
|
@@ -261,43 +261,43 @@ declare const PrepostSchema: z.ZodObject<{
|
|
|
261
261
|
}, "strip", z.ZodTypeAny, {
|
|
262
262
|
idCorreios: string;
|
|
263
263
|
remetente: {
|
|
264
|
-
nome: string;
|
|
265
|
-
dddCelular: string;
|
|
266
|
-
celular: string;
|
|
267
264
|
email: string;
|
|
268
|
-
|
|
265
|
+
nome: string;
|
|
269
266
|
endereco: {
|
|
267
|
+
cidade: string;
|
|
268
|
+
uf: string;
|
|
270
269
|
cep: string;
|
|
271
270
|
logradouro: string;
|
|
272
271
|
numero: string;
|
|
273
272
|
bairro: string;
|
|
274
|
-
cidade: string;
|
|
275
|
-
uf: string;
|
|
276
273
|
complemento?: string | undefined;
|
|
277
274
|
};
|
|
278
|
-
};
|
|
279
|
-
destinatario: {
|
|
280
|
-
nome: string;
|
|
281
275
|
dddCelular: string;
|
|
282
276
|
celular: string;
|
|
283
|
-
email: string;
|
|
284
277
|
cpfCnpj: string;
|
|
278
|
+
};
|
|
279
|
+
destinatario: {
|
|
280
|
+
email: string;
|
|
281
|
+
nome: string;
|
|
285
282
|
endereco: {
|
|
283
|
+
cidade: string;
|
|
284
|
+
uf: string;
|
|
286
285
|
cep: string;
|
|
287
286
|
logradouro: string;
|
|
288
287
|
numero: string;
|
|
289
288
|
bairro: string;
|
|
290
|
-
cidade: string;
|
|
291
|
-
uf: string;
|
|
292
289
|
complemento?: string | undefined;
|
|
293
290
|
};
|
|
291
|
+
dddCelular: string;
|
|
292
|
+
celular: string;
|
|
293
|
+
cpfCnpj: string;
|
|
294
294
|
};
|
|
295
295
|
codigoServico: string;
|
|
296
296
|
numeroCartaoPostagem: string;
|
|
297
297
|
itensDeclaracaoConteudo: {
|
|
298
|
-
conteudo: string;
|
|
299
|
-
quantidade: string;
|
|
300
298
|
valor: string;
|
|
299
|
+
quantidade: string;
|
|
300
|
+
conteudo: string;
|
|
301
301
|
}[];
|
|
302
302
|
pesoInformado: string;
|
|
303
303
|
codigoFormatoObjetoInformado: string;
|
|
@@ -310,43 +310,43 @@ declare const PrepostSchema: z.ZodObject<{
|
|
|
310
310
|
}, {
|
|
311
311
|
idCorreios: string;
|
|
312
312
|
remetente: {
|
|
313
|
-
nome: string;
|
|
314
|
-
dddCelular: string;
|
|
315
|
-
celular: string;
|
|
316
313
|
email: string;
|
|
317
|
-
|
|
314
|
+
nome: string;
|
|
318
315
|
endereco: {
|
|
316
|
+
cidade: string;
|
|
317
|
+
uf: string;
|
|
319
318
|
cep: string;
|
|
320
319
|
logradouro: string;
|
|
321
320
|
numero: string;
|
|
322
321
|
bairro: string;
|
|
323
|
-
cidade: string;
|
|
324
|
-
uf: string;
|
|
325
322
|
complemento?: string | undefined;
|
|
326
323
|
};
|
|
327
|
-
};
|
|
328
|
-
destinatario: {
|
|
329
|
-
nome: string;
|
|
330
324
|
dddCelular: string;
|
|
331
325
|
celular: string;
|
|
332
|
-
email: string;
|
|
333
326
|
cpfCnpj: string;
|
|
327
|
+
};
|
|
328
|
+
destinatario: {
|
|
329
|
+
email: string;
|
|
330
|
+
nome: string;
|
|
334
331
|
endereco: {
|
|
332
|
+
cidade: string;
|
|
333
|
+
uf: string;
|
|
335
334
|
cep: string;
|
|
336
335
|
logradouro: string;
|
|
337
336
|
numero: string;
|
|
338
337
|
bairro: string;
|
|
339
|
-
cidade: string;
|
|
340
|
-
uf: string;
|
|
341
338
|
complemento?: string | undefined;
|
|
342
339
|
};
|
|
340
|
+
dddCelular: string;
|
|
341
|
+
celular: string;
|
|
342
|
+
cpfCnpj: string;
|
|
343
343
|
};
|
|
344
344
|
codigoServico: string;
|
|
345
345
|
numeroCartaoPostagem: string;
|
|
346
346
|
itensDeclaracaoConteudo: {
|
|
347
|
-
conteudo: string;
|
|
348
|
-
quantidade: string;
|
|
349
347
|
valor: string;
|
|
348
|
+
quantidade: string;
|
|
349
|
+
conteudo: string;
|
|
350
350
|
}[];
|
|
351
351
|
pesoInformado: string;
|
|
352
352
|
codigoFormatoObjetoInformado: string;
|
|
@@ -378,52 +378,52 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
378
378
|
complemento: z.ZodOptional<z.ZodString>;
|
|
379
379
|
uf: z.ZodString;
|
|
380
380
|
}, "strip", z.ZodTypeAny, {
|
|
381
|
+
cidade: string;
|
|
382
|
+
uf: string;
|
|
381
383
|
cep: string;
|
|
382
384
|
logradouro: string;
|
|
383
385
|
numero: string;
|
|
384
386
|
bairro: string;
|
|
385
|
-
cidade: string;
|
|
386
|
-
uf: string;
|
|
387
387
|
complemento?: string | undefined;
|
|
388
388
|
}, {
|
|
389
|
+
cidade: string;
|
|
390
|
+
uf: string;
|
|
389
391
|
cep: string;
|
|
390
392
|
logradouro: string;
|
|
391
393
|
numero: string;
|
|
392
394
|
bairro: string;
|
|
393
|
-
cidade: string;
|
|
394
|
-
uf: string;
|
|
395
395
|
complemento?: string | undefined;
|
|
396
396
|
}>;
|
|
397
397
|
}, "strip", z.ZodTypeAny, {
|
|
398
|
-
nome: string;
|
|
399
|
-
dddCelular: string;
|
|
400
|
-
celular: string;
|
|
401
398
|
email: string;
|
|
402
|
-
|
|
399
|
+
nome: string;
|
|
403
400
|
endereco: {
|
|
401
|
+
cidade: string;
|
|
402
|
+
uf: string;
|
|
404
403
|
cep: string;
|
|
405
404
|
logradouro: string;
|
|
406
405
|
numero: string;
|
|
407
406
|
bairro: string;
|
|
408
|
-
cidade: string;
|
|
409
|
-
uf: string;
|
|
410
407
|
complemento?: string | undefined;
|
|
411
408
|
};
|
|
412
|
-
}, {
|
|
413
|
-
nome: string;
|
|
414
409
|
dddCelular: string;
|
|
415
410
|
celular: string;
|
|
416
|
-
email: string;
|
|
417
411
|
cpfCnpj: string;
|
|
412
|
+
}, {
|
|
413
|
+
email: string;
|
|
414
|
+
nome: string;
|
|
418
415
|
endereco: {
|
|
416
|
+
cidade: string;
|
|
417
|
+
uf: string;
|
|
419
418
|
cep: string;
|
|
420
419
|
logradouro: string;
|
|
421
420
|
numero: string;
|
|
422
421
|
bairro: string;
|
|
423
|
-
cidade: string;
|
|
424
|
-
uf: string;
|
|
425
422
|
complemento?: string | undefined;
|
|
426
423
|
};
|
|
424
|
+
dddCelular: string;
|
|
425
|
+
celular: string;
|
|
426
|
+
cpfCnpj: string;
|
|
427
427
|
}>;
|
|
428
428
|
destinatario: z.ZodObject<{
|
|
429
429
|
nome: z.ZodString;
|
|
@@ -440,52 +440,52 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
440
440
|
complemento: z.ZodOptional<z.ZodString>;
|
|
441
441
|
uf: z.ZodString;
|
|
442
442
|
}, "strip", z.ZodTypeAny, {
|
|
443
|
+
cidade: string;
|
|
444
|
+
uf: string;
|
|
443
445
|
cep: string;
|
|
444
446
|
logradouro: string;
|
|
445
447
|
numero: string;
|
|
446
448
|
bairro: string;
|
|
447
|
-
cidade: string;
|
|
448
|
-
uf: string;
|
|
449
449
|
complemento?: string | undefined;
|
|
450
450
|
}, {
|
|
451
|
+
cidade: string;
|
|
452
|
+
uf: string;
|
|
451
453
|
cep: string;
|
|
452
454
|
logradouro: string;
|
|
453
455
|
numero: string;
|
|
454
456
|
bairro: string;
|
|
455
|
-
cidade: string;
|
|
456
|
-
uf: string;
|
|
457
457
|
complemento?: string | undefined;
|
|
458
458
|
}>;
|
|
459
459
|
}, "strip", z.ZodTypeAny, {
|
|
460
|
-
nome: string;
|
|
461
|
-
dddCelular: string;
|
|
462
|
-
celular: string;
|
|
463
460
|
email: string;
|
|
464
|
-
|
|
461
|
+
nome: string;
|
|
465
462
|
endereco: {
|
|
463
|
+
cidade: string;
|
|
464
|
+
uf: string;
|
|
466
465
|
cep: string;
|
|
467
466
|
logradouro: string;
|
|
468
467
|
numero: string;
|
|
469
468
|
bairro: string;
|
|
470
|
-
cidade: string;
|
|
471
|
-
uf: string;
|
|
472
469
|
complemento?: string | undefined;
|
|
473
470
|
};
|
|
474
|
-
}, {
|
|
475
|
-
nome: string;
|
|
476
471
|
dddCelular: string;
|
|
477
472
|
celular: string;
|
|
478
|
-
email: string;
|
|
479
473
|
cpfCnpj: string;
|
|
474
|
+
}, {
|
|
475
|
+
email: string;
|
|
476
|
+
nome: string;
|
|
480
477
|
endereco: {
|
|
478
|
+
cidade: string;
|
|
479
|
+
uf: string;
|
|
481
480
|
cep: string;
|
|
482
481
|
logradouro: string;
|
|
483
482
|
numero: string;
|
|
484
483
|
bairro: string;
|
|
485
|
-
cidade: string;
|
|
486
|
-
uf: string;
|
|
487
484
|
complemento?: string | undefined;
|
|
488
485
|
};
|
|
486
|
+
dddCelular: string;
|
|
487
|
+
celular: string;
|
|
488
|
+
cpfCnpj: string;
|
|
489
489
|
}>;
|
|
490
490
|
codigoObjeto: z.ZodString;
|
|
491
491
|
codigoServico: z.ZodString;
|
|
@@ -495,13 +495,13 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
495
495
|
quantidade: z.ZodString;
|
|
496
496
|
valor: z.ZodString;
|
|
497
497
|
}, "strip", z.ZodTypeAny, {
|
|
498
|
-
conteudo: string;
|
|
499
|
-
quantidade: string;
|
|
500
498
|
valor: string;
|
|
501
|
-
}, {
|
|
502
|
-
conteudo: string;
|
|
503
499
|
quantidade: string;
|
|
500
|
+
conteudo: string;
|
|
501
|
+
}, {
|
|
504
502
|
valor: string;
|
|
503
|
+
quantidade: string;
|
|
504
|
+
conteudo: string;
|
|
505
505
|
}>, "many">;
|
|
506
506
|
pesoInformado: z.ZodString;
|
|
507
507
|
alturaInformada: z.ZodString;
|
|
@@ -545,40 +545,40 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
545
545
|
bairro: z.ZodOptional<z.ZodString>;
|
|
546
546
|
}, "strip", z.ZodTypeAny, {
|
|
547
547
|
uf: string;
|
|
548
|
+
cidade?: string | undefined;
|
|
548
549
|
cep?: string | undefined;
|
|
549
550
|
logradouro?: string | undefined;
|
|
550
551
|
numero?: string | undefined;
|
|
551
552
|
bairro?: string | undefined;
|
|
552
|
-
cidade?: string | undefined;
|
|
553
553
|
}, {
|
|
554
554
|
uf: string;
|
|
555
|
+
cidade?: string | undefined;
|
|
555
556
|
cep?: string | undefined;
|
|
556
557
|
logradouro?: string | undefined;
|
|
557
558
|
numero?: string | undefined;
|
|
558
559
|
bairro?: string | undefined;
|
|
559
|
-
cidade?: string | undefined;
|
|
560
560
|
}>;
|
|
561
561
|
}, "strip", z.ZodTypeAny, {
|
|
562
|
+
tipo: string;
|
|
562
563
|
endereco: {
|
|
563
564
|
uf: string;
|
|
565
|
+
cidade?: string | undefined;
|
|
564
566
|
cep?: string | undefined;
|
|
565
567
|
logradouro?: string | undefined;
|
|
566
568
|
numero?: string | undefined;
|
|
567
569
|
bairro?: string | undefined;
|
|
568
|
-
cidade?: string | undefined;
|
|
569
570
|
};
|
|
570
|
-
tipo: string;
|
|
571
571
|
codSro?: string | undefined;
|
|
572
572
|
}, {
|
|
573
|
+
tipo: string;
|
|
573
574
|
endereco: {
|
|
574
575
|
uf: string;
|
|
576
|
+
cidade?: string | undefined;
|
|
575
577
|
cep?: string | undefined;
|
|
576
578
|
logradouro?: string | undefined;
|
|
577
579
|
numero?: string | undefined;
|
|
578
580
|
bairro?: string | undefined;
|
|
579
|
-
cidade?: string | undefined;
|
|
580
581
|
};
|
|
581
|
-
tipo: string;
|
|
582
582
|
codSro?: string | undefined;
|
|
583
583
|
}>;
|
|
584
584
|
detalhe: z.ZodOptional<z.ZodString>;
|
|
@@ -604,55 +604,55 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
604
604
|
bairro: z.ZodOptional<z.ZodString>;
|
|
605
605
|
}, "strip", z.ZodTypeAny, {
|
|
606
606
|
uf: string;
|
|
607
|
+
cidade?: string | undefined;
|
|
607
608
|
cep?: string | undefined;
|
|
608
609
|
logradouro?: string | undefined;
|
|
609
610
|
numero?: string | undefined;
|
|
610
611
|
bairro?: string | undefined;
|
|
611
|
-
cidade?: string | undefined;
|
|
612
612
|
}, {
|
|
613
613
|
uf: string;
|
|
614
|
+
cidade?: string | undefined;
|
|
614
615
|
cep?: string | undefined;
|
|
615
616
|
logradouro?: string | undefined;
|
|
616
617
|
numero?: string | undefined;
|
|
617
618
|
bairro?: string | undefined;
|
|
618
|
-
cidade?: string | undefined;
|
|
619
619
|
}>;
|
|
620
620
|
}, "strip", z.ZodTypeAny, {
|
|
621
|
+
tipo: string;
|
|
621
622
|
endereco: {
|
|
622
623
|
uf: string;
|
|
624
|
+
cidade?: string | undefined;
|
|
623
625
|
cep?: string | undefined;
|
|
624
626
|
logradouro?: string | undefined;
|
|
625
627
|
numero?: string | undefined;
|
|
626
628
|
bairro?: string | undefined;
|
|
627
|
-
cidade?: string | undefined;
|
|
628
629
|
};
|
|
629
|
-
tipo: string;
|
|
630
630
|
}, {
|
|
631
|
+
tipo: string;
|
|
631
632
|
endereco: {
|
|
632
633
|
uf: string;
|
|
634
|
+
cidade?: string | undefined;
|
|
633
635
|
cep?: string | undefined;
|
|
634
636
|
logradouro?: string | undefined;
|
|
635
637
|
numero?: string | undefined;
|
|
636
638
|
bairro?: string | undefined;
|
|
637
|
-
cidade?: string | undefined;
|
|
638
639
|
};
|
|
639
|
-
tipo: string;
|
|
640
640
|
}>>;
|
|
641
641
|
}, "strip", z.ZodTypeAny, {
|
|
642
642
|
codigo: string;
|
|
643
643
|
tipo: string;
|
|
644
|
-
dtHrCriado: string;
|
|
645
644
|
descricao: string;
|
|
645
|
+
dtHrCriado: string;
|
|
646
646
|
unidade: {
|
|
647
|
+
tipo: string;
|
|
647
648
|
endereco: {
|
|
648
649
|
uf: string;
|
|
650
|
+
cidade?: string | undefined;
|
|
649
651
|
cep?: string | undefined;
|
|
650
652
|
logradouro?: string | undefined;
|
|
651
653
|
numero?: string | undefined;
|
|
652
654
|
bairro?: string | undefined;
|
|
653
|
-
cidade?: string | undefined;
|
|
654
655
|
};
|
|
655
|
-
tipo: string;
|
|
656
656
|
codSro?: string | undefined;
|
|
657
657
|
};
|
|
658
658
|
detalhe?: string | undefined;
|
|
@@ -662,31 +662,31 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
662
662
|
documento: string;
|
|
663
663
|
} | undefined;
|
|
664
664
|
unidadeDestino?: {
|
|
665
|
+
tipo: string;
|
|
665
666
|
endereco: {
|
|
666
667
|
uf: string;
|
|
668
|
+
cidade?: string | undefined;
|
|
667
669
|
cep?: string | undefined;
|
|
668
670
|
logradouro?: string | undefined;
|
|
669
671
|
numero?: string | undefined;
|
|
670
672
|
bairro?: string | undefined;
|
|
671
|
-
cidade?: string | undefined;
|
|
672
673
|
};
|
|
673
|
-
tipo: string;
|
|
674
674
|
} | undefined;
|
|
675
675
|
}, {
|
|
676
676
|
codigo: string;
|
|
677
677
|
tipo: string;
|
|
678
|
-
dtHrCriado: string;
|
|
679
678
|
descricao: string;
|
|
679
|
+
dtHrCriado: string;
|
|
680
680
|
unidade: {
|
|
681
|
+
tipo: string;
|
|
681
682
|
endereco: {
|
|
682
683
|
uf: string;
|
|
684
|
+
cidade?: string | undefined;
|
|
683
685
|
cep?: string | undefined;
|
|
684
686
|
logradouro?: string | undefined;
|
|
685
687
|
numero?: string | undefined;
|
|
686
688
|
bairro?: string | undefined;
|
|
687
|
-
cidade?: string | undefined;
|
|
688
689
|
};
|
|
689
|
-
tipo: string;
|
|
690
690
|
codSro?: string | undefined;
|
|
691
691
|
};
|
|
692
692
|
detalhe?: string | undefined;
|
|
@@ -696,57 +696,60 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
696
696
|
documento: string;
|
|
697
697
|
} | undefined;
|
|
698
698
|
unidadeDestino?: {
|
|
699
|
+
tipo: string;
|
|
699
700
|
endereco: {
|
|
700
701
|
uf: string;
|
|
702
|
+
cidade?: string | undefined;
|
|
701
703
|
cep?: string | undefined;
|
|
702
704
|
logradouro?: string | undefined;
|
|
703
705
|
numero?: string | undefined;
|
|
704
706
|
bairro?: string | undefined;
|
|
705
|
-
cidade?: string | undefined;
|
|
706
707
|
};
|
|
707
|
-
tipo: string;
|
|
708
708
|
} | undefined;
|
|
709
709
|
}>, "many">>;
|
|
710
710
|
}>, "strip", z.ZodTypeAny, {
|
|
711
|
+
id: string | number;
|
|
712
|
+
price: number;
|
|
713
|
+
deliveryTime: number;
|
|
711
714
|
idCorreios: string;
|
|
712
715
|
remetente: {
|
|
713
|
-
nome: string;
|
|
714
|
-
dddCelular: string;
|
|
715
|
-
celular: string;
|
|
716
716
|
email: string;
|
|
717
|
-
|
|
717
|
+
nome: string;
|
|
718
718
|
endereco: {
|
|
719
|
+
cidade: string;
|
|
720
|
+
uf: string;
|
|
719
721
|
cep: string;
|
|
720
722
|
logradouro: string;
|
|
721
723
|
numero: string;
|
|
722
724
|
bairro: string;
|
|
723
|
-
cidade: string;
|
|
724
|
-
uf: string;
|
|
725
725
|
complemento?: string | undefined;
|
|
726
726
|
};
|
|
727
|
-
};
|
|
728
|
-
destinatario: {
|
|
729
|
-
nome: string;
|
|
730
727
|
dddCelular: string;
|
|
731
728
|
celular: string;
|
|
732
|
-
email: string;
|
|
733
729
|
cpfCnpj: string;
|
|
730
|
+
};
|
|
731
|
+
destinatario: {
|
|
732
|
+
email: string;
|
|
733
|
+
nome: string;
|
|
734
734
|
endereco: {
|
|
735
|
+
cidade: string;
|
|
736
|
+
uf: string;
|
|
735
737
|
cep: string;
|
|
736
738
|
logradouro: string;
|
|
737
739
|
numero: string;
|
|
738
740
|
bairro: string;
|
|
739
|
-
cidade: string;
|
|
740
|
-
uf: string;
|
|
741
741
|
complemento?: string | undefined;
|
|
742
742
|
};
|
|
743
|
+
dddCelular: string;
|
|
744
|
+
celular: string;
|
|
745
|
+
cpfCnpj: string;
|
|
743
746
|
};
|
|
744
747
|
codigoServico: string;
|
|
745
748
|
numeroCartaoPostagem: string;
|
|
746
749
|
itensDeclaracaoConteudo: {
|
|
747
|
-
conteudo: string;
|
|
748
|
-
quantidade: string;
|
|
749
750
|
valor: string;
|
|
751
|
+
quantidade: string;
|
|
752
|
+
conteudo: string;
|
|
750
753
|
}[];
|
|
751
754
|
pesoInformado: string;
|
|
752
755
|
codigoFormatoObjetoInformado: string;
|
|
@@ -755,7 +758,6 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
755
758
|
comprimentoInformado: string;
|
|
756
759
|
cienteObjetoNaoProibido: number;
|
|
757
760
|
dataPrevistaPostagem: string;
|
|
758
|
-
id: string | number;
|
|
759
761
|
codigoObjeto: string;
|
|
760
762
|
servico: string;
|
|
761
763
|
statusAtual: StatusEnumNative;
|
|
@@ -770,28 +772,26 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
770
772
|
historicoStatus: any[];
|
|
771
773
|
logisticaReversa: string;
|
|
772
774
|
mainId: string;
|
|
773
|
-
price: number;
|
|
774
|
-
deliveryTime: number;
|
|
775
|
-
observacao?: string | undefined;
|
|
776
775
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
777
776
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
778
777
|
order?: number | null | undefined;
|
|
778
|
+
observacao?: string | undefined;
|
|
779
779
|
prazoPostagem?: string | undefined;
|
|
780
780
|
events?: {
|
|
781
781
|
codigo: string;
|
|
782
782
|
tipo: string;
|
|
783
|
-
dtHrCriado: string;
|
|
784
783
|
descricao: string;
|
|
784
|
+
dtHrCriado: string;
|
|
785
785
|
unidade: {
|
|
786
|
+
tipo: string;
|
|
786
787
|
endereco: {
|
|
787
788
|
uf: string;
|
|
789
|
+
cidade?: string | undefined;
|
|
788
790
|
cep?: string | undefined;
|
|
789
791
|
logradouro?: string | undefined;
|
|
790
792
|
numero?: string | undefined;
|
|
791
793
|
bairro?: string | undefined;
|
|
792
|
-
cidade?: string | undefined;
|
|
793
794
|
};
|
|
794
|
-
tipo: string;
|
|
795
795
|
codSro?: string | undefined;
|
|
796
796
|
};
|
|
797
797
|
detalhe?: string | undefined;
|
|
@@ -801,57 +801,59 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
801
801
|
documento: string;
|
|
802
802
|
} | undefined;
|
|
803
803
|
unidadeDestino?: {
|
|
804
|
+
tipo: string;
|
|
804
805
|
endereco: {
|
|
805
806
|
uf: string;
|
|
807
|
+
cidade?: string | undefined;
|
|
806
808
|
cep?: string | undefined;
|
|
807
809
|
logradouro?: string | undefined;
|
|
808
810
|
numero?: string | undefined;
|
|
809
811
|
bairro?: string | undefined;
|
|
810
|
-
cidade?: string | undefined;
|
|
811
812
|
};
|
|
812
|
-
tipo: string;
|
|
813
813
|
} | undefined;
|
|
814
814
|
}[] | undefined;
|
|
815
815
|
}, {
|
|
816
|
+
price: number;
|
|
817
|
+
deliveryTime: number;
|
|
816
818
|
idCorreios: string;
|
|
817
819
|
remetente: {
|
|
818
|
-
nome: string;
|
|
819
|
-
dddCelular: string;
|
|
820
|
-
celular: string;
|
|
821
820
|
email: string;
|
|
822
|
-
|
|
821
|
+
nome: string;
|
|
823
822
|
endereco: {
|
|
823
|
+
cidade: string;
|
|
824
|
+
uf: string;
|
|
824
825
|
cep: string;
|
|
825
826
|
logradouro: string;
|
|
826
827
|
numero: string;
|
|
827
828
|
bairro: string;
|
|
828
|
-
cidade: string;
|
|
829
|
-
uf: string;
|
|
830
829
|
complemento?: string | undefined;
|
|
831
830
|
};
|
|
832
|
-
};
|
|
833
|
-
destinatario: {
|
|
834
|
-
nome: string;
|
|
835
831
|
dddCelular: string;
|
|
836
832
|
celular: string;
|
|
837
|
-
email: string;
|
|
838
833
|
cpfCnpj: string;
|
|
834
|
+
};
|
|
835
|
+
destinatario: {
|
|
836
|
+
email: string;
|
|
837
|
+
nome: string;
|
|
839
838
|
endereco: {
|
|
839
|
+
cidade: string;
|
|
840
|
+
uf: string;
|
|
840
841
|
cep: string;
|
|
841
842
|
logradouro: string;
|
|
842
843
|
numero: string;
|
|
843
844
|
bairro: string;
|
|
844
|
-
cidade: string;
|
|
845
|
-
uf: string;
|
|
846
845
|
complemento?: string | undefined;
|
|
847
846
|
};
|
|
847
|
+
dddCelular: string;
|
|
848
|
+
celular: string;
|
|
849
|
+
cpfCnpj: string;
|
|
848
850
|
};
|
|
849
851
|
codigoServico: string;
|
|
850
852
|
numeroCartaoPostagem: string;
|
|
851
853
|
itensDeclaracaoConteudo: {
|
|
852
|
-
conteudo: string;
|
|
853
|
-
quantidade: string;
|
|
854
854
|
valor: string;
|
|
855
|
+
quantidade: string;
|
|
856
|
+
conteudo: string;
|
|
855
857
|
}[];
|
|
856
858
|
pesoInformado: string;
|
|
857
859
|
codigoFormatoObjetoInformado: string;
|
|
@@ -874,29 +876,27 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
874
876
|
historicoStatus: any[];
|
|
875
877
|
logisticaReversa: string;
|
|
876
878
|
mainId: string;
|
|
877
|
-
price: number;
|
|
878
|
-
deliveryTime: number;
|
|
879
|
-
observacao?: string | undefined;
|
|
880
879
|
id?: unknown;
|
|
881
880
|
createdAt?: unknown;
|
|
882
881
|
updatedAt?: unknown;
|
|
883
882
|
order?: number | null | undefined;
|
|
883
|
+
observacao?: string | undefined;
|
|
884
884
|
prazoPostagem?: string | undefined;
|
|
885
885
|
events?: {
|
|
886
886
|
codigo: string;
|
|
887
887
|
tipo: string;
|
|
888
|
-
dtHrCriado: string;
|
|
889
888
|
descricao: string;
|
|
889
|
+
dtHrCriado: string;
|
|
890
890
|
unidade: {
|
|
891
|
+
tipo: string;
|
|
891
892
|
endereco: {
|
|
892
893
|
uf: string;
|
|
894
|
+
cidade?: string | undefined;
|
|
893
895
|
cep?: string | undefined;
|
|
894
896
|
logradouro?: string | undefined;
|
|
895
897
|
numero?: string | undefined;
|
|
896
898
|
bairro?: string | undefined;
|
|
897
|
-
cidade?: string | undefined;
|
|
898
899
|
};
|
|
899
|
-
tipo: string;
|
|
900
900
|
codSro?: string | undefined;
|
|
901
901
|
};
|
|
902
902
|
detalhe?: string | undefined;
|
|
@@ -906,15 +906,15 @@ declare const CorreiosTagSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
906
906
|
documento: string;
|
|
907
907
|
} | undefined;
|
|
908
908
|
unidadeDestino?: {
|
|
909
|
+
tipo: string;
|
|
909
910
|
endereco: {
|
|
910
911
|
uf: string;
|
|
912
|
+
cidade?: string | undefined;
|
|
911
913
|
cep?: string | undefined;
|
|
912
914
|
logradouro?: string | undefined;
|
|
913
915
|
numero?: string | undefined;
|
|
914
916
|
bairro?: string | undefined;
|
|
915
|
-
cidade?: string | undefined;
|
|
916
917
|
};
|
|
917
|
-
tipo: string;
|
|
918
918
|
} | undefined;
|
|
919
919
|
}[] | undefined;
|
|
920
920
|
}>;
|