@shopvirge/shopvirge-client 0.2.6 → 0.2.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/index.d.ts +606 -1
- package/dist/index.js +459 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -147,6 +147,76 @@ declare const $AccountUpdate: {
|
|
|
147
147
|
readonly required: readonly ["shop_id", "name", "details"];
|
|
148
148
|
readonly title: "AccountUpdate";
|
|
149
149
|
};
|
|
150
|
+
declare const $AdminAccountSchema: {
|
|
151
|
+
readonly properties: {
|
|
152
|
+
readonly id: {
|
|
153
|
+
readonly type: "string";
|
|
154
|
+
readonly format: "uuid";
|
|
155
|
+
readonly title: "Id";
|
|
156
|
+
};
|
|
157
|
+
readonly shop_id: {
|
|
158
|
+
readonly anyOf: readonly [{
|
|
159
|
+
readonly type: "string";
|
|
160
|
+
readonly format: "uuid";
|
|
161
|
+
}, {
|
|
162
|
+
readonly type: "null";
|
|
163
|
+
}];
|
|
164
|
+
readonly title: "Shop Id";
|
|
165
|
+
};
|
|
166
|
+
readonly shop_name: {
|
|
167
|
+
readonly anyOf: readonly [{
|
|
168
|
+
readonly type: "string";
|
|
169
|
+
}, {
|
|
170
|
+
readonly type: "null";
|
|
171
|
+
}];
|
|
172
|
+
readonly title: "Shop Name";
|
|
173
|
+
};
|
|
174
|
+
readonly name: {
|
|
175
|
+
readonly anyOf: readonly [{
|
|
176
|
+
readonly type: "string";
|
|
177
|
+
}, {
|
|
178
|
+
readonly type: "null";
|
|
179
|
+
}];
|
|
180
|
+
readonly title: "Name";
|
|
181
|
+
};
|
|
182
|
+
readonly hash_name: {
|
|
183
|
+
readonly anyOf: readonly [{
|
|
184
|
+
readonly type: "string";
|
|
185
|
+
}, {
|
|
186
|
+
readonly type: "null";
|
|
187
|
+
}];
|
|
188
|
+
readonly title: "Hash Name";
|
|
189
|
+
};
|
|
190
|
+
readonly details: {
|
|
191
|
+
readonly anyOf: readonly [{
|
|
192
|
+
readonly type: "object";
|
|
193
|
+
}, {
|
|
194
|
+
readonly type: "null";
|
|
195
|
+
}];
|
|
196
|
+
readonly title: "Details";
|
|
197
|
+
};
|
|
198
|
+
readonly stripe_customer_id: {
|
|
199
|
+
readonly anyOf: readonly [{
|
|
200
|
+
readonly type: "string";
|
|
201
|
+
}, {
|
|
202
|
+
readonly type: "null";
|
|
203
|
+
}];
|
|
204
|
+
readonly title: "Stripe Customer Id";
|
|
205
|
+
};
|
|
206
|
+
readonly stripe_synced_at: {
|
|
207
|
+
readonly anyOf: readonly [{
|
|
208
|
+
readonly type: "string";
|
|
209
|
+
readonly format: "date-time";
|
|
210
|
+
}, {
|
|
211
|
+
readonly type: "null";
|
|
212
|
+
}];
|
|
213
|
+
readonly title: "Stripe Synced At";
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
readonly type: "object";
|
|
217
|
+
readonly required: readonly ["id"];
|
|
218
|
+
readonly title: "AdminAccountSchema";
|
|
219
|
+
};
|
|
150
220
|
declare const $AttributeCreate: {
|
|
151
221
|
readonly properties: {
|
|
152
222
|
readonly name: {
|
|
@@ -1020,6 +1090,37 @@ declare const $ConfigurationLegal: {
|
|
|
1020
1090
|
readonly type: "object";
|
|
1021
1091
|
readonly title: "ConfigurationLegal";
|
|
1022
1092
|
};
|
|
1093
|
+
declare const $ConfigurationShipping: {
|
|
1094
|
+
readonly properties: {
|
|
1095
|
+
readonly enabled: {
|
|
1096
|
+
readonly type: "boolean";
|
|
1097
|
+
readonly title: "Enabled";
|
|
1098
|
+
readonly default: false;
|
|
1099
|
+
};
|
|
1100
|
+
readonly method: {
|
|
1101
|
+
readonly type: "string";
|
|
1102
|
+
readonly title: "Method";
|
|
1103
|
+
readonly default: "fixed";
|
|
1104
|
+
};
|
|
1105
|
+
readonly fixed_fee: {
|
|
1106
|
+
readonly type: "number";
|
|
1107
|
+
readonly title: "Fixed Fee";
|
|
1108
|
+
readonly default: 0;
|
|
1109
|
+
};
|
|
1110
|
+
readonly free_shipping_above_enabled: {
|
|
1111
|
+
readonly type: "boolean";
|
|
1112
|
+
readonly title: "Free Shipping Above Enabled";
|
|
1113
|
+
readonly default: false;
|
|
1114
|
+
};
|
|
1115
|
+
readonly free_shipping_above_amount: {
|
|
1116
|
+
readonly type: "number";
|
|
1117
|
+
readonly title: "Free Shipping Above Amount";
|
|
1118
|
+
readonly default: 0;
|
|
1119
|
+
};
|
|
1120
|
+
};
|
|
1121
|
+
readonly type: "object";
|
|
1122
|
+
readonly title: "ConfigurationShipping";
|
|
1123
|
+
};
|
|
1023
1124
|
declare const $ConfigurationV1_Input: {
|
|
1024
1125
|
readonly properties: {
|
|
1025
1126
|
readonly short_shop_name: {
|
|
@@ -1079,6 +1180,13 @@ declare const $ConfigurationV1_Input: {
|
|
|
1079
1180
|
readonly type: "null";
|
|
1080
1181
|
}];
|
|
1081
1182
|
};
|
|
1183
|
+
readonly shipping: {
|
|
1184
|
+
readonly anyOf: readonly [{
|
|
1185
|
+
readonly $ref: "#/components/schemas/ConfigurationShipping";
|
|
1186
|
+
}, {
|
|
1187
|
+
readonly type: "null";
|
|
1188
|
+
}];
|
|
1189
|
+
};
|
|
1082
1190
|
};
|
|
1083
1191
|
readonly type: "object";
|
|
1084
1192
|
readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
|
|
@@ -1143,6 +1251,13 @@ declare const $ConfigurationV1_Output: {
|
|
|
1143
1251
|
readonly type: "null";
|
|
1144
1252
|
}];
|
|
1145
1253
|
};
|
|
1254
|
+
readonly shipping: {
|
|
1255
|
+
readonly anyOf: readonly [{
|
|
1256
|
+
readonly $ref: "#/components/schemas/ConfigurationShipping";
|
|
1257
|
+
}, {
|
|
1258
|
+
readonly type: "null";
|
|
1259
|
+
}];
|
|
1260
|
+
};
|
|
1146
1261
|
};
|
|
1147
1262
|
readonly type: "object";
|
|
1148
1263
|
readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
|
|
@@ -1526,6 +1641,17 @@ declare const $LicenseUpdate: {
|
|
|
1526
1641
|
readonly required: readonly ["seats", "end_date"];
|
|
1527
1642
|
readonly title: "LicenseUpdate";
|
|
1528
1643
|
};
|
|
1644
|
+
declare const $LinkStripeBody: {
|
|
1645
|
+
readonly properties: {
|
|
1646
|
+
readonly stripe_customer_id: {
|
|
1647
|
+
readonly type: "string";
|
|
1648
|
+
readonly title: "Stripe Customer Id";
|
|
1649
|
+
};
|
|
1650
|
+
};
|
|
1651
|
+
readonly type: "object";
|
|
1652
|
+
readonly required: readonly ["stripe_customer_id"];
|
|
1653
|
+
readonly title: "LinkStripeBody";
|
|
1654
|
+
};
|
|
1529
1655
|
declare const $Msg: {
|
|
1530
1656
|
readonly properties: {
|
|
1531
1657
|
readonly msg: {
|
|
@@ -1580,6 +1706,14 @@ declare const $OrderBase: {
|
|
|
1580
1706
|
}];
|
|
1581
1707
|
readonly title: "Status";
|
|
1582
1708
|
};
|
|
1709
|
+
readonly shipping_fee_inc_btw: {
|
|
1710
|
+
readonly anyOf: readonly [{
|
|
1711
|
+
readonly type: "number";
|
|
1712
|
+
}, {
|
|
1713
|
+
readonly type: "null";
|
|
1714
|
+
}];
|
|
1715
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
1716
|
+
};
|
|
1583
1717
|
};
|
|
1584
1718
|
readonly type: "object";
|
|
1585
1719
|
readonly required: readonly ["total", "notes", "customer_order_id", "status"];
|
|
@@ -1628,6 +1762,14 @@ declare const $OrderCreate: {
|
|
|
1628
1762
|
}];
|
|
1629
1763
|
readonly title: "Status";
|
|
1630
1764
|
};
|
|
1765
|
+
readonly shipping_fee_inc_btw: {
|
|
1766
|
+
readonly anyOf: readonly [{
|
|
1767
|
+
readonly type: "number";
|
|
1768
|
+
}, {
|
|
1769
|
+
readonly type: "null";
|
|
1770
|
+
}];
|
|
1771
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
1772
|
+
};
|
|
1631
1773
|
readonly shop_id: {
|
|
1632
1774
|
readonly type: "string";
|
|
1633
1775
|
readonly format: "uuid";
|
|
@@ -1705,6 +1847,14 @@ declare const $OrderCreated: {
|
|
|
1705
1847
|
}];
|
|
1706
1848
|
readonly title: "Status";
|
|
1707
1849
|
};
|
|
1850
|
+
readonly shipping_fee_inc_btw: {
|
|
1851
|
+
readonly anyOf: readonly [{
|
|
1852
|
+
readonly type: "number";
|
|
1853
|
+
}, {
|
|
1854
|
+
readonly type: "null";
|
|
1855
|
+
}];
|
|
1856
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
1857
|
+
};
|
|
1708
1858
|
readonly id: {
|
|
1709
1859
|
readonly type: "string";
|
|
1710
1860
|
readonly format: "uuid";
|
|
@@ -1812,6 +1962,14 @@ declare const $OrderSchema: {
|
|
|
1812
1962
|
}];
|
|
1813
1963
|
readonly title: "Status";
|
|
1814
1964
|
};
|
|
1965
|
+
readonly shipping_fee_inc_btw: {
|
|
1966
|
+
readonly anyOf: readonly [{
|
|
1967
|
+
readonly type: "number";
|
|
1968
|
+
}, {
|
|
1969
|
+
readonly type: "null";
|
|
1970
|
+
}];
|
|
1971
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
1972
|
+
};
|
|
1815
1973
|
readonly id: {
|
|
1816
1974
|
readonly type: "string";
|
|
1817
1975
|
readonly format: "uuid";
|
|
@@ -1924,6 +2082,14 @@ declare const $OrderUpdate: {
|
|
|
1924
2082
|
}];
|
|
1925
2083
|
readonly title: "Status";
|
|
1926
2084
|
};
|
|
2085
|
+
readonly shipping_fee_inc_btw: {
|
|
2086
|
+
readonly anyOf: readonly [{
|
|
2087
|
+
readonly type: "number";
|
|
2088
|
+
}, {
|
|
2089
|
+
readonly type: "null";
|
|
2090
|
+
}];
|
|
2091
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
2092
|
+
};
|
|
1927
2093
|
readonly shop_id: {
|
|
1928
2094
|
readonly type: "string";
|
|
1929
2095
|
readonly format: "uuid";
|
|
@@ -1984,6 +2150,14 @@ declare const $OrderUpdated: {
|
|
|
1984
2150
|
}];
|
|
1985
2151
|
readonly title: "Status";
|
|
1986
2152
|
};
|
|
2153
|
+
readonly shipping_fee_inc_btw: {
|
|
2154
|
+
readonly anyOf: readonly [{
|
|
2155
|
+
readonly type: "number";
|
|
2156
|
+
}, {
|
|
2157
|
+
readonly type: "null";
|
|
2158
|
+
}];
|
|
2159
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
2160
|
+
};
|
|
1987
2161
|
readonly shop_id: {
|
|
1988
2162
|
readonly type: "string";
|
|
1989
2163
|
readonly format: "uuid";
|
|
@@ -3270,6 +3444,98 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3270
3444
|
readonly required: readonly ["shop_id", "category_id", "max_one", "shippable", "featured", "new_product", "tax_category", "image_1", "image_2", "image_3", "image_4", "image_5", "image_6", "translation", "id"];
|
|
3271
3445
|
readonly title: "ProductWithDetailsAndPrices";
|
|
3272
3446
|
};
|
|
3447
|
+
declare const $ShippingCalculateRequest: {
|
|
3448
|
+
readonly properties: {
|
|
3449
|
+
readonly shop_id: {
|
|
3450
|
+
readonly type: "string";
|
|
3451
|
+
readonly format: "uuid";
|
|
3452
|
+
readonly title: "Shop Id";
|
|
3453
|
+
};
|
|
3454
|
+
readonly order_info: {
|
|
3455
|
+
readonly items: {
|
|
3456
|
+
readonly $ref: "#/components/schemas/OrderItem";
|
|
3457
|
+
};
|
|
3458
|
+
readonly type: "array";
|
|
3459
|
+
readonly title: "Order Info";
|
|
3460
|
+
};
|
|
3461
|
+
};
|
|
3462
|
+
readonly type: "object";
|
|
3463
|
+
readonly required: readonly ["shop_id", "order_info"];
|
|
3464
|
+
readonly title: "ShippingCalculateRequest";
|
|
3465
|
+
};
|
|
3466
|
+
declare const $ShippingCalculation: {
|
|
3467
|
+
readonly properties: {
|
|
3468
|
+
readonly enabled: {
|
|
3469
|
+
readonly type: "boolean";
|
|
3470
|
+
readonly title: "Enabled";
|
|
3471
|
+
};
|
|
3472
|
+
readonly method: {
|
|
3473
|
+
readonly anyOf: readonly [{
|
|
3474
|
+
readonly type: "string";
|
|
3475
|
+
}, {
|
|
3476
|
+
readonly type: "null";
|
|
3477
|
+
}];
|
|
3478
|
+
readonly title: "Method";
|
|
3479
|
+
};
|
|
3480
|
+
readonly fee_inc_btw: {
|
|
3481
|
+
readonly type: "number";
|
|
3482
|
+
readonly title: "Fee Inc Btw";
|
|
3483
|
+
};
|
|
3484
|
+
readonly fee_ex_btw: {
|
|
3485
|
+
readonly type: "number";
|
|
3486
|
+
readonly title: "Fee Ex Btw";
|
|
3487
|
+
};
|
|
3488
|
+
readonly fee_btw: {
|
|
3489
|
+
readonly type: "number";
|
|
3490
|
+
readonly title: "Fee Btw";
|
|
3491
|
+
};
|
|
3492
|
+
readonly free_shipping_applied: {
|
|
3493
|
+
readonly type: "boolean";
|
|
3494
|
+
readonly title: "Free Shipping Applied";
|
|
3495
|
+
};
|
|
3496
|
+
readonly free_shipping_threshold: {
|
|
3497
|
+
readonly anyOf: readonly [{
|
|
3498
|
+
readonly type: "number";
|
|
3499
|
+
}, {
|
|
3500
|
+
readonly type: "null";
|
|
3501
|
+
}];
|
|
3502
|
+
readonly title: "Free Shipping Threshold";
|
|
3503
|
+
};
|
|
3504
|
+
readonly lines: {
|
|
3505
|
+
readonly items: {
|
|
3506
|
+
readonly $ref: "#/components/schemas/ShippingLine";
|
|
3507
|
+
};
|
|
3508
|
+
readonly type: "array";
|
|
3509
|
+
readonly title: "Lines";
|
|
3510
|
+
};
|
|
3511
|
+
};
|
|
3512
|
+
readonly type: "object";
|
|
3513
|
+
readonly required: readonly ["enabled", "fee_inc_btw", "fee_ex_btw", "fee_btw", "free_shipping_applied", "lines"];
|
|
3514
|
+
readonly title: "ShippingCalculation";
|
|
3515
|
+
};
|
|
3516
|
+
declare const $ShippingLine: {
|
|
3517
|
+
readonly properties: {
|
|
3518
|
+
readonly btw_rate: {
|
|
3519
|
+
readonly type: "number";
|
|
3520
|
+
readonly title: "Btw Rate";
|
|
3521
|
+
};
|
|
3522
|
+
readonly amount_ex_btw: {
|
|
3523
|
+
readonly type: "number";
|
|
3524
|
+
readonly title: "Amount Ex Btw";
|
|
3525
|
+
};
|
|
3526
|
+
readonly amount_inc_btw: {
|
|
3527
|
+
readonly type: "number";
|
|
3528
|
+
readonly title: "Amount Inc Btw";
|
|
3529
|
+
};
|
|
3530
|
+
readonly amount_btw: {
|
|
3531
|
+
readonly type: "number";
|
|
3532
|
+
readonly title: "Amount Btw";
|
|
3533
|
+
};
|
|
3534
|
+
};
|
|
3535
|
+
readonly type: "object";
|
|
3536
|
+
readonly required: readonly ["btw_rate", "amount_ex_btw", "amount_inc_btw", "amount_btw"];
|
|
3537
|
+
readonly title: "ShippingLine";
|
|
3538
|
+
};
|
|
3273
3539
|
declare const $ShopCacheStatus: {
|
|
3274
3540
|
readonly properties: {
|
|
3275
3541
|
readonly modified_at: {
|
|
@@ -3670,6 +3936,31 @@ declare const $ShopWithPrices: {
|
|
|
3670
3936
|
readonly required: readonly ["name", "description", "vat_standard", "vat_lower_1", "vat_lower_2", "vat_lower_3", "vat_special", "vat_zero", "id"];
|
|
3671
3937
|
readonly title: "ShopWithPrices";
|
|
3672
3938
|
};
|
|
3939
|
+
declare const $SyncStripeResponse: {
|
|
3940
|
+
readonly properties: {
|
|
3941
|
+
readonly id: {
|
|
3942
|
+
readonly type: "string";
|
|
3943
|
+
readonly format: "uuid";
|
|
3944
|
+
readonly title: "Id";
|
|
3945
|
+
};
|
|
3946
|
+
readonly stripe_customer_id: {
|
|
3947
|
+
readonly type: "string";
|
|
3948
|
+
readonly title: "Stripe Customer Id";
|
|
3949
|
+
};
|
|
3950
|
+
readonly stripe_synced_at: {
|
|
3951
|
+
readonly type: "string";
|
|
3952
|
+
readonly format: "date-time";
|
|
3953
|
+
readonly title: "Stripe Synced At";
|
|
3954
|
+
};
|
|
3955
|
+
readonly stripe_customer: {
|
|
3956
|
+
readonly type: "object";
|
|
3957
|
+
readonly title: "Stripe Customer";
|
|
3958
|
+
};
|
|
3959
|
+
};
|
|
3960
|
+
readonly type: "object";
|
|
3961
|
+
readonly required: readonly ["id", "stripe_customer_id", "stripe_synced_at", "stripe_customer"];
|
|
3962
|
+
readonly title: "SyncStripeResponse";
|
|
3963
|
+
};
|
|
3673
3964
|
declare const $TagCreate: {
|
|
3674
3965
|
readonly properties: {
|
|
3675
3966
|
readonly shop_id: {
|
|
@@ -3995,6 +4286,18 @@ type AccountUpdate = {
|
|
|
3995
4286
|
[key: string]: unknown;
|
|
3996
4287
|
};
|
|
3997
4288
|
};
|
|
4289
|
+
type AdminAccountSchema = {
|
|
4290
|
+
id: string;
|
|
4291
|
+
shop_id?: string | null;
|
|
4292
|
+
shop_name?: string | null;
|
|
4293
|
+
name?: string | null;
|
|
4294
|
+
hash_name?: string | null;
|
|
4295
|
+
details?: {
|
|
4296
|
+
[key: string]: unknown;
|
|
4297
|
+
} | null;
|
|
4298
|
+
stripe_customer_id?: string | null;
|
|
4299
|
+
stripe_synced_at?: string | null;
|
|
4300
|
+
};
|
|
3998
4301
|
type AttributeCreate = {
|
|
3999
4302
|
name: string;
|
|
4000
4303
|
unit?: string | null;
|
|
@@ -4183,6 +4486,13 @@ type ConfigurationLegal = {
|
|
|
4183
4486
|
kvk_number?: string | null;
|
|
4184
4487
|
btw_number?: string | null;
|
|
4185
4488
|
};
|
|
4489
|
+
type ConfigurationShipping = {
|
|
4490
|
+
enabled?: boolean;
|
|
4491
|
+
method?: string;
|
|
4492
|
+
fixed_fee?: number;
|
|
4493
|
+
free_shipping_above_enabled?: boolean;
|
|
4494
|
+
free_shipping_above_amount?: number;
|
|
4495
|
+
};
|
|
4186
4496
|
type ConfigurationV1_Input = {
|
|
4187
4497
|
short_shop_name: string;
|
|
4188
4498
|
logo: string;
|
|
@@ -4195,6 +4505,7 @@ type ConfigurationV1_Input = {
|
|
|
4195
4505
|
contact: ConfigurationContact;
|
|
4196
4506
|
toggles: Toggles;
|
|
4197
4507
|
legal?: ConfigurationLegal | null;
|
|
4508
|
+
shipping?: ConfigurationShipping | null;
|
|
4198
4509
|
};
|
|
4199
4510
|
type ConfigurationV1_Output = {
|
|
4200
4511
|
short_shop_name: string;
|
|
@@ -4208,6 +4519,7 @@ type ConfigurationV1_Output = {
|
|
|
4208
4519
|
contact: ConfigurationContact;
|
|
4209
4520
|
toggles: Toggles;
|
|
4210
4521
|
legal?: ConfigurationLegal | null;
|
|
4522
|
+
shipping?: ConfigurationShipping | null;
|
|
4211
4523
|
};
|
|
4212
4524
|
type DefaultPrice = {
|
|
4213
4525
|
id?: string | null;
|
|
@@ -4288,6 +4600,9 @@ type LicenseUpdate = {
|
|
|
4288
4600
|
seats: number | null;
|
|
4289
4601
|
end_date: string | null;
|
|
4290
4602
|
};
|
|
4603
|
+
type LinkStripeBody = {
|
|
4604
|
+
stripe_customer_id: string;
|
|
4605
|
+
};
|
|
4291
4606
|
type Msg = {
|
|
4292
4607
|
msg: string;
|
|
4293
4608
|
};
|
|
@@ -4297,6 +4612,7 @@ type OrderBase = {
|
|
|
4297
4612
|
notes: string | null;
|
|
4298
4613
|
customer_order_id: number | null;
|
|
4299
4614
|
status: string | null;
|
|
4615
|
+
shipping_fee_inc_btw?: number | null;
|
|
4300
4616
|
};
|
|
4301
4617
|
type OrderCreate = {
|
|
4302
4618
|
account_id?: string | null;
|
|
@@ -4304,6 +4620,7 @@ type OrderCreate = {
|
|
|
4304
4620
|
notes: string | null;
|
|
4305
4621
|
customer_order_id: number | null;
|
|
4306
4622
|
status: string | null;
|
|
4623
|
+
shipping_fee_inc_btw?: number | null;
|
|
4307
4624
|
shop_id: string;
|
|
4308
4625
|
order_info: Array<OrderItem>;
|
|
4309
4626
|
completed_at?: string | null;
|
|
@@ -4315,6 +4632,7 @@ type OrderCreated = {
|
|
|
4315
4632
|
notes: string | null;
|
|
4316
4633
|
customer_order_id: number | null;
|
|
4317
4634
|
status: string | null;
|
|
4635
|
+
shipping_fee_inc_btw?: number | null;
|
|
4318
4636
|
id: string;
|
|
4319
4637
|
created_at: string;
|
|
4320
4638
|
completed_at?: string | null;
|
|
@@ -4333,6 +4651,7 @@ type OrderSchema = {
|
|
|
4333
4651
|
notes: string | null;
|
|
4334
4652
|
customer_order_id: number | null;
|
|
4335
4653
|
status: string | null;
|
|
4654
|
+
shipping_fee_inc_btw?: number | null;
|
|
4336
4655
|
id: string;
|
|
4337
4656
|
shop_id: string;
|
|
4338
4657
|
order_info: Array<OrderItem>;
|
|
@@ -4349,6 +4668,7 @@ type OrderUpdate = {
|
|
|
4349
4668
|
notes: string | null;
|
|
4350
4669
|
customer_order_id: number | null;
|
|
4351
4670
|
status: string | null;
|
|
4671
|
+
shipping_fee_inc_btw?: number | null;
|
|
4352
4672
|
shop_id: string;
|
|
4353
4673
|
order_info: Array<OrderItem>;
|
|
4354
4674
|
};
|
|
@@ -4358,6 +4678,7 @@ type OrderUpdated = {
|
|
|
4358
4678
|
notes: string | null;
|
|
4359
4679
|
customer_order_id: number | null;
|
|
4360
4680
|
status: string | null;
|
|
4681
|
+
shipping_fee_inc_btw?: number | null;
|
|
4361
4682
|
shop_id: string;
|
|
4362
4683
|
order_info: Array<OrderItem>;
|
|
4363
4684
|
id: string;
|
|
@@ -4632,6 +4953,26 @@ type ProductWithDetailsAndPrices = {
|
|
|
4632
4953
|
[key: string]: unknown;
|
|
4633
4954
|
}>;
|
|
4634
4955
|
};
|
|
4956
|
+
type ShippingCalculateRequest = {
|
|
4957
|
+
shop_id: string;
|
|
4958
|
+
order_info: Array<OrderItem>;
|
|
4959
|
+
};
|
|
4960
|
+
type ShippingCalculation = {
|
|
4961
|
+
enabled: boolean;
|
|
4962
|
+
method?: string | null;
|
|
4963
|
+
fee_inc_btw: number;
|
|
4964
|
+
fee_ex_btw: number;
|
|
4965
|
+
fee_btw: number;
|
|
4966
|
+
free_shipping_applied: boolean;
|
|
4967
|
+
free_shipping_threshold?: number | null;
|
|
4968
|
+
lines: Array<ShippingLine>;
|
|
4969
|
+
};
|
|
4970
|
+
type ShippingLine = {
|
|
4971
|
+
btw_rate: number;
|
|
4972
|
+
amount_ex_btw: number;
|
|
4973
|
+
amount_inc_btw: number;
|
|
4974
|
+
amount_btw: number;
|
|
4975
|
+
};
|
|
4635
4976
|
type ShopCacheStatus = {
|
|
4636
4977
|
modified_at: string | null;
|
|
4637
4978
|
};
|
|
@@ -4719,6 +5060,14 @@ type ShopWithPrices = {
|
|
|
4719
5060
|
vat_zero: number;
|
|
4720
5061
|
id: string;
|
|
4721
5062
|
};
|
|
5063
|
+
type SyncStripeResponse = {
|
|
5064
|
+
id: string;
|
|
5065
|
+
stripe_customer_id: string;
|
|
5066
|
+
stripe_synced_at: string;
|
|
5067
|
+
stripe_customer: {
|
|
5068
|
+
[key: string]: unknown;
|
|
5069
|
+
};
|
|
5070
|
+
};
|
|
4722
5071
|
type TagCreate = {
|
|
4723
5072
|
shop_id: string;
|
|
4724
5073
|
name: string;
|
|
@@ -4875,6 +5224,46 @@ type GetByImproviserUserIdLicensesImproviserImproviserUserIdGetData = {
|
|
|
4875
5224
|
improviserUserId: string;
|
|
4876
5225
|
};
|
|
4877
5226
|
type GetByImproviserUserIdLicensesImproviserImproviserUserIdGetResponse = LicenseSchema;
|
|
5227
|
+
type ListAccountsAdminAccountsGetData = {
|
|
5228
|
+
/**
|
|
5229
|
+
* This filter can accept search query's like `key:value` and will split on the `:`. If it detects more than one `:`, or does not find a `:` it will search for the string in all columns.
|
|
5230
|
+
*/
|
|
5231
|
+
filter?: Array<string>;
|
|
5232
|
+
limit?: number;
|
|
5233
|
+
/**
|
|
5234
|
+
* If true, only accounts without a stripe_customer_id; if false, only those with one.
|
|
5235
|
+
*/
|
|
5236
|
+
missingStripe?: boolean | null;
|
|
5237
|
+
/**
|
|
5238
|
+
* Restrict to a single shop
|
|
5239
|
+
*/
|
|
5240
|
+
shopId?: string | null;
|
|
5241
|
+
skip?: number;
|
|
5242
|
+
/**
|
|
5243
|
+
* The sort will accept parameters like `col:ASC` or `col:DESC` and will split on the `:`. If it does not find a `:` it will sort ascending on that column.
|
|
5244
|
+
*/
|
|
5245
|
+
sort?: Array<string>;
|
|
5246
|
+
};
|
|
5247
|
+
type ListAccountsAdminAccountsGetResponse = Array<AdminAccountSchema>;
|
|
5248
|
+
type GetAccountAdminAccountsIdGetData = {
|
|
5249
|
+
id: string;
|
|
5250
|
+
};
|
|
5251
|
+
type GetAccountAdminAccountsIdGetResponse = AdminAccountSchema;
|
|
5252
|
+
type GetStripeCustomerAdminAccountsIdStripeCustomerGetData = {
|
|
5253
|
+
id: string;
|
|
5254
|
+
};
|
|
5255
|
+
type GetStripeCustomerAdminAccountsIdStripeCustomerGetResponse = {
|
|
5256
|
+
[key: string]: unknown;
|
|
5257
|
+
};
|
|
5258
|
+
type SyncStripeAdminAccountsIdSyncStripePostData = {
|
|
5259
|
+
id: string;
|
|
5260
|
+
};
|
|
5261
|
+
type SyncStripeAdminAccountsIdSyncStripePostResponse = SyncStripeResponse;
|
|
5262
|
+
type LinkStripeAdminAccountsIdLinkStripePostData = {
|
|
5263
|
+
id: string;
|
|
5264
|
+
requestBody: LinkStripeBody;
|
|
5265
|
+
};
|
|
5266
|
+
type LinkStripeAdminAccountsIdLinkStripePostResponse = AdminAccountSchema;
|
|
4878
5267
|
type GetSignedDownloadLinkDownloadsFileNameGetData = {
|
|
4879
5268
|
fileName: string;
|
|
4880
5269
|
};
|
|
@@ -5032,6 +5421,10 @@ type GetOrderProductsInStockOrdersStockOrderIdGetData = {
|
|
|
5032
5421
|
orderId: string;
|
|
5033
5422
|
};
|
|
5034
5423
|
type GetOrderProductsInStockOrdersStockOrderIdGetResponse = boolean;
|
|
5424
|
+
type CalculateShippingCalculatePostData = {
|
|
5425
|
+
requestBody: ShippingCalculateRequest;
|
|
5426
|
+
};
|
|
5427
|
+
type CalculateShippingCalculatePostResponse = ShippingCalculation;
|
|
5035
5428
|
type GetMultiShopsShopIdCategoriesGetData = {
|
|
5036
5429
|
/**
|
|
5037
5430
|
* This filter can accept search query's like `key:value` and will split on the `:`. If it detects more than one `:`, or does not find a `:` it will search for the string in all columns.
|
|
@@ -5839,6 +6232,135 @@ type $OpenApiTs = {
|
|
|
5839
6232
|
};
|
|
5840
6233
|
};
|
|
5841
6234
|
};
|
|
6235
|
+
'/admin/accounts': {
|
|
6236
|
+
get: {
|
|
6237
|
+
req: ListAccountsAdminAccountsGetData;
|
|
6238
|
+
res: {
|
|
6239
|
+
/**
|
|
6240
|
+
* Successful Response
|
|
6241
|
+
*/
|
|
6242
|
+
200: Array<AdminAccountSchema>;
|
|
6243
|
+
/**
|
|
6244
|
+
* Not a member of the Admins group
|
|
6245
|
+
*/
|
|
6246
|
+
403: unknown;
|
|
6247
|
+
/**
|
|
6248
|
+
* Validation Error
|
|
6249
|
+
*/
|
|
6250
|
+
422: HTTPValidationError;
|
|
6251
|
+
};
|
|
6252
|
+
};
|
|
6253
|
+
};
|
|
6254
|
+
'/admin/accounts/{id}': {
|
|
6255
|
+
get: {
|
|
6256
|
+
req: GetAccountAdminAccountsIdGetData;
|
|
6257
|
+
res: {
|
|
6258
|
+
/**
|
|
6259
|
+
* Successful Response
|
|
6260
|
+
*/
|
|
6261
|
+
200: AdminAccountSchema;
|
|
6262
|
+
/**
|
|
6263
|
+
* Not a member of the Admins group
|
|
6264
|
+
*/
|
|
6265
|
+
403: unknown;
|
|
6266
|
+
/**
|
|
6267
|
+
* Account not found
|
|
6268
|
+
*/
|
|
6269
|
+
404: unknown;
|
|
6270
|
+
/**
|
|
6271
|
+
* Validation Error
|
|
6272
|
+
*/
|
|
6273
|
+
422: HTTPValidationError;
|
|
6274
|
+
};
|
|
6275
|
+
};
|
|
6276
|
+
};
|
|
6277
|
+
'/admin/accounts/{id}/stripe-customer': {
|
|
6278
|
+
get: {
|
|
6279
|
+
req: GetStripeCustomerAdminAccountsIdStripeCustomerGetData;
|
|
6280
|
+
res: {
|
|
6281
|
+
/**
|
|
6282
|
+
* Successful Response
|
|
6283
|
+
*/
|
|
6284
|
+
200: {
|
|
6285
|
+
[key: string]: unknown;
|
|
6286
|
+
};
|
|
6287
|
+
/**
|
|
6288
|
+
* Account or shop not configured for Stripe
|
|
6289
|
+
*/
|
|
6290
|
+
400: unknown;
|
|
6291
|
+
/**
|
|
6292
|
+
* Not a member of the Admins group
|
|
6293
|
+
*/
|
|
6294
|
+
403: unknown;
|
|
6295
|
+
/**
|
|
6296
|
+
* Account not found
|
|
6297
|
+
*/
|
|
6298
|
+
404: unknown;
|
|
6299
|
+
/**
|
|
6300
|
+
* Validation Error
|
|
6301
|
+
*/
|
|
6302
|
+
422: HTTPValidationError;
|
|
6303
|
+
/**
|
|
6304
|
+
* Stripe API error
|
|
6305
|
+
*/
|
|
6306
|
+
502: unknown;
|
|
6307
|
+
};
|
|
6308
|
+
};
|
|
6309
|
+
};
|
|
6310
|
+
'/admin/accounts/{id}/sync-stripe': {
|
|
6311
|
+
post: {
|
|
6312
|
+
req: SyncStripeAdminAccountsIdSyncStripePostData;
|
|
6313
|
+
res: {
|
|
6314
|
+
/**
|
|
6315
|
+
* Successful Response
|
|
6316
|
+
*/
|
|
6317
|
+
200: SyncStripeResponse;
|
|
6318
|
+
/**
|
|
6319
|
+
* Account or shop not configured for Stripe
|
|
6320
|
+
*/
|
|
6321
|
+
400: unknown;
|
|
6322
|
+
/**
|
|
6323
|
+
* Not a member of the Admins group
|
|
6324
|
+
*/
|
|
6325
|
+
403: unknown;
|
|
6326
|
+
/**
|
|
6327
|
+
* Account not found
|
|
6328
|
+
*/
|
|
6329
|
+
404: unknown;
|
|
6330
|
+
/**
|
|
6331
|
+
* Validation Error
|
|
6332
|
+
*/
|
|
6333
|
+
422: HTTPValidationError;
|
|
6334
|
+
/**
|
|
6335
|
+
* Stripe API error
|
|
6336
|
+
*/
|
|
6337
|
+
502: unknown;
|
|
6338
|
+
};
|
|
6339
|
+
};
|
|
6340
|
+
};
|
|
6341
|
+
'/admin/accounts/{id}/link-stripe': {
|
|
6342
|
+
post: {
|
|
6343
|
+
req: LinkStripeAdminAccountsIdLinkStripePostData;
|
|
6344
|
+
res: {
|
|
6345
|
+
/**
|
|
6346
|
+
* Successful Response
|
|
6347
|
+
*/
|
|
6348
|
+
200: AdminAccountSchema;
|
|
6349
|
+
/**
|
|
6350
|
+
* Not a member of the Admins group
|
|
6351
|
+
*/
|
|
6352
|
+
403: unknown;
|
|
6353
|
+
/**
|
|
6354
|
+
* Account not found
|
|
6355
|
+
*/
|
|
6356
|
+
404: unknown;
|
|
6357
|
+
/**
|
|
6358
|
+
* Validation Error
|
|
6359
|
+
*/
|
|
6360
|
+
422: HTTPValidationError;
|
|
6361
|
+
};
|
|
6362
|
+
};
|
|
6363
|
+
};
|
|
5842
6364
|
'/downloads/{file_name}': {
|
|
5843
6365
|
get: {
|
|
5844
6366
|
req: GetSignedDownloadLinkDownloadsFileNameGetData;
|
|
@@ -6228,6 +6750,21 @@ type $OpenApiTs = {
|
|
|
6228
6750
|
};
|
|
6229
6751
|
};
|
|
6230
6752
|
};
|
|
6753
|
+
'/shipping/calculate': {
|
|
6754
|
+
post: {
|
|
6755
|
+
req: CalculateShippingCalculatePostData;
|
|
6756
|
+
res: {
|
|
6757
|
+
/**
|
|
6758
|
+
* Successful Response
|
|
6759
|
+
*/
|
|
6760
|
+
200: ShippingCalculation;
|
|
6761
|
+
/**
|
|
6762
|
+
* Validation Error
|
|
6763
|
+
*/
|
|
6764
|
+
422: HTTPValidationError;
|
|
6765
|
+
};
|
|
6766
|
+
};
|
|
6767
|
+
};
|
|
6231
6768
|
'/shops/{shop_id}/categories/': {
|
|
6232
6769
|
get: {
|
|
6233
6770
|
req: GetMultiShopsShopIdCategoriesGetData;
|
|
@@ -7494,6 +8031,66 @@ declare const deleteLicensesIdDelete: (data: DeleteLicensesIdDeleteData) => Canc
|
|
|
7494
8031
|
* @throws ApiError
|
|
7495
8032
|
*/
|
|
7496
8033
|
declare const getByImproviserUserIdLicensesImproviserImproviserUserIdGet: (data: GetByImproviserUserIdLicensesImproviserImproviserUserIdGetData) => CancelablePromise<GetByImproviserUserIdLicensesImproviserImproviserUserIdGetResponse>;
|
|
8034
|
+
/**
|
|
8035
|
+
* List Accounts
|
|
8036
|
+
* @param data The data for the request.
|
|
8037
|
+
* @param data.shopId Restrict to a single shop
|
|
8038
|
+
* @param data.missingStripe If true, only accounts without a stripe_customer_id; if false, only those with one.
|
|
8039
|
+
* @param data.skip
|
|
8040
|
+
* @param data.limit
|
|
8041
|
+
* @param data.filter This filter can accept search query's like `key:value` and will split on the `:`. If it detects more than one `:`, or does not find a `:` it will search for the string in all columns.
|
|
8042
|
+
* @param data.sort The sort will accept parameters like `col:ASC` or `col:DESC` and will split on the `:`. If it does not find a `:` it will sort ascending on that column.
|
|
8043
|
+
* @returns AdminAccountSchema Successful Response
|
|
8044
|
+
* @throws ApiError
|
|
8045
|
+
*/
|
|
8046
|
+
declare const listAccountsAdminAccountsGet: (data?: ListAccountsAdminAccountsGetData) => CancelablePromise<ListAccountsAdminAccountsGetResponse>;
|
|
8047
|
+
/**
|
|
8048
|
+
* Get Account
|
|
8049
|
+
* @param data The data for the request.
|
|
8050
|
+
* @param data.id
|
|
8051
|
+
* @returns AdminAccountSchema Successful Response
|
|
8052
|
+
* @throws ApiError
|
|
8053
|
+
*/
|
|
8054
|
+
declare const getAccountAdminAccountsIdGet: (data: GetAccountAdminAccountsIdGetData) => CancelablePromise<GetAccountAdminAccountsIdGetResponse>;
|
|
8055
|
+
/**
|
|
8056
|
+
* Get Stripe Customer
|
|
8057
|
+
* Read-through: fetch the Stripe customer for this account.
|
|
8058
|
+
*
|
|
8059
|
+
* Does NOT persist anything; use ``POST /sync-stripe`` to write the
|
|
8060
|
+
* snapshot back into the account's ``details`` column.
|
|
8061
|
+
* @param data The data for the request.
|
|
8062
|
+
* @param data.id
|
|
8063
|
+
* @returns unknown Successful Response
|
|
8064
|
+
* @throws ApiError
|
|
8065
|
+
*/
|
|
8066
|
+
declare const getStripeCustomerAdminAccountsIdStripeCustomerGet: (data: GetStripeCustomerAdminAccountsIdStripeCustomerGetData) => CancelablePromise<GetStripeCustomerAdminAccountsIdStripeCustomerGetResponse>;
|
|
8067
|
+
/**
|
|
8068
|
+
* Sync Stripe
|
|
8069
|
+
* Pull the Stripe customer snapshot and persist it on the account.
|
|
8070
|
+
*
|
|
8071
|
+
* Writes ``details["stripe_customer"]`` (the full Stripe payload) and
|
|
8072
|
+
* ``details["stripe_synced_at"]`` (ISO timestamp). Existing keys in
|
|
8073
|
+
* ``details`` are preserved.
|
|
8074
|
+
* @param data The data for the request.
|
|
8075
|
+
* @param data.id
|
|
8076
|
+
* @returns SyncStripeResponse Successful Response
|
|
8077
|
+
* @throws ApiError
|
|
8078
|
+
*/
|
|
8079
|
+
declare const syncStripeAdminAccountsIdSyncStripePost: (data: SyncStripeAdminAccountsIdSyncStripePostData) => CancelablePromise<SyncStripeAdminAccountsIdSyncStripePostResponse>;
|
|
8080
|
+
/**
|
|
8081
|
+
* Link Stripe
|
|
8082
|
+
* Manually associate a Stripe customer id with an account.
|
|
8083
|
+
*
|
|
8084
|
+
* Useful for reconciling local records that pre-date the
|
|
8085
|
+
* auto-customer-create flow. This does NOT call Stripe; follow up
|
|
8086
|
+
* with ``POST /sync-stripe`` to pull the snapshot.
|
|
8087
|
+
* @param data The data for the request.
|
|
8088
|
+
* @param data.id
|
|
8089
|
+
* @param data.requestBody
|
|
8090
|
+
* @returns AdminAccountSchema Successful Response
|
|
8091
|
+
* @throws ApiError
|
|
8092
|
+
*/
|
|
8093
|
+
declare const linkStripeAdminAccountsIdLinkStripePost: (data: LinkStripeAdminAccountsIdLinkStripePostData) => CancelablePromise<LinkStripeAdminAccountsIdLinkStripePostResponse>;
|
|
7497
8094
|
/**
|
|
7498
8095
|
* Get Signed Download Link
|
|
7499
8096
|
* @param data The data for the request.
|
|
@@ -7739,6 +8336,14 @@ declare const deleteOrdersOrderIdDelete: (data: DeleteOrdersOrderIdDeleteData) =
|
|
|
7739
8336
|
* @throws ApiError
|
|
7740
8337
|
*/
|
|
7741
8338
|
declare const getOrderProductsInStockOrdersStockOrderIdGet: (data: GetOrderProductsInStockOrdersStockOrderIdGetData) => CancelablePromise<GetOrderProductsInStockOrdersStockOrderIdGetResponse>;
|
|
8339
|
+
/**
|
|
8340
|
+
* Calculate
|
|
8341
|
+
* @param data The data for the request.
|
|
8342
|
+
* @param data.requestBody
|
|
8343
|
+
* @returns ShippingCalculation Successful Response
|
|
8344
|
+
* @throws ApiError
|
|
8345
|
+
*/
|
|
8346
|
+
declare const calculateShippingCalculatePost: (data: CalculateShippingCalculatePostData) => CancelablePromise<CalculateShippingCalculatePostResponse>;
|
|
7742
8347
|
/**
|
|
7743
8348
|
* Get Multi
|
|
7744
8349
|
* @param data The data for the request.
|
|
@@ -8540,4 +9145,4 @@ declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelableProm
|
|
|
8540
9145
|
*/
|
|
8541
9146
|
declare const deleteFaqFaqIdDelete: (data: DeleteFaqFaqIdDeleteData) => CancelablePromise<DeleteFaqFaqIdDeleteResponse>;
|
|
8542
9147
|
|
|
8543
|
-
export { $AccountCreate, $AccountSchema, $AccountUpdate, $AttributeCreate, $AttributeOptionCreate, $AttributeOptionSchema, $AttributeOptionUpdate, $AttributeSchema, $AttributeTranslationBase, $AttributeUpdate, $AttributeWithOptionsSchema, $AvailableAttributeSchema, $AvailableOptionSchema, $Body_login_access_token_login_access_token_post, $Body_reset_password_reset_password__post, $Body_update_user_me_users_me_put, $Cart, $CategoryCreate, $CategoryImageDelete, $CategorySchema, $CategoryTranslationBase, $CategoryUpdate, $ConfigurationContact, $ConfigurationLanguageFieldMenuItems, $ConfigurationLanguageFieldStaticTexts, $ConfigurationLanguageFields, $ConfigurationLanguages_Input, $ConfigurationLanguages_Output, $ConfigurationLegal, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $Msg, type $OpenApiTs, $OrderBase, $OrderCreate, $OrderCreated, $OrderItem, $OrderSchema, $OrderUpdate, $OrderUpdated, $ProductAttributeItem, $ProductAttributeOptionSelectionAdd, $ProductAttributeOptionSelectionReplace, $ProductAttributeValueBase, $ProductAttributeValueSchema, $ProductCreate, $ProductResponse, $ProductToTagCreate, $ProductToTagSchema, $ProductToTagUpdate, $ProductTranslationBase, $ProductUpdate, $ProductWithAttributes, $ProductWithDefaultPrice, $ProductWithDetailsAndPrices, $ShopCacheStatus, $ShopConfig, $ShopConfigUpdate_Input, $ShopConfigUpdate_Output, $ShopCreate, $ShopIp, $ShopLastCompletedOrder, $ShopLastPendingOrder, $ShopSchema, $ShopType, $ShopTypeName, $ShopUpdate, $ShopWithPrices, $TagCreate, $TagSchema, $TagTranslationBase, $TagUpdate, $Toggles, $User, $UserCreate, $UserUpdate, $ValidationError, type AccountCreate, type AccountSchema, type AccountUpdate, type AddNewIpShopsAllowedIpsIdPostData, type AddNewIpShopsAllowedIpsIdPostResponse, ApiError, type AttributeCreate, type AttributeOptionCreate, type AttributeOptionSchema, type AttributeOptionUpdate, type AttributeSchema, type AttributeTranslationBase, type AttributeUpdate, type AttributeWithOptionsSchema, type AvailableAttributeSchema, type AvailableOptionSchema, type Body_login_access_token_login_access_token_post, type Body_reset_password_reset_password__post, type Body_update_user_me_users_me_put, CancelError, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteData, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteResponse, CancelablePromise, type Cart, type CategoryCreate, type CategoryImageDelete, type CategorySchema, type CategoryTranslationBase, type CategoryUpdate, type CheckOrdersCheckIdsGetData, type CheckOrdersCheckIdsGetResponse, type ConfigurationContact, type ConfigurationLanguageFieldMenuItems, type ConfigurationLanguageFieldStaticTexts, type ConfigurationLanguageFields, type ConfigurationLanguages_Input, type ConfigurationLanguages_Output, type ConfigurationLegal, type ConfigurationV1_Input, type ConfigurationV1_Output, type CreateEarlyAccessPostData, type CreateEarlyAccessPostResponse, type CreateFaqPostData, type CreateFaqPostResponse, type CreateLicensesPostData, type CreateLicensesPostResponse, type CreateOptionShopsShopIdAttributesAttributeIdOptionsPostData, type CreateOptionShopsShopIdAttributesAttributeIdOptionsPostResponse, type CreateOptionV2ShopsShopIdAttributeOptionsPostData, type CreateOptionV2ShopsShopIdAttributeOptionsPostResponse, type CreateOrdersPostData, type CreateOrdersPostResponse, type CreatePaymentIntentShopsShopIdStripePostData, type CreatePaymentIntentShopsShopIdStripePostResponse, type CreateShopsPostData, type CreateShopsPostResponse, type CreateShopsShopIdAccountsPostData, type CreateShopsShopIdAccountsPostResponse, type CreateShopsShopIdAttributesPostData, type CreateShopsShopIdAttributesPostResponse, type CreateShopsShopIdCategoriesPostData, type CreateShopsShopIdCategoriesPostResponse, type CreateShopsShopIdProductsPostData, type CreateShopsShopIdProductsPostResponse, type CreateShopsShopIdProductsToTagsPostData, type CreateShopsShopIdProductsToTagsPostResponse, type CreateShopsShopIdTagsPostData, type CreateShopsShopIdTagsPostResponse, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostData, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostResponse, type CreateUsersPostData, type CreateUsersPostResponse, type DefaultPrice, type DeleteFaqFaqIdDeleteData, type DeleteFaqFaqIdDeleteResponse, type DeleteImageShopsShopIdCategoriesImagesDeleteIdPutData, type DeleteImageShopsShopIdCategoriesImagesDeleteIdPutResponse, type DeleteLicensesIdDeleteData, type DeleteLicensesIdDeleteResponse, type DeleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDeleteData, type DeleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDeleteResponse, type DeleteOptionV2ShopsShopIdAttributeOptionsOptionIdDeleteData, type DeleteOptionV2ShopsShopIdAttributeOptionsOptionIdDeleteResponse, type DeleteOrdersOrderIdDeleteData, type DeleteOrdersOrderIdDeleteResponse, type DeleteShopsShopIdAccountsAccountIdDeleteData, type DeleteShopsShopIdAccountsAccountIdDeleteResponse, type DeleteShopsShopIdAttributesAttributeIdDeleteData, type DeleteShopsShopIdAttributesAttributeIdDeleteResponse, type DeleteShopsShopIdCategoriesCategoryIdDeleteData, type DeleteShopsShopIdCategoriesCategoryIdDeleteResponse, type DeleteShopsShopIdDeleteData, type DeleteShopsShopIdDeleteResponse, type DeleteShopsShopIdProductsProductIdDeleteData, type DeleteShopsShopIdProductsProductIdDeleteResponse, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse, type DeleteShopsShopIdTagsTagIdDeleteData, type DeleteShopsShopIdTagsTagIdDeleteResponse, type DeleteTemporaryImagesImagesDeleteTempPostResponse, type EarlyAccessCreate, type EditLicensesIdPutData, type EditLicensesIdPutResponse, type FaqCreate, type FaqCreated, type FaqSchema, type FaqUpdate, type FaqUpdated, type FormInfoRequestFormPostData, type FormInfoRequestFormPostResponse, type FormTestFormsPostData, type FormTestFormsPostResponse, type GetAllowedIpsShopsAllowedIpsIdGetData, type GetAllowedIpsShopsAllowedIpsIdGetResponse, type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetData, type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetResponse, type GetByIdFaqIdGetData, type GetByIdFaqIdGetResponse, type GetByIdLicensesIdGetData, type GetByIdLicensesIdGetResponse, type GetByIdOrdersIdGetData, type GetByIdOrdersIdGetResponse, type GetByIdShopsIdGetData, type GetByIdShopsIdGetResponse, type GetByIdShopsShopIdAccountsIdGetData, type GetByIdShopsShopIdAccountsIdGetResponse, type GetByIdShopsShopIdAttributesIdAttributeIdGetData, type GetByIdShopsShopIdAttributesIdAttributeIdGetResponse, type GetByIdShopsShopIdCategoriesCategoryIdGetData, type GetByIdShopsShopIdCategoriesCategoryIdGetResponse, type GetByIdShopsShopIdCategoriesImagesIdGetData, type GetByIdShopsShopIdCategoriesImagesIdGetResponse, type GetByIdShopsShopIdProductsProductIdGetData, type GetByIdShopsShopIdProductsProductIdGetResponse, type GetByIdShopsShopIdProductsToTagsIdGetData, type GetByIdShopsShopIdProductsToTagsIdGetResponse, type GetByIdShopsShopIdTagsTagIdGetData, type GetByIdShopsShopIdTagsTagIdGetResponse, type GetByIdUsersUserIdGetData, type GetByIdUsersUserIdGetResponse, type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData, type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse, type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetData, type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetResponse, type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetData, type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetResponse, type GetByImproviserUserIdLicensesImproviserImproviserUserIdGetData, type GetByImproviserUserIdLicensesImproviserImproviserUserIdGetResponse, type GetByNameShopsShopIdAttributesNameNameGetData, type GetByNameShopsShopIdAttributesNameNameGetResponse, type GetByNameShopsShopIdCategoriesNameNameGetData, type GetByNameShopsShopIdCategoriesNameNameGetResponse, type GetByNameShopsShopIdTagsNameNameGetData, type GetByNameShopsShopIdTagsNameNameGetResponse, type GetCacheStatusShopsCacheStatusIdGetData, type GetCacheStatusShopsCacheStatusIdGetResponse, type GetCartProductsShopsShopIdPricesPostData, type GetCartProductsShopsShopIdPricesPostResponse, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetData, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetResponse, type GetConfigShopsConfigIdGetData, type GetConfigShopsConfigIdGetResponse, type GetFormsFormsGetResponse, type GetHealthHealthGetResponse, type GetLastCompletedOrderShopsLastCompletedOrderIdGetData, type GetLastCompletedOrderShopsLastCompletedOrderIdGetResponse, type GetLastPendingOrderShopsLastPendingOrderIdGetData, type GetLastPendingOrderShopsLastPendingOrderIdGetResponse, type GetMultiFaqGetData, type GetMultiFaqGetResponse, type GetMultiLicensesGetData, type GetMultiLicensesGetResponse, type GetMultiOrdersGetData, type GetMultiOrdersGetResponse, type GetMultiShopsGetData, type GetMultiShopsGetResponse, type GetMultiShopsShopIdAccountsGetData, type GetMultiShopsShopIdAccountsGetResponse, type GetMultiShopsShopIdAttributesGetData, type GetMultiShopsShopIdAttributesGetResponse, type GetMultiShopsShopIdCategoriesGetData, type GetMultiShopsShopIdCategoriesGetResponse, type GetMultiShopsShopIdCategoriesImagesGetData, type GetMultiShopsShopIdCategoriesImagesGetResponse, type GetMultiShopsShopIdProductsGetData, type GetMultiShopsShopIdProductsGetResponse, type GetMultiShopsShopIdProductsToTagsGetData, type GetMultiShopsShopIdProductsToTagsGetResponse, type GetMultiShopsShopIdTagsGetData, type GetMultiShopsShopIdTagsGetResponse, type GetMultiUsersGetData, type GetMultiUsersGetResponse, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetData, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetResponse, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetData, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetResponse, type GetOrderProductsInStockOrdersStockOrderIdGetData, type GetOrderProductsInStockOrdersStockOrderIdGetResponse, type GetProductsShopsShopIdPricesGetData, type GetProductsShopsShopIdPricesGetResponse, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetData, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetResponse, type GetSignedDownloadLinkDownloadsFileNameGetData, type GetSignedDownloadLinkDownloadsFileNameGetResponse, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetResponse, type GetSignedUrlImagesSignedUrlImageNameGetData, type GetSignedUrlImagesSignedUrlImageNameGetResponse, type GetUserMeUsersMeGetResponse, type GetWithOptionsShopsShopIdAttributesWithOptionsGetData, type GetWithOptionsShopsShopIdAttributesWithOptionsGetResponse, type HTTPValidationError, type Lang, type LicenseCreate, type LicenseSchema, type LicenseUpdate, type ListOptionsForShopShopsShopIdAttributeOptionsGetData, type ListOptionsForShopShopsShopIdAttributeOptionsGetResponse, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetData, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetResponse, type LoginAccessTokenLoginAccessTokenPostData, type LoginAccessTokenLoginAccessTokenPostResponse, type MoveImagesImagesMovePostResponse, type Msg, type NewFormFormsFormKeyPostData, type NewFormFormsFormKeyPostResponse, OpenAPI, type OpenAPIConfig, type OrderBase, type OrderCreate, type OrderCreated, type OrderItem, type OrderSchema, type OrderUpdate, type OrderUpdated, type PatchOrdersOrderIdPatchData, type PatchOrdersOrderIdPatchResponse, type ProductAttributeItem, type ProductAttributeOptionSelectionAdd, type ProductAttributeOptionSelectionReplace, type ProductAttributeValueBase, type ProductAttributeValueSchema, type ProductAttributeValuesCreateDeprecatedData, type ProductAttributeValuesCreateDeprecatedResponse, type ProductAttributeValuesCreateForProductData, type ProductAttributeValuesCreateForProductResponse, type ProductAttributeValuesDeleteData, type ProductAttributeValuesDeleteResponse, type ProductAttributeValuesGetData, type ProductAttributeValuesGetResponse, type ProductAttributeValuesListData, type ProductAttributeValuesListResponse, type ProductAttributeValuesReplaceForProductData, type ProductAttributeValuesReplaceForProductResponse, type ProductCreate, type ProductResponse, type ProductToTagCreate, type ProductToTagSchema, type ProductToTagUpdate, type ProductTranslationBase, type ProductUpdate, type ProductWithAttributes, type ProductWithDefaultPrice, type ProductWithDetailsAndPrices, type PutShopsShopIdCategoriesImagesIdPutData, type PutShopsShopIdCategoriesImagesIdPutResponse, type RecoverPasswordPasswordRecoveryEmailPostData, type RecoverPasswordPasswordRecoveryEmailPostResponse, type RemoveIpShopsAllowedIpsIdRemovePostData, type RemoveIpShopsAllowedIpsIdRemovePostResponse, type ResetPasswordResetPasswordPostData, type ResetPasswordResetPasswordPostResponse, type SendDownloadLinkViaEmailDownloadsSendPostData, type SendDownloadLinkViaEmailDownloadsSendPostResponse, type ShopCacheStatus, type ShopConfig, type ShopConfigUpdate_Input, type ShopConfigUpdate_Output, type ShopCreate, type ShopIp, type ShopLastCompletedOrder, type ShopLastPendingOrder, type ShopSchema, type ShopType, type ShopTypeName, type ShopUpdate, type ShopWithPrices, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetData, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetResponse, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetData, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetResponse, type SwapShopsShopIdCategoriesCategoryIdSwapPutData, type SwapShopsShopIdCategoriesCategoryIdSwapPutResponse, type SwapShopsShopIdProductsProductIdSwapPutData, type SwapShopsShopIdProductsProductIdSwapPutResponse, type TagCreate, type TagSchema, type TagTranslationBase, type TagUpdate, type TestTokenLoginTestTokenPostResponse, type Toggles, type TriggerErrorSentryGetData, type TriggerErrorSentryGetResponse, type UpdateConfigShopsConfigIdPutData, type UpdateConfigShopsConfigIdPutResponse, type UpdateFaqFaqIdPutData, type UpdateFaqFaqIdPutResponse, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutData, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutResponse, type UpdateOrdersOrderIdPutData, type UpdateOrdersOrderIdPutResponse, type UpdateShopsShopIdAccountsAccountIdPutData, type UpdateShopsShopIdAccountsAccountIdPutResponse, type UpdateShopsShopIdAttributesAttributeIdPutData, type UpdateShopsShopIdAttributesAttributeIdPutResponse, type UpdateShopsShopIdCategoriesCategoryIdPutData, type UpdateShopsShopIdCategoriesCategoryIdPutResponse, type UpdateShopsShopIdProductsProductIdPutData, type UpdateShopsShopIdProductsProductIdPutResponse, type UpdateShopsShopIdProductsToTagsProductToTagIdPutData, type UpdateShopsShopIdProductsToTagsProductToTagIdPutResponse, type UpdateShopsShopIdPutData, type UpdateShopsShopIdPutResponse, type UpdateShopsShopIdTagsTagIdPutData, type UpdateShopsShopIdTagsTagIdPutResponse, type UpdateUserMeUsersMePutData, type UpdateUserMeUsersMePutResponse, type UpdateUsersUserIdPutData, type UpdateUsersUserIdPutResponse, type User, type UserCreate, type UserUpdate, type ValidationError, addNewIpShopsAllowedIpsIdPost, cancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDelete, checkOrdersCheckIdsGet, createEarlyAccessPost, createFaqPost, createLicensesPost, createOptionShopsShopIdAttributesAttributeIdOptionsPost, createOptionV2ShopsShopIdAttributeOptionsPost, createOrdersPost, createPaymentIntentShopsShopIdStripePost, createShopsPost, createShopsShopIdAccountsPost, createShopsShopIdAttributesPost, createShopsShopIdCategoriesPost, createShopsShopIdProductsPost, createShopsShopIdProductsToTagsPost, createShopsShopIdTagsPost, createSubscriptionIntentShopsShopIdStripeSubscriptionPost, createUsersPost, deleteFaqFaqIdDelete, deleteImageShopsShopIdCategoriesImagesDeleteIdPut, deleteLicensesIdDelete, deleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDelete, deleteOptionV2ShopsShopIdAttributeOptionsOptionIdDelete, deleteOrdersOrderIdDelete, deleteShopsShopIdAccountsAccountIdDelete, deleteShopsShopIdAttributesAttributeIdDelete, deleteShopsShopIdCategoriesCategoryIdDelete, deleteShopsShopIdDelete, deleteShopsShopIdProductsProductIdDelete, deleteShopsShopIdProductsToTagsProductToTagIdDelete, deleteShopsShopIdTagsTagIdDelete, deleteTemporaryImagesImagesDeleteTempPost, editLicensesIdPut, formInfoRequestFormPost, formTestFormsPost, getAllowedIpsShopsAllowedIpsIdGet, getAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGet, getByIdFaqIdGet, getByIdLicensesIdGet, getByIdOrdersIdGet, getByIdShopsIdGet, getByIdShopsShopIdAccountsIdGet, getByIdShopsShopIdAttributesIdAttributeIdGet, getByIdShopsShopIdCategoriesCategoryIdGet, getByIdShopsShopIdCategoriesImagesIdGet, getByIdShopsShopIdProductsProductIdGet, getByIdShopsShopIdProductsToTagsIdGet, getByIdShopsShopIdTagsTagIdGet, getByIdUsersUserIdGet, getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet, getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGet, getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet, getByImproviserUserIdLicensesImproviserImproviserUserIdGet, getByNameShopsShopIdAttributesNameNameGet, getByNameShopsShopIdCategoriesNameNameGet, getByNameShopsShopIdTagsNameNameGet, getCacheStatusShopsCacheStatusIdGet, getCartProductsShopsShopIdPricesPost, getCategoryProductsShopsShopIdCategoriesCategoryIdProductsGet, getConfigShopsConfigIdGet, getFormsFormsGet, getHealthHealthGet, getLastCompletedOrderShopsLastCompletedOrderIdGet, getLastPendingOrderShopsLastPendingOrderIdGet, getMultiFaqGet, getMultiLicensesGet, getMultiOrdersGet, getMultiShopsGet, getMultiShopsShopIdAccountsGet, getMultiShopsShopIdAttributesGet, getMultiShopsShopIdCategoriesGet, getMultiShopsShopIdCategoriesImagesGet, getMultiShopsShopIdProductsGet, getMultiShopsShopIdProductsToTagsGet, getMultiShopsShopIdTagsGet, getMultiUsersGet, getMultiWithAttributesShopsShopIdProductsWithAttributesGet, getOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGet, getOptionV2ShopsShopIdAttributeOptionsOptionIdGet, getOrderProductsInStockOrdersStockOrderIdGet, getProductsShopsShopIdPricesGet, getRelationIdShopsShopIdProductsToTagsGetRelationIdGet, getSignedDownloadLinkDownloadsFileNameGet, getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet, getSignedUrlImagesSignedUrlImageNameGet, getUserMeUsersMeGet, getWithOptionsShopsShopIdAttributesWithOptionsGet, listOptionsForShopShopsShopIdAttributeOptionsGet, listOptionsShopsShopIdAttributesAttributeIdOptionsGet, loginAccessTokenLoginAccessTokenPost, moveImagesImagesMovePost, newFormFormsFormKeyPost, patchOrdersOrderIdPatch, productAttributeValuesCreateDeprecated, productAttributeValuesCreateForProduct, productAttributeValuesDelete, productAttributeValuesGet, productAttributeValuesList, productAttributeValuesReplaceForProduct, putShopsShopIdCategoriesImagesIdPut, recoverPasswordPasswordRecoveryEmailPost, removeIpShopsAllowedIpsIdRemovePost, resetPasswordResetPasswordPost, sendDownloadLinkViaEmailDownloadsSendPost, showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet, showAllPendingOrdersPerShopOrdersShopShopIdPendingGet, swapShopsShopIdCategoriesCategoryIdSwapPut, swapShopsShopIdProductsProductIdSwapPut, testTokenLoginTestTokenPost, triggerErrorSentryGet, updateConfigShopsConfigIdPut, updateFaqFaqIdPut, updateOptionV2ShopsShopIdAttributeOptionsOptionIdPut, updateOrdersOrderIdPut, updateShopsShopIdAccountsAccountIdPut, updateShopsShopIdAttributesAttributeIdPut, updateShopsShopIdCategoriesCategoryIdPut, updateShopsShopIdProductsProductIdPut, updateShopsShopIdProductsToTagsProductToTagIdPut, updateShopsShopIdPut, updateShopsShopIdTagsTagIdPut, updateUserMeUsersMePut, updateUsersUserIdPut };
|
|
9148
|
+
export { $AccountCreate, $AccountSchema, $AccountUpdate, $AdminAccountSchema, $AttributeCreate, $AttributeOptionCreate, $AttributeOptionSchema, $AttributeOptionUpdate, $AttributeSchema, $AttributeTranslationBase, $AttributeUpdate, $AttributeWithOptionsSchema, $AvailableAttributeSchema, $AvailableOptionSchema, $Body_login_access_token_login_access_token_post, $Body_reset_password_reset_password__post, $Body_update_user_me_users_me_put, $Cart, $CategoryCreate, $CategoryImageDelete, $CategorySchema, $CategoryTranslationBase, $CategoryUpdate, $ConfigurationContact, $ConfigurationLanguageFieldMenuItems, $ConfigurationLanguageFieldStaticTexts, $ConfigurationLanguageFields, $ConfigurationLanguages_Input, $ConfigurationLanguages_Output, $ConfigurationLegal, $ConfigurationShipping, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $LinkStripeBody, $Msg, type $OpenApiTs, $OrderBase, $OrderCreate, $OrderCreated, $OrderItem, $OrderSchema, $OrderUpdate, $OrderUpdated, $ProductAttributeItem, $ProductAttributeOptionSelectionAdd, $ProductAttributeOptionSelectionReplace, $ProductAttributeValueBase, $ProductAttributeValueSchema, $ProductCreate, $ProductResponse, $ProductToTagCreate, $ProductToTagSchema, $ProductToTagUpdate, $ProductTranslationBase, $ProductUpdate, $ProductWithAttributes, $ProductWithDefaultPrice, $ProductWithDetailsAndPrices, $ShippingCalculateRequest, $ShippingCalculation, $ShippingLine, $ShopCacheStatus, $ShopConfig, $ShopConfigUpdate_Input, $ShopConfigUpdate_Output, $ShopCreate, $ShopIp, $ShopLastCompletedOrder, $ShopLastPendingOrder, $ShopSchema, $ShopType, $ShopTypeName, $ShopUpdate, $ShopWithPrices, $SyncStripeResponse, $TagCreate, $TagSchema, $TagTranslationBase, $TagUpdate, $Toggles, $User, $UserCreate, $UserUpdate, $ValidationError, type AccountCreate, type AccountSchema, type AccountUpdate, type AddNewIpShopsAllowedIpsIdPostData, type AddNewIpShopsAllowedIpsIdPostResponse, type AdminAccountSchema, ApiError, type AttributeCreate, type AttributeOptionCreate, type AttributeOptionSchema, type AttributeOptionUpdate, type AttributeSchema, type AttributeTranslationBase, type AttributeUpdate, type AttributeWithOptionsSchema, type AvailableAttributeSchema, type AvailableOptionSchema, type Body_login_access_token_login_access_token_post, type Body_reset_password_reset_password__post, type Body_update_user_me_users_me_put, type CalculateShippingCalculatePostData, type CalculateShippingCalculatePostResponse, CancelError, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteData, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteResponse, CancelablePromise, type Cart, type CategoryCreate, type CategoryImageDelete, type CategorySchema, type CategoryTranslationBase, type CategoryUpdate, type CheckOrdersCheckIdsGetData, type CheckOrdersCheckIdsGetResponse, type ConfigurationContact, type ConfigurationLanguageFieldMenuItems, type ConfigurationLanguageFieldStaticTexts, type ConfigurationLanguageFields, type ConfigurationLanguages_Input, type ConfigurationLanguages_Output, type ConfigurationLegal, type ConfigurationShipping, type ConfigurationV1_Input, type ConfigurationV1_Output, type CreateEarlyAccessPostData, type CreateEarlyAccessPostResponse, type CreateFaqPostData, type CreateFaqPostResponse, type CreateLicensesPostData, type CreateLicensesPostResponse, type CreateOptionShopsShopIdAttributesAttributeIdOptionsPostData, type CreateOptionShopsShopIdAttributesAttributeIdOptionsPostResponse, type CreateOptionV2ShopsShopIdAttributeOptionsPostData, type CreateOptionV2ShopsShopIdAttributeOptionsPostResponse, type CreateOrdersPostData, type CreateOrdersPostResponse, type CreatePaymentIntentShopsShopIdStripePostData, type CreatePaymentIntentShopsShopIdStripePostResponse, type CreateShopsPostData, type CreateShopsPostResponse, type CreateShopsShopIdAccountsPostData, type CreateShopsShopIdAccountsPostResponse, type CreateShopsShopIdAttributesPostData, type CreateShopsShopIdAttributesPostResponse, type CreateShopsShopIdCategoriesPostData, type CreateShopsShopIdCategoriesPostResponse, type CreateShopsShopIdProductsPostData, type CreateShopsShopIdProductsPostResponse, type CreateShopsShopIdProductsToTagsPostData, type CreateShopsShopIdProductsToTagsPostResponse, type CreateShopsShopIdTagsPostData, type CreateShopsShopIdTagsPostResponse, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostData, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostResponse, type CreateUsersPostData, type CreateUsersPostResponse, type DefaultPrice, type DeleteFaqFaqIdDeleteData, type DeleteFaqFaqIdDeleteResponse, type DeleteImageShopsShopIdCategoriesImagesDeleteIdPutData, type DeleteImageShopsShopIdCategoriesImagesDeleteIdPutResponse, type DeleteLicensesIdDeleteData, type DeleteLicensesIdDeleteResponse, type DeleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDeleteData, type DeleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDeleteResponse, type DeleteOptionV2ShopsShopIdAttributeOptionsOptionIdDeleteData, type DeleteOptionV2ShopsShopIdAttributeOptionsOptionIdDeleteResponse, type DeleteOrdersOrderIdDeleteData, type DeleteOrdersOrderIdDeleteResponse, type DeleteShopsShopIdAccountsAccountIdDeleteData, type DeleteShopsShopIdAccountsAccountIdDeleteResponse, type DeleteShopsShopIdAttributesAttributeIdDeleteData, type DeleteShopsShopIdAttributesAttributeIdDeleteResponse, type DeleteShopsShopIdCategoriesCategoryIdDeleteData, type DeleteShopsShopIdCategoriesCategoryIdDeleteResponse, type DeleteShopsShopIdDeleteData, type DeleteShopsShopIdDeleteResponse, type DeleteShopsShopIdProductsProductIdDeleteData, type DeleteShopsShopIdProductsProductIdDeleteResponse, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse, type DeleteShopsShopIdTagsTagIdDeleteData, type DeleteShopsShopIdTagsTagIdDeleteResponse, type DeleteTemporaryImagesImagesDeleteTempPostResponse, type EarlyAccessCreate, type EditLicensesIdPutData, type EditLicensesIdPutResponse, type FaqCreate, type FaqCreated, type FaqSchema, type FaqUpdate, type FaqUpdated, type FormInfoRequestFormPostData, type FormInfoRequestFormPostResponse, type FormTestFormsPostData, type FormTestFormsPostResponse, type GetAccountAdminAccountsIdGetData, type GetAccountAdminAccountsIdGetResponse, type GetAllowedIpsShopsAllowedIpsIdGetData, type GetAllowedIpsShopsAllowedIpsIdGetResponse, type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetData, type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetResponse, type GetByIdFaqIdGetData, type GetByIdFaqIdGetResponse, type GetByIdLicensesIdGetData, type GetByIdLicensesIdGetResponse, type GetByIdOrdersIdGetData, type GetByIdOrdersIdGetResponse, type GetByIdShopsIdGetData, type GetByIdShopsIdGetResponse, type GetByIdShopsShopIdAccountsIdGetData, type GetByIdShopsShopIdAccountsIdGetResponse, type GetByIdShopsShopIdAttributesIdAttributeIdGetData, type GetByIdShopsShopIdAttributesIdAttributeIdGetResponse, type GetByIdShopsShopIdCategoriesCategoryIdGetData, type GetByIdShopsShopIdCategoriesCategoryIdGetResponse, type GetByIdShopsShopIdCategoriesImagesIdGetData, type GetByIdShopsShopIdCategoriesImagesIdGetResponse, type GetByIdShopsShopIdProductsProductIdGetData, type GetByIdShopsShopIdProductsProductIdGetResponse, type GetByIdShopsShopIdProductsToTagsIdGetData, type GetByIdShopsShopIdProductsToTagsIdGetResponse, type GetByIdShopsShopIdTagsTagIdGetData, type GetByIdShopsShopIdTagsTagIdGetResponse, type GetByIdUsersUserIdGetData, type GetByIdUsersUserIdGetResponse, type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData, type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse, type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetData, type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetResponse, type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetData, type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetResponse, type GetByImproviserUserIdLicensesImproviserImproviserUserIdGetData, type GetByImproviserUserIdLicensesImproviserImproviserUserIdGetResponse, type GetByNameShopsShopIdAttributesNameNameGetData, type GetByNameShopsShopIdAttributesNameNameGetResponse, type GetByNameShopsShopIdCategoriesNameNameGetData, type GetByNameShopsShopIdCategoriesNameNameGetResponse, type GetByNameShopsShopIdTagsNameNameGetData, type GetByNameShopsShopIdTagsNameNameGetResponse, type GetCacheStatusShopsCacheStatusIdGetData, type GetCacheStatusShopsCacheStatusIdGetResponse, type GetCartProductsShopsShopIdPricesPostData, type GetCartProductsShopsShopIdPricesPostResponse, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetData, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetResponse, type GetConfigShopsConfigIdGetData, type GetConfigShopsConfigIdGetResponse, type GetFormsFormsGetResponse, type GetHealthHealthGetResponse, type GetLastCompletedOrderShopsLastCompletedOrderIdGetData, type GetLastCompletedOrderShopsLastCompletedOrderIdGetResponse, type GetLastPendingOrderShopsLastPendingOrderIdGetData, type GetLastPendingOrderShopsLastPendingOrderIdGetResponse, type GetMultiFaqGetData, type GetMultiFaqGetResponse, type GetMultiLicensesGetData, type GetMultiLicensesGetResponse, type GetMultiOrdersGetData, type GetMultiOrdersGetResponse, type GetMultiShopsGetData, type GetMultiShopsGetResponse, type GetMultiShopsShopIdAccountsGetData, type GetMultiShopsShopIdAccountsGetResponse, type GetMultiShopsShopIdAttributesGetData, type GetMultiShopsShopIdAttributesGetResponse, type GetMultiShopsShopIdCategoriesGetData, type GetMultiShopsShopIdCategoriesGetResponse, type GetMultiShopsShopIdCategoriesImagesGetData, type GetMultiShopsShopIdCategoriesImagesGetResponse, type GetMultiShopsShopIdProductsGetData, type GetMultiShopsShopIdProductsGetResponse, type GetMultiShopsShopIdProductsToTagsGetData, type GetMultiShopsShopIdProductsToTagsGetResponse, type GetMultiShopsShopIdTagsGetData, type GetMultiShopsShopIdTagsGetResponse, type GetMultiUsersGetData, type GetMultiUsersGetResponse, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetData, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetResponse, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetData, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetResponse, type GetOrderProductsInStockOrdersStockOrderIdGetData, type GetOrderProductsInStockOrdersStockOrderIdGetResponse, type GetProductsShopsShopIdPricesGetData, type GetProductsShopsShopIdPricesGetResponse, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetData, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetResponse, type GetSignedDownloadLinkDownloadsFileNameGetData, type GetSignedDownloadLinkDownloadsFileNameGetResponse, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetResponse, type GetSignedUrlImagesSignedUrlImageNameGetData, type GetSignedUrlImagesSignedUrlImageNameGetResponse, type GetStripeCustomerAdminAccountsIdStripeCustomerGetData, type GetStripeCustomerAdminAccountsIdStripeCustomerGetResponse, type GetUserMeUsersMeGetResponse, type GetWithOptionsShopsShopIdAttributesWithOptionsGetData, type GetWithOptionsShopsShopIdAttributesWithOptionsGetResponse, type HTTPValidationError, type Lang, type LicenseCreate, type LicenseSchema, type LicenseUpdate, type LinkStripeAdminAccountsIdLinkStripePostData, type LinkStripeAdminAccountsIdLinkStripePostResponse, type LinkStripeBody, type ListAccountsAdminAccountsGetData, type ListAccountsAdminAccountsGetResponse, type ListOptionsForShopShopsShopIdAttributeOptionsGetData, type ListOptionsForShopShopsShopIdAttributeOptionsGetResponse, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetData, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetResponse, type LoginAccessTokenLoginAccessTokenPostData, type LoginAccessTokenLoginAccessTokenPostResponse, type MoveImagesImagesMovePostResponse, type Msg, type NewFormFormsFormKeyPostData, type NewFormFormsFormKeyPostResponse, OpenAPI, type OpenAPIConfig, type OrderBase, type OrderCreate, type OrderCreated, type OrderItem, type OrderSchema, type OrderUpdate, type OrderUpdated, type PatchOrdersOrderIdPatchData, type PatchOrdersOrderIdPatchResponse, type ProductAttributeItem, type ProductAttributeOptionSelectionAdd, type ProductAttributeOptionSelectionReplace, type ProductAttributeValueBase, type ProductAttributeValueSchema, type ProductAttributeValuesCreateDeprecatedData, type ProductAttributeValuesCreateDeprecatedResponse, type ProductAttributeValuesCreateForProductData, type ProductAttributeValuesCreateForProductResponse, type ProductAttributeValuesDeleteData, type ProductAttributeValuesDeleteResponse, type ProductAttributeValuesGetData, type ProductAttributeValuesGetResponse, type ProductAttributeValuesListData, type ProductAttributeValuesListResponse, type ProductAttributeValuesReplaceForProductData, type ProductAttributeValuesReplaceForProductResponse, type ProductCreate, type ProductResponse, type ProductToTagCreate, type ProductToTagSchema, type ProductToTagUpdate, type ProductTranslationBase, type ProductUpdate, type ProductWithAttributes, type ProductWithDefaultPrice, type ProductWithDetailsAndPrices, type PutShopsShopIdCategoriesImagesIdPutData, type PutShopsShopIdCategoriesImagesIdPutResponse, type RecoverPasswordPasswordRecoveryEmailPostData, type RecoverPasswordPasswordRecoveryEmailPostResponse, type RemoveIpShopsAllowedIpsIdRemovePostData, type RemoveIpShopsAllowedIpsIdRemovePostResponse, type ResetPasswordResetPasswordPostData, type ResetPasswordResetPasswordPostResponse, type SendDownloadLinkViaEmailDownloadsSendPostData, type SendDownloadLinkViaEmailDownloadsSendPostResponse, type ShippingCalculateRequest, type ShippingCalculation, type ShippingLine, type ShopCacheStatus, type ShopConfig, type ShopConfigUpdate_Input, type ShopConfigUpdate_Output, type ShopCreate, type ShopIp, type ShopLastCompletedOrder, type ShopLastPendingOrder, type ShopSchema, type ShopType, type ShopTypeName, type ShopUpdate, type ShopWithPrices, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetData, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetResponse, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetData, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetResponse, type SwapShopsShopIdCategoriesCategoryIdSwapPutData, type SwapShopsShopIdCategoriesCategoryIdSwapPutResponse, type SwapShopsShopIdProductsProductIdSwapPutData, type SwapShopsShopIdProductsProductIdSwapPutResponse, type SyncStripeAdminAccountsIdSyncStripePostData, type SyncStripeAdminAccountsIdSyncStripePostResponse, type SyncStripeResponse, type TagCreate, type TagSchema, type TagTranslationBase, type TagUpdate, type TestTokenLoginTestTokenPostResponse, type Toggles, type TriggerErrorSentryGetData, type TriggerErrorSentryGetResponse, type UpdateConfigShopsConfigIdPutData, type UpdateConfigShopsConfigIdPutResponse, type UpdateFaqFaqIdPutData, type UpdateFaqFaqIdPutResponse, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutData, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutResponse, type UpdateOrdersOrderIdPutData, type UpdateOrdersOrderIdPutResponse, type UpdateShopsShopIdAccountsAccountIdPutData, type UpdateShopsShopIdAccountsAccountIdPutResponse, type UpdateShopsShopIdAttributesAttributeIdPutData, type UpdateShopsShopIdAttributesAttributeIdPutResponse, type UpdateShopsShopIdCategoriesCategoryIdPutData, type UpdateShopsShopIdCategoriesCategoryIdPutResponse, type UpdateShopsShopIdProductsProductIdPutData, type UpdateShopsShopIdProductsProductIdPutResponse, type UpdateShopsShopIdProductsToTagsProductToTagIdPutData, type UpdateShopsShopIdProductsToTagsProductToTagIdPutResponse, type UpdateShopsShopIdPutData, type UpdateShopsShopIdPutResponse, type UpdateShopsShopIdTagsTagIdPutData, type UpdateShopsShopIdTagsTagIdPutResponse, type UpdateUserMeUsersMePutData, type UpdateUserMeUsersMePutResponse, type UpdateUsersUserIdPutData, type UpdateUsersUserIdPutResponse, type User, type UserCreate, type UserUpdate, type ValidationError, addNewIpShopsAllowedIpsIdPost, calculateShippingCalculatePost, cancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDelete, checkOrdersCheckIdsGet, createEarlyAccessPost, createFaqPost, createLicensesPost, createOptionShopsShopIdAttributesAttributeIdOptionsPost, createOptionV2ShopsShopIdAttributeOptionsPost, createOrdersPost, createPaymentIntentShopsShopIdStripePost, createShopsPost, createShopsShopIdAccountsPost, createShopsShopIdAttributesPost, createShopsShopIdCategoriesPost, createShopsShopIdProductsPost, createShopsShopIdProductsToTagsPost, createShopsShopIdTagsPost, createSubscriptionIntentShopsShopIdStripeSubscriptionPost, createUsersPost, deleteFaqFaqIdDelete, deleteImageShopsShopIdCategoriesImagesDeleteIdPut, deleteLicensesIdDelete, deleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDelete, deleteOptionV2ShopsShopIdAttributeOptionsOptionIdDelete, deleteOrdersOrderIdDelete, deleteShopsShopIdAccountsAccountIdDelete, deleteShopsShopIdAttributesAttributeIdDelete, deleteShopsShopIdCategoriesCategoryIdDelete, deleteShopsShopIdDelete, deleteShopsShopIdProductsProductIdDelete, deleteShopsShopIdProductsToTagsProductToTagIdDelete, deleteShopsShopIdTagsTagIdDelete, deleteTemporaryImagesImagesDeleteTempPost, editLicensesIdPut, formInfoRequestFormPost, formTestFormsPost, getAccountAdminAccountsIdGet, getAllowedIpsShopsAllowedIpsIdGet, getAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGet, getByIdFaqIdGet, getByIdLicensesIdGet, getByIdOrdersIdGet, getByIdShopsIdGet, getByIdShopsShopIdAccountsIdGet, getByIdShopsShopIdAttributesIdAttributeIdGet, getByIdShopsShopIdCategoriesCategoryIdGet, getByIdShopsShopIdCategoriesImagesIdGet, getByIdShopsShopIdProductsProductIdGet, getByIdShopsShopIdProductsToTagsIdGet, getByIdShopsShopIdTagsTagIdGet, getByIdUsersUserIdGet, getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet, getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGet, getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet, getByImproviserUserIdLicensesImproviserImproviserUserIdGet, getByNameShopsShopIdAttributesNameNameGet, getByNameShopsShopIdCategoriesNameNameGet, getByNameShopsShopIdTagsNameNameGet, getCacheStatusShopsCacheStatusIdGet, getCartProductsShopsShopIdPricesPost, getCategoryProductsShopsShopIdCategoriesCategoryIdProductsGet, getConfigShopsConfigIdGet, getFormsFormsGet, getHealthHealthGet, getLastCompletedOrderShopsLastCompletedOrderIdGet, getLastPendingOrderShopsLastPendingOrderIdGet, getMultiFaqGet, getMultiLicensesGet, getMultiOrdersGet, getMultiShopsGet, getMultiShopsShopIdAccountsGet, getMultiShopsShopIdAttributesGet, getMultiShopsShopIdCategoriesGet, getMultiShopsShopIdCategoriesImagesGet, getMultiShopsShopIdProductsGet, getMultiShopsShopIdProductsToTagsGet, getMultiShopsShopIdTagsGet, getMultiUsersGet, getMultiWithAttributesShopsShopIdProductsWithAttributesGet, getOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGet, getOptionV2ShopsShopIdAttributeOptionsOptionIdGet, getOrderProductsInStockOrdersStockOrderIdGet, getProductsShopsShopIdPricesGet, getRelationIdShopsShopIdProductsToTagsGetRelationIdGet, getSignedDownloadLinkDownloadsFileNameGet, getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet, getSignedUrlImagesSignedUrlImageNameGet, getStripeCustomerAdminAccountsIdStripeCustomerGet, getUserMeUsersMeGet, getWithOptionsShopsShopIdAttributesWithOptionsGet, linkStripeAdminAccountsIdLinkStripePost, listAccountsAdminAccountsGet, listOptionsForShopShopsShopIdAttributeOptionsGet, listOptionsShopsShopIdAttributesAttributeIdOptionsGet, loginAccessTokenLoginAccessTokenPost, moveImagesImagesMovePost, newFormFormsFormKeyPost, patchOrdersOrderIdPatch, productAttributeValuesCreateDeprecated, productAttributeValuesCreateForProduct, productAttributeValuesDelete, productAttributeValuesGet, productAttributeValuesList, productAttributeValuesReplaceForProduct, putShopsShopIdCategoriesImagesIdPut, recoverPasswordPasswordRecoveryEmailPost, removeIpShopsAllowedIpsIdRemovePost, resetPasswordResetPasswordPost, sendDownloadLinkViaEmailDownloadsSendPost, showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet, showAllPendingOrdersPerShopOrdersShopShopIdPendingGet, swapShopsShopIdCategoriesCategoryIdSwapPut, swapShopsShopIdProductsProductIdSwapPut, syncStripeAdminAccountsIdSyncStripePost, testTokenLoginTestTokenPost, triggerErrorSentryGet, updateConfigShopsConfigIdPut, updateFaqFaqIdPut, updateOptionV2ShopsShopIdAttributeOptionsOptionIdPut, updateOrdersOrderIdPut, updateShopsShopIdAccountsAccountIdPut, updateShopsShopIdAttributesAttributeIdPut, updateShopsShopIdCategoriesCategoryIdPut, updateShopsShopIdProductsProductIdPut, updateShopsShopIdProductsToTagsProductToTagIdPut, updateShopsShopIdPut, updateShopsShopIdTagsTagIdPut, updateUserMeUsersMePut, updateUsersUserIdPut };
|