@_henriquewilson/gabirubi-domain 1.3.47 → 1.3.48
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/integrada/category.d.mts +6 -6
- package/dist/model/integrada/category.d.ts +6 -6
- package/dist/model/integrada/order.d.mts +58 -58
- package/dist/model/integrada/order.d.ts +58 -58
- package/dist/model/integrada/product.d.mts +506 -506
- package/dist/model/integrada/product.d.ts +506 -506
- package/dist/model/journey.d.mts +8 -0
- package/dist/model/journey.d.ts +8 -0
- package/dist/model/journey.js +4 -0
- package/dist/model/journey.js.map +1 -1
- package/dist/model/journey.mjs +4 -0
- package/dist/model/journey.mjs.map +1 -1
- package/dist/model/melhorenvio/calculate.d.mts +10 -10
- package/dist/model/melhorenvio/calculate.d.ts +10 -10
- package/dist/model/melhorenvio/order.d.mts +30 -30
- package/dist/model/melhorenvio/order.d.ts +30 -30
- package/dist/model/store/shipping.d.mts +16 -16
- package/dist/model/store/shipping.d.ts +16 -16
- package/dist/test/activity.test.js +4 -0
- package/dist/test/activity.test.js.map +1 -1
- package/dist/test/activity.test.mjs +4 -0
- package/dist/test/activity.test.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -15,24 +15,24 @@ declare const CategorySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15
15
|
url: z.ZodString;
|
|
16
16
|
}>, "strip", z.ZodTypeAny, {
|
|
17
17
|
id: string | number;
|
|
18
|
-
resource_uri: string;
|
|
19
18
|
id_externo: number;
|
|
19
|
+
categoria_pai: string;
|
|
20
|
+
descricao: string;
|
|
20
21
|
nome: string;
|
|
22
|
+
resource_uri: string;
|
|
21
23
|
seo: string;
|
|
22
24
|
url: string;
|
|
23
|
-
categoria_pai: string;
|
|
24
|
-
descricao: string;
|
|
25
25
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
26
26
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
27
27
|
order?: number | null | undefined;
|
|
28
28
|
}, {
|
|
29
|
-
resource_uri: string;
|
|
30
29
|
id_externo: number;
|
|
30
|
+
categoria_pai: string;
|
|
31
|
+
descricao: string;
|
|
31
32
|
nome: string;
|
|
33
|
+
resource_uri: string;
|
|
32
34
|
seo: string;
|
|
33
35
|
url: string;
|
|
34
|
-
categoria_pai: string;
|
|
35
|
-
descricao: string;
|
|
36
36
|
id?: unknown;
|
|
37
37
|
createdAt?: unknown;
|
|
38
38
|
updatedAt?: unknown;
|
|
@@ -15,24 +15,24 @@ declare const CategorySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15
15
|
url: z.ZodString;
|
|
16
16
|
}>, "strip", z.ZodTypeAny, {
|
|
17
17
|
id: string | number;
|
|
18
|
-
resource_uri: string;
|
|
19
18
|
id_externo: number;
|
|
19
|
+
categoria_pai: string;
|
|
20
|
+
descricao: string;
|
|
20
21
|
nome: string;
|
|
22
|
+
resource_uri: string;
|
|
21
23
|
seo: string;
|
|
22
24
|
url: string;
|
|
23
|
-
categoria_pai: string;
|
|
24
|
-
descricao: string;
|
|
25
25
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
26
26
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
27
27
|
order?: number | null | undefined;
|
|
28
28
|
}, {
|
|
29
|
-
resource_uri: string;
|
|
30
29
|
id_externo: number;
|
|
30
|
+
categoria_pai: string;
|
|
31
|
+
descricao: string;
|
|
31
32
|
nome: string;
|
|
33
|
+
resource_uri: string;
|
|
32
34
|
seo: string;
|
|
33
35
|
url: string;
|
|
34
|
-
categoria_pai: string;
|
|
35
|
-
descricao: string;
|
|
36
36
|
id?: unknown;
|
|
37
37
|
createdAt?: unknown;
|
|
38
38
|
updatedAt?: unknown;
|
|
@@ -14,9 +14,9 @@ declare const CustomerOrderSchema: z.ZodObject<{
|
|
|
14
14
|
telefone_principal: z.ZodString;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
id: number;
|
|
17
|
-
email: string;
|
|
18
17
|
nome: string;
|
|
19
18
|
cpf: string;
|
|
19
|
+
email: string;
|
|
20
20
|
resource_uri: string;
|
|
21
21
|
sexo: string;
|
|
22
22
|
telefone_celular: string;
|
|
@@ -26,9 +26,9 @@ declare const CustomerOrderSchema: z.ZodObject<{
|
|
|
26
26
|
razao_social?: any;
|
|
27
27
|
}, {
|
|
28
28
|
id: number;
|
|
29
|
-
email: string;
|
|
30
29
|
nome: string;
|
|
31
30
|
cpf: string;
|
|
31
|
+
email: string;
|
|
32
32
|
resource_uri: string;
|
|
33
33
|
sexo: string;
|
|
34
34
|
telefone_celular: string;
|
|
@@ -526,9 +526,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
526
526
|
telefone_principal: z.ZodString;
|
|
527
527
|
}, "strip", z.ZodTypeAny, {
|
|
528
528
|
id: number;
|
|
529
|
-
email: string;
|
|
530
529
|
nome: string;
|
|
531
530
|
cpf: string;
|
|
531
|
+
email: string;
|
|
532
532
|
resource_uri: string;
|
|
533
533
|
sexo: string;
|
|
534
534
|
telefone_celular: string;
|
|
@@ -538,9 +538,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
538
538
|
razao_social?: any;
|
|
539
539
|
}, {
|
|
540
540
|
id: number;
|
|
541
|
-
email: string;
|
|
542
541
|
nome: string;
|
|
543
542
|
cpf: string;
|
|
543
|
+
email: string;
|
|
544
544
|
resource_uri: string;
|
|
545
545
|
sexo: string;
|
|
546
546
|
telefone_celular: string;
|
|
@@ -1327,9 +1327,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1327
1327
|
height: number;
|
|
1328
1328
|
}>;
|
|
1329
1329
|
}, "strip", z.ZodTypeAny, {
|
|
1330
|
-
price: string;
|
|
1331
1330
|
weight: string;
|
|
1332
1331
|
insurance_value: string;
|
|
1332
|
+
price: string;
|
|
1333
1333
|
discount: string;
|
|
1334
1334
|
format: string;
|
|
1335
1335
|
products: {
|
|
@@ -1342,9 +1342,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1342
1342
|
height: number;
|
|
1343
1343
|
};
|
|
1344
1344
|
}, {
|
|
1345
|
-
price: string;
|
|
1346
1345
|
weight: string;
|
|
1347
1346
|
insurance_value: string;
|
|
1347
|
+
price: string;
|
|
1348
1348
|
discount: string;
|
|
1349
1349
|
format: string;
|
|
1350
1350
|
products: {
|
|
@@ -1406,17 +1406,17 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1406
1406
|
picture: string;
|
|
1407
1407
|
}>;
|
|
1408
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1409
|
+
currency: string;
|
|
1409
1410
|
id: number;
|
|
1410
|
-
price: string;
|
|
1411
1411
|
name: string;
|
|
1412
1412
|
company: {
|
|
1413
1413
|
id: number;
|
|
1414
1414
|
name: string;
|
|
1415
1415
|
picture: string;
|
|
1416
1416
|
};
|
|
1417
|
+
price: string;
|
|
1417
1418
|
discount: string;
|
|
1418
1419
|
custom_price: string;
|
|
1419
|
-
currency: string;
|
|
1420
1420
|
delivery_time: number;
|
|
1421
1421
|
delivery_range: {
|
|
1422
1422
|
id: string | number;
|
|
@@ -1436,9 +1436,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1436
1436
|
order?: number | null | undefined;
|
|
1437
1437
|
};
|
|
1438
1438
|
packages: {
|
|
1439
|
-
price: string;
|
|
1440
1439
|
weight: string;
|
|
1441
1440
|
insurance_value: string;
|
|
1441
|
+
price: string;
|
|
1442
1442
|
discount: string;
|
|
1443
1443
|
format: string;
|
|
1444
1444
|
products: {
|
|
@@ -1464,17 +1464,17 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1464
1464
|
};
|
|
1465
1465
|
error?: string | undefined;
|
|
1466
1466
|
}, {
|
|
1467
|
+
currency: string;
|
|
1467
1468
|
id: number;
|
|
1468
|
-
price: string;
|
|
1469
1469
|
name: string;
|
|
1470
1470
|
company: {
|
|
1471
1471
|
id: number;
|
|
1472
1472
|
name: string;
|
|
1473
1473
|
picture: string;
|
|
1474
1474
|
};
|
|
1475
|
+
price: string;
|
|
1475
1476
|
discount: string;
|
|
1476
1477
|
custom_price: string;
|
|
1477
|
-
currency: string;
|
|
1478
1478
|
delivery_time: number;
|
|
1479
1479
|
delivery_range: {
|
|
1480
1480
|
min: number;
|
|
@@ -1494,9 +1494,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1494
1494
|
order?: number | null | undefined;
|
|
1495
1495
|
};
|
|
1496
1496
|
packages: {
|
|
1497
|
-
price: string;
|
|
1498
1497
|
weight: string;
|
|
1499
1498
|
insurance_value: string;
|
|
1499
|
+
price: string;
|
|
1500
1500
|
discount: string;
|
|
1501
1501
|
format: string;
|
|
1502
1502
|
products: {
|
|
@@ -1559,22 +1559,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1559
1559
|
}>>;
|
|
1560
1560
|
}>, "strip", z.ZodTypeAny, {
|
|
1561
1561
|
id: string | number;
|
|
1562
|
-
price: number;
|
|
1563
1562
|
company: string;
|
|
1563
|
+
price: number;
|
|
1564
1564
|
service: string;
|
|
1565
1565
|
deliveryTime: number;
|
|
1566
1566
|
original: {
|
|
1567
|
+
currency: string;
|
|
1567
1568
|
id: number;
|
|
1568
|
-
price: string;
|
|
1569
1569
|
name: string;
|
|
1570
1570
|
company: {
|
|
1571
1571
|
id: number;
|
|
1572
1572
|
name: string;
|
|
1573
1573
|
picture: string;
|
|
1574
1574
|
};
|
|
1575
|
+
price: string;
|
|
1575
1576
|
discount: string;
|
|
1576
1577
|
custom_price: string;
|
|
1577
|
-
currency: string;
|
|
1578
1578
|
delivery_time: number;
|
|
1579
1579
|
delivery_range: {
|
|
1580
1580
|
id: string | number;
|
|
@@ -1594,9 +1594,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1594
1594
|
order?: number | null | undefined;
|
|
1595
1595
|
};
|
|
1596
1596
|
packages: {
|
|
1597
|
-
price: string;
|
|
1598
1597
|
weight: string;
|
|
1599
1598
|
insurance_value: string;
|
|
1599
|
+
price: string;
|
|
1600
1600
|
discount: string;
|
|
1601
1601
|
format: string;
|
|
1602
1602
|
products: {
|
|
@@ -1705,22 +1705,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1705
1705
|
} | undefined;
|
|
1706
1706
|
}, {
|
|
1707
1707
|
id: string | number;
|
|
1708
|
-
price: number;
|
|
1709
1708
|
company: string;
|
|
1709
|
+
price: number;
|
|
1710
1710
|
service: string;
|
|
1711
1711
|
deliveryTime: number;
|
|
1712
1712
|
original: {
|
|
1713
|
+
currency: string;
|
|
1713
1714
|
id: number;
|
|
1714
|
-
price: string;
|
|
1715
1715
|
name: string;
|
|
1716
1716
|
company: {
|
|
1717
1717
|
id: number;
|
|
1718
1718
|
name: string;
|
|
1719
1719
|
picture: string;
|
|
1720
1720
|
};
|
|
1721
|
+
price: string;
|
|
1721
1722
|
discount: string;
|
|
1722
1723
|
custom_price: string;
|
|
1723
|
-
currency: string;
|
|
1724
1724
|
delivery_time: number;
|
|
1725
1725
|
delivery_range: {
|
|
1726
1726
|
min: number;
|
|
@@ -1740,9 +1740,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1740
1740
|
order?: number | null | undefined;
|
|
1741
1741
|
};
|
|
1742
1742
|
packages: {
|
|
1743
|
-
price: string;
|
|
1744
1743
|
weight: string;
|
|
1745
1744
|
insurance_value: string;
|
|
1745
|
+
price: string;
|
|
1746
1746
|
discount: string;
|
|
1747
1747
|
format: string;
|
|
1748
1748
|
products: {
|
|
@@ -2222,9 +2222,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2222
2222
|
height: number;
|
|
2223
2223
|
}>;
|
|
2224
2224
|
}, "strip", z.ZodTypeAny, {
|
|
2225
|
-
price: string;
|
|
2226
2225
|
weight: string;
|
|
2227
2226
|
insurance_value: string;
|
|
2227
|
+
price: string;
|
|
2228
2228
|
discount: string;
|
|
2229
2229
|
format: string;
|
|
2230
2230
|
products: {
|
|
@@ -2237,9 +2237,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2237
2237
|
height: number;
|
|
2238
2238
|
};
|
|
2239
2239
|
}, {
|
|
2240
|
-
price: string;
|
|
2241
2240
|
weight: string;
|
|
2242
2241
|
insurance_value: string;
|
|
2242
|
+
price: string;
|
|
2243
2243
|
discount: string;
|
|
2244
2244
|
format: string;
|
|
2245
2245
|
products: {
|
|
@@ -2301,17 +2301,17 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2301
2301
|
picture: string;
|
|
2302
2302
|
}>;
|
|
2303
2303
|
}, "strip", z.ZodTypeAny, {
|
|
2304
|
+
currency: string;
|
|
2304
2305
|
id: number;
|
|
2305
|
-
price: string;
|
|
2306
2306
|
name: string;
|
|
2307
2307
|
company: {
|
|
2308
2308
|
id: number;
|
|
2309
2309
|
name: string;
|
|
2310
2310
|
picture: string;
|
|
2311
2311
|
};
|
|
2312
|
+
price: string;
|
|
2312
2313
|
discount: string;
|
|
2313
2314
|
custom_price: string;
|
|
2314
|
-
currency: string;
|
|
2315
2315
|
delivery_time: number;
|
|
2316
2316
|
delivery_range: {
|
|
2317
2317
|
id: string | number;
|
|
@@ -2331,9 +2331,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2331
2331
|
order?: number | null | undefined;
|
|
2332
2332
|
};
|
|
2333
2333
|
packages: {
|
|
2334
|
-
price: string;
|
|
2335
2334
|
weight: string;
|
|
2336
2335
|
insurance_value: string;
|
|
2336
|
+
price: string;
|
|
2337
2337
|
discount: string;
|
|
2338
2338
|
format: string;
|
|
2339
2339
|
products: {
|
|
@@ -2359,17 +2359,17 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2359
2359
|
};
|
|
2360
2360
|
error?: string | undefined;
|
|
2361
2361
|
}, {
|
|
2362
|
+
currency: string;
|
|
2362
2363
|
id: number;
|
|
2363
|
-
price: string;
|
|
2364
2364
|
name: string;
|
|
2365
2365
|
company: {
|
|
2366
2366
|
id: number;
|
|
2367
2367
|
name: string;
|
|
2368
2368
|
picture: string;
|
|
2369
2369
|
};
|
|
2370
|
+
price: string;
|
|
2370
2371
|
discount: string;
|
|
2371
2372
|
custom_price: string;
|
|
2372
|
-
currency: string;
|
|
2373
2373
|
delivery_time: number;
|
|
2374
2374
|
delivery_range: {
|
|
2375
2375
|
min: number;
|
|
@@ -2389,9 +2389,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2389
2389
|
order?: number | null | undefined;
|
|
2390
2390
|
};
|
|
2391
2391
|
packages: {
|
|
2392
|
-
price: string;
|
|
2393
2392
|
weight: string;
|
|
2394
2393
|
insurance_value: string;
|
|
2394
|
+
price: string;
|
|
2395
2395
|
discount: string;
|
|
2396
2396
|
format: string;
|
|
2397
2397
|
products: {
|
|
@@ -2454,22 +2454,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2454
2454
|
}>>;
|
|
2455
2455
|
}>, "strip", z.ZodTypeAny, {
|
|
2456
2456
|
id: string | number;
|
|
2457
|
-
price: number;
|
|
2458
2457
|
company: string;
|
|
2458
|
+
price: number;
|
|
2459
2459
|
service: string;
|
|
2460
2460
|
deliveryTime: number;
|
|
2461
2461
|
original: {
|
|
2462
|
+
currency: string;
|
|
2462
2463
|
id: number;
|
|
2463
|
-
price: string;
|
|
2464
2464
|
name: string;
|
|
2465
2465
|
company: {
|
|
2466
2466
|
id: number;
|
|
2467
2467
|
name: string;
|
|
2468
2468
|
picture: string;
|
|
2469
2469
|
};
|
|
2470
|
+
price: string;
|
|
2470
2471
|
discount: string;
|
|
2471
2472
|
custom_price: string;
|
|
2472
|
-
currency: string;
|
|
2473
2473
|
delivery_time: number;
|
|
2474
2474
|
delivery_range: {
|
|
2475
2475
|
id: string | number;
|
|
@@ -2489,9 +2489,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2489
2489
|
order?: number | null | undefined;
|
|
2490
2490
|
};
|
|
2491
2491
|
packages: {
|
|
2492
|
-
price: string;
|
|
2493
2492
|
weight: string;
|
|
2494
2493
|
insurance_value: string;
|
|
2494
|
+
price: string;
|
|
2495
2495
|
discount: string;
|
|
2496
2496
|
format: string;
|
|
2497
2497
|
products: {
|
|
@@ -2600,22 +2600,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2600
2600
|
} | undefined;
|
|
2601
2601
|
}, {
|
|
2602
2602
|
id: string | number;
|
|
2603
|
-
price: number;
|
|
2604
2603
|
company: string;
|
|
2604
|
+
price: number;
|
|
2605
2605
|
service: string;
|
|
2606
2606
|
deliveryTime: number;
|
|
2607
2607
|
original: {
|
|
2608
|
+
currency: string;
|
|
2608
2609
|
id: number;
|
|
2609
|
-
price: string;
|
|
2610
2610
|
name: string;
|
|
2611
2611
|
company: {
|
|
2612
2612
|
id: number;
|
|
2613
2613
|
name: string;
|
|
2614
2614
|
picture: string;
|
|
2615
2615
|
};
|
|
2616
|
+
price: string;
|
|
2616
2617
|
discount: string;
|
|
2617
2618
|
custom_price: string;
|
|
2618
|
-
currency: string;
|
|
2619
2619
|
delivery_time: number;
|
|
2620
2620
|
delivery_range: {
|
|
2621
2621
|
min: number;
|
|
@@ -2635,9 +2635,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2635
2635
|
order?: number | null | undefined;
|
|
2636
2636
|
};
|
|
2637
2637
|
packages: {
|
|
2638
|
-
price: string;
|
|
2639
2638
|
weight: string;
|
|
2640
2639
|
insurance_value: string;
|
|
2640
|
+
price: string;
|
|
2641
2641
|
discount: string;
|
|
2642
2642
|
format: string;
|
|
2643
2643
|
products: {
|
|
@@ -2781,9 +2781,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2781
2781
|
data_modificacao: string;
|
|
2782
2782
|
cliente: {
|
|
2783
2783
|
id: number;
|
|
2784
|
-
email: string;
|
|
2785
2784
|
nome: string;
|
|
2786
2785
|
cpf: string;
|
|
2786
|
+
email: string;
|
|
2787
2787
|
resource_uri: string;
|
|
2788
2788
|
sexo: string;
|
|
2789
2789
|
telefone_celular: string;
|
|
@@ -2881,8 +2881,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2881
2881
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
2882
2882
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
2883
2883
|
order?: number | null | undefined;
|
|
2884
|
-
warning?: string | undefined;
|
|
2885
|
-
tags?: string[] | undefined;
|
|
2886
2884
|
customShippingInfo?: {
|
|
2887
2885
|
length: number;
|
|
2888
2886
|
id: string | number;
|
|
@@ -2895,6 +2893,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2895
2893
|
name?: string | undefined;
|
|
2896
2894
|
insurance?: number | undefined;
|
|
2897
2895
|
} | undefined;
|
|
2896
|
+
tags?: string[] | undefined;
|
|
2898
2897
|
cliente_obs?: any;
|
|
2899
2898
|
cupom_desconto?: any;
|
|
2900
2899
|
id_anymarket?: any;
|
|
@@ -2904,22 +2903,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2904
2903
|
utm_campaign?: any;
|
|
2905
2904
|
shippingCalculate?: {
|
|
2906
2905
|
id: string | number;
|
|
2907
|
-
price: number;
|
|
2908
2906
|
company: string;
|
|
2907
|
+
price: number;
|
|
2909
2908
|
service: string;
|
|
2910
2909
|
deliveryTime: number;
|
|
2911
2910
|
original: {
|
|
2911
|
+
currency: string;
|
|
2912
2912
|
id: number;
|
|
2913
|
-
price: string;
|
|
2914
2913
|
name: string;
|
|
2915
2914
|
company: {
|
|
2916
2915
|
id: number;
|
|
2917
2916
|
name: string;
|
|
2918
2917
|
picture: string;
|
|
2919
2918
|
};
|
|
2919
|
+
price: string;
|
|
2920
2920
|
discount: string;
|
|
2921
2921
|
custom_price: string;
|
|
2922
|
-
currency: string;
|
|
2923
2922
|
delivery_time: number;
|
|
2924
2923
|
delivery_range: {
|
|
2925
2924
|
id: string | number;
|
|
@@ -2939,9 +2938,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2939
2938
|
order?: number | null | undefined;
|
|
2940
2939
|
};
|
|
2941
2940
|
packages: {
|
|
2942
|
-
price: string;
|
|
2943
2941
|
weight: string;
|
|
2944
2942
|
insurance_value: string;
|
|
2943
|
+
price: string;
|
|
2945
2944
|
discount: string;
|
|
2946
2945
|
format: string;
|
|
2947
2946
|
products: {
|
|
@@ -3051,22 +3050,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3051
3050
|
} | undefined;
|
|
3052
3051
|
allShippingCalculates?: {
|
|
3053
3052
|
id: string | number;
|
|
3054
|
-
price: number;
|
|
3055
3053
|
company: string;
|
|
3054
|
+
price: number;
|
|
3056
3055
|
service: string;
|
|
3057
3056
|
deliveryTime: number;
|
|
3058
3057
|
original: {
|
|
3058
|
+
currency: string;
|
|
3059
3059
|
id: number;
|
|
3060
|
-
price: string;
|
|
3061
3060
|
name: string;
|
|
3062
3061
|
company: {
|
|
3063
3062
|
id: number;
|
|
3064
3063
|
name: string;
|
|
3065
3064
|
picture: string;
|
|
3066
3065
|
};
|
|
3066
|
+
price: string;
|
|
3067
3067
|
discount: string;
|
|
3068
3068
|
custom_price: string;
|
|
3069
|
-
currency: string;
|
|
3070
3069
|
delivery_time: number;
|
|
3071
3070
|
delivery_range: {
|
|
3072
3071
|
id: string | number;
|
|
@@ -3086,9 +3085,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3086
3085
|
order?: number | null | undefined;
|
|
3087
3086
|
};
|
|
3088
3087
|
packages: {
|
|
3089
|
-
price: string;
|
|
3090
3088
|
weight: string;
|
|
3091
3089
|
insurance_value: string;
|
|
3090
|
+
price: string;
|
|
3092
3091
|
discount: string;
|
|
3093
3092
|
format: string;
|
|
3094
3093
|
products: {
|
|
@@ -3196,6 +3195,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3196
3195
|
insurance?: number | undefined;
|
|
3197
3196
|
} | undefined;
|
|
3198
3197
|
}[] | undefined;
|
|
3198
|
+
warning?: string | undefined;
|
|
3199
3199
|
watching?: boolean | undefined;
|
|
3200
3200
|
useInApp?: Record<string, string[]> | undefined;
|
|
3201
3201
|
}, {
|
|
@@ -3230,9 +3230,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3230
3230
|
data_modificacao: string;
|
|
3231
3231
|
cliente: {
|
|
3232
3232
|
id: number;
|
|
3233
|
-
email: string;
|
|
3234
3233
|
nome: string;
|
|
3235
3234
|
cpf: string;
|
|
3235
|
+
email: string;
|
|
3236
3236
|
resource_uri: string;
|
|
3237
3237
|
sexo: string;
|
|
3238
3238
|
telefone_celular: string;
|
|
@@ -3331,8 +3331,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3331
3331
|
createdAt?: unknown;
|
|
3332
3332
|
updatedAt?: unknown;
|
|
3333
3333
|
order?: number | null | undefined;
|
|
3334
|
-
warning?: string | undefined;
|
|
3335
|
-
tags?: string[] | undefined;
|
|
3336
3334
|
customShippingInfo?: {
|
|
3337
3335
|
length: number;
|
|
3338
3336
|
weight: number;
|
|
@@ -3345,6 +3343,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3345
3343
|
name?: string | undefined;
|
|
3346
3344
|
insurance?: number | undefined;
|
|
3347
3345
|
} | undefined;
|
|
3346
|
+
tags?: string[] | undefined;
|
|
3348
3347
|
cliente_obs?: any;
|
|
3349
3348
|
cupom_desconto?: any;
|
|
3350
3349
|
id_anymarket?: any;
|
|
@@ -3354,22 +3353,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3354
3353
|
utm_campaign?: any;
|
|
3355
3354
|
shippingCalculate?: {
|
|
3356
3355
|
id: string | number;
|
|
3357
|
-
price: number;
|
|
3358
3356
|
company: string;
|
|
3357
|
+
price: number;
|
|
3359
3358
|
service: string;
|
|
3360
3359
|
deliveryTime: number;
|
|
3361
3360
|
original: {
|
|
3361
|
+
currency: string;
|
|
3362
3362
|
id: number;
|
|
3363
|
-
price: string;
|
|
3364
3363
|
name: string;
|
|
3365
3364
|
company: {
|
|
3366
3365
|
id: number;
|
|
3367
3366
|
name: string;
|
|
3368
3367
|
picture: string;
|
|
3369
3368
|
};
|
|
3369
|
+
price: string;
|
|
3370
3370
|
discount: string;
|
|
3371
3371
|
custom_price: string;
|
|
3372
|
-
currency: string;
|
|
3373
3372
|
delivery_time: number;
|
|
3374
3373
|
delivery_range: {
|
|
3375
3374
|
min: number;
|
|
@@ -3389,9 +3388,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3389
3388
|
order?: number | null | undefined;
|
|
3390
3389
|
};
|
|
3391
3390
|
packages: {
|
|
3392
|
-
price: string;
|
|
3393
3391
|
weight: string;
|
|
3394
3392
|
insurance_value: string;
|
|
3393
|
+
price: string;
|
|
3395
3394
|
discount: string;
|
|
3396
3395
|
format: string;
|
|
3397
3396
|
products: {
|
|
@@ -3501,22 +3500,22 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3501
3500
|
} | undefined;
|
|
3502
3501
|
allShippingCalculates?: {
|
|
3503
3502
|
id: string | number;
|
|
3504
|
-
price: number;
|
|
3505
3503
|
company: string;
|
|
3504
|
+
price: number;
|
|
3506
3505
|
service: string;
|
|
3507
3506
|
deliveryTime: number;
|
|
3508
3507
|
original: {
|
|
3508
|
+
currency: string;
|
|
3509
3509
|
id: number;
|
|
3510
|
-
price: string;
|
|
3511
3510
|
name: string;
|
|
3512
3511
|
company: {
|
|
3513
3512
|
id: number;
|
|
3514
3513
|
name: string;
|
|
3515
3514
|
picture: string;
|
|
3516
3515
|
};
|
|
3516
|
+
price: string;
|
|
3517
3517
|
discount: string;
|
|
3518
3518
|
custom_price: string;
|
|
3519
|
-
currency: string;
|
|
3520
3519
|
delivery_time: number;
|
|
3521
3520
|
delivery_range: {
|
|
3522
3521
|
min: number;
|
|
@@ -3536,9 +3535,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3536
3535
|
order?: number | null | undefined;
|
|
3537
3536
|
};
|
|
3538
3537
|
packages: {
|
|
3539
|
-
price: string;
|
|
3540
3538
|
weight: string;
|
|
3541
3539
|
insurance_value: string;
|
|
3540
|
+
price: string;
|
|
3542
3541
|
discount: string;
|
|
3543
3542
|
format: string;
|
|
3544
3543
|
products: {
|
|
@@ -3646,6 +3645,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3646
3645
|
insurance?: number | undefined;
|
|
3647
3646
|
} | undefined;
|
|
3648
3647
|
}[] | undefined;
|
|
3648
|
+
warning?: string | undefined;
|
|
3649
3649
|
watching?: boolean | undefined;
|
|
3650
3650
|
useInApp?: Record<string, string[]> | undefined;
|
|
3651
3651
|
}>;
|