@shopvirge/shopvirge-client 0.2.9 → 0.3.1
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 +444 -120
- package/dist/index.js +395 -108
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ declare const $AccountCreate: {
|
|
|
94
94
|
readonly title: "Name";
|
|
95
95
|
};
|
|
96
96
|
readonly details: {
|
|
97
|
+
readonly additionalProperties: true;
|
|
97
98
|
readonly type: "object";
|
|
98
99
|
readonly title: "Details";
|
|
99
100
|
};
|
|
@@ -114,6 +115,7 @@ declare const $AccountSchema: {
|
|
|
114
115
|
readonly title: "Name";
|
|
115
116
|
};
|
|
116
117
|
readonly details: {
|
|
118
|
+
readonly additionalProperties: true;
|
|
117
119
|
readonly type: "object";
|
|
118
120
|
readonly title: "Details";
|
|
119
121
|
};
|
|
@@ -139,6 +141,7 @@ declare const $AccountUpdate: {
|
|
|
139
141
|
readonly title: "Name";
|
|
140
142
|
};
|
|
141
143
|
readonly details: {
|
|
144
|
+
readonly additionalProperties: true;
|
|
142
145
|
readonly type: "object";
|
|
143
146
|
readonly title: "Details";
|
|
144
147
|
};
|
|
@@ -189,6 +192,7 @@ declare const $AdminAccountSchema: {
|
|
|
189
192
|
};
|
|
190
193
|
readonly details: {
|
|
191
194
|
readonly anyOf: readonly [{
|
|
195
|
+
readonly additionalProperties: true;
|
|
192
196
|
readonly type: "object";
|
|
193
197
|
}, {
|
|
194
198
|
readonly type: "null";
|
|
@@ -217,6 +221,108 @@ declare const $AdminAccountSchema: {
|
|
|
217
221
|
readonly required: readonly ["id"];
|
|
218
222
|
readonly title: "AdminAccountSchema";
|
|
219
223
|
};
|
|
224
|
+
declare const $ApiKeyCreate: {
|
|
225
|
+
readonly properties: {
|
|
226
|
+
readonly name: {
|
|
227
|
+
readonly type: "string";
|
|
228
|
+
readonly title: "Name";
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
readonly type: "object";
|
|
232
|
+
readonly required: readonly ["name"];
|
|
233
|
+
readonly title: "ApiKeyCreate";
|
|
234
|
+
};
|
|
235
|
+
declare const $ApiKeyCreated: {
|
|
236
|
+
readonly properties: {
|
|
237
|
+
readonly id: {
|
|
238
|
+
readonly type: "string";
|
|
239
|
+
readonly format: "uuid";
|
|
240
|
+
readonly title: "Id";
|
|
241
|
+
};
|
|
242
|
+
readonly name: {
|
|
243
|
+
readonly type: "string";
|
|
244
|
+
readonly title: "Name";
|
|
245
|
+
};
|
|
246
|
+
readonly prefix: {
|
|
247
|
+
readonly type: "string";
|
|
248
|
+
readonly title: "Prefix";
|
|
249
|
+
};
|
|
250
|
+
readonly created_at: {
|
|
251
|
+
readonly type: "string";
|
|
252
|
+
readonly format: "date-time";
|
|
253
|
+
readonly title: "Created At";
|
|
254
|
+
};
|
|
255
|
+
readonly last_used_at: {
|
|
256
|
+
readonly anyOf: readonly [{
|
|
257
|
+
readonly type: "string";
|
|
258
|
+
readonly format: "date-time";
|
|
259
|
+
}, {
|
|
260
|
+
readonly type: "null";
|
|
261
|
+
}];
|
|
262
|
+
readonly title: "Last Used At";
|
|
263
|
+
};
|
|
264
|
+
readonly revoked_at: {
|
|
265
|
+
readonly anyOf: readonly [{
|
|
266
|
+
readonly type: "string";
|
|
267
|
+
readonly format: "date-time";
|
|
268
|
+
}, {
|
|
269
|
+
readonly type: "null";
|
|
270
|
+
}];
|
|
271
|
+
readonly title: "Revoked At";
|
|
272
|
+
};
|
|
273
|
+
readonly plaintext: {
|
|
274
|
+
readonly type: "string";
|
|
275
|
+
readonly title: "Plaintext";
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
readonly type: "object";
|
|
279
|
+
readonly required: readonly ["id", "name", "prefix", "created_at", "plaintext"];
|
|
280
|
+
readonly title: "ApiKeyCreated";
|
|
281
|
+
readonly description: "Response from minting a key. ``plaintext`` is shown ONCE — never again.";
|
|
282
|
+
};
|
|
283
|
+
declare const $ApiKeyRead: {
|
|
284
|
+
readonly properties: {
|
|
285
|
+
readonly id: {
|
|
286
|
+
readonly type: "string";
|
|
287
|
+
readonly format: "uuid";
|
|
288
|
+
readonly title: "Id";
|
|
289
|
+
};
|
|
290
|
+
readonly name: {
|
|
291
|
+
readonly type: "string";
|
|
292
|
+
readonly title: "Name";
|
|
293
|
+
};
|
|
294
|
+
readonly prefix: {
|
|
295
|
+
readonly type: "string";
|
|
296
|
+
readonly title: "Prefix";
|
|
297
|
+
};
|
|
298
|
+
readonly created_at: {
|
|
299
|
+
readonly type: "string";
|
|
300
|
+
readonly format: "date-time";
|
|
301
|
+
readonly title: "Created At";
|
|
302
|
+
};
|
|
303
|
+
readonly last_used_at: {
|
|
304
|
+
readonly anyOf: readonly [{
|
|
305
|
+
readonly type: "string";
|
|
306
|
+
readonly format: "date-time";
|
|
307
|
+
}, {
|
|
308
|
+
readonly type: "null";
|
|
309
|
+
}];
|
|
310
|
+
readonly title: "Last Used At";
|
|
311
|
+
};
|
|
312
|
+
readonly revoked_at: {
|
|
313
|
+
readonly anyOf: readonly [{
|
|
314
|
+
readonly type: "string";
|
|
315
|
+
readonly format: "date-time";
|
|
316
|
+
}, {
|
|
317
|
+
readonly type: "null";
|
|
318
|
+
}];
|
|
319
|
+
readonly title: "Revoked At";
|
|
320
|
+
};
|
|
321
|
+
};
|
|
322
|
+
readonly type: "object";
|
|
323
|
+
readonly required: readonly ["id", "name", "prefix", "created_at"];
|
|
324
|
+
readonly title: "ApiKeyRead";
|
|
325
|
+
};
|
|
220
326
|
declare const $AttributeCreate: {
|
|
221
327
|
readonly properties: {
|
|
222
328
|
readonly name: {
|
|
@@ -491,7 +597,7 @@ declare const $Body_login_access_token_login_access_token_post: {
|
|
|
491
597
|
readonly grant_type: {
|
|
492
598
|
readonly anyOf: readonly [{
|
|
493
599
|
readonly type: "string";
|
|
494
|
-
readonly pattern: "password";
|
|
600
|
+
readonly pattern: "^password$";
|
|
495
601
|
}, {
|
|
496
602
|
readonly type: "null";
|
|
497
603
|
}];
|
|
@@ -503,6 +609,7 @@ declare const $Body_login_access_token_login_access_token_post: {
|
|
|
503
609
|
};
|
|
504
610
|
readonly password: {
|
|
505
611
|
readonly type: "string";
|
|
612
|
+
readonly format: "password";
|
|
506
613
|
readonly title: "Password";
|
|
507
614
|
};
|
|
508
615
|
readonly scope: {
|
|
@@ -524,6 +631,7 @@ declare const $Body_login_access_token_login_access_token_post: {
|
|
|
524
631
|
}, {
|
|
525
632
|
readonly type: "null";
|
|
526
633
|
}];
|
|
634
|
+
readonly format: "password";
|
|
527
635
|
readonly title: "Client Secret";
|
|
528
636
|
};
|
|
529
637
|
};
|
|
@@ -612,6 +720,7 @@ declare const $CategoryCreate: {
|
|
|
612
720
|
};
|
|
613
721
|
readonly main_image: {
|
|
614
722
|
readonly anyOf: readonly [{
|
|
723
|
+
readonly additionalProperties: true;
|
|
615
724
|
readonly type: "object";
|
|
616
725
|
}, {
|
|
617
726
|
readonly type: "string";
|
|
@@ -622,6 +731,7 @@ declare const $CategoryCreate: {
|
|
|
622
731
|
};
|
|
623
732
|
readonly alt1_image: {
|
|
624
733
|
readonly anyOf: readonly [{
|
|
734
|
+
readonly additionalProperties: true;
|
|
625
735
|
readonly type: "object";
|
|
626
736
|
}, {
|
|
627
737
|
readonly type: "string";
|
|
@@ -632,6 +742,7 @@ declare const $CategoryCreate: {
|
|
|
632
742
|
};
|
|
633
743
|
readonly alt2_image: {
|
|
634
744
|
readonly anyOf: readonly [{
|
|
745
|
+
readonly additionalProperties: true;
|
|
635
746
|
readonly type: "object";
|
|
636
747
|
}, {
|
|
637
748
|
readonly type: "string";
|
|
@@ -688,6 +799,7 @@ declare const $CategorySchema: {
|
|
|
688
799
|
};
|
|
689
800
|
readonly main_image: {
|
|
690
801
|
readonly anyOf: readonly [{
|
|
802
|
+
readonly additionalProperties: true;
|
|
691
803
|
readonly type: "object";
|
|
692
804
|
}, {
|
|
693
805
|
readonly type: "string";
|
|
@@ -698,6 +810,7 @@ declare const $CategorySchema: {
|
|
|
698
810
|
};
|
|
699
811
|
readonly alt1_image: {
|
|
700
812
|
readonly anyOf: readonly [{
|
|
813
|
+
readonly additionalProperties: true;
|
|
701
814
|
readonly type: "object";
|
|
702
815
|
}, {
|
|
703
816
|
readonly type: "string";
|
|
@@ -708,6 +821,7 @@ declare const $CategorySchema: {
|
|
|
708
821
|
};
|
|
709
822
|
readonly alt2_image: {
|
|
710
823
|
readonly anyOf: readonly [{
|
|
824
|
+
readonly additionalProperties: true;
|
|
711
825
|
readonly type: "object";
|
|
712
826
|
}, {
|
|
713
827
|
readonly type: "string";
|
|
@@ -805,6 +919,7 @@ declare const $CategoryUpdate: {
|
|
|
805
919
|
};
|
|
806
920
|
readonly main_image: {
|
|
807
921
|
readonly anyOf: readonly [{
|
|
922
|
+
readonly additionalProperties: true;
|
|
808
923
|
readonly type: "object";
|
|
809
924
|
}, {
|
|
810
925
|
readonly type: "string";
|
|
@@ -815,6 +930,7 @@ declare const $CategoryUpdate: {
|
|
|
815
930
|
};
|
|
816
931
|
readonly alt1_image: {
|
|
817
932
|
readonly anyOf: readonly [{
|
|
933
|
+
readonly additionalProperties: true;
|
|
818
934
|
readonly type: "object";
|
|
819
935
|
}, {
|
|
820
936
|
readonly type: "string";
|
|
@@ -825,6 +941,7 @@ declare const $CategoryUpdate: {
|
|
|
825
941
|
};
|
|
826
942
|
readonly alt2_image: {
|
|
827
943
|
readonly anyOf: readonly [{
|
|
944
|
+
readonly additionalProperties: true;
|
|
828
945
|
readonly type: "object";
|
|
829
946
|
}, {
|
|
830
947
|
readonly type: "string";
|
|
@@ -1020,31 +1137,7 @@ declare const $ConfigurationLanguageFields: {
|
|
|
1020
1137
|
readonly required: readonly ["language_name", "menu_items", "static_texts"];
|
|
1021
1138
|
readonly title: "ConfigurationLanguageFields";
|
|
1022
1139
|
};
|
|
1023
|
-
declare const $
|
|
1024
|
-
readonly properties: {
|
|
1025
|
-
readonly main: {
|
|
1026
|
-
readonly $ref: "#/components/schemas/ConfigurationLanguageFields";
|
|
1027
|
-
};
|
|
1028
|
-
readonly alt1: {
|
|
1029
|
-
readonly anyOf: readonly [{
|
|
1030
|
-
readonly $ref: "#/components/schemas/ConfigurationLanguageFields";
|
|
1031
|
-
}, {
|
|
1032
|
-
readonly type: "null";
|
|
1033
|
-
}];
|
|
1034
|
-
};
|
|
1035
|
-
readonly alt2: {
|
|
1036
|
-
readonly anyOf: readonly [{
|
|
1037
|
-
readonly $ref: "#/components/schemas/ConfigurationLanguageFields";
|
|
1038
|
-
}, {
|
|
1039
|
-
readonly type: "null";
|
|
1040
|
-
}];
|
|
1041
|
-
};
|
|
1042
|
-
};
|
|
1043
|
-
readonly type: "object";
|
|
1044
|
-
readonly required: readonly ["main"];
|
|
1045
|
-
readonly title: "ConfigurationLanguages";
|
|
1046
|
-
};
|
|
1047
|
-
declare const $ConfigurationLanguages_Output: {
|
|
1140
|
+
declare const $ConfigurationLanguages: {
|
|
1048
1141
|
readonly properties: {
|
|
1049
1142
|
readonly main: {
|
|
1050
1143
|
readonly $ref: "#/components/schemas/ConfigurationLanguageFields";
|
|
@@ -1107,6 +1200,7 @@ declare const $ConfigurationShipping_Input: {
|
|
|
1107
1200
|
readonly type: "number";
|
|
1108
1201
|
}, {
|
|
1109
1202
|
readonly type: "string";
|
|
1203
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1110
1204
|
}];
|
|
1111
1205
|
readonly title: "Fixed Fee";
|
|
1112
1206
|
readonly default: "0";
|
|
@@ -1126,6 +1220,7 @@ declare const $ConfigurationShipping_Input: {
|
|
|
1126
1220
|
readonly type: "number";
|
|
1127
1221
|
}, {
|
|
1128
1222
|
readonly type: "string";
|
|
1223
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1129
1224
|
}];
|
|
1130
1225
|
readonly title: "Free Shipping Above Amount";
|
|
1131
1226
|
readonly default: "0";
|
|
@@ -1149,7 +1244,7 @@ declare const $ConfigurationShipping_Output: {
|
|
|
1149
1244
|
readonly fixed_fee: {
|
|
1150
1245
|
readonly type: "number";
|
|
1151
1246
|
readonly title: "Fixed Fee";
|
|
1152
|
-
readonly default:
|
|
1247
|
+
readonly default: 0;
|
|
1153
1248
|
};
|
|
1154
1249
|
readonly vat_calculation_enabled: {
|
|
1155
1250
|
readonly type: "boolean";
|
|
@@ -1164,7 +1259,7 @@ declare const $ConfigurationShipping_Output: {
|
|
|
1164
1259
|
readonly free_shipping_above_amount: {
|
|
1165
1260
|
readonly type: "number";
|
|
1166
1261
|
readonly title: "Free Shipping Above Amount";
|
|
1167
|
-
readonly default:
|
|
1262
|
+
readonly default: 0;
|
|
1168
1263
|
};
|
|
1169
1264
|
};
|
|
1170
1265
|
readonly type: "object";
|
|
@@ -1206,7 +1301,7 @@ declare const $ConfigurationV1_Input: {
|
|
|
1206
1301
|
readonly default: 75;
|
|
1207
1302
|
};
|
|
1208
1303
|
readonly languages: {
|
|
1209
|
-
readonly $ref: "#/components/schemas/ConfigurationLanguages
|
|
1304
|
+
readonly $ref: "#/components/schemas/ConfigurationLanguages";
|
|
1210
1305
|
};
|
|
1211
1306
|
readonly google_analytics_id: {
|
|
1212
1307
|
readonly anyOf: readonly [{
|
|
@@ -1277,7 +1372,7 @@ declare const $ConfigurationV1_Output: {
|
|
|
1277
1372
|
readonly default: 75;
|
|
1278
1373
|
};
|
|
1279
1374
|
readonly languages: {
|
|
1280
|
-
readonly $ref: "#/components/schemas/ConfigurationLanguages
|
|
1375
|
+
readonly $ref: "#/components/schemas/ConfigurationLanguages";
|
|
1281
1376
|
};
|
|
1282
1377
|
readonly google_analytics_id: {
|
|
1283
1378
|
readonly anyOf: readonly [{
|
|
@@ -1728,6 +1823,7 @@ declare const $OrderBase: {
|
|
|
1728
1823
|
readonly type: "number";
|
|
1729
1824
|
}, {
|
|
1730
1825
|
readonly type: "string";
|
|
1826
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1731
1827
|
}, {
|
|
1732
1828
|
readonly type: "null";
|
|
1733
1829
|
}];
|
|
@@ -1762,6 +1858,7 @@ declare const $OrderBase: {
|
|
|
1762
1858
|
readonly type: "number";
|
|
1763
1859
|
}, {
|
|
1764
1860
|
readonly type: "string";
|
|
1861
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1765
1862
|
}, {
|
|
1766
1863
|
readonly type: "null";
|
|
1767
1864
|
}];
|
|
@@ -1788,6 +1885,7 @@ declare const $OrderCreate: {
|
|
|
1788
1885
|
readonly type: "number";
|
|
1789
1886
|
}, {
|
|
1790
1887
|
readonly type: "string";
|
|
1888
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1791
1889
|
}, {
|
|
1792
1890
|
readonly type: "null";
|
|
1793
1891
|
}];
|
|
@@ -1822,6 +1920,7 @@ declare const $OrderCreate: {
|
|
|
1822
1920
|
readonly type: "number";
|
|
1823
1921
|
}, {
|
|
1824
1922
|
readonly type: "string";
|
|
1923
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1825
1924
|
}, {
|
|
1826
1925
|
readonly type: "null";
|
|
1827
1926
|
}];
|
|
@@ -1959,6 +2058,7 @@ declare const $OrderItem_Input: {
|
|
|
1959
2058
|
readonly type: "number";
|
|
1960
2059
|
}, {
|
|
1961
2060
|
readonly type: "string";
|
|
2061
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1962
2062
|
}];
|
|
1963
2063
|
readonly title: "Price";
|
|
1964
2064
|
};
|
|
@@ -2148,6 +2248,7 @@ declare const $OrderUpdate: {
|
|
|
2148
2248
|
readonly type: "number";
|
|
2149
2249
|
}, {
|
|
2150
2250
|
readonly type: "string";
|
|
2251
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2151
2252
|
}, {
|
|
2152
2253
|
readonly type: "null";
|
|
2153
2254
|
}];
|
|
@@ -2182,6 +2283,7 @@ declare const $OrderUpdate: {
|
|
|
2182
2283
|
readonly type: "number";
|
|
2183
2284
|
}, {
|
|
2184
2285
|
readonly type: "string";
|
|
2286
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2185
2287
|
}, {
|
|
2186
2288
|
readonly type: "null";
|
|
2187
2289
|
}];
|
|
@@ -2423,6 +2525,7 @@ declare const $ProductCreate: {
|
|
|
2423
2525
|
readonly type: "number";
|
|
2424
2526
|
}, {
|
|
2425
2527
|
readonly type: "string";
|
|
2528
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2426
2529
|
}, {
|
|
2427
2530
|
readonly type: "null";
|
|
2428
2531
|
}];
|
|
@@ -2433,6 +2536,7 @@ declare const $ProductCreate: {
|
|
|
2433
2536
|
readonly type: "number";
|
|
2434
2537
|
}, {
|
|
2435
2538
|
readonly type: "string";
|
|
2539
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2436
2540
|
}, {
|
|
2437
2541
|
readonly type: "null";
|
|
2438
2542
|
}];
|
|
@@ -2443,6 +2547,7 @@ declare const $ProductCreate: {
|
|
|
2443
2547
|
readonly type: "number";
|
|
2444
2548
|
}, {
|
|
2445
2549
|
readonly type: "string";
|
|
2550
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2446
2551
|
}, {
|
|
2447
2552
|
readonly type: "null";
|
|
2448
2553
|
}];
|
|
@@ -2481,6 +2586,7 @@ declare const $ProductCreate: {
|
|
|
2481
2586
|
readonly type: "number";
|
|
2482
2587
|
}, {
|
|
2483
2588
|
readonly type: "string";
|
|
2589
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2484
2590
|
}, {
|
|
2485
2591
|
readonly type: "null";
|
|
2486
2592
|
}];
|
|
@@ -2523,6 +2629,7 @@ declare const $ProductCreate: {
|
|
|
2523
2629
|
};
|
|
2524
2630
|
readonly image_1: {
|
|
2525
2631
|
readonly anyOf: readonly [{
|
|
2632
|
+
readonly additionalProperties: true;
|
|
2526
2633
|
readonly type: "object";
|
|
2527
2634
|
}, {
|
|
2528
2635
|
readonly type: "string";
|
|
@@ -2533,6 +2640,7 @@ declare const $ProductCreate: {
|
|
|
2533
2640
|
};
|
|
2534
2641
|
readonly image_2: {
|
|
2535
2642
|
readonly anyOf: readonly [{
|
|
2643
|
+
readonly additionalProperties: true;
|
|
2536
2644
|
readonly type: "object";
|
|
2537
2645
|
}, {
|
|
2538
2646
|
readonly type: "string";
|
|
@@ -2543,6 +2651,7 @@ declare const $ProductCreate: {
|
|
|
2543
2651
|
};
|
|
2544
2652
|
readonly image_3: {
|
|
2545
2653
|
readonly anyOf: readonly [{
|
|
2654
|
+
readonly additionalProperties: true;
|
|
2546
2655
|
readonly type: "object";
|
|
2547
2656
|
}, {
|
|
2548
2657
|
readonly type: "string";
|
|
@@ -2553,6 +2662,7 @@ declare const $ProductCreate: {
|
|
|
2553
2662
|
};
|
|
2554
2663
|
readonly image_4: {
|
|
2555
2664
|
readonly anyOf: readonly [{
|
|
2665
|
+
readonly additionalProperties: true;
|
|
2556
2666
|
readonly type: "object";
|
|
2557
2667
|
}, {
|
|
2558
2668
|
readonly type: "string";
|
|
@@ -2563,6 +2673,7 @@ declare const $ProductCreate: {
|
|
|
2563
2673
|
};
|
|
2564
2674
|
readonly image_5: {
|
|
2565
2675
|
readonly anyOf: readonly [{
|
|
2676
|
+
readonly additionalProperties: true;
|
|
2566
2677
|
readonly type: "object";
|
|
2567
2678
|
}, {
|
|
2568
2679
|
readonly type: "string";
|
|
@@ -2573,6 +2684,7 @@ declare const $ProductCreate: {
|
|
|
2573
2684
|
};
|
|
2574
2685
|
readonly image_6: {
|
|
2575
2686
|
readonly anyOf: readonly [{
|
|
2687
|
+
readonly additionalProperties: true;
|
|
2576
2688
|
readonly type: "object";
|
|
2577
2689
|
}, {
|
|
2578
2690
|
readonly type: "string";
|
|
@@ -2941,6 +3053,7 @@ declare const $ProductUpdate: {
|
|
|
2941
3053
|
readonly type: "number";
|
|
2942
3054
|
}, {
|
|
2943
3055
|
readonly type: "string";
|
|
3056
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2944
3057
|
}, {
|
|
2945
3058
|
readonly type: "null";
|
|
2946
3059
|
}];
|
|
@@ -2951,6 +3064,7 @@ declare const $ProductUpdate: {
|
|
|
2951
3064
|
readonly type: "number";
|
|
2952
3065
|
}, {
|
|
2953
3066
|
readonly type: "string";
|
|
3067
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2954
3068
|
}, {
|
|
2955
3069
|
readonly type: "null";
|
|
2956
3070
|
}];
|
|
@@ -2961,6 +3075,7 @@ declare const $ProductUpdate: {
|
|
|
2961
3075
|
readonly type: "number";
|
|
2962
3076
|
}, {
|
|
2963
3077
|
readonly type: "string";
|
|
3078
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2964
3079
|
}, {
|
|
2965
3080
|
readonly type: "null";
|
|
2966
3081
|
}];
|
|
@@ -2999,6 +3114,7 @@ declare const $ProductUpdate: {
|
|
|
2999
3114
|
readonly type: "number";
|
|
3000
3115
|
}, {
|
|
3001
3116
|
readonly type: "string";
|
|
3117
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3002
3118
|
}, {
|
|
3003
3119
|
readonly type: "null";
|
|
3004
3120
|
}];
|
|
@@ -3041,6 +3157,7 @@ declare const $ProductUpdate: {
|
|
|
3041
3157
|
};
|
|
3042
3158
|
readonly image_1: {
|
|
3043
3159
|
readonly anyOf: readonly [{
|
|
3160
|
+
readonly additionalProperties: true;
|
|
3044
3161
|
readonly type: "object";
|
|
3045
3162
|
}, {
|
|
3046
3163
|
readonly type: "string";
|
|
@@ -3051,6 +3168,7 @@ declare const $ProductUpdate: {
|
|
|
3051
3168
|
};
|
|
3052
3169
|
readonly image_2: {
|
|
3053
3170
|
readonly anyOf: readonly [{
|
|
3171
|
+
readonly additionalProperties: true;
|
|
3054
3172
|
readonly type: "object";
|
|
3055
3173
|
}, {
|
|
3056
3174
|
readonly type: "string";
|
|
@@ -3061,6 +3179,7 @@ declare const $ProductUpdate: {
|
|
|
3061
3179
|
};
|
|
3062
3180
|
readonly image_3: {
|
|
3063
3181
|
readonly anyOf: readonly [{
|
|
3182
|
+
readonly additionalProperties: true;
|
|
3064
3183
|
readonly type: "object";
|
|
3065
3184
|
}, {
|
|
3066
3185
|
readonly type: "string";
|
|
@@ -3071,6 +3190,7 @@ declare const $ProductUpdate: {
|
|
|
3071
3190
|
};
|
|
3072
3191
|
readonly image_4: {
|
|
3073
3192
|
readonly anyOf: readonly [{
|
|
3193
|
+
readonly additionalProperties: true;
|
|
3074
3194
|
readonly type: "object";
|
|
3075
3195
|
}, {
|
|
3076
3196
|
readonly type: "string";
|
|
@@ -3081,6 +3201,7 @@ declare const $ProductUpdate: {
|
|
|
3081
3201
|
};
|
|
3082
3202
|
readonly image_5: {
|
|
3083
3203
|
readonly anyOf: readonly [{
|
|
3204
|
+
readonly additionalProperties: true;
|
|
3084
3205
|
readonly type: "object";
|
|
3085
3206
|
}, {
|
|
3086
3207
|
readonly type: "string";
|
|
@@ -3091,6 +3212,7 @@ declare const $ProductUpdate: {
|
|
|
3091
3212
|
};
|
|
3092
3213
|
readonly image_6: {
|
|
3093
3214
|
readonly anyOf: readonly [{
|
|
3215
|
+
readonly additionalProperties: true;
|
|
3094
3216
|
readonly type: "object";
|
|
3095
3217
|
}, {
|
|
3096
3218
|
readonly type: "string";
|
|
@@ -3244,6 +3366,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3244
3366
|
};
|
|
3245
3367
|
readonly image_1: {
|
|
3246
3368
|
readonly anyOf: readonly [{
|
|
3369
|
+
readonly additionalProperties: true;
|
|
3247
3370
|
readonly type: "object";
|
|
3248
3371
|
}, {
|
|
3249
3372
|
readonly type: "string";
|
|
@@ -3254,6 +3377,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3254
3377
|
};
|
|
3255
3378
|
readonly image_2: {
|
|
3256
3379
|
readonly anyOf: readonly [{
|
|
3380
|
+
readonly additionalProperties: true;
|
|
3257
3381
|
readonly type: "object";
|
|
3258
3382
|
}, {
|
|
3259
3383
|
readonly type: "string";
|
|
@@ -3264,6 +3388,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3264
3388
|
};
|
|
3265
3389
|
readonly image_3: {
|
|
3266
3390
|
readonly anyOf: readonly [{
|
|
3391
|
+
readonly additionalProperties: true;
|
|
3267
3392
|
readonly type: "object";
|
|
3268
3393
|
}, {
|
|
3269
3394
|
readonly type: "string";
|
|
@@ -3274,6 +3399,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3274
3399
|
};
|
|
3275
3400
|
readonly image_4: {
|
|
3276
3401
|
readonly anyOf: readonly [{
|
|
3402
|
+
readonly additionalProperties: true;
|
|
3277
3403
|
readonly type: "object";
|
|
3278
3404
|
}, {
|
|
3279
3405
|
readonly type: "string";
|
|
@@ -3284,6 +3410,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3284
3410
|
};
|
|
3285
3411
|
readonly image_5: {
|
|
3286
3412
|
readonly anyOf: readonly [{
|
|
3413
|
+
readonly additionalProperties: true;
|
|
3287
3414
|
readonly type: "object";
|
|
3288
3415
|
}, {
|
|
3289
3416
|
readonly type: "string";
|
|
@@ -3294,6 +3421,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3294
3421
|
};
|
|
3295
3422
|
readonly image_6: {
|
|
3296
3423
|
readonly anyOf: readonly [{
|
|
3424
|
+
readonly additionalProperties: true;
|
|
3297
3425
|
readonly type: "object";
|
|
3298
3426
|
}, {
|
|
3299
3427
|
readonly type: "string";
|
|
@@ -3455,6 +3583,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3455
3583
|
};
|
|
3456
3584
|
readonly image_1: {
|
|
3457
3585
|
readonly anyOf: readonly [{
|
|
3586
|
+
readonly additionalProperties: true;
|
|
3458
3587
|
readonly type: "object";
|
|
3459
3588
|
}, {
|
|
3460
3589
|
readonly type: "string";
|
|
@@ -3465,6 +3594,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3465
3594
|
};
|
|
3466
3595
|
readonly image_2: {
|
|
3467
3596
|
readonly anyOf: readonly [{
|
|
3597
|
+
readonly additionalProperties: true;
|
|
3468
3598
|
readonly type: "object";
|
|
3469
3599
|
}, {
|
|
3470
3600
|
readonly type: "string";
|
|
@@ -3475,6 +3605,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3475
3605
|
};
|
|
3476
3606
|
readonly image_3: {
|
|
3477
3607
|
readonly anyOf: readonly [{
|
|
3608
|
+
readonly additionalProperties: true;
|
|
3478
3609
|
readonly type: "object";
|
|
3479
3610
|
}, {
|
|
3480
3611
|
readonly type: "string";
|
|
@@ -3485,6 +3616,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3485
3616
|
};
|
|
3486
3617
|
readonly image_4: {
|
|
3487
3618
|
readonly anyOf: readonly [{
|
|
3619
|
+
readonly additionalProperties: true;
|
|
3488
3620
|
readonly type: "object";
|
|
3489
3621
|
}, {
|
|
3490
3622
|
readonly type: "string";
|
|
@@ -3495,6 +3627,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3495
3627
|
};
|
|
3496
3628
|
readonly image_5: {
|
|
3497
3629
|
readonly anyOf: readonly [{
|
|
3630
|
+
readonly additionalProperties: true;
|
|
3498
3631
|
readonly type: "object";
|
|
3499
3632
|
}, {
|
|
3500
3633
|
readonly type: "string";
|
|
@@ -3505,6 +3638,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3505
3638
|
};
|
|
3506
3639
|
readonly image_6: {
|
|
3507
3640
|
readonly anyOf: readonly [{
|
|
3641
|
+
readonly additionalProperties: true;
|
|
3508
3642
|
readonly type: "object";
|
|
3509
3643
|
}, {
|
|
3510
3644
|
readonly type: "string";
|
|
@@ -3546,6 +3680,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3546
3680
|
};
|
|
3547
3681
|
readonly prices: {
|
|
3548
3682
|
readonly items: {
|
|
3683
|
+
readonly additionalProperties: true;
|
|
3549
3684
|
readonly type: "object";
|
|
3550
3685
|
};
|
|
3551
3686
|
readonly type: "array";
|
|
@@ -3749,6 +3884,7 @@ declare const $ShopCreate: {
|
|
|
3749
3884
|
readonly type: "number";
|
|
3750
3885
|
}, {
|
|
3751
3886
|
readonly type: "string";
|
|
3887
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3752
3888
|
}];
|
|
3753
3889
|
readonly title: "Vat Standard";
|
|
3754
3890
|
};
|
|
@@ -3757,6 +3893,7 @@ declare const $ShopCreate: {
|
|
|
3757
3893
|
readonly type: "number";
|
|
3758
3894
|
}, {
|
|
3759
3895
|
readonly type: "string";
|
|
3896
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3760
3897
|
}];
|
|
3761
3898
|
readonly title: "Vat Lower 1";
|
|
3762
3899
|
};
|
|
@@ -3765,6 +3902,7 @@ declare const $ShopCreate: {
|
|
|
3765
3902
|
readonly type: "number";
|
|
3766
3903
|
}, {
|
|
3767
3904
|
readonly type: "string";
|
|
3905
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3768
3906
|
}];
|
|
3769
3907
|
readonly title: "Vat Lower 2";
|
|
3770
3908
|
};
|
|
@@ -3773,6 +3911,7 @@ declare const $ShopCreate: {
|
|
|
3773
3911
|
readonly type: "number";
|
|
3774
3912
|
}, {
|
|
3775
3913
|
readonly type: "string";
|
|
3914
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3776
3915
|
}];
|
|
3777
3916
|
readonly title: "Vat Lower 3";
|
|
3778
3917
|
};
|
|
@@ -3781,6 +3920,7 @@ declare const $ShopCreate: {
|
|
|
3781
3920
|
readonly type: "number";
|
|
3782
3921
|
}, {
|
|
3783
3922
|
readonly type: "string";
|
|
3923
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3784
3924
|
}];
|
|
3785
3925
|
readonly title: "Vat Special";
|
|
3786
3926
|
};
|
|
@@ -3789,6 +3929,7 @@ declare const $ShopCreate: {
|
|
|
3789
3929
|
readonly type: "number";
|
|
3790
3930
|
}, {
|
|
3791
3931
|
readonly type: "string";
|
|
3932
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3792
3933
|
}];
|
|
3793
3934
|
readonly title: "Vat Zero";
|
|
3794
3935
|
};
|
|
@@ -3969,6 +4110,7 @@ declare const $ShopUpdate: {
|
|
|
3969
4110
|
readonly type: "number";
|
|
3970
4111
|
}, {
|
|
3971
4112
|
readonly type: "string";
|
|
4113
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3972
4114
|
}];
|
|
3973
4115
|
readonly title: "Vat Standard";
|
|
3974
4116
|
};
|
|
@@ -3977,6 +4119,7 @@ declare const $ShopUpdate: {
|
|
|
3977
4119
|
readonly type: "number";
|
|
3978
4120
|
}, {
|
|
3979
4121
|
readonly type: "string";
|
|
4122
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3980
4123
|
}];
|
|
3981
4124
|
readonly title: "Vat Lower 1";
|
|
3982
4125
|
};
|
|
@@ -3985,6 +4128,7 @@ declare const $ShopUpdate: {
|
|
|
3985
4128
|
readonly type: "number";
|
|
3986
4129
|
}, {
|
|
3987
4130
|
readonly type: "string";
|
|
4131
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3988
4132
|
}];
|
|
3989
4133
|
readonly title: "Vat Lower 2";
|
|
3990
4134
|
};
|
|
@@ -3993,6 +4137,7 @@ declare const $ShopUpdate: {
|
|
|
3993
4137
|
readonly type: "number";
|
|
3994
4138
|
}, {
|
|
3995
4139
|
readonly type: "string";
|
|
4140
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3996
4141
|
}];
|
|
3997
4142
|
readonly title: "Vat Lower 3";
|
|
3998
4143
|
};
|
|
@@ -4001,6 +4146,7 @@ declare const $ShopUpdate: {
|
|
|
4001
4146
|
readonly type: "number";
|
|
4002
4147
|
}, {
|
|
4003
4148
|
readonly type: "string";
|
|
4149
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
4004
4150
|
}];
|
|
4005
4151
|
readonly title: "Vat Special";
|
|
4006
4152
|
};
|
|
@@ -4009,6 +4155,7 @@ declare const $ShopUpdate: {
|
|
|
4009
4155
|
readonly type: "number";
|
|
4010
4156
|
}, {
|
|
4011
4157
|
readonly type: "string";
|
|
4158
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
4012
4159
|
}];
|
|
4013
4160
|
readonly title: "Vat Zero";
|
|
4014
4161
|
};
|
|
@@ -4114,6 +4261,7 @@ declare const $SyncStripeResponse: {
|
|
|
4114
4261
|
readonly title: "Stripe Synced At";
|
|
4115
4262
|
};
|
|
4116
4263
|
readonly stripe_customer: {
|
|
4264
|
+
readonly additionalProperties: true;
|
|
4117
4265
|
readonly type: "object";
|
|
4118
4266
|
readonly title: "Stripe Customer";
|
|
4119
4267
|
};
|
|
@@ -4459,6 +4607,29 @@ type AdminAccountSchema = {
|
|
|
4459
4607
|
stripe_customer_id?: string | null;
|
|
4460
4608
|
stripe_synced_at?: string | null;
|
|
4461
4609
|
};
|
|
4610
|
+
type ApiKeyCreate = {
|
|
4611
|
+
name: string;
|
|
4612
|
+
};
|
|
4613
|
+
/**
|
|
4614
|
+
* Response from minting a key. ``plaintext`` is shown ONCE — never again.
|
|
4615
|
+
*/
|
|
4616
|
+
type ApiKeyCreated = {
|
|
4617
|
+
id: string;
|
|
4618
|
+
name: string;
|
|
4619
|
+
prefix: string;
|
|
4620
|
+
created_at: string;
|
|
4621
|
+
last_used_at?: string | null;
|
|
4622
|
+
revoked_at?: string | null;
|
|
4623
|
+
plaintext: string;
|
|
4624
|
+
};
|
|
4625
|
+
type ApiKeyRead = {
|
|
4626
|
+
id: string;
|
|
4627
|
+
name: string;
|
|
4628
|
+
prefix: string;
|
|
4629
|
+
created_at: string;
|
|
4630
|
+
last_used_at?: string | null;
|
|
4631
|
+
revoked_at?: string | null;
|
|
4632
|
+
};
|
|
4462
4633
|
type AttributeCreate = {
|
|
4463
4634
|
name: string;
|
|
4464
4635
|
unit?: string | null;
|
|
@@ -4633,12 +4804,7 @@ type ConfigurationLanguageFields = {
|
|
|
4633
4804
|
menu_items: ConfigurationLanguageFieldMenuItems;
|
|
4634
4805
|
static_texts: ConfigurationLanguageFieldStaticTexts;
|
|
4635
4806
|
};
|
|
4636
|
-
type
|
|
4637
|
-
main: ConfigurationLanguageFields;
|
|
4638
|
-
alt1?: ConfigurationLanguageFields | null;
|
|
4639
|
-
alt2?: ConfigurationLanguageFields | null;
|
|
4640
|
-
};
|
|
4641
|
-
type ConfigurationLanguages_Output = {
|
|
4807
|
+
type ConfigurationLanguages = {
|
|
4642
4808
|
main: ConfigurationLanguageFields;
|
|
4643
4809
|
alt1?: ConfigurationLanguageFields | null;
|
|
4644
4810
|
alt2?: ConfigurationLanguageFields | null;
|
|
@@ -4670,7 +4836,7 @@ type ConfigurationV1_Input = {
|
|
|
4670
4836
|
alt1_banner?: string | null;
|
|
4671
4837
|
alt2_banner?: string | null;
|
|
4672
4838
|
gradient_percentage?: number;
|
|
4673
|
-
languages:
|
|
4839
|
+
languages: ConfigurationLanguages;
|
|
4674
4840
|
google_analytics_id?: string | null;
|
|
4675
4841
|
contact: ConfigurationContact;
|
|
4676
4842
|
toggles: Toggles;
|
|
@@ -4684,7 +4850,7 @@ type ConfigurationV1_Output = {
|
|
|
4684
4850
|
alt1_banner?: string | null;
|
|
4685
4851
|
alt2_banner?: string | null;
|
|
4686
4852
|
gradient_percentage?: number;
|
|
4687
|
-
languages:
|
|
4853
|
+
languages: ConfigurationLanguages;
|
|
4688
4854
|
google_analytics_id?: string | null;
|
|
4689
4855
|
contact: ConfigurationContact;
|
|
4690
4856
|
toggles: Toggles;
|
|
@@ -5602,7 +5768,7 @@ type CalculateShippingCalculatePostData = {
|
|
|
5602
5768
|
requestBody: ShippingCalculateRequest;
|
|
5603
5769
|
};
|
|
5604
5770
|
type CalculateShippingCalculatePostResponse = ShippingCalculation;
|
|
5605
|
-
type
|
|
5771
|
+
type ListCategoriesData = {
|
|
5606
5772
|
/**
|
|
5607
5773
|
* 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.
|
|
5608
5774
|
*/
|
|
@@ -5614,42 +5780,50 @@ type GetMultiShopsShopIdCategoriesGetData = {
|
|
|
5614
5780
|
* 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.
|
|
5615
5781
|
*/
|
|
5616
5782
|
sort?: Array<string>;
|
|
5783
|
+
xApiKey?: string | null;
|
|
5617
5784
|
};
|
|
5618
|
-
type
|
|
5619
|
-
type
|
|
5785
|
+
type ListCategoriesResponse = Array<CategorySchema>;
|
|
5786
|
+
type CreateCategoryData = {
|
|
5620
5787
|
requestBody: CategoryCreate;
|
|
5621
5788
|
shopId: string;
|
|
5789
|
+
xApiKey?: string | null;
|
|
5622
5790
|
};
|
|
5623
|
-
type
|
|
5624
|
-
type
|
|
5791
|
+
type CreateCategoryResponse = unknown;
|
|
5792
|
+
type GetCategoryData = {
|
|
5625
5793
|
categoryId: string;
|
|
5626
5794
|
shopId: string;
|
|
5795
|
+
xApiKey?: string | null;
|
|
5627
5796
|
};
|
|
5628
|
-
type
|
|
5629
|
-
type
|
|
5797
|
+
type GetCategoryResponse = CategorySchema;
|
|
5798
|
+
type UpdateCategoryData = {
|
|
5630
5799
|
categoryId: string;
|
|
5631
5800
|
requestBody: CategoryUpdate;
|
|
5632
5801
|
shopId: string;
|
|
5802
|
+
xApiKey?: string | null;
|
|
5633
5803
|
};
|
|
5634
|
-
type
|
|
5635
|
-
type
|
|
5804
|
+
type UpdateCategoryResponse = unknown;
|
|
5805
|
+
type DeleteCategoryData = {
|
|
5636
5806
|
categoryId: string;
|
|
5637
5807
|
shopId: string;
|
|
5808
|
+
xApiKey?: string | null;
|
|
5638
5809
|
};
|
|
5639
|
-
type
|
|
5810
|
+
type DeleteCategoryResponse = void;
|
|
5640
5811
|
type GetByNameShopsShopIdCategoriesNameNameGetData = {
|
|
5641
5812
|
name: string;
|
|
5642
5813
|
shopId: string;
|
|
5814
|
+
xApiKey?: string | null;
|
|
5643
5815
|
};
|
|
5644
5816
|
type GetByNameShopsShopIdCategoriesNameNameGetResponse = CategorySchema;
|
|
5645
5817
|
type SwapShopsShopIdCategoriesCategoryIdSwapPutData = {
|
|
5646
5818
|
categoryId: string;
|
|
5647
5819
|
moveUp: boolean;
|
|
5648
5820
|
shopId: string;
|
|
5821
|
+
xApiKey?: string | null;
|
|
5649
5822
|
};
|
|
5650
5823
|
type SwapShopsShopIdCategoriesCategoryIdSwapPutResponse = unknown;
|
|
5651
5824
|
type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetData = {
|
|
5652
5825
|
categoryId: string;
|
|
5826
|
+
optionId?: Array<string>;
|
|
5653
5827
|
shopId: string;
|
|
5654
5828
|
};
|
|
5655
5829
|
type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetResponse = Array<AvailableAttributeSchema>;
|
|
@@ -5704,7 +5878,7 @@ type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData = {
|
|
|
5704
5878
|
shopId: string;
|
|
5705
5879
|
};
|
|
5706
5880
|
type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetResponse = unknown;
|
|
5707
|
-
type
|
|
5881
|
+
type ListProductsData = {
|
|
5708
5882
|
/**
|
|
5709
5883
|
* 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.
|
|
5710
5884
|
*/
|
|
@@ -5716,13 +5890,19 @@ type GetMultiShopsShopIdProductsGetData = {
|
|
|
5716
5890
|
* 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.
|
|
5717
5891
|
*/
|
|
5718
5892
|
sort?: Array<string>;
|
|
5893
|
+
/**
|
|
5894
|
+
* Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
|
|
5895
|
+
*/
|
|
5896
|
+
stockStatus?: 'in_stock' | 'out_of_stock' | 'all';
|
|
5897
|
+
xApiKey?: string | null;
|
|
5719
5898
|
};
|
|
5720
|
-
type
|
|
5721
|
-
type
|
|
5899
|
+
type ListProductsResponse = Array<ProductWithDefaultPrice>;
|
|
5900
|
+
type CreateProductData = {
|
|
5722
5901
|
requestBody: ProductCreate;
|
|
5723
5902
|
shopId: string;
|
|
5903
|
+
xApiKey?: string | null;
|
|
5724
5904
|
};
|
|
5725
|
-
type
|
|
5905
|
+
type CreateProductResponse = unknown;
|
|
5726
5906
|
type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData = {
|
|
5727
5907
|
attributeId?: string;
|
|
5728
5908
|
attributeName?: string;
|
|
@@ -5739,28 +5919,36 @@ type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData = {
|
|
|
5739
5919
|
* 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.
|
|
5740
5920
|
*/
|
|
5741
5921
|
sort?: Array<string>;
|
|
5922
|
+
/**
|
|
5923
|
+
* Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
|
|
5924
|
+
*/
|
|
5925
|
+
stockStatus?: 'in_stock' | 'out_of_stock' | 'all';
|
|
5926
|
+
xApiKey?: string | null;
|
|
5742
5927
|
};
|
|
5743
5928
|
type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse = Array<ProductWithAttributes>;
|
|
5744
|
-
type
|
|
5929
|
+
type UpdateProductData = {
|
|
5745
5930
|
productId: string;
|
|
5746
5931
|
requestBody: ProductUpdate;
|
|
5747
5932
|
shopId: string;
|
|
5933
|
+
xApiKey?: string | null;
|
|
5748
5934
|
};
|
|
5749
|
-
type
|
|
5750
|
-
type
|
|
5935
|
+
type UpdateProductResponse = unknown;
|
|
5936
|
+
type DeleteProductData = {
|
|
5751
5937
|
productId: string;
|
|
5752
5938
|
shopId: string;
|
|
5939
|
+
xApiKey?: string | null;
|
|
5753
5940
|
};
|
|
5754
|
-
type
|
|
5755
|
-
type
|
|
5941
|
+
type DeleteProductResponse = void;
|
|
5942
|
+
type GetProductData = {
|
|
5756
5943
|
productId: string;
|
|
5757
5944
|
shopId: string;
|
|
5758
5945
|
};
|
|
5759
|
-
type
|
|
5946
|
+
type GetProductResponse = ProductWithDetailsAndPrices;
|
|
5760
5947
|
type SwapShopsShopIdProductsProductIdSwapPutData = {
|
|
5761
5948
|
moveUp: boolean;
|
|
5762
5949
|
productId: string;
|
|
5763
5950
|
shopId: string;
|
|
5951
|
+
xApiKey?: string | null;
|
|
5764
5952
|
};
|
|
5765
5953
|
type SwapShopsShopIdProductsProductIdSwapPutResponse = unknown;
|
|
5766
5954
|
type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData = {
|
|
@@ -5803,7 +5991,7 @@ type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData = {
|
|
|
5803
5991
|
productToTagId: string;
|
|
5804
5992
|
};
|
|
5805
5993
|
type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse = void;
|
|
5806
|
-
type
|
|
5994
|
+
type ListTagsData = {
|
|
5807
5995
|
/**
|
|
5808
5996
|
* 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.
|
|
5809
5997
|
*/
|
|
@@ -5815,37 +6003,44 @@ type GetMultiShopsShopIdTagsGetData = {
|
|
|
5815
6003
|
* 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.
|
|
5816
6004
|
*/
|
|
5817
6005
|
sort?: Array<string>;
|
|
6006
|
+
xApiKey?: string | null;
|
|
5818
6007
|
};
|
|
5819
|
-
type
|
|
5820
|
-
type
|
|
6008
|
+
type ListTagsResponse = Array<TagSchema>;
|
|
6009
|
+
type CreateTagData = {
|
|
5821
6010
|
requestBody: TagCreate;
|
|
5822
6011
|
shopId: string;
|
|
6012
|
+
xApiKey?: string | null;
|
|
5823
6013
|
};
|
|
5824
|
-
type
|
|
5825
|
-
type
|
|
6014
|
+
type CreateTagResponse = unknown;
|
|
6015
|
+
type GetTagData = {
|
|
5826
6016
|
shopId: string;
|
|
5827
6017
|
tagId: string;
|
|
6018
|
+
xApiKey?: string | null;
|
|
5828
6019
|
};
|
|
5829
|
-
type
|
|
5830
|
-
type
|
|
6020
|
+
type GetTagResponse = TagSchema;
|
|
6021
|
+
type UpdateTagData = {
|
|
5831
6022
|
requestBody: TagUpdate;
|
|
5832
6023
|
shopId: string;
|
|
5833
6024
|
tagId: string;
|
|
6025
|
+
xApiKey?: string | null;
|
|
5834
6026
|
};
|
|
5835
|
-
type
|
|
5836
|
-
type
|
|
6027
|
+
type UpdateTagResponse = unknown;
|
|
6028
|
+
type DeleteTagData = {
|
|
5837
6029
|
shopId: string;
|
|
5838
6030
|
tagId: string;
|
|
6031
|
+
xApiKey?: string | null;
|
|
5839
6032
|
};
|
|
5840
|
-
type
|
|
6033
|
+
type DeleteTagResponse = void;
|
|
5841
6034
|
type GetByNameShopsShopIdTagsNameNameGetData = {
|
|
5842
6035
|
name: string;
|
|
5843
6036
|
shopId: string;
|
|
6037
|
+
xApiKey?: string | null;
|
|
5844
6038
|
};
|
|
5845
6039
|
type GetByNameShopsShopIdTagsNameNameGetResponse = TagSchema;
|
|
5846
6040
|
type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetData = {
|
|
5847
6041
|
attributeId: string;
|
|
5848
6042
|
shopId: string;
|
|
6043
|
+
xApiKey?: string | null;
|
|
5849
6044
|
};
|
|
5850
6045
|
type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetResponse = AttributeWithOptionsSchema;
|
|
5851
6046
|
type GetWithOptionsShopsShopIdAttributesWithOptionsGetData = {
|
|
@@ -5860,9 +6055,10 @@ type GetWithOptionsShopsShopIdAttributesWithOptionsGetData = {
|
|
|
5860
6055
|
* 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.
|
|
5861
6056
|
*/
|
|
5862
6057
|
sort?: Array<string>;
|
|
6058
|
+
xApiKey?: string | null;
|
|
5863
6059
|
};
|
|
5864
6060
|
type GetWithOptionsShopsShopIdAttributesWithOptionsGetResponse = Array<AttributeWithOptionsSchema>;
|
|
5865
|
-
type
|
|
6061
|
+
type ListAttributesData = {
|
|
5866
6062
|
/**
|
|
5867
6063
|
* 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.
|
|
5868
6064
|
*/
|
|
@@ -5874,39 +6070,60 @@ type GetMultiShopsShopIdAttributesGetData = {
|
|
|
5874
6070
|
* 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.
|
|
5875
6071
|
*/
|
|
5876
6072
|
sort?: Array<string>;
|
|
6073
|
+
xApiKey?: string | null;
|
|
5877
6074
|
};
|
|
5878
|
-
type
|
|
5879
|
-
type
|
|
6075
|
+
type ListAttributesResponse = Array<AttributeSchema>;
|
|
6076
|
+
type CreateAttributeData = {
|
|
5880
6077
|
requestBody: AttributeCreate;
|
|
5881
6078
|
shopId: string;
|
|
6079
|
+
xApiKey?: string | null;
|
|
5882
6080
|
};
|
|
5883
|
-
type
|
|
6081
|
+
type CreateAttributeResponse = AttributeSchema;
|
|
5884
6082
|
type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetData = {
|
|
5885
6083
|
attributeId: string;
|
|
5886
6084
|
shopId: string;
|
|
6085
|
+
xApiKey?: string | null;
|
|
5887
6086
|
};
|
|
5888
6087
|
type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetResponse = AttributeWithOptionsSchema;
|
|
5889
|
-
type
|
|
6088
|
+
type GetAttributeData = {
|
|
5890
6089
|
attributeId: string;
|
|
5891
6090
|
shopId: string;
|
|
6091
|
+
xApiKey?: string | null;
|
|
5892
6092
|
};
|
|
5893
|
-
type
|
|
6093
|
+
type GetAttributeResponse = AttributeSchema;
|
|
5894
6094
|
type GetByNameShopsShopIdAttributesNameNameGetData = {
|
|
5895
6095
|
name: string;
|
|
5896
6096
|
shopId: string;
|
|
6097
|
+
xApiKey?: string | null;
|
|
5897
6098
|
};
|
|
5898
6099
|
type GetByNameShopsShopIdAttributesNameNameGetResponse = AttributeSchema;
|
|
5899
|
-
type
|
|
6100
|
+
type UpdateAttributeData = {
|
|
5900
6101
|
attributeId: string;
|
|
5901
6102
|
requestBody: AttributeUpdate;
|
|
5902
6103
|
shopId: string;
|
|
6104
|
+
xApiKey?: string | null;
|
|
5903
6105
|
};
|
|
5904
|
-
type
|
|
5905
|
-
type
|
|
6106
|
+
type UpdateAttributeResponse = AttributeSchema;
|
|
6107
|
+
type DeleteAttributeData = {
|
|
5906
6108
|
attributeId: string;
|
|
5907
6109
|
shopId: string;
|
|
6110
|
+
xApiKey?: string | null;
|
|
6111
|
+
};
|
|
6112
|
+
type DeleteAttributeResponse = void;
|
|
6113
|
+
type MintShopsShopIdApiKeysPostData = {
|
|
6114
|
+
requestBody: ApiKeyCreate;
|
|
6115
|
+
shopId: string;
|
|
6116
|
+
};
|
|
6117
|
+
type MintShopsShopIdApiKeysPostResponse = ApiKeyCreated;
|
|
6118
|
+
type ListKeysShopsShopIdApiKeysGetData = {
|
|
6119
|
+
shopId: string;
|
|
5908
6120
|
};
|
|
5909
|
-
type
|
|
6121
|
+
type ListKeysShopsShopIdApiKeysGetResponse = Array<ApiKeyRead>;
|
|
6122
|
+
type RevokeShopsShopIdApiKeysKeyIdDeleteData = {
|
|
6123
|
+
keyId: string;
|
|
6124
|
+
shopId: string;
|
|
6125
|
+
};
|
|
6126
|
+
type RevokeShopsShopIdApiKeysKeyIdDeleteResponse = void;
|
|
5910
6127
|
type ListOptionsForShopShopsShopIdAttributeOptionsGetData = {
|
|
5911
6128
|
/**
|
|
5912
6129
|
* 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.
|
|
@@ -6944,7 +7161,7 @@ type $OpenApiTs = {
|
|
|
6944
7161
|
};
|
|
6945
7162
|
'/shops/{shop_id}/categories/': {
|
|
6946
7163
|
get: {
|
|
6947
|
-
req:
|
|
7164
|
+
req: ListCategoriesData;
|
|
6948
7165
|
res: {
|
|
6949
7166
|
/**
|
|
6950
7167
|
* Successful Response
|
|
@@ -6957,7 +7174,7 @@ type $OpenApiTs = {
|
|
|
6957
7174
|
};
|
|
6958
7175
|
};
|
|
6959
7176
|
post: {
|
|
6960
|
-
req:
|
|
7177
|
+
req: CreateCategoryData;
|
|
6961
7178
|
res: {
|
|
6962
7179
|
/**
|
|
6963
7180
|
* Successful Response
|
|
@@ -6972,7 +7189,7 @@ type $OpenApiTs = {
|
|
|
6972
7189
|
};
|
|
6973
7190
|
'/shops/{shop_id}/categories/{category_id}': {
|
|
6974
7191
|
get: {
|
|
6975
|
-
req:
|
|
7192
|
+
req: GetCategoryData;
|
|
6976
7193
|
res: {
|
|
6977
7194
|
/**
|
|
6978
7195
|
* Successful Response
|
|
@@ -6985,7 +7202,7 @@ type $OpenApiTs = {
|
|
|
6985
7202
|
};
|
|
6986
7203
|
};
|
|
6987
7204
|
put: {
|
|
6988
|
-
req:
|
|
7205
|
+
req: UpdateCategoryData;
|
|
6989
7206
|
res: {
|
|
6990
7207
|
/**
|
|
6991
7208
|
* Successful Response
|
|
@@ -6998,7 +7215,7 @@ type $OpenApiTs = {
|
|
|
6998
7215
|
};
|
|
6999
7216
|
};
|
|
7000
7217
|
delete: {
|
|
7001
|
-
req:
|
|
7218
|
+
req: DeleteCategoryData;
|
|
7002
7219
|
res: {
|
|
7003
7220
|
/**
|
|
7004
7221
|
* Successful Response
|
|
@@ -7146,7 +7363,7 @@ type $OpenApiTs = {
|
|
|
7146
7363
|
};
|
|
7147
7364
|
'/shops/{shop_id}/products/': {
|
|
7148
7365
|
get: {
|
|
7149
|
-
req:
|
|
7366
|
+
req: ListProductsData;
|
|
7150
7367
|
res: {
|
|
7151
7368
|
/**
|
|
7152
7369
|
* Successful Response
|
|
@@ -7159,7 +7376,7 @@ type $OpenApiTs = {
|
|
|
7159
7376
|
};
|
|
7160
7377
|
};
|
|
7161
7378
|
post: {
|
|
7162
|
-
req:
|
|
7379
|
+
req: CreateProductData;
|
|
7163
7380
|
res: {
|
|
7164
7381
|
/**
|
|
7165
7382
|
* Successful Response
|
|
@@ -7189,7 +7406,7 @@ type $OpenApiTs = {
|
|
|
7189
7406
|
};
|
|
7190
7407
|
'/shops/{shop_id}/products/{product_id}': {
|
|
7191
7408
|
put: {
|
|
7192
|
-
req:
|
|
7409
|
+
req: UpdateProductData;
|
|
7193
7410
|
res: {
|
|
7194
7411
|
/**
|
|
7195
7412
|
* Successful Response
|
|
@@ -7202,7 +7419,7 @@ type $OpenApiTs = {
|
|
|
7202
7419
|
};
|
|
7203
7420
|
};
|
|
7204
7421
|
delete: {
|
|
7205
|
-
req:
|
|
7422
|
+
req: DeleteProductData;
|
|
7206
7423
|
res: {
|
|
7207
7424
|
/**
|
|
7208
7425
|
* Successful Response
|
|
@@ -7215,7 +7432,7 @@ type $OpenApiTs = {
|
|
|
7215
7432
|
};
|
|
7216
7433
|
};
|
|
7217
7434
|
get: {
|
|
7218
|
-
req:
|
|
7435
|
+
req: GetProductData;
|
|
7219
7436
|
res: {
|
|
7220
7437
|
/**
|
|
7221
7438
|
* Successful Response
|
|
@@ -7346,7 +7563,7 @@ type $OpenApiTs = {
|
|
|
7346
7563
|
};
|
|
7347
7564
|
'/shops/{shop_id}/tags/': {
|
|
7348
7565
|
get: {
|
|
7349
|
-
req:
|
|
7566
|
+
req: ListTagsData;
|
|
7350
7567
|
res: {
|
|
7351
7568
|
/**
|
|
7352
7569
|
* Successful Response
|
|
@@ -7359,7 +7576,7 @@ type $OpenApiTs = {
|
|
|
7359
7576
|
};
|
|
7360
7577
|
};
|
|
7361
7578
|
post: {
|
|
7362
|
-
req:
|
|
7579
|
+
req: CreateTagData;
|
|
7363
7580
|
res: {
|
|
7364
7581
|
/**
|
|
7365
7582
|
* Successful Response
|
|
@@ -7374,7 +7591,7 @@ type $OpenApiTs = {
|
|
|
7374
7591
|
};
|
|
7375
7592
|
'/shops/{shop_id}/tags/{tag_id}': {
|
|
7376
7593
|
get: {
|
|
7377
|
-
req:
|
|
7594
|
+
req: GetTagData;
|
|
7378
7595
|
res: {
|
|
7379
7596
|
/**
|
|
7380
7597
|
* Successful Response
|
|
@@ -7387,7 +7604,7 @@ type $OpenApiTs = {
|
|
|
7387
7604
|
};
|
|
7388
7605
|
};
|
|
7389
7606
|
put: {
|
|
7390
|
-
req:
|
|
7607
|
+
req: UpdateTagData;
|
|
7391
7608
|
res: {
|
|
7392
7609
|
/**
|
|
7393
7610
|
* Successful Response
|
|
@@ -7400,7 +7617,7 @@ type $OpenApiTs = {
|
|
|
7400
7617
|
};
|
|
7401
7618
|
};
|
|
7402
7619
|
delete: {
|
|
7403
|
-
req:
|
|
7620
|
+
req: DeleteTagData;
|
|
7404
7621
|
res: {
|
|
7405
7622
|
/**
|
|
7406
7623
|
* Successful Response
|
|
@@ -7460,7 +7677,7 @@ type $OpenApiTs = {
|
|
|
7460
7677
|
};
|
|
7461
7678
|
'/shops/{shop_id}/attributes/': {
|
|
7462
7679
|
get: {
|
|
7463
|
-
req:
|
|
7680
|
+
req: ListAttributesData;
|
|
7464
7681
|
res: {
|
|
7465
7682
|
/**
|
|
7466
7683
|
* Successful Response
|
|
@@ -7473,7 +7690,7 @@ type $OpenApiTs = {
|
|
|
7473
7690
|
};
|
|
7474
7691
|
};
|
|
7475
7692
|
post: {
|
|
7476
|
-
req:
|
|
7693
|
+
req: CreateAttributeData;
|
|
7477
7694
|
res: {
|
|
7478
7695
|
/**
|
|
7479
7696
|
* Successful Response
|
|
@@ -7503,7 +7720,7 @@ type $OpenApiTs = {
|
|
|
7503
7720
|
};
|
|
7504
7721
|
'/shops/{shop_id}/attributes/id/{attribute_id}': {
|
|
7505
7722
|
get: {
|
|
7506
|
-
req:
|
|
7723
|
+
req: GetAttributeData;
|
|
7507
7724
|
res: {
|
|
7508
7725
|
/**
|
|
7509
7726
|
* Successful Response
|
|
@@ -7533,7 +7750,7 @@ type $OpenApiTs = {
|
|
|
7533
7750
|
};
|
|
7534
7751
|
'/shops/{shop_id}/attributes/{attribute_id}': {
|
|
7535
7752
|
put: {
|
|
7536
|
-
req:
|
|
7753
|
+
req: UpdateAttributeData;
|
|
7537
7754
|
res: {
|
|
7538
7755
|
/**
|
|
7539
7756
|
* Successful Response
|
|
@@ -7546,7 +7763,50 @@ type $OpenApiTs = {
|
|
|
7546
7763
|
};
|
|
7547
7764
|
};
|
|
7548
7765
|
delete: {
|
|
7549
|
-
req:
|
|
7766
|
+
req: DeleteAttributeData;
|
|
7767
|
+
res: {
|
|
7768
|
+
/**
|
|
7769
|
+
* Successful Response
|
|
7770
|
+
*/
|
|
7771
|
+
204: void;
|
|
7772
|
+
/**
|
|
7773
|
+
* Validation Error
|
|
7774
|
+
*/
|
|
7775
|
+
422: HTTPValidationError;
|
|
7776
|
+
};
|
|
7777
|
+
};
|
|
7778
|
+
};
|
|
7779
|
+
'/shops/{shop_id}/api-keys/': {
|
|
7780
|
+
post: {
|
|
7781
|
+
req: MintShopsShopIdApiKeysPostData;
|
|
7782
|
+
res: {
|
|
7783
|
+
/**
|
|
7784
|
+
* Successful Response
|
|
7785
|
+
*/
|
|
7786
|
+
201: ApiKeyCreated;
|
|
7787
|
+
/**
|
|
7788
|
+
* Validation Error
|
|
7789
|
+
*/
|
|
7790
|
+
422: HTTPValidationError;
|
|
7791
|
+
};
|
|
7792
|
+
};
|
|
7793
|
+
get: {
|
|
7794
|
+
req: ListKeysShopsShopIdApiKeysGetData;
|
|
7795
|
+
res: {
|
|
7796
|
+
/**
|
|
7797
|
+
* Successful Response
|
|
7798
|
+
*/
|
|
7799
|
+
200: Array<ApiKeyRead>;
|
|
7800
|
+
/**
|
|
7801
|
+
* Validation Error
|
|
7802
|
+
*/
|
|
7803
|
+
422: HTTPValidationError;
|
|
7804
|
+
};
|
|
7805
|
+
};
|
|
7806
|
+
};
|
|
7807
|
+
'/shops/{shop_id}/api-keys/{key_id}': {
|
|
7808
|
+
delete: {
|
|
7809
|
+
req: RevokeShopsShopIdApiKeysKeyIdDeleteData;
|
|
7550
7810
|
res: {
|
|
7551
7811
|
/**
|
|
7552
7812
|
* Successful Response
|
|
@@ -8529,52 +8789,58 @@ declare const calculateShippingCalculatePost: (data: CalculateShippingCalculateP
|
|
|
8529
8789
|
* @param data.limit
|
|
8530
8790
|
* @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.
|
|
8531
8791
|
* @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.
|
|
8792
|
+
* @param data.xApiKey
|
|
8532
8793
|
* @returns CategorySchema Successful Response
|
|
8533
8794
|
* @throws ApiError
|
|
8534
8795
|
*/
|
|
8535
|
-
declare const
|
|
8796
|
+
declare const listCategories: (data: ListCategoriesData) => CancelablePromise<ListCategoriesResponse>;
|
|
8536
8797
|
/**
|
|
8537
8798
|
* Create
|
|
8538
8799
|
* @param data The data for the request.
|
|
8539
8800
|
* @param data.shopId
|
|
8540
8801
|
* @param data.requestBody
|
|
8802
|
+
* @param data.xApiKey
|
|
8541
8803
|
* @returns unknown Successful Response
|
|
8542
8804
|
* @throws ApiError
|
|
8543
8805
|
*/
|
|
8544
|
-
declare const
|
|
8806
|
+
declare const createCategory: (data: CreateCategoryData) => CancelablePromise<CreateCategoryResponse>;
|
|
8545
8807
|
/**
|
|
8546
8808
|
* Get By Id
|
|
8547
8809
|
* @param data The data for the request.
|
|
8548
8810
|
* @param data.shopId
|
|
8549
8811
|
* @param data.categoryId
|
|
8812
|
+
* @param data.xApiKey
|
|
8550
8813
|
* @returns CategorySchema Successful Response
|
|
8551
8814
|
* @throws ApiError
|
|
8552
8815
|
*/
|
|
8553
|
-
declare const
|
|
8816
|
+
declare const getCategory: (data: GetCategoryData) => CancelablePromise<GetCategoryResponse>;
|
|
8554
8817
|
/**
|
|
8555
8818
|
* Update
|
|
8556
8819
|
* @param data The data for the request.
|
|
8557
8820
|
* @param data.categoryId
|
|
8558
8821
|
* @param data.shopId
|
|
8559
8822
|
* @param data.requestBody
|
|
8823
|
+
* @param data.xApiKey
|
|
8560
8824
|
* @returns unknown Successful Response
|
|
8561
8825
|
* @throws ApiError
|
|
8562
8826
|
*/
|
|
8563
|
-
declare const
|
|
8827
|
+
declare const updateCategory: (data: UpdateCategoryData) => CancelablePromise<UpdateCategoryResponse>;
|
|
8564
8828
|
/**
|
|
8565
8829
|
* Delete
|
|
8566
8830
|
* @param data The data for the request.
|
|
8567
8831
|
* @param data.categoryId
|
|
8568
8832
|
* @param data.shopId
|
|
8833
|
+
* @param data.xApiKey
|
|
8569
8834
|
* @returns void Successful Response
|
|
8570
8835
|
* @throws ApiError
|
|
8571
8836
|
*/
|
|
8572
|
-
declare const
|
|
8837
|
+
declare const deleteCategory: (data: DeleteCategoryData) => CancelablePromise<DeleteCategoryResponse>;
|
|
8573
8838
|
/**
|
|
8574
8839
|
* Get By Name
|
|
8575
8840
|
* @param data The data for the request.
|
|
8576
8841
|
* @param data.name
|
|
8577
8842
|
* @param data.shopId
|
|
8843
|
+
* @param data.xApiKey
|
|
8578
8844
|
* @returns CategorySchema Successful Response
|
|
8579
8845
|
* @throws ApiError
|
|
8580
8846
|
*/
|
|
@@ -8585,16 +8851,18 @@ declare const getByNameShopsShopIdCategoriesNameNameGet: (data: GetByNameShopsSh
|
|
|
8585
8851
|
* @param data.shopId
|
|
8586
8852
|
* @param data.categoryId
|
|
8587
8853
|
* @param data.moveUp
|
|
8854
|
+
* @param data.xApiKey
|
|
8588
8855
|
* @returns unknown Successful Response
|
|
8589
8856
|
* @throws ApiError
|
|
8590
8857
|
*/
|
|
8591
8858
|
declare const swapShopsShopIdCategoriesCategoryIdSwapPut: (data: SwapShopsShopIdCategoriesCategoryIdSwapPutData) => CancelablePromise<SwapShopsShopIdCategoriesCategoryIdSwapPutResponse>;
|
|
8592
8859
|
/**
|
|
8593
8860
|
* Get available filter attributes for a category
|
|
8594
|
-
* Returns attributes actually used by products in this category, with option counts.
|
|
8861
|
+
* Returns attributes actually used by products in this category, with option counts. Pass option_id[] to narrow counts to the already-selected filters (AND logic).
|
|
8595
8862
|
* @param data The data for the request.
|
|
8596
8863
|
* @param data.shopId
|
|
8597
8864
|
* @param data.categoryId
|
|
8865
|
+
* @param data.optionId
|
|
8598
8866
|
* @returns AvailableAttributeSchema Successful Response
|
|
8599
8867
|
* @throws ApiError
|
|
8600
8868
|
*/
|
|
@@ -8674,23 +8942,26 @@ declare const getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet: (data: G
|
|
|
8674
8942
|
* Get Multi
|
|
8675
8943
|
* @param data The data for the request.
|
|
8676
8944
|
* @param data.shopId
|
|
8945
|
+
* @param data.stockStatus Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
|
|
8677
8946
|
* @param data.skip
|
|
8678
8947
|
* @param data.limit
|
|
8679
8948
|
* @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.
|
|
8680
8949
|
* @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.
|
|
8950
|
+
* @param data.xApiKey
|
|
8681
8951
|
* @returns ProductWithDefaultPrice Successful Response
|
|
8682
8952
|
* @throws ApiError
|
|
8683
8953
|
*/
|
|
8684
|
-
declare const
|
|
8954
|
+
declare const listProducts: (data: ListProductsData) => CancelablePromise<ListProductsResponse>;
|
|
8685
8955
|
/**
|
|
8686
8956
|
* Create
|
|
8687
8957
|
* @param data The data for the request.
|
|
8688
8958
|
* @param data.shopId
|
|
8689
8959
|
* @param data.requestBody
|
|
8960
|
+
* @param data.xApiKey
|
|
8690
8961
|
* @returns unknown Successful Response
|
|
8691
8962
|
* @throws ApiError
|
|
8692
8963
|
*/
|
|
8693
|
-
declare const
|
|
8964
|
+
declare const createProduct: (data: CreateProductData) => CancelablePromise<CreateProductResponse>;
|
|
8694
8965
|
/**
|
|
8695
8966
|
* List products with attributes
|
|
8696
8967
|
* Fetch a list of products along with their associated attributes.
|
|
@@ -8703,16 +8974,21 @@ declare const createShopsShopIdProductsPost: (data: CreateShopsShopIdProductsPos
|
|
|
8703
8974
|
* * `attribute_name` array[str]: Filter by one or multiple attribute names (e.g., 'Color', 'Size').
|
|
8704
8975
|
*
|
|
8705
8976
|
* Only one attribute filter can be used at a time.
|
|
8977
|
+
*
|
|
8978
|
+
* You can additionally narrow results by inventory state with `stock_status`:
|
|
8979
|
+
* `in_stock` (stock > 0), `out_of_stock` (stock = 0), or `all` (default).
|
|
8706
8980
|
* @param data The data for the request.
|
|
8707
8981
|
* @param data.shopId
|
|
8708
8982
|
* @param data.optionId
|
|
8709
8983
|
* @param data.attributeId
|
|
8710
8984
|
* @param data.optionValueKey
|
|
8711
8985
|
* @param data.attributeName
|
|
8986
|
+
* @param data.stockStatus Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
|
|
8712
8987
|
* @param data.skip
|
|
8713
8988
|
* @param data.limit
|
|
8714
8989
|
* @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.
|
|
8715
8990
|
* @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.
|
|
8991
|
+
* @param data.xApiKey
|
|
8716
8992
|
* @returns ProductWithAttributes Successful Response
|
|
8717
8993
|
* @throws ApiError
|
|
8718
8994
|
*/
|
|
@@ -8723,19 +8999,21 @@ declare const getMultiWithAttributesShopsShopIdProductsWithAttributesGet: (data:
|
|
|
8723
8999
|
* @param data.productId
|
|
8724
9000
|
* @param data.shopId
|
|
8725
9001
|
* @param data.requestBody
|
|
9002
|
+
* @param data.xApiKey
|
|
8726
9003
|
* @returns unknown Successful Response
|
|
8727
9004
|
* @throws ApiError
|
|
8728
9005
|
*/
|
|
8729
|
-
declare const
|
|
9006
|
+
declare const updateProduct: (data: UpdateProductData) => CancelablePromise<UpdateProductResponse>;
|
|
8730
9007
|
/**
|
|
8731
9008
|
* Delete
|
|
8732
9009
|
* @param data The data for the request.
|
|
8733
9010
|
* @param data.productId
|
|
8734
9011
|
* @param data.shopId
|
|
9012
|
+
* @param data.xApiKey
|
|
8735
9013
|
* @returns void Successful Response
|
|
8736
9014
|
* @throws ApiError
|
|
8737
9015
|
*/
|
|
8738
|
-
declare const
|
|
9016
|
+
declare const deleteProduct: (data: DeleteProductData) => CancelablePromise<DeleteProductResponse>;
|
|
8739
9017
|
/**
|
|
8740
9018
|
* Get By Id
|
|
8741
9019
|
* @param data The data for the request.
|
|
@@ -8744,13 +9022,14 @@ declare const deleteShopsShopIdProductsProductIdDelete: (data: DeleteShopsShopId
|
|
|
8744
9022
|
* @returns ProductWithDetailsAndPrices Successful Response
|
|
8745
9023
|
* @throws ApiError
|
|
8746
9024
|
*/
|
|
8747
|
-
declare const
|
|
9025
|
+
declare const getProduct: (data: GetProductData) => CancelablePromise<GetProductResponse>;
|
|
8748
9026
|
/**
|
|
8749
9027
|
* Swap
|
|
8750
9028
|
* @param data The data for the request.
|
|
8751
9029
|
* @param data.shopId
|
|
8752
9030
|
* @param data.productId
|
|
8753
9031
|
* @param data.moveUp
|
|
9032
|
+
* @param data.xApiKey
|
|
8754
9033
|
* @returns unknown Successful Response
|
|
8755
9034
|
* @throws ApiError
|
|
8756
9035
|
*/
|
|
@@ -8826,52 +9105,58 @@ declare const deleteShopsShopIdProductsToTagsProductToTagIdDelete: (data: Delete
|
|
|
8826
9105
|
* @param data.limit
|
|
8827
9106
|
* @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.
|
|
8828
9107
|
* @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.
|
|
9108
|
+
* @param data.xApiKey
|
|
8829
9109
|
* @returns TagSchema Successful Response
|
|
8830
9110
|
* @throws ApiError
|
|
8831
9111
|
*/
|
|
8832
|
-
declare const
|
|
9112
|
+
declare const listTags: (data: ListTagsData) => CancelablePromise<ListTagsResponse>;
|
|
8833
9113
|
/**
|
|
8834
9114
|
* Create
|
|
8835
9115
|
* @param data The data for the request.
|
|
8836
9116
|
* @param data.shopId
|
|
8837
9117
|
* @param data.requestBody
|
|
9118
|
+
* @param data.xApiKey
|
|
8838
9119
|
* @returns unknown Successful Response
|
|
8839
9120
|
* @throws ApiError
|
|
8840
9121
|
*/
|
|
8841
|
-
declare const
|
|
9122
|
+
declare const createTag: (data: CreateTagData) => CancelablePromise<CreateTagResponse>;
|
|
8842
9123
|
/**
|
|
8843
9124
|
* Get By Id
|
|
8844
9125
|
* @param data The data for the request.
|
|
8845
9126
|
* @param data.tagId
|
|
8846
9127
|
* @param data.shopId
|
|
9128
|
+
* @param data.xApiKey
|
|
8847
9129
|
* @returns TagSchema Successful Response
|
|
8848
9130
|
* @throws ApiError
|
|
8849
9131
|
*/
|
|
8850
|
-
declare const
|
|
9132
|
+
declare const getTag: (data: GetTagData) => CancelablePromise<GetTagResponse>;
|
|
8851
9133
|
/**
|
|
8852
9134
|
* Update
|
|
8853
9135
|
* @param data The data for the request.
|
|
8854
9136
|
* @param data.tagId
|
|
8855
9137
|
* @param data.shopId
|
|
8856
9138
|
* @param data.requestBody
|
|
9139
|
+
* @param data.xApiKey
|
|
8857
9140
|
* @returns unknown Successful Response
|
|
8858
9141
|
* @throws ApiError
|
|
8859
9142
|
*/
|
|
8860
|
-
declare const
|
|
9143
|
+
declare const updateTag: (data: UpdateTagData) => CancelablePromise<UpdateTagResponse>;
|
|
8861
9144
|
/**
|
|
8862
9145
|
* Delete
|
|
8863
9146
|
* @param data The data for the request.
|
|
8864
9147
|
* @param data.tagId
|
|
8865
9148
|
* @param data.shopId
|
|
9149
|
+
* @param data.xApiKey
|
|
8866
9150
|
* @returns void Successful Response
|
|
8867
9151
|
* @throws ApiError
|
|
8868
9152
|
*/
|
|
8869
|
-
declare const
|
|
9153
|
+
declare const deleteTag: (data: DeleteTagData) => CancelablePromise<DeleteTagResponse>;
|
|
8870
9154
|
/**
|
|
8871
9155
|
* Get By Name
|
|
8872
9156
|
* @param data The data for the request.
|
|
8873
9157
|
* @param data.name
|
|
8874
9158
|
* @param data.shopId
|
|
9159
|
+
* @param data.xApiKey
|
|
8875
9160
|
* @returns TagSchema Successful Response
|
|
8876
9161
|
* @throws ApiError
|
|
8877
9162
|
*/
|
|
@@ -8882,6 +9167,7 @@ declare const getByNameShopsShopIdTagsNameNameGet: (data: GetByNameShopsShopIdTa
|
|
|
8882
9167
|
* @param data The data for the request.
|
|
8883
9168
|
* @param data.attributeId
|
|
8884
9169
|
* @param data.shopId
|
|
9170
|
+
* @param data.xApiKey
|
|
8885
9171
|
* @returns AttributeWithOptionsSchema Successful Response
|
|
8886
9172
|
* @throws ApiError
|
|
8887
9173
|
*/
|
|
@@ -8895,6 +9181,7 @@ declare const getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOption
|
|
|
8895
9181
|
* @param data.limit
|
|
8896
9182
|
* @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.
|
|
8897
9183
|
* @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.
|
|
9184
|
+
* @param data.xApiKey
|
|
8898
9185
|
* @returns AttributeWithOptionsSchema Successful Response
|
|
8899
9186
|
* @throws ApiError
|
|
8900
9187
|
*/
|
|
@@ -8908,26 +9195,29 @@ declare const getWithOptionsShopsShopIdAttributesWithOptionsGet: (data: GetWithO
|
|
|
8908
9195
|
* @param data.limit
|
|
8909
9196
|
* @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.
|
|
8910
9197
|
* @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.
|
|
9198
|
+
* @param data.xApiKey
|
|
8911
9199
|
* @returns AttributeSchema Successful Response
|
|
8912
9200
|
* @throws ApiError
|
|
8913
9201
|
*/
|
|
8914
|
-
declare const
|
|
9202
|
+
declare const listAttributes: (data: ListAttributesData) => CancelablePromise<ListAttributesResponse>;
|
|
8915
9203
|
/**
|
|
8916
9204
|
* Create attribute
|
|
8917
9205
|
* Create a new attribute for a shop. This also initializes a translation record with the provided name.
|
|
8918
9206
|
* @param data The data for the request.
|
|
8919
9207
|
* @param data.shopId
|
|
8920
9208
|
* @param data.requestBody
|
|
9209
|
+
* @param data.xApiKey
|
|
8921
9210
|
* @returns AttributeSchema Successful Response
|
|
8922
9211
|
* @throws ApiError
|
|
8923
9212
|
*/
|
|
8924
|
-
declare const
|
|
9213
|
+
declare const createAttribute: (data: CreateAttributeData) => CancelablePromise<CreateAttributeResponse>;
|
|
8925
9214
|
/**
|
|
8926
9215
|
* Get attribute by ID with options
|
|
8927
9216
|
* Retrieve a specific attribute by its unique ID, including all of its defined options.
|
|
8928
9217
|
* @param data The data for the request.
|
|
8929
9218
|
* @param data.attributeId
|
|
8930
9219
|
* @param data.shopId
|
|
9220
|
+
* @param data.xApiKey
|
|
8931
9221
|
* @returns AttributeWithOptionsSchema Successful Response
|
|
8932
9222
|
* @throws ApiError
|
|
8933
9223
|
*/
|
|
@@ -8938,16 +9228,18 @@ declare const getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet
|
|
|
8938
9228
|
* @param data The data for the request.
|
|
8939
9229
|
* @param data.attributeId
|
|
8940
9230
|
* @param data.shopId
|
|
9231
|
+
* @param data.xApiKey
|
|
8941
9232
|
* @returns AttributeSchema Successful Response
|
|
8942
9233
|
* @throws ApiError
|
|
8943
9234
|
*/
|
|
8944
|
-
declare const
|
|
9235
|
+
declare const getAttribute: (data: GetAttributeData) => CancelablePromise<GetAttributeResponse>;
|
|
8945
9236
|
/**
|
|
8946
9237
|
* Get attribute by name
|
|
8947
9238
|
* Retrieve the details of a specific attribute using its machine-friendly name (e.g., 'color').
|
|
8948
9239
|
* @param data The data for the request.
|
|
8949
9240
|
* @param data.name
|
|
8950
9241
|
* @param data.shopId
|
|
9242
|
+
* @param data.xApiKey
|
|
8951
9243
|
* @returns AttributeSchema Successful Response
|
|
8952
9244
|
* @throws ApiError
|
|
8953
9245
|
*/
|
|
@@ -8959,20 +9251,52 @@ declare const getByNameShopsShopIdAttributesNameNameGet: (data: GetByNameShopsSh
|
|
|
8959
9251
|
* @param data.attributeId
|
|
8960
9252
|
* @param data.shopId
|
|
8961
9253
|
* @param data.requestBody
|
|
9254
|
+
* @param data.xApiKey
|
|
8962
9255
|
* @returns AttributeSchema Successful Response
|
|
8963
9256
|
* @throws ApiError
|
|
8964
9257
|
*/
|
|
8965
|
-
declare const
|
|
9258
|
+
declare const updateAttribute: (data: UpdateAttributeData) => CancelablePromise<UpdateAttributeResponse>;
|
|
8966
9259
|
/**
|
|
8967
9260
|
* Delete attribute
|
|
8968
9261
|
* Remove an attribute from a shop. This will fail if the attribute is currently in use by any products.
|
|
8969
9262
|
* @param data The data for the request.
|
|
8970
9263
|
* @param data.attributeId
|
|
8971
9264
|
* @param data.shopId
|
|
9265
|
+
* @param data.xApiKey
|
|
9266
|
+
* @returns void Successful Response
|
|
9267
|
+
* @throws ApiError
|
|
9268
|
+
*/
|
|
9269
|
+
declare const deleteAttribute: (data: DeleteAttributeData) => CancelablePromise<DeleteAttributeResponse>;
|
|
9270
|
+
/**
|
|
9271
|
+
* Mint a new API key for the shop
|
|
9272
|
+
* Mint a new API key. The plaintext is returned exactly once.
|
|
9273
|
+
*
|
|
9274
|
+
* Store it somewhere safe — it cannot be retrieved again. If lost, revoke
|
|
9275
|
+
* and mint a new one.
|
|
9276
|
+
* @param data The data for the request.
|
|
9277
|
+
* @param data.shopId
|
|
9278
|
+
* @param data.requestBody
|
|
9279
|
+
* @returns ApiKeyCreated Successful Response
|
|
9280
|
+
* @throws ApiError
|
|
9281
|
+
*/
|
|
9282
|
+
declare const mintShopsShopIdApiKeysPost: (data: MintShopsShopIdApiKeysPostData) => CancelablePromise<MintShopsShopIdApiKeysPostResponse>;
|
|
9283
|
+
/**
|
|
9284
|
+
* List API keys for the shop
|
|
9285
|
+
* @param data The data for the request.
|
|
9286
|
+
* @param data.shopId
|
|
9287
|
+
* @returns ApiKeyRead Successful Response
|
|
9288
|
+
* @throws ApiError
|
|
9289
|
+
*/
|
|
9290
|
+
declare const listKeysShopsShopIdApiKeysGet: (data: ListKeysShopsShopIdApiKeysGetData) => CancelablePromise<ListKeysShopsShopIdApiKeysGetResponse>;
|
|
9291
|
+
/**
|
|
9292
|
+
* Revoke an API key
|
|
9293
|
+
* @param data The data for the request.
|
|
9294
|
+
* @param data.shopId
|
|
9295
|
+
* @param data.keyId
|
|
8972
9296
|
* @returns void Successful Response
|
|
8973
9297
|
* @throws ApiError
|
|
8974
9298
|
*/
|
|
8975
|
-
declare const
|
|
9299
|
+
declare const revokeShopsShopIdApiKeysKeyIdDelete: (data: RevokeShopsShopIdApiKeysKeyIdDeleteData) => CancelablePromise<RevokeShopsShopIdApiKeysKeyIdDeleteResponse>;
|
|
8976
9300
|
/**
|
|
8977
9301
|
* List attribute options for a shop
|
|
8978
9302
|
* Retrieve a paginated list of all attribute options (e.g., 'Small', 'XL') across all attributes within a shop.
|
|
@@ -9322,4 +9646,4 @@ declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelableProm
|
|
|
9322
9646
|
*/
|
|
9323
9647
|
declare const deleteFaqFaqIdDelete: (data: DeleteFaqFaqIdDeleteData) => CancelablePromise<DeleteFaqFaqIdDeleteResponse>;
|
|
9324
9648
|
|
|
9325
|
-
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_Input, $ConfigurationShipping_Output, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $LinkStripeBody, $Msg, type $OpenApiTs, $OrderBase, $OrderCreate, $OrderCreated, $OrderItem_Input, $OrderItem_Output, $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_Input, type ConfigurationShipping_Output, 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_Input, type OrderItem_Output, 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 };
|
|
9649
|
+
export { $AccountCreate, $AccountSchema, $AccountUpdate, $AdminAccountSchema, $ApiKeyCreate, $ApiKeyCreated, $ApiKeyRead, $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, $ConfigurationLegal, $ConfigurationShipping_Input, $ConfigurationShipping_Output, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $LinkStripeBody, $Msg, type $OpenApiTs, $OrderBase, $OrderCreate, $OrderCreated, $OrderItem_Input, $OrderItem_Output, $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 ApiKeyCreate, type ApiKeyCreated, type ApiKeyRead, 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, type ConfigurationLegal, type ConfigurationShipping_Input, type ConfigurationShipping_Output, type ConfigurationV1_Input, type ConfigurationV1_Output, type CreateAttributeData, type CreateAttributeResponse, type CreateCategoryData, type CreateCategoryResponse, 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 CreateProductData, type CreateProductResponse, type CreateShopsPostData, type CreateShopsPostResponse, type CreateShopsShopIdAccountsPostData, type CreateShopsShopIdAccountsPostResponse, type CreateShopsShopIdProductsToTagsPostData, type CreateShopsShopIdProductsToTagsPostResponse, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostData, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostResponse, type CreateTagData, type CreateTagResponse, type CreateUsersPostData, type CreateUsersPostResponse, type DefaultPrice, type DeleteAttributeData, type DeleteAttributeResponse, type DeleteCategoryData, type DeleteCategoryResponse, 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 DeleteProductData, type DeleteProductResponse, type DeleteShopsShopIdAccountsAccountIdDeleteData, type DeleteShopsShopIdAccountsAccountIdDeleteResponse, type DeleteShopsShopIdDeleteData, type DeleteShopsShopIdDeleteResponse, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse, type DeleteTagData, type DeleteTagResponse, 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 GetAttributeData, type GetAttributeResponse, 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 GetByIdShopsShopIdCategoriesImagesIdGetData, type GetByIdShopsShopIdCategoriesImagesIdGetResponse, type GetByIdShopsShopIdProductsToTagsIdGetData, type GetByIdShopsShopIdProductsToTagsIdGetResponse, 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 GetCategoryData, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetData, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetResponse, type GetCategoryResponse, 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 GetMultiShopsShopIdCategoriesImagesGetData, type GetMultiShopsShopIdCategoriesImagesGetResponse, type GetMultiShopsShopIdProductsToTagsGetData, type GetMultiShopsShopIdProductsToTagsGetResponse, type GetMultiUsersGetData, type GetMultiUsersGetResponse, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetData, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetResponse, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetData, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetResponse, type GetOrderProductsInStockOrdersStockOrderIdGetData, type GetOrderProductsInStockOrdersStockOrderIdGetResponse, type GetProductData, type GetProductResponse, 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 GetTagData, type GetTagResponse, 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 ListAttributesData, type ListAttributesResponse, type ListCategoriesData, type ListCategoriesResponse, type ListKeysShopsShopIdApiKeysGetData, type ListKeysShopsShopIdApiKeysGetResponse, type ListOptionsForShopShopsShopIdAttributeOptionsGetData, type ListOptionsForShopShopsShopIdAttributeOptionsGetResponse, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetData, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetResponse, type ListProductsData, type ListProductsResponse, type ListTagsData, type ListTagsResponse, type LoginAccessTokenLoginAccessTokenPostData, type LoginAccessTokenLoginAccessTokenPostResponse, type MintShopsShopIdApiKeysPostData, type MintShopsShopIdApiKeysPostResponse, type MoveImagesImagesMovePostResponse, type Msg, type NewFormFormsFormKeyPostData, type NewFormFormsFormKeyPostResponse, OpenAPI, type OpenAPIConfig, type OrderBase, type OrderCreate, type OrderCreated, type OrderItem_Input, type OrderItem_Output, 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 RevokeShopsShopIdApiKeysKeyIdDeleteData, type RevokeShopsShopIdApiKeysKeyIdDeleteResponse, 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 UpdateAttributeData, type UpdateAttributeResponse, type UpdateCategoryData, type UpdateCategoryResponse, type UpdateConfigShopsConfigIdPutData, type UpdateConfigShopsConfigIdPutResponse, type UpdateFaqFaqIdPutData, type UpdateFaqFaqIdPutResponse, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutData, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutResponse, type UpdateOrdersOrderIdPutData, type UpdateOrdersOrderIdPutResponse, type UpdateProductData, type UpdateProductResponse, type UpdateShopsShopIdAccountsAccountIdPutData, type UpdateShopsShopIdAccountsAccountIdPutResponse, type UpdateShopsShopIdProductsToTagsProductToTagIdPutData, type UpdateShopsShopIdProductsToTagsProductToTagIdPutResponse, type UpdateShopsShopIdPutData, type UpdateShopsShopIdPutResponse, type UpdateTagData, type UpdateTagResponse, type UpdateUserMeUsersMePutData, type UpdateUserMeUsersMePutResponse, type UpdateUsersUserIdPutData, type UpdateUsersUserIdPutResponse, type User, type UserCreate, type UserUpdate, type ValidationError, addNewIpShopsAllowedIpsIdPost, calculateShippingCalculatePost, cancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDelete, checkOrdersCheckIdsGet, createAttribute, createCategory, createEarlyAccessPost, createFaqPost, createLicensesPost, createOptionShopsShopIdAttributesAttributeIdOptionsPost, createOptionV2ShopsShopIdAttributeOptionsPost, createOrdersPost, createPaymentIntentShopsShopIdStripePost, createProduct, createShopsPost, createShopsShopIdAccountsPost, createShopsShopIdProductsToTagsPost, createSubscriptionIntentShopsShopIdStripeSubscriptionPost, createTag, createUsersPost, deleteAttribute, deleteCategory, deleteFaqFaqIdDelete, deleteImageShopsShopIdCategoriesImagesDeleteIdPut, deleteLicensesIdDelete, deleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDelete, deleteOptionV2ShopsShopIdAttributeOptionsOptionIdDelete, deleteOrdersOrderIdDelete, deleteProduct, deleteShopsShopIdAccountsAccountIdDelete, deleteShopsShopIdDelete, deleteShopsShopIdProductsToTagsProductToTagIdDelete, deleteTag, deleteTemporaryImagesImagesDeleteTempPost, editLicensesIdPut, formInfoRequestFormPost, formTestFormsPost, getAccountAdminAccountsIdGet, getAllowedIpsShopsAllowedIpsIdGet, getAttribute, getAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGet, getByIdFaqIdGet, getByIdLicensesIdGet, getByIdOrdersIdGet, getByIdShopsIdGet, getByIdShopsShopIdAccountsIdGet, getByIdShopsShopIdCategoriesImagesIdGet, getByIdShopsShopIdProductsToTagsIdGet, getByIdUsersUserIdGet, getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet, getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGet, getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet, getByImproviserUserIdLicensesImproviserImproviserUserIdGet, getByNameShopsShopIdAttributesNameNameGet, getByNameShopsShopIdCategoriesNameNameGet, getByNameShopsShopIdTagsNameNameGet, getCacheStatusShopsCacheStatusIdGet, getCartProductsShopsShopIdPricesPost, getCategory, getCategoryProductsShopsShopIdCategoriesCategoryIdProductsGet, getConfigShopsConfigIdGet, getFormsFormsGet, getHealthHealthGet, getLastCompletedOrderShopsLastCompletedOrderIdGet, getLastPendingOrderShopsLastPendingOrderIdGet, getMultiFaqGet, getMultiLicensesGet, getMultiOrdersGet, getMultiShopsGet, getMultiShopsShopIdAccountsGet, getMultiShopsShopIdCategoriesImagesGet, getMultiShopsShopIdProductsToTagsGet, getMultiUsersGet, getMultiWithAttributesShopsShopIdProductsWithAttributesGet, getOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGet, getOptionV2ShopsShopIdAttributeOptionsOptionIdGet, getOrderProductsInStockOrdersStockOrderIdGet, getProduct, getProductsShopsShopIdPricesGet, getRelationIdShopsShopIdProductsToTagsGetRelationIdGet, getSignedDownloadLinkDownloadsFileNameGet, getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet, getSignedUrlImagesSignedUrlImageNameGet, getStripeCustomerAdminAccountsIdStripeCustomerGet, getTag, getUserMeUsersMeGet, getWithOptionsShopsShopIdAttributesWithOptionsGet, linkStripeAdminAccountsIdLinkStripePost, listAccountsAdminAccountsGet, listAttributes, listCategories, listKeysShopsShopIdApiKeysGet, listOptionsForShopShopsShopIdAttributeOptionsGet, listOptionsShopsShopIdAttributesAttributeIdOptionsGet, listProducts, listTags, loginAccessTokenLoginAccessTokenPost, mintShopsShopIdApiKeysPost, moveImagesImagesMovePost, newFormFormsFormKeyPost, patchOrdersOrderIdPatch, productAttributeValuesCreateDeprecated, productAttributeValuesCreateForProduct, productAttributeValuesDelete, productAttributeValuesGet, productAttributeValuesList, productAttributeValuesReplaceForProduct, putShopsShopIdCategoriesImagesIdPut, recoverPasswordPasswordRecoveryEmailPost, removeIpShopsAllowedIpsIdRemovePost, resetPasswordResetPasswordPost, revokeShopsShopIdApiKeysKeyIdDelete, sendDownloadLinkViaEmailDownloadsSendPost, showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet, showAllPendingOrdersPerShopOrdersShopShopIdPendingGet, swapShopsShopIdCategoriesCategoryIdSwapPut, swapShopsShopIdProductsProductIdSwapPut, syncStripeAdminAccountsIdSyncStripePost, testTokenLoginTestTokenPost, triggerErrorSentryGet, updateAttribute, updateCategory, updateConfigShopsConfigIdPut, updateFaqFaqIdPut, updateOptionV2ShopsShopIdAttributeOptionsOptionIdPut, updateOrdersOrderIdPut, updateProduct, updateShopsShopIdAccountsAccountIdPut, updateShopsShopIdProductsToTagsProductToTagIdPut, updateShopsShopIdPut, updateTag, updateUserMeUsersMePut, updateUsersUserIdPut };
|