@instockng/api-client 1.0.35 → 1.0.36
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/fetchers/brands.d.ts +1 -0
- package/dist/fetchers/carts.d.ts +113 -112
- package/dist/fetchers/delivery-zones.d.ts +0 -1
- package/dist/fetchers/orders.d.ts +31 -30
- package/dist/hooks/admin/abandoned-carts.d.ts +24 -24
- package/dist/hooks/admin/brands.d.ts +4 -0
- package/dist/hooks/admin/customers.d.ts +14 -14
- package/dist/hooks/admin/delivery-zones.d.ts +12 -8
- package/dist/hooks/admin/discount-codes.d.ts +20 -15
- package/dist/hooks/admin/orders.d.ts +79 -78
- package/dist/hooks/admin/products.d.ts +6 -4
- package/dist/hooks/admin/stats.d.ts +14 -14
- package/dist/hooks/admin/warehouses.d.ts +7 -6
- package/dist/hooks/public/brands.d.ts +1 -0
- package/dist/hooks/public/carts.d.ts +113 -112
- package/dist/hooks/public/delivery-zones.d.ts +0 -1
- package/dist/hooks/public/orders.d.ts +31 -30
- package/dist/rpc-client.d.ts +354 -330
- package/dist/rpc-types.d.ts +9 -6
- package/package.json +1 -1
package/dist/rpc-client.d.ts
CHANGED
|
@@ -35,19 +35,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
35
35
|
output: {
|
|
36
36
|
id: string;
|
|
37
37
|
brand: {
|
|
38
|
-
createdAt: string;
|
|
39
|
-
updatedAt: string;
|
|
40
|
-
deletedAt: string;
|
|
41
38
|
id: string;
|
|
42
39
|
name: string;
|
|
43
40
|
slug: string;
|
|
44
|
-
logoUrl: string
|
|
41
|
+
logoUrl: string;
|
|
45
42
|
siteUrl: string;
|
|
46
43
|
domain: string;
|
|
47
|
-
metaPixelId: string
|
|
48
|
-
tiktokPixelId: string
|
|
49
|
-
paystackPublicKey: string
|
|
50
|
-
|
|
44
|
+
metaPixelId: string;
|
|
45
|
+
tiktokPixelId: string;
|
|
46
|
+
paystackPublicKey: string;
|
|
47
|
+
freeShippingThreshold: number;
|
|
48
|
+
createdAt: string;
|
|
49
|
+
updatedAt: string;
|
|
50
|
+
deletedAt: string;
|
|
51
51
|
};
|
|
52
52
|
customerPhone: string;
|
|
53
53
|
customerEmail: string;
|
|
@@ -67,9 +67,10 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
67
67
|
createdAt: string;
|
|
68
68
|
updatedAt: string;
|
|
69
69
|
deletedAt: string;
|
|
70
|
-
brandId: string | null;
|
|
71
|
-
isActive: boolean;
|
|
72
70
|
code: string;
|
|
71
|
+
isActive: boolean;
|
|
72
|
+
brandId: string | null;
|
|
73
|
+
description: string | null;
|
|
73
74
|
minPurchase: string;
|
|
74
75
|
maxDiscount: string;
|
|
75
76
|
usageLimit: number | null;
|
|
@@ -78,7 +79,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
78
79
|
validFrom: string;
|
|
79
80
|
validUntil: string;
|
|
80
81
|
isAutoApply: boolean;
|
|
81
|
-
description: string | null;
|
|
82
82
|
category: string;
|
|
83
83
|
createdBy: string | null;
|
|
84
84
|
};
|
|
@@ -92,8 +92,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
92
92
|
createdAt: string;
|
|
93
93
|
updatedAt: string;
|
|
94
94
|
deletedAt: string;
|
|
95
|
-
brandId: string;
|
|
96
95
|
isActive: boolean;
|
|
96
|
+
brandId: string;
|
|
97
97
|
description: string | null;
|
|
98
98
|
thumbnailUrl: string | null;
|
|
99
99
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -612,19 +612,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
612
612
|
output: {
|
|
613
613
|
id: string;
|
|
614
614
|
brand: {
|
|
615
|
-
createdAt: string;
|
|
616
|
-
updatedAt: string;
|
|
617
|
-
deletedAt: string;
|
|
618
615
|
id: string;
|
|
619
616
|
name: string;
|
|
620
617
|
slug: string;
|
|
621
|
-
logoUrl: string
|
|
618
|
+
logoUrl: string;
|
|
622
619
|
siteUrl: string;
|
|
623
620
|
domain: string;
|
|
624
|
-
metaPixelId: string
|
|
625
|
-
tiktokPixelId: string
|
|
626
|
-
paystackPublicKey: string
|
|
627
|
-
|
|
621
|
+
metaPixelId: string;
|
|
622
|
+
tiktokPixelId: string;
|
|
623
|
+
paystackPublicKey: string;
|
|
624
|
+
freeShippingThreshold: number;
|
|
625
|
+
createdAt: string;
|
|
626
|
+
updatedAt: string;
|
|
627
|
+
deletedAt: string;
|
|
628
628
|
};
|
|
629
629
|
customerPhone: string;
|
|
630
630
|
customerEmail: string;
|
|
@@ -644,9 +644,10 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
644
644
|
createdAt: string;
|
|
645
645
|
updatedAt: string;
|
|
646
646
|
deletedAt: string;
|
|
647
|
-
brandId: string | null;
|
|
648
|
-
isActive: boolean;
|
|
649
647
|
code: string;
|
|
648
|
+
isActive: boolean;
|
|
649
|
+
brandId: string | null;
|
|
650
|
+
description: string | null;
|
|
650
651
|
minPurchase: string;
|
|
651
652
|
maxDiscount: string;
|
|
652
653
|
usageLimit: number | null;
|
|
@@ -655,7 +656,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
655
656
|
validFrom: string;
|
|
656
657
|
validUntil: string;
|
|
657
658
|
isAutoApply: boolean;
|
|
658
|
-
description: string | null;
|
|
659
659
|
category: string;
|
|
660
660
|
createdBy: string | null;
|
|
661
661
|
};
|
|
@@ -669,8 +669,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
669
669
|
createdAt: string;
|
|
670
670
|
updatedAt: string;
|
|
671
671
|
deletedAt: string;
|
|
672
|
-
brandId: string;
|
|
673
672
|
isActive: boolean;
|
|
673
|
+
brandId: string;
|
|
674
674
|
description: string | null;
|
|
675
675
|
thumbnailUrl: string | null;
|
|
676
676
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -1177,19 +1177,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1177
1177
|
output: {
|
|
1178
1178
|
id: string;
|
|
1179
1179
|
brand: {
|
|
1180
|
-
createdAt: string;
|
|
1181
|
-
updatedAt: string;
|
|
1182
|
-
deletedAt: string;
|
|
1183
1180
|
id: string;
|
|
1184
1181
|
name: string;
|
|
1185
1182
|
slug: string;
|
|
1186
|
-
logoUrl: string
|
|
1183
|
+
logoUrl: string;
|
|
1187
1184
|
siteUrl: string;
|
|
1188
1185
|
domain: string;
|
|
1189
|
-
metaPixelId: string
|
|
1190
|
-
tiktokPixelId: string
|
|
1191
|
-
paystackPublicKey: string
|
|
1192
|
-
|
|
1186
|
+
metaPixelId: string;
|
|
1187
|
+
tiktokPixelId: string;
|
|
1188
|
+
paystackPublicKey: string;
|
|
1189
|
+
freeShippingThreshold: number;
|
|
1190
|
+
createdAt: string;
|
|
1191
|
+
updatedAt: string;
|
|
1192
|
+
deletedAt: string;
|
|
1193
1193
|
};
|
|
1194
1194
|
customerPhone: string;
|
|
1195
1195
|
customerEmail: string;
|
|
@@ -1209,9 +1209,10 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1209
1209
|
createdAt: string;
|
|
1210
1210
|
updatedAt: string;
|
|
1211
1211
|
deletedAt: string;
|
|
1212
|
-
brandId: string | null;
|
|
1213
|
-
isActive: boolean;
|
|
1214
1212
|
code: string;
|
|
1213
|
+
isActive: boolean;
|
|
1214
|
+
brandId: string | null;
|
|
1215
|
+
description: string | null;
|
|
1215
1216
|
minPurchase: string;
|
|
1216
1217
|
maxDiscount: string;
|
|
1217
1218
|
usageLimit: number | null;
|
|
@@ -1220,7 +1221,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1220
1221
|
validFrom: string;
|
|
1221
1222
|
validUntil: string;
|
|
1222
1223
|
isAutoApply: boolean;
|
|
1223
|
-
description: string | null;
|
|
1224
1224
|
category: string;
|
|
1225
1225
|
createdBy: string | null;
|
|
1226
1226
|
};
|
|
@@ -1234,8 +1234,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1234
1234
|
createdAt: string;
|
|
1235
1235
|
updatedAt: string;
|
|
1236
1236
|
deletedAt: string;
|
|
1237
|
-
brandId: string;
|
|
1238
1237
|
isActive: boolean;
|
|
1238
|
+
brandId: string;
|
|
1239
1239
|
description: string | null;
|
|
1240
1240
|
thumbnailUrl: string | null;
|
|
1241
1241
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -1759,19 +1759,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1759
1759
|
output: {
|
|
1760
1760
|
id: string;
|
|
1761
1761
|
brand: {
|
|
1762
|
-
createdAt: string;
|
|
1763
|
-
updatedAt: string;
|
|
1764
|
-
deletedAt: string;
|
|
1765
1762
|
id: string;
|
|
1766
1763
|
name: string;
|
|
1767
1764
|
slug: string;
|
|
1768
|
-
logoUrl: string
|
|
1765
|
+
logoUrl: string;
|
|
1769
1766
|
siteUrl: string;
|
|
1770
1767
|
domain: string;
|
|
1771
|
-
metaPixelId: string
|
|
1772
|
-
tiktokPixelId: string
|
|
1773
|
-
paystackPublicKey: string
|
|
1774
|
-
|
|
1768
|
+
metaPixelId: string;
|
|
1769
|
+
tiktokPixelId: string;
|
|
1770
|
+
paystackPublicKey: string;
|
|
1771
|
+
freeShippingThreshold: number;
|
|
1772
|
+
createdAt: string;
|
|
1773
|
+
updatedAt: string;
|
|
1774
|
+
deletedAt: string;
|
|
1775
1775
|
};
|
|
1776
1776
|
customerPhone: string;
|
|
1777
1777
|
customerEmail: string;
|
|
@@ -1791,9 +1791,10 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1791
1791
|
createdAt: string;
|
|
1792
1792
|
updatedAt: string;
|
|
1793
1793
|
deletedAt: string;
|
|
1794
|
-
brandId: string | null;
|
|
1795
|
-
isActive: boolean;
|
|
1796
1794
|
code: string;
|
|
1795
|
+
isActive: boolean;
|
|
1796
|
+
brandId: string | null;
|
|
1797
|
+
description: string | null;
|
|
1797
1798
|
minPurchase: string;
|
|
1798
1799
|
maxDiscount: string;
|
|
1799
1800
|
usageLimit: number | null;
|
|
@@ -1802,7 +1803,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1802
1803
|
validFrom: string;
|
|
1803
1804
|
validUntil: string;
|
|
1804
1805
|
isAutoApply: boolean;
|
|
1805
|
-
description: string | null;
|
|
1806
1806
|
category: string;
|
|
1807
1807
|
createdBy: string | null;
|
|
1808
1808
|
};
|
|
@@ -1816,8 +1816,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1816
1816
|
createdAt: string;
|
|
1817
1817
|
updatedAt: string;
|
|
1818
1818
|
deletedAt: string;
|
|
1819
|
-
brandId: string;
|
|
1820
1819
|
isActive: boolean;
|
|
1820
|
+
brandId: string;
|
|
1821
1821
|
description: string | null;
|
|
1822
1822
|
thumbnailUrl: string | null;
|
|
1823
1823
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -2342,19 +2342,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2342
2342
|
output: {
|
|
2343
2343
|
id: string;
|
|
2344
2344
|
brand: {
|
|
2345
|
-
createdAt: string;
|
|
2346
|
-
updatedAt: string;
|
|
2347
|
-
deletedAt: string;
|
|
2348
2345
|
id: string;
|
|
2349
2346
|
name: string;
|
|
2350
2347
|
slug: string;
|
|
2351
|
-
logoUrl: string
|
|
2348
|
+
logoUrl: string;
|
|
2352
2349
|
siteUrl: string;
|
|
2353
2350
|
domain: string;
|
|
2354
|
-
metaPixelId: string
|
|
2355
|
-
tiktokPixelId: string
|
|
2356
|
-
paystackPublicKey: string
|
|
2357
|
-
|
|
2351
|
+
metaPixelId: string;
|
|
2352
|
+
tiktokPixelId: string;
|
|
2353
|
+
paystackPublicKey: string;
|
|
2354
|
+
freeShippingThreshold: number;
|
|
2355
|
+
createdAt: string;
|
|
2356
|
+
updatedAt: string;
|
|
2357
|
+
deletedAt: string;
|
|
2358
2358
|
};
|
|
2359
2359
|
customerPhone: string;
|
|
2360
2360
|
customerEmail: string;
|
|
@@ -2374,9 +2374,10 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2374
2374
|
createdAt: string;
|
|
2375
2375
|
updatedAt: string;
|
|
2376
2376
|
deletedAt: string;
|
|
2377
|
-
brandId: string | null;
|
|
2378
|
-
isActive: boolean;
|
|
2379
2377
|
code: string;
|
|
2378
|
+
isActive: boolean;
|
|
2379
|
+
brandId: string | null;
|
|
2380
|
+
description: string | null;
|
|
2380
2381
|
minPurchase: string;
|
|
2381
2382
|
maxDiscount: string;
|
|
2382
2383
|
usageLimit: number | null;
|
|
@@ -2385,7 +2386,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2385
2386
|
validFrom: string;
|
|
2386
2387
|
validUntil: string;
|
|
2387
2388
|
isAutoApply: boolean;
|
|
2388
|
-
description: string | null;
|
|
2389
2389
|
category: string;
|
|
2390
2390
|
createdBy: string | null;
|
|
2391
2391
|
};
|
|
@@ -2399,8 +2399,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2399
2399
|
createdAt: string;
|
|
2400
2400
|
updatedAt: string;
|
|
2401
2401
|
deletedAt: string;
|
|
2402
|
-
brandId: string;
|
|
2403
2402
|
isActive: boolean;
|
|
2403
|
+
brandId: string;
|
|
2404
2404
|
description: string | null;
|
|
2405
2405
|
thumbnailUrl: string | null;
|
|
2406
2406
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -2925,19 +2925,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2925
2925
|
output: {
|
|
2926
2926
|
id: string;
|
|
2927
2927
|
brand: {
|
|
2928
|
-
createdAt: string;
|
|
2929
|
-
updatedAt: string;
|
|
2930
|
-
deletedAt: string;
|
|
2931
2928
|
id: string;
|
|
2932
2929
|
name: string;
|
|
2933
2930
|
slug: string;
|
|
2934
|
-
logoUrl: string
|
|
2931
|
+
logoUrl: string;
|
|
2935
2932
|
siteUrl: string;
|
|
2936
2933
|
domain: string;
|
|
2937
|
-
metaPixelId: string
|
|
2938
|
-
tiktokPixelId: string
|
|
2939
|
-
paystackPublicKey: string
|
|
2940
|
-
|
|
2934
|
+
metaPixelId: string;
|
|
2935
|
+
tiktokPixelId: string;
|
|
2936
|
+
paystackPublicKey: string;
|
|
2937
|
+
freeShippingThreshold: number;
|
|
2938
|
+
createdAt: string;
|
|
2939
|
+
updatedAt: string;
|
|
2940
|
+
deletedAt: string;
|
|
2941
2941
|
};
|
|
2942
2942
|
customerPhone: string;
|
|
2943
2943
|
customerEmail: string;
|
|
@@ -2957,9 +2957,10 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2957
2957
|
createdAt: string;
|
|
2958
2958
|
updatedAt: string;
|
|
2959
2959
|
deletedAt: string;
|
|
2960
|
-
brandId: string | null;
|
|
2961
|
-
isActive: boolean;
|
|
2962
2960
|
code: string;
|
|
2961
|
+
isActive: boolean;
|
|
2962
|
+
brandId: string | null;
|
|
2963
|
+
description: string | null;
|
|
2963
2964
|
minPurchase: string;
|
|
2964
2965
|
maxDiscount: string;
|
|
2965
2966
|
usageLimit: number | null;
|
|
@@ -2968,7 +2969,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2968
2969
|
validFrom: string;
|
|
2969
2970
|
validUntil: string;
|
|
2970
2971
|
isAutoApply: boolean;
|
|
2971
|
-
description: string | null;
|
|
2972
2972
|
category: string;
|
|
2973
2973
|
createdBy: string | null;
|
|
2974
2974
|
};
|
|
@@ -2982,8 +2982,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2982
2982
|
createdAt: string;
|
|
2983
2983
|
updatedAt: string;
|
|
2984
2984
|
deletedAt: string;
|
|
2985
|
-
brandId: string;
|
|
2986
2985
|
isActive: boolean;
|
|
2986
|
+
brandId: string;
|
|
2987
2987
|
description: string | null;
|
|
2988
2988
|
thumbnailUrl: string | null;
|
|
2989
2989
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -3511,19 +3511,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3511
3511
|
output: {
|
|
3512
3512
|
id: string;
|
|
3513
3513
|
brand: {
|
|
3514
|
-
createdAt: string;
|
|
3515
|
-
updatedAt: string;
|
|
3516
|
-
deletedAt: string;
|
|
3517
3514
|
id: string;
|
|
3518
3515
|
name: string;
|
|
3519
3516
|
slug: string;
|
|
3520
|
-
logoUrl: string
|
|
3517
|
+
logoUrl: string;
|
|
3521
3518
|
siteUrl: string;
|
|
3522
3519
|
domain: string;
|
|
3523
|
-
metaPixelId: string
|
|
3524
|
-
tiktokPixelId: string
|
|
3525
|
-
paystackPublicKey: string
|
|
3526
|
-
|
|
3520
|
+
metaPixelId: string;
|
|
3521
|
+
tiktokPixelId: string;
|
|
3522
|
+
paystackPublicKey: string;
|
|
3523
|
+
freeShippingThreshold: number;
|
|
3524
|
+
createdAt: string;
|
|
3525
|
+
updatedAt: string;
|
|
3526
|
+
deletedAt: string;
|
|
3527
3527
|
};
|
|
3528
3528
|
customerPhone: string;
|
|
3529
3529
|
customerEmail: string;
|
|
@@ -3543,9 +3543,10 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3543
3543
|
createdAt: string;
|
|
3544
3544
|
updatedAt: string;
|
|
3545
3545
|
deletedAt: string;
|
|
3546
|
-
brandId: string | null;
|
|
3547
|
-
isActive: boolean;
|
|
3548
3546
|
code: string;
|
|
3547
|
+
isActive: boolean;
|
|
3548
|
+
brandId: string | null;
|
|
3549
|
+
description: string | null;
|
|
3549
3550
|
minPurchase: string;
|
|
3550
3551
|
maxDiscount: string;
|
|
3551
3552
|
usageLimit: number | null;
|
|
@@ -3554,7 +3555,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3554
3555
|
validFrom: string;
|
|
3555
3556
|
validUntil: string;
|
|
3556
3557
|
isAutoApply: boolean;
|
|
3557
|
-
description: string | null;
|
|
3558
3558
|
category: string;
|
|
3559
3559
|
createdBy: string | null;
|
|
3560
3560
|
};
|
|
@@ -3568,8 +3568,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3568
3568
|
createdAt: string;
|
|
3569
3569
|
updatedAt: string;
|
|
3570
3570
|
deletedAt: string;
|
|
3571
|
-
brandId: string;
|
|
3572
3571
|
isActive: boolean;
|
|
3572
|
+
brandId: string;
|
|
3573
3573
|
description: string | null;
|
|
3574
3574
|
thumbnailUrl: string | null;
|
|
3575
3575
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -4112,19 +4112,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
4112
4112
|
output: {
|
|
4113
4113
|
id: string;
|
|
4114
4114
|
brand: {
|
|
4115
|
-
createdAt: string;
|
|
4116
|
-
updatedAt: string;
|
|
4117
|
-
deletedAt: string;
|
|
4118
4115
|
id: string;
|
|
4119
4116
|
name: string;
|
|
4120
4117
|
slug: string;
|
|
4121
|
-
logoUrl: string
|
|
4118
|
+
logoUrl: string;
|
|
4122
4119
|
siteUrl: string;
|
|
4123
4120
|
domain: string;
|
|
4124
|
-
metaPixelId: string
|
|
4125
|
-
tiktokPixelId: string
|
|
4126
|
-
paystackPublicKey: string
|
|
4127
|
-
|
|
4121
|
+
metaPixelId: string;
|
|
4122
|
+
tiktokPixelId: string;
|
|
4123
|
+
paystackPublicKey: string;
|
|
4124
|
+
freeShippingThreshold: number;
|
|
4125
|
+
createdAt: string;
|
|
4126
|
+
updatedAt: string;
|
|
4127
|
+
deletedAt: string;
|
|
4128
4128
|
};
|
|
4129
4129
|
customerPhone: string;
|
|
4130
4130
|
customerEmail: string;
|
|
@@ -4144,9 +4144,10 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
4144
4144
|
createdAt: string;
|
|
4145
4145
|
updatedAt: string;
|
|
4146
4146
|
deletedAt: string;
|
|
4147
|
-
brandId: string | null;
|
|
4148
|
-
isActive: boolean;
|
|
4149
4147
|
code: string;
|
|
4148
|
+
isActive: boolean;
|
|
4149
|
+
brandId: string | null;
|
|
4150
|
+
description: string | null;
|
|
4150
4151
|
minPurchase: string;
|
|
4151
4152
|
maxDiscount: string;
|
|
4152
4153
|
usageLimit: number | null;
|
|
@@ -4155,7 +4156,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
4155
4156
|
validFrom: string;
|
|
4156
4157
|
validUntil: string;
|
|
4157
4158
|
isAutoApply: boolean;
|
|
4158
|
-
description: string | null;
|
|
4159
4159
|
category: string;
|
|
4160
4160
|
createdBy: string | null;
|
|
4161
4161
|
};
|
|
@@ -4169,8 +4169,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
4169
4169
|
createdAt: string;
|
|
4170
4170
|
updatedAt: string;
|
|
4171
4171
|
deletedAt: string;
|
|
4172
|
-
brandId: string;
|
|
4173
4172
|
isActive: boolean;
|
|
4173
|
+
brandId: string;
|
|
4174
4174
|
description: string | null;
|
|
4175
4175
|
thumbnailUrl: string | null;
|
|
4176
4176
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -4797,19 +4797,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
4797
4797
|
prospectSince: string;
|
|
4798
4798
|
lastRecoveryAttemptAt: string;
|
|
4799
4799
|
brand: {
|
|
4800
|
-
createdAt: string;
|
|
4801
|
-
updatedAt: string;
|
|
4802
|
-
deletedAt: string;
|
|
4803
4800
|
id: string;
|
|
4804
4801
|
name: string;
|
|
4805
4802
|
slug: string;
|
|
4806
|
-
logoUrl: string
|
|
4803
|
+
logoUrl: string;
|
|
4807
4804
|
siteUrl: string;
|
|
4808
4805
|
domain: string;
|
|
4809
|
-
metaPixelId: string
|
|
4810
|
-
tiktokPixelId: string
|
|
4811
|
-
paystackPublicKey: string
|
|
4812
|
-
|
|
4806
|
+
metaPixelId: string;
|
|
4807
|
+
tiktokPixelId: string;
|
|
4808
|
+
paystackPublicKey: string;
|
|
4809
|
+
freeShippingThreshold: number;
|
|
4810
|
+
createdAt: string;
|
|
4811
|
+
updatedAt: string;
|
|
4812
|
+
deletedAt: string;
|
|
4813
4813
|
};
|
|
4814
4814
|
deliveryZone: {
|
|
4815
4815
|
deliveryCost: number;
|
|
@@ -4827,6 +4827,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
4827
4827
|
};
|
|
4828
4828
|
id: string;
|
|
4829
4829
|
name: string;
|
|
4830
|
+
isActive: boolean;
|
|
4830
4831
|
brandId: string | null;
|
|
4831
4832
|
stateId: string;
|
|
4832
4833
|
allowCOD: boolean;
|
|
@@ -4835,7 +4836,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
4835
4836
|
estimatedDays: number | null;
|
|
4836
4837
|
noteTitle: string | null;
|
|
4837
4838
|
noteContent: string | null;
|
|
4838
|
-
isActive: boolean;
|
|
4839
4839
|
};
|
|
4840
4840
|
items: {
|
|
4841
4841
|
priceAtPurchase: number;
|
|
@@ -4851,8 +4851,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
4851
4851
|
id: string;
|
|
4852
4852
|
name: string;
|
|
4853
4853
|
slug: string;
|
|
4854
|
-
brandId: string;
|
|
4855
4854
|
isActive: boolean;
|
|
4855
|
+
brandId: string;
|
|
4856
4856
|
description: string | null;
|
|
4857
4857
|
thumbnailUrl: string | null;
|
|
4858
4858
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -5295,8 +5295,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
5295
5295
|
id: string;
|
|
5296
5296
|
name: string | null;
|
|
5297
5297
|
isActive: boolean;
|
|
5298
|
-
thumbnailUrl: string | null;
|
|
5299
5298
|
productId: string;
|
|
5299
|
+
thumbnailUrl: string | null;
|
|
5300
5300
|
sku: string;
|
|
5301
5301
|
compareAtPrice: string;
|
|
5302
5302
|
trackInventory: boolean;
|
|
@@ -5308,16 +5308,16 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
5308
5308
|
deletedAt: string;
|
|
5309
5309
|
id: string;
|
|
5310
5310
|
name: string;
|
|
5311
|
+
state: string | null;
|
|
5311
5312
|
isActive: boolean;
|
|
5312
5313
|
address: string | null;
|
|
5313
5314
|
city: string | null;
|
|
5314
|
-
state: string | null;
|
|
5315
5315
|
};
|
|
5316
5316
|
id: string;
|
|
5317
|
-
orderId: string;
|
|
5318
5317
|
variantId: string;
|
|
5319
|
-
warehouseId: string | null;
|
|
5320
5318
|
quantity: number;
|
|
5319
|
+
orderId: string;
|
|
5320
|
+
warehouseId: string | null;
|
|
5321
5321
|
}[];
|
|
5322
5322
|
email: string | null;
|
|
5323
5323
|
id: string;
|
|
@@ -5388,19 +5388,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
5388
5388
|
prospectSince: string;
|
|
5389
5389
|
lastRecoveryAttemptAt: string;
|
|
5390
5390
|
brand: {
|
|
5391
|
-
createdAt: string;
|
|
5392
|
-
updatedAt: string;
|
|
5393
|
-
deletedAt: string;
|
|
5394
5391
|
id: string;
|
|
5395
5392
|
name: string;
|
|
5396
5393
|
slug: string;
|
|
5397
|
-
logoUrl: string
|
|
5394
|
+
logoUrl: string;
|
|
5398
5395
|
siteUrl: string;
|
|
5399
5396
|
domain: string;
|
|
5400
|
-
metaPixelId: string
|
|
5401
|
-
tiktokPixelId: string
|
|
5402
|
-
paystackPublicKey: string
|
|
5403
|
-
|
|
5397
|
+
metaPixelId: string;
|
|
5398
|
+
tiktokPixelId: string;
|
|
5399
|
+
paystackPublicKey: string;
|
|
5400
|
+
freeShippingThreshold: number;
|
|
5401
|
+
createdAt: string;
|
|
5402
|
+
updatedAt: string;
|
|
5403
|
+
deletedAt: string;
|
|
5404
5404
|
};
|
|
5405
5405
|
deliveryZone: {
|
|
5406
5406
|
deliveryCost: number;
|
|
@@ -5418,6 +5418,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
5418
5418
|
};
|
|
5419
5419
|
id: string;
|
|
5420
5420
|
name: string;
|
|
5421
|
+
isActive: boolean;
|
|
5421
5422
|
brandId: string | null;
|
|
5422
5423
|
stateId: string;
|
|
5423
5424
|
allowCOD: boolean;
|
|
@@ -5426,7 +5427,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
5426
5427
|
estimatedDays: number | null;
|
|
5427
5428
|
noteTitle: string | null;
|
|
5428
5429
|
noteContent: string | null;
|
|
5429
|
-
isActive: boolean;
|
|
5430
5430
|
};
|
|
5431
5431
|
items: {
|
|
5432
5432
|
priceAtPurchase: number;
|
|
@@ -5442,8 +5442,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
5442
5442
|
id: string;
|
|
5443
5443
|
name: string;
|
|
5444
5444
|
slug: string;
|
|
5445
|
-
brandId: string;
|
|
5446
5445
|
isActive: boolean;
|
|
5446
|
+
brandId: string;
|
|
5447
5447
|
description: string | null;
|
|
5448
5448
|
thumbnailUrl: string | null;
|
|
5449
5449
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -5886,8 +5886,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
5886
5886
|
id: string;
|
|
5887
5887
|
name: string | null;
|
|
5888
5888
|
isActive: boolean;
|
|
5889
|
-
thumbnailUrl: string | null;
|
|
5890
5889
|
productId: string;
|
|
5890
|
+
thumbnailUrl: string | null;
|
|
5891
5891
|
sku: string;
|
|
5892
5892
|
compareAtPrice: string;
|
|
5893
5893
|
trackInventory: boolean;
|
|
@@ -5899,16 +5899,16 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
5899
5899
|
deletedAt: string;
|
|
5900
5900
|
id: string;
|
|
5901
5901
|
name: string;
|
|
5902
|
+
state: string | null;
|
|
5902
5903
|
isActive: boolean;
|
|
5903
5904
|
address: string | null;
|
|
5904
5905
|
city: string | null;
|
|
5905
|
-
state: string | null;
|
|
5906
5906
|
};
|
|
5907
5907
|
id: string;
|
|
5908
|
-
orderId: string;
|
|
5909
5908
|
variantId: string;
|
|
5910
|
-
warehouseId: string | null;
|
|
5911
5909
|
quantity: number;
|
|
5910
|
+
orderId: string;
|
|
5911
|
+
warehouseId: string | null;
|
|
5912
5912
|
}[];
|
|
5913
5913
|
email: string | null;
|
|
5914
5914
|
id: string;
|
|
@@ -6125,6 +6125,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
6125
6125
|
metaPixelId: string;
|
|
6126
6126
|
tiktokPixelId: string;
|
|
6127
6127
|
paystackPublicKey: string;
|
|
6128
|
+
freeShippingThreshold: number;
|
|
6128
6129
|
createdAt: string;
|
|
6129
6130
|
updatedAt: string;
|
|
6130
6131
|
deletedAt: string;
|
|
@@ -6443,8 +6444,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
6443
6444
|
createdAt: string;
|
|
6444
6445
|
updatedAt: string;
|
|
6445
6446
|
deletedAt: string;
|
|
6446
|
-
brandId: string;
|
|
6447
6447
|
isActive: boolean;
|
|
6448
|
+
brandId: string;
|
|
6448
6449
|
discountType: import("@prisma/client").$Enums.DiscountType;
|
|
6449
6450
|
discountValue: string;
|
|
6450
6451
|
startDate: string;
|
|
@@ -6458,8 +6459,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
6458
6459
|
createdAt: string;
|
|
6459
6460
|
updatedAt: string;
|
|
6460
6461
|
deletedAt: string;
|
|
6461
|
-
brandId: string;
|
|
6462
6462
|
isActive: boolean;
|
|
6463
|
+
brandId: string;
|
|
6463
6464
|
}[];
|
|
6464
6465
|
outputFormat: "json";
|
|
6465
6466
|
status: 200;
|
|
@@ -6535,19 +6536,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
6535
6536
|
prospectSince: string;
|
|
6536
6537
|
lastRecoveryAttemptAt: string;
|
|
6537
6538
|
brand: {
|
|
6538
|
-
createdAt: string;
|
|
6539
|
-
updatedAt: string;
|
|
6540
|
-
deletedAt: string;
|
|
6541
6539
|
id: string;
|
|
6542
6540
|
name: string;
|
|
6543
6541
|
slug: string;
|
|
6544
|
-
logoUrl: string
|
|
6542
|
+
logoUrl: string;
|
|
6545
6543
|
siteUrl: string;
|
|
6546
6544
|
domain: string;
|
|
6547
|
-
metaPixelId: string
|
|
6548
|
-
tiktokPixelId: string
|
|
6549
|
-
paystackPublicKey: string
|
|
6550
|
-
|
|
6545
|
+
metaPixelId: string;
|
|
6546
|
+
tiktokPixelId: string;
|
|
6547
|
+
paystackPublicKey: string;
|
|
6548
|
+
freeShippingThreshold: number;
|
|
6549
|
+
createdAt: string;
|
|
6550
|
+
updatedAt: string;
|
|
6551
|
+
deletedAt: string;
|
|
6551
6552
|
};
|
|
6552
6553
|
deliveryZone: {
|
|
6553
6554
|
deliveryCost: number;
|
|
@@ -6565,6 +6566,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
6565
6566
|
};
|
|
6566
6567
|
id: string;
|
|
6567
6568
|
name: string;
|
|
6569
|
+
isActive: boolean;
|
|
6568
6570
|
brandId: string | null;
|
|
6569
6571
|
stateId: string;
|
|
6570
6572
|
allowCOD: boolean;
|
|
@@ -6573,7 +6575,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
6573
6575
|
estimatedDays: number | null;
|
|
6574
6576
|
noteTitle: string | null;
|
|
6575
6577
|
noteContent: string | null;
|
|
6576
|
-
isActive: boolean;
|
|
6577
6578
|
};
|
|
6578
6579
|
items: {
|
|
6579
6580
|
priceAtPurchase: number;
|
|
@@ -6589,8 +6590,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
6589
6590
|
id: string;
|
|
6590
6591
|
name: string;
|
|
6591
6592
|
slug: string;
|
|
6592
|
-
brandId: string;
|
|
6593
6593
|
isActive: boolean;
|
|
6594
|
+
brandId: string;
|
|
6594
6595
|
description: string | null;
|
|
6595
6596
|
thumbnailUrl: string | null;
|
|
6596
6597
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -7033,8 +7034,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
7033
7034
|
id: string;
|
|
7034
7035
|
name: string | null;
|
|
7035
7036
|
isActive: boolean;
|
|
7036
|
-
thumbnailUrl: string | null;
|
|
7037
7037
|
productId: string;
|
|
7038
|
+
thumbnailUrl: string | null;
|
|
7038
7039
|
sku: string;
|
|
7039
7040
|
compareAtPrice: string;
|
|
7040
7041
|
trackInventory: boolean;
|
|
@@ -7046,16 +7047,16 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
7046
7047
|
deletedAt: string;
|
|
7047
7048
|
id: string;
|
|
7048
7049
|
name: string;
|
|
7050
|
+
state: string | null;
|
|
7049
7051
|
isActive: boolean;
|
|
7050
7052
|
address: string | null;
|
|
7051
7053
|
city: string | null;
|
|
7052
|
-
state: string | null;
|
|
7053
7054
|
};
|
|
7054
7055
|
id: string;
|
|
7055
|
-
orderId: string;
|
|
7056
7056
|
variantId: string;
|
|
7057
|
-
warehouseId: string | null;
|
|
7058
7057
|
quantity: number;
|
|
7058
|
+
orderId: string;
|
|
7059
|
+
warehouseId: string | null;
|
|
7059
7060
|
}[];
|
|
7060
7061
|
email: string | null;
|
|
7061
7062
|
id: string;
|
|
@@ -7135,19 +7136,19 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
7135
7136
|
prospectSince: string;
|
|
7136
7137
|
lastRecoveryAttemptAt: string;
|
|
7137
7138
|
brand: {
|
|
7138
|
-
createdAt: string;
|
|
7139
|
-
updatedAt: string;
|
|
7140
|
-
deletedAt: string;
|
|
7141
7139
|
id: string;
|
|
7142
7140
|
name: string;
|
|
7143
7141
|
slug: string;
|
|
7144
|
-
logoUrl: string
|
|
7142
|
+
logoUrl: string;
|
|
7145
7143
|
siteUrl: string;
|
|
7146
7144
|
domain: string;
|
|
7147
|
-
metaPixelId: string
|
|
7148
|
-
tiktokPixelId: string
|
|
7149
|
-
paystackPublicKey: string
|
|
7150
|
-
|
|
7145
|
+
metaPixelId: string;
|
|
7146
|
+
tiktokPixelId: string;
|
|
7147
|
+
paystackPublicKey: string;
|
|
7148
|
+
freeShippingThreshold: number;
|
|
7149
|
+
createdAt: string;
|
|
7150
|
+
updatedAt: string;
|
|
7151
|
+
deletedAt: string;
|
|
7151
7152
|
};
|
|
7152
7153
|
deliveryZone: {
|
|
7153
7154
|
deliveryCost: number;
|
|
@@ -7165,6 +7166,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
7165
7166
|
};
|
|
7166
7167
|
id: string;
|
|
7167
7168
|
name: string;
|
|
7169
|
+
isActive: boolean;
|
|
7168
7170
|
brandId: string | null;
|
|
7169
7171
|
stateId: string;
|
|
7170
7172
|
allowCOD: boolean;
|
|
@@ -7173,7 +7175,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
7173
7175
|
estimatedDays: number | null;
|
|
7174
7176
|
noteTitle: string | null;
|
|
7175
7177
|
noteContent: string | null;
|
|
7176
|
-
isActive: boolean;
|
|
7177
7178
|
};
|
|
7178
7179
|
items: {
|
|
7179
7180
|
priceAtPurchase: number;
|
|
@@ -7189,8 +7190,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
7189
7190
|
id: string;
|
|
7190
7191
|
name: string;
|
|
7191
7192
|
slug: string;
|
|
7192
|
-
brandId: string;
|
|
7193
7193
|
isActive: boolean;
|
|
7194
|
+
brandId: string;
|
|
7194
7195
|
description: string | null;
|
|
7195
7196
|
thumbnailUrl: string | null;
|
|
7196
7197
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -7633,8 +7634,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
7633
7634
|
id: string;
|
|
7634
7635
|
name: string | null;
|
|
7635
7636
|
isActive: boolean;
|
|
7636
|
-
thumbnailUrl: string | null;
|
|
7637
7637
|
productId: string;
|
|
7638
|
+
thumbnailUrl: string | null;
|
|
7638
7639
|
sku: string;
|
|
7639
7640
|
compareAtPrice: string;
|
|
7640
7641
|
trackInventory: boolean;
|
|
@@ -7646,16 +7647,16 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
7646
7647
|
deletedAt: string;
|
|
7647
7648
|
id: string;
|
|
7648
7649
|
name: string;
|
|
7650
|
+
state: string | null;
|
|
7649
7651
|
isActive: boolean;
|
|
7650
7652
|
address: string | null;
|
|
7651
7653
|
city: string | null;
|
|
7652
|
-
state: string | null;
|
|
7653
7654
|
};
|
|
7654
7655
|
id: string;
|
|
7655
|
-
orderId: string;
|
|
7656
7656
|
variantId: string;
|
|
7657
|
-
warehouseId: string | null;
|
|
7658
7657
|
quantity: number;
|
|
7658
|
+
orderId: string;
|
|
7659
|
+
warehouseId: string | null;
|
|
7659
7660
|
}[];
|
|
7660
7661
|
email: string | null;
|
|
7661
7662
|
id: string;
|
|
@@ -7886,6 +7887,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
7886
7887
|
metaPixelId: string;
|
|
7887
7888
|
tiktokPixelId: string;
|
|
7888
7889
|
paystackPublicKey: string;
|
|
7890
|
+
freeShippingThreshold: number;
|
|
7889
7891
|
createdAt: string;
|
|
7890
7892
|
updatedAt: string;
|
|
7891
7893
|
deletedAt: string;
|
|
@@ -8204,8 +8206,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
8204
8206
|
createdAt: string;
|
|
8205
8207
|
updatedAt: string;
|
|
8206
8208
|
deletedAt: string;
|
|
8207
|
-
brandId: string;
|
|
8208
8209
|
isActive: boolean;
|
|
8210
|
+
brandId: string;
|
|
8209
8211
|
discountType: import("@prisma/client").$Enums.DiscountType;
|
|
8210
8212
|
discountValue: string;
|
|
8211
8213
|
startDate: string;
|
|
@@ -8219,8 +8221,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
8219
8221
|
createdAt: string;
|
|
8220
8222
|
updatedAt: string;
|
|
8221
8223
|
deletedAt: string;
|
|
8222
|
-
brandId: string;
|
|
8223
8224
|
isActive: boolean;
|
|
8225
|
+
brandId: string;
|
|
8224
8226
|
}[];
|
|
8225
8227
|
outputFormat: "json";
|
|
8226
8228
|
status: 200;
|
|
@@ -8433,6 +8435,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
8433
8435
|
metaPixelId: string;
|
|
8434
8436
|
tiktokPixelId: string;
|
|
8435
8437
|
paystackPublicKey: string;
|
|
8438
|
+
freeShippingThreshold: number;
|
|
8436
8439
|
createdAt: string;
|
|
8437
8440
|
updatedAt: string;
|
|
8438
8441
|
deletedAt: string;
|
|
@@ -8751,8 +8754,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
8751
8754
|
createdAt: string;
|
|
8752
8755
|
updatedAt: string;
|
|
8753
8756
|
deletedAt: string;
|
|
8754
|
-
brandId: string;
|
|
8755
8757
|
isActive: boolean;
|
|
8758
|
+
brandId: string;
|
|
8756
8759
|
discountType: import("@prisma/client").$Enums.DiscountType;
|
|
8757
8760
|
discountValue: string;
|
|
8758
8761
|
startDate: string;
|
|
@@ -8766,8 +8769,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
8766
8769
|
createdAt: string;
|
|
8767
8770
|
updatedAt: string;
|
|
8768
8771
|
deletedAt: string;
|
|
8769
|
-
brandId: string;
|
|
8770
8772
|
isActive: boolean;
|
|
8773
|
+
brandId: string;
|
|
8771
8774
|
};
|
|
8772
8775
|
outputFormat: "json";
|
|
8773
8776
|
status: 200;
|
|
@@ -8963,6 +8966,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
8963
8966
|
metaPixelId: string;
|
|
8964
8967
|
tiktokPixelId: string;
|
|
8965
8968
|
paystackPublicKey: string;
|
|
8969
|
+
freeShippingThreshold: number;
|
|
8966
8970
|
createdAt: string;
|
|
8967
8971
|
updatedAt: string;
|
|
8968
8972
|
deletedAt: string;
|
|
@@ -9281,8 +9285,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
9281
9285
|
createdAt: string;
|
|
9282
9286
|
updatedAt: string;
|
|
9283
9287
|
deletedAt: string;
|
|
9284
|
-
brandId: string;
|
|
9285
9288
|
isActive: boolean;
|
|
9289
|
+
brandId: string;
|
|
9286
9290
|
discountType: import("@prisma/client").$Enums.DiscountType;
|
|
9287
9291
|
discountValue: string;
|
|
9288
9292
|
startDate: string;
|
|
@@ -9296,8 +9300,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
9296
9300
|
createdAt: string;
|
|
9297
9301
|
updatedAt: string;
|
|
9298
9302
|
deletedAt: string;
|
|
9299
|
-
brandId: string;
|
|
9300
9303
|
isActive: boolean;
|
|
9304
|
+
brandId: string;
|
|
9301
9305
|
}[];
|
|
9302
9306
|
outputFormat: "json";
|
|
9303
9307
|
status: 200;
|
|
@@ -9506,6 +9510,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
9506
9510
|
metaPixelId: string;
|
|
9507
9511
|
tiktokPixelId: string;
|
|
9508
9512
|
paystackPublicKey: string;
|
|
9513
|
+
freeShippingThreshold: number;
|
|
9509
9514
|
createdAt: string;
|
|
9510
9515
|
updatedAt: string;
|
|
9511
9516
|
deletedAt: string;
|
|
@@ -9824,8 +9829,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
9824
9829
|
createdAt: string;
|
|
9825
9830
|
updatedAt: string;
|
|
9826
9831
|
deletedAt: string;
|
|
9827
|
-
brandId: string;
|
|
9828
9832
|
isActive: boolean;
|
|
9833
|
+
brandId: string;
|
|
9829
9834
|
discountType: import("@prisma/client").$Enums.DiscountType;
|
|
9830
9835
|
discountValue: string;
|
|
9831
9836
|
startDate: string;
|
|
@@ -9839,8 +9844,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
9839
9844
|
createdAt: string;
|
|
9840
9845
|
updatedAt: string;
|
|
9841
9846
|
deletedAt: string;
|
|
9842
|
-
brandId: string;
|
|
9843
9847
|
isActive: boolean;
|
|
9848
|
+
brandId: string;
|
|
9844
9849
|
}[];
|
|
9845
9850
|
outputFormat: "json";
|
|
9846
9851
|
status: 200;
|
|
@@ -9886,7 +9891,6 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
9886
9891
|
id: string;
|
|
9887
9892
|
name: string;
|
|
9888
9893
|
deliveryCost: number;
|
|
9889
|
-
freeShippingThreshold: number;
|
|
9890
9894
|
allowCOD: boolean;
|
|
9891
9895
|
allowOnline: boolean;
|
|
9892
9896
|
waybillOnly: boolean;
|
|
@@ -9942,6 +9946,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
9942
9946
|
metaPixelId: string;
|
|
9943
9947
|
tiktokPixelId: string;
|
|
9944
9948
|
paystackPublicKey: string;
|
|
9949
|
+
freeShippingThreshold: string;
|
|
9945
9950
|
createdAt: string;
|
|
9946
9951
|
updatedAt: string;
|
|
9947
9952
|
};
|
|
@@ -9983,19 +9988,19 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9983
9988
|
prospectSince: string;
|
|
9984
9989
|
lastRecoveryAttemptAt: string;
|
|
9985
9990
|
brand: {
|
|
9986
|
-
createdAt: string;
|
|
9987
|
-
updatedAt: string;
|
|
9988
|
-
deletedAt: string;
|
|
9989
9991
|
id: string;
|
|
9990
9992
|
name: string;
|
|
9991
9993
|
slug: string;
|
|
9992
|
-
logoUrl: string
|
|
9994
|
+
logoUrl: string;
|
|
9993
9995
|
siteUrl: string;
|
|
9994
9996
|
domain: string;
|
|
9995
|
-
metaPixelId: string
|
|
9996
|
-
tiktokPixelId: string
|
|
9997
|
-
paystackPublicKey: string
|
|
9998
|
-
|
|
9997
|
+
metaPixelId: string;
|
|
9998
|
+
tiktokPixelId: string;
|
|
9999
|
+
paystackPublicKey: string;
|
|
10000
|
+
freeShippingThreshold: number;
|
|
10001
|
+
createdAt: string;
|
|
10002
|
+
updatedAt: string;
|
|
10003
|
+
deletedAt: string;
|
|
9999
10004
|
};
|
|
10000
10005
|
deliveryZone: {
|
|
10001
10006
|
deliveryCost: number;
|
|
@@ -10013,6 +10018,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
10013
10018
|
};
|
|
10014
10019
|
id: string;
|
|
10015
10020
|
name: string;
|
|
10021
|
+
isActive: boolean;
|
|
10016
10022
|
brandId: string | null;
|
|
10017
10023
|
stateId: string;
|
|
10018
10024
|
allowCOD: boolean;
|
|
@@ -10021,7 +10027,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
10021
10027
|
estimatedDays: number | null;
|
|
10022
10028
|
noteTitle: string | null;
|
|
10023
10029
|
noteContent: string | null;
|
|
10024
|
-
isActive: boolean;
|
|
10025
10030
|
};
|
|
10026
10031
|
items: {
|
|
10027
10032
|
priceAtPurchase: number;
|
|
@@ -10037,8 +10042,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
10037
10042
|
id: string;
|
|
10038
10043
|
name: string;
|
|
10039
10044
|
slug: string;
|
|
10040
|
-
brandId: string;
|
|
10041
10045
|
isActive: boolean;
|
|
10046
|
+
brandId: string;
|
|
10042
10047
|
description: string | null;
|
|
10043
10048
|
thumbnailUrl: string | null;
|
|
10044
10049
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -10481,8 +10486,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
10481
10486
|
id: string;
|
|
10482
10487
|
name: string | null;
|
|
10483
10488
|
isActive: boolean;
|
|
10484
|
-
thumbnailUrl: string | null;
|
|
10485
10489
|
productId: string;
|
|
10490
|
+
thumbnailUrl: string | null;
|
|
10486
10491
|
sku: string;
|
|
10487
10492
|
compareAtPrice: string;
|
|
10488
10493
|
trackInventory: boolean;
|
|
@@ -10494,16 +10499,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
10494
10499
|
deletedAt: string;
|
|
10495
10500
|
id: string;
|
|
10496
10501
|
name: string;
|
|
10502
|
+
state: string | null;
|
|
10497
10503
|
isActive: boolean;
|
|
10498
10504
|
address: string | null;
|
|
10499
10505
|
city: string | null;
|
|
10500
|
-
state: string | null;
|
|
10501
10506
|
};
|
|
10502
10507
|
id: string;
|
|
10503
|
-
orderId: string;
|
|
10504
10508
|
variantId: string;
|
|
10505
|
-
warehouseId: string | null;
|
|
10506
10509
|
quantity: number;
|
|
10510
|
+
orderId: string;
|
|
10511
|
+
warehouseId: string | null;
|
|
10507
10512
|
}[];
|
|
10508
10513
|
email: string | null;
|
|
10509
10514
|
id: string;
|
|
@@ -10565,19 +10570,19 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
10565
10570
|
prospectSince: string;
|
|
10566
10571
|
lastRecoveryAttemptAt: string;
|
|
10567
10572
|
brand: {
|
|
10568
|
-
createdAt: string;
|
|
10569
|
-
updatedAt: string;
|
|
10570
|
-
deletedAt: string;
|
|
10571
10573
|
id: string;
|
|
10572
10574
|
name: string;
|
|
10573
10575
|
slug: string;
|
|
10574
|
-
logoUrl: string
|
|
10576
|
+
logoUrl: string;
|
|
10575
10577
|
siteUrl: string;
|
|
10576
10578
|
domain: string;
|
|
10577
|
-
metaPixelId: string
|
|
10578
|
-
tiktokPixelId: string
|
|
10579
|
-
paystackPublicKey: string
|
|
10580
|
-
|
|
10579
|
+
metaPixelId: string;
|
|
10580
|
+
tiktokPixelId: string;
|
|
10581
|
+
paystackPublicKey: string;
|
|
10582
|
+
freeShippingThreshold: number;
|
|
10583
|
+
createdAt: string;
|
|
10584
|
+
updatedAt: string;
|
|
10585
|
+
deletedAt: string;
|
|
10581
10586
|
};
|
|
10582
10587
|
deliveryZone: {
|
|
10583
10588
|
deliveryCost: number;
|
|
@@ -10595,6 +10600,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
10595
10600
|
};
|
|
10596
10601
|
id: string;
|
|
10597
10602
|
name: string;
|
|
10603
|
+
isActive: boolean;
|
|
10598
10604
|
brandId: string | null;
|
|
10599
10605
|
stateId: string;
|
|
10600
10606
|
allowCOD: boolean;
|
|
@@ -10603,7 +10609,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
10603
10609
|
estimatedDays: number | null;
|
|
10604
10610
|
noteTitle: string | null;
|
|
10605
10611
|
noteContent: string | null;
|
|
10606
|
-
isActive: boolean;
|
|
10607
10612
|
};
|
|
10608
10613
|
items: {
|
|
10609
10614
|
priceAtPurchase: number;
|
|
@@ -10619,8 +10624,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
10619
10624
|
id: string;
|
|
10620
10625
|
name: string;
|
|
10621
10626
|
slug: string;
|
|
10622
|
-
brandId: string;
|
|
10623
10627
|
isActive: boolean;
|
|
10628
|
+
brandId: string;
|
|
10624
10629
|
description: string | null;
|
|
10625
10630
|
thumbnailUrl: string | null;
|
|
10626
10631
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -11063,8 +11068,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11063
11068
|
id: string;
|
|
11064
11069
|
name: string | null;
|
|
11065
11070
|
isActive: boolean;
|
|
11066
|
-
thumbnailUrl: string | null;
|
|
11067
11071
|
productId: string;
|
|
11072
|
+
thumbnailUrl: string | null;
|
|
11068
11073
|
sku: string;
|
|
11069
11074
|
compareAtPrice: string;
|
|
11070
11075
|
trackInventory: boolean;
|
|
@@ -11076,16 +11081,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11076
11081
|
deletedAt: string;
|
|
11077
11082
|
id: string;
|
|
11078
11083
|
name: string;
|
|
11084
|
+
state: string | null;
|
|
11079
11085
|
isActive: boolean;
|
|
11080
11086
|
address: string | null;
|
|
11081
11087
|
city: string | null;
|
|
11082
|
-
state: string | null;
|
|
11083
11088
|
};
|
|
11084
11089
|
id: string;
|
|
11085
|
-
orderId: string;
|
|
11086
11090
|
variantId: string;
|
|
11087
|
-
warehouseId: string | null;
|
|
11088
11091
|
quantity: number;
|
|
11092
|
+
orderId: string;
|
|
11093
|
+
warehouseId: string | null;
|
|
11089
11094
|
}[];
|
|
11090
11095
|
email: string | null;
|
|
11091
11096
|
id: string;
|
|
@@ -11149,19 +11154,19 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11149
11154
|
prospectSince: string;
|
|
11150
11155
|
lastRecoveryAttemptAt: string;
|
|
11151
11156
|
brand: {
|
|
11152
|
-
createdAt: string;
|
|
11153
|
-
updatedAt: string;
|
|
11154
|
-
deletedAt: string;
|
|
11155
11157
|
id: string;
|
|
11156
11158
|
name: string;
|
|
11157
11159
|
slug: string;
|
|
11158
|
-
logoUrl: string
|
|
11160
|
+
logoUrl: string;
|
|
11159
11161
|
siteUrl: string;
|
|
11160
11162
|
domain: string;
|
|
11161
|
-
metaPixelId: string
|
|
11162
|
-
tiktokPixelId: string
|
|
11163
|
-
paystackPublicKey: string
|
|
11164
|
-
|
|
11163
|
+
metaPixelId: string;
|
|
11164
|
+
tiktokPixelId: string;
|
|
11165
|
+
paystackPublicKey: string;
|
|
11166
|
+
freeShippingThreshold: number;
|
|
11167
|
+
createdAt: string;
|
|
11168
|
+
updatedAt: string;
|
|
11169
|
+
deletedAt: string;
|
|
11165
11170
|
};
|
|
11166
11171
|
deliveryZone: {
|
|
11167
11172
|
deliveryCost: number;
|
|
@@ -11179,6 +11184,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11179
11184
|
};
|
|
11180
11185
|
id: string;
|
|
11181
11186
|
name: string;
|
|
11187
|
+
isActive: boolean;
|
|
11182
11188
|
brandId: string | null;
|
|
11183
11189
|
stateId: string;
|
|
11184
11190
|
allowCOD: boolean;
|
|
@@ -11187,7 +11193,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11187
11193
|
estimatedDays: number | null;
|
|
11188
11194
|
noteTitle: string | null;
|
|
11189
11195
|
noteContent: string | null;
|
|
11190
|
-
isActive: boolean;
|
|
11191
11196
|
};
|
|
11192
11197
|
items: {
|
|
11193
11198
|
priceAtPurchase: number;
|
|
@@ -11203,8 +11208,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11203
11208
|
id: string;
|
|
11204
11209
|
name: string;
|
|
11205
11210
|
slug: string;
|
|
11206
|
-
brandId: string;
|
|
11207
11211
|
isActive: boolean;
|
|
11212
|
+
brandId: string;
|
|
11208
11213
|
description: string | null;
|
|
11209
11214
|
thumbnailUrl: string | null;
|
|
11210
11215
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -11647,8 +11652,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11647
11652
|
id: string;
|
|
11648
11653
|
name: string | null;
|
|
11649
11654
|
isActive: boolean;
|
|
11650
|
-
thumbnailUrl: string | null;
|
|
11651
11655
|
productId: string;
|
|
11656
|
+
thumbnailUrl: string | null;
|
|
11652
11657
|
sku: string;
|
|
11653
11658
|
compareAtPrice: string;
|
|
11654
11659
|
trackInventory: boolean;
|
|
@@ -11660,16 +11665,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11660
11665
|
deletedAt: string;
|
|
11661
11666
|
id: string;
|
|
11662
11667
|
name: string;
|
|
11668
|
+
state: string | null;
|
|
11663
11669
|
isActive: boolean;
|
|
11664
11670
|
address: string | null;
|
|
11665
11671
|
city: string | null;
|
|
11666
|
-
state: string | null;
|
|
11667
11672
|
};
|
|
11668
11673
|
id: string;
|
|
11669
|
-
orderId: string;
|
|
11670
11674
|
variantId: string;
|
|
11671
|
-
warehouseId: string | null;
|
|
11672
11675
|
quantity: number;
|
|
11676
|
+
orderId: string;
|
|
11677
|
+
warehouseId: string | null;
|
|
11673
11678
|
}[];
|
|
11674
11679
|
email: string | null;
|
|
11675
11680
|
id: string;
|
|
@@ -11742,19 +11747,19 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11742
11747
|
prospectSince: string;
|
|
11743
11748
|
lastRecoveryAttemptAt: string;
|
|
11744
11749
|
brand: {
|
|
11745
|
-
createdAt: string;
|
|
11746
|
-
updatedAt: string;
|
|
11747
|
-
deletedAt: string;
|
|
11748
11750
|
id: string;
|
|
11749
11751
|
name: string;
|
|
11750
11752
|
slug: string;
|
|
11751
|
-
logoUrl: string
|
|
11753
|
+
logoUrl: string;
|
|
11752
11754
|
siteUrl: string;
|
|
11753
11755
|
domain: string;
|
|
11754
|
-
metaPixelId: string
|
|
11755
|
-
tiktokPixelId: string
|
|
11756
|
-
paystackPublicKey: string
|
|
11757
|
-
|
|
11756
|
+
metaPixelId: string;
|
|
11757
|
+
tiktokPixelId: string;
|
|
11758
|
+
paystackPublicKey: string;
|
|
11759
|
+
freeShippingThreshold: number;
|
|
11760
|
+
createdAt: string;
|
|
11761
|
+
updatedAt: string;
|
|
11762
|
+
deletedAt: string;
|
|
11758
11763
|
};
|
|
11759
11764
|
deliveryZone: {
|
|
11760
11765
|
deliveryCost: number;
|
|
@@ -11772,6 +11777,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11772
11777
|
};
|
|
11773
11778
|
id: string;
|
|
11774
11779
|
name: string;
|
|
11780
|
+
isActive: boolean;
|
|
11775
11781
|
brandId: string | null;
|
|
11776
11782
|
stateId: string;
|
|
11777
11783
|
allowCOD: boolean;
|
|
@@ -11780,7 +11786,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11780
11786
|
estimatedDays: number | null;
|
|
11781
11787
|
noteTitle: string | null;
|
|
11782
11788
|
noteContent: string | null;
|
|
11783
|
-
isActive: boolean;
|
|
11784
11789
|
};
|
|
11785
11790
|
items: {
|
|
11786
11791
|
priceAtPurchase: number;
|
|
@@ -11796,8 +11801,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
11796
11801
|
id: string;
|
|
11797
11802
|
name: string;
|
|
11798
11803
|
slug: string;
|
|
11799
|
-
brandId: string;
|
|
11800
11804
|
isActive: boolean;
|
|
11805
|
+
brandId: string;
|
|
11801
11806
|
description: string | null;
|
|
11802
11807
|
thumbnailUrl: string | null;
|
|
11803
11808
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -12240,8 +12245,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
12240
12245
|
id: string;
|
|
12241
12246
|
name: string | null;
|
|
12242
12247
|
isActive: boolean;
|
|
12243
|
-
thumbnailUrl: string | null;
|
|
12244
12248
|
productId: string;
|
|
12249
|
+
thumbnailUrl: string | null;
|
|
12245
12250
|
sku: string;
|
|
12246
12251
|
compareAtPrice: string;
|
|
12247
12252
|
trackInventory: boolean;
|
|
@@ -12253,16 +12258,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
12253
12258
|
deletedAt: string;
|
|
12254
12259
|
id: string;
|
|
12255
12260
|
name: string;
|
|
12261
|
+
state: string | null;
|
|
12256
12262
|
isActive: boolean;
|
|
12257
12263
|
address: string | null;
|
|
12258
12264
|
city: string | null;
|
|
12259
|
-
state: string | null;
|
|
12260
12265
|
};
|
|
12261
12266
|
id: string;
|
|
12262
|
-
orderId: string;
|
|
12263
12267
|
variantId: string;
|
|
12264
|
-
warehouseId: string | null;
|
|
12265
12268
|
quantity: number;
|
|
12269
|
+
orderId: string;
|
|
12270
|
+
warehouseId: string | null;
|
|
12266
12271
|
}[];
|
|
12267
12272
|
email: string | null;
|
|
12268
12273
|
id: string;
|
|
@@ -12320,6 +12325,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
12320
12325
|
tiktokPixelId: string | null;
|
|
12321
12326
|
paystackPublicKey: string | null;
|
|
12322
12327
|
paystackSecretKey: string | null;
|
|
12328
|
+
freeShippingThreshold: string;
|
|
12323
12329
|
createdAt: string;
|
|
12324
12330
|
updatedAt: string;
|
|
12325
12331
|
deletedAt: string;
|
|
@@ -12335,20 +12341,20 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
12335
12341
|
};
|
|
12336
12342
|
id: string;
|
|
12337
12343
|
name: string;
|
|
12344
|
+
freeShippingThreshold: string;
|
|
12338
12345
|
createdAt: string;
|
|
12339
12346
|
updatedAt: string;
|
|
12340
12347
|
deletedAt: string;
|
|
12348
|
+
isActive: boolean;
|
|
12341
12349
|
brandId: string | null;
|
|
12342
12350
|
stateId: string;
|
|
12343
12351
|
deliveryCost: string;
|
|
12344
|
-
freeShippingThreshold: string;
|
|
12345
12352
|
allowCOD: boolean;
|
|
12346
12353
|
allowOnline: boolean;
|
|
12347
12354
|
waybillOnly: boolean;
|
|
12348
12355
|
estimatedDays: number | null;
|
|
12349
12356
|
noteTitle: string | null;
|
|
12350
12357
|
noteContent: string | null;
|
|
12351
|
-
isActive: boolean;
|
|
12352
12358
|
};
|
|
12353
12359
|
items: {
|
|
12354
12360
|
warehouse: {
|
|
@@ -12357,10 +12363,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
12357
12363
|
createdAt: string;
|
|
12358
12364
|
updatedAt: string;
|
|
12359
12365
|
deletedAt: string;
|
|
12366
|
+
state: string | null;
|
|
12360
12367
|
isActive: boolean;
|
|
12361
12368
|
address: string | null;
|
|
12362
12369
|
city: string | null;
|
|
12363
|
-
state: string | null;
|
|
12364
12370
|
};
|
|
12365
12371
|
variant: {
|
|
12366
12372
|
product: {
|
|
@@ -12370,8 +12376,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
12370
12376
|
createdAt: string;
|
|
12371
12377
|
updatedAt: string;
|
|
12372
12378
|
deletedAt: string;
|
|
12373
|
-
brandId: string;
|
|
12374
12379
|
isActive: boolean;
|
|
12380
|
+
brandId: string;
|
|
12375
12381
|
description: string | null;
|
|
12376
12382
|
thumbnailUrl: string | null;
|
|
12377
12383
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -12817,8 +12823,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
12817
12823
|
updatedAt: string;
|
|
12818
12824
|
deletedAt: string;
|
|
12819
12825
|
isActive: boolean;
|
|
12820
|
-
thumbnailUrl: string | null;
|
|
12821
12826
|
productId: string;
|
|
12827
|
+
thumbnailUrl: string | null;
|
|
12822
12828
|
sku: string;
|
|
12823
12829
|
price: string;
|
|
12824
12830
|
compareAtPrice: string;
|
|
@@ -12826,10 +12832,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
12826
12832
|
lowStockThreshold: number | null;
|
|
12827
12833
|
};
|
|
12828
12834
|
id: string;
|
|
12829
|
-
orderId: string;
|
|
12830
12835
|
variantId: string;
|
|
12831
|
-
warehouseId: string | null;
|
|
12832
12836
|
quantity: number;
|
|
12837
|
+
orderId: string;
|
|
12838
|
+
warehouseId: string | null;
|
|
12833
12839
|
priceAtPurchase: string;
|
|
12834
12840
|
}[];
|
|
12835
12841
|
notes: {
|
|
@@ -13006,6 +13012,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13006
13012
|
recoveryDiscountCodeId: string | null;
|
|
13007
13013
|
wasRecovered: boolean;
|
|
13008
13014
|
estimatedDays: number | null;
|
|
13015
|
+
discountAmount: string;
|
|
13009
13016
|
orderNumber: number;
|
|
13010
13017
|
firstName: string;
|
|
13011
13018
|
lastName: string;
|
|
@@ -13015,7 +13022,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13015
13022
|
deliveryCharge: string;
|
|
13016
13023
|
totalPrice: string;
|
|
13017
13024
|
discountCodeId: string | null;
|
|
13018
|
-
discountAmount: string;
|
|
13019
13025
|
paymentMethod: import("@prisma/client").$Enums.PaymentMethod;
|
|
13020
13026
|
paystackReference: string | null;
|
|
13021
13027
|
status: import("@prisma/client").$Enums.OrderStatus;
|
|
@@ -13082,19 +13088,19 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13082
13088
|
prospectSince: string;
|
|
13083
13089
|
lastRecoveryAttemptAt: string;
|
|
13084
13090
|
brand: {
|
|
13085
|
-
createdAt: string;
|
|
13086
|
-
updatedAt: string;
|
|
13087
|
-
deletedAt: string;
|
|
13088
13091
|
id: string;
|
|
13089
13092
|
name: string;
|
|
13090
13093
|
slug: string;
|
|
13091
|
-
logoUrl: string
|
|
13094
|
+
logoUrl: string;
|
|
13092
13095
|
siteUrl: string;
|
|
13093
13096
|
domain: string;
|
|
13094
|
-
metaPixelId: string
|
|
13095
|
-
tiktokPixelId: string
|
|
13096
|
-
paystackPublicKey: string
|
|
13097
|
-
|
|
13097
|
+
metaPixelId: string;
|
|
13098
|
+
tiktokPixelId: string;
|
|
13099
|
+
paystackPublicKey: string;
|
|
13100
|
+
freeShippingThreshold: number;
|
|
13101
|
+
createdAt: string;
|
|
13102
|
+
updatedAt: string;
|
|
13103
|
+
deletedAt: string;
|
|
13098
13104
|
};
|
|
13099
13105
|
deliveryZone: {
|
|
13100
13106
|
deliveryCost: number;
|
|
@@ -13112,6 +13118,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13112
13118
|
};
|
|
13113
13119
|
id: string;
|
|
13114
13120
|
name: string;
|
|
13121
|
+
isActive: boolean;
|
|
13115
13122
|
brandId: string | null;
|
|
13116
13123
|
stateId: string;
|
|
13117
13124
|
allowCOD: boolean;
|
|
@@ -13120,7 +13127,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13120
13127
|
estimatedDays: number | null;
|
|
13121
13128
|
noteTitle: string | null;
|
|
13122
13129
|
noteContent: string | null;
|
|
13123
|
-
isActive: boolean;
|
|
13124
13130
|
};
|
|
13125
13131
|
items: {
|
|
13126
13132
|
priceAtPurchase: number;
|
|
@@ -13136,8 +13142,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13136
13142
|
id: string;
|
|
13137
13143
|
name: string;
|
|
13138
13144
|
slug: string;
|
|
13139
|
-
brandId: string;
|
|
13140
13145
|
isActive: boolean;
|
|
13146
|
+
brandId: string;
|
|
13141
13147
|
description: string | null;
|
|
13142
13148
|
thumbnailUrl: string | null;
|
|
13143
13149
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -13580,8 +13586,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13580
13586
|
id: string;
|
|
13581
13587
|
name: string | null;
|
|
13582
13588
|
isActive: boolean;
|
|
13583
|
-
thumbnailUrl: string | null;
|
|
13584
13589
|
productId: string;
|
|
13590
|
+
thumbnailUrl: string | null;
|
|
13585
13591
|
sku: string;
|
|
13586
13592
|
compareAtPrice: string;
|
|
13587
13593
|
trackInventory: boolean;
|
|
@@ -13593,16 +13599,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13593
13599
|
deletedAt: string;
|
|
13594
13600
|
id: string;
|
|
13595
13601
|
name: string;
|
|
13602
|
+
state: string | null;
|
|
13596
13603
|
isActive: boolean;
|
|
13597
13604
|
address: string | null;
|
|
13598
13605
|
city: string | null;
|
|
13599
|
-
state: string | null;
|
|
13600
13606
|
};
|
|
13601
13607
|
id: string;
|
|
13602
|
-
orderId: string;
|
|
13603
13608
|
variantId: string;
|
|
13604
|
-
warehouseId: string | null;
|
|
13605
13609
|
quantity: number;
|
|
13610
|
+
orderId: string;
|
|
13611
|
+
warehouseId: string | null;
|
|
13606
13612
|
}[];
|
|
13607
13613
|
email: string | null;
|
|
13608
13614
|
id: string;
|
|
@@ -13893,6 +13899,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13893
13899
|
tiktokPixelId: string | null;
|
|
13894
13900
|
paystackPublicKey: string | null;
|
|
13895
13901
|
paystackSecretKey: string | null;
|
|
13902
|
+
freeShippingThreshold: string;
|
|
13896
13903
|
createdAt: string;
|
|
13897
13904
|
updatedAt: string;
|
|
13898
13905
|
deletedAt: string;
|
|
@@ -13924,6 +13931,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13924
13931
|
tiktokPixelId: string | null;
|
|
13925
13932
|
paystackPublicKey: string | null;
|
|
13926
13933
|
paystackSecretKey: string | null;
|
|
13934
|
+
freeShippingThreshold: string;
|
|
13927
13935
|
createdAt: string;
|
|
13928
13936
|
updatedAt: string;
|
|
13929
13937
|
deletedAt: string;
|
|
@@ -13975,6 +13983,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
13975
13983
|
tiktokPixelId: string | null;
|
|
13976
13984
|
paystackPublicKey: string | null;
|
|
13977
13985
|
paystackSecretKey: string | null;
|
|
13986
|
+
freeShippingThreshold: string;
|
|
13978
13987
|
createdAt: string;
|
|
13979
13988
|
updatedAt: string;
|
|
13980
13989
|
deletedAt: string;
|
|
@@ -14014,6 +14023,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
14014
14023
|
tiktokPixelId: string | null;
|
|
14015
14024
|
paystackPublicKey: string | null;
|
|
14016
14025
|
paystackSecretKey: string | null;
|
|
14026
|
+
freeShippingThreshold: string;
|
|
14017
14027
|
createdAt: string;
|
|
14018
14028
|
updatedAt: string;
|
|
14019
14029
|
deletedAt: string;
|
|
@@ -14226,6 +14236,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
14226
14236
|
metaPixelId: string;
|
|
14227
14237
|
tiktokPixelId: string;
|
|
14228
14238
|
paystackPublicKey: string;
|
|
14239
|
+
freeShippingThreshold: number;
|
|
14229
14240
|
createdAt: string;
|
|
14230
14241
|
updatedAt: string;
|
|
14231
14242
|
deletedAt: string;
|
|
@@ -14544,8 +14555,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
14544
14555
|
createdAt: string;
|
|
14545
14556
|
updatedAt: string;
|
|
14546
14557
|
deletedAt: string;
|
|
14547
|
-
brandId: string;
|
|
14548
14558
|
isActive: boolean;
|
|
14559
|
+
brandId: string;
|
|
14549
14560
|
discountType: import("@prisma/client").$Enums.DiscountType;
|
|
14550
14561
|
discountValue: string;
|
|
14551
14562
|
startDate: string;
|
|
@@ -14559,8 +14570,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
14559
14570
|
createdAt: string;
|
|
14560
14571
|
updatedAt: string;
|
|
14561
14572
|
deletedAt: string;
|
|
14562
|
-
brandId: string;
|
|
14563
14573
|
isActive: boolean;
|
|
14574
|
+
brandId: string;
|
|
14564
14575
|
}[];
|
|
14565
14576
|
outputFormat: "json";
|
|
14566
14577
|
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
@@ -14743,6 +14754,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
14743
14754
|
metaPixelId: string;
|
|
14744
14755
|
tiktokPixelId: string;
|
|
14745
14756
|
paystackPublicKey: string;
|
|
14757
|
+
freeShippingThreshold: number;
|
|
14746
14758
|
createdAt: string;
|
|
14747
14759
|
updatedAt: string;
|
|
14748
14760
|
deletedAt: string;
|
|
@@ -15061,8 +15073,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
15061
15073
|
createdAt: string;
|
|
15062
15074
|
updatedAt: string;
|
|
15063
15075
|
deletedAt: string;
|
|
15064
|
-
brandId: string;
|
|
15065
15076
|
isActive: boolean;
|
|
15077
|
+
brandId: string;
|
|
15066
15078
|
discountType: import("@prisma/client").$Enums.DiscountType;
|
|
15067
15079
|
discountValue: string;
|
|
15068
15080
|
startDate: string;
|
|
@@ -15076,8 +15088,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
15076
15088
|
createdAt: string;
|
|
15077
15089
|
updatedAt: string;
|
|
15078
15090
|
deletedAt: string;
|
|
15079
|
-
brandId: string;
|
|
15080
15091
|
isActive: boolean;
|
|
15092
|
+
brandId: string;
|
|
15081
15093
|
};
|
|
15082
15094
|
outputFormat: "json";
|
|
15083
15095
|
status: 201;
|
|
@@ -15281,6 +15293,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
15281
15293
|
metaPixelId: string;
|
|
15282
15294
|
tiktokPixelId: string;
|
|
15283
15295
|
paystackPublicKey: string;
|
|
15296
|
+
freeShippingThreshold: number;
|
|
15284
15297
|
createdAt: string;
|
|
15285
15298
|
updatedAt: string;
|
|
15286
15299
|
deletedAt: string;
|
|
@@ -15599,8 +15612,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
15599
15612
|
createdAt: string;
|
|
15600
15613
|
updatedAt: string;
|
|
15601
15614
|
deletedAt: string;
|
|
15602
|
-
brandId: string;
|
|
15603
15615
|
isActive: boolean;
|
|
15616
|
+
brandId: string;
|
|
15604
15617
|
discountType: import("@prisma/client").$Enums.DiscountType;
|
|
15605
15618
|
discountValue: string;
|
|
15606
15619
|
startDate: string;
|
|
@@ -15614,8 +15627,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
15614
15627
|
createdAt: string;
|
|
15615
15628
|
updatedAt: string;
|
|
15616
15629
|
deletedAt: string;
|
|
15617
|
-
brandId: string;
|
|
15618
15630
|
isActive: boolean;
|
|
15631
|
+
brandId: string;
|
|
15619
15632
|
};
|
|
15620
15633
|
outputFormat: "json";
|
|
15621
15634
|
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
@@ -15806,6 +15819,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
15806
15819
|
metaPixelId: string;
|
|
15807
15820
|
tiktokPixelId: string;
|
|
15808
15821
|
paystackPublicKey: string;
|
|
15822
|
+
freeShippingThreshold: number;
|
|
15809
15823
|
createdAt: string;
|
|
15810
15824
|
updatedAt: string;
|
|
15811
15825
|
deletedAt: string;
|
|
@@ -16124,8 +16138,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
16124
16138
|
createdAt: string;
|
|
16125
16139
|
updatedAt: string;
|
|
16126
16140
|
deletedAt: string;
|
|
16127
|
-
brandId: string;
|
|
16128
16141
|
isActive: boolean;
|
|
16142
|
+
brandId: string;
|
|
16129
16143
|
discountType: import("@prisma/client").$Enums.DiscountType;
|
|
16130
16144
|
discountValue: string;
|
|
16131
16145
|
startDate: string;
|
|
@@ -16139,8 +16153,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
16139
16153
|
createdAt: string;
|
|
16140
16154
|
updatedAt: string;
|
|
16141
16155
|
deletedAt: string;
|
|
16142
|
-
brandId: string;
|
|
16143
16156
|
isActive: boolean;
|
|
16157
|
+
brandId: string;
|
|
16144
16158
|
};
|
|
16145
16159
|
outputFormat: "json";
|
|
16146
16160
|
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
@@ -16452,10 +16466,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
16452
16466
|
createdAt: string;
|
|
16453
16467
|
updatedAt: string;
|
|
16454
16468
|
deletedAt: string;
|
|
16469
|
+
state: string | null;
|
|
16455
16470
|
isActive: boolean;
|
|
16456
16471
|
address: string | null;
|
|
16457
16472
|
city: string | null;
|
|
16458
|
-
state: string | null;
|
|
16459
16473
|
}[];
|
|
16460
16474
|
outputFormat: "json";
|
|
16461
16475
|
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
@@ -16479,10 +16493,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
16479
16493
|
createdAt: string;
|
|
16480
16494
|
updatedAt: string;
|
|
16481
16495
|
deletedAt: string;
|
|
16496
|
+
state: string | null;
|
|
16482
16497
|
isActive: boolean;
|
|
16483
16498
|
address: string | null;
|
|
16484
16499
|
city: string | null;
|
|
16485
|
-
state: string | null;
|
|
16486
16500
|
};
|
|
16487
16501
|
outputFormat: "json";
|
|
16488
16502
|
status: 201;
|
|
@@ -16512,10 +16526,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
16512
16526
|
createdAt: string;
|
|
16513
16527
|
updatedAt: string;
|
|
16514
16528
|
deletedAt: string;
|
|
16529
|
+
state: string | null;
|
|
16515
16530
|
isActive: boolean;
|
|
16516
16531
|
address: string | null;
|
|
16517
16532
|
city: string | null;
|
|
16518
|
-
state: string | null;
|
|
16519
16533
|
};
|
|
16520
16534
|
outputFormat: "json";
|
|
16521
16535
|
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
@@ -16594,6 +16608,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
16594
16608
|
tiktokPixelId: string | null;
|
|
16595
16609
|
paystackPublicKey: string | null;
|
|
16596
16610
|
paystackSecretKey: string | null;
|
|
16611
|
+
freeShippingThreshold: string;
|
|
16597
16612
|
createdAt: string;
|
|
16598
16613
|
updatedAt: string;
|
|
16599
16614
|
deletedAt: string;
|
|
@@ -16604,8 +16619,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
16604
16619
|
createdAt: string;
|
|
16605
16620
|
updatedAt: string;
|
|
16606
16621
|
deletedAt: string;
|
|
16607
|
-
brandId: string;
|
|
16608
16622
|
isActive: boolean;
|
|
16623
|
+
brandId: string;
|
|
16609
16624
|
description: string | null;
|
|
16610
16625
|
thumbnailUrl: string | null;
|
|
16611
16626
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -17051,8 +17066,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
17051
17066
|
updatedAt: string;
|
|
17052
17067
|
deletedAt: string;
|
|
17053
17068
|
isActive: boolean;
|
|
17054
|
-
thumbnailUrl: string | null;
|
|
17055
17069
|
productId: string;
|
|
17070
|
+
thumbnailUrl: string | null;
|
|
17056
17071
|
sku: string;
|
|
17057
17072
|
price: string;
|
|
17058
17073
|
compareAtPrice: string;
|
|
@@ -17070,10 +17085,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
17070
17085
|
createdAt: string;
|
|
17071
17086
|
updatedAt: string;
|
|
17072
17087
|
deletedAt: string;
|
|
17088
|
+
state: string | null;
|
|
17073
17089
|
isActive: boolean;
|
|
17074
17090
|
address: string | null;
|
|
17075
17091
|
city: string | null;
|
|
17076
|
-
state: string | null;
|
|
17077
17092
|
};
|
|
17078
17093
|
inventory: {
|
|
17079
17094
|
variantId: string;
|
|
@@ -17418,19 +17433,19 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
17418
17433
|
prospectSince: string;
|
|
17419
17434
|
lastRecoveryAttemptAt: string;
|
|
17420
17435
|
brand: {
|
|
17421
|
-
createdAt: string;
|
|
17422
|
-
updatedAt: string;
|
|
17423
|
-
deletedAt: string;
|
|
17424
17436
|
id: string;
|
|
17425
17437
|
name: string;
|
|
17426
17438
|
slug: string;
|
|
17427
|
-
logoUrl: string
|
|
17439
|
+
logoUrl: string;
|
|
17428
17440
|
siteUrl: string;
|
|
17429
17441
|
domain: string;
|
|
17430
|
-
metaPixelId: string
|
|
17431
|
-
tiktokPixelId: string
|
|
17432
|
-
paystackPublicKey: string
|
|
17433
|
-
|
|
17442
|
+
metaPixelId: string;
|
|
17443
|
+
tiktokPixelId: string;
|
|
17444
|
+
paystackPublicKey: string;
|
|
17445
|
+
freeShippingThreshold: number;
|
|
17446
|
+
createdAt: string;
|
|
17447
|
+
updatedAt: string;
|
|
17448
|
+
deletedAt: string;
|
|
17434
17449
|
};
|
|
17435
17450
|
deliveryZone: {
|
|
17436
17451
|
deliveryCost: number;
|
|
@@ -17448,6 +17463,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
17448
17463
|
};
|
|
17449
17464
|
id: string;
|
|
17450
17465
|
name: string;
|
|
17466
|
+
isActive: boolean;
|
|
17451
17467
|
brandId: string | null;
|
|
17452
17468
|
stateId: string;
|
|
17453
17469
|
allowCOD: boolean;
|
|
@@ -17456,7 +17472,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
17456
17472
|
estimatedDays: number | null;
|
|
17457
17473
|
noteTitle: string | null;
|
|
17458
17474
|
noteContent: string | null;
|
|
17459
|
-
isActive: boolean;
|
|
17460
17475
|
};
|
|
17461
17476
|
items: {
|
|
17462
17477
|
priceAtPurchase: number;
|
|
@@ -17472,8 +17487,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
17472
17487
|
id: string;
|
|
17473
17488
|
name: string;
|
|
17474
17489
|
slug: string;
|
|
17475
|
-
brandId: string;
|
|
17476
17490
|
isActive: boolean;
|
|
17491
|
+
brandId: string;
|
|
17477
17492
|
description: string | null;
|
|
17478
17493
|
thumbnailUrl: string | null;
|
|
17479
17494
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -17916,8 +17931,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
17916
17931
|
id: string;
|
|
17917
17932
|
name: string | null;
|
|
17918
17933
|
isActive: boolean;
|
|
17919
|
-
thumbnailUrl: string | null;
|
|
17920
17934
|
productId: string;
|
|
17935
|
+
thumbnailUrl: string | null;
|
|
17921
17936
|
sku: string;
|
|
17922
17937
|
compareAtPrice: string;
|
|
17923
17938
|
trackInventory: boolean;
|
|
@@ -17929,16 +17944,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
17929
17944
|
deletedAt: string;
|
|
17930
17945
|
id: string;
|
|
17931
17946
|
name: string;
|
|
17947
|
+
state: string | null;
|
|
17932
17948
|
isActive: boolean;
|
|
17933
17949
|
address: string | null;
|
|
17934
17950
|
city: string | null;
|
|
17935
|
-
state: string | null;
|
|
17936
17951
|
};
|
|
17937
17952
|
id: string;
|
|
17938
|
-
orderId: string;
|
|
17939
17953
|
variantId: string;
|
|
17940
|
-
warehouseId: string | null;
|
|
17941
17954
|
quantity: number;
|
|
17955
|
+
orderId: string;
|
|
17956
|
+
warehouseId: string | null;
|
|
17942
17957
|
}[];
|
|
17943
17958
|
email: string | null;
|
|
17944
17959
|
id: string;
|
|
@@ -18014,19 +18029,19 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
18014
18029
|
prospectSince: string;
|
|
18015
18030
|
lastRecoveryAttemptAt: string;
|
|
18016
18031
|
brand: {
|
|
18017
|
-
createdAt: string;
|
|
18018
|
-
updatedAt: string;
|
|
18019
|
-
deletedAt: string;
|
|
18020
18032
|
id: string;
|
|
18021
18033
|
name: string;
|
|
18022
18034
|
slug: string;
|
|
18023
|
-
logoUrl: string
|
|
18035
|
+
logoUrl: string;
|
|
18024
18036
|
siteUrl: string;
|
|
18025
18037
|
domain: string;
|
|
18026
|
-
metaPixelId: string
|
|
18027
|
-
tiktokPixelId: string
|
|
18028
|
-
paystackPublicKey: string
|
|
18029
|
-
|
|
18038
|
+
metaPixelId: string;
|
|
18039
|
+
tiktokPixelId: string;
|
|
18040
|
+
paystackPublicKey: string;
|
|
18041
|
+
freeShippingThreshold: number;
|
|
18042
|
+
createdAt: string;
|
|
18043
|
+
updatedAt: string;
|
|
18044
|
+
deletedAt: string;
|
|
18030
18045
|
};
|
|
18031
18046
|
deliveryZone: {
|
|
18032
18047
|
deliveryCost: number;
|
|
@@ -18044,6 +18059,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
18044
18059
|
};
|
|
18045
18060
|
id: string;
|
|
18046
18061
|
name: string;
|
|
18062
|
+
isActive: boolean;
|
|
18047
18063
|
brandId: string | null;
|
|
18048
18064
|
stateId: string;
|
|
18049
18065
|
allowCOD: boolean;
|
|
@@ -18052,7 +18068,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
18052
18068
|
estimatedDays: number | null;
|
|
18053
18069
|
noteTitle: string | null;
|
|
18054
18070
|
noteContent: string | null;
|
|
18055
|
-
isActive: boolean;
|
|
18056
18071
|
};
|
|
18057
18072
|
items: {
|
|
18058
18073
|
priceAtPurchase: number;
|
|
@@ -18068,8 +18083,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
18068
18083
|
id: string;
|
|
18069
18084
|
name: string;
|
|
18070
18085
|
slug: string;
|
|
18071
|
-
brandId: string;
|
|
18072
18086
|
isActive: boolean;
|
|
18087
|
+
brandId: string;
|
|
18073
18088
|
description: string | null;
|
|
18074
18089
|
thumbnailUrl: string | null;
|
|
18075
18090
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -18512,8 +18527,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
18512
18527
|
id: string;
|
|
18513
18528
|
name: string | null;
|
|
18514
18529
|
isActive: boolean;
|
|
18515
|
-
thumbnailUrl: string | null;
|
|
18516
18530
|
productId: string;
|
|
18531
|
+
thumbnailUrl: string | null;
|
|
18517
18532
|
sku: string;
|
|
18518
18533
|
compareAtPrice: string;
|
|
18519
18534
|
trackInventory: boolean;
|
|
@@ -18525,16 +18540,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
18525
18540
|
deletedAt: string;
|
|
18526
18541
|
id: string;
|
|
18527
18542
|
name: string;
|
|
18543
|
+
state: string | null;
|
|
18528
18544
|
isActive: boolean;
|
|
18529
18545
|
address: string | null;
|
|
18530
18546
|
city: string | null;
|
|
18531
|
-
state: string | null;
|
|
18532
18547
|
};
|
|
18533
18548
|
id: string;
|
|
18534
|
-
orderId: string;
|
|
18535
18549
|
variantId: string;
|
|
18536
|
-
warehouseId: string | null;
|
|
18537
18550
|
quantity: number;
|
|
18551
|
+
orderId: string;
|
|
18552
|
+
warehouseId: string | null;
|
|
18538
18553
|
}[];
|
|
18539
18554
|
email: string | null;
|
|
18540
18555
|
id: string;
|
|
@@ -18582,19 +18597,19 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
18582
18597
|
carts: {
|
|
18583
18598
|
id: string;
|
|
18584
18599
|
brand: {
|
|
18585
|
-
createdAt: string;
|
|
18586
|
-
updatedAt: string;
|
|
18587
|
-
deletedAt: string;
|
|
18588
18600
|
id: string;
|
|
18589
18601
|
name: string;
|
|
18590
18602
|
slug: string;
|
|
18591
|
-
logoUrl: string
|
|
18603
|
+
logoUrl: string;
|
|
18592
18604
|
siteUrl: string;
|
|
18593
18605
|
domain: string;
|
|
18594
|
-
metaPixelId: string
|
|
18595
|
-
tiktokPixelId: string
|
|
18596
|
-
paystackPublicKey: string
|
|
18597
|
-
|
|
18606
|
+
metaPixelId: string;
|
|
18607
|
+
tiktokPixelId: string;
|
|
18608
|
+
paystackPublicKey: string;
|
|
18609
|
+
freeShippingThreshold: number;
|
|
18610
|
+
createdAt: string;
|
|
18611
|
+
updatedAt: string;
|
|
18612
|
+
deletedAt: string;
|
|
18598
18613
|
};
|
|
18599
18614
|
customerPhone: string;
|
|
18600
18615
|
customerEmail: string;
|
|
@@ -18614,9 +18629,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
18614
18629
|
createdAt: string;
|
|
18615
18630
|
updatedAt: string;
|
|
18616
18631
|
deletedAt: string;
|
|
18617
|
-
brandId: string | null;
|
|
18618
|
-
isActive: boolean;
|
|
18619
18632
|
code: string;
|
|
18633
|
+
isActive: boolean;
|
|
18634
|
+
brandId: string | null;
|
|
18635
|
+
description: string | null;
|
|
18620
18636
|
minPurchase: string;
|
|
18621
18637
|
maxDiscount: string;
|
|
18622
18638
|
usageLimit: number | null;
|
|
@@ -18625,7 +18641,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
18625
18641
|
validFrom: string;
|
|
18626
18642
|
validUntil: string;
|
|
18627
18643
|
isAutoApply: boolean;
|
|
18628
|
-
description: string | null;
|
|
18629
18644
|
category: string;
|
|
18630
18645
|
createdBy: string | null;
|
|
18631
18646
|
};
|
|
@@ -18639,8 +18654,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
18639
18654
|
createdAt: string;
|
|
18640
18655
|
updatedAt: string;
|
|
18641
18656
|
deletedAt: string;
|
|
18642
|
-
brandId: string;
|
|
18643
18657
|
isActive: boolean;
|
|
18658
|
+
brandId: string;
|
|
18644
18659
|
description: string | null;
|
|
18645
18660
|
thumbnailUrl: string | null;
|
|
18646
18661
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -19161,19 +19176,19 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
19161
19176
|
output: {
|
|
19162
19177
|
id: string;
|
|
19163
19178
|
brand: {
|
|
19164
|
-
createdAt: string;
|
|
19165
|
-
updatedAt: string;
|
|
19166
|
-
deletedAt: string;
|
|
19167
19179
|
id: string;
|
|
19168
19180
|
name: string;
|
|
19169
19181
|
slug: string;
|
|
19170
|
-
logoUrl: string
|
|
19182
|
+
logoUrl: string;
|
|
19171
19183
|
siteUrl: string;
|
|
19172
19184
|
domain: string;
|
|
19173
|
-
metaPixelId: string
|
|
19174
|
-
tiktokPixelId: string
|
|
19175
|
-
paystackPublicKey: string
|
|
19176
|
-
|
|
19185
|
+
metaPixelId: string;
|
|
19186
|
+
tiktokPixelId: string;
|
|
19187
|
+
paystackPublicKey: string;
|
|
19188
|
+
freeShippingThreshold: number;
|
|
19189
|
+
createdAt: string;
|
|
19190
|
+
updatedAt: string;
|
|
19191
|
+
deletedAt: string;
|
|
19177
19192
|
};
|
|
19178
19193
|
customerPhone: string;
|
|
19179
19194
|
customerEmail: string;
|
|
@@ -19193,9 +19208,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
19193
19208
|
createdAt: string;
|
|
19194
19209
|
updatedAt: string;
|
|
19195
19210
|
deletedAt: string;
|
|
19196
|
-
brandId: string | null;
|
|
19197
|
-
isActive: boolean;
|
|
19198
19211
|
code: string;
|
|
19212
|
+
isActive: boolean;
|
|
19213
|
+
brandId: string | null;
|
|
19214
|
+
description: string | null;
|
|
19199
19215
|
minPurchase: string;
|
|
19200
19216
|
maxDiscount: string;
|
|
19201
19217
|
usageLimit: number | null;
|
|
@@ -19204,7 +19220,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
19204
19220
|
validFrom: string;
|
|
19205
19221
|
validUntil: string;
|
|
19206
19222
|
isAutoApply: boolean;
|
|
19207
|
-
description: string | null;
|
|
19208
19223
|
category: string;
|
|
19209
19224
|
createdBy: string | null;
|
|
19210
19225
|
};
|
|
@@ -19218,8 +19233,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
19218
19233
|
createdAt: string;
|
|
19219
19234
|
updatedAt: string;
|
|
19220
19235
|
deletedAt: string;
|
|
19221
|
-
brandId: string;
|
|
19222
19236
|
isActive: boolean;
|
|
19237
|
+
brandId: string;
|
|
19223
19238
|
description: string | null;
|
|
19224
19239
|
thumbnailUrl: string | null;
|
|
19225
19240
|
quantityDiscounts: string | number | boolean | {
|
|
@@ -19791,6 +19806,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
19791
19806
|
metaPixelId: string;
|
|
19792
19807
|
tiktokPixelId: string;
|
|
19793
19808
|
paystackPublicKey: string;
|
|
19809
|
+
freeShippingThreshold: number;
|
|
19794
19810
|
createdAt: string;
|
|
19795
19811
|
updatedAt: string;
|
|
19796
19812
|
deletedAt: string;
|
|
@@ -19799,16 +19815,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
19799
19815
|
usagePercentage: number;
|
|
19800
19816
|
id: string;
|
|
19801
19817
|
type: string;
|
|
19802
|
-
brandId: string | null;
|
|
19803
|
-
isActive: boolean;
|
|
19804
19818
|
code: string;
|
|
19819
|
+
isActive: boolean;
|
|
19820
|
+
brandId: string | null;
|
|
19821
|
+
description: string | null;
|
|
19805
19822
|
usageLimit: number | null;
|
|
19806
19823
|
usageCount: number;
|
|
19807
19824
|
perCustomerLimit: number | null;
|
|
19808
19825
|
validFrom: string;
|
|
19809
19826
|
validUntil: string;
|
|
19810
19827
|
isAutoApply: boolean;
|
|
19811
|
-
description: string | null;
|
|
19812
19828
|
category: string;
|
|
19813
19829
|
createdBy: string | null;
|
|
19814
19830
|
}[];
|
|
@@ -19872,6 +19888,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
19872
19888
|
metaPixelId: string;
|
|
19873
19889
|
tiktokPixelId: string;
|
|
19874
19890
|
paystackPublicKey: string;
|
|
19891
|
+
freeShippingThreshold: number;
|
|
19875
19892
|
createdAt: string;
|
|
19876
19893
|
updatedAt: string;
|
|
19877
19894
|
deletedAt: string;
|
|
@@ -19880,16 +19897,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
19880
19897
|
usagePercentage: number;
|
|
19881
19898
|
id: string;
|
|
19882
19899
|
type: string;
|
|
19883
|
-
brandId: string | null;
|
|
19884
|
-
isActive: boolean;
|
|
19885
19900
|
code: string;
|
|
19901
|
+
isActive: boolean;
|
|
19902
|
+
brandId: string | null;
|
|
19903
|
+
description: string | null;
|
|
19886
19904
|
usageLimit: number | null;
|
|
19887
19905
|
usageCount: number;
|
|
19888
19906
|
perCustomerLimit: number | null;
|
|
19889
19907
|
validFrom: string;
|
|
19890
19908
|
validUntil: string;
|
|
19891
19909
|
isAutoApply: boolean;
|
|
19892
|
-
description: string | null;
|
|
19893
19910
|
category: string;
|
|
19894
19911
|
createdBy: string | null;
|
|
19895
19912
|
};
|
|
@@ -19950,6 +19967,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
19950
19967
|
metaPixelId: string;
|
|
19951
19968
|
tiktokPixelId: string;
|
|
19952
19969
|
paystackPublicKey: string;
|
|
19970
|
+
freeShippingThreshold: number;
|
|
19953
19971
|
createdAt: string;
|
|
19954
19972
|
updatedAt: string;
|
|
19955
19973
|
deletedAt: string;
|
|
@@ -19958,16 +19976,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
19958
19976
|
usagePercentage: number;
|
|
19959
19977
|
id: string;
|
|
19960
19978
|
type: string;
|
|
19961
|
-
brandId: string | null;
|
|
19962
|
-
isActive: boolean;
|
|
19963
19979
|
code: string;
|
|
19980
|
+
isActive: boolean;
|
|
19981
|
+
brandId: string | null;
|
|
19982
|
+
description: string | null;
|
|
19964
19983
|
usageLimit: number | null;
|
|
19965
19984
|
usageCount: number;
|
|
19966
19985
|
perCustomerLimit: number | null;
|
|
19967
19986
|
validFrom: string;
|
|
19968
19987
|
validUntil: string;
|
|
19969
19988
|
isAutoApply: boolean;
|
|
19970
|
-
description: string | null;
|
|
19971
19989
|
category: string;
|
|
19972
19990
|
createdBy: string | null;
|
|
19973
19991
|
};
|
|
@@ -20040,6 +20058,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20040
20058
|
metaPixelId: string;
|
|
20041
20059
|
tiktokPixelId: string;
|
|
20042
20060
|
paystackPublicKey: string;
|
|
20061
|
+
freeShippingThreshold: number;
|
|
20043
20062
|
createdAt: string;
|
|
20044
20063
|
updatedAt: string;
|
|
20045
20064
|
deletedAt: string;
|
|
@@ -20048,16 +20067,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20048
20067
|
usagePercentage: number;
|
|
20049
20068
|
id: string;
|
|
20050
20069
|
type: string;
|
|
20051
|
-
brandId: string | null;
|
|
20052
|
-
isActive: boolean;
|
|
20053
20070
|
code: string;
|
|
20071
|
+
isActive: boolean;
|
|
20072
|
+
brandId: string | null;
|
|
20073
|
+
description: string | null;
|
|
20054
20074
|
usageLimit: number | null;
|
|
20055
20075
|
usageCount: number;
|
|
20056
20076
|
perCustomerLimit: number | null;
|
|
20057
20077
|
validFrom: string;
|
|
20058
20078
|
validUntil: string;
|
|
20059
20079
|
isAutoApply: boolean;
|
|
20060
|
-
description: string | null;
|
|
20061
20080
|
category: string;
|
|
20062
20081
|
createdBy: string | null;
|
|
20063
20082
|
};
|
|
@@ -20160,6 +20179,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20160
20179
|
metaPixelId: string;
|
|
20161
20180
|
tiktokPixelId: string;
|
|
20162
20181
|
paystackPublicKey: string;
|
|
20182
|
+
freeShippingThreshold: number;
|
|
20163
20183
|
createdAt: string;
|
|
20164
20184
|
updatedAt: string;
|
|
20165
20185
|
deletedAt: string;
|
|
@@ -20167,16 +20187,16 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20167
20187
|
isExpired: boolean;
|
|
20168
20188
|
id: string;
|
|
20169
20189
|
type: string;
|
|
20170
|
-
brandId: string | null;
|
|
20171
|
-
isActive: boolean;
|
|
20172
20190
|
code: string;
|
|
20191
|
+
isActive: boolean;
|
|
20192
|
+
brandId: string | null;
|
|
20193
|
+
description: string | null;
|
|
20173
20194
|
usageLimit: number | null;
|
|
20174
20195
|
usageCount: number;
|
|
20175
20196
|
perCustomerLimit: number | null;
|
|
20176
20197
|
validFrom: string;
|
|
20177
20198
|
validUntil: string;
|
|
20178
20199
|
isAutoApply: boolean;
|
|
20179
|
-
description: string | null;
|
|
20180
20200
|
category: string;
|
|
20181
20201
|
createdBy: string | null;
|
|
20182
20202
|
};
|
|
@@ -20260,7 +20280,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20260
20280
|
output: {
|
|
20261
20281
|
deliveryZones: {
|
|
20262
20282
|
deliveryCost: number;
|
|
20263
|
-
freeShippingThreshold: number;
|
|
20264
20283
|
createdAt: string;
|
|
20265
20284
|
updatedAt: string;
|
|
20266
20285
|
deletedAt: string;
|
|
@@ -20274,6 +20293,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20274
20293
|
metaPixelId: string;
|
|
20275
20294
|
tiktokPixelId: string;
|
|
20276
20295
|
paystackPublicKey: string;
|
|
20296
|
+
freeShippingThreshold: number;
|
|
20277
20297
|
createdAt: string;
|
|
20278
20298
|
updatedAt: string;
|
|
20279
20299
|
deletedAt: string;
|
|
@@ -20290,6 +20310,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20290
20310
|
};
|
|
20291
20311
|
id: string;
|
|
20292
20312
|
name: string;
|
|
20313
|
+
freeShippingThreshold: string;
|
|
20314
|
+
isActive: boolean;
|
|
20293
20315
|
brandId: string | null;
|
|
20294
20316
|
stateId: string;
|
|
20295
20317
|
allowCOD: boolean;
|
|
@@ -20298,7 +20320,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20298
20320
|
estimatedDays: number | null;
|
|
20299
20321
|
noteTitle: string | null;
|
|
20300
20322
|
noteContent: string | null;
|
|
20301
|
-
isActive: boolean;
|
|
20302
20323
|
}[];
|
|
20303
20324
|
zonesCount: number;
|
|
20304
20325
|
createdAt: string;
|
|
@@ -20450,7 +20471,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20450
20471
|
input: {};
|
|
20451
20472
|
output: {
|
|
20452
20473
|
deliveryCost: number;
|
|
20453
|
-
freeShippingThreshold: number;
|
|
20454
20474
|
createdAt: string;
|
|
20455
20475
|
updatedAt: string;
|
|
20456
20476
|
deletedAt: string;
|
|
@@ -20464,6 +20484,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20464
20484
|
metaPixelId: string;
|
|
20465
20485
|
tiktokPixelId: string;
|
|
20466
20486
|
paystackPublicKey: string;
|
|
20487
|
+
freeShippingThreshold: number;
|
|
20467
20488
|
createdAt: string;
|
|
20468
20489
|
updatedAt: string;
|
|
20469
20490
|
deletedAt: string;
|
|
@@ -20480,6 +20501,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20480
20501
|
};
|
|
20481
20502
|
id: string;
|
|
20482
20503
|
name: string;
|
|
20504
|
+
freeShippingThreshold: string;
|
|
20505
|
+
isActive: boolean;
|
|
20483
20506
|
brandId: string | null;
|
|
20484
20507
|
stateId: string;
|
|
20485
20508
|
allowCOD: boolean;
|
|
@@ -20488,7 +20511,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20488
20511
|
estimatedDays: number | null;
|
|
20489
20512
|
noteTitle: string | null;
|
|
20490
20513
|
noteContent: string | null;
|
|
20491
|
-
isActive: boolean;
|
|
20492
20514
|
}[];
|
|
20493
20515
|
outputFormat: "json";
|
|
20494
20516
|
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
@@ -20528,7 +20550,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20528
20550
|
input: {};
|
|
20529
20551
|
output: {
|
|
20530
20552
|
deliveryCost: number;
|
|
20531
|
-
freeShippingThreshold: number;
|
|
20532
20553
|
createdAt: string;
|
|
20533
20554
|
updatedAt: string;
|
|
20534
20555
|
deletedAt: string;
|
|
@@ -20542,6 +20563,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20542
20563
|
metaPixelId: string;
|
|
20543
20564
|
tiktokPixelId: string;
|
|
20544
20565
|
paystackPublicKey: string;
|
|
20566
|
+
freeShippingThreshold: number;
|
|
20545
20567
|
createdAt: string;
|
|
20546
20568
|
updatedAt: string;
|
|
20547
20569
|
deletedAt: string;
|
|
@@ -20558,6 +20580,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20558
20580
|
};
|
|
20559
20581
|
id: string;
|
|
20560
20582
|
name: string;
|
|
20583
|
+
freeShippingThreshold: string;
|
|
20584
|
+
isActive: boolean;
|
|
20561
20585
|
brandId: string | null;
|
|
20562
20586
|
stateId: string;
|
|
20563
20587
|
allowCOD: boolean;
|
|
@@ -20566,7 +20590,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20566
20590
|
estimatedDays: number | null;
|
|
20567
20591
|
noteTitle: string | null;
|
|
20568
20592
|
noteContent: string | null;
|
|
20569
|
-
isActive: boolean;
|
|
20570
20593
|
};
|
|
20571
20594
|
outputFormat: "json";
|
|
20572
20595
|
status: 201;
|
|
@@ -20621,7 +20644,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20621
20644
|
};
|
|
20622
20645
|
output: {
|
|
20623
20646
|
deliveryCost: number;
|
|
20624
|
-
freeShippingThreshold: number;
|
|
20625
20647
|
createdAt: string;
|
|
20626
20648
|
updatedAt: string;
|
|
20627
20649
|
deletedAt: string;
|
|
@@ -20635,6 +20657,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20635
20657
|
metaPixelId: string;
|
|
20636
20658
|
tiktokPixelId: string;
|
|
20637
20659
|
paystackPublicKey: string;
|
|
20660
|
+
freeShippingThreshold: number;
|
|
20638
20661
|
createdAt: string;
|
|
20639
20662
|
updatedAt: string;
|
|
20640
20663
|
deletedAt: string;
|
|
@@ -20651,6 +20674,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20651
20674
|
};
|
|
20652
20675
|
id: string;
|
|
20653
20676
|
name: string;
|
|
20677
|
+
freeShippingThreshold: string;
|
|
20678
|
+
isActive: boolean;
|
|
20654
20679
|
brandId: string | null;
|
|
20655
20680
|
stateId: string;
|
|
20656
20681
|
allowCOD: boolean;
|
|
@@ -20659,7 +20684,6 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
20659
20684
|
estimatedDays: number | null;
|
|
20660
20685
|
noteTitle: string | null;
|
|
20661
20686
|
noteContent: string | null;
|
|
20662
|
-
isActive: boolean;
|
|
20663
20687
|
};
|
|
20664
20688
|
outputFormat: "json";
|
|
20665
20689
|
status: import("hono/utils/http-status").ContentfulStatusCode;
|