@_henriquewilson/gabirubi-domain 1.3.37 → 1.3.38
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 +22 -22
- package/dist/model/integrada/order.d.ts +22 -22
- package/dist/model/integrada/product.d.mts +506 -506
- package/dist/model/integrada/product.d.ts +506 -506
- package/dist/model/melhorenvio/calculate.d.mts +2 -2
- package/dist/model/melhorenvio/calculate.d.ts +2 -2
- package/dist/model/melhorenvio/order.d.mts +28 -28
- package/dist/model/melhorenvio/order.d.ts +28 -28
- package/dist/model/store/shipping.d.mts +4 -4
- package/dist/model/store/shipping.d.ts +4 -4
- package/dist/model/subscription.model.d.mts +3 -0
- package/dist/model/subscription.model.d.ts +3 -0
- package/dist/model/subscription.model.js +2 -1
- package/dist/model/subscription.model.js.map +1 -1
- package/dist/model/subscription.model.mjs +2 -1
- package/dist/model/subscription.model.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;
|
|
17
18
|
nome: string;
|
|
18
19
|
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;
|
|
29
30
|
nome: string;
|
|
30
31
|
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;
|
|
529
530
|
nome: string;
|
|
530
531
|
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;
|
|
541
542
|
nome: string;
|
|
542
543
|
cpf: string;
|
|
543
|
-
email: string;
|
|
544
544
|
resource_uri: string;
|
|
545
545
|
sexo: string;
|
|
546
546
|
telefone_celular: string;
|
|
@@ -1406,7 +1406,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1406
1406
|
picture: string;
|
|
1407
1407
|
}>;
|
|
1408
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1409
|
-
currency: string;
|
|
1410
1409
|
id: number;
|
|
1411
1410
|
name: string;
|
|
1412
1411
|
company: {
|
|
@@ -1417,6 +1416,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1417
1416
|
price: string;
|
|
1418
1417
|
discount: string;
|
|
1419
1418
|
custom_price: string;
|
|
1419
|
+
currency: string;
|
|
1420
1420
|
delivery_time: number;
|
|
1421
1421
|
delivery_range: {
|
|
1422
1422
|
id: string | number;
|
|
@@ -1464,7 +1464,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1464
1464
|
};
|
|
1465
1465
|
error?: string | undefined;
|
|
1466
1466
|
}, {
|
|
1467
|
-
currency: string;
|
|
1468
1467
|
id: number;
|
|
1469
1468
|
name: string;
|
|
1470
1469
|
company: {
|
|
@@ -1475,6 +1474,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1475
1474
|
price: string;
|
|
1476
1475
|
discount: string;
|
|
1477
1476
|
custom_price: string;
|
|
1477
|
+
currency: string;
|
|
1478
1478
|
delivery_time: number;
|
|
1479
1479
|
delivery_range: {
|
|
1480
1480
|
min: number;
|
|
@@ -1564,7 +1564,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1564
1564
|
service: string;
|
|
1565
1565
|
deliveryTime: number;
|
|
1566
1566
|
original: {
|
|
1567
|
-
currency: string;
|
|
1568
1567
|
id: number;
|
|
1569
1568
|
name: string;
|
|
1570
1569
|
company: {
|
|
@@ -1575,6 +1574,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1575
1574
|
price: string;
|
|
1576
1575
|
discount: string;
|
|
1577
1576
|
custom_price: string;
|
|
1577
|
+
currency: string;
|
|
1578
1578
|
delivery_time: number;
|
|
1579
1579
|
delivery_range: {
|
|
1580
1580
|
id: string | number;
|
|
@@ -1710,7 +1710,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1710
1710
|
service: string;
|
|
1711
1711
|
deliveryTime: number;
|
|
1712
1712
|
original: {
|
|
1713
|
-
currency: string;
|
|
1714
1713
|
id: number;
|
|
1715
1714
|
name: string;
|
|
1716
1715
|
company: {
|
|
@@ -1721,6 +1720,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1721
1720
|
price: string;
|
|
1722
1721
|
discount: string;
|
|
1723
1722
|
custom_price: string;
|
|
1723
|
+
currency: string;
|
|
1724
1724
|
delivery_time: number;
|
|
1725
1725
|
delivery_range: {
|
|
1726
1726
|
min: number;
|
|
@@ -2301,7 +2301,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2301
2301
|
picture: string;
|
|
2302
2302
|
}>;
|
|
2303
2303
|
}, "strip", z.ZodTypeAny, {
|
|
2304
|
-
currency: string;
|
|
2305
2304
|
id: number;
|
|
2306
2305
|
name: string;
|
|
2307
2306
|
company: {
|
|
@@ -2312,6 +2311,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2312
2311
|
price: string;
|
|
2313
2312
|
discount: string;
|
|
2314
2313
|
custom_price: string;
|
|
2314
|
+
currency: string;
|
|
2315
2315
|
delivery_time: number;
|
|
2316
2316
|
delivery_range: {
|
|
2317
2317
|
id: string | number;
|
|
@@ -2359,7 +2359,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2359
2359
|
};
|
|
2360
2360
|
error?: string | undefined;
|
|
2361
2361
|
}, {
|
|
2362
|
-
currency: string;
|
|
2363
2362
|
id: number;
|
|
2364
2363
|
name: string;
|
|
2365
2364
|
company: {
|
|
@@ -2370,6 +2369,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2370
2369
|
price: string;
|
|
2371
2370
|
discount: string;
|
|
2372
2371
|
custom_price: string;
|
|
2372
|
+
currency: string;
|
|
2373
2373
|
delivery_time: number;
|
|
2374
2374
|
delivery_range: {
|
|
2375
2375
|
min: number;
|
|
@@ -2459,7 +2459,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2459
2459
|
service: string;
|
|
2460
2460
|
deliveryTime: number;
|
|
2461
2461
|
original: {
|
|
2462
|
-
currency: string;
|
|
2463
2462
|
id: number;
|
|
2464
2463
|
name: string;
|
|
2465
2464
|
company: {
|
|
@@ -2470,6 +2469,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2470
2469
|
price: string;
|
|
2471
2470
|
discount: string;
|
|
2472
2471
|
custom_price: string;
|
|
2472
|
+
currency: string;
|
|
2473
2473
|
delivery_time: number;
|
|
2474
2474
|
delivery_range: {
|
|
2475
2475
|
id: string | number;
|
|
@@ -2605,7 +2605,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2605
2605
|
service: string;
|
|
2606
2606
|
deliveryTime: number;
|
|
2607
2607
|
original: {
|
|
2608
|
-
currency: string;
|
|
2609
2608
|
id: number;
|
|
2610
2609
|
name: string;
|
|
2611
2610
|
company: {
|
|
@@ -2616,6 +2615,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2616
2615
|
price: string;
|
|
2617
2616
|
discount: string;
|
|
2618
2617
|
custom_price: string;
|
|
2618
|
+
currency: string;
|
|
2619
2619
|
delivery_time: number;
|
|
2620
2620
|
delivery_range: {
|
|
2621
2621
|
min: number;
|
|
@@ -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;
|
|
2784
2785
|
nome: string;
|
|
2785
2786
|
cpf: string;
|
|
2786
|
-
email: string;
|
|
2787
2787
|
resource_uri: string;
|
|
2788
2788
|
sexo: string;
|
|
2789
2789
|
telefone_celular: string;
|
|
@@ -2881,6 +2881,8 @@ 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;
|
|
2884
2886
|
customShippingInfo?: {
|
|
2885
2887
|
length: number;
|
|
2886
2888
|
id: string | number;
|
|
@@ -2893,7 +2895,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2893
2895
|
name?: string | undefined;
|
|
2894
2896
|
insurance?: number | undefined;
|
|
2895
2897
|
} | undefined;
|
|
2896
|
-
tags?: string[] | undefined;
|
|
2897
2898
|
cliente_obs?: any;
|
|
2898
2899
|
cupom_desconto?: any;
|
|
2899
2900
|
id_anymarket?: any;
|
|
@@ -2908,7 +2909,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2908
2909
|
service: string;
|
|
2909
2910
|
deliveryTime: number;
|
|
2910
2911
|
original: {
|
|
2911
|
-
currency: string;
|
|
2912
2912
|
id: number;
|
|
2913
2913
|
name: string;
|
|
2914
2914
|
company: {
|
|
@@ -2919,6 +2919,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2919
2919
|
price: string;
|
|
2920
2920
|
discount: string;
|
|
2921
2921
|
custom_price: string;
|
|
2922
|
+
currency: string;
|
|
2922
2923
|
delivery_time: number;
|
|
2923
2924
|
delivery_range: {
|
|
2924
2925
|
id: string | number;
|
|
@@ -3055,7 +3056,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3055
3056
|
service: string;
|
|
3056
3057
|
deliveryTime: number;
|
|
3057
3058
|
original: {
|
|
3058
|
-
currency: string;
|
|
3059
3059
|
id: number;
|
|
3060
3060
|
name: string;
|
|
3061
3061
|
company: {
|
|
@@ -3066,6 +3066,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3066
3066
|
price: string;
|
|
3067
3067
|
discount: string;
|
|
3068
3068
|
custom_price: string;
|
|
3069
|
+
currency: string;
|
|
3069
3070
|
delivery_time: number;
|
|
3070
3071
|
delivery_range: {
|
|
3071
3072
|
id: string | number;
|
|
@@ -3195,7 +3196,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3195
3196
|
insurance?: number | undefined;
|
|
3196
3197
|
} | undefined;
|
|
3197
3198
|
}[] | 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;
|
|
3233
3234
|
nome: string;
|
|
3234
3235
|
cpf: string;
|
|
3235
|
-
email: string;
|
|
3236
3236
|
resource_uri: string;
|
|
3237
3237
|
sexo: string;
|
|
3238
3238
|
telefone_celular: string;
|
|
@@ -3331,6 +3331,8 @@ 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;
|
|
3334
3336
|
customShippingInfo?: {
|
|
3335
3337
|
length: number;
|
|
3336
3338
|
weight: number;
|
|
@@ -3343,7 +3345,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3343
3345
|
name?: string | undefined;
|
|
3344
3346
|
insurance?: number | undefined;
|
|
3345
3347
|
} | undefined;
|
|
3346
|
-
tags?: string[] | undefined;
|
|
3347
3348
|
cliente_obs?: any;
|
|
3348
3349
|
cupom_desconto?: any;
|
|
3349
3350
|
id_anymarket?: any;
|
|
@@ -3358,7 +3359,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3358
3359
|
service: string;
|
|
3359
3360
|
deliveryTime: number;
|
|
3360
3361
|
original: {
|
|
3361
|
-
currency: string;
|
|
3362
3362
|
id: number;
|
|
3363
3363
|
name: string;
|
|
3364
3364
|
company: {
|
|
@@ -3369,6 +3369,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3369
3369
|
price: string;
|
|
3370
3370
|
discount: string;
|
|
3371
3371
|
custom_price: string;
|
|
3372
|
+
currency: string;
|
|
3372
3373
|
delivery_time: number;
|
|
3373
3374
|
delivery_range: {
|
|
3374
3375
|
min: number;
|
|
@@ -3505,7 +3506,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3505
3506
|
service: string;
|
|
3506
3507
|
deliveryTime: number;
|
|
3507
3508
|
original: {
|
|
3508
|
-
currency: string;
|
|
3509
3509
|
id: number;
|
|
3510
3510
|
name: string;
|
|
3511
3511
|
company: {
|
|
@@ -3516,6 +3516,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3516
3516
|
price: string;
|
|
3517
3517
|
discount: string;
|
|
3518
3518
|
custom_price: string;
|
|
3519
|
+
currency: string;
|
|
3519
3520
|
delivery_time: number;
|
|
3520
3521
|
delivery_range: {
|
|
3521
3522
|
min: number;
|
|
@@ -3645,7 +3646,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3645
3646
|
insurance?: number | undefined;
|
|
3646
3647
|
} | undefined;
|
|
3647
3648
|
}[] | undefined;
|
|
3648
|
-
warning?: string | undefined;
|
|
3649
3649
|
watching?: boolean | undefined;
|
|
3650
3650
|
useInApp?: Record<string, string[]> | undefined;
|
|
3651
3651
|
}>;
|
|
@@ -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;
|
|
17
18
|
nome: string;
|
|
18
19
|
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;
|
|
29
30
|
nome: string;
|
|
30
31
|
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;
|
|
529
530
|
nome: string;
|
|
530
531
|
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;
|
|
541
542
|
nome: string;
|
|
542
543
|
cpf: string;
|
|
543
|
-
email: string;
|
|
544
544
|
resource_uri: string;
|
|
545
545
|
sexo: string;
|
|
546
546
|
telefone_celular: string;
|
|
@@ -1406,7 +1406,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1406
1406
|
picture: string;
|
|
1407
1407
|
}>;
|
|
1408
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1409
|
-
currency: string;
|
|
1410
1409
|
id: number;
|
|
1411
1410
|
name: string;
|
|
1412
1411
|
company: {
|
|
@@ -1417,6 +1416,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1417
1416
|
price: string;
|
|
1418
1417
|
discount: string;
|
|
1419
1418
|
custom_price: string;
|
|
1419
|
+
currency: string;
|
|
1420
1420
|
delivery_time: number;
|
|
1421
1421
|
delivery_range: {
|
|
1422
1422
|
id: string | number;
|
|
@@ -1464,7 +1464,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1464
1464
|
};
|
|
1465
1465
|
error?: string | undefined;
|
|
1466
1466
|
}, {
|
|
1467
|
-
currency: string;
|
|
1468
1467
|
id: number;
|
|
1469
1468
|
name: string;
|
|
1470
1469
|
company: {
|
|
@@ -1475,6 +1474,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1475
1474
|
price: string;
|
|
1476
1475
|
discount: string;
|
|
1477
1476
|
custom_price: string;
|
|
1477
|
+
currency: string;
|
|
1478
1478
|
delivery_time: number;
|
|
1479
1479
|
delivery_range: {
|
|
1480
1480
|
min: number;
|
|
@@ -1564,7 +1564,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1564
1564
|
service: string;
|
|
1565
1565
|
deliveryTime: number;
|
|
1566
1566
|
original: {
|
|
1567
|
-
currency: string;
|
|
1568
1567
|
id: number;
|
|
1569
1568
|
name: string;
|
|
1570
1569
|
company: {
|
|
@@ -1575,6 +1574,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1575
1574
|
price: string;
|
|
1576
1575
|
discount: string;
|
|
1577
1576
|
custom_price: string;
|
|
1577
|
+
currency: string;
|
|
1578
1578
|
delivery_time: number;
|
|
1579
1579
|
delivery_range: {
|
|
1580
1580
|
id: string | number;
|
|
@@ -1710,7 +1710,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1710
1710
|
service: string;
|
|
1711
1711
|
deliveryTime: number;
|
|
1712
1712
|
original: {
|
|
1713
|
-
currency: string;
|
|
1714
1713
|
id: number;
|
|
1715
1714
|
name: string;
|
|
1716
1715
|
company: {
|
|
@@ -1721,6 +1720,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1721
1720
|
price: string;
|
|
1722
1721
|
discount: string;
|
|
1723
1722
|
custom_price: string;
|
|
1723
|
+
currency: string;
|
|
1724
1724
|
delivery_time: number;
|
|
1725
1725
|
delivery_range: {
|
|
1726
1726
|
min: number;
|
|
@@ -2301,7 +2301,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2301
2301
|
picture: string;
|
|
2302
2302
|
}>;
|
|
2303
2303
|
}, "strip", z.ZodTypeAny, {
|
|
2304
|
-
currency: string;
|
|
2305
2304
|
id: number;
|
|
2306
2305
|
name: string;
|
|
2307
2306
|
company: {
|
|
@@ -2312,6 +2311,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2312
2311
|
price: string;
|
|
2313
2312
|
discount: string;
|
|
2314
2313
|
custom_price: string;
|
|
2314
|
+
currency: string;
|
|
2315
2315
|
delivery_time: number;
|
|
2316
2316
|
delivery_range: {
|
|
2317
2317
|
id: string | number;
|
|
@@ -2359,7 +2359,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2359
2359
|
};
|
|
2360
2360
|
error?: string | undefined;
|
|
2361
2361
|
}, {
|
|
2362
|
-
currency: string;
|
|
2363
2362
|
id: number;
|
|
2364
2363
|
name: string;
|
|
2365
2364
|
company: {
|
|
@@ -2370,6 +2369,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2370
2369
|
price: string;
|
|
2371
2370
|
discount: string;
|
|
2372
2371
|
custom_price: string;
|
|
2372
|
+
currency: string;
|
|
2373
2373
|
delivery_time: number;
|
|
2374
2374
|
delivery_range: {
|
|
2375
2375
|
min: number;
|
|
@@ -2459,7 +2459,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2459
2459
|
service: string;
|
|
2460
2460
|
deliveryTime: number;
|
|
2461
2461
|
original: {
|
|
2462
|
-
currency: string;
|
|
2463
2462
|
id: number;
|
|
2464
2463
|
name: string;
|
|
2465
2464
|
company: {
|
|
@@ -2470,6 +2469,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2470
2469
|
price: string;
|
|
2471
2470
|
discount: string;
|
|
2472
2471
|
custom_price: string;
|
|
2472
|
+
currency: string;
|
|
2473
2473
|
delivery_time: number;
|
|
2474
2474
|
delivery_range: {
|
|
2475
2475
|
id: string | number;
|
|
@@ -2605,7 +2605,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2605
2605
|
service: string;
|
|
2606
2606
|
deliveryTime: number;
|
|
2607
2607
|
original: {
|
|
2608
|
-
currency: string;
|
|
2609
2608
|
id: number;
|
|
2610
2609
|
name: string;
|
|
2611
2610
|
company: {
|
|
@@ -2616,6 +2615,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2616
2615
|
price: string;
|
|
2617
2616
|
discount: string;
|
|
2618
2617
|
custom_price: string;
|
|
2618
|
+
currency: string;
|
|
2619
2619
|
delivery_time: number;
|
|
2620
2620
|
delivery_range: {
|
|
2621
2621
|
min: number;
|
|
@@ -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;
|
|
2784
2785
|
nome: string;
|
|
2785
2786
|
cpf: string;
|
|
2786
|
-
email: string;
|
|
2787
2787
|
resource_uri: string;
|
|
2788
2788
|
sexo: string;
|
|
2789
2789
|
telefone_celular: string;
|
|
@@ -2881,6 +2881,8 @@ 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;
|
|
2884
2886
|
customShippingInfo?: {
|
|
2885
2887
|
length: number;
|
|
2886
2888
|
id: string | number;
|
|
@@ -2893,7 +2895,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2893
2895
|
name?: string | undefined;
|
|
2894
2896
|
insurance?: number | undefined;
|
|
2895
2897
|
} | undefined;
|
|
2896
|
-
tags?: string[] | undefined;
|
|
2897
2898
|
cliente_obs?: any;
|
|
2898
2899
|
cupom_desconto?: any;
|
|
2899
2900
|
id_anymarket?: any;
|
|
@@ -2908,7 +2909,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2908
2909
|
service: string;
|
|
2909
2910
|
deliveryTime: number;
|
|
2910
2911
|
original: {
|
|
2911
|
-
currency: string;
|
|
2912
2912
|
id: number;
|
|
2913
2913
|
name: string;
|
|
2914
2914
|
company: {
|
|
@@ -2919,6 +2919,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2919
2919
|
price: string;
|
|
2920
2920
|
discount: string;
|
|
2921
2921
|
custom_price: string;
|
|
2922
|
+
currency: string;
|
|
2922
2923
|
delivery_time: number;
|
|
2923
2924
|
delivery_range: {
|
|
2924
2925
|
id: string | number;
|
|
@@ -3055,7 +3056,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3055
3056
|
service: string;
|
|
3056
3057
|
deliveryTime: number;
|
|
3057
3058
|
original: {
|
|
3058
|
-
currency: string;
|
|
3059
3059
|
id: number;
|
|
3060
3060
|
name: string;
|
|
3061
3061
|
company: {
|
|
@@ -3066,6 +3066,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3066
3066
|
price: string;
|
|
3067
3067
|
discount: string;
|
|
3068
3068
|
custom_price: string;
|
|
3069
|
+
currency: string;
|
|
3069
3070
|
delivery_time: number;
|
|
3070
3071
|
delivery_range: {
|
|
3071
3072
|
id: string | number;
|
|
@@ -3195,7 +3196,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3195
3196
|
insurance?: number | undefined;
|
|
3196
3197
|
} | undefined;
|
|
3197
3198
|
}[] | 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;
|
|
3233
3234
|
nome: string;
|
|
3234
3235
|
cpf: string;
|
|
3235
|
-
email: string;
|
|
3236
3236
|
resource_uri: string;
|
|
3237
3237
|
sexo: string;
|
|
3238
3238
|
telefone_celular: string;
|
|
@@ -3331,6 +3331,8 @@ 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;
|
|
3334
3336
|
customShippingInfo?: {
|
|
3335
3337
|
length: number;
|
|
3336
3338
|
weight: number;
|
|
@@ -3343,7 +3345,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3343
3345
|
name?: string | undefined;
|
|
3344
3346
|
insurance?: number | undefined;
|
|
3345
3347
|
} | undefined;
|
|
3346
|
-
tags?: string[] | undefined;
|
|
3347
3348
|
cliente_obs?: any;
|
|
3348
3349
|
cupom_desconto?: any;
|
|
3349
3350
|
id_anymarket?: any;
|
|
@@ -3358,7 +3359,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3358
3359
|
service: string;
|
|
3359
3360
|
deliveryTime: number;
|
|
3360
3361
|
original: {
|
|
3361
|
-
currency: string;
|
|
3362
3362
|
id: number;
|
|
3363
3363
|
name: string;
|
|
3364
3364
|
company: {
|
|
@@ -3369,6 +3369,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3369
3369
|
price: string;
|
|
3370
3370
|
discount: string;
|
|
3371
3371
|
custom_price: string;
|
|
3372
|
+
currency: string;
|
|
3372
3373
|
delivery_time: number;
|
|
3373
3374
|
delivery_range: {
|
|
3374
3375
|
min: number;
|
|
@@ -3505,7 +3506,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3505
3506
|
service: string;
|
|
3506
3507
|
deliveryTime: number;
|
|
3507
3508
|
original: {
|
|
3508
|
-
currency: string;
|
|
3509
3509
|
id: number;
|
|
3510
3510
|
name: string;
|
|
3511
3511
|
company: {
|
|
@@ -3516,6 +3516,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3516
3516
|
price: string;
|
|
3517
3517
|
discount: string;
|
|
3518
3518
|
custom_price: string;
|
|
3519
|
+
currency: string;
|
|
3519
3520
|
delivery_time: number;
|
|
3520
3521
|
delivery_range: {
|
|
3521
3522
|
min: number;
|
|
@@ -3645,7 +3646,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3645
3646
|
insurance?: number | undefined;
|
|
3646
3647
|
} | undefined;
|
|
3647
3648
|
}[] | undefined;
|
|
3648
|
-
warning?: string | undefined;
|
|
3649
3649
|
watching?: boolean | undefined;
|
|
3650
3650
|
useInApp?: Record<string, string[]> | undefined;
|
|
3651
3651
|
}>;
|