@_henriquewilson/gabirubi-domain 1.3.44 → 1.3.46
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/order.d.mts +36 -36
- package/dist/model/integrada/order.d.ts +36 -36
- package/dist/model/iugu/iugu-invoice.d.mts +4 -4
- package/dist/model/iugu/iugu-invoice.d.ts +4 -4
- package/dist/model/journey.d.mts +82 -13
- package/dist/model/journey.d.ts +82 -13
- package/dist/model/journey.js +15 -1
- package/dist/model/journey.js.map +1 -1
- package/dist/model/journey.mjs +12 -2
- package/dist/model/journey.mjs.map +1 -1
- package/dist/model/melhorenvio/calculate.d.mts +8 -8
- package/dist/model/melhorenvio/calculate.d.ts +8 -8
- package/dist/model/melhorenvio/order.d.mts +2 -2
- package/dist/model/melhorenvio/order.d.ts +2 -2
- package/dist/model/store/shipping.d.mts +12 -12
- package/dist/model/store/shipping.d.ts +12 -12
- package/dist/model/stripe/stripe.d.mts +196 -0
- package/dist/model/stripe/stripe.d.ts +196 -0
- package/dist/model/stripe/stripe.js +45 -0
- package/dist/model/stripe/stripe.js.map +1 -0
- package/dist/model/stripe/stripe.mjs +1 -0
- package/dist/model/stripe/stripe.mjs.map +1 -0
- package/dist/model/subscription.model.d.mts +18 -18
- package/dist/model/subscription.model.d.ts +18 -18
- package/dist/test/activity.test.js +11 -1
- package/dist/test/activity.test.js.map +1 -1
- package/dist/test/activity.test.mjs +11 -1
- package/dist/test/activity.test.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
1330
1331
|
weight: string;
|
|
1331
1332
|
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;
|
|
1345
1346
|
weight: string;
|
|
1346
1347
|
insurance_value: string;
|
|
1347
|
-
price: string;
|
|
1348
1348
|
discount: string;
|
|
1349
1349
|
format: string;
|
|
1350
1350
|
products: {
|
|
@@ -1407,13 +1407,13 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1407
1407
|
}>;
|
|
1408
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1409
1409
|
id: number;
|
|
1410
|
+
price: string;
|
|
1410
1411
|
name: string;
|
|
1411
1412
|
company: {
|
|
1412
1413
|
id: number;
|
|
1413
1414
|
name: string;
|
|
1414
1415
|
picture: string;
|
|
1415
1416
|
};
|
|
1416
|
-
price: string;
|
|
1417
1417
|
discount: string;
|
|
1418
1418
|
custom_price: string;
|
|
1419
1419
|
currency: string;
|
|
@@ -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;
|
|
1439
1440
|
weight: string;
|
|
1440
1441
|
insurance_value: string;
|
|
1441
|
-
price: string;
|
|
1442
1442
|
discount: string;
|
|
1443
1443
|
format: string;
|
|
1444
1444
|
products: {
|
|
@@ -1465,13 +1465,13 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1465
1465
|
error?: string | undefined;
|
|
1466
1466
|
}, {
|
|
1467
1467
|
id: number;
|
|
1468
|
+
price: string;
|
|
1468
1469
|
name: string;
|
|
1469
1470
|
company: {
|
|
1470
1471
|
id: number;
|
|
1471
1472
|
name: string;
|
|
1472
1473
|
picture: string;
|
|
1473
1474
|
};
|
|
1474
|
-
price: string;
|
|
1475
1475
|
discount: string;
|
|
1476
1476
|
custom_price: string;
|
|
1477
1477
|
currency: string;
|
|
@@ -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;
|
|
1497
1498
|
weight: string;
|
|
1498
1499
|
insurance_value: string;
|
|
1499
|
-
price: string;
|
|
1500
1500
|
discount: string;
|
|
1501
1501
|
format: string;
|
|
1502
1502
|
products: {
|
|
@@ -1559,19 +1559,19 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1559
1559
|
}>>;
|
|
1560
1560
|
}>, "strip", z.ZodTypeAny, {
|
|
1561
1561
|
id: string | number;
|
|
1562
|
-
company: string;
|
|
1563
1562
|
price: number;
|
|
1563
|
+
company: string;
|
|
1564
1564
|
service: string;
|
|
1565
1565
|
deliveryTime: number;
|
|
1566
1566
|
original: {
|
|
1567
1567
|
id: number;
|
|
1568
|
+
price: string;
|
|
1568
1569
|
name: string;
|
|
1569
1570
|
company: {
|
|
1570
1571
|
id: number;
|
|
1571
1572
|
name: string;
|
|
1572
1573
|
picture: string;
|
|
1573
1574
|
};
|
|
1574
|
-
price: string;
|
|
1575
1575
|
discount: string;
|
|
1576
1576
|
custom_price: string;
|
|
1577
1577
|
currency: string;
|
|
@@ -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;
|
|
1597
1598
|
weight: string;
|
|
1598
1599
|
insurance_value: string;
|
|
1599
|
-
price: string;
|
|
1600
1600
|
discount: string;
|
|
1601
1601
|
format: string;
|
|
1602
1602
|
products: {
|
|
@@ -1705,19 +1705,19 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1705
1705
|
} | undefined;
|
|
1706
1706
|
}, {
|
|
1707
1707
|
id: string | number;
|
|
1708
|
-
company: string;
|
|
1709
1708
|
price: number;
|
|
1709
|
+
company: string;
|
|
1710
1710
|
service: string;
|
|
1711
1711
|
deliveryTime: number;
|
|
1712
1712
|
original: {
|
|
1713
1713
|
id: number;
|
|
1714
|
+
price: string;
|
|
1714
1715
|
name: string;
|
|
1715
1716
|
company: {
|
|
1716
1717
|
id: number;
|
|
1717
1718
|
name: string;
|
|
1718
1719
|
picture: string;
|
|
1719
1720
|
};
|
|
1720
|
-
price: string;
|
|
1721
1721
|
discount: string;
|
|
1722
1722
|
custom_price: string;
|
|
1723
1723
|
currency: string;
|
|
@@ -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;
|
|
1743
1744
|
weight: string;
|
|
1744
1745
|
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;
|
|
2225
2226
|
weight: string;
|
|
2226
2227
|
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;
|
|
2240
2241
|
weight: string;
|
|
2241
2242
|
insurance_value: string;
|
|
2242
|
-
price: string;
|
|
2243
2243
|
discount: string;
|
|
2244
2244
|
format: string;
|
|
2245
2245
|
products: {
|
|
@@ -2302,13 +2302,13 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2302
2302
|
}>;
|
|
2303
2303
|
}, "strip", z.ZodTypeAny, {
|
|
2304
2304
|
id: number;
|
|
2305
|
+
price: string;
|
|
2305
2306
|
name: string;
|
|
2306
2307
|
company: {
|
|
2307
2308
|
id: number;
|
|
2308
2309
|
name: string;
|
|
2309
2310
|
picture: string;
|
|
2310
2311
|
};
|
|
2311
|
-
price: string;
|
|
2312
2312
|
discount: string;
|
|
2313
2313
|
custom_price: string;
|
|
2314
2314
|
currency: string;
|
|
@@ -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;
|
|
2334
2335
|
weight: string;
|
|
2335
2336
|
insurance_value: string;
|
|
2336
|
-
price: string;
|
|
2337
2337
|
discount: string;
|
|
2338
2338
|
format: string;
|
|
2339
2339
|
products: {
|
|
@@ -2360,13 +2360,13 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2360
2360
|
error?: string | undefined;
|
|
2361
2361
|
}, {
|
|
2362
2362
|
id: number;
|
|
2363
|
+
price: string;
|
|
2363
2364
|
name: string;
|
|
2364
2365
|
company: {
|
|
2365
2366
|
id: number;
|
|
2366
2367
|
name: string;
|
|
2367
2368
|
picture: string;
|
|
2368
2369
|
};
|
|
2369
|
-
price: string;
|
|
2370
2370
|
discount: string;
|
|
2371
2371
|
custom_price: string;
|
|
2372
2372
|
currency: string;
|
|
@@ -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;
|
|
2392
2393
|
weight: string;
|
|
2393
2394
|
insurance_value: string;
|
|
2394
|
-
price: string;
|
|
2395
2395
|
discount: string;
|
|
2396
2396
|
format: string;
|
|
2397
2397
|
products: {
|
|
@@ -2454,19 +2454,19 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2454
2454
|
}>>;
|
|
2455
2455
|
}>, "strip", z.ZodTypeAny, {
|
|
2456
2456
|
id: string | number;
|
|
2457
|
-
company: string;
|
|
2458
2457
|
price: number;
|
|
2458
|
+
company: string;
|
|
2459
2459
|
service: string;
|
|
2460
2460
|
deliveryTime: number;
|
|
2461
2461
|
original: {
|
|
2462
2462
|
id: number;
|
|
2463
|
+
price: string;
|
|
2463
2464
|
name: string;
|
|
2464
2465
|
company: {
|
|
2465
2466
|
id: number;
|
|
2466
2467
|
name: string;
|
|
2467
2468
|
picture: string;
|
|
2468
2469
|
};
|
|
2469
|
-
price: string;
|
|
2470
2470
|
discount: string;
|
|
2471
2471
|
custom_price: string;
|
|
2472
2472
|
currency: string;
|
|
@@ -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;
|
|
2492
2493
|
weight: string;
|
|
2493
2494
|
insurance_value: string;
|
|
2494
|
-
price: string;
|
|
2495
2495
|
discount: string;
|
|
2496
2496
|
format: string;
|
|
2497
2497
|
products: {
|
|
@@ -2600,19 +2600,19 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2600
2600
|
} | undefined;
|
|
2601
2601
|
}, {
|
|
2602
2602
|
id: string | number;
|
|
2603
|
-
company: string;
|
|
2604
2603
|
price: number;
|
|
2604
|
+
company: string;
|
|
2605
2605
|
service: string;
|
|
2606
2606
|
deliveryTime: number;
|
|
2607
2607
|
original: {
|
|
2608
2608
|
id: number;
|
|
2609
|
+
price: string;
|
|
2609
2610
|
name: string;
|
|
2610
2611
|
company: {
|
|
2611
2612
|
id: number;
|
|
2612
2613
|
name: string;
|
|
2613
2614
|
picture: string;
|
|
2614
2615
|
};
|
|
2615
|
-
price: string;
|
|
2616
2616
|
discount: string;
|
|
2617
2617
|
custom_price: string;
|
|
2618
2618
|
currency: string;
|
|
@@ -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;
|
|
2638
2639
|
weight: string;
|
|
2639
2640
|
insurance_value: string;
|
|
2640
|
-
price: string;
|
|
2641
2641
|
discount: string;
|
|
2642
2642
|
format: string;
|
|
2643
2643
|
products: {
|
|
@@ -2904,19 +2904,19 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2904
2904
|
utm_campaign?: any;
|
|
2905
2905
|
shippingCalculate?: {
|
|
2906
2906
|
id: string | number;
|
|
2907
|
-
company: string;
|
|
2908
2907
|
price: number;
|
|
2908
|
+
company: string;
|
|
2909
2909
|
service: string;
|
|
2910
2910
|
deliveryTime: number;
|
|
2911
2911
|
original: {
|
|
2912
2912
|
id: number;
|
|
2913
|
+
price: string;
|
|
2913
2914
|
name: string;
|
|
2914
2915
|
company: {
|
|
2915
2916
|
id: number;
|
|
2916
2917
|
name: string;
|
|
2917
2918
|
picture: string;
|
|
2918
2919
|
};
|
|
2919
|
-
price: string;
|
|
2920
2920
|
discount: string;
|
|
2921
2921
|
custom_price: string;
|
|
2922
2922
|
currency: string;
|
|
@@ -2939,9 +2939,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2939
2939
|
order?: number | null | undefined;
|
|
2940
2940
|
};
|
|
2941
2941
|
packages: {
|
|
2942
|
+
price: string;
|
|
2942
2943
|
weight: string;
|
|
2943
2944
|
insurance_value: string;
|
|
2944
|
-
price: string;
|
|
2945
2945
|
discount: string;
|
|
2946
2946
|
format: string;
|
|
2947
2947
|
products: {
|
|
@@ -3051,19 +3051,19 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3051
3051
|
} | undefined;
|
|
3052
3052
|
allShippingCalculates?: {
|
|
3053
3053
|
id: string | number;
|
|
3054
|
-
company: string;
|
|
3055
3054
|
price: number;
|
|
3055
|
+
company: string;
|
|
3056
3056
|
service: string;
|
|
3057
3057
|
deliveryTime: number;
|
|
3058
3058
|
original: {
|
|
3059
3059
|
id: number;
|
|
3060
|
+
price: string;
|
|
3060
3061
|
name: string;
|
|
3061
3062
|
company: {
|
|
3062
3063
|
id: number;
|
|
3063
3064
|
name: string;
|
|
3064
3065
|
picture: string;
|
|
3065
3066
|
};
|
|
3066
|
-
price: string;
|
|
3067
3067
|
discount: string;
|
|
3068
3068
|
custom_price: string;
|
|
3069
3069
|
currency: string;
|
|
@@ -3086,9 +3086,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3086
3086
|
order?: number | null | undefined;
|
|
3087
3087
|
};
|
|
3088
3088
|
packages: {
|
|
3089
|
+
price: string;
|
|
3089
3090
|
weight: string;
|
|
3090
3091
|
insurance_value: string;
|
|
3091
|
-
price: string;
|
|
3092
3092
|
discount: string;
|
|
3093
3093
|
format: string;
|
|
3094
3094
|
products: {
|
|
@@ -3354,19 +3354,19 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3354
3354
|
utm_campaign?: any;
|
|
3355
3355
|
shippingCalculate?: {
|
|
3356
3356
|
id: string | number;
|
|
3357
|
-
company: string;
|
|
3358
3357
|
price: number;
|
|
3358
|
+
company: string;
|
|
3359
3359
|
service: string;
|
|
3360
3360
|
deliveryTime: number;
|
|
3361
3361
|
original: {
|
|
3362
3362
|
id: number;
|
|
3363
|
+
price: string;
|
|
3363
3364
|
name: string;
|
|
3364
3365
|
company: {
|
|
3365
3366
|
id: number;
|
|
3366
3367
|
name: string;
|
|
3367
3368
|
picture: string;
|
|
3368
3369
|
};
|
|
3369
|
-
price: string;
|
|
3370
3370
|
discount: string;
|
|
3371
3371
|
custom_price: string;
|
|
3372
3372
|
currency: string;
|
|
@@ -3389,9 +3389,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3389
3389
|
order?: number | null | undefined;
|
|
3390
3390
|
};
|
|
3391
3391
|
packages: {
|
|
3392
|
+
price: string;
|
|
3392
3393
|
weight: string;
|
|
3393
3394
|
insurance_value: string;
|
|
3394
|
-
price: string;
|
|
3395
3395
|
discount: string;
|
|
3396
3396
|
format: string;
|
|
3397
3397
|
products: {
|
|
@@ -3501,19 +3501,19 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3501
3501
|
} | undefined;
|
|
3502
3502
|
allShippingCalculates?: {
|
|
3503
3503
|
id: string | number;
|
|
3504
|
-
company: string;
|
|
3505
3504
|
price: number;
|
|
3505
|
+
company: string;
|
|
3506
3506
|
service: string;
|
|
3507
3507
|
deliveryTime: number;
|
|
3508
3508
|
original: {
|
|
3509
3509
|
id: number;
|
|
3510
|
+
price: string;
|
|
3510
3511
|
name: string;
|
|
3511
3512
|
company: {
|
|
3512
3513
|
id: number;
|
|
3513
3514
|
name: string;
|
|
3514
3515
|
picture: string;
|
|
3515
3516
|
};
|
|
3516
|
-
price: string;
|
|
3517
3517
|
discount: string;
|
|
3518
3518
|
custom_price: string;
|
|
3519
3519
|
currency: string;
|
|
@@ -3536,9 +3536,9 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3536
3536
|
order?: number | null | undefined;
|
|
3537
3537
|
};
|
|
3538
3538
|
packages: {
|
|
3539
|
+
price: string;
|
|
3539
3540
|
weight: string;
|
|
3540
3541
|
insurance_value: string;
|
|
3541
|
-
price: string;
|
|
3542
3542
|
discount: string;
|
|
3543
3543
|
format: string;
|
|
3544
3544
|
products: {
|