@instockng/api-client 1.0.7 → 1.0.8
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/apps/backend/src/http-app.js +28 -0
- package/dist/apps/backend/src/lib/brand-response.d.ts +1 -1
- package/dist/apps/backend/src/lib/cart-helpers.d.ts +13 -11
- package/dist/apps/backend/src/lib/cart-helpers.js +28 -0
- package/dist/apps/backend/src/lib/cart-response.d.ts +5 -5
- package/dist/apps/backend/src/lib/clerk.js +23 -0
- package/dist/apps/backend/src/lib/delivery-zone-response.d.ts +6 -4
- package/dist/apps/backend/src/lib/discount-code-response.d.ts +2 -2
- package/dist/apps/backend/src/lib/meta-capi.d.ts +5 -0
- package/dist/apps/backend/src/lib/meta-capi.js +33 -2
- package/dist/apps/backend/src/lib/order-recovery.d.ts +30 -24
- package/dist/apps/backend/src/lib/order-response.d.ts +9 -7
- package/dist/apps/backend/src/lib/product-response.d.ts +4 -4
- package/dist/apps/backend/src/lib/sentry.d.ts +48 -0
- package/dist/apps/backend/src/lib/sentry.js +180 -0
- package/dist/apps/backend/src/notifications/producers/meta-capi-producer.js +18 -4
- package/dist/apps/backend/src/routes/admin/abandoned-carts.d.ts +10 -10
- package/dist/apps/backend/src/routes/admin/brands.d.ts +4 -4
- package/dist/apps/backend/src/routes/admin/customers.d.ts +9 -7
- package/dist/apps/backend/src/routes/admin/delivery-zones.d.ts +23 -15
- package/dist/apps/backend/src/routes/admin/discount-codes.d.ts +10 -10
- package/dist/apps/backend/src/routes/admin/inventory.js +10 -0
- package/dist/apps/backend/src/routes/admin/orders.d.ts +54 -42
- package/dist/apps/backend/src/routes/admin/orders.js +25 -0
- package/dist/apps/backend/src/routes/admin/products.d.ts +12 -12
- package/dist/apps/backend/src/routes/admin/products.js +34 -15
- package/dist/apps/backend/src/routes/admin/stats.d.ts +9 -7
- package/dist/apps/backend/src/routes/admin/variants.d.ts +5 -5
- package/dist/apps/backend/src/routes/admin/variants.js +42 -18
- package/dist/apps/backend/src/routes/admin/warehouses.d.ts +7 -7
- package/dist/apps/backend/src/routes/public/brands.d.ts +1 -1
- package/dist/apps/backend/src/routes/public/carts.d.ts +49 -47
- package/dist/apps/backend/src/routes/public/carts.js +148 -1
- package/dist/apps/backend/src/routes/public/delivery-zones.d.ts +2 -0
- package/dist/apps/backend/src/routes/public/delivery-zones.js +2 -0
- package/dist/apps/backend/src/routes/public/orders.d.ts +18 -14
- package/dist/apps/backend/src/routes/public/orders.js +24 -0
- package/dist/apps/backend/src/routes/public/products.d.ts +6 -6
- package/dist/apps/backend/src/types/index.d.ts +1 -0
- package/dist/apps/backend/src/validators/delivery-zone.d.ts +4 -0
- package/dist/apps/backend/src/validators/delivery-zone.js +4 -0
- package/dist/apps/backend/src/validators/discount-code.d.ts +3 -3
- package/dist/apps/backend/src/validators/order.d.ts +3 -1
- package/dist/apps/backend/src/validators/order.js +3 -1
- package/dist/packages/api-client/src/fetchers/brands.d.ts +1 -1
- package/dist/packages/api-client/src/fetchers/carts.d.ts +49 -47
- package/dist/packages/api-client/src/fetchers/delivery-zones.d.ts +2 -0
- package/dist/packages/api-client/src/fetchers/orders.d.ts +18 -14
- package/dist/packages/api-client/src/fetchers/products.d.ts +6 -6
- package/dist/packages/api-client/src/hooks/admin/abandoned-carts.d.ts +10 -10
- package/dist/packages/api-client/src/hooks/admin/brands.d.ts +4 -4
- package/dist/packages/api-client/src/hooks/admin/customers.d.ts +9 -7
- package/dist/packages/api-client/src/hooks/admin/delivery-zones.d.ts +23 -15
- package/dist/packages/api-client/src/hooks/admin/discount-codes.d.ts +10 -10
- package/dist/packages/api-client/src/hooks/admin/orders.d.ts +54 -42
- package/dist/packages/api-client/src/hooks/admin/products.d.ts +6 -6
- package/dist/packages/api-client/src/hooks/admin/stats.d.ts +9 -7
- package/dist/packages/api-client/src/hooks/admin/variants.d.ts +5 -5
- package/dist/packages/api-client/src/hooks/admin/warehouses.d.ts +7 -7
- package/dist/packages/api-client/src/hooks/public/brands.d.ts +1 -1
- package/dist/packages/api-client/src/hooks/public/carts.d.ts +49 -47
- package/dist/packages/api-client/src/hooks/public/delivery-zones.d.ts +2 -0
- package/dist/packages/api-client/src/hooks/public/orders.d.ts +18 -14
- package/dist/packages/api-client/src/hooks/public/products.d.ts +6 -6
- package/dist/packages/api-client/src/rpc-client.d.ts +219 -187
- package/package.json +1 -1
|
@@ -38,8 +38,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
38
38
|
createdAt: string;
|
|
39
39
|
updatedAt: string;
|
|
40
40
|
deletedAt: string;
|
|
41
|
-
name: string;
|
|
42
41
|
id: string;
|
|
42
|
+
name: string;
|
|
43
43
|
slug: string;
|
|
44
44
|
logoUrl: string | null;
|
|
45
45
|
siteUrl: string;
|
|
@@ -59,14 +59,14 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
59
59
|
lastRecoveryAttemptAt: string;
|
|
60
60
|
recoveryDiscountCode: {
|
|
61
61
|
id: string;
|
|
62
|
+
type: string;
|
|
63
|
+
value: string;
|
|
62
64
|
createdAt: string;
|
|
63
65
|
updatedAt: string;
|
|
64
66
|
deletedAt: string;
|
|
65
67
|
brandId: string | null;
|
|
66
68
|
isActive: boolean;
|
|
67
69
|
code: string;
|
|
68
|
-
type: string;
|
|
69
|
-
value: string;
|
|
70
70
|
minPurchase: string;
|
|
71
71
|
maxDiscount: string;
|
|
72
72
|
usageLimit: number | null;
|
|
@@ -84,8 +84,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
84
84
|
variant: {
|
|
85
85
|
price: number;
|
|
86
86
|
product: {
|
|
87
|
-
name: string;
|
|
88
87
|
id: string;
|
|
88
|
+
name: string;
|
|
89
89
|
slug: string;
|
|
90
90
|
createdAt: string;
|
|
91
91
|
updatedAt: string;
|
|
@@ -240,8 +240,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
240
240
|
};
|
|
241
241
|
};
|
|
242
242
|
};
|
|
243
|
-
name: string | null;
|
|
244
243
|
id: string;
|
|
244
|
+
name: string | null;
|
|
245
245
|
createdAt: string;
|
|
246
246
|
updatedAt: string;
|
|
247
247
|
deletedAt: string;
|
|
@@ -319,8 +319,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
319
319
|
createdAt: string;
|
|
320
320
|
updatedAt: string;
|
|
321
321
|
deletedAt: string;
|
|
322
|
-
name: string;
|
|
323
322
|
id: string;
|
|
323
|
+
name: string;
|
|
324
324
|
slug: string;
|
|
325
325
|
logoUrl: string | null;
|
|
326
326
|
siteUrl: string;
|
|
@@ -340,14 +340,14 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
340
340
|
lastRecoveryAttemptAt: string;
|
|
341
341
|
recoveryDiscountCode: {
|
|
342
342
|
id: string;
|
|
343
|
+
type: string;
|
|
344
|
+
value: string;
|
|
343
345
|
createdAt: string;
|
|
344
346
|
updatedAt: string;
|
|
345
347
|
deletedAt: string;
|
|
346
348
|
brandId: string | null;
|
|
347
349
|
isActive: boolean;
|
|
348
350
|
code: string;
|
|
349
|
-
type: string;
|
|
350
|
-
value: string;
|
|
351
351
|
minPurchase: string;
|
|
352
352
|
maxDiscount: string;
|
|
353
353
|
usageLimit: number | null;
|
|
@@ -365,8 +365,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
365
365
|
variant: {
|
|
366
366
|
price: number;
|
|
367
367
|
product: {
|
|
368
|
-
name: string;
|
|
369
368
|
id: string;
|
|
369
|
+
name: string;
|
|
370
370
|
slug: string;
|
|
371
371
|
createdAt: string;
|
|
372
372
|
updatedAt: string;
|
|
@@ -521,8 +521,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
521
521
|
};
|
|
522
522
|
};
|
|
523
523
|
};
|
|
524
|
-
name: string | null;
|
|
525
524
|
id: string;
|
|
525
|
+
name: string | null;
|
|
526
526
|
createdAt: string;
|
|
527
527
|
updatedAt: string;
|
|
528
528
|
deletedAt: string;
|
|
@@ -588,8 +588,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
588
588
|
createdAt: string;
|
|
589
589
|
updatedAt: string;
|
|
590
590
|
deletedAt: string;
|
|
591
|
-
name: string;
|
|
592
591
|
id: string;
|
|
592
|
+
name: string;
|
|
593
593
|
slug: string;
|
|
594
594
|
logoUrl: string | null;
|
|
595
595
|
siteUrl: string;
|
|
@@ -609,14 +609,14 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
609
609
|
lastRecoveryAttemptAt: string;
|
|
610
610
|
recoveryDiscountCode: {
|
|
611
611
|
id: string;
|
|
612
|
+
type: string;
|
|
613
|
+
value: string;
|
|
612
614
|
createdAt: string;
|
|
613
615
|
updatedAt: string;
|
|
614
616
|
deletedAt: string;
|
|
615
617
|
brandId: string | null;
|
|
616
618
|
isActive: boolean;
|
|
617
619
|
code: string;
|
|
618
|
-
type: string;
|
|
619
|
-
value: string;
|
|
620
620
|
minPurchase: string;
|
|
621
621
|
maxDiscount: string;
|
|
622
622
|
usageLimit: number | null;
|
|
@@ -634,8 +634,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
634
634
|
variant: {
|
|
635
635
|
price: number;
|
|
636
636
|
product: {
|
|
637
|
-
name: string;
|
|
638
637
|
id: string;
|
|
638
|
+
name: string;
|
|
639
639
|
slug: string;
|
|
640
640
|
createdAt: string;
|
|
641
641
|
updatedAt: string;
|
|
@@ -790,8 +790,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
790
790
|
};
|
|
791
791
|
};
|
|
792
792
|
};
|
|
793
|
-
name: string | null;
|
|
794
793
|
id: string;
|
|
794
|
+
name: string | null;
|
|
795
795
|
createdAt: string;
|
|
796
796
|
updatedAt: string;
|
|
797
797
|
deletedAt: string;
|
|
@@ -874,8 +874,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
874
874
|
createdAt: string;
|
|
875
875
|
updatedAt: string;
|
|
876
876
|
deletedAt: string;
|
|
877
|
-
name: string;
|
|
878
877
|
id: string;
|
|
878
|
+
name: string;
|
|
879
879
|
slug: string;
|
|
880
880
|
logoUrl: string | null;
|
|
881
881
|
siteUrl: string;
|
|
@@ -895,14 +895,14 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
895
895
|
lastRecoveryAttemptAt: string;
|
|
896
896
|
recoveryDiscountCode: {
|
|
897
897
|
id: string;
|
|
898
|
+
type: string;
|
|
899
|
+
value: string;
|
|
898
900
|
createdAt: string;
|
|
899
901
|
updatedAt: string;
|
|
900
902
|
deletedAt: string;
|
|
901
903
|
brandId: string | null;
|
|
902
904
|
isActive: boolean;
|
|
903
905
|
code: string;
|
|
904
|
-
type: string;
|
|
905
|
-
value: string;
|
|
906
906
|
minPurchase: string;
|
|
907
907
|
maxDiscount: string;
|
|
908
908
|
usageLimit: number | null;
|
|
@@ -920,8 +920,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
920
920
|
variant: {
|
|
921
921
|
price: number;
|
|
922
922
|
product: {
|
|
923
|
-
name: string;
|
|
924
923
|
id: string;
|
|
924
|
+
name: string;
|
|
925
925
|
slug: string;
|
|
926
926
|
createdAt: string;
|
|
927
927
|
updatedAt: string;
|
|
@@ -1076,8 +1076,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1076
1076
|
};
|
|
1077
1077
|
};
|
|
1078
1078
|
};
|
|
1079
|
-
name: string | null;
|
|
1080
1079
|
id: string;
|
|
1080
|
+
name: string | null;
|
|
1081
1081
|
createdAt: string;
|
|
1082
1082
|
updatedAt: string;
|
|
1083
1083
|
deletedAt: string;
|
|
@@ -1161,8 +1161,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1161
1161
|
createdAt: string;
|
|
1162
1162
|
updatedAt: string;
|
|
1163
1163
|
deletedAt: string;
|
|
1164
|
-
name: string;
|
|
1165
1164
|
id: string;
|
|
1165
|
+
name: string;
|
|
1166
1166
|
slug: string;
|
|
1167
1167
|
logoUrl: string | null;
|
|
1168
1168
|
siteUrl: string;
|
|
@@ -1182,14 +1182,14 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1182
1182
|
lastRecoveryAttemptAt: string;
|
|
1183
1183
|
recoveryDiscountCode: {
|
|
1184
1184
|
id: string;
|
|
1185
|
+
type: string;
|
|
1186
|
+
value: string;
|
|
1185
1187
|
createdAt: string;
|
|
1186
1188
|
updatedAt: string;
|
|
1187
1189
|
deletedAt: string;
|
|
1188
1190
|
brandId: string | null;
|
|
1189
1191
|
isActive: boolean;
|
|
1190
1192
|
code: string;
|
|
1191
|
-
type: string;
|
|
1192
|
-
value: string;
|
|
1193
1193
|
minPurchase: string;
|
|
1194
1194
|
maxDiscount: string;
|
|
1195
1195
|
usageLimit: number | null;
|
|
@@ -1207,8 +1207,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1207
1207
|
variant: {
|
|
1208
1208
|
price: number;
|
|
1209
1209
|
product: {
|
|
1210
|
-
name: string;
|
|
1211
1210
|
id: string;
|
|
1211
|
+
name: string;
|
|
1212
1212
|
slug: string;
|
|
1213
1213
|
createdAt: string;
|
|
1214
1214
|
updatedAt: string;
|
|
@@ -1363,8 +1363,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1363
1363
|
};
|
|
1364
1364
|
};
|
|
1365
1365
|
};
|
|
1366
|
-
name: string | null;
|
|
1367
1366
|
id: string;
|
|
1367
|
+
name: string | null;
|
|
1368
1368
|
createdAt: string;
|
|
1369
1369
|
updatedAt: string;
|
|
1370
1370
|
deletedAt: string;
|
|
@@ -1448,8 +1448,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1448
1448
|
createdAt: string;
|
|
1449
1449
|
updatedAt: string;
|
|
1450
1450
|
deletedAt: string;
|
|
1451
|
-
name: string;
|
|
1452
1451
|
id: string;
|
|
1452
|
+
name: string;
|
|
1453
1453
|
slug: string;
|
|
1454
1454
|
logoUrl: string | null;
|
|
1455
1455
|
siteUrl: string;
|
|
@@ -1469,14 +1469,14 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1469
1469
|
lastRecoveryAttemptAt: string;
|
|
1470
1470
|
recoveryDiscountCode: {
|
|
1471
1471
|
id: string;
|
|
1472
|
+
type: string;
|
|
1473
|
+
value: string;
|
|
1472
1474
|
createdAt: string;
|
|
1473
1475
|
updatedAt: string;
|
|
1474
1476
|
deletedAt: string;
|
|
1475
1477
|
brandId: string | null;
|
|
1476
1478
|
isActive: boolean;
|
|
1477
1479
|
code: string;
|
|
1478
|
-
type: string;
|
|
1479
|
-
value: string;
|
|
1480
1480
|
minPurchase: string;
|
|
1481
1481
|
maxDiscount: string;
|
|
1482
1482
|
usageLimit: number | null;
|
|
@@ -1494,8 +1494,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1494
1494
|
variant: {
|
|
1495
1495
|
price: number;
|
|
1496
1496
|
product: {
|
|
1497
|
-
name: string;
|
|
1498
1497
|
id: string;
|
|
1498
|
+
name: string;
|
|
1499
1499
|
slug: string;
|
|
1500
1500
|
createdAt: string;
|
|
1501
1501
|
updatedAt: string;
|
|
@@ -1650,8 +1650,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1650
1650
|
};
|
|
1651
1651
|
};
|
|
1652
1652
|
};
|
|
1653
|
-
name: string | null;
|
|
1654
1653
|
id: string;
|
|
1654
|
+
name: string | null;
|
|
1655
1655
|
createdAt: string;
|
|
1656
1656
|
updatedAt: string;
|
|
1657
1657
|
deletedAt: string;
|
|
@@ -1738,8 +1738,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1738
1738
|
createdAt: string;
|
|
1739
1739
|
updatedAt: string;
|
|
1740
1740
|
deletedAt: string;
|
|
1741
|
-
name: string;
|
|
1742
1741
|
id: string;
|
|
1742
|
+
name: string;
|
|
1743
1743
|
slug: string;
|
|
1744
1744
|
logoUrl: string | null;
|
|
1745
1745
|
siteUrl: string;
|
|
@@ -1759,14 +1759,14 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1759
1759
|
lastRecoveryAttemptAt: string;
|
|
1760
1760
|
recoveryDiscountCode: {
|
|
1761
1761
|
id: string;
|
|
1762
|
+
type: string;
|
|
1763
|
+
value: string;
|
|
1762
1764
|
createdAt: string;
|
|
1763
1765
|
updatedAt: string;
|
|
1764
1766
|
deletedAt: string;
|
|
1765
1767
|
brandId: string | null;
|
|
1766
1768
|
isActive: boolean;
|
|
1767
1769
|
code: string;
|
|
1768
|
-
type: string;
|
|
1769
|
-
value: string;
|
|
1770
1770
|
minPurchase: string;
|
|
1771
1771
|
maxDiscount: string;
|
|
1772
1772
|
usageLimit: number | null;
|
|
@@ -1784,8 +1784,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1784
1784
|
variant: {
|
|
1785
1785
|
price: number;
|
|
1786
1786
|
product: {
|
|
1787
|
-
name: string;
|
|
1788
1787
|
id: string;
|
|
1788
|
+
name: string;
|
|
1789
1789
|
slug: string;
|
|
1790
1790
|
createdAt: string;
|
|
1791
1791
|
updatedAt: string;
|
|
@@ -1940,8 +1940,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1940
1940
|
};
|
|
1941
1941
|
};
|
|
1942
1942
|
};
|
|
1943
|
-
name: string | null;
|
|
1944
1943
|
id: string;
|
|
1944
|
+
name: string | null;
|
|
1945
1945
|
createdAt: string;
|
|
1946
1946
|
updatedAt: string;
|
|
1947
1947
|
deletedAt: string;
|
|
@@ -2043,8 +2043,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2043
2043
|
createdAt: string;
|
|
2044
2044
|
updatedAt: string;
|
|
2045
2045
|
deletedAt: string;
|
|
2046
|
-
name: string;
|
|
2047
2046
|
id: string;
|
|
2047
|
+
name: string;
|
|
2048
2048
|
slug: string;
|
|
2049
2049
|
logoUrl: string | null;
|
|
2050
2050
|
siteUrl: string;
|
|
@@ -2064,14 +2064,14 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2064
2064
|
lastRecoveryAttemptAt: string;
|
|
2065
2065
|
recoveryDiscountCode: {
|
|
2066
2066
|
id: string;
|
|
2067
|
+
type: string;
|
|
2068
|
+
value: string;
|
|
2067
2069
|
createdAt: string;
|
|
2068
2070
|
updatedAt: string;
|
|
2069
2071
|
deletedAt: string;
|
|
2070
2072
|
brandId: string | null;
|
|
2071
2073
|
isActive: boolean;
|
|
2072
2074
|
code: string;
|
|
2073
|
-
type: string;
|
|
2074
|
-
value: string;
|
|
2075
2075
|
minPurchase: string;
|
|
2076
2076
|
maxDiscount: string;
|
|
2077
2077
|
usageLimit: number | null;
|
|
@@ -2089,8 +2089,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2089
2089
|
variant: {
|
|
2090
2090
|
price: number;
|
|
2091
2091
|
product: {
|
|
2092
|
-
name: string;
|
|
2093
2092
|
id: string;
|
|
2093
|
+
name: string;
|
|
2094
2094
|
slug: string;
|
|
2095
2095
|
createdAt: string;
|
|
2096
2096
|
updatedAt: string;
|
|
@@ -2245,8 +2245,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2245
2245
|
};
|
|
2246
2246
|
};
|
|
2247
2247
|
};
|
|
2248
|
-
name: string | null;
|
|
2249
2248
|
id: string;
|
|
2249
|
+
name: string | null;
|
|
2250
2250
|
createdAt: string;
|
|
2251
2251
|
updatedAt: string;
|
|
2252
2252
|
deletedAt: string;
|
|
@@ -2415,8 +2415,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2415
2415
|
createdAt: string;
|
|
2416
2416
|
updatedAt: string;
|
|
2417
2417
|
deletedAt: string;
|
|
2418
|
-
name: string;
|
|
2419
2418
|
id: string;
|
|
2419
|
+
name: string;
|
|
2420
2420
|
slug: string;
|
|
2421
2421
|
logoUrl: string | null;
|
|
2422
2422
|
siteUrl: string;
|
|
@@ -2433,18 +2433,20 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2433
2433
|
createdAt: string;
|
|
2434
2434
|
updatedAt: string;
|
|
2435
2435
|
deletedAt: string;
|
|
2436
|
-
name: string;
|
|
2437
2436
|
id: string;
|
|
2437
|
+
name: string;
|
|
2438
2438
|
isActive: boolean;
|
|
2439
2439
|
};
|
|
2440
|
-
name: string;
|
|
2441
2440
|
id: string;
|
|
2441
|
+
name: string;
|
|
2442
2442
|
brandId: string | null;
|
|
2443
2443
|
stateId: string;
|
|
2444
2444
|
allowCOD: boolean;
|
|
2445
2445
|
allowOnline: boolean;
|
|
2446
2446
|
waybillOnly: boolean;
|
|
2447
2447
|
estimatedDays: number | null;
|
|
2448
|
+
noteTitle: string | null;
|
|
2449
|
+
noteContent: string | null;
|
|
2448
2450
|
isActive: boolean;
|
|
2449
2451
|
};
|
|
2450
2452
|
items: {
|
|
@@ -2458,8 +2460,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2458
2460
|
createdAt: string;
|
|
2459
2461
|
updatedAt: string;
|
|
2460
2462
|
deletedAt: string;
|
|
2461
|
-
name: string;
|
|
2462
2463
|
id: string;
|
|
2464
|
+
name: string;
|
|
2463
2465
|
slug: string;
|
|
2464
2466
|
brandId: string;
|
|
2465
2467
|
isActive: boolean;
|
|
@@ -2611,8 +2613,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2611
2613
|
};
|
|
2612
2614
|
};
|
|
2613
2615
|
};
|
|
2614
|
-
name: string | null;
|
|
2615
2616
|
id: string;
|
|
2617
|
+
name: string | null;
|
|
2616
2618
|
isActive: boolean;
|
|
2617
2619
|
thumbnailUrl: string | null;
|
|
2618
2620
|
productId: string;
|
|
@@ -2624,8 +2626,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2624
2626
|
createdAt: string;
|
|
2625
2627
|
updatedAt: string;
|
|
2626
2628
|
deletedAt: string;
|
|
2627
|
-
name: string;
|
|
2628
2629
|
id: string;
|
|
2630
|
+
name: string;
|
|
2629
2631
|
isActive: boolean;
|
|
2630
2632
|
address: string | null;
|
|
2631
2633
|
city: string | null;
|
|
@@ -2637,8 +2639,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2637
2639
|
warehouseId: string | null;
|
|
2638
2640
|
quantity: number;
|
|
2639
2641
|
}[];
|
|
2640
|
-
id: string;
|
|
2641
2642
|
email: string | null;
|
|
2643
|
+
id: string;
|
|
2642
2644
|
brandId: string;
|
|
2643
2645
|
deliveryZoneId: string;
|
|
2644
2646
|
recoveryAttempts: number;
|
|
@@ -2722,8 +2724,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2722
2724
|
createdAt: string;
|
|
2723
2725
|
updatedAt: string;
|
|
2724
2726
|
deletedAt: string;
|
|
2725
|
-
name: string;
|
|
2726
2727
|
id: string;
|
|
2728
|
+
name: string;
|
|
2727
2729
|
slug: string;
|
|
2728
2730
|
logoUrl: string | null;
|
|
2729
2731
|
siteUrl: string;
|
|
@@ -2740,18 +2742,20 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2740
2742
|
createdAt: string;
|
|
2741
2743
|
updatedAt: string;
|
|
2742
2744
|
deletedAt: string;
|
|
2743
|
-
name: string;
|
|
2744
2745
|
id: string;
|
|
2746
|
+
name: string;
|
|
2745
2747
|
isActive: boolean;
|
|
2746
2748
|
};
|
|
2747
|
-
name: string;
|
|
2748
2749
|
id: string;
|
|
2750
|
+
name: string;
|
|
2749
2751
|
brandId: string | null;
|
|
2750
2752
|
stateId: string;
|
|
2751
2753
|
allowCOD: boolean;
|
|
2752
2754
|
allowOnline: boolean;
|
|
2753
2755
|
waybillOnly: boolean;
|
|
2754
2756
|
estimatedDays: number | null;
|
|
2757
|
+
noteTitle: string | null;
|
|
2758
|
+
noteContent: string | null;
|
|
2755
2759
|
isActive: boolean;
|
|
2756
2760
|
};
|
|
2757
2761
|
items: {
|
|
@@ -2765,8 +2769,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2765
2769
|
createdAt: string;
|
|
2766
2770
|
updatedAt: string;
|
|
2767
2771
|
deletedAt: string;
|
|
2768
|
-
name: string;
|
|
2769
2772
|
id: string;
|
|
2773
|
+
name: string;
|
|
2770
2774
|
slug: string;
|
|
2771
2775
|
brandId: string;
|
|
2772
2776
|
isActive: boolean;
|
|
@@ -2918,8 +2922,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2918
2922
|
};
|
|
2919
2923
|
};
|
|
2920
2924
|
};
|
|
2921
|
-
name: string | null;
|
|
2922
2925
|
id: string;
|
|
2926
|
+
name: string | null;
|
|
2923
2927
|
isActive: boolean;
|
|
2924
2928
|
thumbnailUrl: string | null;
|
|
2925
2929
|
productId: string;
|
|
@@ -2931,8 +2935,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2931
2935
|
createdAt: string;
|
|
2932
2936
|
updatedAt: string;
|
|
2933
2937
|
deletedAt: string;
|
|
2934
|
-
name: string;
|
|
2935
2938
|
id: string;
|
|
2939
|
+
name: string;
|
|
2936
2940
|
isActive: boolean;
|
|
2937
2941
|
address: string | null;
|
|
2938
2942
|
city: string | null;
|
|
@@ -2944,8 +2948,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2944
2948
|
warehouseId: string | null;
|
|
2945
2949
|
quantity: number;
|
|
2946
2950
|
}[];
|
|
2947
|
-
id: string;
|
|
2948
2951
|
email: string | null;
|
|
2952
|
+
id: string;
|
|
2949
2953
|
brandId: string;
|
|
2950
2954
|
deliveryZoneId: string;
|
|
2951
2955
|
recoveryAttempts: number;
|
|
@@ -3025,8 +3029,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3025
3029
|
createdAt: string;
|
|
3026
3030
|
updatedAt: string;
|
|
3027
3031
|
deletedAt: string;
|
|
3028
|
-
name: string;
|
|
3029
3032
|
id: string;
|
|
3033
|
+
name: string;
|
|
3030
3034
|
slug: string;
|
|
3031
3035
|
logoUrl: string | null;
|
|
3032
3036
|
siteUrl: string;
|
|
@@ -3043,18 +3047,20 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3043
3047
|
createdAt: string;
|
|
3044
3048
|
updatedAt: string;
|
|
3045
3049
|
deletedAt: string;
|
|
3046
|
-
name: string;
|
|
3047
3050
|
id: string;
|
|
3051
|
+
name: string;
|
|
3048
3052
|
isActive: boolean;
|
|
3049
3053
|
};
|
|
3050
|
-
name: string;
|
|
3051
3054
|
id: string;
|
|
3055
|
+
name: string;
|
|
3052
3056
|
brandId: string | null;
|
|
3053
3057
|
stateId: string;
|
|
3054
3058
|
allowCOD: boolean;
|
|
3055
3059
|
allowOnline: boolean;
|
|
3056
3060
|
waybillOnly: boolean;
|
|
3057
3061
|
estimatedDays: number | null;
|
|
3062
|
+
noteTitle: string | null;
|
|
3063
|
+
noteContent: string | null;
|
|
3058
3064
|
isActive: boolean;
|
|
3059
3065
|
};
|
|
3060
3066
|
items: {
|
|
@@ -3068,8 +3074,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3068
3074
|
createdAt: string;
|
|
3069
3075
|
updatedAt: string;
|
|
3070
3076
|
deletedAt: string;
|
|
3071
|
-
name: string;
|
|
3072
3077
|
id: string;
|
|
3078
|
+
name: string;
|
|
3073
3079
|
slug: string;
|
|
3074
3080
|
brandId: string;
|
|
3075
3081
|
isActive: boolean;
|
|
@@ -3221,8 +3227,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3221
3227
|
};
|
|
3222
3228
|
};
|
|
3223
3229
|
};
|
|
3224
|
-
name: string | null;
|
|
3225
3230
|
id: string;
|
|
3231
|
+
name: string | null;
|
|
3226
3232
|
isActive: boolean;
|
|
3227
3233
|
thumbnailUrl: string | null;
|
|
3228
3234
|
productId: string;
|
|
@@ -3234,8 +3240,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3234
3240
|
createdAt: string;
|
|
3235
3241
|
updatedAt: string;
|
|
3236
3242
|
deletedAt: string;
|
|
3237
|
-
name: string;
|
|
3238
3243
|
id: string;
|
|
3244
|
+
name: string;
|
|
3239
3245
|
isActive: boolean;
|
|
3240
3246
|
address: string | null;
|
|
3241
3247
|
city: string | null;
|
|
@@ -3247,8 +3253,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3247
3253
|
warehouseId: string | null;
|
|
3248
3254
|
quantity: number;
|
|
3249
3255
|
}[];
|
|
3250
|
-
id: string;
|
|
3251
3256
|
email: string | null;
|
|
3257
|
+
id: string;
|
|
3252
3258
|
brandId: string;
|
|
3253
3259
|
deliveryZoneId: string;
|
|
3254
3260
|
recoveryAttempts: number;
|
|
@@ -3312,8 +3318,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3312
3318
|
createdAt: string;
|
|
3313
3319
|
updatedAt: string;
|
|
3314
3320
|
deletedAt: string;
|
|
3315
|
-
name: string;
|
|
3316
3321
|
id: string;
|
|
3322
|
+
name: string;
|
|
3317
3323
|
slug: string;
|
|
3318
3324
|
logoUrl: string | null;
|
|
3319
3325
|
siteUrl: string;
|
|
@@ -3325,8 +3331,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3325
3331
|
updatedAt: string;
|
|
3326
3332
|
price: number;
|
|
3327
3333
|
deletedAt: string;
|
|
3328
|
-
name: string | null;
|
|
3329
3334
|
id: string;
|
|
3335
|
+
name: string | null;
|
|
3330
3336
|
isActive: boolean;
|
|
3331
3337
|
thumbnailUrl: string | null;
|
|
3332
3338
|
productId: string;
|
|
@@ -3334,8 +3340,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3334
3340
|
trackInventory: boolean;
|
|
3335
3341
|
lowStockThreshold: number | null;
|
|
3336
3342
|
}[];
|
|
3337
|
-
name: string;
|
|
3338
3343
|
id: string;
|
|
3344
|
+
name: string;
|
|
3339
3345
|
slug: string;
|
|
3340
3346
|
createdAt: string;
|
|
3341
3347
|
updatedAt: string;
|
|
@@ -3536,8 +3542,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3536
3542
|
createdAt: string;
|
|
3537
3543
|
updatedAt: string;
|
|
3538
3544
|
deletedAt: string;
|
|
3539
|
-
name: string;
|
|
3540
3545
|
id: string;
|
|
3546
|
+
name: string;
|
|
3541
3547
|
slug: string;
|
|
3542
3548
|
logoUrl: string | null;
|
|
3543
3549
|
siteUrl: string;
|
|
@@ -3549,8 +3555,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3549
3555
|
updatedAt: string;
|
|
3550
3556
|
price: number;
|
|
3551
3557
|
deletedAt: string;
|
|
3552
|
-
name: string | null;
|
|
3553
3558
|
id: string;
|
|
3559
|
+
name: string | null;
|
|
3554
3560
|
isActive: boolean;
|
|
3555
3561
|
thumbnailUrl: string | null;
|
|
3556
3562
|
productId: string;
|
|
@@ -3558,8 +3564,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3558
3564
|
trackInventory: boolean;
|
|
3559
3565
|
lowStockThreshold: number | null;
|
|
3560
3566
|
}[];
|
|
3561
|
-
name: string;
|
|
3562
3567
|
id: string;
|
|
3568
|
+
name: string;
|
|
3563
3569
|
slug: string;
|
|
3564
3570
|
createdAt: string;
|
|
3565
3571
|
updatedAt: string;
|
|
@@ -3749,6 +3755,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3749
3755
|
allowOnline: boolean;
|
|
3750
3756
|
waybillOnly: boolean;
|
|
3751
3757
|
estimatedDays: number;
|
|
3758
|
+
noteTitle: string;
|
|
3759
|
+
noteContent: string;
|
|
3752
3760
|
}[];
|
|
3753
3761
|
}[];
|
|
3754
3762
|
outputFormat: "json";
|
|
@@ -3789,8 +3797,8 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3789
3797
|
};
|
|
3790
3798
|
};
|
|
3791
3799
|
output: {
|
|
3792
|
-
name: string;
|
|
3793
3800
|
id: string;
|
|
3801
|
+
name: string;
|
|
3794
3802
|
slug: string;
|
|
3795
3803
|
logoUrl: string;
|
|
3796
3804
|
siteUrl: string;
|
|
@@ -3839,8 +3847,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
3839
3847
|
createdAt: string;
|
|
3840
3848
|
updatedAt: string;
|
|
3841
3849
|
deletedAt: string;
|
|
3842
|
-
name: string;
|
|
3843
3850
|
id: string;
|
|
3851
|
+
name: string;
|
|
3844
3852
|
slug: string;
|
|
3845
3853
|
logoUrl: string | null;
|
|
3846
3854
|
siteUrl: string;
|
|
@@ -3857,18 +3865,20 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
3857
3865
|
createdAt: string;
|
|
3858
3866
|
updatedAt: string;
|
|
3859
3867
|
deletedAt: string;
|
|
3860
|
-
name: string;
|
|
3861
3868
|
id: string;
|
|
3869
|
+
name: string;
|
|
3862
3870
|
isActive: boolean;
|
|
3863
3871
|
};
|
|
3864
|
-
name: string;
|
|
3865
3872
|
id: string;
|
|
3873
|
+
name: string;
|
|
3866
3874
|
brandId: string | null;
|
|
3867
3875
|
stateId: string;
|
|
3868
3876
|
allowCOD: boolean;
|
|
3869
3877
|
allowOnline: boolean;
|
|
3870
3878
|
waybillOnly: boolean;
|
|
3871
3879
|
estimatedDays: number | null;
|
|
3880
|
+
noteTitle: string | null;
|
|
3881
|
+
noteContent: string | null;
|
|
3872
3882
|
isActive: boolean;
|
|
3873
3883
|
};
|
|
3874
3884
|
items: {
|
|
@@ -3882,8 +3892,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
3882
3892
|
createdAt: string;
|
|
3883
3893
|
updatedAt: string;
|
|
3884
3894
|
deletedAt: string;
|
|
3885
|
-
name: string;
|
|
3886
3895
|
id: string;
|
|
3896
|
+
name: string;
|
|
3887
3897
|
slug: string;
|
|
3888
3898
|
brandId: string;
|
|
3889
3899
|
isActive: boolean;
|
|
@@ -4035,8 +4045,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4035
4045
|
};
|
|
4036
4046
|
};
|
|
4037
4047
|
};
|
|
4038
|
-
name: string | null;
|
|
4039
4048
|
id: string;
|
|
4049
|
+
name: string | null;
|
|
4040
4050
|
isActive: boolean;
|
|
4041
4051
|
thumbnailUrl: string | null;
|
|
4042
4052
|
productId: string;
|
|
@@ -4048,8 +4058,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4048
4058
|
createdAt: string;
|
|
4049
4059
|
updatedAt: string;
|
|
4050
4060
|
deletedAt: string;
|
|
4051
|
-
name: string;
|
|
4052
4061
|
id: string;
|
|
4062
|
+
name: string;
|
|
4053
4063
|
isActive: boolean;
|
|
4054
4064
|
address: string | null;
|
|
4055
4065
|
city: string | null;
|
|
@@ -4061,8 +4071,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4061
4071
|
warehouseId: string | null;
|
|
4062
4072
|
quantity: number;
|
|
4063
4073
|
}[];
|
|
4064
|
-
id: string;
|
|
4065
4074
|
email: string | null;
|
|
4075
|
+
id: string;
|
|
4066
4076
|
brandId: string;
|
|
4067
4077
|
deliveryZoneId: string;
|
|
4068
4078
|
recoveryAttempts: number;
|
|
@@ -4124,8 +4134,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4124
4134
|
createdAt: string;
|
|
4125
4135
|
updatedAt: string;
|
|
4126
4136
|
deletedAt: string;
|
|
4127
|
-
name: string;
|
|
4128
4137
|
id: string;
|
|
4138
|
+
name: string;
|
|
4129
4139
|
slug: string;
|
|
4130
4140
|
logoUrl: string | null;
|
|
4131
4141
|
siteUrl: string;
|
|
@@ -4142,18 +4152,20 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4142
4152
|
createdAt: string;
|
|
4143
4153
|
updatedAt: string;
|
|
4144
4154
|
deletedAt: string;
|
|
4145
|
-
name: string;
|
|
4146
4155
|
id: string;
|
|
4156
|
+
name: string;
|
|
4147
4157
|
isActive: boolean;
|
|
4148
4158
|
};
|
|
4149
|
-
name: string;
|
|
4150
4159
|
id: string;
|
|
4160
|
+
name: string;
|
|
4151
4161
|
brandId: string | null;
|
|
4152
4162
|
stateId: string;
|
|
4153
4163
|
allowCOD: boolean;
|
|
4154
4164
|
allowOnline: boolean;
|
|
4155
4165
|
waybillOnly: boolean;
|
|
4156
4166
|
estimatedDays: number | null;
|
|
4167
|
+
noteTitle: string | null;
|
|
4168
|
+
noteContent: string | null;
|
|
4157
4169
|
isActive: boolean;
|
|
4158
4170
|
};
|
|
4159
4171
|
items: {
|
|
@@ -4167,8 +4179,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4167
4179
|
createdAt: string;
|
|
4168
4180
|
updatedAt: string;
|
|
4169
4181
|
deletedAt: string;
|
|
4170
|
-
name: string;
|
|
4171
4182
|
id: string;
|
|
4183
|
+
name: string;
|
|
4172
4184
|
slug: string;
|
|
4173
4185
|
brandId: string;
|
|
4174
4186
|
isActive: boolean;
|
|
@@ -4320,8 +4332,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4320
4332
|
};
|
|
4321
4333
|
};
|
|
4322
4334
|
};
|
|
4323
|
-
name: string | null;
|
|
4324
4335
|
id: string;
|
|
4336
|
+
name: string | null;
|
|
4325
4337
|
isActive: boolean;
|
|
4326
4338
|
thumbnailUrl: string | null;
|
|
4327
4339
|
productId: string;
|
|
@@ -4333,8 +4345,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4333
4345
|
createdAt: string;
|
|
4334
4346
|
updatedAt: string;
|
|
4335
4347
|
deletedAt: string;
|
|
4336
|
-
name: string;
|
|
4337
4348
|
id: string;
|
|
4349
|
+
name: string;
|
|
4338
4350
|
isActive: boolean;
|
|
4339
4351
|
address: string | null;
|
|
4340
4352
|
city: string | null;
|
|
@@ -4346,8 +4358,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4346
4358
|
warehouseId: string | null;
|
|
4347
4359
|
quantity: number;
|
|
4348
4360
|
}[];
|
|
4349
|
-
id: string;
|
|
4350
4361
|
email: string | null;
|
|
4362
|
+
id: string;
|
|
4351
4363
|
brandId: string;
|
|
4352
4364
|
deliveryZoneId: string;
|
|
4353
4365
|
recoveryAttempts: number;
|
|
@@ -4411,8 +4423,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4411
4423
|
createdAt: string;
|
|
4412
4424
|
updatedAt: string;
|
|
4413
4425
|
deletedAt: string;
|
|
4414
|
-
name: string;
|
|
4415
4426
|
id: string;
|
|
4427
|
+
name: string;
|
|
4416
4428
|
slug: string;
|
|
4417
4429
|
logoUrl: string | null;
|
|
4418
4430
|
siteUrl: string;
|
|
@@ -4429,18 +4441,20 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4429
4441
|
createdAt: string;
|
|
4430
4442
|
updatedAt: string;
|
|
4431
4443
|
deletedAt: string;
|
|
4432
|
-
name: string;
|
|
4433
4444
|
id: string;
|
|
4445
|
+
name: string;
|
|
4434
4446
|
isActive: boolean;
|
|
4435
4447
|
};
|
|
4436
|
-
name: string;
|
|
4437
4448
|
id: string;
|
|
4449
|
+
name: string;
|
|
4438
4450
|
brandId: string | null;
|
|
4439
4451
|
stateId: string;
|
|
4440
4452
|
allowCOD: boolean;
|
|
4441
4453
|
allowOnline: boolean;
|
|
4442
4454
|
waybillOnly: boolean;
|
|
4443
4455
|
estimatedDays: number | null;
|
|
4456
|
+
noteTitle: string | null;
|
|
4457
|
+
noteContent: string | null;
|
|
4444
4458
|
isActive: boolean;
|
|
4445
4459
|
};
|
|
4446
4460
|
items: {
|
|
@@ -4454,8 +4468,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4454
4468
|
createdAt: string;
|
|
4455
4469
|
updatedAt: string;
|
|
4456
4470
|
deletedAt: string;
|
|
4457
|
-
name: string;
|
|
4458
4471
|
id: string;
|
|
4472
|
+
name: string;
|
|
4459
4473
|
slug: string;
|
|
4460
4474
|
brandId: string;
|
|
4461
4475
|
isActive: boolean;
|
|
@@ -4607,8 +4621,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4607
4621
|
};
|
|
4608
4622
|
};
|
|
4609
4623
|
};
|
|
4610
|
-
name: string | null;
|
|
4611
4624
|
id: string;
|
|
4625
|
+
name: string | null;
|
|
4612
4626
|
isActive: boolean;
|
|
4613
4627
|
thumbnailUrl: string | null;
|
|
4614
4628
|
productId: string;
|
|
@@ -4620,8 +4634,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4620
4634
|
createdAt: string;
|
|
4621
4635
|
updatedAt: string;
|
|
4622
4636
|
deletedAt: string;
|
|
4623
|
-
name: string;
|
|
4624
4637
|
id: string;
|
|
4638
|
+
name: string;
|
|
4625
4639
|
isActive: boolean;
|
|
4626
4640
|
address: string | null;
|
|
4627
4641
|
city: string | null;
|
|
@@ -4633,8 +4647,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4633
4647
|
warehouseId: string | null;
|
|
4634
4648
|
quantity: number;
|
|
4635
4649
|
}[];
|
|
4636
|
-
id: string;
|
|
4637
4650
|
email: string | null;
|
|
4651
|
+
id: string;
|
|
4638
4652
|
brandId: string;
|
|
4639
4653
|
deliveryZoneId: string;
|
|
4640
4654
|
recoveryAttempts: number;
|
|
@@ -4707,8 +4721,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4707
4721
|
createdAt: string;
|
|
4708
4722
|
updatedAt: string;
|
|
4709
4723
|
deletedAt: string;
|
|
4710
|
-
name: string;
|
|
4711
4724
|
id: string;
|
|
4725
|
+
name: string;
|
|
4712
4726
|
slug: string;
|
|
4713
4727
|
logoUrl: string | null;
|
|
4714
4728
|
siteUrl: string;
|
|
@@ -4725,18 +4739,20 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4725
4739
|
createdAt: string;
|
|
4726
4740
|
updatedAt: string;
|
|
4727
4741
|
deletedAt: string;
|
|
4728
|
-
name: string;
|
|
4729
4742
|
id: string;
|
|
4743
|
+
name: string;
|
|
4730
4744
|
isActive: boolean;
|
|
4731
4745
|
};
|
|
4732
|
-
name: string;
|
|
4733
4746
|
id: string;
|
|
4747
|
+
name: string;
|
|
4734
4748
|
brandId: string | null;
|
|
4735
4749
|
stateId: string;
|
|
4736
4750
|
allowCOD: boolean;
|
|
4737
4751
|
allowOnline: boolean;
|
|
4738
4752
|
waybillOnly: boolean;
|
|
4739
4753
|
estimatedDays: number | null;
|
|
4754
|
+
noteTitle: string | null;
|
|
4755
|
+
noteContent: string | null;
|
|
4740
4756
|
isActive: boolean;
|
|
4741
4757
|
};
|
|
4742
4758
|
items: {
|
|
@@ -4750,8 +4766,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4750
4766
|
createdAt: string;
|
|
4751
4767
|
updatedAt: string;
|
|
4752
4768
|
deletedAt: string;
|
|
4753
|
-
name: string;
|
|
4754
4769
|
id: string;
|
|
4770
|
+
name: string;
|
|
4755
4771
|
slug: string;
|
|
4756
4772
|
brandId: string;
|
|
4757
4773
|
isActive: boolean;
|
|
@@ -4903,8 +4919,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4903
4919
|
};
|
|
4904
4920
|
};
|
|
4905
4921
|
};
|
|
4906
|
-
name: string | null;
|
|
4907
4922
|
id: string;
|
|
4923
|
+
name: string | null;
|
|
4908
4924
|
isActive: boolean;
|
|
4909
4925
|
thumbnailUrl: string | null;
|
|
4910
4926
|
productId: string;
|
|
@@ -4916,8 +4932,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4916
4932
|
createdAt: string;
|
|
4917
4933
|
updatedAt: string;
|
|
4918
4934
|
deletedAt: string;
|
|
4919
|
-
name: string;
|
|
4920
4935
|
id: string;
|
|
4936
|
+
name: string;
|
|
4921
4937
|
isActive: boolean;
|
|
4922
4938
|
address: string | null;
|
|
4923
4939
|
city: string | null;
|
|
@@ -4929,8 +4945,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4929
4945
|
warehouseId: string | null;
|
|
4930
4946
|
quantity: number;
|
|
4931
4947
|
}[];
|
|
4932
|
-
id: string;
|
|
4933
4948
|
email: string | null;
|
|
4949
|
+
id: string;
|
|
4934
4950
|
brandId: string;
|
|
4935
4951
|
deliveryZoneId: string;
|
|
4936
4952
|
recoveryAttempts: number;
|
|
@@ -4975,8 +4991,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4975
4991
|
};
|
|
4976
4992
|
output: {
|
|
4977
4993
|
brand: {
|
|
4978
|
-
name: string;
|
|
4979
4994
|
id: string;
|
|
4995
|
+
name: string;
|
|
4980
4996
|
slug: string;
|
|
4981
4997
|
logoUrl: string | null;
|
|
4982
4998
|
siteUrl: string;
|
|
@@ -4988,15 +5004,15 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4988
5004
|
};
|
|
4989
5005
|
deliveryZone: {
|
|
4990
5006
|
state: {
|
|
4991
|
-
name: string;
|
|
4992
5007
|
id: string;
|
|
5008
|
+
name: string;
|
|
4993
5009
|
createdAt: string;
|
|
4994
5010
|
updatedAt: string;
|
|
4995
5011
|
deletedAt: string;
|
|
4996
5012
|
isActive: boolean;
|
|
4997
5013
|
};
|
|
4998
|
-
name: string;
|
|
4999
5014
|
id: string;
|
|
5015
|
+
name: string;
|
|
5000
5016
|
createdAt: string;
|
|
5001
5017
|
updatedAt: string;
|
|
5002
5018
|
deletedAt: string;
|
|
@@ -5008,12 +5024,14 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5008
5024
|
allowOnline: boolean;
|
|
5009
5025
|
waybillOnly: boolean;
|
|
5010
5026
|
estimatedDays: number | null;
|
|
5027
|
+
noteTitle: string | null;
|
|
5028
|
+
noteContent: string | null;
|
|
5011
5029
|
isActive: boolean;
|
|
5012
5030
|
};
|
|
5013
5031
|
items: {
|
|
5014
5032
|
warehouse: {
|
|
5015
|
-
name: string;
|
|
5016
5033
|
id: string;
|
|
5034
|
+
name: string;
|
|
5017
5035
|
createdAt: string;
|
|
5018
5036
|
updatedAt: string;
|
|
5019
5037
|
deletedAt: string;
|
|
@@ -5024,8 +5042,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5024
5042
|
};
|
|
5025
5043
|
variant: {
|
|
5026
5044
|
product: {
|
|
5027
|
-
name: string;
|
|
5028
5045
|
id: string;
|
|
5046
|
+
name: string;
|
|
5029
5047
|
slug: string;
|
|
5030
5048
|
createdAt: string;
|
|
5031
5049
|
updatedAt: string;
|
|
@@ -5180,8 +5198,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5180
5198
|
};
|
|
5181
5199
|
};
|
|
5182
5200
|
};
|
|
5183
|
-
name: string | null;
|
|
5184
5201
|
id: string;
|
|
5202
|
+
name: string | null;
|
|
5185
5203
|
createdAt: string;
|
|
5186
5204
|
updatedAt: string;
|
|
5187
5205
|
deletedAt: string;
|
|
@@ -5200,8 +5218,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5200
5218
|
quantity: number;
|
|
5201
5219
|
priceAtPurchase: string;
|
|
5202
5220
|
}[];
|
|
5203
|
-
id: string;
|
|
5204
5221
|
email: string | null;
|
|
5222
|
+
id: string;
|
|
5205
5223
|
createdAt: string;
|
|
5206
5224
|
updatedAt: string;
|
|
5207
5225
|
deletedAt: string;
|
|
@@ -5291,8 +5309,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5291
5309
|
createdAt: string;
|
|
5292
5310
|
updatedAt: string;
|
|
5293
5311
|
deletedAt: string;
|
|
5294
|
-
name: string;
|
|
5295
5312
|
id: string;
|
|
5313
|
+
name: string;
|
|
5296
5314
|
slug: string;
|
|
5297
5315
|
logoUrl: string | null;
|
|
5298
5316
|
siteUrl: string;
|
|
@@ -5309,18 +5327,20 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5309
5327
|
createdAt: string;
|
|
5310
5328
|
updatedAt: string;
|
|
5311
5329
|
deletedAt: string;
|
|
5312
|
-
name: string;
|
|
5313
5330
|
id: string;
|
|
5331
|
+
name: string;
|
|
5314
5332
|
isActive: boolean;
|
|
5315
5333
|
};
|
|
5316
|
-
name: string;
|
|
5317
5334
|
id: string;
|
|
5335
|
+
name: string;
|
|
5318
5336
|
brandId: string | null;
|
|
5319
5337
|
stateId: string;
|
|
5320
5338
|
allowCOD: boolean;
|
|
5321
5339
|
allowOnline: boolean;
|
|
5322
5340
|
waybillOnly: boolean;
|
|
5323
5341
|
estimatedDays: number | null;
|
|
5342
|
+
noteTitle: string | null;
|
|
5343
|
+
noteContent: string | null;
|
|
5324
5344
|
isActive: boolean;
|
|
5325
5345
|
};
|
|
5326
5346
|
items: {
|
|
@@ -5334,8 +5354,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5334
5354
|
createdAt: string;
|
|
5335
5355
|
updatedAt: string;
|
|
5336
5356
|
deletedAt: string;
|
|
5337
|
-
name: string;
|
|
5338
5357
|
id: string;
|
|
5358
|
+
name: string;
|
|
5339
5359
|
slug: string;
|
|
5340
5360
|
brandId: string;
|
|
5341
5361
|
isActive: boolean;
|
|
@@ -5487,8 +5507,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5487
5507
|
};
|
|
5488
5508
|
};
|
|
5489
5509
|
};
|
|
5490
|
-
name: string | null;
|
|
5491
5510
|
id: string;
|
|
5511
|
+
name: string | null;
|
|
5492
5512
|
isActive: boolean;
|
|
5493
5513
|
thumbnailUrl: string | null;
|
|
5494
5514
|
productId: string;
|
|
@@ -5500,8 +5520,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5500
5520
|
createdAt: string;
|
|
5501
5521
|
updatedAt: string;
|
|
5502
5522
|
deletedAt: string;
|
|
5503
|
-
name: string;
|
|
5504
5523
|
id: string;
|
|
5524
|
+
name: string;
|
|
5505
5525
|
isActive: boolean;
|
|
5506
5526
|
address: string | null;
|
|
5507
5527
|
city: string | null;
|
|
@@ -5513,8 +5533,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5513
5533
|
warehouseId: string | null;
|
|
5514
5534
|
quantity: number;
|
|
5515
5535
|
}[];
|
|
5516
|
-
id: string;
|
|
5517
5536
|
email: string | null;
|
|
5537
|
+
id: string;
|
|
5518
5538
|
brandId: string;
|
|
5519
5539
|
deliveryZoneId: string;
|
|
5520
5540
|
recoveryAttempts: number;
|
|
@@ -5588,8 +5608,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5588
5608
|
$get: {
|
|
5589
5609
|
input: {};
|
|
5590
5610
|
output: {
|
|
5591
|
-
name: string;
|
|
5592
5611
|
id: string;
|
|
5612
|
+
name: string;
|
|
5593
5613
|
slug: string;
|
|
5594
5614
|
logoUrl: string | null;
|
|
5595
5615
|
siteUrl: string;
|
|
@@ -5616,8 +5636,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5616
5636
|
$post: {
|
|
5617
5637
|
input: {};
|
|
5618
5638
|
output: {
|
|
5619
|
-
name: string;
|
|
5620
5639
|
id: string;
|
|
5640
|
+
name: string;
|
|
5621
5641
|
slug: string;
|
|
5622
5642
|
logoUrl: string | null;
|
|
5623
5643
|
siteUrl: string;
|
|
@@ -5664,8 +5684,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5664
5684
|
};
|
|
5665
5685
|
};
|
|
5666
5686
|
output: {
|
|
5667
|
-
name: string;
|
|
5668
5687
|
id: string;
|
|
5688
|
+
name: string;
|
|
5669
5689
|
slug: string;
|
|
5670
5690
|
logoUrl: string | null;
|
|
5671
5691
|
siteUrl: string;
|
|
@@ -5700,8 +5720,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5700
5720
|
};
|
|
5701
5721
|
};
|
|
5702
5722
|
output: {
|
|
5703
|
-
name: string;
|
|
5704
5723
|
id: string;
|
|
5724
|
+
name: string;
|
|
5705
5725
|
slug: string;
|
|
5706
5726
|
logoUrl: string | null;
|
|
5707
5727
|
siteUrl: string;
|
|
@@ -5759,8 +5779,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5759
5779
|
createdAt: string;
|
|
5760
5780
|
updatedAt: string;
|
|
5761
5781
|
deletedAt: string;
|
|
5762
|
-
name: string;
|
|
5763
5782
|
id: string;
|
|
5783
|
+
name: string;
|
|
5764
5784
|
slug: string;
|
|
5765
5785
|
logoUrl: string | null;
|
|
5766
5786
|
siteUrl: string;
|
|
@@ -5772,8 +5792,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5772
5792
|
updatedAt: string;
|
|
5773
5793
|
price: number;
|
|
5774
5794
|
deletedAt: string;
|
|
5775
|
-
name: string | null;
|
|
5776
5795
|
id: string;
|
|
5796
|
+
name: string | null;
|
|
5777
5797
|
isActive: boolean;
|
|
5778
5798
|
thumbnailUrl: string | null;
|
|
5779
5799
|
productId: string;
|
|
@@ -5781,8 +5801,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5781
5801
|
trackInventory: boolean;
|
|
5782
5802
|
lowStockThreshold: number | null;
|
|
5783
5803
|
}[];
|
|
5784
|
-
name: string;
|
|
5785
5804
|
id: string;
|
|
5805
|
+
name: string;
|
|
5786
5806
|
slug: string;
|
|
5787
5807
|
createdAt: string;
|
|
5788
5808
|
updatedAt: string;
|
|
@@ -5958,8 +5978,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5958
5978
|
createdAt: string;
|
|
5959
5979
|
updatedAt: string;
|
|
5960
5980
|
deletedAt: string;
|
|
5961
|
-
name: string;
|
|
5962
5981
|
id: string;
|
|
5982
|
+
name: string;
|
|
5963
5983
|
slug: string;
|
|
5964
5984
|
logoUrl: string | null;
|
|
5965
5985
|
siteUrl: string;
|
|
@@ -5971,8 +5991,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5971
5991
|
updatedAt: string;
|
|
5972
5992
|
price: number;
|
|
5973
5993
|
deletedAt: string;
|
|
5974
|
-
name: string | null;
|
|
5975
5994
|
id: string;
|
|
5995
|
+
name: string | null;
|
|
5976
5996
|
isActive: boolean;
|
|
5977
5997
|
thumbnailUrl: string | null;
|
|
5978
5998
|
productId: string;
|
|
@@ -5980,8 +6000,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5980
6000
|
trackInventory: boolean;
|
|
5981
6001
|
lowStockThreshold: number | null;
|
|
5982
6002
|
}[];
|
|
5983
|
-
name: string;
|
|
5984
6003
|
id: string;
|
|
6004
|
+
name: string;
|
|
5985
6005
|
slug: string;
|
|
5986
6006
|
createdAt: string;
|
|
5987
6007
|
updatedAt: string;
|
|
@@ -6178,8 +6198,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6178
6198
|
createdAt: string;
|
|
6179
6199
|
updatedAt: string;
|
|
6180
6200
|
deletedAt: string;
|
|
6181
|
-
name: string;
|
|
6182
6201
|
id: string;
|
|
6202
|
+
name: string;
|
|
6183
6203
|
slug: string;
|
|
6184
6204
|
logoUrl: string | null;
|
|
6185
6205
|
siteUrl: string;
|
|
@@ -6191,8 +6211,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6191
6211
|
updatedAt: string;
|
|
6192
6212
|
price: number;
|
|
6193
6213
|
deletedAt: string;
|
|
6194
|
-
name: string | null;
|
|
6195
6214
|
id: string;
|
|
6215
|
+
name: string | null;
|
|
6196
6216
|
isActive: boolean;
|
|
6197
6217
|
thumbnailUrl: string | null;
|
|
6198
6218
|
productId: string;
|
|
@@ -6200,8 +6220,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6200
6220
|
trackInventory: boolean;
|
|
6201
6221
|
lowStockThreshold: number | null;
|
|
6202
6222
|
}[];
|
|
6203
|
-
name: string;
|
|
6204
6223
|
id: string;
|
|
6224
|
+
name: string;
|
|
6205
6225
|
slug: string;
|
|
6206
6226
|
createdAt: string;
|
|
6207
6227
|
updatedAt: string;
|
|
@@ -6385,8 +6405,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6385
6405
|
createdAt: string;
|
|
6386
6406
|
updatedAt: string;
|
|
6387
6407
|
deletedAt: string;
|
|
6388
|
-
name: string;
|
|
6389
6408
|
id: string;
|
|
6409
|
+
name: string;
|
|
6390
6410
|
slug: string;
|
|
6391
6411
|
logoUrl: string | null;
|
|
6392
6412
|
siteUrl: string;
|
|
@@ -6398,8 +6418,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6398
6418
|
updatedAt: string;
|
|
6399
6419
|
price: number;
|
|
6400
6420
|
deletedAt: string;
|
|
6401
|
-
name: string | null;
|
|
6402
6421
|
id: string;
|
|
6422
|
+
name: string | null;
|
|
6403
6423
|
isActive: boolean;
|
|
6404
6424
|
thumbnailUrl: string | null;
|
|
6405
6425
|
productId: string;
|
|
@@ -6407,8 +6427,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6407
6427
|
trackInventory: boolean;
|
|
6408
6428
|
lowStockThreshold: number | null;
|
|
6409
6429
|
}[];
|
|
6410
|
-
name: string;
|
|
6411
6430
|
id: string;
|
|
6431
|
+
name: string;
|
|
6412
6432
|
slug: string;
|
|
6413
6433
|
createdAt: string;
|
|
6414
6434
|
updatedAt: string;
|
|
@@ -6611,8 +6631,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6611
6631
|
updatedAt: string;
|
|
6612
6632
|
price: number;
|
|
6613
6633
|
deletedAt: string;
|
|
6614
|
-
name: string | null;
|
|
6615
6634
|
id: string;
|
|
6635
|
+
name: string | null;
|
|
6616
6636
|
isActive: boolean;
|
|
6617
6637
|
thumbnailUrl: string | null;
|
|
6618
6638
|
productId: string;
|
|
@@ -6647,8 +6667,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6647
6667
|
updatedAt: string;
|
|
6648
6668
|
price: number;
|
|
6649
6669
|
deletedAt: string;
|
|
6650
|
-
name: string | null;
|
|
6651
6670
|
id: string;
|
|
6671
|
+
name: string | null;
|
|
6652
6672
|
isActive: boolean;
|
|
6653
6673
|
thumbnailUrl: string | null;
|
|
6654
6674
|
productId: string;
|
|
@@ -6709,8 +6729,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6709
6729
|
updatedAt: string;
|
|
6710
6730
|
price: number;
|
|
6711
6731
|
deletedAt: string;
|
|
6712
|
-
name: string | null;
|
|
6713
6732
|
id: string;
|
|
6733
|
+
name: string | null;
|
|
6714
6734
|
isActive: boolean;
|
|
6715
6735
|
thumbnailUrl: string | null;
|
|
6716
6736
|
productId: string;
|
|
@@ -6747,8 +6767,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6747
6767
|
updatedAt: string;
|
|
6748
6768
|
price: number;
|
|
6749
6769
|
deletedAt: string;
|
|
6750
|
-
name: string | null;
|
|
6751
6770
|
id: string;
|
|
6771
|
+
name: string | null;
|
|
6752
6772
|
isActive: boolean;
|
|
6753
6773
|
thumbnailUrl: string | null;
|
|
6754
6774
|
productId: string;
|
|
@@ -6805,8 +6825,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6805
6825
|
updatedAt: string;
|
|
6806
6826
|
price: number;
|
|
6807
6827
|
deletedAt: string;
|
|
6808
|
-
name: string | null;
|
|
6809
6828
|
id: string;
|
|
6829
|
+
name: string | null;
|
|
6810
6830
|
isActive: boolean;
|
|
6811
6831
|
thumbnailUrl: string | null;
|
|
6812
6832
|
productId: string;
|
|
@@ -6846,8 +6866,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6846
6866
|
$get: {
|
|
6847
6867
|
input: {};
|
|
6848
6868
|
output: {
|
|
6849
|
-
name: string;
|
|
6850
6869
|
id: string;
|
|
6870
|
+
name: string;
|
|
6851
6871
|
createdAt: string;
|
|
6852
6872
|
updatedAt: string;
|
|
6853
6873
|
deletedAt: string;
|
|
@@ -6873,8 +6893,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6873
6893
|
$post: {
|
|
6874
6894
|
input: {};
|
|
6875
6895
|
output: {
|
|
6876
|
-
name: string;
|
|
6877
6896
|
id: string;
|
|
6897
|
+
name: string;
|
|
6878
6898
|
createdAt: string;
|
|
6879
6899
|
updatedAt: string;
|
|
6880
6900
|
deletedAt: string;
|
|
@@ -6906,8 +6926,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6906
6926
|
};
|
|
6907
6927
|
};
|
|
6908
6928
|
output: {
|
|
6909
|
-
name: string;
|
|
6910
6929
|
id: string;
|
|
6930
|
+
name: string;
|
|
6911
6931
|
createdAt: string;
|
|
6912
6932
|
updatedAt: string;
|
|
6913
6933
|
deletedAt: string;
|
|
@@ -6983,8 +7003,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6983
7003
|
variant: {
|
|
6984
7004
|
product: {
|
|
6985
7005
|
brand: {
|
|
6986
|
-
name: string;
|
|
6987
7006
|
id: string;
|
|
7007
|
+
name: string;
|
|
6988
7008
|
slug: string;
|
|
6989
7009
|
logoUrl: string | null;
|
|
6990
7010
|
siteUrl: string;
|
|
@@ -6994,8 +7014,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6994
7014
|
updatedAt: string;
|
|
6995
7015
|
deletedAt: string;
|
|
6996
7016
|
};
|
|
6997
|
-
name: string;
|
|
6998
7017
|
id: string;
|
|
7018
|
+
name: string;
|
|
6999
7019
|
slug: string;
|
|
7000
7020
|
createdAt: string;
|
|
7001
7021
|
updatedAt: string;
|
|
@@ -7150,8 +7170,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7150
7170
|
};
|
|
7151
7171
|
};
|
|
7152
7172
|
};
|
|
7153
|
-
name: string | null;
|
|
7154
7173
|
id: string;
|
|
7174
|
+
name: string | null;
|
|
7155
7175
|
createdAt: string;
|
|
7156
7176
|
updatedAt: string;
|
|
7157
7177
|
deletedAt: string;
|
|
@@ -7169,8 +7189,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7169
7189
|
warehouseId: string;
|
|
7170
7190
|
inventoryCount: number;
|
|
7171
7191
|
}[];
|
|
7172
|
-
name: string;
|
|
7173
7192
|
id: string;
|
|
7193
|
+
name: string;
|
|
7174
7194
|
createdAt: string;
|
|
7175
7195
|
updatedAt: string;
|
|
7176
7196
|
deletedAt: string;
|
|
@@ -7525,8 +7545,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7525
7545
|
createdAt: string;
|
|
7526
7546
|
updatedAt: string;
|
|
7527
7547
|
deletedAt: string;
|
|
7528
|
-
name: string;
|
|
7529
7548
|
id: string;
|
|
7549
|
+
name: string;
|
|
7530
7550
|
slug: string;
|
|
7531
7551
|
logoUrl: string | null;
|
|
7532
7552
|
siteUrl: string;
|
|
@@ -7543,18 +7563,20 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7543
7563
|
createdAt: string;
|
|
7544
7564
|
updatedAt: string;
|
|
7545
7565
|
deletedAt: string;
|
|
7546
|
-
name: string;
|
|
7547
7566
|
id: string;
|
|
7567
|
+
name: string;
|
|
7548
7568
|
isActive: boolean;
|
|
7549
7569
|
};
|
|
7550
|
-
name: string;
|
|
7551
7570
|
id: string;
|
|
7571
|
+
name: string;
|
|
7552
7572
|
brandId: string | null;
|
|
7553
7573
|
stateId: string;
|
|
7554
7574
|
allowCOD: boolean;
|
|
7555
7575
|
allowOnline: boolean;
|
|
7556
7576
|
waybillOnly: boolean;
|
|
7557
7577
|
estimatedDays: number | null;
|
|
7578
|
+
noteTitle: string | null;
|
|
7579
|
+
noteContent: string | null;
|
|
7558
7580
|
isActive: boolean;
|
|
7559
7581
|
};
|
|
7560
7582
|
items: {
|
|
@@ -7568,8 +7590,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7568
7590
|
createdAt: string;
|
|
7569
7591
|
updatedAt: string;
|
|
7570
7592
|
deletedAt: string;
|
|
7571
|
-
name: string;
|
|
7572
7593
|
id: string;
|
|
7594
|
+
name: string;
|
|
7573
7595
|
slug: string;
|
|
7574
7596
|
brandId: string;
|
|
7575
7597
|
isActive: boolean;
|
|
@@ -7721,8 +7743,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7721
7743
|
};
|
|
7722
7744
|
};
|
|
7723
7745
|
};
|
|
7724
|
-
name: string | null;
|
|
7725
7746
|
id: string;
|
|
7747
|
+
name: string | null;
|
|
7726
7748
|
isActive: boolean;
|
|
7727
7749
|
thumbnailUrl: string | null;
|
|
7728
7750
|
productId: string;
|
|
@@ -7734,8 +7756,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7734
7756
|
createdAt: string;
|
|
7735
7757
|
updatedAt: string;
|
|
7736
7758
|
deletedAt: string;
|
|
7737
|
-
name: string;
|
|
7738
7759
|
id: string;
|
|
7760
|
+
name: string;
|
|
7739
7761
|
isActive: boolean;
|
|
7740
7762
|
address: string | null;
|
|
7741
7763
|
city: string | null;
|
|
@@ -7747,8 +7769,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7747
7769
|
warehouseId: string | null;
|
|
7748
7770
|
quantity: number;
|
|
7749
7771
|
}[];
|
|
7750
|
-
id: string;
|
|
7751
7772
|
email: string | null;
|
|
7773
|
+
id: string;
|
|
7752
7774
|
brandId: string;
|
|
7753
7775
|
deliveryZoneId: string;
|
|
7754
7776
|
recoveryAttempts: number;
|
|
@@ -7811,8 +7833,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7811
7833
|
createdAt: string;
|
|
7812
7834
|
updatedAt: string;
|
|
7813
7835
|
deletedAt: string;
|
|
7814
|
-
name: string;
|
|
7815
7836
|
id: string;
|
|
7837
|
+
name: string;
|
|
7816
7838
|
slug: string;
|
|
7817
7839
|
logoUrl: string | null;
|
|
7818
7840
|
siteUrl: string;
|
|
@@ -7829,18 +7851,20 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7829
7851
|
createdAt: string;
|
|
7830
7852
|
updatedAt: string;
|
|
7831
7853
|
deletedAt: string;
|
|
7832
|
-
name: string;
|
|
7833
7854
|
id: string;
|
|
7855
|
+
name: string;
|
|
7834
7856
|
isActive: boolean;
|
|
7835
7857
|
};
|
|
7836
|
-
name: string;
|
|
7837
7858
|
id: string;
|
|
7859
|
+
name: string;
|
|
7838
7860
|
brandId: string | null;
|
|
7839
7861
|
stateId: string;
|
|
7840
7862
|
allowCOD: boolean;
|
|
7841
7863
|
allowOnline: boolean;
|
|
7842
7864
|
waybillOnly: boolean;
|
|
7843
7865
|
estimatedDays: number | null;
|
|
7866
|
+
noteTitle: string | null;
|
|
7867
|
+
noteContent: string | null;
|
|
7844
7868
|
isActive: boolean;
|
|
7845
7869
|
};
|
|
7846
7870
|
items: {
|
|
@@ -7854,8 +7878,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7854
7878
|
createdAt: string;
|
|
7855
7879
|
updatedAt: string;
|
|
7856
7880
|
deletedAt: string;
|
|
7857
|
-
name: string;
|
|
7858
7881
|
id: string;
|
|
7882
|
+
name: string;
|
|
7859
7883
|
slug: string;
|
|
7860
7884
|
brandId: string;
|
|
7861
7885
|
isActive: boolean;
|
|
@@ -8007,8 +8031,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8007
8031
|
};
|
|
8008
8032
|
};
|
|
8009
8033
|
};
|
|
8010
|
-
name: string | null;
|
|
8011
8034
|
id: string;
|
|
8035
|
+
name: string | null;
|
|
8012
8036
|
isActive: boolean;
|
|
8013
8037
|
thumbnailUrl: string | null;
|
|
8014
8038
|
productId: string;
|
|
@@ -8020,8 +8044,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8020
8044
|
createdAt: string;
|
|
8021
8045
|
updatedAt: string;
|
|
8022
8046
|
deletedAt: string;
|
|
8023
|
-
name: string;
|
|
8024
8047
|
id: string;
|
|
8048
|
+
name: string;
|
|
8025
8049
|
isActive: boolean;
|
|
8026
8050
|
address: string | null;
|
|
8027
8051
|
city: string | null;
|
|
@@ -8033,8 +8057,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8033
8057
|
warehouseId: string | null;
|
|
8034
8058
|
quantity: number;
|
|
8035
8059
|
}[];
|
|
8036
|
-
id: string;
|
|
8037
8060
|
email: string | null;
|
|
8061
|
+
id: string;
|
|
8038
8062
|
brandId: string;
|
|
8039
8063
|
deliveryZoneId: string;
|
|
8040
8064
|
recoveryAttempts: number;
|
|
@@ -8082,8 +8106,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8082
8106
|
createdAt: string;
|
|
8083
8107
|
updatedAt: string;
|
|
8084
8108
|
deletedAt: string;
|
|
8085
|
-
name: string;
|
|
8086
8109
|
id: string;
|
|
8110
|
+
name: string;
|
|
8087
8111
|
slug: string;
|
|
8088
8112
|
logoUrl: string | null;
|
|
8089
8113
|
siteUrl: string;
|
|
@@ -8103,14 +8127,14 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8103
8127
|
lastRecoveryAttemptAt: string;
|
|
8104
8128
|
recoveryDiscountCode: {
|
|
8105
8129
|
id: string;
|
|
8130
|
+
type: string;
|
|
8131
|
+
value: string;
|
|
8106
8132
|
createdAt: string;
|
|
8107
8133
|
updatedAt: string;
|
|
8108
8134
|
deletedAt: string;
|
|
8109
8135
|
brandId: string | null;
|
|
8110
8136
|
isActive: boolean;
|
|
8111
8137
|
code: string;
|
|
8112
|
-
type: string;
|
|
8113
|
-
value: string;
|
|
8114
8138
|
minPurchase: string;
|
|
8115
8139
|
maxDiscount: string;
|
|
8116
8140
|
usageLimit: number | null;
|
|
@@ -8128,8 +8152,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8128
8152
|
variant: {
|
|
8129
8153
|
price: number;
|
|
8130
8154
|
product: {
|
|
8131
|
-
name: string;
|
|
8132
8155
|
id: string;
|
|
8156
|
+
name: string;
|
|
8133
8157
|
slug: string;
|
|
8134
8158
|
createdAt: string;
|
|
8135
8159
|
updatedAt: string;
|
|
@@ -8284,8 +8308,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8284
8308
|
};
|
|
8285
8309
|
};
|
|
8286
8310
|
};
|
|
8287
|
-
name: string | null;
|
|
8288
8311
|
id: string;
|
|
8312
|
+
name: string | null;
|
|
8289
8313
|
createdAt: string;
|
|
8290
8314
|
updatedAt: string;
|
|
8291
8315
|
deletedAt: string;
|
|
@@ -8365,8 +8389,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8365
8389
|
createdAt: string;
|
|
8366
8390
|
updatedAt: string;
|
|
8367
8391
|
deletedAt: string;
|
|
8368
|
-
name: string;
|
|
8369
8392
|
id: string;
|
|
8393
|
+
name: string;
|
|
8370
8394
|
slug: string;
|
|
8371
8395
|
logoUrl: string | null;
|
|
8372
8396
|
siteUrl: string;
|
|
@@ -8386,14 +8410,14 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8386
8410
|
lastRecoveryAttemptAt: string;
|
|
8387
8411
|
recoveryDiscountCode: {
|
|
8388
8412
|
id: string;
|
|
8413
|
+
type: string;
|
|
8414
|
+
value: string;
|
|
8389
8415
|
createdAt: string;
|
|
8390
8416
|
updatedAt: string;
|
|
8391
8417
|
deletedAt: string;
|
|
8392
8418
|
brandId: string | null;
|
|
8393
8419
|
isActive: boolean;
|
|
8394
8420
|
code: string;
|
|
8395
|
-
type: string;
|
|
8396
|
-
value: string;
|
|
8397
8421
|
minPurchase: string;
|
|
8398
8422
|
maxDiscount: string;
|
|
8399
8423
|
usageLimit: number | null;
|
|
@@ -8411,8 +8435,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8411
8435
|
variant: {
|
|
8412
8436
|
price: number;
|
|
8413
8437
|
product: {
|
|
8414
|
-
name: string;
|
|
8415
8438
|
id: string;
|
|
8439
|
+
name: string;
|
|
8416
8440
|
slug: string;
|
|
8417
8441
|
createdAt: string;
|
|
8418
8442
|
updatedAt: string;
|
|
@@ -8567,8 +8591,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8567
8591
|
};
|
|
8568
8592
|
};
|
|
8569
8593
|
};
|
|
8570
|
-
name: string | null;
|
|
8571
8594
|
id: string;
|
|
8595
|
+
name: string | null;
|
|
8572
8596
|
createdAt: string;
|
|
8573
8597
|
updatedAt: string;
|
|
8574
8598
|
deletedAt: string;
|
|
@@ -8690,8 +8714,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8690
8714
|
createdAt: string;
|
|
8691
8715
|
updatedAt: string;
|
|
8692
8716
|
deletedAt: string;
|
|
8693
|
-
name: string;
|
|
8694
8717
|
id: string;
|
|
8718
|
+
name: string;
|
|
8695
8719
|
slug: string;
|
|
8696
8720
|
logoUrl: string | null;
|
|
8697
8721
|
siteUrl: string;
|
|
@@ -8701,10 +8725,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8701
8725
|
isExpired: boolean;
|
|
8702
8726
|
usagePercentage: number;
|
|
8703
8727
|
id: string;
|
|
8728
|
+
type: string;
|
|
8704
8729
|
brandId: string | null;
|
|
8705
8730
|
isActive: boolean;
|
|
8706
8731
|
code: string;
|
|
8707
|
-
type: string;
|
|
8708
8732
|
usageLimit: number | null;
|
|
8709
8733
|
usageCount: number;
|
|
8710
8734
|
perCustomerLimit: number | null;
|
|
@@ -8769,8 +8793,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8769
8793
|
createdAt: string;
|
|
8770
8794
|
updatedAt: string;
|
|
8771
8795
|
deletedAt: string;
|
|
8772
|
-
name: string;
|
|
8773
8796
|
id: string;
|
|
8797
|
+
name: string;
|
|
8774
8798
|
slug: string;
|
|
8775
8799
|
logoUrl: string | null;
|
|
8776
8800
|
siteUrl: string;
|
|
@@ -8780,10 +8804,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8780
8804
|
isExpired: boolean;
|
|
8781
8805
|
usagePercentage: number;
|
|
8782
8806
|
id: string;
|
|
8807
|
+
type: string;
|
|
8783
8808
|
brandId: string | null;
|
|
8784
8809
|
isActive: boolean;
|
|
8785
8810
|
code: string;
|
|
8786
|
-
type: string;
|
|
8787
8811
|
usageLimit: number | null;
|
|
8788
8812
|
usageCount: number;
|
|
8789
8813
|
perCustomerLimit: number | null;
|
|
@@ -8845,8 +8869,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8845
8869
|
createdAt: string;
|
|
8846
8870
|
updatedAt: string;
|
|
8847
8871
|
deletedAt: string;
|
|
8848
|
-
name: string;
|
|
8849
8872
|
id: string;
|
|
8873
|
+
name: string;
|
|
8850
8874
|
slug: string;
|
|
8851
8875
|
logoUrl: string | null;
|
|
8852
8876
|
siteUrl: string;
|
|
@@ -8856,10 +8880,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8856
8880
|
isExpired: boolean;
|
|
8857
8881
|
usagePercentage: number;
|
|
8858
8882
|
id: string;
|
|
8883
|
+
type: string;
|
|
8859
8884
|
brandId: string | null;
|
|
8860
8885
|
isActive: boolean;
|
|
8861
8886
|
code: string;
|
|
8862
|
-
type: string;
|
|
8863
8887
|
usageLimit: number | null;
|
|
8864
8888
|
usageCount: number;
|
|
8865
8889
|
perCustomerLimit: number | null;
|
|
@@ -8933,8 +8957,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8933
8957
|
createdAt: string;
|
|
8934
8958
|
updatedAt: string;
|
|
8935
8959
|
deletedAt: string;
|
|
8936
|
-
name: string;
|
|
8937
8960
|
id: string;
|
|
8961
|
+
name: string;
|
|
8938
8962
|
slug: string;
|
|
8939
8963
|
logoUrl: string | null;
|
|
8940
8964
|
siteUrl: string;
|
|
@@ -8944,10 +8968,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8944
8968
|
isExpired: boolean;
|
|
8945
8969
|
usagePercentage: number;
|
|
8946
8970
|
id: string;
|
|
8971
|
+
type: string;
|
|
8947
8972
|
brandId: string | null;
|
|
8948
8973
|
isActive: boolean;
|
|
8949
8974
|
code: string;
|
|
8950
|
-
type: string;
|
|
8951
8975
|
usageLimit: number | null;
|
|
8952
8976
|
usageCount: number;
|
|
8953
8977
|
perCustomerLimit: number | null;
|
|
@@ -9051,8 +9075,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9051
9075
|
createdAt: string;
|
|
9052
9076
|
updatedAt: string;
|
|
9053
9077
|
deletedAt: string;
|
|
9054
|
-
name: string;
|
|
9055
9078
|
id: string;
|
|
9079
|
+
name: string;
|
|
9056
9080
|
slug: string;
|
|
9057
9081
|
logoUrl: string | null;
|
|
9058
9082
|
siteUrl: string;
|
|
@@ -9061,10 +9085,10 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9061
9085
|
};
|
|
9062
9086
|
isExpired: boolean;
|
|
9063
9087
|
id: string;
|
|
9088
|
+
type: string;
|
|
9064
9089
|
brandId: string | null;
|
|
9065
9090
|
isActive: boolean;
|
|
9066
9091
|
code: string;
|
|
9067
|
-
type: string;
|
|
9068
9092
|
usageLimit: number | null;
|
|
9069
9093
|
usageCount: number;
|
|
9070
9094
|
perCustomerLimit: number | null;
|
|
@@ -9163,8 +9187,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9163
9187
|
createdAt: string;
|
|
9164
9188
|
updatedAt: string;
|
|
9165
9189
|
deletedAt: string;
|
|
9166
|
-
name: string;
|
|
9167
9190
|
id: string;
|
|
9191
|
+
name: string;
|
|
9168
9192
|
slug: string;
|
|
9169
9193
|
logoUrl: string | null;
|
|
9170
9194
|
siteUrl: string;
|
|
@@ -9174,29 +9198,31 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9174
9198
|
stateName: string;
|
|
9175
9199
|
brandName: string;
|
|
9176
9200
|
state: {
|
|
9177
|
-
name: string;
|
|
9178
9201
|
id: string;
|
|
9202
|
+
name: string;
|
|
9179
9203
|
createdAt: string;
|
|
9180
9204
|
updatedAt: string;
|
|
9181
9205
|
deletedAt: string;
|
|
9182
9206
|
isActive: boolean;
|
|
9183
9207
|
};
|
|
9184
|
-
name: string;
|
|
9185
9208
|
id: string;
|
|
9209
|
+
name: string;
|
|
9186
9210
|
brandId: string | null;
|
|
9187
9211
|
stateId: string;
|
|
9188
9212
|
allowCOD: boolean;
|
|
9189
9213
|
allowOnline: boolean;
|
|
9190
9214
|
waybillOnly: boolean;
|
|
9191
9215
|
estimatedDays: number | null;
|
|
9216
|
+
noteTitle: string | null;
|
|
9217
|
+
noteContent: string | null;
|
|
9192
9218
|
isActive: boolean;
|
|
9193
9219
|
}[];
|
|
9194
9220
|
zonesCount: number;
|
|
9195
9221
|
createdAt: string;
|
|
9196
9222
|
updatedAt: string;
|
|
9197
9223
|
deletedAt: string;
|
|
9198
|
-
name: string;
|
|
9199
9224
|
id: string;
|
|
9225
|
+
name: string;
|
|
9200
9226
|
isActive: boolean;
|
|
9201
9227
|
}[];
|
|
9202
9228
|
outputFormat: "json";
|
|
@@ -9230,8 +9256,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9230
9256
|
createdAt: string;
|
|
9231
9257
|
updatedAt: string;
|
|
9232
9258
|
deletedAt: string;
|
|
9233
|
-
name: string;
|
|
9234
9259
|
id: string;
|
|
9260
|
+
name: string;
|
|
9235
9261
|
isActive: boolean;
|
|
9236
9262
|
deliveryZones?: never;
|
|
9237
9263
|
};
|
|
@@ -9291,8 +9317,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9291
9317
|
createdAt: string;
|
|
9292
9318
|
updatedAt: string;
|
|
9293
9319
|
deletedAt: string;
|
|
9294
|
-
name: string;
|
|
9295
9320
|
id: string;
|
|
9321
|
+
name: string;
|
|
9296
9322
|
isActive: boolean;
|
|
9297
9323
|
deliveryZones?: never;
|
|
9298
9324
|
};
|
|
@@ -9349,8 +9375,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9349
9375
|
createdAt: string;
|
|
9350
9376
|
updatedAt: string;
|
|
9351
9377
|
deletedAt: string;
|
|
9352
|
-
name: string;
|
|
9353
9378
|
id: string;
|
|
9379
|
+
name: string;
|
|
9354
9380
|
slug: string;
|
|
9355
9381
|
logoUrl: string | null;
|
|
9356
9382
|
siteUrl: string;
|
|
@@ -9360,21 +9386,23 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9360
9386
|
stateName: string;
|
|
9361
9387
|
brandName: string;
|
|
9362
9388
|
state: {
|
|
9363
|
-
name: string;
|
|
9364
9389
|
id: string;
|
|
9390
|
+
name: string;
|
|
9365
9391
|
createdAt: string;
|
|
9366
9392
|
updatedAt: string;
|
|
9367
9393
|
deletedAt: string;
|
|
9368
9394
|
isActive: boolean;
|
|
9369
9395
|
};
|
|
9370
|
-
name: string;
|
|
9371
9396
|
id: string;
|
|
9397
|
+
name: string;
|
|
9372
9398
|
brandId: string | null;
|
|
9373
9399
|
stateId: string;
|
|
9374
9400
|
allowCOD: boolean;
|
|
9375
9401
|
allowOnline: boolean;
|
|
9376
9402
|
waybillOnly: boolean;
|
|
9377
9403
|
estimatedDays: number | null;
|
|
9404
|
+
noteTitle: string | null;
|
|
9405
|
+
noteContent: string | null;
|
|
9378
9406
|
isActive: boolean;
|
|
9379
9407
|
}[];
|
|
9380
9408
|
outputFormat: "json";
|
|
@@ -9423,8 +9451,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9423
9451
|
createdAt: string;
|
|
9424
9452
|
updatedAt: string;
|
|
9425
9453
|
deletedAt: string;
|
|
9426
|
-
name: string;
|
|
9427
9454
|
id: string;
|
|
9455
|
+
name: string;
|
|
9428
9456
|
slug: string;
|
|
9429
9457
|
logoUrl: string | null;
|
|
9430
9458
|
siteUrl: string;
|
|
@@ -9434,21 +9462,23 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9434
9462
|
stateName: string;
|
|
9435
9463
|
brandName: string;
|
|
9436
9464
|
state: {
|
|
9437
|
-
name: string;
|
|
9438
9465
|
id: string;
|
|
9466
|
+
name: string;
|
|
9439
9467
|
createdAt: string;
|
|
9440
9468
|
updatedAt: string;
|
|
9441
9469
|
deletedAt: string;
|
|
9442
9470
|
isActive: boolean;
|
|
9443
9471
|
};
|
|
9444
|
-
name: string;
|
|
9445
9472
|
id: string;
|
|
9473
|
+
name: string;
|
|
9446
9474
|
brandId: string | null;
|
|
9447
9475
|
stateId: string;
|
|
9448
9476
|
allowCOD: boolean;
|
|
9449
9477
|
allowOnline: boolean;
|
|
9450
9478
|
waybillOnly: boolean;
|
|
9451
9479
|
estimatedDays: number | null;
|
|
9480
|
+
noteTitle: string | null;
|
|
9481
|
+
noteContent: string | null;
|
|
9452
9482
|
isActive: boolean;
|
|
9453
9483
|
};
|
|
9454
9484
|
outputFormat: "json";
|
|
@@ -9512,8 +9542,8 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9512
9542
|
createdAt: string;
|
|
9513
9543
|
updatedAt: string;
|
|
9514
9544
|
deletedAt: string;
|
|
9515
|
-
name: string;
|
|
9516
9545
|
id: string;
|
|
9546
|
+
name: string;
|
|
9517
9547
|
slug: string;
|
|
9518
9548
|
logoUrl: string | null;
|
|
9519
9549
|
siteUrl: string;
|
|
@@ -9523,21 +9553,23 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9523
9553
|
stateName: string;
|
|
9524
9554
|
brandName: string;
|
|
9525
9555
|
state: {
|
|
9526
|
-
name: string;
|
|
9527
9556
|
id: string;
|
|
9557
|
+
name: string;
|
|
9528
9558
|
createdAt: string;
|
|
9529
9559
|
updatedAt: string;
|
|
9530
9560
|
deletedAt: string;
|
|
9531
9561
|
isActive: boolean;
|
|
9532
9562
|
};
|
|
9533
|
-
name: string;
|
|
9534
9563
|
id: string;
|
|
9564
|
+
name: string;
|
|
9535
9565
|
brandId: string | null;
|
|
9536
9566
|
stateId: string;
|
|
9537
9567
|
allowCOD: boolean;
|
|
9538
9568
|
allowOnline: boolean;
|
|
9539
9569
|
waybillOnly: boolean;
|
|
9540
9570
|
estimatedDays: number | null;
|
|
9571
|
+
noteTitle: string | null;
|
|
9572
|
+
noteContent: string | null;
|
|
9541
9573
|
isActive: boolean;
|
|
9542
9574
|
};
|
|
9543
9575
|
outputFormat: "json";
|