@shopvirge/shopvirge-client 0.2.10 → 0.3.2
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 +524 -112
- package/dist/index.js +474 -98
- 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,7 +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 $
|
|
1140
|
+
declare const $ConfigurationLanguages: {
|
|
1024
1141
|
readonly properties: {
|
|
1025
1142
|
readonly main: {
|
|
1026
1143
|
readonly $ref: "#/components/schemas/ConfigurationLanguageFields";
|
|
@@ -1044,51 +1161,61 @@ declare const $ConfigurationLanguages_Input: {
|
|
|
1044
1161
|
readonly required: readonly ["main"];
|
|
1045
1162
|
readonly title: "ConfigurationLanguages";
|
|
1046
1163
|
};
|
|
1047
|
-
declare const $
|
|
1164
|
+
declare const $ConfigurationLegal: {
|
|
1048
1165
|
readonly properties: {
|
|
1049
|
-
readonly
|
|
1050
|
-
readonly $ref: "#/components/schemas/ConfigurationLanguageFields";
|
|
1051
|
-
};
|
|
1052
|
-
readonly alt1: {
|
|
1166
|
+
readonly kvk_number: {
|
|
1053
1167
|
readonly anyOf: readonly [{
|
|
1054
|
-
readonly
|
|
1168
|
+
readonly type: "string";
|
|
1055
1169
|
}, {
|
|
1056
1170
|
readonly type: "null";
|
|
1057
1171
|
}];
|
|
1172
|
+
readonly title: "Kvk Number";
|
|
1058
1173
|
};
|
|
1059
|
-
readonly
|
|
1174
|
+
readonly btw_number: {
|
|
1060
1175
|
readonly anyOf: readonly [{
|
|
1061
|
-
readonly
|
|
1176
|
+
readonly type: "string";
|
|
1062
1177
|
}, {
|
|
1063
1178
|
readonly type: "null";
|
|
1064
1179
|
}];
|
|
1180
|
+
readonly title: "Btw Number";
|
|
1065
1181
|
};
|
|
1066
1182
|
};
|
|
1067
1183
|
readonly type: "object";
|
|
1068
|
-
readonly
|
|
1069
|
-
readonly title: "ConfigurationLanguages";
|
|
1184
|
+
readonly title: "ConfigurationLegal";
|
|
1070
1185
|
};
|
|
1071
|
-
declare const $
|
|
1186
|
+
declare const $ConfigurationOrderStatusMails: {
|
|
1072
1187
|
readonly properties: {
|
|
1073
|
-
readonly
|
|
1188
|
+
readonly owner_notification_enabled: {
|
|
1189
|
+
readonly type: "boolean";
|
|
1190
|
+
readonly title: "Owner Notification Enabled";
|
|
1191
|
+
readonly default: true;
|
|
1192
|
+
};
|
|
1193
|
+
readonly owner_notification_email: {
|
|
1074
1194
|
readonly anyOf: readonly [{
|
|
1075
1195
|
readonly type: "string";
|
|
1196
|
+
readonly format: "email";
|
|
1076
1197
|
}, {
|
|
1077
1198
|
readonly type: "null";
|
|
1078
1199
|
}];
|
|
1079
|
-
readonly title: "
|
|
1200
|
+
readonly title: "Owner Notification Email";
|
|
1080
1201
|
};
|
|
1081
|
-
readonly
|
|
1202
|
+
readonly copy_enabled: {
|
|
1203
|
+
readonly type: "boolean";
|
|
1204
|
+
readonly title: "Copy Enabled";
|
|
1205
|
+
readonly default: false;
|
|
1206
|
+
};
|
|
1207
|
+
readonly copy_email: {
|
|
1082
1208
|
readonly anyOf: readonly [{
|
|
1083
1209
|
readonly type: "string";
|
|
1210
|
+
readonly format: "email";
|
|
1084
1211
|
}, {
|
|
1085
1212
|
readonly type: "null";
|
|
1086
1213
|
}];
|
|
1087
|
-
readonly title: "
|
|
1214
|
+
readonly title: "Copy Email";
|
|
1088
1215
|
};
|
|
1089
1216
|
};
|
|
1090
1217
|
readonly type: "object";
|
|
1091
|
-
readonly title: "
|
|
1218
|
+
readonly title: "ConfigurationOrderStatusMails";
|
|
1092
1219
|
};
|
|
1093
1220
|
declare const $ConfigurationShipping_Input: {
|
|
1094
1221
|
readonly properties: {
|
|
@@ -1107,6 +1234,7 @@ declare const $ConfigurationShipping_Input: {
|
|
|
1107
1234
|
readonly type: "number";
|
|
1108
1235
|
}, {
|
|
1109
1236
|
readonly type: "string";
|
|
1237
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1110
1238
|
}];
|
|
1111
1239
|
readonly title: "Fixed Fee";
|
|
1112
1240
|
readonly default: "0";
|
|
@@ -1126,6 +1254,7 @@ declare const $ConfigurationShipping_Input: {
|
|
|
1126
1254
|
readonly type: "number";
|
|
1127
1255
|
}, {
|
|
1128
1256
|
readonly type: "string";
|
|
1257
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1129
1258
|
}];
|
|
1130
1259
|
readonly title: "Free Shipping Above Amount";
|
|
1131
1260
|
readonly default: "0";
|
|
@@ -1149,7 +1278,7 @@ declare const $ConfigurationShipping_Output: {
|
|
|
1149
1278
|
readonly fixed_fee: {
|
|
1150
1279
|
readonly type: "number";
|
|
1151
1280
|
readonly title: "Fixed Fee";
|
|
1152
|
-
readonly default:
|
|
1281
|
+
readonly default: 0;
|
|
1153
1282
|
};
|
|
1154
1283
|
readonly vat_calculation_enabled: {
|
|
1155
1284
|
readonly type: "boolean";
|
|
@@ -1164,7 +1293,7 @@ declare const $ConfigurationShipping_Output: {
|
|
|
1164
1293
|
readonly free_shipping_above_amount: {
|
|
1165
1294
|
readonly type: "number";
|
|
1166
1295
|
readonly title: "Free Shipping Above Amount";
|
|
1167
|
-
readonly default:
|
|
1296
|
+
readonly default: 0;
|
|
1168
1297
|
};
|
|
1169
1298
|
};
|
|
1170
1299
|
readonly type: "object";
|
|
@@ -1206,7 +1335,7 @@ declare const $ConfigurationV1_Input: {
|
|
|
1206
1335
|
readonly default: 75;
|
|
1207
1336
|
};
|
|
1208
1337
|
readonly languages: {
|
|
1209
|
-
readonly $ref: "#/components/schemas/ConfigurationLanguages
|
|
1338
|
+
readonly $ref: "#/components/schemas/ConfigurationLanguages";
|
|
1210
1339
|
};
|
|
1211
1340
|
readonly google_analytics_id: {
|
|
1212
1341
|
readonly anyOf: readonly [{
|
|
@@ -1236,6 +1365,13 @@ declare const $ConfigurationV1_Input: {
|
|
|
1236
1365
|
readonly type: "null";
|
|
1237
1366
|
}];
|
|
1238
1367
|
};
|
|
1368
|
+
readonly order_status_mails: {
|
|
1369
|
+
readonly anyOf: readonly [{
|
|
1370
|
+
readonly $ref: "#/components/schemas/ConfigurationOrderStatusMails";
|
|
1371
|
+
}, {
|
|
1372
|
+
readonly type: "null";
|
|
1373
|
+
}];
|
|
1374
|
+
};
|
|
1239
1375
|
};
|
|
1240
1376
|
readonly type: "object";
|
|
1241
1377
|
readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
|
|
@@ -1277,7 +1413,7 @@ declare const $ConfigurationV1_Output: {
|
|
|
1277
1413
|
readonly default: 75;
|
|
1278
1414
|
};
|
|
1279
1415
|
readonly languages: {
|
|
1280
|
-
readonly $ref: "#/components/schemas/ConfigurationLanguages
|
|
1416
|
+
readonly $ref: "#/components/schemas/ConfigurationLanguages";
|
|
1281
1417
|
};
|
|
1282
1418
|
readonly google_analytics_id: {
|
|
1283
1419
|
readonly anyOf: readonly [{
|
|
@@ -1307,6 +1443,13 @@ declare const $ConfigurationV1_Output: {
|
|
|
1307
1443
|
readonly type: "null";
|
|
1308
1444
|
}];
|
|
1309
1445
|
};
|
|
1446
|
+
readonly order_status_mails: {
|
|
1447
|
+
readonly anyOf: readonly [{
|
|
1448
|
+
readonly $ref: "#/components/schemas/ConfigurationOrderStatusMails";
|
|
1449
|
+
}, {
|
|
1450
|
+
readonly type: "null";
|
|
1451
|
+
}];
|
|
1452
|
+
};
|
|
1310
1453
|
};
|
|
1311
1454
|
readonly type: "object";
|
|
1312
1455
|
readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
|
|
@@ -1712,6 +1855,28 @@ declare const $Msg: {
|
|
|
1712
1855
|
readonly required: readonly ["msg"];
|
|
1713
1856
|
readonly title: "Msg";
|
|
1714
1857
|
};
|
|
1858
|
+
declare const $MyShopsResponse: {
|
|
1859
|
+
readonly properties: {
|
|
1860
|
+
readonly shops: {
|
|
1861
|
+
readonly items: {
|
|
1862
|
+
readonly $ref: "#/components/schemas/ShopSchema";
|
|
1863
|
+
};
|
|
1864
|
+
readonly type: "array";
|
|
1865
|
+
readonly title: "Shops";
|
|
1866
|
+
};
|
|
1867
|
+
readonly is_admin: {
|
|
1868
|
+
readonly type: "boolean";
|
|
1869
|
+
readonly title: "Is Admin";
|
|
1870
|
+
};
|
|
1871
|
+
readonly can_write: {
|
|
1872
|
+
readonly type: "boolean";
|
|
1873
|
+
readonly title: "Can Write";
|
|
1874
|
+
};
|
|
1875
|
+
};
|
|
1876
|
+
readonly type: "object";
|
|
1877
|
+
readonly required: readonly ["shops", "is_admin", "can_write"];
|
|
1878
|
+
readonly title: "MyShopsResponse";
|
|
1879
|
+
};
|
|
1715
1880
|
declare const $OrderBase: {
|
|
1716
1881
|
readonly properties: {
|
|
1717
1882
|
readonly account_id: {
|
|
@@ -1728,6 +1893,7 @@ declare const $OrderBase: {
|
|
|
1728
1893
|
readonly type: "number";
|
|
1729
1894
|
}, {
|
|
1730
1895
|
readonly type: "string";
|
|
1896
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1731
1897
|
}, {
|
|
1732
1898
|
readonly type: "null";
|
|
1733
1899
|
}];
|
|
@@ -1762,6 +1928,7 @@ declare const $OrderBase: {
|
|
|
1762
1928
|
readonly type: "number";
|
|
1763
1929
|
}, {
|
|
1764
1930
|
readonly type: "string";
|
|
1931
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1765
1932
|
}, {
|
|
1766
1933
|
readonly type: "null";
|
|
1767
1934
|
}];
|
|
@@ -1788,6 +1955,7 @@ declare const $OrderCreate: {
|
|
|
1788
1955
|
readonly type: "number";
|
|
1789
1956
|
}, {
|
|
1790
1957
|
readonly type: "string";
|
|
1958
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1791
1959
|
}, {
|
|
1792
1960
|
readonly type: "null";
|
|
1793
1961
|
}];
|
|
@@ -1822,6 +1990,7 @@ declare const $OrderCreate: {
|
|
|
1822
1990
|
readonly type: "number";
|
|
1823
1991
|
}, {
|
|
1824
1992
|
readonly type: "string";
|
|
1993
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1825
1994
|
}, {
|
|
1826
1995
|
readonly type: "null";
|
|
1827
1996
|
}];
|
|
@@ -1959,6 +2128,7 @@ declare const $OrderItem_Input: {
|
|
|
1959
2128
|
readonly type: "number";
|
|
1960
2129
|
}, {
|
|
1961
2130
|
readonly type: "string";
|
|
2131
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
1962
2132
|
}];
|
|
1963
2133
|
readonly title: "Price";
|
|
1964
2134
|
};
|
|
@@ -2148,6 +2318,7 @@ declare const $OrderUpdate: {
|
|
|
2148
2318
|
readonly type: "number";
|
|
2149
2319
|
}, {
|
|
2150
2320
|
readonly type: "string";
|
|
2321
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2151
2322
|
}, {
|
|
2152
2323
|
readonly type: "null";
|
|
2153
2324
|
}];
|
|
@@ -2182,6 +2353,7 @@ declare const $OrderUpdate: {
|
|
|
2182
2353
|
readonly type: "number";
|
|
2183
2354
|
}, {
|
|
2184
2355
|
readonly type: "string";
|
|
2356
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2185
2357
|
}, {
|
|
2186
2358
|
readonly type: "null";
|
|
2187
2359
|
}];
|
|
@@ -2423,6 +2595,7 @@ declare const $ProductCreate: {
|
|
|
2423
2595
|
readonly type: "number";
|
|
2424
2596
|
}, {
|
|
2425
2597
|
readonly type: "string";
|
|
2598
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2426
2599
|
}, {
|
|
2427
2600
|
readonly type: "null";
|
|
2428
2601
|
}];
|
|
@@ -2433,6 +2606,7 @@ declare const $ProductCreate: {
|
|
|
2433
2606
|
readonly type: "number";
|
|
2434
2607
|
}, {
|
|
2435
2608
|
readonly type: "string";
|
|
2609
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2436
2610
|
}, {
|
|
2437
2611
|
readonly type: "null";
|
|
2438
2612
|
}];
|
|
@@ -2443,6 +2617,7 @@ declare const $ProductCreate: {
|
|
|
2443
2617
|
readonly type: "number";
|
|
2444
2618
|
}, {
|
|
2445
2619
|
readonly type: "string";
|
|
2620
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2446
2621
|
}, {
|
|
2447
2622
|
readonly type: "null";
|
|
2448
2623
|
}];
|
|
@@ -2481,6 +2656,7 @@ declare const $ProductCreate: {
|
|
|
2481
2656
|
readonly type: "number";
|
|
2482
2657
|
}, {
|
|
2483
2658
|
readonly type: "string";
|
|
2659
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2484
2660
|
}, {
|
|
2485
2661
|
readonly type: "null";
|
|
2486
2662
|
}];
|
|
@@ -2523,6 +2699,7 @@ declare const $ProductCreate: {
|
|
|
2523
2699
|
};
|
|
2524
2700
|
readonly image_1: {
|
|
2525
2701
|
readonly anyOf: readonly [{
|
|
2702
|
+
readonly additionalProperties: true;
|
|
2526
2703
|
readonly type: "object";
|
|
2527
2704
|
}, {
|
|
2528
2705
|
readonly type: "string";
|
|
@@ -2533,6 +2710,7 @@ declare const $ProductCreate: {
|
|
|
2533
2710
|
};
|
|
2534
2711
|
readonly image_2: {
|
|
2535
2712
|
readonly anyOf: readonly [{
|
|
2713
|
+
readonly additionalProperties: true;
|
|
2536
2714
|
readonly type: "object";
|
|
2537
2715
|
}, {
|
|
2538
2716
|
readonly type: "string";
|
|
@@ -2543,6 +2721,7 @@ declare const $ProductCreate: {
|
|
|
2543
2721
|
};
|
|
2544
2722
|
readonly image_3: {
|
|
2545
2723
|
readonly anyOf: readonly [{
|
|
2724
|
+
readonly additionalProperties: true;
|
|
2546
2725
|
readonly type: "object";
|
|
2547
2726
|
}, {
|
|
2548
2727
|
readonly type: "string";
|
|
@@ -2553,6 +2732,7 @@ declare const $ProductCreate: {
|
|
|
2553
2732
|
};
|
|
2554
2733
|
readonly image_4: {
|
|
2555
2734
|
readonly anyOf: readonly [{
|
|
2735
|
+
readonly additionalProperties: true;
|
|
2556
2736
|
readonly type: "object";
|
|
2557
2737
|
}, {
|
|
2558
2738
|
readonly type: "string";
|
|
@@ -2563,6 +2743,7 @@ declare const $ProductCreate: {
|
|
|
2563
2743
|
};
|
|
2564
2744
|
readonly image_5: {
|
|
2565
2745
|
readonly anyOf: readonly [{
|
|
2746
|
+
readonly additionalProperties: true;
|
|
2566
2747
|
readonly type: "object";
|
|
2567
2748
|
}, {
|
|
2568
2749
|
readonly type: "string";
|
|
@@ -2573,6 +2754,7 @@ declare const $ProductCreate: {
|
|
|
2573
2754
|
};
|
|
2574
2755
|
readonly image_6: {
|
|
2575
2756
|
readonly anyOf: readonly [{
|
|
2757
|
+
readonly additionalProperties: true;
|
|
2576
2758
|
readonly type: "object";
|
|
2577
2759
|
}, {
|
|
2578
2760
|
readonly type: "string";
|
|
@@ -2941,6 +3123,7 @@ declare const $ProductUpdate: {
|
|
|
2941
3123
|
readonly type: "number";
|
|
2942
3124
|
}, {
|
|
2943
3125
|
readonly type: "string";
|
|
3126
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2944
3127
|
}, {
|
|
2945
3128
|
readonly type: "null";
|
|
2946
3129
|
}];
|
|
@@ -2951,6 +3134,7 @@ declare const $ProductUpdate: {
|
|
|
2951
3134
|
readonly type: "number";
|
|
2952
3135
|
}, {
|
|
2953
3136
|
readonly type: "string";
|
|
3137
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2954
3138
|
}, {
|
|
2955
3139
|
readonly type: "null";
|
|
2956
3140
|
}];
|
|
@@ -2961,6 +3145,7 @@ declare const $ProductUpdate: {
|
|
|
2961
3145
|
readonly type: "number";
|
|
2962
3146
|
}, {
|
|
2963
3147
|
readonly type: "string";
|
|
3148
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
2964
3149
|
}, {
|
|
2965
3150
|
readonly type: "null";
|
|
2966
3151
|
}];
|
|
@@ -2999,6 +3184,7 @@ declare const $ProductUpdate: {
|
|
|
2999
3184
|
readonly type: "number";
|
|
3000
3185
|
}, {
|
|
3001
3186
|
readonly type: "string";
|
|
3187
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3002
3188
|
}, {
|
|
3003
3189
|
readonly type: "null";
|
|
3004
3190
|
}];
|
|
@@ -3041,6 +3227,7 @@ declare const $ProductUpdate: {
|
|
|
3041
3227
|
};
|
|
3042
3228
|
readonly image_1: {
|
|
3043
3229
|
readonly anyOf: readonly [{
|
|
3230
|
+
readonly additionalProperties: true;
|
|
3044
3231
|
readonly type: "object";
|
|
3045
3232
|
}, {
|
|
3046
3233
|
readonly type: "string";
|
|
@@ -3051,6 +3238,7 @@ declare const $ProductUpdate: {
|
|
|
3051
3238
|
};
|
|
3052
3239
|
readonly image_2: {
|
|
3053
3240
|
readonly anyOf: readonly [{
|
|
3241
|
+
readonly additionalProperties: true;
|
|
3054
3242
|
readonly type: "object";
|
|
3055
3243
|
}, {
|
|
3056
3244
|
readonly type: "string";
|
|
@@ -3061,6 +3249,7 @@ declare const $ProductUpdate: {
|
|
|
3061
3249
|
};
|
|
3062
3250
|
readonly image_3: {
|
|
3063
3251
|
readonly anyOf: readonly [{
|
|
3252
|
+
readonly additionalProperties: true;
|
|
3064
3253
|
readonly type: "object";
|
|
3065
3254
|
}, {
|
|
3066
3255
|
readonly type: "string";
|
|
@@ -3071,6 +3260,7 @@ declare const $ProductUpdate: {
|
|
|
3071
3260
|
};
|
|
3072
3261
|
readonly image_4: {
|
|
3073
3262
|
readonly anyOf: readonly [{
|
|
3263
|
+
readonly additionalProperties: true;
|
|
3074
3264
|
readonly type: "object";
|
|
3075
3265
|
}, {
|
|
3076
3266
|
readonly type: "string";
|
|
@@ -3081,6 +3271,7 @@ declare const $ProductUpdate: {
|
|
|
3081
3271
|
};
|
|
3082
3272
|
readonly image_5: {
|
|
3083
3273
|
readonly anyOf: readonly [{
|
|
3274
|
+
readonly additionalProperties: true;
|
|
3084
3275
|
readonly type: "object";
|
|
3085
3276
|
}, {
|
|
3086
3277
|
readonly type: "string";
|
|
@@ -3091,6 +3282,7 @@ declare const $ProductUpdate: {
|
|
|
3091
3282
|
};
|
|
3092
3283
|
readonly image_6: {
|
|
3093
3284
|
readonly anyOf: readonly [{
|
|
3285
|
+
readonly additionalProperties: true;
|
|
3094
3286
|
readonly type: "object";
|
|
3095
3287
|
}, {
|
|
3096
3288
|
readonly type: "string";
|
|
@@ -3244,6 +3436,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3244
3436
|
};
|
|
3245
3437
|
readonly image_1: {
|
|
3246
3438
|
readonly anyOf: readonly [{
|
|
3439
|
+
readonly additionalProperties: true;
|
|
3247
3440
|
readonly type: "object";
|
|
3248
3441
|
}, {
|
|
3249
3442
|
readonly type: "string";
|
|
@@ -3254,6 +3447,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3254
3447
|
};
|
|
3255
3448
|
readonly image_2: {
|
|
3256
3449
|
readonly anyOf: readonly [{
|
|
3450
|
+
readonly additionalProperties: true;
|
|
3257
3451
|
readonly type: "object";
|
|
3258
3452
|
}, {
|
|
3259
3453
|
readonly type: "string";
|
|
@@ -3264,6 +3458,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3264
3458
|
};
|
|
3265
3459
|
readonly image_3: {
|
|
3266
3460
|
readonly anyOf: readonly [{
|
|
3461
|
+
readonly additionalProperties: true;
|
|
3267
3462
|
readonly type: "object";
|
|
3268
3463
|
}, {
|
|
3269
3464
|
readonly type: "string";
|
|
@@ -3274,6 +3469,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3274
3469
|
};
|
|
3275
3470
|
readonly image_4: {
|
|
3276
3471
|
readonly anyOf: readonly [{
|
|
3472
|
+
readonly additionalProperties: true;
|
|
3277
3473
|
readonly type: "object";
|
|
3278
3474
|
}, {
|
|
3279
3475
|
readonly type: "string";
|
|
@@ -3284,6 +3480,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3284
3480
|
};
|
|
3285
3481
|
readonly image_5: {
|
|
3286
3482
|
readonly anyOf: readonly [{
|
|
3483
|
+
readonly additionalProperties: true;
|
|
3287
3484
|
readonly type: "object";
|
|
3288
3485
|
}, {
|
|
3289
3486
|
readonly type: "string";
|
|
@@ -3294,6 +3491,7 @@ declare const $ProductWithDefaultPrice: {
|
|
|
3294
3491
|
};
|
|
3295
3492
|
readonly image_6: {
|
|
3296
3493
|
readonly anyOf: readonly [{
|
|
3494
|
+
readonly additionalProperties: true;
|
|
3297
3495
|
readonly type: "object";
|
|
3298
3496
|
}, {
|
|
3299
3497
|
readonly type: "string";
|
|
@@ -3455,6 +3653,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3455
3653
|
};
|
|
3456
3654
|
readonly image_1: {
|
|
3457
3655
|
readonly anyOf: readonly [{
|
|
3656
|
+
readonly additionalProperties: true;
|
|
3458
3657
|
readonly type: "object";
|
|
3459
3658
|
}, {
|
|
3460
3659
|
readonly type: "string";
|
|
@@ -3465,6 +3664,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3465
3664
|
};
|
|
3466
3665
|
readonly image_2: {
|
|
3467
3666
|
readonly anyOf: readonly [{
|
|
3667
|
+
readonly additionalProperties: true;
|
|
3468
3668
|
readonly type: "object";
|
|
3469
3669
|
}, {
|
|
3470
3670
|
readonly type: "string";
|
|
@@ -3475,6 +3675,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3475
3675
|
};
|
|
3476
3676
|
readonly image_3: {
|
|
3477
3677
|
readonly anyOf: readonly [{
|
|
3678
|
+
readonly additionalProperties: true;
|
|
3478
3679
|
readonly type: "object";
|
|
3479
3680
|
}, {
|
|
3480
3681
|
readonly type: "string";
|
|
@@ -3485,6 +3686,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3485
3686
|
};
|
|
3486
3687
|
readonly image_4: {
|
|
3487
3688
|
readonly anyOf: readonly [{
|
|
3689
|
+
readonly additionalProperties: true;
|
|
3488
3690
|
readonly type: "object";
|
|
3489
3691
|
}, {
|
|
3490
3692
|
readonly type: "string";
|
|
@@ -3495,6 +3697,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3495
3697
|
};
|
|
3496
3698
|
readonly image_5: {
|
|
3497
3699
|
readonly anyOf: readonly [{
|
|
3700
|
+
readonly additionalProperties: true;
|
|
3498
3701
|
readonly type: "object";
|
|
3499
3702
|
}, {
|
|
3500
3703
|
readonly type: "string";
|
|
@@ -3505,6 +3708,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3505
3708
|
};
|
|
3506
3709
|
readonly image_6: {
|
|
3507
3710
|
readonly anyOf: readonly [{
|
|
3711
|
+
readonly additionalProperties: true;
|
|
3508
3712
|
readonly type: "object";
|
|
3509
3713
|
}, {
|
|
3510
3714
|
readonly type: "string";
|
|
@@ -3546,6 +3750,7 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3546
3750
|
};
|
|
3547
3751
|
readonly prices: {
|
|
3548
3752
|
readonly items: {
|
|
3753
|
+
readonly additionalProperties: true;
|
|
3549
3754
|
readonly type: "object";
|
|
3550
3755
|
};
|
|
3551
3756
|
readonly type: "array";
|
|
@@ -3749,6 +3954,7 @@ declare const $ShopCreate: {
|
|
|
3749
3954
|
readonly type: "number";
|
|
3750
3955
|
}, {
|
|
3751
3956
|
readonly type: "string";
|
|
3957
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3752
3958
|
}];
|
|
3753
3959
|
readonly title: "Vat Standard";
|
|
3754
3960
|
};
|
|
@@ -3757,6 +3963,7 @@ declare const $ShopCreate: {
|
|
|
3757
3963
|
readonly type: "number";
|
|
3758
3964
|
}, {
|
|
3759
3965
|
readonly type: "string";
|
|
3966
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3760
3967
|
}];
|
|
3761
3968
|
readonly title: "Vat Lower 1";
|
|
3762
3969
|
};
|
|
@@ -3765,6 +3972,7 @@ declare const $ShopCreate: {
|
|
|
3765
3972
|
readonly type: "number";
|
|
3766
3973
|
}, {
|
|
3767
3974
|
readonly type: "string";
|
|
3975
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3768
3976
|
}];
|
|
3769
3977
|
readonly title: "Vat Lower 2";
|
|
3770
3978
|
};
|
|
@@ -3773,6 +3981,7 @@ declare const $ShopCreate: {
|
|
|
3773
3981
|
readonly type: "number";
|
|
3774
3982
|
}, {
|
|
3775
3983
|
readonly type: "string";
|
|
3984
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3776
3985
|
}];
|
|
3777
3986
|
readonly title: "Vat Lower 3";
|
|
3778
3987
|
};
|
|
@@ -3781,6 +3990,7 @@ declare const $ShopCreate: {
|
|
|
3781
3990
|
readonly type: "number";
|
|
3782
3991
|
}, {
|
|
3783
3992
|
readonly type: "string";
|
|
3993
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3784
3994
|
}];
|
|
3785
3995
|
readonly title: "Vat Special";
|
|
3786
3996
|
};
|
|
@@ -3789,6 +3999,7 @@ declare const $ShopCreate: {
|
|
|
3789
3999
|
readonly type: "number";
|
|
3790
4000
|
}, {
|
|
3791
4001
|
readonly type: "string";
|
|
4002
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3792
4003
|
}];
|
|
3793
4004
|
readonly title: "Vat Zero";
|
|
3794
4005
|
};
|
|
@@ -3969,6 +4180,7 @@ declare const $ShopUpdate: {
|
|
|
3969
4180
|
readonly type: "number";
|
|
3970
4181
|
}, {
|
|
3971
4182
|
readonly type: "string";
|
|
4183
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3972
4184
|
}];
|
|
3973
4185
|
readonly title: "Vat Standard";
|
|
3974
4186
|
};
|
|
@@ -3977,6 +4189,7 @@ declare const $ShopUpdate: {
|
|
|
3977
4189
|
readonly type: "number";
|
|
3978
4190
|
}, {
|
|
3979
4191
|
readonly type: "string";
|
|
4192
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3980
4193
|
}];
|
|
3981
4194
|
readonly title: "Vat Lower 1";
|
|
3982
4195
|
};
|
|
@@ -3985,6 +4198,7 @@ declare const $ShopUpdate: {
|
|
|
3985
4198
|
readonly type: "number";
|
|
3986
4199
|
}, {
|
|
3987
4200
|
readonly type: "string";
|
|
4201
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3988
4202
|
}];
|
|
3989
4203
|
readonly title: "Vat Lower 2";
|
|
3990
4204
|
};
|
|
@@ -3993,6 +4207,7 @@ declare const $ShopUpdate: {
|
|
|
3993
4207
|
readonly type: "number";
|
|
3994
4208
|
}, {
|
|
3995
4209
|
readonly type: "string";
|
|
4210
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
3996
4211
|
}];
|
|
3997
4212
|
readonly title: "Vat Lower 3";
|
|
3998
4213
|
};
|
|
@@ -4001,6 +4216,7 @@ declare const $ShopUpdate: {
|
|
|
4001
4216
|
readonly type: "number";
|
|
4002
4217
|
}, {
|
|
4003
4218
|
readonly type: "string";
|
|
4219
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
4004
4220
|
}];
|
|
4005
4221
|
readonly title: "Vat Special";
|
|
4006
4222
|
};
|
|
@@ -4009,6 +4225,7 @@ declare const $ShopUpdate: {
|
|
|
4009
4225
|
readonly type: "number";
|
|
4010
4226
|
}, {
|
|
4011
4227
|
readonly type: "string";
|
|
4228
|
+
readonly pattern: "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$";
|
|
4012
4229
|
}];
|
|
4013
4230
|
readonly title: "Vat Zero";
|
|
4014
4231
|
};
|
|
@@ -4114,6 +4331,7 @@ declare const $SyncStripeResponse: {
|
|
|
4114
4331
|
readonly title: "Stripe Synced At";
|
|
4115
4332
|
};
|
|
4116
4333
|
readonly stripe_customer: {
|
|
4334
|
+
readonly additionalProperties: true;
|
|
4117
4335
|
readonly type: "object";
|
|
4118
4336
|
readonly title: "Stripe Customer";
|
|
4119
4337
|
};
|
|
@@ -4459,6 +4677,29 @@ type AdminAccountSchema = {
|
|
|
4459
4677
|
stripe_customer_id?: string | null;
|
|
4460
4678
|
stripe_synced_at?: string | null;
|
|
4461
4679
|
};
|
|
4680
|
+
type ApiKeyCreate = {
|
|
4681
|
+
name: string;
|
|
4682
|
+
};
|
|
4683
|
+
/**
|
|
4684
|
+
* Response from minting a key. ``plaintext`` is shown ONCE — never again.
|
|
4685
|
+
*/
|
|
4686
|
+
type ApiKeyCreated = {
|
|
4687
|
+
id: string;
|
|
4688
|
+
name: string;
|
|
4689
|
+
prefix: string;
|
|
4690
|
+
created_at: string;
|
|
4691
|
+
last_used_at?: string | null;
|
|
4692
|
+
revoked_at?: string | null;
|
|
4693
|
+
plaintext: string;
|
|
4694
|
+
};
|
|
4695
|
+
type ApiKeyRead = {
|
|
4696
|
+
id: string;
|
|
4697
|
+
name: string;
|
|
4698
|
+
prefix: string;
|
|
4699
|
+
created_at: string;
|
|
4700
|
+
last_used_at?: string | null;
|
|
4701
|
+
revoked_at?: string | null;
|
|
4702
|
+
};
|
|
4462
4703
|
type AttributeCreate = {
|
|
4463
4704
|
name: string;
|
|
4464
4705
|
unit?: string | null;
|
|
@@ -4633,12 +4874,7 @@ type ConfigurationLanguageFields = {
|
|
|
4633
4874
|
menu_items: ConfigurationLanguageFieldMenuItems;
|
|
4634
4875
|
static_texts: ConfigurationLanguageFieldStaticTexts;
|
|
4635
4876
|
};
|
|
4636
|
-
type
|
|
4637
|
-
main: ConfigurationLanguageFields;
|
|
4638
|
-
alt1?: ConfigurationLanguageFields | null;
|
|
4639
|
-
alt2?: ConfigurationLanguageFields | null;
|
|
4640
|
-
};
|
|
4641
|
-
type ConfigurationLanguages_Output = {
|
|
4877
|
+
type ConfigurationLanguages = {
|
|
4642
4878
|
main: ConfigurationLanguageFields;
|
|
4643
4879
|
alt1?: ConfigurationLanguageFields | null;
|
|
4644
4880
|
alt2?: ConfigurationLanguageFields | null;
|
|
@@ -4647,6 +4883,12 @@ type ConfigurationLegal = {
|
|
|
4647
4883
|
kvk_number?: string | null;
|
|
4648
4884
|
btw_number?: string | null;
|
|
4649
4885
|
};
|
|
4886
|
+
type ConfigurationOrderStatusMails = {
|
|
4887
|
+
owner_notification_enabled?: boolean;
|
|
4888
|
+
owner_notification_email?: string | null;
|
|
4889
|
+
copy_enabled?: boolean;
|
|
4890
|
+
copy_email?: string | null;
|
|
4891
|
+
};
|
|
4650
4892
|
type ConfigurationShipping_Input = {
|
|
4651
4893
|
enabled?: boolean;
|
|
4652
4894
|
method?: string;
|
|
@@ -4670,12 +4912,13 @@ type ConfigurationV1_Input = {
|
|
|
4670
4912
|
alt1_banner?: string | null;
|
|
4671
4913
|
alt2_banner?: string | null;
|
|
4672
4914
|
gradient_percentage?: number;
|
|
4673
|
-
languages:
|
|
4915
|
+
languages: ConfigurationLanguages;
|
|
4674
4916
|
google_analytics_id?: string | null;
|
|
4675
4917
|
contact: ConfigurationContact;
|
|
4676
4918
|
toggles: Toggles;
|
|
4677
4919
|
legal?: ConfigurationLegal | null;
|
|
4678
4920
|
shipping?: ConfigurationShipping_Input | null;
|
|
4921
|
+
order_status_mails?: ConfigurationOrderStatusMails | null;
|
|
4679
4922
|
};
|
|
4680
4923
|
type ConfigurationV1_Output = {
|
|
4681
4924
|
short_shop_name: string;
|
|
@@ -4684,12 +4927,13 @@ type ConfigurationV1_Output = {
|
|
|
4684
4927
|
alt1_banner?: string | null;
|
|
4685
4928
|
alt2_banner?: string | null;
|
|
4686
4929
|
gradient_percentage?: number;
|
|
4687
|
-
languages:
|
|
4930
|
+
languages: ConfigurationLanguages;
|
|
4688
4931
|
google_analytics_id?: string | null;
|
|
4689
4932
|
contact: ConfigurationContact;
|
|
4690
4933
|
toggles: Toggles;
|
|
4691
4934
|
legal?: ConfigurationLegal | null;
|
|
4692
4935
|
shipping?: ConfigurationShipping_Output | null;
|
|
4936
|
+
order_status_mails?: ConfigurationOrderStatusMails | null;
|
|
4693
4937
|
};
|
|
4694
4938
|
type DefaultPrice = {
|
|
4695
4939
|
id?: string | null;
|
|
@@ -4776,6 +5020,11 @@ type LinkStripeBody = {
|
|
|
4776
5020
|
type Msg = {
|
|
4777
5021
|
msg: string;
|
|
4778
5022
|
};
|
|
5023
|
+
type MyShopsResponse = {
|
|
5024
|
+
shops: Array<ShopSchema>;
|
|
5025
|
+
is_admin: boolean;
|
|
5026
|
+
can_write: boolean;
|
|
5027
|
+
};
|
|
4779
5028
|
type OrderBase = {
|
|
4780
5029
|
account_id?: string | null;
|
|
4781
5030
|
total: number | string | null;
|
|
@@ -5468,6 +5717,7 @@ type CreateShopsPostData = {
|
|
|
5468
5717
|
requestBody: ShopCreate;
|
|
5469
5718
|
};
|
|
5470
5719
|
type CreateShopsPostResponse = ShopSchema;
|
|
5720
|
+
type ListMyShopsResponse = MyShopsResponse;
|
|
5471
5721
|
type GetCacheStatusShopsCacheStatusIdGetData = {
|
|
5472
5722
|
id: string;
|
|
5473
5723
|
};
|
|
@@ -5602,7 +5852,7 @@ type CalculateShippingCalculatePostData = {
|
|
|
5602
5852
|
requestBody: ShippingCalculateRequest;
|
|
5603
5853
|
};
|
|
5604
5854
|
type CalculateShippingCalculatePostResponse = ShippingCalculation;
|
|
5605
|
-
type
|
|
5855
|
+
type ListCategoriesData = {
|
|
5606
5856
|
/**
|
|
5607
5857
|
* 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
5858
|
*/
|
|
@@ -5614,42 +5864,50 @@ type GetMultiShopsShopIdCategoriesGetData = {
|
|
|
5614
5864
|
* 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
5865
|
*/
|
|
5616
5866
|
sort?: Array<string>;
|
|
5867
|
+
xApiKey?: string | null;
|
|
5617
5868
|
};
|
|
5618
|
-
type
|
|
5619
|
-
type
|
|
5869
|
+
type ListCategoriesResponse = Array<CategorySchema>;
|
|
5870
|
+
type CreateCategoryData = {
|
|
5620
5871
|
requestBody: CategoryCreate;
|
|
5621
5872
|
shopId: string;
|
|
5873
|
+
xApiKey?: string | null;
|
|
5622
5874
|
};
|
|
5623
|
-
type
|
|
5624
|
-
type
|
|
5875
|
+
type CreateCategoryResponse = unknown;
|
|
5876
|
+
type GetCategoryData = {
|
|
5625
5877
|
categoryId: string;
|
|
5626
5878
|
shopId: string;
|
|
5879
|
+
xApiKey?: string | null;
|
|
5627
5880
|
};
|
|
5628
|
-
type
|
|
5629
|
-
type
|
|
5881
|
+
type GetCategoryResponse = CategorySchema;
|
|
5882
|
+
type UpdateCategoryData = {
|
|
5630
5883
|
categoryId: string;
|
|
5631
5884
|
requestBody: CategoryUpdate;
|
|
5632
5885
|
shopId: string;
|
|
5886
|
+
xApiKey?: string | null;
|
|
5633
5887
|
};
|
|
5634
|
-
type
|
|
5635
|
-
type
|
|
5888
|
+
type UpdateCategoryResponse = unknown;
|
|
5889
|
+
type DeleteCategoryData = {
|
|
5636
5890
|
categoryId: string;
|
|
5637
5891
|
shopId: string;
|
|
5892
|
+
xApiKey?: string | null;
|
|
5638
5893
|
};
|
|
5639
|
-
type
|
|
5894
|
+
type DeleteCategoryResponse = void;
|
|
5640
5895
|
type GetByNameShopsShopIdCategoriesNameNameGetData = {
|
|
5641
5896
|
name: string;
|
|
5642
5897
|
shopId: string;
|
|
5898
|
+
xApiKey?: string | null;
|
|
5643
5899
|
};
|
|
5644
5900
|
type GetByNameShopsShopIdCategoriesNameNameGetResponse = CategorySchema;
|
|
5645
5901
|
type SwapShopsShopIdCategoriesCategoryIdSwapPutData = {
|
|
5646
5902
|
categoryId: string;
|
|
5647
5903
|
moveUp: boolean;
|
|
5648
5904
|
shopId: string;
|
|
5905
|
+
xApiKey?: string | null;
|
|
5649
5906
|
};
|
|
5650
5907
|
type SwapShopsShopIdCategoriesCategoryIdSwapPutResponse = unknown;
|
|
5651
5908
|
type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetData = {
|
|
5652
5909
|
categoryId: string;
|
|
5910
|
+
optionId?: Array<string>;
|
|
5653
5911
|
shopId: string;
|
|
5654
5912
|
};
|
|
5655
5913
|
type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetResponse = Array<AvailableAttributeSchema>;
|
|
@@ -5704,7 +5962,7 @@ type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData = {
|
|
|
5704
5962
|
shopId: string;
|
|
5705
5963
|
};
|
|
5706
5964
|
type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetResponse = unknown;
|
|
5707
|
-
type
|
|
5965
|
+
type ListProductsData = {
|
|
5708
5966
|
/**
|
|
5709
5967
|
* 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
5968
|
*/
|
|
@@ -5720,13 +5978,15 @@ type GetMultiShopsShopIdProductsGetData = {
|
|
|
5720
5978
|
* Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
|
|
5721
5979
|
*/
|
|
5722
5980
|
stockStatus?: 'in_stock' | 'out_of_stock' | 'all';
|
|
5981
|
+
xApiKey?: string | null;
|
|
5723
5982
|
};
|
|
5724
|
-
type
|
|
5725
|
-
type
|
|
5983
|
+
type ListProductsResponse = Array<ProductWithDefaultPrice>;
|
|
5984
|
+
type CreateProductData = {
|
|
5726
5985
|
requestBody: ProductCreate;
|
|
5727
5986
|
shopId: string;
|
|
5987
|
+
xApiKey?: string | null;
|
|
5728
5988
|
};
|
|
5729
|
-
type
|
|
5989
|
+
type CreateProductResponse = unknown;
|
|
5730
5990
|
type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData = {
|
|
5731
5991
|
attributeId?: string;
|
|
5732
5992
|
attributeName?: string;
|
|
@@ -5747,28 +6007,32 @@ type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData = {
|
|
|
5747
6007
|
* Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
|
|
5748
6008
|
*/
|
|
5749
6009
|
stockStatus?: 'in_stock' | 'out_of_stock' | 'all';
|
|
6010
|
+
xApiKey?: string | null;
|
|
5750
6011
|
};
|
|
5751
6012
|
type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse = Array<ProductWithAttributes>;
|
|
5752
|
-
type
|
|
6013
|
+
type UpdateProductData = {
|
|
5753
6014
|
productId: string;
|
|
5754
6015
|
requestBody: ProductUpdate;
|
|
5755
6016
|
shopId: string;
|
|
6017
|
+
xApiKey?: string | null;
|
|
5756
6018
|
};
|
|
5757
|
-
type
|
|
5758
|
-
type
|
|
6019
|
+
type UpdateProductResponse = unknown;
|
|
6020
|
+
type DeleteProductData = {
|
|
5759
6021
|
productId: string;
|
|
5760
6022
|
shopId: string;
|
|
6023
|
+
xApiKey?: string | null;
|
|
5761
6024
|
};
|
|
5762
|
-
type
|
|
5763
|
-
type
|
|
6025
|
+
type DeleteProductResponse = void;
|
|
6026
|
+
type GetProductData = {
|
|
5764
6027
|
productId: string;
|
|
5765
6028
|
shopId: string;
|
|
5766
6029
|
};
|
|
5767
|
-
type
|
|
6030
|
+
type GetProductResponse = ProductWithDetailsAndPrices;
|
|
5768
6031
|
type SwapShopsShopIdProductsProductIdSwapPutData = {
|
|
5769
6032
|
moveUp: boolean;
|
|
5770
6033
|
productId: string;
|
|
5771
6034
|
shopId: string;
|
|
6035
|
+
xApiKey?: string | null;
|
|
5772
6036
|
};
|
|
5773
6037
|
type SwapShopsShopIdProductsProductIdSwapPutResponse = unknown;
|
|
5774
6038
|
type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData = {
|
|
@@ -5811,7 +6075,7 @@ type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData = {
|
|
|
5811
6075
|
productToTagId: string;
|
|
5812
6076
|
};
|
|
5813
6077
|
type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse = void;
|
|
5814
|
-
type
|
|
6078
|
+
type ListTagsData = {
|
|
5815
6079
|
/**
|
|
5816
6080
|
* 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.
|
|
5817
6081
|
*/
|
|
@@ -5823,37 +6087,44 @@ type GetMultiShopsShopIdTagsGetData = {
|
|
|
5823
6087
|
* 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.
|
|
5824
6088
|
*/
|
|
5825
6089
|
sort?: Array<string>;
|
|
6090
|
+
xApiKey?: string | null;
|
|
5826
6091
|
};
|
|
5827
|
-
type
|
|
5828
|
-
type
|
|
6092
|
+
type ListTagsResponse = Array<TagSchema>;
|
|
6093
|
+
type CreateTagData = {
|
|
5829
6094
|
requestBody: TagCreate;
|
|
5830
6095
|
shopId: string;
|
|
6096
|
+
xApiKey?: string | null;
|
|
5831
6097
|
};
|
|
5832
|
-
type
|
|
5833
|
-
type
|
|
6098
|
+
type CreateTagResponse = unknown;
|
|
6099
|
+
type GetTagData = {
|
|
5834
6100
|
shopId: string;
|
|
5835
6101
|
tagId: string;
|
|
6102
|
+
xApiKey?: string | null;
|
|
5836
6103
|
};
|
|
5837
|
-
type
|
|
5838
|
-
type
|
|
6104
|
+
type GetTagResponse = TagSchema;
|
|
6105
|
+
type UpdateTagData = {
|
|
5839
6106
|
requestBody: TagUpdate;
|
|
5840
6107
|
shopId: string;
|
|
5841
6108
|
tagId: string;
|
|
6109
|
+
xApiKey?: string | null;
|
|
5842
6110
|
};
|
|
5843
|
-
type
|
|
5844
|
-
type
|
|
6111
|
+
type UpdateTagResponse = unknown;
|
|
6112
|
+
type DeleteTagData = {
|
|
5845
6113
|
shopId: string;
|
|
5846
6114
|
tagId: string;
|
|
6115
|
+
xApiKey?: string | null;
|
|
5847
6116
|
};
|
|
5848
|
-
type
|
|
6117
|
+
type DeleteTagResponse = void;
|
|
5849
6118
|
type GetByNameShopsShopIdTagsNameNameGetData = {
|
|
5850
6119
|
name: string;
|
|
5851
6120
|
shopId: string;
|
|
6121
|
+
xApiKey?: string | null;
|
|
5852
6122
|
};
|
|
5853
6123
|
type GetByNameShopsShopIdTagsNameNameGetResponse = TagSchema;
|
|
5854
6124
|
type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetData = {
|
|
5855
6125
|
attributeId: string;
|
|
5856
6126
|
shopId: string;
|
|
6127
|
+
xApiKey?: string | null;
|
|
5857
6128
|
};
|
|
5858
6129
|
type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetResponse = AttributeWithOptionsSchema;
|
|
5859
6130
|
type GetWithOptionsShopsShopIdAttributesWithOptionsGetData = {
|
|
@@ -5868,9 +6139,10 @@ type GetWithOptionsShopsShopIdAttributesWithOptionsGetData = {
|
|
|
5868
6139
|
* 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.
|
|
5869
6140
|
*/
|
|
5870
6141
|
sort?: Array<string>;
|
|
6142
|
+
xApiKey?: string | null;
|
|
5871
6143
|
};
|
|
5872
6144
|
type GetWithOptionsShopsShopIdAttributesWithOptionsGetResponse = Array<AttributeWithOptionsSchema>;
|
|
5873
|
-
type
|
|
6145
|
+
type ListAttributesData = {
|
|
5874
6146
|
/**
|
|
5875
6147
|
* 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.
|
|
5876
6148
|
*/
|
|
@@ -5882,39 +6154,60 @@ type GetMultiShopsShopIdAttributesGetData = {
|
|
|
5882
6154
|
* 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.
|
|
5883
6155
|
*/
|
|
5884
6156
|
sort?: Array<string>;
|
|
6157
|
+
xApiKey?: string | null;
|
|
5885
6158
|
};
|
|
5886
|
-
type
|
|
5887
|
-
type
|
|
6159
|
+
type ListAttributesResponse = Array<AttributeSchema>;
|
|
6160
|
+
type CreateAttributeData = {
|
|
5888
6161
|
requestBody: AttributeCreate;
|
|
5889
6162
|
shopId: string;
|
|
6163
|
+
xApiKey?: string | null;
|
|
5890
6164
|
};
|
|
5891
|
-
type
|
|
6165
|
+
type CreateAttributeResponse = AttributeSchema;
|
|
5892
6166
|
type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetData = {
|
|
5893
6167
|
attributeId: string;
|
|
5894
6168
|
shopId: string;
|
|
6169
|
+
xApiKey?: string | null;
|
|
5895
6170
|
};
|
|
5896
6171
|
type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetResponse = AttributeWithOptionsSchema;
|
|
5897
|
-
type
|
|
6172
|
+
type GetAttributeData = {
|
|
5898
6173
|
attributeId: string;
|
|
5899
6174
|
shopId: string;
|
|
6175
|
+
xApiKey?: string | null;
|
|
5900
6176
|
};
|
|
5901
|
-
type
|
|
6177
|
+
type GetAttributeResponse = AttributeSchema;
|
|
5902
6178
|
type GetByNameShopsShopIdAttributesNameNameGetData = {
|
|
5903
6179
|
name: string;
|
|
5904
6180
|
shopId: string;
|
|
6181
|
+
xApiKey?: string | null;
|
|
5905
6182
|
};
|
|
5906
6183
|
type GetByNameShopsShopIdAttributesNameNameGetResponse = AttributeSchema;
|
|
5907
|
-
type
|
|
6184
|
+
type UpdateAttributeData = {
|
|
5908
6185
|
attributeId: string;
|
|
5909
6186
|
requestBody: AttributeUpdate;
|
|
5910
6187
|
shopId: string;
|
|
6188
|
+
xApiKey?: string | null;
|
|
5911
6189
|
};
|
|
5912
|
-
type
|
|
5913
|
-
type
|
|
6190
|
+
type UpdateAttributeResponse = AttributeSchema;
|
|
6191
|
+
type DeleteAttributeData = {
|
|
5914
6192
|
attributeId: string;
|
|
5915
6193
|
shopId: string;
|
|
6194
|
+
xApiKey?: string | null;
|
|
6195
|
+
};
|
|
6196
|
+
type DeleteAttributeResponse = void;
|
|
6197
|
+
type MintShopsShopIdApiKeysPostData = {
|
|
6198
|
+
requestBody: ApiKeyCreate;
|
|
6199
|
+
shopId: string;
|
|
5916
6200
|
};
|
|
5917
|
-
type
|
|
6201
|
+
type MintShopsShopIdApiKeysPostResponse = ApiKeyCreated;
|
|
6202
|
+
type ListKeysShopsShopIdApiKeysGetData = {
|
|
6203
|
+
shopId: string;
|
|
6204
|
+
};
|
|
6205
|
+
type ListKeysShopsShopIdApiKeysGetResponse = Array<ApiKeyRead>;
|
|
6206
|
+
type RevokeShopsShopIdApiKeysKeyIdDeleteData = {
|
|
6207
|
+
keyId: string;
|
|
6208
|
+
shopId: string;
|
|
6209
|
+
};
|
|
6210
|
+
type RevokeShopsShopIdApiKeysKeyIdDeleteResponse = void;
|
|
5918
6211
|
type ListOptionsForShopShopsShopIdAttributeOptionsGetData = {
|
|
5919
6212
|
/**
|
|
5920
6213
|
* 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.
|
|
@@ -6604,6 +6897,16 @@ type $OpenApiTs = {
|
|
|
6604
6897
|
};
|
|
6605
6898
|
};
|
|
6606
6899
|
};
|
|
6900
|
+
'/shops/my-shops': {
|
|
6901
|
+
get: {
|
|
6902
|
+
res: {
|
|
6903
|
+
/**
|
|
6904
|
+
* Successful Response
|
|
6905
|
+
*/
|
|
6906
|
+
200: MyShopsResponse;
|
|
6907
|
+
};
|
|
6908
|
+
};
|
|
6909
|
+
};
|
|
6607
6910
|
'/shops/cache-status/{id}': {
|
|
6608
6911
|
get: {
|
|
6609
6912
|
req: GetCacheStatusShopsCacheStatusIdGetData;
|
|
@@ -6952,7 +7255,7 @@ type $OpenApiTs = {
|
|
|
6952
7255
|
};
|
|
6953
7256
|
'/shops/{shop_id}/categories/': {
|
|
6954
7257
|
get: {
|
|
6955
|
-
req:
|
|
7258
|
+
req: ListCategoriesData;
|
|
6956
7259
|
res: {
|
|
6957
7260
|
/**
|
|
6958
7261
|
* Successful Response
|
|
@@ -6965,7 +7268,7 @@ type $OpenApiTs = {
|
|
|
6965
7268
|
};
|
|
6966
7269
|
};
|
|
6967
7270
|
post: {
|
|
6968
|
-
req:
|
|
7271
|
+
req: CreateCategoryData;
|
|
6969
7272
|
res: {
|
|
6970
7273
|
/**
|
|
6971
7274
|
* Successful Response
|
|
@@ -6980,7 +7283,7 @@ type $OpenApiTs = {
|
|
|
6980
7283
|
};
|
|
6981
7284
|
'/shops/{shop_id}/categories/{category_id}': {
|
|
6982
7285
|
get: {
|
|
6983
|
-
req:
|
|
7286
|
+
req: GetCategoryData;
|
|
6984
7287
|
res: {
|
|
6985
7288
|
/**
|
|
6986
7289
|
* Successful Response
|
|
@@ -6993,7 +7296,7 @@ type $OpenApiTs = {
|
|
|
6993
7296
|
};
|
|
6994
7297
|
};
|
|
6995
7298
|
put: {
|
|
6996
|
-
req:
|
|
7299
|
+
req: UpdateCategoryData;
|
|
6997
7300
|
res: {
|
|
6998
7301
|
/**
|
|
6999
7302
|
* Successful Response
|
|
@@ -7006,7 +7309,7 @@ type $OpenApiTs = {
|
|
|
7006
7309
|
};
|
|
7007
7310
|
};
|
|
7008
7311
|
delete: {
|
|
7009
|
-
req:
|
|
7312
|
+
req: DeleteCategoryData;
|
|
7010
7313
|
res: {
|
|
7011
7314
|
/**
|
|
7012
7315
|
* Successful Response
|
|
@@ -7154,7 +7457,7 @@ type $OpenApiTs = {
|
|
|
7154
7457
|
};
|
|
7155
7458
|
'/shops/{shop_id}/products/': {
|
|
7156
7459
|
get: {
|
|
7157
|
-
req:
|
|
7460
|
+
req: ListProductsData;
|
|
7158
7461
|
res: {
|
|
7159
7462
|
/**
|
|
7160
7463
|
* Successful Response
|
|
@@ -7167,7 +7470,7 @@ type $OpenApiTs = {
|
|
|
7167
7470
|
};
|
|
7168
7471
|
};
|
|
7169
7472
|
post: {
|
|
7170
|
-
req:
|
|
7473
|
+
req: CreateProductData;
|
|
7171
7474
|
res: {
|
|
7172
7475
|
/**
|
|
7173
7476
|
* Successful Response
|
|
@@ -7197,7 +7500,7 @@ type $OpenApiTs = {
|
|
|
7197
7500
|
};
|
|
7198
7501
|
'/shops/{shop_id}/products/{product_id}': {
|
|
7199
7502
|
put: {
|
|
7200
|
-
req:
|
|
7503
|
+
req: UpdateProductData;
|
|
7201
7504
|
res: {
|
|
7202
7505
|
/**
|
|
7203
7506
|
* Successful Response
|
|
@@ -7210,7 +7513,7 @@ type $OpenApiTs = {
|
|
|
7210
7513
|
};
|
|
7211
7514
|
};
|
|
7212
7515
|
delete: {
|
|
7213
|
-
req:
|
|
7516
|
+
req: DeleteProductData;
|
|
7214
7517
|
res: {
|
|
7215
7518
|
/**
|
|
7216
7519
|
* Successful Response
|
|
@@ -7223,7 +7526,7 @@ type $OpenApiTs = {
|
|
|
7223
7526
|
};
|
|
7224
7527
|
};
|
|
7225
7528
|
get: {
|
|
7226
|
-
req:
|
|
7529
|
+
req: GetProductData;
|
|
7227
7530
|
res: {
|
|
7228
7531
|
/**
|
|
7229
7532
|
* Successful Response
|
|
@@ -7354,7 +7657,7 @@ type $OpenApiTs = {
|
|
|
7354
7657
|
};
|
|
7355
7658
|
'/shops/{shop_id}/tags/': {
|
|
7356
7659
|
get: {
|
|
7357
|
-
req:
|
|
7660
|
+
req: ListTagsData;
|
|
7358
7661
|
res: {
|
|
7359
7662
|
/**
|
|
7360
7663
|
* Successful Response
|
|
@@ -7367,7 +7670,7 @@ type $OpenApiTs = {
|
|
|
7367
7670
|
};
|
|
7368
7671
|
};
|
|
7369
7672
|
post: {
|
|
7370
|
-
req:
|
|
7673
|
+
req: CreateTagData;
|
|
7371
7674
|
res: {
|
|
7372
7675
|
/**
|
|
7373
7676
|
* Successful Response
|
|
@@ -7382,7 +7685,7 @@ type $OpenApiTs = {
|
|
|
7382
7685
|
};
|
|
7383
7686
|
'/shops/{shop_id}/tags/{tag_id}': {
|
|
7384
7687
|
get: {
|
|
7385
|
-
req:
|
|
7688
|
+
req: GetTagData;
|
|
7386
7689
|
res: {
|
|
7387
7690
|
/**
|
|
7388
7691
|
* Successful Response
|
|
@@ -7395,7 +7698,7 @@ type $OpenApiTs = {
|
|
|
7395
7698
|
};
|
|
7396
7699
|
};
|
|
7397
7700
|
put: {
|
|
7398
|
-
req:
|
|
7701
|
+
req: UpdateTagData;
|
|
7399
7702
|
res: {
|
|
7400
7703
|
/**
|
|
7401
7704
|
* Successful Response
|
|
@@ -7408,7 +7711,7 @@ type $OpenApiTs = {
|
|
|
7408
7711
|
};
|
|
7409
7712
|
};
|
|
7410
7713
|
delete: {
|
|
7411
|
-
req:
|
|
7714
|
+
req: DeleteTagData;
|
|
7412
7715
|
res: {
|
|
7413
7716
|
/**
|
|
7414
7717
|
* Successful Response
|
|
@@ -7468,7 +7771,7 @@ type $OpenApiTs = {
|
|
|
7468
7771
|
};
|
|
7469
7772
|
'/shops/{shop_id}/attributes/': {
|
|
7470
7773
|
get: {
|
|
7471
|
-
req:
|
|
7774
|
+
req: ListAttributesData;
|
|
7472
7775
|
res: {
|
|
7473
7776
|
/**
|
|
7474
7777
|
* Successful Response
|
|
@@ -7481,7 +7784,7 @@ type $OpenApiTs = {
|
|
|
7481
7784
|
};
|
|
7482
7785
|
};
|
|
7483
7786
|
post: {
|
|
7484
|
-
req:
|
|
7787
|
+
req: CreateAttributeData;
|
|
7485
7788
|
res: {
|
|
7486
7789
|
/**
|
|
7487
7790
|
* Successful Response
|
|
@@ -7511,7 +7814,7 @@ type $OpenApiTs = {
|
|
|
7511
7814
|
};
|
|
7512
7815
|
'/shops/{shop_id}/attributes/id/{attribute_id}': {
|
|
7513
7816
|
get: {
|
|
7514
|
-
req:
|
|
7817
|
+
req: GetAttributeData;
|
|
7515
7818
|
res: {
|
|
7516
7819
|
/**
|
|
7517
7820
|
* Successful Response
|
|
@@ -7541,7 +7844,7 @@ type $OpenApiTs = {
|
|
|
7541
7844
|
};
|
|
7542
7845
|
'/shops/{shop_id}/attributes/{attribute_id}': {
|
|
7543
7846
|
put: {
|
|
7544
|
-
req:
|
|
7847
|
+
req: UpdateAttributeData;
|
|
7545
7848
|
res: {
|
|
7546
7849
|
/**
|
|
7547
7850
|
* Successful Response
|
|
@@ -7554,7 +7857,50 @@ type $OpenApiTs = {
|
|
|
7554
7857
|
};
|
|
7555
7858
|
};
|
|
7556
7859
|
delete: {
|
|
7557
|
-
req:
|
|
7860
|
+
req: DeleteAttributeData;
|
|
7861
|
+
res: {
|
|
7862
|
+
/**
|
|
7863
|
+
* Successful Response
|
|
7864
|
+
*/
|
|
7865
|
+
204: void;
|
|
7866
|
+
/**
|
|
7867
|
+
* Validation Error
|
|
7868
|
+
*/
|
|
7869
|
+
422: HTTPValidationError;
|
|
7870
|
+
};
|
|
7871
|
+
};
|
|
7872
|
+
};
|
|
7873
|
+
'/shops/{shop_id}/api-keys/': {
|
|
7874
|
+
post: {
|
|
7875
|
+
req: MintShopsShopIdApiKeysPostData;
|
|
7876
|
+
res: {
|
|
7877
|
+
/**
|
|
7878
|
+
* Successful Response
|
|
7879
|
+
*/
|
|
7880
|
+
201: ApiKeyCreated;
|
|
7881
|
+
/**
|
|
7882
|
+
* Validation Error
|
|
7883
|
+
*/
|
|
7884
|
+
422: HTTPValidationError;
|
|
7885
|
+
};
|
|
7886
|
+
};
|
|
7887
|
+
get: {
|
|
7888
|
+
req: ListKeysShopsShopIdApiKeysGetData;
|
|
7889
|
+
res: {
|
|
7890
|
+
/**
|
|
7891
|
+
* Successful Response
|
|
7892
|
+
*/
|
|
7893
|
+
200: Array<ApiKeyRead>;
|
|
7894
|
+
/**
|
|
7895
|
+
* Validation Error
|
|
7896
|
+
*/
|
|
7897
|
+
422: HTTPValidationError;
|
|
7898
|
+
};
|
|
7899
|
+
};
|
|
7900
|
+
};
|
|
7901
|
+
'/shops/{shop_id}/api-keys/{key_id}': {
|
|
7902
|
+
delete: {
|
|
7903
|
+
req: RevokeShopsShopIdApiKeysKeyIdDeleteData;
|
|
7558
7904
|
res: {
|
|
7559
7905
|
/**
|
|
7560
7906
|
* Successful Response
|
|
@@ -8313,6 +8659,13 @@ declare const getMultiShopsGet: (data?: GetMultiShopsGetData) => CancelablePromi
|
|
|
8313
8659
|
* @throws ApiError
|
|
8314
8660
|
*/
|
|
8315
8661
|
declare const createShopsPost: (data: CreateShopsPostData) => CancelablePromise<CreateShopsPostResponse>;
|
|
8662
|
+
/**
|
|
8663
|
+
* List shops and capabilities for the current user
|
|
8664
|
+
* Returns the shops this user can manage, derived from their Cognito groups, plus capability flags the agent should use to tailor its welcome message and behaviour. Admins (group 'Admins') see all shops and have full write access. Tenant users see only the shop(s) whose ID matches one of their Cognito group names; their write access is also scoped to those shops. Always call this first — before saying anything to the user.
|
|
8665
|
+
* @returns MyShopsResponse Successful Response
|
|
8666
|
+
* @throws ApiError
|
|
8667
|
+
*/
|
|
8668
|
+
declare const listMyShops: () => CancelablePromise<ListMyShopsResponse>;
|
|
8316
8669
|
/**
|
|
8317
8670
|
* Get Cache Status
|
|
8318
8671
|
* Show date of last change in data that could be visible in this shop
|
|
@@ -8537,52 +8890,58 @@ declare const calculateShippingCalculatePost: (data: CalculateShippingCalculateP
|
|
|
8537
8890
|
* @param data.limit
|
|
8538
8891
|
* @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.
|
|
8539
8892
|
* @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.
|
|
8893
|
+
* @param data.xApiKey
|
|
8540
8894
|
* @returns CategorySchema Successful Response
|
|
8541
8895
|
* @throws ApiError
|
|
8542
8896
|
*/
|
|
8543
|
-
declare const
|
|
8897
|
+
declare const listCategories: (data: ListCategoriesData) => CancelablePromise<ListCategoriesResponse>;
|
|
8544
8898
|
/**
|
|
8545
8899
|
* Create
|
|
8546
8900
|
* @param data The data for the request.
|
|
8547
8901
|
* @param data.shopId
|
|
8548
8902
|
* @param data.requestBody
|
|
8903
|
+
* @param data.xApiKey
|
|
8549
8904
|
* @returns unknown Successful Response
|
|
8550
8905
|
* @throws ApiError
|
|
8551
8906
|
*/
|
|
8552
|
-
declare const
|
|
8907
|
+
declare const createCategory: (data: CreateCategoryData) => CancelablePromise<CreateCategoryResponse>;
|
|
8553
8908
|
/**
|
|
8554
8909
|
* Get By Id
|
|
8555
8910
|
* @param data The data for the request.
|
|
8556
8911
|
* @param data.shopId
|
|
8557
8912
|
* @param data.categoryId
|
|
8913
|
+
* @param data.xApiKey
|
|
8558
8914
|
* @returns CategorySchema Successful Response
|
|
8559
8915
|
* @throws ApiError
|
|
8560
8916
|
*/
|
|
8561
|
-
declare const
|
|
8917
|
+
declare const getCategory: (data: GetCategoryData) => CancelablePromise<GetCategoryResponse>;
|
|
8562
8918
|
/**
|
|
8563
8919
|
* Update
|
|
8564
8920
|
* @param data The data for the request.
|
|
8565
8921
|
* @param data.categoryId
|
|
8566
8922
|
* @param data.shopId
|
|
8567
8923
|
* @param data.requestBody
|
|
8924
|
+
* @param data.xApiKey
|
|
8568
8925
|
* @returns unknown Successful Response
|
|
8569
8926
|
* @throws ApiError
|
|
8570
8927
|
*/
|
|
8571
|
-
declare const
|
|
8928
|
+
declare const updateCategory: (data: UpdateCategoryData) => CancelablePromise<UpdateCategoryResponse>;
|
|
8572
8929
|
/**
|
|
8573
8930
|
* Delete
|
|
8574
8931
|
* @param data The data for the request.
|
|
8575
8932
|
* @param data.categoryId
|
|
8576
8933
|
* @param data.shopId
|
|
8934
|
+
* @param data.xApiKey
|
|
8577
8935
|
* @returns void Successful Response
|
|
8578
8936
|
* @throws ApiError
|
|
8579
8937
|
*/
|
|
8580
|
-
declare const
|
|
8938
|
+
declare const deleteCategory: (data: DeleteCategoryData) => CancelablePromise<DeleteCategoryResponse>;
|
|
8581
8939
|
/**
|
|
8582
8940
|
* Get By Name
|
|
8583
8941
|
* @param data The data for the request.
|
|
8584
8942
|
* @param data.name
|
|
8585
8943
|
* @param data.shopId
|
|
8944
|
+
* @param data.xApiKey
|
|
8586
8945
|
* @returns CategorySchema Successful Response
|
|
8587
8946
|
* @throws ApiError
|
|
8588
8947
|
*/
|
|
@@ -8593,16 +8952,18 @@ declare const getByNameShopsShopIdCategoriesNameNameGet: (data: GetByNameShopsSh
|
|
|
8593
8952
|
* @param data.shopId
|
|
8594
8953
|
* @param data.categoryId
|
|
8595
8954
|
* @param data.moveUp
|
|
8955
|
+
* @param data.xApiKey
|
|
8596
8956
|
* @returns unknown Successful Response
|
|
8597
8957
|
* @throws ApiError
|
|
8598
8958
|
*/
|
|
8599
8959
|
declare const swapShopsShopIdCategoriesCategoryIdSwapPut: (data: SwapShopsShopIdCategoriesCategoryIdSwapPutData) => CancelablePromise<SwapShopsShopIdCategoriesCategoryIdSwapPutResponse>;
|
|
8600
8960
|
/**
|
|
8601
8961
|
* Get available filter attributes for a category
|
|
8602
|
-
* Returns attributes actually used by products in this category, with option counts.
|
|
8962
|
+
* 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).
|
|
8603
8963
|
* @param data The data for the request.
|
|
8604
8964
|
* @param data.shopId
|
|
8605
8965
|
* @param data.categoryId
|
|
8966
|
+
* @param data.optionId
|
|
8606
8967
|
* @returns AvailableAttributeSchema Successful Response
|
|
8607
8968
|
* @throws ApiError
|
|
8608
8969
|
*/
|
|
@@ -8687,19 +9048,21 @@ declare const getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet: (data: G
|
|
|
8687
9048
|
* @param data.limit
|
|
8688
9049
|
* @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.
|
|
8689
9050
|
* @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.
|
|
9051
|
+
* @param data.xApiKey
|
|
8690
9052
|
* @returns ProductWithDefaultPrice Successful Response
|
|
8691
9053
|
* @throws ApiError
|
|
8692
9054
|
*/
|
|
8693
|
-
declare const
|
|
9055
|
+
declare const listProducts: (data: ListProductsData) => CancelablePromise<ListProductsResponse>;
|
|
8694
9056
|
/**
|
|
8695
9057
|
* Create
|
|
8696
9058
|
* @param data The data for the request.
|
|
8697
9059
|
* @param data.shopId
|
|
8698
9060
|
* @param data.requestBody
|
|
9061
|
+
* @param data.xApiKey
|
|
8699
9062
|
* @returns unknown Successful Response
|
|
8700
9063
|
* @throws ApiError
|
|
8701
9064
|
*/
|
|
8702
|
-
declare const
|
|
9065
|
+
declare const createProduct: (data: CreateProductData) => CancelablePromise<CreateProductResponse>;
|
|
8703
9066
|
/**
|
|
8704
9067
|
* List products with attributes
|
|
8705
9068
|
* Fetch a list of products along with their associated attributes.
|
|
@@ -8726,6 +9089,7 @@ declare const createShopsShopIdProductsPost: (data: CreateShopsShopIdProductsPos
|
|
|
8726
9089
|
* @param data.limit
|
|
8727
9090
|
* @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.
|
|
8728
9091
|
* @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.
|
|
9092
|
+
* @param data.xApiKey
|
|
8729
9093
|
* @returns ProductWithAttributes Successful Response
|
|
8730
9094
|
* @throws ApiError
|
|
8731
9095
|
*/
|
|
@@ -8736,19 +9100,21 @@ declare const getMultiWithAttributesShopsShopIdProductsWithAttributesGet: (data:
|
|
|
8736
9100
|
* @param data.productId
|
|
8737
9101
|
* @param data.shopId
|
|
8738
9102
|
* @param data.requestBody
|
|
9103
|
+
* @param data.xApiKey
|
|
8739
9104
|
* @returns unknown Successful Response
|
|
8740
9105
|
* @throws ApiError
|
|
8741
9106
|
*/
|
|
8742
|
-
declare const
|
|
9107
|
+
declare const updateProduct: (data: UpdateProductData) => CancelablePromise<UpdateProductResponse>;
|
|
8743
9108
|
/**
|
|
8744
9109
|
* Delete
|
|
8745
9110
|
* @param data The data for the request.
|
|
8746
9111
|
* @param data.productId
|
|
8747
9112
|
* @param data.shopId
|
|
9113
|
+
* @param data.xApiKey
|
|
8748
9114
|
* @returns void Successful Response
|
|
8749
9115
|
* @throws ApiError
|
|
8750
9116
|
*/
|
|
8751
|
-
declare const
|
|
9117
|
+
declare const deleteProduct: (data: DeleteProductData) => CancelablePromise<DeleteProductResponse>;
|
|
8752
9118
|
/**
|
|
8753
9119
|
* Get By Id
|
|
8754
9120
|
* @param data The data for the request.
|
|
@@ -8757,13 +9123,14 @@ declare const deleteShopsShopIdProductsProductIdDelete: (data: DeleteShopsShopId
|
|
|
8757
9123
|
* @returns ProductWithDetailsAndPrices Successful Response
|
|
8758
9124
|
* @throws ApiError
|
|
8759
9125
|
*/
|
|
8760
|
-
declare const
|
|
9126
|
+
declare const getProduct: (data: GetProductData) => CancelablePromise<GetProductResponse>;
|
|
8761
9127
|
/**
|
|
8762
9128
|
* Swap
|
|
8763
9129
|
* @param data The data for the request.
|
|
8764
9130
|
* @param data.shopId
|
|
8765
9131
|
* @param data.productId
|
|
8766
9132
|
* @param data.moveUp
|
|
9133
|
+
* @param data.xApiKey
|
|
8767
9134
|
* @returns unknown Successful Response
|
|
8768
9135
|
* @throws ApiError
|
|
8769
9136
|
*/
|
|
@@ -8839,52 +9206,58 @@ declare const deleteShopsShopIdProductsToTagsProductToTagIdDelete: (data: Delete
|
|
|
8839
9206
|
* @param data.limit
|
|
8840
9207
|
* @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.
|
|
8841
9208
|
* @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.
|
|
9209
|
+
* @param data.xApiKey
|
|
8842
9210
|
* @returns TagSchema Successful Response
|
|
8843
9211
|
* @throws ApiError
|
|
8844
9212
|
*/
|
|
8845
|
-
declare const
|
|
9213
|
+
declare const listTags: (data: ListTagsData) => CancelablePromise<ListTagsResponse>;
|
|
8846
9214
|
/**
|
|
8847
9215
|
* Create
|
|
8848
9216
|
* @param data The data for the request.
|
|
8849
9217
|
* @param data.shopId
|
|
8850
9218
|
* @param data.requestBody
|
|
9219
|
+
* @param data.xApiKey
|
|
8851
9220
|
* @returns unknown Successful Response
|
|
8852
9221
|
* @throws ApiError
|
|
8853
9222
|
*/
|
|
8854
|
-
declare const
|
|
9223
|
+
declare const createTag: (data: CreateTagData) => CancelablePromise<CreateTagResponse>;
|
|
8855
9224
|
/**
|
|
8856
9225
|
* Get By Id
|
|
8857
9226
|
* @param data The data for the request.
|
|
8858
9227
|
* @param data.tagId
|
|
8859
9228
|
* @param data.shopId
|
|
9229
|
+
* @param data.xApiKey
|
|
8860
9230
|
* @returns TagSchema Successful Response
|
|
8861
9231
|
* @throws ApiError
|
|
8862
9232
|
*/
|
|
8863
|
-
declare const
|
|
9233
|
+
declare const getTag: (data: GetTagData) => CancelablePromise<GetTagResponse>;
|
|
8864
9234
|
/**
|
|
8865
9235
|
* Update
|
|
8866
9236
|
* @param data The data for the request.
|
|
8867
9237
|
* @param data.tagId
|
|
8868
9238
|
* @param data.shopId
|
|
8869
9239
|
* @param data.requestBody
|
|
9240
|
+
* @param data.xApiKey
|
|
8870
9241
|
* @returns unknown Successful Response
|
|
8871
9242
|
* @throws ApiError
|
|
8872
9243
|
*/
|
|
8873
|
-
declare const
|
|
9244
|
+
declare const updateTag: (data: UpdateTagData) => CancelablePromise<UpdateTagResponse>;
|
|
8874
9245
|
/**
|
|
8875
9246
|
* Delete
|
|
8876
9247
|
* @param data The data for the request.
|
|
8877
9248
|
* @param data.tagId
|
|
8878
9249
|
* @param data.shopId
|
|
9250
|
+
* @param data.xApiKey
|
|
8879
9251
|
* @returns void Successful Response
|
|
8880
9252
|
* @throws ApiError
|
|
8881
9253
|
*/
|
|
8882
|
-
declare const
|
|
9254
|
+
declare const deleteTag: (data: DeleteTagData) => CancelablePromise<DeleteTagResponse>;
|
|
8883
9255
|
/**
|
|
8884
9256
|
* Get By Name
|
|
8885
9257
|
* @param data The data for the request.
|
|
8886
9258
|
* @param data.name
|
|
8887
9259
|
* @param data.shopId
|
|
9260
|
+
* @param data.xApiKey
|
|
8888
9261
|
* @returns TagSchema Successful Response
|
|
8889
9262
|
* @throws ApiError
|
|
8890
9263
|
*/
|
|
@@ -8895,6 +9268,7 @@ declare const getByNameShopsShopIdTagsNameNameGet: (data: GetByNameShopsShopIdTa
|
|
|
8895
9268
|
* @param data The data for the request.
|
|
8896
9269
|
* @param data.attributeId
|
|
8897
9270
|
* @param data.shopId
|
|
9271
|
+
* @param data.xApiKey
|
|
8898
9272
|
* @returns AttributeWithOptionsSchema Successful Response
|
|
8899
9273
|
* @throws ApiError
|
|
8900
9274
|
*/
|
|
@@ -8908,6 +9282,7 @@ declare const getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOption
|
|
|
8908
9282
|
* @param data.limit
|
|
8909
9283
|
* @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
9284
|
* @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.
|
|
9285
|
+
* @param data.xApiKey
|
|
8911
9286
|
* @returns AttributeWithOptionsSchema Successful Response
|
|
8912
9287
|
* @throws ApiError
|
|
8913
9288
|
*/
|
|
@@ -8921,26 +9296,29 @@ declare const getWithOptionsShopsShopIdAttributesWithOptionsGet: (data: GetWithO
|
|
|
8921
9296
|
* @param data.limit
|
|
8922
9297
|
* @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.
|
|
8923
9298
|
* @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.
|
|
9299
|
+
* @param data.xApiKey
|
|
8924
9300
|
* @returns AttributeSchema Successful Response
|
|
8925
9301
|
* @throws ApiError
|
|
8926
9302
|
*/
|
|
8927
|
-
declare const
|
|
9303
|
+
declare const listAttributes: (data: ListAttributesData) => CancelablePromise<ListAttributesResponse>;
|
|
8928
9304
|
/**
|
|
8929
9305
|
* Create attribute
|
|
8930
9306
|
* Create a new attribute for a shop. This also initializes a translation record with the provided name.
|
|
8931
9307
|
* @param data The data for the request.
|
|
8932
9308
|
* @param data.shopId
|
|
8933
9309
|
* @param data.requestBody
|
|
9310
|
+
* @param data.xApiKey
|
|
8934
9311
|
* @returns AttributeSchema Successful Response
|
|
8935
9312
|
* @throws ApiError
|
|
8936
9313
|
*/
|
|
8937
|
-
declare const
|
|
9314
|
+
declare const createAttribute: (data: CreateAttributeData) => CancelablePromise<CreateAttributeResponse>;
|
|
8938
9315
|
/**
|
|
8939
9316
|
* Get attribute by ID with options
|
|
8940
9317
|
* Retrieve a specific attribute by its unique ID, including all of its defined options.
|
|
8941
9318
|
* @param data The data for the request.
|
|
8942
9319
|
* @param data.attributeId
|
|
8943
9320
|
* @param data.shopId
|
|
9321
|
+
* @param data.xApiKey
|
|
8944
9322
|
* @returns AttributeWithOptionsSchema Successful Response
|
|
8945
9323
|
* @throws ApiError
|
|
8946
9324
|
*/
|
|
@@ -8951,16 +9329,18 @@ declare const getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet
|
|
|
8951
9329
|
* @param data The data for the request.
|
|
8952
9330
|
* @param data.attributeId
|
|
8953
9331
|
* @param data.shopId
|
|
9332
|
+
* @param data.xApiKey
|
|
8954
9333
|
* @returns AttributeSchema Successful Response
|
|
8955
9334
|
* @throws ApiError
|
|
8956
9335
|
*/
|
|
8957
|
-
declare const
|
|
9336
|
+
declare const getAttribute: (data: GetAttributeData) => CancelablePromise<GetAttributeResponse>;
|
|
8958
9337
|
/**
|
|
8959
9338
|
* Get attribute by name
|
|
8960
9339
|
* Retrieve the details of a specific attribute using its machine-friendly name (e.g., 'color').
|
|
8961
9340
|
* @param data The data for the request.
|
|
8962
9341
|
* @param data.name
|
|
8963
9342
|
* @param data.shopId
|
|
9343
|
+
* @param data.xApiKey
|
|
8964
9344
|
* @returns AttributeSchema Successful Response
|
|
8965
9345
|
* @throws ApiError
|
|
8966
9346
|
*/
|
|
@@ -8972,20 +9352,52 @@ declare const getByNameShopsShopIdAttributesNameNameGet: (data: GetByNameShopsSh
|
|
|
8972
9352
|
* @param data.attributeId
|
|
8973
9353
|
* @param data.shopId
|
|
8974
9354
|
* @param data.requestBody
|
|
9355
|
+
* @param data.xApiKey
|
|
8975
9356
|
* @returns AttributeSchema Successful Response
|
|
8976
9357
|
* @throws ApiError
|
|
8977
9358
|
*/
|
|
8978
|
-
declare const
|
|
9359
|
+
declare const updateAttribute: (data: UpdateAttributeData) => CancelablePromise<UpdateAttributeResponse>;
|
|
8979
9360
|
/**
|
|
8980
9361
|
* Delete attribute
|
|
8981
9362
|
* Remove an attribute from a shop. This will fail if the attribute is currently in use by any products.
|
|
8982
9363
|
* @param data The data for the request.
|
|
8983
9364
|
* @param data.attributeId
|
|
8984
9365
|
* @param data.shopId
|
|
9366
|
+
* @param data.xApiKey
|
|
9367
|
+
* @returns void Successful Response
|
|
9368
|
+
* @throws ApiError
|
|
9369
|
+
*/
|
|
9370
|
+
declare const deleteAttribute: (data: DeleteAttributeData) => CancelablePromise<DeleteAttributeResponse>;
|
|
9371
|
+
/**
|
|
9372
|
+
* Mint a new API key for the shop
|
|
9373
|
+
* Mint a new API key. The plaintext is returned exactly once.
|
|
9374
|
+
*
|
|
9375
|
+
* Store it somewhere safe — it cannot be retrieved again. If lost, revoke
|
|
9376
|
+
* and mint a new one.
|
|
9377
|
+
* @param data The data for the request.
|
|
9378
|
+
* @param data.shopId
|
|
9379
|
+
* @param data.requestBody
|
|
9380
|
+
* @returns ApiKeyCreated Successful Response
|
|
9381
|
+
* @throws ApiError
|
|
9382
|
+
*/
|
|
9383
|
+
declare const mintShopsShopIdApiKeysPost: (data: MintShopsShopIdApiKeysPostData) => CancelablePromise<MintShopsShopIdApiKeysPostResponse>;
|
|
9384
|
+
/**
|
|
9385
|
+
* List API keys for the shop
|
|
9386
|
+
* @param data The data for the request.
|
|
9387
|
+
* @param data.shopId
|
|
9388
|
+
* @returns ApiKeyRead Successful Response
|
|
9389
|
+
* @throws ApiError
|
|
9390
|
+
*/
|
|
9391
|
+
declare const listKeysShopsShopIdApiKeysGet: (data: ListKeysShopsShopIdApiKeysGetData) => CancelablePromise<ListKeysShopsShopIdApiKeysGetResponse>;
|
|
9392
|
+
/**
|
|
9393
|
+
* Revoke an API key
|
|
9394
|
+
* @param data The data for the request.
|
|
9395
|
+
* @param data.shopId
|
|
9396
|
+
* @param data.keyId
|
|
8985
9397
|
* @returns void Successful Response
|
|
8986
9398
|
* @throws ApiError
|
|
8987
9399
|
*/
|
|
8988
|
-
declare const
|
|
9400
|
+
declare const revokeShopsShopIdApiKeysKeyIdDelete: (data: RevokeShopsShopIdApiKeysKeyIdDeleteData) => CancelablePromise<RevokeShopsShopIdApiKeysKeyIdDeleteResponse>;
|
|
8989
9401
|
/**
|
|
8990
9402
|
* List attribute options for a shop
|
|
8991
9403
|
* Retrieve a paginated list of all attribute options (e.g., 'Small', 'XL') across all attributes within a shop.
|
|
@@ -9335,4 +9747,4 @@ declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelableProm
|
|
|
9335
9747
|
*/
|
|
9336
9748
|
declare const deleteFaqFaqIdDelete: (data: DeleteFaqFaqIdDeleteData) => CancelablePromise<DeleteFaqFaqIdDeleteResponse>;
|
|
9337
9749
|
|
|
9338
|
-
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 };
|
|
9750
|
+
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, $ConfigurationOrderStatusMails, $ConfigurationShipping_Input, $ConfigurationShipping_Output, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $LinkStripeBody, $Msg, $MyShopsResponse, 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 ConfigurationOrderStatusMails, 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 ListMyShopsResponse, 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 MyShopsResponse, 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, listMyShops, 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 };
|