@instockng/api-client 1.0.12 → 1.0.14
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/carts.d.ts +45 -0
- package/dist/fetchers/orders.d.ts +10 -0
- package/dist/fetchers/products.d.ts +10 -0
- package/dist/hooks/admin/abandoned-carts.d.ts +10 -0
- package/dist/hooks/admin/brands.d.ts +4 -0
- package/dist/hooks/admin/customers.d.ts +5 -0
- package/dist/hooks/admin/delivery-zones.d.ts +4 -0
- package/dist/hooks/admin/discount-codes.d.ts +5 -0
- package/dist/hooks/admin/inventory.d.ts +4 -0
- package/dist/hooks/admin/orders.d.ts +390 -0
- package/dist/hooks/admin/orders.js +31 -0
- package/dist/hooks/admin/products.d.ts +10 -0
- package/dist/hooks/admin/stats.d.ts +5 -0
- package/dist/hooks/admin/warehouses.d.ts +5 -0
- package/dist/hooks/public/carts.d.ts +45 -0
- package/dist/hooks/public/orders.d.ts +10 -0
- package/dist/hooks/public/products.d.ts +10 -0
- package/dist/rpc-client.d.ts +531 -0
- package/package.json +1 -1
package/dist/rpc-client.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
45
45
|
siteUrl: string;
|
|
46
46
|
domain: string;
|
|
47
47
|
metaPixelId: string | null;
|
|
48
|
+
tiktokPixelId: string | null;
|
|
48
49
|
paystackPublicKey: string | null;
|
|
49
50
|
paystackSecretKey: string | null;
|
|
50
51
|
};
|
|
@@ -166,7 +167,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
166
167
|
includes?: boolean;
|
|
167
168
|
flatMap?: boolean;
|
|
168
169
|
flat?: boolean;
|
|
170
|
+
at?: boolean;
|
|
169
171
|
};
|
|
172
|
+
at: never;
|
|
170
173
|
};
|
|
171
174
|
} | {
|
|
172
175
|
[x: number]: string | number | boolean | {
|
|
@@ -239,7 +242,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
239
242
|
includes?: boolean;
|
|
240
243
|
flatMap?: boolean;
|
|
241
244
|
flat?: boolean;
|
|
245
|
+
at?: boolean;
|
|
242
246
|
};
|
|
247
|
+
at: never;
|
|
243
248
|
};
|
|
244
249
|
};
|
|
245
250
|
id: string;
|
|
@@ -328,6 +333,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
328
333
|
siteUrl: string;
|
|
329
334
|
domain: string;
|
|
330
335
|
metaPixelId: string | null;
|
|
336
|
+
tiktokPixelId: string | null;
|
|
331
337
|
paystackPublicKey: string | null;
|
|
332
338
|
paystackSecretKey: string | null;
|
|
333
339
|
};
|
|
@@ -449,7 +455,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
449
455
|
includes?: boolean;
|
|
450
456
|
flatMap?: boolean;
|
|
451
457
|
flat?: boolean;
|
|
458
|
+
at?: boolean;
|
|
452
459
|
};
|
|
460
|
+
at: never;
|
|
453
461
|
};
|
|
454
462
|
} | {
|
|
455
463
|
[x: number]: string | number | boolean | {
|
|
@@ -522,7 +530,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
522
530
|
includes?: boolean;
|
|
523
531
|
flatMap?: boolean;
|
|
524
532
|
flat?: boolean;
|
|
533
|
+
at?: boolean;
|
|
525
534
|
};
|
|
535
|
+
at: never;
|
|
526
536
|
};
|
|
527
537
|
};
|
|
528
538
|
id: string;
|
|
@@ -599,6 +609,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
599
609
|
siteUrl: string;
|
|
600
610
|
domain: string;
|
|
601
611
|
metaPixelId: string | null;
|
|
612
|
+
tiktokPixelId: string | null;
|
|
602
613
|
paystackPublicKey: string | null;
|
|
603
614
|
paystackSecretKey: string | null;
|
|
604
615
|
};
|
|
@@ -720,7 +731,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
720
731
|
includes?: boolean;
|
|
721
732
|
flatMap?: boolean;
|
|
722
733
|
flat?: boolean;
|
|
734
|
+
at?: boolean;
|
|
723
735
|
};
|
|
736
|
+
at: never;
|
|
724
737
|
};
|
|
725
738
|
} | {
|
|
726
739
|
[x: number]: string | number | boolean | {
|
|
@@ -793,7 +806,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
793
806
|
includes?: boolean;
|
|
794
807
|
flatMap?: boolean;
|
|
795
808
|
flat?: boolean;
|
|
809
|
+
at?: boolean;
|
|
796
810
|
};
|
|
811
|
+
at: never;
|
|
797
812
|
};
|
|
798
813
|
};
|
|
799
814
|
id: string;
|
|
@@ -887,6 +902,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
887
902
|
siteUrl: string;
|
|
888
903
|
domain: string;
|
|
889
904
|
metaPixelId: string | null;
|
|
905
|
+
tiktokPixelId: string | null;
|
|
890
906
|
paystackPublicKey: string | null;
|
|
891
907
|
paystackSecretKey: string | null;
|
|
892
908
|
};
|
|
@@ -1008,7 +1024,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1008
1024
|
includes?: boolean;
|
|
1009
1025
|
flatMap?: boolean;
|
|
1010
1026
|
flat?: boolean;
|
|
1027
|
+
at?: boolean;
|
|
1011
1028
|
};
|
|
1029
|
+
at: never;
|
|
1012
1030
|
};
|
|
1013
1031
|
} | {
|
|
1014
1032
|
[x: number]: string | number | boolean | {
|
|
@@ -1081,7 +1099,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1081
1099
|
includes?: boolean;
|
|
1082
1100
|
flatMap?: boolean;
|
|
1083
1101
|
flat?: boolean;
|
|
1102
|
+
at?: boolean;
|
|
1084
1103
|
};
|
|
1104
|
+
at: never;
|
|
1085
1105
|
};
|
|
1086
1106
|
};
|
|
1087
1107
|
id: string;
|
|
@@ -1176,6 +1196,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1176
1196
|
siteUrl: string;
|
|
1177
1197
|
domain: string;
|
|
1178
1198
|
metaPixelId: string | null;
|
|
1199
|
+
tiktokPixelId: string | null;
|
|
1179
1200
|
paystackPublicKey: string | null;
|
|
1180
1201
|
paystackSecretKey: string | null;
|
|
1181
1202
|
};
|
|
@@ -1297,7 +1318,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1297
1318
|
includes?: boolean;
|
|
1298
1319
|
flatMap?: boolean;
|
|
1299
1320
|
flat?: boolean;
|
|
1321
|
+
at?: boolean;
|
|
1300
1322
|
};
|
|
1323
|
+
at: never;
|
|
1301
1324
|
};
|
|
1302
1325
|
} | {
|
|
1303
1326
|
[x: number]: string | number | boolean | {
|
|
@@ -1370,7 +1393,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1370
1393
|
includes?: boolean;
|
|
1371
1394
|
flatMap?: boolean;
|
|
1372
1395
|
flat?: boolean;
|
|
1396
|
+
at?: boolean;
|
|
1373
1397
|
};
|
|
1398
|
+
at: never;
|
|
1374
1399
|
};
|
|
1375
1400
|
};
|
|
1376
1401
|
id: string;
|
|
@@ -1465,6 +1490,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1465
1490
|
siteUrl: string;
|
|
1466
1491
|
domain: string;
|
|
1467
1492
|
metaPixelId: string | null;
|
|
1493
|
+
tiktokPixelId: string | null;
|
|
1468
1494
|
paystackPublicKey: string | null;
|
|
1469
1495
|
paystackSecretKey: string | null;
|
|
1470
1496
|
};
|
|
@@ -1586,7 +1612,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1586
1612
|
includes?: boolean;
|
|
1587
1613
|
flatMap?: boolean;
|
|
1588
1614
|
flat?: boolean;
|
|
1615
|
+
at?: boolean;
|
|
1589
1616
|
};
|
|
1617
|
+
at: never;
|
|
1590
1618
|
};
|
|
1591
1619
|
} | {
|
|
1592
1620
|
[x: number]: string | number | boolean | {
|
|
@@ -1659,7 +1687,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1659
1687
|
includes?: boolean;
|
|
1660
1688
|
flatMap?: boolean;
|
|
1661
1689
|
flat?: boolean;
|
|
1690
|
+
at?: boolean;
|
|
1662
1691
|
};
|
|
1692
|
+
at: never;
|
|
1663
1693
|
};
|
|
1664
1694
|
};
|
|
1665
1695
|
id: string;
|
|
@@ -1757,6 +1787,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1757
1787
|
siteUrl: string;
|
|
1758
1788
|
domain: string;
|
|
1759
1789
|
metaPixelId: string | null;
|
|
1790
|
+
tiktokPixelId: string | null;
|
|
1760
1791
|
paystackPublicKey: string | null;
|
|
1761
1792
|
paystackSecretKey: string | null;
|
|
1762
1793
|
};
|
|
@@ -1878,7 +1909,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1878
1909
|
includes?: boolean;
|
|
1879
1910
|
flatMap?: boolean;
|
|
1880
1911
|
flat?: boolean;
|
|
1912
|
+
at?: boolean;
|
|
1881
1913
|
};
|
|
1914
|
+
at: never;
|
|
1882
1915
|
};
|
|
1883
1916
|
} | {
|
|
1884
1917
|
[x: number]: string | number | boolean | {
|
|
@@ -1951,7 +1984,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
1951
1984
|
includes?: boolean;
|
|
1952
1985
|
flatMap?: boolean;
|
|
1953
1986
|
flat?: boolean;
|
|
1987
|
+
at?: boolean;
|
|
1954
1988
|
};
|
|
1989
|
+
at: never;
|
|
1955
1990
|
};
|
|
1956
1991
|
};
|
|
1957
1992
|
id: string;
|
|
@@ -2064,6 +2099,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2064
2099
|
siteUrl: string;
|
|
2065
2100
|
domain: string;
|
|
2066
2101
|
metaPixelId: string | null;
|
|
2102
|
+
tiktokPixelId: string | null;
|
|
2067
2103
|
paystackPublicKey: string | null;
|
|
2068
2104
|
paystackSecretKey: string | null;
|
|
2069
2105
|
};
|
|
@@ -2185,7 +2221,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2185
2221
|
includes?: boolean;
|
|
2186
2222
|
flatMap?: boolean;
|
|
2187
2223
|
flat?: boolean;
|
|
2224
|
+
at?: boolean;
|
|
2188
2225
|
};
|
|
2226
|
+
at: never;
|
|
2189
2227
|
};
|
|
2190
2228
|
} | {
|
|
2191
2229
|
[x: number]: string | number | boolean | {
|
|
@@ -2258,7 +2296,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2258
2296
|
includes?: boolean;
|
|
2259
2297
|
flatMap?: boolean;
|
|
2260
2298
|
flat?: boolean;
|
|
2299
|
+
at?: boolean;
|
|
2261
2300
|
};
|
|
2301
|
+
at: never;
|
|
2262
2302
|
};
|
|
2263
2303
|
};
|
|
2264
2304
|
id: string;
|
|
@@ -2438,6 +2478,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2438
2478
|
siteUrl: string;
|
|
2439
2479
|
domain: string;
|
|
2440
2480
|
metaPixelId: string | null;
|
|
2481
|
+
tiktokPixelId: string | null;
|
|
2441
2482
|
paystackPublicKey: string | null;
|
|
2442
2483
|
paystackSecretKey: string | null;
|
|
2443
2484
|
};
|
|
@@ -2555,7 +2596,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2555
2596
|
includes?: boolean;
|
|
2556
2597
|
flatMap?: boolean;
|
|
2557
2598
|
flat?: boolean;
|
|
2599
|
+
at?: boolean;
|
|
2558
2600
|
};
|
|
2601
|
+
at: never;
|
|
2559
2602
|
};
|
|
2560
2603
|
} | {
|
|
2561
2604
|
[x: number]: string | number | boolean | {
|
|
@@ -2628,7 +2671,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2628
2671
|
includes?: boolean;
|
|
2629
2672
|
flatMap?: boolean;
|
|
2630
2673
|
flat?: boolean;
|
|
2674
|
+
at?: boolean;
|
|
2631
2675
|
};
|
|
2676
|
+
at: never;
|
|
2632
2677
|
};
|
|
2633
2678
|
};
|
|
2634
2679
|
id: string;
|
|
@@ -2749,6 +2794,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2749
2794
|
siteUrl: string;
|
|
2750
2795
|
domain: string;
|
|
2751
2796
|
metaPixelId: string | null;
|
|
2797
|
+
tiktokPixelId: string | null;
|
|
2752
2798
|
paystackPublicKey: string | null;
|
|
2753
2799
|
paystackSecretKey: string | null;
|
|
2754
2800
|
};
|
|
@@ -2866,7 +2912,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2866
2912
|
includes?: boolean;
|
|
2867
2913
|
flatMap?: boolean;
|
|
2868
2914
|
flat?: boolean;
|
|
2915
|
+
at?: boolean;
|
|
2869
2916
|
};
|
|
2917
|
+
at: never;
|
|
2870
2918
|
};
|
|
2871
2919
|
} | {
|
|
2872
2920
|
[x: number]: string | number | boolean | {
|
|
@@ -2939,7 +2987,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
2939
2987
|
includes?: boolean;
|
|
2940
2988
|
flatMap?: boolean;
|
|
2941
2989
|
flat?: boolean;
|
|
2990
|
+
at?: boolean;
|
|
2942
2991
|
};
|
|
2992
|
+
at: never;
|
|
2943
2993
|
};
|
|
2944
2994
|
};
|
|
2945
2995
|
id: string;
|
|
@@ -3056,6 +3106,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3056
3106
|
siteUrl: string;
|
|
3057
3107
|
domain: string;
|
|
3058
3108
|
metaPixelId: string | null;
|
|
3109
|
+
tiktokPixelId: string | null;
|
|
3059
3110
|
paystackPublicKey: string | null;
|
|
3060
3111
|
paystackSecretKey: string | null;
|
|
3061
3112
|
};
|
|
@@ -3173,7 +3224,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3173
3224
|
includes?: boolean;
|
|
3174
3225
|
flatMap?: boolean;
|
|
3175
3226
|
flat?: boolean;
|
|
3227
|
+
at?: boolean;
|
|
3176
3228
|
};
|
|
3229
|
+
at: never;
|
|
3177
3230
|
};
|
|
3178
3231
|
} | {
|
|
3179
3232
|
[x: number]: string | number | boolean | {
|
|
@@ -3246,7 +3299,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3246
3299
|
includes?: boolean;
|
|
3247
3300
|
flatMap?: boolean;
|
|
3248
3301
|
flat?: boolean;
|
|
3302
|
+
at?: boolean;
|
|
3249
3303
|
};
|
|
3304
|
+
at: never;
|
|
3250
3305
|
};
|
|
3251
3306
|
};
|
|
3252
3307
|
id: string;
|
|
@@ -3347,6 +3402,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3347
3402
|
siteUrl: string;
|
|
3348
3403
|
domain: string;
|
|
3349
3404
|
metaPixelId: string | null;
|
|
3405
|
+
tiktokPixelId: string | null;
|
|
3350
3406
|
paystackPublicKey: string | null;
|
|
3351
3407
|
paystackSecretKey: string | null;
|
|
3352
3408
|
};
|
|
@@ -3444,7 +3500,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3444
3500
|
includes?: boolean;
|
|
3445
3501
|
flatMap?: boolean;
|
|
3446
3502
|
flat?: boolean;
|
|
3503
|
+
at?: boolean;
|
|
3447
3504
|
};
|
|
3505
|
+
at: never;
|
|
3448
3506
|
};
|
|
3449
3507
|
} | {
|
|
3450
3508
|
[x: number]: string | number | boolean | {
|
|
@@ -3517,7 +3575,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3517
3575
|
includes?: boolean;
|
|
3518
3576
|
flatMap?: boolean;
|
|
3519
3577
|
flat?: boolean;
|
|
3578
|
+
at?: boolean;
|
|
3520
3579
|
};
|
|
3580
|
+
at: never;
|
|
3521
3581
|
};
|
|
3522
3582
|
};
|
|
3523
3583
|
outputFormat: "json";
|
|
@@ -3573,6 +3633,7 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3573
3633
|
siteUrl: string;
|
|
3574
3634
|
domain: string;
|
|
3575
3635
|
metaPixelId: string | null;
|
|
3636
|
+
tiktokPixelId: string | null;
|
|
3576
3637
|
paystackPublicKey: string | null;
|
|
3577
3638
|
paystackSecretKey: string | null;
|
|
3578
3639
|
};
|
|
@@ -3670,7 +3731,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3670
3731
|
includes?: boolean;
|
|
3671
3732
|
flatMap?: boolean;
|
|
3672
3733
|
flat?: boolean;
|
|
3734
|
+
at?: boolean;
|
|
3673
3735
|
};
|
|
3736
|
+
at: never;
|
|
3674
3737
|
};
|
|
3675
3738
|
} | {
|
|
3676
3739
|
[x: number]: string | number | boolean | {
|
|
@@ -3743,7 +3806,9 @@ export declare function createRpcClients(baseURL: string): {
|
|
|
3743
3806
|
includes?: boolean;
|
|
3744
3807
|
flatMap?: boolean;
|
|
3745
3808
|
flat?: boolean;
|
|
3809
|
+
at?: boolean;
|
|
3746
3810
|
};
|
|
3811
|
+
at: never;
|
|
3747
3812
|
};
|
|
3748
3813
|
}[];
|
|
3749
3814
|
outputFormat: "json";
|
|
@@ -3881,6 +3946,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
3881
3946
|
siteUrl: string;
|
|
3882
3947
|
domain: string;
|
|
3883
3948
|
metaPixelId: string | null;
|
|
3949
|
+
tiktokPixelId: string | null;
|
|
3884
3950
|
paystackPublicKey: string | null;
|
|
3885
3951
|
paystackSecretKey: string | null;
|
|
3886
3952
|
};
|
|
@@ -3998,7 +4064,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
3998
4064
|
includes?: boolean;
|
|
3999
4065
|
flatMap?: boolean;
|
|
4000
4066
|
flat?: boolean;
|
|
4067
|
+
at?: boolean;
|
|
4001
4068
|
};
|
|
4069
|
+
at: never;
|
|
4002
4070
|
};
|
|
4003
4071
|
} | {
|
|
4004
4072
|
[x: number]: string | number | boolean | {
|
|
@@ -4071,7 +4139,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4071
4139
|
includes?: boolean;
|
|
4072
4140
|
flatMap?: boolean;
|
|
4073
4141
|
flat?: boolean;
|
|
4142
|
+
at?: boolean;
|
|
4074
4143
|
};
|
|
4144
|
+
at: never;
|
|
4075
4145
|
};
|
|
4076
4146
|
};
|
|
4077
4147
|
id: string;
|
|
@@ -4170,6 +4240,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4170
4240
|
siteUrl: string;
|
|
4171
4241
|
domain: string;
|
|
4172
4242
|
metaPixelId: string | null;
|
|
4243
|
+
tiktokPixelId: string | null;
|
|
4173
4244
|
paystackPublicKey: string | null;
|
|
4174
4245
|
paystackSecretKey: string | null;
|
|
4175
4246
|
};
|
|
@@ -4287,7 +4358,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4287
4358
|
includes?: boolean;
|
|
4288
4359
|
flatMap?: boolean;
|
|
4289
4360
|
flat?: boolean;
|
|
4361
|
+
at?: boolean;
|
|
4290
4362
|
};
|
|
4363
|
+
at: never;
|
|
4291
4364
|
};
|
|
4292
4365
|
} | {
|
|
4293
4366
|
[x: number]: string | number | boolean | {
|
|
@@ -4360,7 +4433,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4360
4433
|
includes?: boolean;
|
|
4361
4434
|
flatMap?: boolean;
|
|
4362
4435
|
flat?: boolean;
|
|
4436
|
+
at?: boolean;
|
|
4363
4437
|
};
|
|
4438
|
+
at: never;
|
|
4364
4439
|
};
|
|
4365
4440
|
};
|
|
4366
4441
|
id: string;
|
|
@@ -4461,6 +4536,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4461
4536
|
siteUrl: string;
|
|
4462
4537
|
domain: string;
|
|
4463
4538
|
metaPixelId: string | null;
|
|
4539
|
+
tiktokPixelId: string | null;
|
|
4464
4540
|
paystackPublicKey: string | null;
|
|
4465
4541
|
paystackSecretKey: string | null;
|
|
4466
4542
|
};
|
|
@@ -4578,7 +4654,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4578
4654
|
includes?: boolean;
|
|
4579
4655
|
flatMap?: boolean;
|
|
4580
4656
|
flat?: boolean;
|
|
4657
|
+
at?: boolean;
|
|
4581
4658
|
};
|
|
4659
|
+
at: never;
|
|
4582
4660
|
};
|
|
4583
4661
|
} | {
|
|
4584
4662
|
[x: number]: string | number | boolean | {
|
|
@@ -4651,7 +4729,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4651
4729
|
includes?: boolean;
|
|
4652
4730
|
flatMap?: boolean;
|
|
4653
4731
|
flat?: boolean;
|
|
4732
|
+
at?: boolean;
|
|
4654
4733
|
};
|
|
4734
|
+
at: never;
|
|
4655
4735
|
};
|
|
4656
4736
|
};
|
|
4657
4737
|
id: string;
|
|
@@ -4761,6 +4841,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4761
4841
|
siteUrl: string;
|
|
4762
4842
|
domain: string;
|
|
4763
4843
|
metaPixelId: string | null;
|
|
4844
|
+
tiktokPixelId: string | null;
|
|
4764
4845
|
paystackPublicKey: string | null;
|
|
4765
4846
|
paystackSecretKey: string | null;
|
|
4766
4847
|
};
|
|
@@ -4878,7 +4959,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4878
4959
|
includes?: boolean;
|
|
4879
4960
|
flatMap?: boolean;
|
|
4880
4961
|
flat?: boolean;
|
|
4962
|
+
at?: boolean;
|
|
4881
4963
|
};
|
|
4964
|
+
at: never;
|
|
4882
4965
|
};
|
|
4883
4966
|
} | {
|
|
4884
4967
|
[x: number]: string | number | boolean | {
|
|
@@ -4951,7 +5034,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
4951
5034
|
includes?: boolean;
|
|
4952
5035
|
flatMap?: boolean;
|
|
4953
5036
|
flat?: boolean;
|
|
5037
|
+
at?: boolean;
|
|
4954
5038
|
};
|
|
5039
|
+
at: never;
|
|
4955
5040
|
};
|
|
4956
5041
|
};
|
|
4957
5042
|
id: string;
|
|
@@ -5033,6 +5118,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5033
5118
|
siteUrl: string;
|
|
5034
5119
|
domain: string;
|
|
5035
5120
|
metaPixelId: string | null;
|
|
5121
|
+
tiktokPixelId: string | null;
|
|
5036
5122
|
paystackPublicKey: string | null;
|
|
5037
5123
|
paystackSecretKey: string | null;
|
|
5038
5124
|
createdAt: string;
|
|
@@ -5159,7 +5245,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5159
5245
|
includes?: boolean;
|
|
5160
5246
|
flatMap?: boolean;
|
|
5161
5247
|
flat?: boolean;
|
|
5248
|
+
at?: boolean;
|
|
5162
5249
|
};
|
|
5250
|
+
at: never;
|
|
5163
5251
|
};
|
|
5164
5252
|
} | {
|
|
5165
5253
|
[x: number]: string | number | boolean | {
|
|
@@ -5232,7 +5320,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5232
5320
|
includes?: boolean;
|
|
5233
5321
|
flatMap?: boolean;
|
|
5234
5322
|
flat?: boolean;
|
|
5323
|
+
at?: boolean;
|
|
5235
5324
|
};
|
|
5325
|
+
at: never;
|
|
5236
5326
|
};
|
|
5237
5327
|
};
|
|
5238
5328
|
id: string;
|
|
@@ -5255,6 +5345,172 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5255
5345
|
quantity: number;
|
|
5256
5346
|
priceAtPurchase: string;
|
|
5257
5347
|
}[];
|
|
5348
|
+
notes: {
|
|
5349
|
+
User: {
|
|
5350
|
+
email: string;
|
|
5351
|
+
id: string;
|
|
5352
|
+
name: string | null;
|
|
5353
|
+
createdAt: string;
|
|
5354
|
+
deletedAt: string;
|
|
5355
|
+
clerkId: string;
|
|
5356
|
+
role: string;
|
|
5357
|
+
};
|
|
5358
|
+
id: string;
|
|
5359
|
+
metadata: string | number | boolean | {
|
|
5360
|
+
[x: string]: string | number | boolean | /*elided*/ any | {
|
|
5361
|
+
[x: number]: string | number | boolean | /*elided*/ any | /*elided*/ any;
|
|
5362
|
+
length: number;
|
|
5363
|
+
toString: never;
|
|
5364
|
+
toLocaleString: never;
|
|
5365
|
+
pop: never;
|
|
5366
|
+
push: never;
|
|
5367
|
+
concat: never;
|
|
5368
|
+
join: never;
|
|
5369
|
+
reverse: never;
|
|
5370
|
+
shift: never;
|
|
5371
|
+
slice: never;
|
|
5372
|
+
sort: never;
|
|
5373
|
+
splice: never;
|
|
5374
|
+
unshift: never;
|
|
5375
|
+
indexOf: never;
|
|
5376
|
+
lastIndexOf: never;
|
|
5377
|
+
every: never;
|
|
5378
|
+
some: never;
|
|
5379
|
+
forEach: never;
|
|
5380
|
+
map: never;
|
|
5381
|
+
filter: never;
|
|
5382
|
+
reduce: never;
|
|
5383
|
+
reduceRight: never;
|
|
5384
|
+
find: never;
|
|
5385
|
+
findIndex: never;
|
|
5386
|
+
fill: never;
|
|
5387
|
+
copyWithin: never;
|
|
5388
|
+
entries: never;
|
|
5389
|
+
keys: never;
|
|
5390
|
+
values: never;
|
|
5391
|
+
includes: never;
|
|
5392
|
+
flatMap: never;
|
|
5393
|
+
flat: never;
|
|
5394
|
+
[Symbol.iterator]: never;
|
|
5395
|
+
readonly [Symbol.unscopables]: {
|
|
5396
|
+
[x: number]: boolean;
|
|
5397
|
+
length?: boolean;
|
|
5398
|
+
toString?: boolean;
|
|
5399
|
+
toLocaleString?: boolean;
|
|
5400
|
+
pop?: boolean;
|
|
5401
|
+
push?: boolean;
|
|
5402
|
+
concat?: boolean;
|
|
5403
|
+
join?: boolean;
|
|
5404
|
+
reverse?: boolean;
|
|
5405
|
+
shift?: boolean;
|
|
5406
|
+
slice?: boolean;
|
|
5407
|
+
sort?: boolean;
|
|
5408
|
+
splice?: boolean;
|
|
5409
|
+
unshift?: boolean;
|
|
5410
|
+
indexOf?: boolean;
|
|
5411
|
+
lastIndexOf?: boolean;
|
|
5412
|
+
every?: boolean;
|
|
5413
|
+
some?: boolean;
|
|
5414
|
+
forEach?: boolean;
|
|
5415
|
+
map?: boolean;
|
|
5416
|
+
filter?: boolean;
|
|
5417
|
+
reduce?: boolean;
|
|
5418
|
+
reduceRight?: boolean;
|
|
5419
|
+
find?: boolean;
|
|
5420
|
+
findIndex?: boolean;
|
|
5421
|
+
fill?: boolean;
|
|
5422
|
+
copyWithin?: boolean;
|
|
5423
|
+
entries?: boolean;
|
|
5424
|
+
keys?: boolean;
|
|
5425
|
+
values?: boolean;
|
|
5426
|
+
includes?: boolean;
|
|
5427
|
+
flatMap?: boolean;
|
|
5428
|
+
flat?: boolean;
|
|
5429
|
+
at?: boolean;
|
|
5430
|
+
};
|
|
5431
|
+
at: never;
|
|
5432
|
+
};
|
|
5433
|
+
} | {
|
|
5434
|
+
[x: number]: string | number | boolean | {
|
|
5435
|
+
[x: string]: string | number | boolean | /*elided*/ any | /*elided*/ any;
|
|
5436
|
+
} | /*elided*/ any;
|
|
5437
|
+
length: number;
|
|
5438
|
+
toString: never;
|
|
5439
|
+
toLocaleString: never;
|
|
5440
|
+
pop: never;
|
|
5441
|
+
push: never;
|
|
5442
|
+
concat: never;
|
|
5443
|
+
join: never;
|
|
5444
|
+
reverse: never;
|
|
5445
|
+
shift: never;
|
|
5446
|
+
slice: never;
|
|
5447
|
+
sort: never;
|
|
5448
|
+
splice: never;
|
|
5449
|
+
unshift: never;
|
|
5450
|
+
indexOf: never;
|
|
5451
|
+
lastIndexOf: never;
|
|
5452
|
+
every: never;
|
|
5453
|
+
some: never;
|
|
5454
|
+
forEach: never;
|
|
5455
|
+
map: never;
|
|
5456
|
+
filter: never;
|
|
5457
|
+
reduce: never;
|
|
5458
|
+
reduceRight: never;
|
|
5459
|
+
find: never;
|
|
5460
|
+
findIndex: never;
|
|
5461
|
+
fill: never;
|
|
5462
|
+
copyWithin: never;
|
|
5463
|
+
entries: never;
|
|
5464
|
+
keys: never;
|
|
5465
|
+
values: never;
|
|
5466
|
+
includes: never;
|
|
5467
|
+
flatMap: never;
|
|
5468
|
+
flat: never;
|
|
5469
|
+
[Symbol.iterator]: never;
|
|
5470
|
+
readonly [Symbol.unscopables]: {
|
|
5471
|
+
[x: number]: boolean;
|
|
5472
|
+
length?: boolean;
|
|
5473
|
+
toString?: boolean;
|
|
5474
|
+
toLocaleString?: boolean;
|
|
5475
|
+
pop?: boolean;
|
|
5476
|
+
push?: boolean;
|
|
5477
|
+
concat?: boolean;
|
|
5478
|
+
join?: boolean;
|
|
5479
|
+
reverse?: boolean;
|
|
5480
|
+
shift?: boolean;
|
|
5481
|
+
slice?: boolean;
|
|
5482
|
+
sort?: boolean;
|
|
5483
|
+
splice?: boolean;
|
|
5484
|
+
unshift?: boolean;
|
|
5485
|
+
indexOf?: boolean;
|
|
5486
|
+
lastIndexOf?: boolean;
|
|
5487
|
+
every?: boolean;
|
|
5488
|
+
some?: boolean;
|
|
5489
|
+
forEach?: boolean;
|
|
5490
|
+
map?: boolean;
|
|
5491
|
+
filter?: boolean;
|
|
5492
|
+
reduce?: boolean;
|
|
5493
|
+
reduceRight?: boolean;
|
|
5494
|
+
find?: boolean;
|
|
5495
|
+
findIndex?: boolean;
|
|
5496
|
+
fill?: boolean;
|
|
5497
|
+
copyWithin?: boolean;
|
|
5498
|
+
entries?: boolean;
|
|
5499
|
+
keys?: boolean;
|
|
5500
|
+
values?: boolean;
|
|
5501
|
+
includes?: boolean;
|
|
5502
|
+
flatMap?: boolean;
|
|
5503
|
+
flat?: boolean;
|
|
5504
|
+
at?: boolean;
|
|
5505
|
+
};
|
|
5506
|
+
at: never;
|
|
5507
|
+
};
|
|
5508
|
+
type: import("@prisma/client").$Enums.NoteType;
|
|
5509
|
+
createdAt: string;
|
|
5510
|
+
createdBy: string | null;
|
|
5511
|
+
orderId: string;
|
|
5512
|
+
note: string;
|
|
5513
|
+
}[];
|
|
5258
5514
|
email: string | null;
|
|
5259
5515
|
id: string;
|
|
5260
5516
|
createdAt: string;
|
|
@@ -5353,6 +5609,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5353
5609
|
siteUrl: string;
|
|
5354
5610
|
domain: string;
|
|
5355
5611
|
metaPixelId: string | null;
|
|
5612
|
+
tiktokPixelId: string | null;
|
|
5356
5613
|
paystackPublicKey: string | null;
|
|
5357
5614
|
paystackSecretKey: string | null;
|
|
5358
5615
|
};
|
|
@@ -5470,7 +5727,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5470
5727
|
includes?: boolean;
|
|
5471
5728
|
flatMap?: boolean;
|
|
5472
5729
|
flat?: boolean;
|
|
5730
|
+
at?: boolean;
|
|
5473
5731
|
};
|
|
5732
|
+
at: never;
|
|
5474
5733
|
};
|
|
5475
5734
|
} | {
|
|
5476
5735
|
[x: number]: string | number | boolean | {
|
|
@@ -5543,7 +5802,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5543
5802
|
includes?: boolean;
|
|
5544
5803
|
flatMap?: boolean;
|
|
5545
5804
|
flat?: boolean;
|
|
5805
|
+
at?: boolean;
|
|
5546
5806
|
};
|
|
5807
|
+
at: never;
|
|
5547
5808
|
};
|
|
5548
5809
|
};
|
|
5549
5810
|
id: string;
|
|
@@ -5641,6 +5902,214 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5641
5902
|
};
|
|
5642
5903
|
}>;
|
|
5643
5904
|
};
|
|
5905
|
+
} & {
|
|
5906
|
+
":id": {
|
|
5907
|
+
notes: import("hono/client").ClientRequest<{
|
|
5908
|
+
$post: {
|
|
5909
|
+
input: {
|
|
5910
|
+
param: {
|
|
5911
|
+
id: string;
|
|
5912
|
+
};
|
|
5913
|
+
};
|
|
5914
|
+
output: {
|
|
5915
|
+
error: {
|
|
5916
|
+
code: string;
|
|
5917
|
+
message: string;
|
|
5918
|
+
};
|
|
5919
|
+
};
|
|
5920
|
+
outputFormat: "json";
|
|
5921
|
+
status: 404;
|
|
5922
|
+
} | {
|
|
5923
|
+
input: {
|
|
5924
|
+
param: {
|
|
5925
|
+
id: string;
|
|
5926
|
+
};
|
|
5927
|
+
};
|
|
5928
|
+
output: {
|
|
5929
|
+
User: {
|
|
5930
|
+
email: string;
|
|
5931
|
+
id: string;
|
|
5932
|
+
name: string | null;
|
|
5933
|
+
createdAt: string;
|
|
5934
|
+
deletedAt: string;
|
|
5935
|
+
clerkId: string;
|
|
5936
|
+
role: string;
|
|
5937
|
+
};
|
|
5938
|
+
id: string;
|
|
5939
|
+
metadata: string | number | boolean | {
|
|
5940
|
+
[x: string]: string | number | boolean | /*elided*/ any | {
|
|
5941
|
+
[x: number]: string | number | boolean | /*elided*/ any | /*elided*/ any;
|
|
5942
|
+
length: number;
|
|
5943
|
+
toString: never;
|
|
5944
|
+
toLocaleString: never;
|
|
5945
|
+
pop: never;
|
|
5946
|
+
push: never;
|
|
5947
|
+
concat: never;
|
|
5948
|
+
join: never;
|
|
5949
|
+
reverse: never;
|
|
5950
|
+
shift: never;
|
|
5951
|
+
slice: never;
|
|
5952
|
+
sort: never;
|
|
5953
|
+
splice: never;
|
|
5954
|
+
unshift: never;
|
|
5955
|
+
indexOf: never;
|
|
5956
|
+
lastIndexOf: never;
|
|
5957
|
+
every: never;
|
|
5958
|
+
some: never;
|
|
5959
|
+
forEach: never;
|
|
5960
|
+
map: never;
|
|
5961
|
+
filter: never;
|
|
5962
|
+
reduce: never;
|
|
5963
|
+
reduceRight: never;
|
|
5964
|
+
find: never;
|
|
5965
|
+
findIndex: never;
|
|
5966
|
+
fill: never;
|
|
5967
|
+
copyWithin: never;
|
|
5968
|
+
entries: never;
|
|
5969
|
+
keys: never;
|
|
5970
|
+
values: never;
|
|
5971
|
+
includes: never;
|
|
5972
|
+
flatMap: never;
|
|
5973
|
+
flat: never;
|
|
5974
|
+
[Symbol.iterator]: never;
|
|
5975
|
+
readonly [Symbol.unscopables]: {
|
|
5976
|
+
[x: number]: boolean;
|
|
5977
|
+
length?: boolean;
|
|
5978
|
+
toString?: boolean;
|
|
5979
|
+
toLocaleString?: boolean;
|
|
5980
|
+
pop?: boolean;
|
|
5981
|
+
push?: boolean;
|
|
5982
|
+
concat?: boolean;
|
|
5983
|
+
join?: boolean;
|
|
5984
|
+
reverse?: boolean;
|
|
5985
|
+
shift?: boolean;
|
|
5986
|
+
slice?: boolean;
|
|
5987
|
+
sort?: boolean;
|
|
5988
|
+
splice?: boolean;
|
|
5989
|
+
unshift?: boolean;
|
|
5990
|
+
indexOf?: boolean;
|
|
5991
|
+
lastIndexOf?: boolean;
|
|
5992
|
+
every?: boolean;
|
|
5993
|
+
some?: boolean;
|
|
5994
|
+
forEach?: boolean;
|
|
5995
|
+
map?: boolean;
|
|
5996
|
+
filter?: boolean;
|
|
5997
|
+
reduce?: boolean;
|
|
5998
|
+
reduceRight?: boolean;
|
|
5999
|
+
find?: boolean;
|
|
6000
|
+
findIndex?: boolean;
|
|
6001
|
+
fill?: boolean;
|
|
6002
|
+
copyWithin?: boolean;
|
|
6003
|
+
entries?: boolean;
|
|
6004
|
+
keys?: boolean;
|
|
6005
|
+
values?: boolean;
|
|
6006
|
+
includes?: boolean;
|
|
6007
|
+
flatMap?: boolean;
|
|
6008
|
+
flat?: boolean;
|
|
6009
|
+
at?: boolean;
|
|
6010
|
+
};
|
|
6011
|
+
at: never;
|
|
6012
|
+
};
|
|
6013
|
+
} | {
|
|
6014
|
+
[x: number]: string | number | boolean | {
|
|
6015
|
+
[x: string]: string | number | boolean | /*elided*/ any | /*elided*/ any;
|
|
6016
|
+
} | /*elided*/ any;
|
|
6017
|
+
length: number;
|
|
6018
|
+
toString: never;
|
|
6019
|
+
toLocaleString: never;
|
|
6020
|
+
pop: never;
|
|
6021
|
+
push: never;
|
|
6022
|
+
concat: never;
|
|
6023
|
+
join: never;
|
|
6024
|
+
reverse: never;
|
|
6025
|
+
shift: never;
|
|
6026
|
+
slice: never;
|
|
6027
|
+
sort: never;
|
|
6028
|
+
splice: never;
|
|
6029
|
+
unshift: never;
|
|
6030
|
+
indexOf: never;
|
|
6031
|
+
lastIndexOf: never;
|
|
6032
|
+
every: never;
|
|
6033
|
+
some: never;
|
|
6034
|
+
forEach: never;
|
|
6035
|
+
map: never;
|
|
6036
|
+
filter: never;
|
|
6037
|
+
reduce: never;
|
|
6038
|
+
reduceRight: never;
|
|
6039
|
+
find: never;
|
|
6040
|
+
findIndex: never;
|
|
6041
|
+
fill: never;
|
|
6042
|
+
copyWithin: never;
|
|
6043
|
+
entries: never;
|
|
6044
|
+
keys: never;
|
|
6045
|
+
values: never;
|
|
6046
|
+
includes: never;
|
|
6047
|
+
flatMap: never;
|
|
6048
|
+
flat: never;
|
|
6049
|
+
[Symbol.iterator]: never;
|
|
6050
|
+
readonly [Symbol.unscopables]: {
|
|
6051
|
+
[x: number]: boolean;
|
|
6052
|
+
length?: boolean;
|
|
6053
|
+
toString?: boolean;
|
|
6054
|
+
toLocaleString?: boolean;
|
|
6055
|
+
pop?: boolean;
|
|
6056
|
+
push?: boolean;
|
|
6057
|
+
concat?: boolean;
|
|
6058
|
+
join?: boolean;
|
|
6059
|
+
reverse?: boolean;
|
|
6060
|
+
shift?: boolean;
|
|
6061
|
+
slice?: boolean;
|
|
6062
|
+
sort?: boolean;
|
|
6063
|
+
splice?: boolean;
|
|
6064
|
+
unshift?: boolean;
|
|
6065
|
+
indexOf?: boolean;
|
|
6066
|
+
lastIndexOf?: boolean;
|
|
6067
|
+
every?: boolean;
|
|
6068
|
+
some?: boolean;
|
|
6069
|
+
forEach?: boolean;
|
|
6070
|
+
map?: boolean;
|
|
6071
|
+
filter?: boolean;
|
|
6072
|
+
reduce?: boolean;
|
|
6073
|
+
reduceRight?: boolean;
|
|
6074
|
+
find?: boolean;
|
|
6075
|
+
findIndex?: boolean;
|
|
6076
|
+
fill?: boolean;
|
|
6077
|
+
copyWithin?: boolean;
|
|
6078
|
+
entries?: boolean;
|
|
6079
|
+
keys?: boolean;
|
|
6080
|
+
values?: boolean;
|
|
6081
|
+
includes?: boolean;
|
|
6082
|
+
flatMap?: boolean;
|
|
6083
|
+
flat?: boolean;
|
|
6084
|
+
at?: boolean;
|
|
6085
|
+
};
|
|
6086
|
+
at: never;
|
|
6087
|
+
};
|
|
6088
|
+
type: import("@prisma/client").$Enums.NoteType;
|
|
6089
|
+
createdAt: string;
|
|
6090
|
+
createdBy: string | null;
|
|
6091
|
+
orderId: string;
|
|
6092
|
+
note: string;
|
|
6093
|
+
};
|
|
6094
|
+
outputFormat: "json";
|
|
6095
|
+
status: 201;
|
|
6096
|
+
} | {
|
|
6097
|
+
input: {
|
|
6098
|
+
param: {
|
|
6099
|
+
id: string;
|
|
6100
|
+
};
|
|
6101
|
+
};
|
|
6102
|
+
output: {
|
|
6103
|
+
error: {
|
|
6104
|
+
code: string;
|
|
6105
|
+
message: string;
|
|
6106
|
+
};
|
|
6107
|
+
};
|
|
6108
|
+
outputFormat: "json";
|
|
6109
|
+
status: 500;
|
|
6110
|
+
};
|
|
6111
|
+
}>;
|
|
6112
|
+
};
|
|
5644
6113
|
};
|
|
5645
6114
|
brands: {
|
|
5646
6115
|
index: import("hono/client").ClientRequest<{
|
|
@@ -5654,6 +6123,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5654
6123
|
siteUrl: string;
|
|
5655
6124
|
domain: string;
|
|
5656
6125
|
metaPixelId: string | null;
|
|
6126
|
+
tiktokPixelId: string | null;
|
|
5657
6127
|
paystackPublicKey: string | null;
|
|
5658
6128
|
paystackSecretKey: string | null;
|
|
5659
6129
|
createdAt: string;
|
|
@@ -5684,6 +6154,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5684
6154
|
siteUrl: string;
|
|
5685
6155
|
domain: string;
|
|
5686
6156
|
metaPixelId: string | null;
|
|
6157
|
+
tiktokPixelId: string | null;
|
|
5687
6158
|
paystackPublicKey: string | null;
|
|
5688
6159
|
paystackSecretKey: string | null;
|
|
5689
6160
|
createdAt: string;
|
|
@@ -5734,6 +6205,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5734
6205
|
siteUrl: string;
|
|
5735
6206
|
domain: string;
|
|
5736
6207
|
metaPixelId: string | null;
|
|
6208
|
+
tiktokPixelId: string | null;
|
|
5737
6209
|
paystackPublicKey: string | null;
|
|
5738
6210
|
paystackSecretKey: string | null;
|
|
5739
6211
|
createdAt: string;
|
|
@@ -5772,6 +6244,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5772
6244
|
siteUrl: string;
|
|
5773
6245
|
domain: string;
|
|
5774
6246
|
metaPixelId: string | null;
|
|
6247
|
+
tiktokPixelId: string | null;
|
|
5775
6248
|
paystackPublicKey: string | null;
|
|
5776
6249
|
paystackSecretKey: string | null;
|
|
5777
6250
|
createdAt: string;
|
|
@@ -5833,6 +6306,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5833
6306
|
siteUrl: string;
|
|
5834
6307
|
domain: string;
|
|
5835
6308
|
metaPixelId: string | null;
|
|
6309
|
+
tiktokPixelId: string | null;
|
|
5836
6310
|
paystackPublicKey: string | null;
|
|
5837
6311
|
paystackSecretKey: string | null;
|
|
5838
6312
|
};
|
|
@@ -5930,7 +6404,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
5930
6404
|
includes?: boolean;
|
|
5931
6405
|
flatMap?: boolean;
|
|
5932
6406
|
flat?: boolean;
|
|
6407
|
+
at?: boolean;
|
|
5933
6408
|
};
|
|
6409
|
+
at: never;
|
|
5934
6410
|
};
|
|
5935
6411
|
} | {
|
|
5936
6412
|
[x: number]: string | number | boolean | {
|
|
@@ -6003,7 +6479,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6003
6479
|
includes?: boolean;
|
|
6004
6480
|
flatMap?: boolean;
|
|
6005
6481
|
flat?: boolean;
|
|
6482
|
+
at?: boolean;
|
|
6006
6483
|
};
|
|
6484
|
+
at: never;
|
|
6007
6485
|
};
|
|
6008
6486
|
}[];
|
|
6009
6487
|
outputFormat: "json";
|
|
@@ -6034,6 +6512,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6034
6512
|
siteUrl: string;
|
|
6035
6513
|
domain: string;
|
|
6036
6514
|
metaPixelId: string | null;
|
|
6515
|
+
tiktokPixelId: string | null;
|
|
6037
6516
|
paystackPublicKey: string | null;
|
|
6038
6517
|
paystackSecretKey: string | null;
|
|
6039
6518
|
};
|
|
@@ -6131,7 +6610,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6131
6610
|
includes?: boolean;
|
|
6132
6611
|
flatMap?: boolean;
|
|
6133
6612
|
flat?: boolean;
|
|
6613
|
+
at?: boolean;
|
|
6134
6614
|
};
|
|
6615
|
+
at: never;
|
|
6135
6616
|
};
|
|
6136
6617
|
} | {
|
|
6137
6618
|
[x: number]: string | number | boolean | {
|
|
@@ -6204,7 +6685,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6204
6685
|
includes?: boolean;
|
|
6205
6686
|
flatMap?: boolean;
|
|
6206
6687
|
flat?: boolean;
|
|
6688
|
+
at?: boolean;
|
|
6207
6689
|
};
|
|
6690
|
+
at: never;
|
|
6208
6691
|
};
|
|
6209
6692
|
};
|
|
6210
6693
|
outputFormat: "json";
|
|
@@ -6256,6 +6739,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6256
6739
|
siteUrl: string;
|
|
6257
6740
|
domain: string;
|
|
6258
6741
|
metaPixelId: string | null;
|
|
6742
|
+
tiktokPixelId: string | null;
|
|
6259
6743
|
paystackPublicKey: string | null;
|
|
6260
6744
|
paystackSecretKey: string | null;
|
|
6261
6745
|
};
|
|
@@ -6353,7 +6837,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6353
6837
|
includes?: boolean;
|
|
6354
6838
|
flatMap?: boolean;
|
|
6355
6839
|
flat?: boolean;
|
|
6840
|
+
at?: boolean;
|
|
6356
6841
|
};
|
|
6842
|
+
at: never;
|
|
6357
6843
|
};
|
|
6358
6844
|
} | {
|
|
6359
6845
|
[x: number]: string | number | boolean | {
|
|
@@ -6426,7 +6912,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6426
6912
|
includes?: boolean;
|
|
6427
6913
|
flatMap?: boolean;
|
|
6428
6914
|
flat?: boolean;
|
|
6915
|
+
at?: boolean;
|
|
6429
6916
|
};
|
|
6917
|
+
at: never;
|
|
6430
6918
|
};
|
|
6431
6919
|
};
|
|
6432
6920
|
outputFormat: "json";
|
|
@@ -6465,6 +6953,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6465
6953
|
siteUrl: string;
|
|
6466
6954
|
domain: string;
|
|
6467
6955
|
metaPixelId: string | null;
|
|
6956
|
+
tiktokPixelId: string | null;
|
|
6468
6957
|
paystackPublicKey: string | null;
|
|
6469
6958
|
paystackSecretKey: string | null;
|
|
6470
6959
|
};
|
|
@@ -6562,7 +7051,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6562
7051
|
includes?: boolean;
|
|
6563
7052
|
flatMap?: boolean;
|
|
6564
7053
|
flat?: boolean;
|
|
7054
|
+
at?: boolean;
|
|
6565
7055
|
};
|
|
7056
|
+
at: never;
|
|
6566
7057
|
};
|
|
6567
7058
|
} | {
|
|
6568
7059
|
[x: number]: string | number | boolean | {
|
|
@@ -6635,7 +7126,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
6635
7126
|
includes?: boolean;
|
|
6636
7127
|
flatMap?: boolean;
|
|
6637
7128
|
flat?: boolean;
|
|
7129
|
+
at?: boolean;
|
|
6638
7130
|
};
|
|
7131
|
+
at: never;
|
|
6639
7132
|
};
|
|
6640
7133
|
};
|
|
6641
7134
|
outputFormat: "json";
|
|
@@ -7065,6 +7558,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7065
7558
|
siteUrl: string;
|
|
7066
7559
|
domain: string;
|
|
7067
7560
|
metaPixelId: string | null;
|
|
7561
|
+
tiktokPixelId: string | null;
|
|
7068
7562
|
paystackPublicKey: string | null;
|
|
7069
7563
|
paystackSecretKey: string | null;
|
|
7070
7564
|
createdAt: string;
|
|
@@ -7151,7 +7645,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7151
7645
|
includes?: boolean;
|
|
7152
7646
|
flatMap?: boolean;
|
|
7153
7647
|
flat?: boolean;
|
|
7648
|
+
at?: boolean;
|
|
7154
7649
|
};
|
|
7650
|
+
at: never;
|
|
7155
7651
|
};
|
|
7156
7652
|
} | {
|
|
7157
7653
|
[x: number]: string | number | boolean | {
|
|
@@ -7224,7 +7720,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7224
7720
|
includes?: boolean;
|
|
7225
7721
|
flatMap?: boolean;
|
|
7226
7722
|
flat?: boolean;
|
|
7723
|
+
at?: boolean;
|
|
7227
7724
|
};
|
|
7725
|
+
at: never;
|
|
7228
7726
|
};
|
|
7229
7727
|
};
|
|
7230
7728
|
id: string;
|
|
@@ -7429,7 +7927,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7429
7927
|
includes?: boolean;
|
|
7430
7928
|
flatMap?: boolean;
|
|
7431
7929
|
flat?: boolean;
|
|
7930
|
+
at?: boolean;
|
|
7432
7931
|
};
|
|
7932
|
+
at: never;
|
|
7433
7933
|
};
|
|
7434
7934
|
} | {
|
|
7435
7935
|
[x: number]: string | number | boolean | {
|
|
@@ -7502,7 +8002,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7502
8002
|
includes?: boolean;
|
|
7503
8003
|
flatMap?: boolean;
|
|
7504
8004
|
flat?: boolean;
|
|
8005
|
+
at?: boolean;
|
|
7505
8006
|
};
|
|
8007
|
+
at: never;
|
|
7506
8008
|
};
|
|
7507
8009
|
createdAt: string;
|
|
7508
8010
|
variant: {
|
|
@@ -7609,6 +8111,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7609
8111
|
siteUrl: string;
|
|
7610
8112
|
domain: string;
|
|
7611
8113
|
metaPixelId: string | null;
|
|
8114
|
+
tiktokPixelId: string | null;
|
|
7612
8115
|
paystackPublicKey: string | null;
|
|
7613
8116
|
paystackSecretKey: string | null;
|
|
7614
8117
|
};
|
|
@@ -7726,7 +8229,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7726
8229
|
includes?: boolean;
|
|
7727
8230
|
flatMap?: boolean;
|
|
7728
8231
|
flat?: boolean;
|
|
8232
|
+
at?: boolean;
|
|
7729
8233
|
};
|
|
8234
|
+
at: never;
|
|
7730
8235
|
};
|
|
7731
8236
|
} | {
|
|
7732
8237
|
[x: number]: string | number | boolean | {
|
|
@@ -7799,7 +8304,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7799
8304
|
includes?: boolean;
|
|
7800
8305
|
flatMap?: boolean;
|
|
7801
8306
|
flat?: boolean;
|
|
8307
|
+
at?: boolean;
|
|
7802
8308
|
};
|
|
8309
|
+
at: never;
|
|
7803
8310
|
};
|
|
7804
8311
|
};
|
|
7805
8312
|
id: string;
|
|
@@ -7899,6 +8406,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
7899
8406
|
siteUrl: string;
|
|
7900
8407
|
domain: string;
|
|
7901
8408
|
metaPixelId: string | null;
|
|
8409
|
+
tiktokPixelId: string | null;
|
|
7902
8410
|
paystackPublicKey: string | null;
|
|
7903
8411
|
paystackSecretKey: string | null;
|
|
7904
8412
|
};
|
|
@@ -8016,7 +8524,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8016
8524
|
includes?: boolean;
|
|
8017
8525
|
flatMap?: boolean;
|
|
8018
8526
|
flat?: boolean;
|
|
8527
|
+
at?: boolean;
|
|
8019
8528
|
};
|
|
8529
|
+
at: never;
|
|
8020
8530
|
};
|
|
8021
8531
|
} | {
|
|
8022
8532
|
[x: number]: string | number | boolean | {
|
|
@@ -8089,7 +8599,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8089
8599
|
includes?: boolean;
|
|
8090
8600
|
flatMap?: boolean;
|
|
8091
8601
|
flat?: boolean;
|
|
8602
|
+
at?: boolean;
|
|
8092
8603
|
};
|
|
8604
|
+
at: never;
|
|
8093
8605
|
};
|
|
8094
8606
|
};
|
|
8095
8607
|
id: string;
|
|
@@ -8174,6 +8686,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8174
8686
|
siteUrl: string;
|
|
8175
8687
|
domain: string;
|
|
8176
8688
|
metaPixelId: string | null;
|
|
8689
|
+
tiktokPixelId: string | null;
|
|
8177
8690
|
paystackPublicKey: string | null;
|
|
8178
8691
|
paystackSecretKey: string | null;
|
|
8179
8692
|
};
|
|
@@ -8295,7 +8808,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8295
8808
|
includes?: boolean;
|
|
8296
8809
|
flatMap?: boolean;
|
|
8297
8810
|
flat?: boolean;
|
|
8811
|
+
at?: boolean;
|
|
8298
8812
|
};
|
|
8813
|
+
at: never;
|
|
8299
8814
|
};
|
|
8300
8815
|
} | {
|
|
8301
8816
|
[x: number]: string | number | boolean | {
|
|
@@ -8368,7 +8883,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8368
8883
|
includes?: boolean;
|
|
8369
8884
|
flatMap?: boolean;
|
|
8370
8885
|
flat?: boolean;
|
|
8886
|
+
at?: boolean;
|
|
8371
8887
|
};
|
|
8888
|
+
at: never;
|
|
8372
8889
|
};
|
|
8373
8890
|
};
|
|
8374
8891
|
id: string;
|
|
@@ -8459,6 +8976,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8459
8976
|
siteUrl: string;
|
|
8460
8977
|
domain: string;
|
|
8461
8978
|
metaPixelId: string | null;
|
|
8979
|
+
tiktokPixelId: string | null;
|
|
8462
8980
|
paystackPublicKey: string | null;
|
|
8463
8981
|
paystackSecretKey: string | null;
|
|
8464
8982
|
};
|
|
@@ -8580,7 +9098,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8580
9098
|
includes?: boolean;
|
|
8581
9099
|
flatMap?: boolean;
|
|
8582
9100
|
flat?: boolean;
|
|
9101
|
+
at?: boolean;
|
|
8583
9102
|
};
|
|
9103
|
+
at: never;
|
|
8584
9104
|
};
|
|
8585
9105
|
} | {
|
|
8586
9106
|
[x: number]: string | number | boolean | {
|
|
@@ -8653,7 +9173,9 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8653
9173
|
includes?: boolean;
|
|
8654
9174
|
flatMap?: boolean;
|
|
8655
9175
|
flat?: boolean;
|
|
9176
|
+
at?: boolean;
|
|
8656
9177
|
};
|
|
9178
|
+
at: never;
|
|
8657
9179
|
};
|
|
8658
9180
|
};
|
|
8659
9181
|
id: string;
|
|
@@ -8786,6 +9308,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8786
9308
|
siteUrl: string;
|
|
8787
9309
|
domain: string;
|
|
8788
9310
|
metaPixelId: string | null;
|
|
9311
|
+
tiktokPixelId: string | null;
|
|
8789
9312
|
paystackPublicKey: string | null;
|
|
8790
9313
|
paystackSecretKey: string | null;
|
|
8791
9314
|
};
|
|
@@ -8867,6 +9390,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8867
9390
|
siteUrl: string;
|
|
8868
9391
|
domain: string;
|
|
8869
9392
|
metaPixelId: string | null;
|
|
9393
|
+
tiktokPixelId: string | null;
|
|
8870
9394
|
paystackPublicKey: string | null;
|
|
8871
9395
|
paystackSecretKey: string | null;
|
|
8872
9396
|
};
|
|
@@ -8945,6 +9469,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
8945
9469
|
siteUrl: string;
|
|
8946
9470
|
domain: string;
|
|
8947
9471
|
metaPixelId: string | null;
|
|
9472
|
+
tiktokPixelId: string | null;
|
|
8948
9473
|
paystackPublicKey: string | null;
|
|
8949
9474
|
paystackSecretKey: string | null;
|
|
8950
9475
|
};
|
|
@@ -9035,6 +9560,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9035
9560
|
siteUrl: string;
|
|
9036
9561
|
domain: string;
|
|
9037
9562
|
metaPixelId: string | null;
|
|
9563
|
+
tiktokPixelId: string | null;
|
|
9038
9564
|
paystackPublicKey: string | null;
|
|
9039
9565
|
paystackSecretKey: string | null;
|
|
9040
9566
|
};
|
|
@@ -9155,6 +9681,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9155
9681
|
siteUrl: string;
|
|
9156
9682
|
domain: string;
|
|
9157
9683
|
metaPixelId: string | null;
|
|
9684
|
+
tiktokPixelId: string | null;
|
|
9158
9685
|
paystackPublicKey: string | null;
|
|
9159
9686
|
paystackSecretKey: string | null;
|
|
9160
9687
|
};
|
|
@@ -9269,6 +9796,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9269
9796
|
siteUrl: string;
|
|
9270
9797
|
domain: string;
|
|
9271
9798
|
metaPixelId: string | null;
|
|
9799
|
+
tiktokPixelId: string | null;
|
|
9272
9800
|
paystackPublicKey: string | null;
|
|
9273
9801
|
paystackSecretKey: string | null;
|
|
9274
9802
|
};
|
|
@@ -9459,6 +9987,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9459
9987
|
siteUrl: string;
|
|
9460
9988
|
domain: string;
|
|
9461
9989
|
metaPixelId: string | null;
|
|
9990
|
+
tiktokPixelId: string | null;
|
|
9462
9991
|
paystackPublicKey: string | null;
|
|
9463
9992
|
paystackSecretKey: string | null;
|
|
9464
9993
|
};
|
|
@@ -9537,6 +10066,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9537
10066
|
siteUrl: string;
|
|
9538
10067
|
domain: string;
|
|
9539
10068
|
metaPixelId: string | null;
|
|
10069
|
+
tiktokPixelId: string | null;
|
|
9540
10070
|
paystackPublicKey: string | null;
|
|
9541
10071
|
paystackSecretKey: string | null;
|
|
9542
10072
|
};
|
|
@@ -9630,6 +10160,7 @@ export declare function createAdminRpcClients(baseURL: string): {
|
|
|
9630
10160
|
siteUrl: string;
|
|
9631
10161
|
domain: string;
|
|
9632
10162
|
metaPixelId: string | null;
|
|
10163
|
+
tiktokPixelId: string | null;
|
|
9633
10164
|
paystackPublicKey: string | null;
|
|
9634
10165
|
paystackSecretKey: string | null;
|
|
9635
10166
|
};
|