@_henriquewilson/gabirubi-domain 1.4.21 → 1.4.23
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 +18 -18
- package/dist/model/correios/prepost.d.ts +18 -18
- package/dist/model/integrada/order.d.mts +140 -140
- package/dist/model/integrada/order.d.ts +140 -140
- package/dist/model/intercom/conversation.d.mts +325 -325
- package/dist/model/intercom/conversation.d.ts +325 -325
- package/dist/model/intercom/hook.d.mts +3209 -3209
- package/dist/model/intercom/hook.d.ts +3209 -3209
- package/dist/model/iugu/iugu-invoice.d.mts +36 -36
- package/dist/model/iugu/iugu-invoice.d.ts +36 -36
- package/dist/model/journey.d.mts +139 -77
- package/dist/model/journey.d.ts +139 -77
- package/dist/model/journey.js +18 -11
- package/dist/model/journey.js.map +1 -1
- package/dist/model/journey.mjs +15 -12
- package/dist/model/journey.mjs.map +1 -1
- package/dist/model/melhorenvio/calculate.d.mts +18 -18
- package/dist/model/melhorenvio/calculate.d.ts +18 -18
- package/dist/model/melhorenvio/order.d.mts +40 -40
- package/dist/model/melhorenvio/order.d.ts +40 -40
- package/dist/model/melhorenvio/service.d.mts +100 -100
- package/dist/model/melhorenvio/service.d.ts +100 -100
- package/dist/model/store/shipping.d.mts +36 -36
- package/dist/model/store/shipping.d.ts +36 -36
- package/dist/model/subscription.model.d.mts +216 -216
- package/dist/model/subscription.model.d.ts +216 -216
- package/dist/model/user.model.d.mts +2 -2
- package/dist/model/user.model.d.ts +2 -2
- package/dist/test/activity.test.js +14 -11
- package/dist/test/activity.test.js.map +1 -1
- package/dist/test/activity.test.mjs +14 -11
- package/dist/test/activity.test.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -15,8 +15,8 @@ declare const CustomerOrderSchema: z.ZodObject<{
|
|
|
15
15
|
telefone_principal: z.ZodString;
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
|
17
17
|
id: number;
|
|
18
|
-
email: string;
|
|
19
18
|
nome: string;
|
|
19
|
+
email: string;
|
|
20
20
|
cpf: string;
|
|
21
21
|
resource_uri: string;
|
|
22
22
|
sexo: string;
|
|
@@ -27,8 +27,8 @@ declare const CustomerOrderSchema: z.ZodObject<{
|
|
|
27
27
|
razao_social?: any;
|
|
28
28
|
}, {
|
|
29
29
|
id: number;
|
|
30
|
-
email: string;
|
|
31
30
|
nome: string;
|
|
31
|
+
email: string;
|
|
32
32
|
cpf: string;
|
|
33
33
|
resource_uri: string;
|
|
34
34
|
sexo: string;
|
|
@@ -487,9 +487,9 @@ declare const CustomShippingInfoSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
487
487
|
}>, "strip", z.ZodTypeAny, {
|
|
488
488
|
length: number;
|
|
489
489
|
id: string | number;
|
|
490
|
+
weight: number;
|
|
490
491
|
width: number;
|
|
491
492
|
height: number;
|
|
492
|
-
weight: number;
|
|
493
493
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
494
494
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
495
495
|
order?: number | null | undefined;
|
|
@@ -497,9 +497,9 @@ declare const CustomShippingInfoSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
497
497
|
insurance?: number | undefined;
|
|
498
498
|
}, {
|
|
499
499
|
length: number;
|
|
500
|
+
weight: number;
|
|
500
501
|
width: number;
|
|
501
502
|
height: number;
|
|
502
|
-
weight: number;
|
|
503
503
|
id?: unknown;
|
|
504
504
|
createdAt?: unknown;
|
|
505
505
|
updatedAt?: unknown;
|
|
@@ -600,8 +600,8 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
600
600
|
telefone_principal: z.ZodString;
|
|
601
601
|
}, "strip", z.ZodTypeAny, {
|
|
602
602
|
id: number;
|
|
603
|
-
email: string;
|
|
604
603
|
nome: string;
|
|
604
|
+
email: string;
|
|
605
605
|
cpf: string;
|
|
606
606
|
resource_uri: string;
|
|
607
607
|
sexo: string;
|
|
@@ -612,8 +612,8 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
612
612
|
razao_social?: any;
|
|
613
613
|
}, {
|
|
614
614
|
id: number;
|
|
615
|
-
email: string;
|
|
616
615
|
nome: string;
|
|
616
|
+
email: string;
|
|
617
617
|
cpf: string;
|
|
618
618
|
resource_uri: string;
|
|
619
619
|
sexo: string;
|
|
@@ -1104,7 +1104,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1104
1104
|
complemento?: string | undefined;
|
|
1105
1105
|
}>;
|
|
1106
1106
|
}, "strip", z.ZodTypeAny, {
|
|
1107
|
-
email: string;
|
|
1108
1107
|
nome: string;
|
|
1109
1108
|
endereco: {
|
|
1110
1109
|
cidade: string;
|
|
@@ -1117,9 +1116,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1117
1116
|
};
|
|
1118
1117
|
dddCelular: string;
|
|
1119
1118
|
celular: string;
|
|
1119
|
+
email: string;
|
|
1120
1120
|
cpfCnpj: string;
|
|
1121
1121
|
}, {
|
|
1122
|
-
email: string;
|
|
1123
1122
|
nome: string;
|
|
1124
1123
|
endereco: {
|
|
1125
1124
|
cidade: string;
|
|
@@ -1132,6 +1131,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1132
1131
|
};
|
|
1133
1132
|
dddCelular: string;
|
|
1134
1133
|
celular: string;
|
|
1134
|
+
email: string;
|
|
1135
1135
|
cpfCnpj: string;
|
|
1136
1136
|
}>;
|
|
1137
1137
|
destinatario: z.ZodObject<{
|
|
@@ -1166,7 +1166,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1166
1166
|
complemento?: string | undefined;
|
|
1167
1167
|
}>;
|
|
1168
1168
|
}, "strip", z.ZodTypeAny, {
|
|
1169
|
-
email: string;
|
|
1170
1169
|
nome: string;
|
|
1171
1170
|
endereco: {
|
|
1172
1171
|
cidade: string;
|
|
@@ -1179,9 +1178,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1179
1178
|
};
|
|
1180
1179
|
dddCelular: string;
|
|
1181
1180
|
celular: string;
|
|
1181
|
+
email: string;
|
|
1182
1182
|
cpfCnpj: string;
|
|
1183
1183
|
}, {
|
|
1184
|
-
email: string;
|
|
1185
1184
|
nome: string;
|
|
1186
1185
|
endereco: {
|
|
1187
1186
|
cidade: string;
|
|
@@ -1194,6 +1193,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1194
1193
|
};
|
|
1195
1194
|
dddCelular: string;
|
|
1196
1195
|
celular: string;
|
|
1196
|
+
email: string;
|
|
1197
1197
|
cpfCnpj: string;
|
|
1198
1198
|
}>;
|
|
1199
1199
|
codigoObjeto: z.ZodString;
|
|
@@ -1422,7 +1422,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1422
1422
|
deliveryTime: number;
|
|
1423
1423
|
idCorreios: string;
|
|
1424
1424
|
remetente: {
|
|
1425
|
-
email: string;
|
|
1426
1425
|
nome: string;
|
|
1427
1426
|
endereco: {
|
|
1428
1427
|
cidade: string;
|
|
@@ -1435,10 +1434,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1435
1434
|
};
|
|
1436
1435
|
dddCelular: string;
|
|
1437
1436
|
celular: string;
|
|
1437
|
+
email: string;
|
|
1438
1438
|
cpfCnpj: string;
|
|
1439
1439
|
};
|
|
1440
1440
|
destinatario: {
|
|
1441
|
-
email: string;
|
|
1442
1441
|
nome: string;
|
|
1443
1442
|
endereco: {
|
|
1444
1443
|
cidade: string;
|
|
@@ -1451,6 +1450,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1451
1450
|
};
|
|
1452
1451
|
dddCelular: string;
|
|
1453
1452
|
celular: string;
|
|
1453
|
+
email: string;
|
|
1454
1454
|
cpfCnpj: string;
|
|
1455
1455
|
};
|
|
1456
1456
|
codigoServico: string;
|
|
@@ -1526,7 +1526,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1526
1526
|
deliveryTime: number;
|
|
1527
1527
|
idCorreios: string;
|
|
1528
1528
|
remetente: {
|
|
1529
|
-
email: string;
|
|
1530
1529
|
nome: string;
|
|
1531
1530
|
endereco: {
|
|
1532
1531
|
cidade: string;
|
|
@@ -1539,10 +1538,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1539
1538
|
};
|
|
1540
1539
|
dddCelular: string;
|
|
1541
1540
|
celular: string;
|
|
1541
|
+
email: string;
|
|
1542
1542
|
cpfCnpj: string;
|
|
1543
1543
|
};
|
|
1544
1544
|
destinatario: {
|
|
1545
|
-
email: string;
|
|
1546
1545
|
nome: string;
|
|
1547
1546
|
endereco: {
|
|
1548
1547
|
cidade: string;
|
|
@@ -1555,6 +1554,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1555
1554
|
};
|
|
1556
1555
|
dddCelular: string;
|
|
1557
1556
|
celular: string;
|
|
1557
|
+
email: string;
|
|
1558
1558
|
cpfCnpj: string;
|
|
1559
1559
|
};
|
|
1560
1560
|
codigoServico: string;
|
|
@@ -1642,9 +1642,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1642
1642
|
}>, "strip", z.ZodTypeAny, {
|
|
1643
1643
|
length: number;
|
|
1644
1644
|
id: string | number;
|
|
1645
|
+
weight: number;
|
|
1645
1646
|
width: number;
|
|
1646
1647
|
height: number;
|
|
1647
|
-
weight: number;
|
|
1648
1648
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
1649
1649
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
1650
1650
|
order?: number | null | undefined;
|
|
@@ -1652,9 +1652,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1652
1652
|
insurance?: number | undefined;
|
|
1653
1653
|
}, {
|
|
1654
1654
|
length: number;
|
|
1655
|
+
weight: number;
|
|
1655
1656
|
width: number;
|
|
1656
1657
|
height: number;
|
|
1657
|
-
weight: number;
|
|
1658
1658
|
id?: unknown;
|
|
1659
1659
|
createdAt?: unknown;
|
|
1660
1660
|
updatedAt?: unknown;
|
|
@@ -2034,10 +2034,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2034
2034
|
height: number;
|
|
2035
2035
|
}>;
|
|
2036
2036
|
}, "strip", z.ZodTypeAny, {
|
|
2037
|
-
price: string;
|
|
2038
|
-
discount: string;
|
|
2039
2037
|
weight: string;
|
|
2040
2038
|
insurance_value: string;
|
|
2039
|
+
price: string;
|
|
2040
|
+
discount: string;
|
|
2041
2041
|
format: string;
|
|
2042
2042
|
products: {
|
|
2043
2043
|
id: string;
|
|
@@ -2049,10 +2049,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2049
2049
|
height: number;
|
|
2050
2050
|
};
|
|
2051
2051
|
}, {
|
|
2052
|
-
price: string;
|
|
2053
|
-
discount: string;
|
|
2054
2052
|
weight: string;
|
|
2055
2053
|
insurance_value: string;
|
|
2054
|
+
price: string;
|
|
2055
|
+
discount: string;
|
|
2056
2056
|
format: string;
|
|
2057
2057
|
products: {
|
|
2058
2058
|
id: string;
|
|
@@ -2113,17 +2113,17 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2113
2113
|
picture: string;
|
|
2114
2114
|
}>;
|
|
2115
2115
|
}, "strip", z.ZodTypeAny, {
|
|
2116
|
+
currency: string;
|
|
2116
2117
|
id: number;
|
|
2117
|
-
price: string;
|
|
2118
|
-
discount: string;
|
|
2119
2118
|
name: string;
|
|
2120
2119
|
company: {
|
|
2121
2120
|
id: number;
|
|
2122
2121
|
name: string;
|
|
2123
2122
|
picture: string;
|
|
2124
2123
|
};
|
|
2124
|
+
price: string;
|
|
2125
|
+
discount: string;
|
|
2125
2126
|
custom_price: string;
|
|
2126
|
-
currency: string;
|
|
2127
2127
|
delivery_time: number;
|
|
2128
2128
|
delivery_range: {
|
|
2129
2129
|
id: string | number;
|
|
@@ -2143,10 +2143,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2143
2143
|
order?: number | null | undefined;
|
|
2144
2144
|
};
|
|
2145
2145
|
packages: {
|
|
2146
|
-
price: string;
|
|
2147
|
-
discount: string;
|
|
2148
2146
|
weight: string;
|
|
2149
2147
|
insurance_value: string;
|
|
2148
|
+
price: string;
|
|
2149
|
+
discount: string;
|
|
2150
2150
|
format: string;
|
|
2151
2151
|
products: {
|
|
2152
2152
|
id: string;
|
|
@@ -2171,17 +2171,17 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2171
2171
|
};
|
|
2172
2172
|
error?: string | undefined;
|
|
2173
2173
|
}, {
|
|
2174
|
+
currency: string;
|
|
2174
2175
|
id: number;
|
|
2175
|
-
price: string;
|
|
2176
|
-
discount: string;
|
|
2177
2176
|
name: string;
|
|
2178
2177
|
company: {
|
|
2179
2178
|
id: number;
|
|
2180
2179
|
name: string;
|
|
2181
2180
|
picture: string;
|
|
2182
2181
|
};
|
|
2182
|
+
price: string;
|
|
2183
|
+
discount: string;
|
|
2183
2184
|
custom_price: string;
|
|
2184
|
-
currency: string;
|
|
2185
2185
|
delivery_time: number;
|
|
2186
2186
|
delivery_range: {
|
|
2187
2187
|
min: number;
|
|
@@ -2201,10 +2201,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2201
2201
|
order?: number | null | undefined;
|
|
2202
2202
|
};
|
|
2203
2203
|
packages: {
|
|
2204
|
-
price: string;
|
|
2205
|
-
discount: string;
|
|
2206
2204
|
weight: string;
|
|
2207
2205
|
insurance_value: string;
|
|
2206
|
+
price: string;
|
|
2207
|
+
discount: string;
|
|
2208
2208
|
format: string;
|
|
2209
2209
|
products: {
|
|
2210
2210
|
id: string;
|
|
@@ -2244,9 +2244,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2244
2244
|
}>, "strip", z.ZodTypeAny, {
|
|
2245
2245
|
length: number;
|
|
2246
2246
|
id: string | number;
|
|
2247
|
+
weight: number;
|
|
2247
2248
|
width: number;
|
|
2248
2249
|
height: number;
|
|
2249
|
-
weight: number;
|
|
2250
2250
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
2251
2251
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
2252
2252
|
order?: number | null | undefined;
|
|
@@ -2254,9 +2254,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2254
2254
|
insurance?: number | undefined;
|
|
2255
2255
|
}, {
|
|
2256
2256
|
length: number;
|
|
2257
|
+
weight: number;
|
|
2257
2258
|
width: number;
|
|
2258
2259
|
height: number;
|
|
2259
|
-
weight: number;
|
|
2260
2260
|
id?: unknown;
|
|
2261
2261
|
createdAt?: unknown;
|
|
2262
2262
|
updatedAt?: unknown;
|
|
@@ -2266,18 +2266,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2266
2266
|
}>>;
|
|
2267
2267
|
}>, "strip", z.ZodTypeAny, {
|
|
2268
2268
|
id: string | number;
|
|
2269
|
+
company: string;
|
|
2270
|
+
price: number;
|
|
2271
|
+
service: string;
|
|
2272
|
+
deliveryTime: number;
|
|
2269
2273
|
original: {
|
|
2274
|
+
currency: string;
|
|
2270
2275
|
id: number;
|
|
2271
|
-
price: string;
|
|
2272
|
-
discount: string;
|
|
2273
2276
|
name: string;
|
|
2274
2277
|
company: {
|
|
2275
2278
|
id: number;
|
|
2276
2279
|
name: string;
|
|
2277
2280
|
picture: string;
|
|
2278
2281
|
};
|
|
2282
|
+
price: string;
|
|
2283
|
+
discount: string;
|
|
2279
2284
|
custom_price: string;
|
|
2280
|
-
currency: string;
|
|
2281
2285
|
delivery_time: number;
|
|
2282
2286
|
delivery_range: {
|
|
2283
2287
|
id: string | number;
|
|
@@ -2297,10 +2301,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2297
2301
|
order?: number | null | undefined;
|
|
2298
2302
|
};
|
|
2299
2303
|
packages: {
|
|
2300
|
-
price: string;
|
|
2301
|
-
discount: string;
|
|
2302
2304
|
weight: string;
|
|
2303
2305
|
insurance_value: string;
|
|
2306
|
+
price: string;
|
|
2307
|
+
discount: string;
|
|
2304
2308
|
format: string;
|
|
2305
2309
|
products: {
|
|
2306
2310
|
id: string;
|
|
@@ -2391,19 +2395,15 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2391
2395
|
}[];
|
|
2392
2396
|
txErro?: string | undefined;
|
|
2393
2397
|
};
|
|
2394
|
-
price: number;
|
|
2395
|
-
company: string;
|
|
2396
|
-
service: string;
|
|
2397
|
-
deliveryTime: number;
|
|
2398
2398
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
2399
2399
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
2400
2400
|
order?: number | null | undefined;
|
|
2401
2401
|
customShippingInfo?: {
|
|
2402
2402
|
length: number;
|
|
2403
2403
|
id: string | number;
|
|
2404
|
+
weight: number;
|
|
2404
2405
|
width: number;
|
|
2405
2406
|
height: number;
|
|
2406
|
-
weight: number;
|
|
2407
2407
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
2408
2408
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
2409
2409
|
order?: number | null | undefined;
|
|
@@ -2412,18 +2412,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2412
2412
|
} | undefined;
|
|
2413
2413
|
}, {
|
|
2414
2414
|
id: string | number;
|
|
2415
|
+
company: string;
|
|
2416
|
+
price: number;
|
|
2417
|
+
service: string;
|
|
2418
|
+
deliveryTime: number;
|
|
2415
2419
|
original: {
|
|
2420
|
+
currency: string;
|
|
2416
2421
|
id: number;
|
|
2417
|
-
price: string;
|
|
2418
|
-
discount: string;
|
|
2419
2422
|
name: string;
|
|
2420
2423
|
company: {
|
|
2421
2424
|
id: number;
|
|
2422
2425
|
name: string;
|
|
2423
2426
|
picture: string;
|
|
2424
2427
|
};
|
|
2428
|
+
price: string;
|
|
2429
|
+
discount: string;
|
|
2425
2430
|
custom_price: string;
|
|
2426
|
-
currency: string;
|
|
2427
2431
|
delivery_time: number;
|
|
2428
2432
|
delivery_range: {
|
|
2429
2433
|
min: number;
|
|
@@ -2443,10 +2447,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2443
2447
|
order?: number | null | undefined;
|
|
2444
2448
|
};
|
|
2445
2449
|
packages: {
|
|
2446
|
-
price: string;
|
|
2447
|
-
discount: string;
|
|
2448
2450
|
weight: string;
|
|
2449
2451
|
insurance_value: string;
|
|
2452
|
+
price: string;
|
|
2453
|
+
discount: string;
|
|
2450
2454
|
format: string;
|
|
2451
2455
|
products: {
|
|
2452
2456
|
id: string;
|
|
@@ -2537,18 +2541,14 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2537
2541
|
}[];
|
|
2538
2542
|
txErro?: string | undefined;
|
|
2539
2543
|
};
|
|
2540
|
-
price: number;
|
|
2541
|
-
company: string;
|
|
2542
|
-
service: string;
|
|
2543
|
-
deliveryTime: number;
|
|
2544
2544
|
createdAt?: unknown;
|
|
2545
2545
|
updatedAt?: unknown;
|
|
2546
2546
|
order?: number | null | undefined;
|
|
2547
2547
|
customShippingInfo?: {
|
|
2548
2548
|
length: number;
|
|
2549
|
+
weight: number;
|
|
2549
2550
|
width: number;
|
|
2550
2551
|
height: number;
|
|
2551
|
-
weight: number;
|
|
2552
2552
|
id?: unknown;
|
|
2553
2553
|
createdAt?: unknown;
|
|
2554
2554
|
updatedAt?: unknown;
|
|
@@ -2929,10 +2929,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2929
2929
|
height: number;
|
|
2930
2930
|
}>;
|
|
2931
2931
|
}, "strip", z.ZodTypeAny, {
|
|
2932
|
-
price: string;
|
|
2933
|
-
discount: string;
|
|
2934
2932
|
weight: string;
|
|
2935
2933
|
insurance_value: string;
|
|
2934
|
+
price: string;
|
|
2935
|
+
discount: string;
|
|
2936
2936
|
format: string;
|
|
2937
2937
|
products: {
|
|
2938
2938
|
id: string;
|
|
@@ -2944,10 +2944,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2944
2944
|
height: number;
|
|
2945
2945
|
};
|
|
2946
2946
|
}, {
|
|
2947
|
-
price: string;
|
|
2948
|
-
discount: string;
|
|
2949
2947
|
weight: string;
|
|
2950
2948
|
insurance_value: string;
|
|
2949
|
+
price: string;
|
|
2950
|
+
discount: string;
|
|
2951
2951
|
format: string;
|
|
2952
2952
|
products: {
|
|
2953
2953
|
id: string;
|
|
@@ -3008,17 +3008,17 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3008
3008
|
picture: string;
|
|
3009
3009
|
}>;
|
|
3010
3010
|
}, "strip", z.ZodTypeAny, {
|
|
3011
|
+
currency: string;
|
|
3011
3012
|
id: number;
|
|
3012
|
-
price: string;
|
|
3013
|
-
discount: string;
|
|
3014
3013
|
name: string;
|
|
3015
3014
|
company: {
|
|
3016
3015
|
id: number;
|
|
3017
3016
|
name: string;
|
|
3018
3017
|
picture: string;
|
|
3019
3018
|
};
|
|
3019
|
+
price: string;
|
|
3020
|
+
discount: string;
|
|
3020
3021
|
custom_price: string;
|
|
3021
|
-
currency: string;
|
|
3022
3022
|
delivery_time: number;
|
|
3023
3023
|
delivery_range: {
|
|
3024
3024
|
id: string | number;
|
|
@@ -3038,10 +3038,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3038
3038
|
order?: number | null | undefined;
|
|
3039
3039
|
};
|
|
3040
3040
|
packages: {
|
|
3041
|
-
price: string;
|
|
3042
|
-
discount: string;
|
|
3043
3041
|
weight: string;
|
|
3044
3042
|
insurance_value: string;
|
|
3043
|
+
price: string;
|
|
3044
|
+
discount: string;
|
|
3045
3045
|
format: string;
|
|
3046
3046
|
products: {
|
|
3047
3047
|
id: string;
|
|
@@ -3066,17 +3066,17 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3066
3066
|
};
|
|
3067
3067
|
error?: string | undefined;
|
|
3068
3068
|
}, {
|
|
3069
|
+
currency: string;
|
|
3069
3070
|
id: number;
|
|
3070
|
-
price: string;
|
|
3071
|
-
discount: string;
|
|
3072
3071
|
name: string;
|
|
3073
3072
|
company: {
|
|
3074
3073
|
id: number;
|
|
3075
3074
|
name: string;
|
|
3076
3075
|
picture: string;
|
|
3077
3076
|
};
|
|
3077
|
+
price: string;
|
|
3078
|
+
discount: string;
|
|
3078
3079
|
custom_price: string;
|
|
3079
|
-
currency: string;
|
|
3080
3080
|
delivery_time: number;
|
|
3081
3081
|
delivery_range: {
|
|
3082
3082
|
min: number;
|
|
@@ -3096,10 +3096,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3096
3096
|
order?: number | null | undefined;
|
|
3097
3097
|
};
|
|
3098
3098
|
packages: {
|
|
3099
|
-
price: string;
|
|
3100
|
-
discount: string;
|
|
3101
3099
|
weight: string;
|
|
3102
3100
|
insurance_value: string;
|
|
3101
|
+
price: string;
|
|
3102
|
+
discount: string;
|
|
3103
3103
|
format: string;
|
|
3104
3104
|
products: {
|
|
3105
3105
|
id: string;
|
|
@@ -3139,9 +3139,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3139
3139
|
}>, "strip", z.ZodTypeAny, {
|
|
3140
3140
|
length: number;
|
|
3141
3141
|
id: string | number;
|
|
3142
|
+
weight: number;
|
|
3142
3143
|
width: number;
|
|
3143
3144
|
height: number;
|
|
3144
|
-
weight: number;
|
|
3145
3145
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3146
3146
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3147
3147
|
order?: number | null | undefined;
|
|
@@ -3149,9 +3149,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3149
3149
|
insurance?: number | undefined;
|
|
3150
3150
|
}, {
|
|
3151
3151
|
length: number;
|
|
3152
|
+
weight: number;
|
|
3152
3153
|
width: number;
|
|
3153
3154
|
height: number;
|
|
3154
|
-
weight: number;
|
|
3155
3155
|
id?: unknown;
|
|
3156
3156
|
createdAt?: unknown;
|
|
3157
3157
|
updatedAt?: unknown;
|
|
@@ -3161,18 +3161,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3161
3161
|
}>>;
|
|
3162
3162
|
}>, "strip", z.ZodTypeAny, {
|
|
3163
3163
|
id: string | number;
|
|
3164
|
+
company: string;
|
|
3165
|
+
price: number;
|
|
3166
|
+
service: string;
|
|
3167
|
+
deliveryTime: number;
|
|
3164
3168
|
original: {
|
|
3169
|
+
currency: string;
|
|
3165
3170
|
id: number;
|
|
3166
|
-
price: string;
|
|
3167
|
-
discount: string;
|
|
3168
3171
|
name: string;
|
|
3169
3172
|
company: {
|
|
3170
3173
|
id: number;
|
|
3171
3174
|
name: string;
|
|
3172
3175
|
picture: string;
|
|
3173
3176
|
};
|
|
3177
|
+
price: string;
|
|
3178
|
+
discount: string;
|
|
3174
3179
|
custom_price: string;
|
|
3175
|
-
currency: string;
|
|
3176
3180
|
delivery_time: number;
|
|
3177
3181
|
delivery_range: {
|
|
3178
3182
|
id: string | number;
|
|
@@ -3192,10 +3196,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3192
3196
|
order?: number | null | undefined;
|
|
3193
3197
|
};
|
|
3194
3198
|
packages: {
|
|
3195
|
-
price: string;
|
|
3196
|
-
discount: string;
|
|
3197
3199
|
weight: string;
|
|
3198
3200
|
insurance_value: string;
|
|
3201
|
+
price: string;
|
|
3202
|
+
discount: string;
|
|
3199
3203
|
format: string;
|
|
3200
3204
|
products: {
|
|
3201
3205
|
id: string;
|
|
@@ -3286,19 +3290,15 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3286
3290
|
}[];
|
|
3287
3291
|
txErro?: string | undefined;
|
|
3288
3292
|
};
|
|
3289
|
-
price: number;
|
|
3290
|
-
company: string;
|
|
3291
|
-
service: string;
|
|
3292
|
-
deliveryTime: number;
|
|
3293
3293
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3294
3294
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3295
3295
|
order?: number | null | undefined;
|
|
3296
3296
|
customShippingInfo?: {
|
|
3297
3297
|
length: number;
|
|
3298
3298
|
id: string | number;
|
|
3299
|
+
weight: number;
|
|
3299
3300
|
width: number;
|
|
3300
3301
|
height: number;
|
|
3301
|
-
weight: number;
|
|
3302
3302
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3303
3303
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3304
3304
|
order?: number | null | undefined;
|
|
@@ -3307,18 +3307,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3307
3307
|
} | undefined;
|
|
3308
3308
|
}, {
|
|
3309
3309
|
id: string | number;
|
|
3310
|
+
company: string;
|
|
3311
|
+
price: number;
|
|
3312
|
+
service: string;
|
|
3313
|
+
deliveryTime: number;
|
|
3310
3314
|
original: {
|
|
3315
|
+
currency: string;
|
|
3311
3316
|
id: number;
|
|
3312
|
-
price: string;
|
|
3313
|
-
discount: string;
|
|
3314
3317
|
name: string;
|
|
3315
3318
|
company: {
|
|
3316
3319
|
id: number;
|
|
3317
3320
|
name: string;
|
|
3318
3321
|
picture: string;
|
|
3319
3322
|
};
|
|
3323
|
+
price: string;
|
|
3324
|
+
discount: string;
|
|
3320
3325
|
custom_price: string;
|
|
3321
|
-
currency: string;
|
|
3322
3326
|
delivery_time: number;
|
|
3323
3327
|
delivery_range: {
|
|
3324
3328
|
min: number;
|
|
@@ -3338,10 +3342,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3338
3342
|
order?: number | null | undefined;
|
|
3339
3343
|
};
|
|
3340
3344
|
packages: {
|
|
3341
|
-
price: string;
|
|
3342
|
-
discount: string;
|
|
3343
3345
|
weight: string;
|
|
3344
3346
|
insurance_value: string;
|
|
3347
|
+
price: string;
|
|
3348
|
+
discount: string;
|
|
3345
3349
|
format: string;
|
|
3346
3350
|
products: {
|
|
3347
3351
|
id: string;
|
|
@@ -3432,18 +3436,14 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3432
3436
|
}[];
|
|
3433
3437
|
txErro?: string | undefined;
|
|
3434
3438
|
};
|
|
3435
|
-
price: number;
|
|
3436
|
-
company: string;
|
|
3437
|
-
service: string;
|
|
3438
|
-
deliveryTime: number;
|
|
3439
3439
|
createdAt?: unknown;
|
|
3440
3440
|
updatedAt?: unknown;
|
|
3441
3441
|
order?: number | null | undefined;
|
|
3442
3442
|
customShippingInfo?: {
|
|
3443
3443
|
length: number;
|
|
3444
|
+
weight: number;
|
|
3444
3445
|
width: number;
|
|
3445
3446
|
height: number;
|
|
3446
|
-
weight: number;
|
|
3447
3447
|
id?: unknown;
|
|
3448
3448
|
createdAt?: unknown;
|
|
3449
3449
|
updatedAt?: unknown;
|
|
@@ -3490,8 +3490,8 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3490
3490
|
data_modificacao: string;
|
|
3491
3491
|
cliente: {
|
|
3492
3492
|
id: number;
|
|
3493
|
-
email: string;
|
|
3494
3493
|
nome: string;
|
|
3494
|
+
email: string;
|
|
3495
3495
|
cpf: string;
|
|
3496
3496
|
resource_uri: string;
|
|
3497
3497
|
sexo: string;
|
|
@@ -3590,20 +3590,19 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3590
3590
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3591
3591
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3592
3592
|
order?: number | null | undefined;
|
|
3593
|
-
warning?: boolean | undefined;
|
|
3594
|
-
tags?: string[] | undefined;
|
|
3595
3593
|
customShippingInfo?: {
|
|
3596
3594
|
length: number;
|
|
3597
3595
|
id: string | number;
|
|
3596
|
+
weight: number;
|
|
3598
3597
|
width: number;
|
|
3599
3598
|
height: number;
|
|
3600
|
-
weight: number;
|
|
3601
3599
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3602
3600
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3603
3601
|
order?: number | null | undefined;
|
|
3604
3602
|
name?: string | undefined;
|
|
3605
3603
|
insurance?: number | undefined;
|
|
3606
3604
|
} | undefined;
|
|
3605
|
+
tags?: string[] | undefined;
|
|
3607
3606
|
id_externo?: any;
|
|
3608
3607
|
cliente_obs?: any;
|
|
3609
3608
|
cupom_desconto?: {
|
|
@@ -3641,7 +3640,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3641
3640
|
deliveryTime: number;
|
|
3642
3641
|
idCorreios: string;
|
|
3643
3642
|
remetente: {
|
|
3644
|
-
email: string;
|
|
3645
3643
|
nome: string;
|
|
3646
3644
|
endereco: {
|
|
3647
3645
|
cidade: string;
|
|
@@ -3654,10 +3652,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3654
3652
|
};
|
|
3655
3653
|
dddCelular: string;
|
|
3656
3654
|
celular: string;
|
|
3655
|
+
email: string;
|
|
3657
3656
|
cpfCnpj: string;
|
|
3658
3657
|
};
|
|
3659
3658
|
destinatario: {
|
|
3660
|
-
email: string;
|
|
3661
3659
|
nome: string;
|
|
3662
3660
|
endereco: {
|
|
3663
3661
|
cidade: string;
|
|
@@ -3670,6 +3668,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3670
3668
|
};
|
|
3671
3669
|
dddCelular: string;
|
|
3672
3670
|
celular: string;
|
|
3671
|
+
email: string;
|
|
3673
3672
|
cpfCnpj: string;
|
|
3674
3673
|
};
|
|
3675
3674
|
codigoServico: string;
|
|
@@ -3743,18 +3742,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3743
3742
|
}[] | undefined;
|
|
3744
3743
|
shippingCalculate?: {
|
|
3745
3744
|
id: string | number;
|
|
3745
|
+
company: string;
|
|
3746
|
+
price: number;
|
|
3747
|
+
service: string;
|
|
3748
|
+
deliveryTime: number;
|
|
3746
3749
|
original: {
|
|
3750
|
+
currency: string;
|
|
3747
3751
|
id: number;
|
|
3748
|
-
price: string;
|
|
3749
|
-
discount: string;
|
|
3750
3752
|
name: string;
|
|
3751
3753
|
company: {
|
|
3752
3754
|
id: number;
|
|
3753
3755
|
name: string;
|
|
3754
3756
|
picture: string;
|
|
3755
3757
|
};
|
|
3758
|
+
price: string;
|
|
3759
|
+
discount: string;
|
|
3756
3760
|
custom_price: string;
|
|
3757
|
-
currency: string;
|
|
3758
3761
|
delivery_time: number;
|
|
3759
3762
|
delivery_range: {
|
|
3760
3763
|
id: string | number;
|
|
@@ -3774,10 +3777,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3774
3777
|
order?: number | null | undefined;
|
|
3775
3778
|
};
|
|
3776
3779
|
packages: {
|
|
3777
|
-
price: string;
|
|
3778
|
-
discount: string;
|
|
3779
3780
|
weight: string;
|
|
3780
3781
|
insurance_value: string;
|
|
3782
|
+
price: string;
|
|
3783
|
+
discount: string;
|
|
3781
3784
|
format: string;
|
|
3782
3785
|
products: {
|
|
3783
3786
|
id: string;
|
|
@@ -3868,19 +3871,15 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3868
3871
|
}[];
|
|
3869
3872
|
txErro?: string | undefined;
|
|
3870
3873
|
};
|
|
3871
|
-
price: number;
|
|
3872
|
-
company: string;
|
|
3873
|
-
service: string;
|
|
3874
|
-
deliveryTime: number;
|
|
3875
3874
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3876
3875
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3877
3876
|
order?: number | null | undefined;
|
|
3878
3877
|
customShippingInfo?: {
|
|
3879
3878
|
length: number;
|
|
3880
3879
|
id: string | number;
|
|
3880
|
+
weight: number;
|
|
3881
3881
|
width: number;
|
|
3882
3882
|
height: number;
|
|
3883
|
-
weight: number;
|
|
3884
3883
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3885
3884
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
3886
3885
|
order?: number | null | undefined;
|
|
@@ -3890,18 +3889,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3890
3889
|
} | undefined;
|
|
3891
3890
|
allShippingCalculates?: {
|
|
3892
3891
|
id: string | number;
|
|
3892
|
+
company: string;
|
|
3893
|
+
price: number;
|
|
3894
|
+
service: string;
|
|
3895
|
+
deliveryTime: number;
|
|
3893
3896
|
original: {
|
|
3897
|
+
currency: string;
|
|
3894
3898
|
id: number;
|
|
3895
|
-
price: string;
|
|
3896
|
-
discount: string;
|
|
3897
3899
|
name: string;
|
|
3898
3900
|
company: {
|
|
3899
3901
|
id: number;
|
|
3900
3902
|
name: string;
|
|
3901
3903
|
picture: string;
|
|
3902
3904
|
};
|
|
3905
|
+
price: string;
|
|
3906
|
+
discount: string;
|
|
3903
3907
|
custom_price: string;
|
|
3904
|
-
currency: string;
|
|
3905
3908
|
delivery_time: number;
|
|
3906
3909
|
delivery_range: {
|
|
3907
3910
|
id: string | number;
|
|
@@ -3921,10 +3924,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3921
3924
|
order?: number | null | undefined;
|
|
3922
3925
|
};
|
|
3923
3926
|
packages: {
|
|
3924
|
-
price: string;
|
|
3925
|
-
discount: string;
|
|
3926
3927
|
weight: string;
|
|
3927
3928
|
insurance_value: string;
|
|
3929
|
+
price: string;
|
|
3930
|
+
discount: string;
|
|
3928
3931
|
format: string;
|
|
3929
3932
|
products: {
|
|
3930
3933
|
id: string;
|
|
@@ -4015,19 +4018,15 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4015
4018
|
}[];
|
|
4016
4019
|
txErro?: string | undefined;
|
|
4017
4020
|
};
|
|
4018
|
-
price: number;
|
|
4019
|
-
company: string;
|
|
4020
|
-
service: string;
|
|
4021
|
-
deliveryTime: number;
|
|
4022
4021
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
4023
4022
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
4024
4023
|
order?: number | null | undefined;
|
|
4025
4024
|
customShippingInfo?: {
|
|
4026
4025
|
length: number;
|
|
4027
4026
|
id: string | number;
|
|
4027
|
+
weight: number;
|
|
4028
4028
|
width: number;
|
|
4029
4029
|
height: number;
|
|
4030
|
-
weight: number;
|
|
4031
4030
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
4032
4031
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
4033
4032
|
order?: number | null | undefined;
|
|
@@ -4035,6 +4034,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4035
4034
|
insurance?: number | undefined;
|
|
4036
4035
|
} | undefined;
|
|
4037
4036
|
}[] | undefined;
|
|
4037
|
+
warning?: boolean | undefined;
|
|
4038
4038
|
watching?: boolean | undefined;
|
|
4039
4039
|
useInApp?: Record<string, string[]> | undefined;
|
|
4040
4040
|
appObservations?: string | undefined;
|
|
@@ -4071,8 +4071,8 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4071
4071
|
data_modificacao: string;
|
|
4072
4072
|
cliente: {
|
|
4073
4073
|
id: number;
|
|
4074
|
-
email: string;
|
|
4075
4074
|
nome: string;
|
|
4075
|
+
email: string;
|
|
4076
4076
|
cpf: string;
|
|
4077
4077
|
resource_uri: string;
|
|
4078
4078
|
sexo: string;
|
|
@@ -4172,13 +4172,11 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4172
4172
|
createdAt?: unknown;
|
|
4173
4173
|
updatedAt?: unknown;
|
|
4174
4174
|
order?: number | null | undefined;
|
|
4175
|
-
warning?: boolean | undefined;
|
|
4176
|
-
tags?: string[] | undefined;
|
|
4177
4175
|
customShippingInfo?: {
|
|
4178
4176
|
length: number;
|
|
4177
|
+
weight: number;
|
|
4179
4178
|
width: number;
|
|
4180
4179
|
height: number;
|
|
4181
|
-
weight: number;
|
|
4182
4180
|
id?: unknown;
|
|
4183
4181
|
createdAt?: unknown;
|
|
4184
4182
|
updatedAt?: unknown;
|
|
@@ -4186,6 +4184,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4186
4184
|
name?: string | undefined;
|
|
4187
4185
|
insurance?: number | undefined;
|
|
4188
4186
|
} | undefined;
|
|
4187
|
+
tags?: string[] | undefined;
|
|
4189
4188
|
id_externo?: any;
|
|
4190
4189
|
cliente_obs?: any;
|
|
4191
4190
|
cupom_desconto?: {
|
|
@@ -4222,7 +4221,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4222
4221
|
deliveryTime: number;
|
|
4223
4222
|
idCorreios: string;
|
|
4224
4223
|
remetente: {
|
|
4225
|
-
email: string;
|
|
4226
4224
|
nome: string;
|
|
4227
4225
|
endereco: {
|
|
4228
4226
|
cidade: string;
|
|
@@ -4235,10 +4233,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4235
4233
|
};
|
|
4236
4234
|
dddCelular: string;
|
|
4237
4235
|
celular: string;
|
|
4236
|
+
email: string;
|
|
4238
4237
|
cpfCnpj: string;
|
|
4239
4238
|
};
|
|
4240
4239
|
destinatario: {
|
|
4241
|
-
email: string;
|
|
4242
4240
|
nome: string;
|
|
4243
4241
|
endereco: {
|
|
4244
4242
|
cidade: string;
|
|
@@ -4251,6 +4249,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4251
4249
|
};
|
|
4252
4250
|
dddCelular: string;
|
|
4253
4251
|
celular: string;
|
|
4252
|
+
email: string;
|
|
4254
4253
|
cpfCnpj: string;
|
|
4255
4254
|
};
|
|
4256
4255
|
codigoServico: string;
|
|
@@ -4325,18 +4324,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4325
4324
|
}[] | undefined;
|
|
4326
4325
|
shippingCalculate?: {
|
|
4327
4326
|
id: string | number;
|
|
4327
|
+
company: string;
|
|
4328
|
+
price: number;
|
|
4329
|
+
service: string;
|
|
4330
|
+
deliveryTime: number;
|
|
4328
4331
|
original: {
|
|
4332
|
+
currency: string;
|
|
4329
4333
|
id: number;
|
|
4330
|
-
price: string;
|
|
4331
|
-
discount: string;
|
|
4332
4334
|
name: string;
|
|
4333
4335
|
company: {
|
|
4334
4336
|
id: number;
|
|
4335
4337
|
name: string;
|
|
4336
4338
|
picture: string;
|
|
4337
4339
|
};
|
|
4340
|
+
price: string;
|
|
4341
|
+
discount: string;
|
|
4338
4342
|
custom_price: string;
|
|
4339
|
-
currency: string;
|
|
4340
4343
|
delivery_time: number;
|
|
4341
4344
|
delivery_range: {
|
|
4342
4345
|
min: number;
|
|
@@ -4356,10 +4359,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4356
4359
|
order?: number | null | undefined;
|
|
4357
4360
|
};
|
|
4358
4361
|
packages: {
|
|
4359
|
-
price: string;
|
|
4360
|
-
discount: string;
|
|
4361
4362
|
weight: string;
|
|
4362
4363
|
insurance_value: string;
|
|
4364
|
+
price: string;
|
|
4365
|
+
discount: string;
|
|
4363
4366
|
format: string;
|
|
4364
4367
|
products: {
|
|
4365
4368
|
id: string;
|
|
@@ -4450,18 +4453,14 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4450
4453
|
}[];
|
|
4451
4454
|
txErro?: string | undefined;
|
|
4452
4455
|
};
|
|
4453
|
-
price: number;
|
|
4454
|
-
company: string;
|
|
4455
|
-
service: string;
|
|
4456
|
-
deliveryTime: number;
|
|
4457
4456
|
createdAt?: unknown;
|
|
4458
4457
|
updatedAt?: unknown;
|
|
4459
4458
|
order?: number | null | undefined;
|
|
4460
4459
|
customShippingInfo?: {
|
|
4461
4460
|
length: number;
|
|
4461
|
+
weight: number;
|
|
4462
4462
|
width: number;
|
|
4463
4463
|
height: number;
|
|
4464
|
-
weight: number;
|
|
4465
4464
|
id?: unknown;
|
|
4466
4465
|
createdAt?: unknown;
|
|
4467
4466
|
updatedAt?: unknown;
|
|
@@ -4472,18 +4471,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4472
4471
|
} | undefined;
|
|
4473
4472
|
allShippingCalculates?: {
|
|
4474
4473
|
id: string | number;
|
|
4474
|
+
company: string;
|
|
4475
|
+
price: number;
|
|
4476
|
+
service: string;
|
|
4477
|
+
deliveryTime: number;
|
|
4475
4478
|
original: {
|
|
4479
|
+
currency: string;
|
|
4476
4480
|
id: number;
|
|
4477
|
-
price: string;
|
|
4478
|
-
discount: string;
|
|
4479
4481
|
name: string;
|
|
4480
4482
|
company: {
|
|
4481
4483
|
id: number;
|
|
4482
4484
|
name: string;
|
|
4483
4485
|
picture: string;
|
|
4484
4486
|
};
|
|
4487
|
+
price: string;
|
|
4488
|
+
discount: string;
|
|
4485
4489
|
custom_price: string;
|
|
4486
|
-
currency: string;
|
|
4487
4490
|
delivery_time: number;
|
|
4488
4491
|
delivery_range: {
|
|
4489
4492
|
min: number;
|
|
@@ -4503,10 +4506,10 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4503
4506
|
order?: number | null | undefined;
|
|
4504
4507
|
};
|
|
4505
4508
|
packages: {
|
|
4506
|
-
price: string;
|
|
4507
|
-
discount: string;
|
|
4508
4509
|
weight: string;
|
|
4509
4510
|
insurance_value: string;
|
|
4511
|
+
price: string;
|
|
4512
|
+
discount: string;
|
|
4510
4513
|
format: string;
|
|
4511
4514
|
products: {
|
|
4512
4515
|
id: string;
|
|
@@ -4597,18 +4600,14 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4597
4600
|
}[];
|
|
4598
4601
|
txErro?: string | undefined;
|
|
4599
4602
|
};
|
|
4600
|
-
price: number;
|
|
4601
|
-
company: string;
|
|
4602
|
-
service: string;
|
|
4603
|
-
deliveryTime: number;
|
|
4604
4603
|
createdAt?: unknown;
|
|
4605
4604
|
updatedAt?: unknown;
|
|
4606
4605
|
order?: number | null | undefined;
|
|
4607
4606
|
customShippingInfo?: {
|
|
4608
4607
|
length: number;
|
|
4608
|
+
weight: number;
|
|
4609
4609
|
width: number;
|
|
4610
4610
|
height: number;
|
|
4611
|
-
weight: number;
|
|
4612
4611
|
id?: unknown;
|
|
4613
4612
|
createdAt?: unknown;
|
|
4614
4613
|
updatedAt?: unknown;
|
|
@@ -4617,6 +4616,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4617
4616
|
insurance?: number | undefined;
|
|
4618
4617
|
} | undefined;
|
|
4619
4618
|
}[] | undefined;
|
|
4619
|
+
warning?: boolean | undefined;
|
|
4620
4620
|
watching?: boolean | undefined;
|
|
4621
4621
|
useInApp?: Record<string, string[]> | undefined;
|
|
4622
4622
|
appObservations?: string | undefined;
|