@shopware/api-client 1.0.1 → 1.0.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.
@@ -213,7 +213,6 @@ export type Schemas = {
213
213
  /** Format: date-time */
214
214
  createdAt: string;
215
215
  id?: string;
216
- translated?: Record<string, never>;
217
216
  /** Format: date-time */
218
217
  updatedAt?: string;
219
218
  };
@@ -221,7 +220,6 @@ export type Schemas = {
221
220
  /** Format: date-time */
222
221
  createdAt: string;
223
222
  id?: string;
224
- translated?: Record<string, never>;
225
223
  /** Format: date-time */
226
224
  updatedAt?: string;
227
225
  };
@@ -239,7 +237,6 @@ export type Schemas = {
239
237
  /** Format: date-time */
240
238
  createdAt: string;
241
239
  id?: string;
242
- translated?: Record<string, never>;
243
240
  /** Format: date-time */
244
241
  updatedAt?: string;
245
242
  };
@@ -247,7 +244,6 @@ export type Schemas = {
247
244
  /** Format: date-time */
248
245
  createdAt: string;
249
246
  id?: string;
250
- translated?: Record<string, never>;
251
247
  /** Format: date-time */
252
248
  updatedAt?: string;
253
249
  };
@@ -269,7 +265,6 @@ export type Schemas = {
269
265
  /** Format: date-time */
270
266
  createdAt: string;
271
267
  id?: string;
272
- translated?: Record<string, never>;
273
268
  /** Format: date-time */
274
269
  updatedAt?: string;
275
270
  };
@@ -307,7 +302,7 @@ export type Schemas = {
307
302
  B2bBusinessPartner: {
308
303
  /** Format: date-time */
309
304
  createdAt: string;
310
- customFields?: Record<string, never>;
305
+ customFields?: GenericRecord;
311
306
  id?: string;
312
307
  /** Format: date-time */
313
308
  updatedAt?: string;
@@ -341,7 +336,7 @@ export type Schemas = {
341
336
  currencyId: string;
342
337
  customer?: components["schemas"]["Customer"];
343
338
  customerId: string;
344
- customFields?: Record<string, never>;
339
+ customFields?: GenericRecord;
345
340
  decidedBy?: components["schemas"]["B2bEmployee"];
346
341
  decidedById?: string;
347
342
  employee?: components["schemas"]["B2bEmployee"];
@@ -356,14 +351,14 @@ export type Schemas = {
356
351
  paymentMethod?: components["schemas"]["PaymentMethod"];
357
352
  paymentMethodId: string;
358
353
  price?: {
359
- calculatedTaxes?: Record<string, never>;
354
+ calculatedTaxes?: GenericRecord;
360
355
  /** Format: float */
361
356
  netPrice: number;
362
357
  /** Format: float */
363
358
  positionPrice: number;
364
359
  /** Format: float */
365
360
  rawTotal: number;
366
- taxRules?: Record<string, never>;
361
+ taxRules?: GenericRecord;
367
362
  taxStatus: string;
368
363
  /** Format: float */
369
364
  totalPrice: number;
@@ -389,7 +384,7 @@ export type Schemas = {
389
384
  countryStateId?: string;
390
385
  /** Format: date-time */
391
386
  createdAt: string;
392
- customFields?: Record<string, never>;
387
+ customFields?: GenericRecord;
393
388
  department?: string;
394
389
  firstName: string;
395
390
  id: string;
@@ -407,10 +402,10 @@ export type Schemas = {
407
402
  B2bComponentsRole: {
408
403
  /** Format: date-time */
409
404
  createdAt: string;
410
- customFields?: Record<string, never>;
405
+ customFields?: GenericRecord;
411
406
  id: string;
412
407
  name: string;
413
- permissions?: Record<string, never>[];
408
+ permissions?: GenericRecord[];
414
409
  /** Format: date-time */
415
410
  updatedAt?: string;
416
411
  };
@@ -421,13 +416,13 @@ export type Schemas = {
421
416
  createdById?: string;
422
417
  customer?: components["schemas"]["Customer"];
423
418
  customerId: string;
424
- customFields?: Record<string, never>;
419
+ customFields?: GenericRecord;
425
420
  employee?: components["schemas"]["B2bEmployee"];
426
421
  employeeId?: string;
427
422
  id: string;
428
423
  lineItems?: components["schemas"]["B2bComponentsShoppingListLineItem"][];
429
424
  name?: string;
430
- price?: Record<string, never>;
425
+ price?: GenericRecord;
431
426
  salesChannelId: string;
432
427
  /** Format: date-time */
433
428
  updatedAt?: string;
@@ -439,11 +434,11 @@ export type Schemas = {
439
434
  createdAt: string;
440
435
  createdById?: string;
441
436
  customerId: string;
442
- customFields?: Record<string, never>;
437
+ customFields?: GenericRecord;
443
438
  employeeId?: string;
444
439
  id: string;
445
440
  name?: string;
446
- price?: Record<string, never>;
441
+ price?: GenericRecord;
447
442
  relationships?: {
448
443
  customer?: {
449
444
  data?: {
@@ -500,7 +495,7 @@ export type Schemas = {
500
495
  /** Format: date-time */
501
496
  createdAt: string;
502
497
  id: string;
503
- price?: Record<string, never>;
498
+ price?: GenericRecord;
504
499
  product?: components["schemas"]["Product"];
505
500
  productId?: string;
506
501
  productVersionId?: string;
@@ -513,7 +508,7 @@ export type Schemas = {
513
508
  /** Format: date-time */
514
509
  createdAt: string;
515
510
  id: string;
516
- price?: Record<string, never>;
511
+ price?: GenericRecord;
517
512
  productId?: string;
518
513
  productVersionId?: string;
519
514
  /** Format: int64 */
@@ -542,7 +537,7 @@ export type Schemas = {
542
537
  active?: boolean;
543
538
  /** Format: date-time */
544
539
  createdAt: string;
545
- customFields?: Record<string, never>;
540
+ customFields?: GenericRecord;
546
541
  email: string;
547
542
  firstName: string;
548
543
  id: string;
@@ -705,7 +700,7 @@ export type Schemas = {
705
700
  /** Format: date-time */
706
701
  createdAt: string;
707
702
  customEntityTypeId?: string;
708
- customFields?: Record<string, never>;
703
+ customFields?: GenericRecord;
709
704
  description?: string;
710
705
  displayNestedProducts: boolean;
711
706
  externalLink?: string;
@@ -729,28 +724,27 @@ export type Schemas = {
729
724
  seoUrls?: components["schemas"]["SeoUrl"][];
730
725
  tags?: components["schemas"]["Tag"][];
731
726
  translated: {
732
- afterCategoryId?: string;
733
- afterCategoryVersionId?: string;
734
- apiAlias?: string;
727
+ afterCategoryId: string;
728
+ afterCategoryVersionId: string;
735
729
  breadcrumb: string[];
736
- cmsPageId?: string;
737
- cmsPageVersionId?: string;
738
- customEntityTypeId?: string;
739
- description?: string;
740
- externalLink?: string;
741
- internalLink?: string;
742
- keywords?: string;
743
- linkType?: string;
744
- mediaId?: string;
745
- metaDescription?: string;
746
- metaTitle?: string;
747
- name?: string;
748
- parentId?: string;
749
- parentVersionId?: string;
750
- path?: string;
751
- productAssignmentType?: string;
752
- type?: string;
753
- versionId?: string;
730
+ cmsPageId: string;
731
+ cmsPageVersionId: string;
732
+ customEntityTypeId: string;
733
+ description: string;
734
+ externalLink: string;
735
+ internalLink: string;
736
+ keywords: string;
737
+ linkType: string;
738
+ mediaId: string;
739
+ metaDescription: string;
740
+ metaTitle: string;
741
+ name: string;
742
+ parentId: string;
743
+ parentVersionId: string;
744
+ path: string;
745
+ productAssignmentType: string;
746
+ type: string;
747
+ versionId: string;
754
748
  };
755
749
  type: string;
756
750
  /** Format: date-time */
@@ -767,7 +761,7 @@ export type Schemas = {
767
761
  active?: boolean;
768
762
  afterCategoryId?: string;
769
763
  afterCategoryVersionId?: string;
770
- breadcrumb?: readonly Record<string, never>[];
764
+ breadcrumb?: readonly GenericRecord[];
771
765
  /** Format: int64 */
772
766
  childCount?: number;
773
767
  cmsPageId?: string;
@@ -777,7 +771,7 @@ export type Schemas = {
777
771
  /** Format: date-time */
778
772
  createdAt: string;
779
773
  customEntityTypeId?: string;
780
- customFields?: Record<string, never>;
774
+ customFields?: GenericRecord;
781
775
  description?: string;
782
776
  displayNestedProducts: boolean;
783
777
  externalLink?: string;
@@ -888,27 +882,27 @@ export type Schemas = {
888
882
  };
889
883
  };
890
884
  };
891
- translated?: {
892
- afterCategoryId?: string;
893
- afterCategoryVersionId?: string;
894
- cmsPageId?: string;
895
- cmsPageVersionId?: string;
896
- customEntityTypeId?: string;
897
- description?: string;
898
- externalLink?: string;
899
- internalLink?: string;
900
- keywords?: string;
901
- linkType?: string;
902
- mediaId?: string;
903
- metaDescription?: string;
904
- metaTitle?: string;
905
- name?: string;
906
- parentId?: string;
907
- parentVersionId?: string;
908
- path?: string;
909
- productAssignmentType?: string;
910
- type?: string;
911
- versionId?: string;
885
+ translated: {
886
+ afterCategoryId: string;
887
+ afterCategoryVersionId: string;
888
+ cmsPageId: string;
889
+ cmsPageVersionId: string;
890
+ customEntityTypeId: string;
891
+ description: string;
892
+ externalLink: string;
893
+ internalLink: string;
894
+ keywords: string;
895
+ linkType: string;
896
+ mediaId: string;
897
+ metaDescription: string;
898
+ metaTitle: string;
899
+ name: string;
900
+ parentId: string;
901
+ parentVersionId: string;
902
+ path: string;
903
+ productAssignmentType: string;
904
+ type: string;
905
+ versionId: string;
912
906
  };
913
907
  type: string;
914
908
  /** Format: date-time */
@@ -932,7 +926,7 @@ export type Schemas = {
932
926
  /** Format: date-time */
933
927
  createdAt: string;
934
928
  cssClass?: string;
935
- customFields?: Record<string, never>;
929
+ customFields?: GenericRecord;
936
930
  extensions?: {
937
931
  swagCmsExtensionsBlockRule?: {
938
932
  data?: {
@@ -995,7 +989,7 @@ export type Schemas = {
995
989
  /** Format: date-time */
996
990
  createdAt: string;
997
991
  cssClass?: string;
998
- customFields?: Record<string, never>;
992
+ customFields?: GenericRecord;
999
993
  entity?: string;
1000
994
  extensions?: {
1001
995
  swagCmsExtensionsScrollNavigationPageSettings?: {
@@ -1020,14 +1014,13 @@ export type Schemas = {
1020
1014
  previewMedia?: components["schemas"]["Media"];
1021
1015
  previewMediaId?: string;
1022
1016
  sections: components["schemas"]["CmsSection"][];
1023
- translated?: {
1024
- apiAlias?: string;
1025
- cssClass?: string;
1026
- entity?: string;
1027
- name?: string;
1028
- previewMediaId?: string;
1029
- type?: string;
1030
- versionId?: string;
1017
+ translated: {
1018
+ cssClass: string;
1019
+ entity: string;
1020
+ name: string;
1021
+ previewMediaId: string;
1022
+ type: string;
1023
+ versionId: string;
1031
1024
  };
1032
1025
  type: string;
1033
1026
  /** Format: date-time */
@@ -1060,7 +1053,7 @@ export type Schemas = {
1060
1053
  /** Format: date-time */
1061
1054
  createdAt: string;
1062
1055
  cssClass?: string;
1063
- customFields?: Record<string, never>;
1056
+ customFields?: GenericRecord;
1064
1057
  extensions?: {
1065
1058
  swagCmsExtensionsScrollNavigation?: {
1066
1059
  data?: {
@@ -1104,18 +1097,17 @@ export type Schemas = {
1104
1097
  cmsBlockVersionId?: string;
1105
1098
  /** Format: date-time */
1106
1099
  createdAt: string;
1107
- customFields?: Record<string, never>;
1108
- fieldConfig?: Record<string, never>;
1100
+ customFields?: GenericRecord;
1101
+ fieldConfig?: GenericRecord;
1109
1102
  id?: string;
1110
1103
  locked?: boolean;
1111
1104
  slot: string;
1112
- translated?: {
1113
- apiAlias?: string;
1114
- blockId?: string;
1115
- cmsBlockVersionId?: string;
1116
- slot?: string;
1117
- type?: string;
1118
- versionId?: string;
1105
+ translated: {
1106
+ blockId: string;
1107
+ cmsBlockVersionId: string;
1108
+ slot: string;
1109
+ type: string;
1110
+ versionId: string;
1119
1111
  };
1120
1112
  type: string;
1121
1113
  /** Format: date-time */
@@ -1124,7 +1116,7 @@ export type Schemas = {
1124
1116
  };
1125
1117
  Country: {
1126
1118
  active?: boolean;
1127
- addressFormat: Record<string, never>;
1119
+ addressFormat: GenericRecord;
1128
1120
  advancedPostalCodePattern?: string;
1129
1121
  checkAdvancedPostalCodePattern?: boolean;
1130
1122
  checkPostalCodePattern?: boolean;
@@ -1143,7 +1135,7 @@ export type Schemas = {
1143
1135
  currencyId: string;
1144
1136
  enabled: boolean;
1145
1137
  };
1146
- customFields?: Record<string, never>;
1138
+ customFields?: GenericRecord;
1147
1139
  defaultPostalCodePattern?: string;
1148
1140
  displayStateInRegistration?: boolean;
1149
1141
  forceStateInRegistration?: boolean;
@@ -1156,13 +1148,13 @@ export type Schemas = {
1156
1148
  postalCodeRequired?: boolean;
1157
1149
  shippingAvailable?: boolean;
1158
1150
  states?: components["schemas"]["CountryState"][];
1159
- translated?: {
1160
- advancedPostalCodePattern?: string;
1161
- defaultPostalCodePattern?: string;
1162
- iso?: string;
1163
- iso3?: string;
1164
- name?: string;
1165
- vatIdPattern?: string;
1151
+ translated: {
1152
+ advancedPostalCodePattern: string;
1153
+ defaultPostalCodePattern: string;
1154
+ iso: string;
1155
+ iso3: string;
1156
+ name: string;
1157
+ vatIdPattern: string;
1166
1158
  };
1167
1159
  /** Format: date-time */
1168
1160
  updatedAt?: string;
@@ -1171,7 +1163,7 @@ export type Schemas = {
1171
1163
  };
1172
1164
  CountryJsonApi: components["schemas"]["resource"] & {
1173
1165
  active?: boolean;
1174
- addressFormat: Record<string, never>;
1166
+ addressFormat: GenericRecord;
1175
1167
  advancedPostalCodePattern?: string;
1176
1168
  checkAdvancedPostalCodePattern?: boolean;
1177
1169
  checkPostalCodePattern?: boolean;
@@ -1190,7 +1182,7 @@ export type Schemas = {
1190
1182
  currencyId: string;
1191
1183
  enabled: boolean;
1192
1184
  };
1193
- customFields?: Record<string, never>;
1185
+ customFields?: GenericRecord;
1194
1186
  defaultPostalCodePattern?: string;
1195
1187
  displayStateInRegistration?: boolean;
1196
1188
  forceStateInRegistration?: boolean;
@@ -1219,13 +1211,13 @@ export type Schemas = {
1219
1211
  };
1220
1212
  };
1221
1213
  shippingAvailable?: boolean;
1222
- translated?: {
1223
- advancedPostalCodePattern?: string;
1224
- defaultPostalCodePattern?: string;
1225
- iso?: string;
1226
- iso3?: string;
1227
- name?: string;
1228
- vatIdPattern?: string;
1214
+ translated: {
1215
+ advancedPostalCodePattern: string;
1216
+ defaultPostalCodePattern: string;
1217
+ iso: string;
1218
+ iso3: string;
1219
+ name: string;
1220
+ vatIdPattern: string;
1229
1221
  };
1230
1222
  /** Format: date-time */
1231
1223
  updatedAt?: string;
@@ -1237,16 +1229,16 @@ export type Schemas = {
1237
1229
  countryId: string;
1238
1230
  /** Format: date-time */
1239
1231
  createdAt: string;
1240
- customFields?: Record<string, never>;
1232
+ customFields?: GenericRecord;
1241
1233
  id: string;
1242
1234
  name: string;
1243
1235
  /** Format: int64 */
1244
1236
  position?: number;
1245
1237
  shortCode: string;
1246
- translated?: {
1247
- countryId?: string;
1248
- name?: string;
1249
- shortCode?: string;
1238
+ translated: {
1239
+ countryId: string;
1240
+ name: string;
1241
+ shortCode: string;
1250
1242
  };
1251
1243
  /** Format: date-time */
1252
1244
  updatedAt?: string;
@@ -1256,16 +1248,16 @@ export type Schemas = {
1256
1248
  countryId: string;
1257
1249
  /** Format: date-time */
1258
1250
  createdAt: string;
1259
- customFields?: Record<string, never>;
1251
+ customFields?: GenericRecord;
1260
1252
  id: string;
1261
1253
  name: string;
1262
1254
  /** Format: int64 */
1263
1255
  position?: number;
1264
1256
  shortCode: string;
1265
- translated?: {
1266
- countryId?: string;
1267
- name?: string;
1268
- shortCode?: string;
1257
+ translated: {
1258
+ countryId: string;
1259
+ name: string;
1260
+ shortCode: string;
1269
1261
  };
1270
1262
  /** Format: date-time */
1271
1263
  updatedAt?: string;
@@ -1321,7 +1313,7 @@ export type Schemas = {
1321
1313
  Currency: {
1322
1314
  /** Format: date-time */
1323
1315
  createdAt: string;
1324
- customFields?: Record<string, never>;
1316
+ customFields?: GenericRecord;
1325
1317
  /** Format: float */
1326
1318
  factor: number;
1327
1319
  id: string;
@@ -1349,11 +1341,11 @@ export type Schemas = {
1349
1341
  interval: number;
1350
1342
  roundForNet: boolean;
1351
1343
  };
1352
- translated?: {
1353
- isoCode?: string;
1354
- name?: string;
1355
- shortName?: string;
1356
- symbol?: string;
1344
+ translated: {
1345
+ isoCode: string;
1346
+ name: string;
1347
+ shortName: string;
1348
+ symbol: string;
1357
1349
  };
1358
1350
  /** Format: date-time */
1359
1351
  updatedAt?: string;
@@ -1368,7 +1360,7 @@ export type Schemas = {
1368
1360
  CurrencyJsonApi: components["schemas"]["resource"] & {
1369
1361
  /** Format: date-time */
1370
1362
  createdAt: string;
1371
- customFields?: Record<string, never>;
1363
+ customFields?: GenericRecord;
1372
1364
  /** Format: float */
1373
1365
  factor: number;
1374
1366
  id: string;
@@ -1396,11 +1388,11 @@ export type Schemas = {
1396
1388
  interval: number;
1397
1389
  roundForNet: boolean;
1398
1390
  };
1399
- translated?: {
1400
- isoCode?: string;
1401
- name?: string;
1402
- shortName?: string;
1403
- symbol?: string;
1391
+ translated: {
1392
+ isoCode: string;
1393
+ name: string;
1394
+ shortName: string;
1395
+ symbol: string;
1404
1396
  };
1405
1397
  /** Format: date-time */
1406
1398
  updatedAt?: string;
@@ -1441,7 +1433,7 @@ export type Schemas = {
1441
1433
  customerGroupId?: string;
1442
1434
  customerId?: string;
1443
1435
  id: string;
1444
- price: Record<string, never>;
1436
+ price: GenericRecord;
1445
1437
  product?: components["schemas"]["Product"];
1446
1438
  productId: string;
1447
1439
  productVersionId?: string;
@@ -1464,7 +1456,7 @@ export type Schemas = {
1464
1456
  createdAt: string;
1465
1457
  createdById?: string;
1466
1458
  customerNumber: string;
1467
- customFields?: Record<string, never>;
1459
+ customFields?: GenericRecord;
1468
1460
  defaultBillingAddress?: components["schemas"]["CustomerAddress"];
1469
1461
  defaultBillingAddressId: string;
1470
1462
  defaultPaymentMethod?: components["schemas"]["PaymentMethod"];
@@ -1540,7 +1532,7 @@ export type Schemas = {
1540
1532
  /** Format: date-time */
1541
1533
  createdAt: string;
1542
1534
  customerId: string;
1543
- customFields?: Record<string, never>;
1535
+ customFields?: GenericRecord;
1544
1536
  department?: string;
1545
1537
  firstName: string;
1546
1538
  id: string;
@@ -1563,7 +1555,7 @@ export type Schemas = {
1563
1555
  countryId: string;
1564
1556
  countryState?: components["schemas"]["CountryState"];
1565
1557
  countryStateId?: string;
1566
- customFields?: Record<string, never>;
1558
+ customFields?: GenericRecord;
1567
1559
  department?: string;
1568
1560
  firstName: string;
1569
1561
  lastName: string;
@@ -1588,7 +1580,7 @@ export type Schemas = {
1588
1580
  CustomerGroup: {
1589
1581
  /** Format: date-time */
1590
1582
  createdAt: string;
1591
- customFields?: Record<string, never>;
1583
+ customFields?: GenericRecord;
1592
1584
  displayGross?: boolean;
1593
1585
  id: string;
1594
1586
  name: string;
@@ -1598,10 +1590,10 @@ export type Schemas = {
1598
1590
  registrationSeoMetaDescription?: string;
1599
1591
  registrationTitle?: string;
1600
1592
  translated: {
1601
- name?: string;
1602
- registrationIntroduction?: string;
1603
- registrationSeoMetaDescription?: string;
1604
- registrationTitle?: string;
1593
+ name: string;
1594
+ registrationIntroduction: string;
1595
+ registrationSeoMetaDescription: string;
1596
+ registrationTitle: string;
1605
1597
  };
1606
1598
  /** Format: date-time */
1607
1599
  updatedAt?: string;
@@ -1632,7 +1624,7 @@ export type Schemas = {
1632
1624
  /** Format: date-time */
1633
1625
  createdAt: string;
1634
1626
  customerId: string;
1635
- customFields?: Record<string, never>;
1627
+ customFields?: GenericRecord;
1636
1628
  id: string;
1637
1629
  /** Format: date-time */
1638
1630
  updatedAt?: string;
@@ -1668,16 +1660,16 @@ export type Schemas = {
1668
1660
  DeliveryTime: {
1669
1661
  /** Format: date-time */
1670
1662
  createdAt: string;
1671
- customFields?: Record<string, never>;
1663
+ customFields?: GenericRecord;
1672
1664
  id: string;
1673
1665
  /** Format: int64 */
1674
1666
  max: number;
1675
1667
  /** Format: int64 */
1676
1668
  min: number;
1677
1669
  name: string;
1678
- translated?: {
1679
- name?: string;
1680
- unit?: string;
1670
+ translated: {
1671
+ name: string;
1672
+ unit: string;
1681
1673
  };
1682
1674
  unit: string;
1683
1675
  /** Format: date-time */
@@ -1690,7 +1682,7 @@ export type Schemas = {
1690
1682
  };
1691
1683
  /** Format: date-time */
1692
1684
  createdAt: string;
1693
- customFields?: Record<string, never>;
1685
+ customFields?: GenericRecord;
1694
1686
  deepLinkCode: string;
1695
1687
  dependentDocuments?: components["schemas"]["Document"][];
1696
1688
  documentMediaFile?: components["schemas"]["Media"];
@@ -1711,10 +1703,10 @@ export type Schemas = {
1711
1703
  updatedAt?: string;
1712
1704
  };
1713
1705
  DocumentBaseConfig: {
1714
- config?: Record<string, never>;
1706
+ config?: GenericRecord;
1715
1707
  /** Format: date-time */
1716
1708
  createdAt: string;
1717
- customFields?: Record<string, never>;
1709
+ customFields?: GenericRecord;
1718
1710
  documentNumber?: string;
1719
1711
  documentTypeId: string;
1720
1712
  filenamePrefix?: string;
@@ -1740,20 +1732,20 @@ export type Schemas = {
1740
1732
  DocumentType: {
1741
1733
  /** Format: date-time */
1742
1734
  createdAt: string;
1743
- customFields?: Record<string, never>;
1735
+ customFields?: GenericRecord;
1744
1736
  id: string;
1745
1737
  name: string;
1746
1738
  technicalName: string;
1747
- translated?: {
1748
- name?: string;
1749
- technicalName?: string;
1739
+ translated: {
1740
+ name: string;
1741
+ technicalName: string;
1750
1742
  };
1751
1743
  /** Format: date-time */
1752
1744
  updatedAt?: string;
1753
1745
  };
1754
1746
  EntitySearchResult: components["schemas"]["ArrayStruct"] & {
1755
1747
  /** Contains aggregated data. A simple example is the determination of the average price from a product search query. */
1756
- aggregations?: Record<string, never>[];
1748
+ aggregations?: GenericRecord[];
1757
1749
  entity?: string;
1758
1750
  /** The actual limit. This is used for pagination and goes together with the page. */
1759
1751
  limit?: number;
@@ -1819,7 +1811,6 @@ export type Schemas = {
1819
1811
  /** Format: date-time */
1820
1812
  createdAt: string;
1821
1813
  id?: string;
1822
- translated?: Record<string, never>;
1823
1814
  /** Format: date-time */
1824
1815
  updatedAt?: string;
1825
1816
  };
@@ -1842,24 +1833,23 @@ export type Schemas = {
1842
1833
  cmsPageVersionId?: string;
1843
1834
  /** Format: date-time */
1844
1835
  createdAt: string;
1845
- customFields?: Record<string, never>;
1836
+ customFields?: GenericRecord;
1846
1837
  id: string;
1847
1838
  keywords?: string;
1848
1839
  metaDescription?: string;
1849
1840
  metaTitle?: string;
1850
1841
  name: string;
1851
1842
  seoUrls?: components["schemas"]["SeoUrl"][];
1852
- slotConfig?: Record<string, never>;
1853
- translated?: {
1854
- apiAlias?: string;
1855
- cmsPageId?: string;
1856
- cmsPageVersionId?: string;
1857
- keywords?: string;
1858
- metaDescription?: string;
1859
- metaTitle?: string;
1860
- name?: string;
1861
- url?: string;
1862
- versionId?: string;
1843
+ slotConfig?: GenericRecord;
1844
+ translated: {
1845
+ cmsPageId: string;
1846
+ cmsPageVersionId: string;
1847
+ keywords: string;
1848
+ metaDescription: string;
1849
+ metaTitle: string;
1850
+ name: string;
1851
+ url: string;
1852
+ versionId: string;
1863
1853
  };
1864
1854
  /** Format: date-time */
1865
1855
  updatedAt?: string;
@@ -1872,7 +1862,7 @@ export type Schemas = {
1872
1862
  cmsPageVersionId?: string;
1873
1863
  /** Format: date-time */
1874
1864
  createdAt: string;
1875
- customFields?: Record<string, never>;
1865
+ customFields?: GenericRecord;
1876
1866
  id: string;
1877
1867
  keywords?: string;
1878
1868
  metaDescription?: string;
@@ -1910,16 +1900,16 @@ export type Schemas = {
1910
1900
  };
1911
1901
  };
1912
1902
  };
1913
- slotConfig?: Record<string, never>;
1914
- translated?: {
1915
- cmsPageId?: string;
1916
- cmsPageVersionId?: string;
1917
- keywords?: string;
1918
- metaDescription?: string;
1919
- metaTitle?: string;
1920
- name?: string;
1921
- url?: string;
1922
- versionId?: string;
1903
+ slotConfig?: GenericRecord;
1904
+ translated: {
1905
+ cmsPageId: string;
1906
+ cmsPageVersionId: string;
1907
+ keywords: string;
1908
+ metaDescription: string;
1909
+ metaTitle: string;
1910
+ name: string;
1911
+ url: string;
1912
+ versionId: string;
1923
1913
  };
1924
1914
  /** Format: date-time */
1925
1915
  updatedAt?: string;
@@ -1930,7 +1920,7 @@ export type Schemas = {
1930
1920
  children?: components["schemas"]["Language"][];
1931
1921
  /** Format: date-time */
1932
1922
  createdAt: string;
1933
- customFields?: Record<string, never>;
1923
+ customFields?: GenericRecord;
1934
1924
  id: string;
1935
1925
  locale?: components["schemas"]["Locale"];
1936
1926
  localeId: string;
@@ -1945,7 +1935,7 @@ export type Schemas = {
1945
1935
  LanguageJsonApi: components["schemas"]["resource"] & {
1946
1936
  /** Format: date-time */
1947
1937
  createdAt: string;
1948
- customFields?: Record<string, never>;
1938
+ customFields?: GenericRecord;
1949
1939
  id: string;
1950
1940
  localeId: string;
1951
1941
  name: string;
@@ -2089,14 +2079,14 @@ export type Schemas = {
2089
2079
  code: string;
2090
2080
  /** Format: date-time */
2091
2081
  createdAt: string;
2092
- customFields?: Record<string, never>;
2082
+ customFields?: GenericRecord;
2093
2083
  id: string;
2094
2084
  name: string;
2095
2085
  territory: string;
2096
- translated?: {
2097
- code?: string;
2098
- name?: string;
2099
- territory?: string;
2086
+ translated: {
2087
+ code: string;
2088
+ name: string;
2089
+ territory: string;
2100
2090
  };
2101
2091
  /** Format: date-time */
2102
2092
  updatedAt?: string;
@@ -2119,13 +2109,13 @@ export type Schemas = {
2119
2109
  id?: string;
2120
2110
  name: string;
2121
2111
  systemDefault?: boolean;
2122
- translated?: {
2123
- description?: string;
2124
- footerHtml?: string;
2125
- footerPlain?: string;
2126
- headerHtml?: string;
2127
- headerPlain?: string;
2128
- name?: string;
2112
+ translated: {
2113
+ description: string;
2114
+ footerHtml: string;
2115
+ footerPlain: string;
2116
+ headerHtml: string;
2117
+ headerPlain: string;
2118
+ name: string;
2129
2119
  };
2130
2120
  /** Format: date-time */
2131
2121
  updatedAt?: string;
@@ -2135,16 +2125,16 @@ export type Schemas = {
2135
2125
  contentPlain: string;
2136
2126
  /** Format: date-time */
2137
2127
  createdAt: string;
2138
- customFields?: Record<string, never>;
2128
+ customFields?: GenericRecord;
2139
2129
  id?: string;
2140
2130
  mailTemplateType?: components["schemas"]["MailTemplateType"];
2141
2131
  media?: components["schemas"]["MailTemplateMedia"][];
2142
2132
  senderName?: string;
2143
2133
  systemDefault?: boolean;
2144
- translated?: {
2145
- contentHtml?: string;
2146
- contentPlain?: string;
2147
- senderName?: string;
2134
+ translated: {
2135
+ contentHtml: string;
2136
+ contentPlain: string;
2137
+ senderName: string;
2148
2138
  };
2149
2139
  /** Format: date-time */
2150
2140
  updatedAt?: string;
@@ -2161,13 +2151,13 @@ export type Schemas = {
2161
2151
  MailTemplateType: {
2162
2152
  /** Format: date-time */
2163
2153
  createdAt: string;
2164
- customFields?: Record<string, never>;
2154
+ customFields?: GenericRecord;
2165
2155
  id: string;
2166
2156
  name: string;
2167
2157
  technicalName: string;
2168
- translated?: {
2169
- name?: string;
2170
- technicalName?: string;
2158
+ translated: {
2159
+ name: string;
2160
+ technicalName: string;
2171
2161
  };
2172
2162
  /** Format: date-time */
2173
2163
  updatedAt?: string;
@@ -2200,10 +2190,10 @@ export type Schemas = {
2200
2190
  alt?: string;
2201
2191
  /** @enum {string} */
2202
2192
  apiAlias: "media";
2203
- config?: Record<string, never>;
2193
+ config?: GenericRecord;
2204
2194
  /** Format: date-time */
2205
2195
  createdAt: string;
2206
- customFields?: Record<string, never>;
2196
+ customFields?: GenericRecord;
2207
2197
  extensions?: {
2208
2198
  mediaAiTag?: {
2209
2199
  data?: {
@@ -2239,16 +2229,15 @@ export type Schemas = {
2239
2229
  private: boolean;
2240
2230
  thumbnails?: components["schemas"]["MediaThumbnail"][];
2241
2231
  title?: string;
2242
- translated?: {
2243
- alt?: string;
2244
- apiAlias?: string;
2245
- fileExtension?: string;
2246
- fileName?: string;
2247
- mimeType?: string;
2248
- path?: string;
2249
- title?: string;
2250
- uploadedAt?: string;
2251
- url?: string;
2232
+ translated: {
2233
+ alt: string;
2234
+ fileExtension: string;
2235
+ fileName: string;
2236
+ mimeType: string;
2237
+ path: string;
2238
+ title: string;
2239
+ uploadedAt: string;
2240
+ url: string;
2252
2241
  };
2253
2242
  /** Format: date-time */
2254
2243
  updatedAt?: string;
@@ -2262,8 +2251,7 @@ export type Schemas = {
2262
2251
  createdAt: string;
2263
2252
  id: string;
2264
2253
  media?: components["schemas"]["Media"];
2265
- tags?: Record<string, never>[];
2266
- translated?: Record<string, never>;
2254
+ tags?: GenericRecord[];
2267
2255
  /** Format: date-time */
2268
2256
  updatedAt?: string;
2269
2257
  };
@@ -2298,7 +2286,7 @@ export type Schemas = {
2298
2286
  MediaThumbnail: {
2299
2287
  /** Format: date-time */
2300
2288
  createdAt: string;
2301
- customFields?: Record<string, never>;
2289
+ customFields?: GenericRecord;
2302
2290
  /** Format: int64 */
2303
2291
  height: number;
2304
2292
  id: string;
@@ -2314,7 +2302,7 @@ export type Schemas = {
2314
2302
  MediaThumbnailSize: {
2315
2303
  /** Format: date-time */
2316
2304
  createdAt: string;
2317
- customFields?: Record<string, never>;
2305
+ customFields?: GenericRecord;
2318
2306
  /** Format: int64 */
2319
2307
  height: number;
2320
2308
  id: string;
@@ -2366,7 +2354,6 @@ export type Schemas = {
2366
2354
  /** Format: date-time */
2367
2355
  createdAt: string;
2368
2356
  id?: string;
2369
- translated?: Record<string, never>;
2370
2357
  /** Format: date-time */
2371
2358
  updatedAt?: string;
2372
2359
  };
@@ -2388,7 +2375,6 @@ export type Schemas = {
2388
2375
  /** Format: date-time */
2389
2376
  createdAt: string;
2390
2377
  id?: string;
2391
- translated?: Record<string, never>;
2392
2378
  /** Format: date-time */
2393
2379
  updatedAt?: string;
2394
2380
  };
@@ -2411,7 +2397,7 @@ export type Schemas = {
2411
2397
  currencyFactor: number;
2412
2398
  currencyId: string;
2413
2399
  customerComment?: string;
2414
- customFields?: Record<string, never>;
2400
+ customFields?: GenericRecord;
2415
2401
  deepLinkCode?: string;
2416
2402
  deliveries?: components["schemas"]["OrderDelivery"][];
2417
2403
  documents: components["schemas"]["Document"][];
@@ -2461,7 +2447,7 @@ export type Schemas = {
2461
2447
  price: components["schemas"]["CalculatedPrice"];
2462
2448
  salesChannelId: string;
2463
2449
  shippingCosts?: {
2464
- calculatedTaxes?: Record<string, never>;
2450
+ calculatedTaxes?: GenericRecord;
2465
2451
  listPrice?: {
2466
2452
  /** Format: float */
2467
2453
  discount?: number;
@@ -2472,12 +2458,12 @@ export type Schemas = {
2472
2458
  };
2473
2459
  /** Format: int64 */
2474
2460
  quantity: number;
2475
- referencePrice?: Record<string, never>;
2461
+ referencePrice?: GenericRecord;
2476
2462
  regulationPrice?: {
2477
2463
  /** Format: float */
2478
2464
  price?: number;
2479
2465
  };
2480
- taxRules?: Record<string, never>;
2466
+ taxRules?: GenericRecord;
2481
2467
  /** Format: float */
2482
2468
  totalPrice: number;
2483
2469
  /** Format: float */
@@ -2506,7 +2492,7 @@ export type Schemas = {
2506
2492
  countryStateId?: string;
2507
2493
  /** Format: date-time */
2508
2494
  createdAt: string;
2509
- customFields?: Record<string, never>;
2495
+ customFields?: GenericRecord;
2510
2496
  department?: string;
2511
2497
  firstName: string;
2512
2498
  id: string;
@@ -2526,7 +2512,7 @@ export type Schemas = {
2526
2512
  /** Format: date-time */
2527
2513
  createdAt: string;
2528
2514
  customerNumber?: string;
2529
- customFields?: Record<string, never>;
2515
+ customFields?: GenericRecord;
2530
2516
  email: string;
2531
2517
  firstName: string;
2532
2518
  id: string;
@@ -2542,13 +2528,13 @@ export type Schemas = {
2542
2528
  OrderDelivery: {
2543
2529
  /** Format: date-time */
2544
2530
  createdAt: string;
2545
- customFields?: Record<string, never>;
2531
+ customFields?: GenericRecord;
2546
2532
  id: string;
2547
2533
  orderId: string;
2548
2534
  orderVersionId?: string;
2549
2535
  positions?: components["schemas"]["OrderDeliveryPosition"][];
2550
2536
  shippingCosts?: {
2551
- calculatedTaxes?: Record<string, never>;
2537
+ calculatedTaxes?: GenericRecord;
2552
2538
  listPrice?: {
2553
2539
  /** Format: float */
2554
2540
  discount?: number;
@@ -2559,12 +2545,12 @@ export type Schemas = {
2559
2545
  };
2560
2546
  /** Format: int64 */
2561
2547
  quantity: number;
2562
- referencePrice?: Record<string, never>;
2548
+ referencePrice?: GenericRecord;
2563
2549
  regulationPrice?: {
2564
2550
  /** Format: float */
2565
2551
  price?: number;
2566
2552
  };
2567
- taxRules?: Record<string, never>;
2553
+ taxRules?: GenericRecord;
2568
2554
  /** Format: float */
2569
2555
  totalPrice: number;
2570
2556
  /** Format: float */
@@ -2589,14 +2575,14 @@ export type Schemas = {
2589
2575
  OrderDeliveryPosition: {
2590
2576
  /** Format: date-time */
2591
2577
  createdAt: string;
2592
- customFields?: Record<string, never>;
2578
+ customFields?: GenericRecord;
2593
2579
  id: string;
2594
2580
  orderDeliveryId: string;
2595
2581
  orderDeliveryVersionId?: string;
2596
2582
  orderLineItemId: string;
2597
2583
  orderLineItemVersionId?: string;
2598
2584
  price?: {
2599
- calculatedTaxes?: Record<string, never>;
2585
+ calculatedTaxes?: GenericRecord;
2600
2586
  listPrice?: {
2601
2587
  /** Format: float */
2602
2588
  discount?: number;
@@ -2607,12 +2593,12 @@ export type Schemas = {
2607
2593
  };
2608
2594
  /** Format: int64 */
2609
2595
  quantity: number;
2610
- referencePrice?: Record<string, never>;
2596
+ referencePrice?: GenericRecord;
2611
2597
  regulationPrice?: {
2612
2598
  /** Format: float */
2613
2599
  price?: number;
2614
2600
  };
2615
- taxRules?: Record<string, never>;
2601
+ taxRules?: GenericRecord;
2616
2602
  /** Format: float */
2617
2603
  totalPrice: number;
2618
2604
  /** Format: float */
@@ -2636,7 +2622,7 @@ export type Schemas = {
2636
2622
  coverId?: string;
2637
2623
  /** Format: date-time */
2638
2624
  createdAt: string;
2639
- customFields?: Record<string, never>;
2625
+ customFields?: GenericRecord;
2640
2626
  description?: string;
2641
2627
  downloads?: components["schemas"]["OrderLineItemDownload"][];
2642
2628
  extensions?: {
@@ -2685,7 +2671,7 @@ export type Schemas = {
2685
2671
  categoryIds?: readonly string[];
2686
2672
  /** Format: date-time */
2687
2673
  createdAt?: string;
2688
- customFields?: Record<string, never>;
2674
+ customFields?: GenericRecord;
2689
2675
  features?: unknown[];
2690
2676
  isCloseout?: boolean;
2691
2677
  isNew?: boolean;
@@ -2718,21 +2704,20 @@ export type Schemas = {
2718
2704
  states: string[];
2719
2705
  /** Format: float */
2720
2706
  totalPrice?: number;
2721
- translated?: {
2722
- apiAlias?: string;
2723
- coverId?: string;
2724
- description?: string;
2725
- identifier?: string;
2726
- label?: string;
2727
- orderId?: string;
2728
- orderVersionId?: string;
2729
- parentId?: string;
2730
- parentVersionId?: string;
2731
- productId?: string;
2732
- productVersionId?: string;
2733
- referencedId?: string;
2734
- type?: string;
2735
- versionId?: string;
2707
+ translated: {
2708
+ coverId: string;
2709
+ description: string;
2710
+ identifier: string;
2711
+ label: string;
2712
+ orderId: string;
2713
+ orderVersionId: string;
2714
+ parentId: string;
2715
+ parentVersionId: string;
2716
+ productId: string;
2717
+ productVersionId: string;
2718
+ referencedId: string;
2719
+ type: string;
2720
+ versionId: string;
2736
2721
  };
2737
2722
  type?: string;
2738
2723
  /** Format: float */
@@ -2745,7 +2730,7 @@ export type Schemas = {
2745
2730
  accessGranted: boolean;
2746
2731
  /** Format: date-time */
2747
2732
  createdAt: string;
2748
- customFields?: Record<string, never>;
2733
+ customFields?: GenericRecord;
2749
2734
  id: string;
2750
2735
  media: components["schemas"]["Media"];
2751
2736
  mediaId: string;
@@ -2778,14 +2763,14 @@ export type Schemas = {
2778
2763
  orderId: string;
2779
2764
  orderVersionId?: string;
2780
2765
  price?: {
2781
- calculatedTaxes?: Record<string, never>;
2766
+ calculatedTaxes?: GenericRecord;
2782
2767
  /** Format: float */
2783
2768
  netPrice: number;
2784
2769
  /** Format: float */
2785
2770
  positionPrice: number;
2786
2771
  /** Format: float */
2787
2772
  rawTotal: number;
2788
- taxRules?: Record<string, never>;
2773
+ taxRules?: GenericRecord;
2789
2774
  taxStatus: string;
2790
2775
  /** Format: float */
2791
2776
  totalPrice: number;
@@ -2794,7 +2779,7 @@ export type Schemas = {
2794
2779
  requestedAt: string;
2795
2780
  returnNumber: string;
2796
2781
  shippingCosts?: {
2797
- calculatedTaxes?: Record<string, never>;
2782
+ calculatedTaxes?: GenericRecord;
2798
2783
  listPrice?: {
2799
2784
  /** Format: float */
2800
2785
  discount?: number;
@@ -2805,12 +2790,12 @@ export type Schemas = {
2805
2790
  };
2806
2791
  /** Format: int64 */
2807
2792
  quantity: number;
2808
- referencePrice?: Record<string, never>;
2793
+ referencePrice?: GenericRecord;
2809
2794
  regulationPrice?: {
2810
2795
  /** Format: float */
2811
2796
  price?: number;
2812
2797
  };
2813
- taxRules?: Record<string, never>;
2798
+ taxRules?: GenericRecord;
2814
2799
  /** Format: float */
2815
2800
  totalPrice: number;
2816
2801
  /** Format: float */
@@ -2826,7 +2811,7 @@ export type Schemas = {
2826
2811
  OrderReturnLineItem: {
2827
2812
  /** Format: date-time */
2828
2813
  createdAt: string;
2829
- customFields?: Record<string, never>;
2814
+ customFields?: GenericRecord;
2830
2815
  id: string;
2831
2816
  orderLineItemId: string;
2832
2817
  orderLineItemVersionId?: string;
@@ -2852,9 +2837,9 @@ export type Schemas = {
2852
2837
  createdAt: string;
2853
2838
  id: string;
2854
2839
  reasonKey: string;
2855
- translated?: {
2856
- content?: string;
2857
- reasonKey?: string;
2840
+ translated: {
2841
+ content: string;
2842
+ reasonKey: string;
2858
2843
  };
2859
2844
  /** Format: date-time */
2860
2845
  updatedAt?: string;
@@ -2878,7 +2863,7 @@ export type Schemas = {
2878
2863
  };
2879
2864
  OrderTransaction: {
2880
2865
  amount: {
2881
- calculatedTaxes?: Record<string, never>;
2866
+ calculatedTaxes?: GenericRecord;
2882
2867
  listPrice?: {
2883
2868
  /** Format: float */
2884
2869
  discount?: number;
@@ -2889,12 +2874,12 @@ export type Schemas = {
2889
2874
  };
2890
2875
  /** Format: int64 */
2891
2876
  quantity: number;
2892
- referencePrice?: Record<string, never>;
2877
+ referencePrice?: GenericRecord;
2893
2878
  regulationPrice?: {
2894
2879
  /** Format: float */
2895
2880
  price?: number;
2896
2881
  };
2897
- taxRules?: Record<string, never>;
2882
+ taxRules?: GenericRecord;
2898
2883
  /** Format: float */
2899
2884
  totalPrice: number;
2900
2885
  /** Format: float */
@@ -2903,7 +2888,7 @@ export type Schemas = {
2903
2888
  captures?: components["schemas"]["OrderTransactionCapture"][];
2904
2889
  /** Format: date-time */
2905
2890
  createdAt: string;
2906
- customFields?: Record<string, never>;
2891
+ customFields?: GenericRecord;
2907
2892
  id: string;
2908
2893
  orderId: string;
2909
2894
  orderVersionId?: string;
@@ -2917,7 +2902,7 @@ export type Schemas = {
2917
2902
  };
2918
2903
  OrderTransactionCapture: {
2919
2904
  amount: {
2920
- calculatedTaxes?: Record<string, never>;
2905
+ calculatedTaxes?: GenericRecord;
2921
2906
  listPrice?: {
2922
2907
  /** Format: float */
2923
2908
  discount?: number;
@@ -2928,12 +2913,12 @@ export type Schemas = {
2928
2913
  };
2929
2914
  /** Format: int64 */
2930
2915
  quantity: number;
2931
- referencePrice?: Record<string, never>;
2916
+ referencePrice?: GenericRecord;
2932
2917
  regulationPrice?: {
2933
2918
  /** Format: float */
2934
2919
  price?: number;
2935
2920
  };
2936
- taxRules?: Record<string, never>;
2921
+ taxRules?: GenericRecord;
2937
2922
  /** Format: float */
2938
2923
  totalPrice: number;
2939
2924
  /** Format: float */
@@ -2941,7 +2926,7 @@ export type Schemas = {
2941
2926
  };
2942
2927
  /** Format: date-time */
2943
2928
  createdAt: string;
2944
- customFields?: Record<string, never>;
2929
+ customFields?: GenericRecord;
2945
2930
  externalReference?: string;
2946
2931
  id: string;
2947
2932
  orderTransactionId: string;
@@ -2956,7 +2941,7 @@ export type Schemas = {
2956
2941
  };
2957
2942
  OrderTransactionCaptureRefund: {
2958
2943
  amount: {
2959
- calculatedTaxes?: Record<string, never>;
2944
+ calculatedTaxes?: GenericRecord;
2960
2945
  listPrice?: {
2961
2946
  /** Format: float */
2962
2947
  discount?: number;
@@ -2967,12 +2952,12 @@ export type Schemas = {
2967
2952
  };
2968
2953
  /** Format: int64 */
2969
2954
  quantity: number;
2970
- referencePrice?: Record<string, never>;
2955
+ referencePrice?: GenericRecord;
2971
2956
  regulationPrice?: {
2972
2957
  /** Format: float */
2973
2958
  price?: number;
2974
2959
  };
2975
- taxRules?: Record<string, never>;
2960
+ taxRules?: GenericRecord;
2976
2961
  /** Format: float */
2977
2962
  totalPrice: number;
2978
2963
  /** Format: float */
@@ -2982,7 +2967,7 @@ export type Schemas = {
2982
2967
  captureVersionId?: string;
2983
2968
  /** Format: date-time */
2984
2969
  createdAt: string;
2985
- customFields?: Record<string, never>;
2970
+ customFields?: GenericRecord;
2986
2971
  externalReference?: string;
2987
2972
  id: string;
2988
2973
  positions?: components["schemas"]["OrderTransactionCaptureRefundPosition"][];
@@ -2996,7 +2981,7 @@ export type Schemas = {
2996
2981
  };
2997
2982
  OrderTransactionCaptureRefundPosition: {
2998
2983
  amount: {
2999
- calculatedTaxes?: Record<string, never>;
2984
+ calculatedTaxes?: GenericRecord;
3000
2985
  listPrice?: {
3001
2986
  /** Format: float */
3002
2987
  discount?: number;
@@ -3007,12 +2992,12 @@ export type Schemas = {
3007
2992
  };
3008
2993
  /** Format: int64 */
3009
2994
  quantity: number;
3010
- referencePrice?: Record<string, never>;
2995
+ referencePrice?: GenericRecord;
3011
2996
  regulationPrice?: {
3012
2997
  /** Format: float */
3013
2998
  price?: number;
3014
2999
  };
3015
- taxRules?: Record<string, never>;
3000
+ taxRules?: GenericRecord;
3016
3001
  /** Format: float */
3017
3002
  totalPrice: number;
3018
3003
  /** Format: float */
@@ -3020,7 +3005,7 @@ export type Schemas = {
3020
3005
  };
3021
3006
  /** Format: date-time */
3022
3007
  createdAt: string;
3023
- customFields?: Record<string, never>;
3008
+ customFields?: GenericRecord;
3024
3009
  externalReference?: string;
3025
3010
  id: string;
3026
3011
  orderLineItem?: components["schemas"]["OrderLineItem"];
@@ -3050,7 +3035,7 @@ export type Schemas = {
3050
3035
  asynchronous?: boolean;
3051
3036
  /** Format: date-time */
3052
3037
  createdAt: string;
3053
- customFields?: Record<string, never>;
3038
+ customFields?: GenericRecord;
3054
3039
  description?: string;
3055
3040
  distinguishableName?: string;
3056
3041
  id: string;
@@ -3070,13 +3055,13 @@ export type Schemas = {
3070
3055
  /** Runtime field, cannot be used as part of the criteria. */
3071
3056
  synchronous?: boolean;
3072
3057
  technicalName?: string;
3073
- translated?: {
3074
- description?: string;
3075
- distinguishableName?: string;
3076
- mediaId?: string;
3077
- name?: string;
3078
- shortName?: string;
3079
- technicalName?: string;
3058
+ translated: {
3059
+ description: string;
3060
+ distinguishableName: string;
3061
+ mediaId: string;
3062
+ name: string;
3063
+ shortName: string;
3064
+ technicalName: string;
3080
3065
  };
3081
3066
  /** Format: date-time */
3082
3067
  updatedAt?: string;
@@ -3088,7 +3073,7 @@ export type Schemas = {
3088
3073
  asynchronous?: boolean;
3089
3074
  /** Format: date-time */
3090
3075
  createdAt: string;
3091
- customFields?: Record<string, never>;
3076
+ customFields?: GenericRecord;
3092
3077
  description?: string;
3093
3078
  distinguishableName?: string;
3094
3079
  id: string;
@@ -3124,13 +3109,13 @@ export type Schemas = {
3124
3109
  /** Runtime field, cannot be used as part of the criteria. */
3125
3110
  synchronous?: boolean;
3126
3111
  technicalName?: string;
3127
- translated?: {
3128
- description?: string;
3129
- distinguishableName?: string;
3130
- mediaId?: string;
3131
- name?: string;
3132
- shortName?: string;
3133
- technicalName?: string;
3112
+ translated: {
3113
+ description: string;
3114
+ distinguishableName: string;
3115
+ mediaId: string;
3116
+ name: string;
3117
+ shortName: string;
3118
+ technicalName: string;
3134
3119
  };
3135
3120
  /** Format: date-time */
3136
3121
  updatedAt?: string;
@@ -3139,38 +3124,37 @@ export type Schemas = {
3139
3124
  amountNet?: number | null;
3140
3125
  amountTotal?: number | null;
3141
3126
  approvalRuleId?: string;
3142
- billingAddress?: Record<string, unknown> | null;
3143
- cartPayload?: Record<string, never> | string;
3144
- country?: Record<string, unknown> | null;
3127
+ billingAddress?: GenericRecord;
3128
+ cartPayload?: GenericRecord | string;
3129
+ country?: GenericRecord;
3145
3130
  countryId?: string;
3146
- currency?: Record<string, unknown> | null;
3131
+ currency?: GenericRecord;
3147
3132
  currencyId?: string;
3148
3133
  customerId?: string;
3149
3134
  decidedById?: string;
3150
3135
  employeeId?: string;
3151
3136
  /** Format: uuid */
3152
3137
  id?: string;
3153
- itemRounding?: Record<string, unknown> | null;
3154
- language?: Record<string, unknown> | null;
3138
+ itemRounding?: GenericRecord;
3139
+ language?: GenericRecord;
3155
3140
  languageId?: string;
3156
3141
  lineItemCount?: number;
3157
3142
  number?: string;
3158
3143
  originalPrice?: number | null;
3159
3144
  paymentMethodId?: string;
3160
- price?: Record<string, never>;
3145
+ price?: GenericRecord;
3161
3146
  reason?: string;
3162
- salesChannel?: Record<string, unknown> | null;
3147
+ salesChannel?: GenericRecord;
3163
3148
  salesChannelId?: string;
3164
3149
  shippingMethodId?: string;
3165
3150
  stateId?: string;
3166
3151
  taxStatus?: string;
3167
- totalRounding?: Record<string, unknown> | null;
3152
+ totalRounding?: GenericRecord;
3168
3153
  };
3169
3154
  Plugin: {
3170
3155
  /** Format: date-time */
3171
3156
  createdAt: string;
3172
3157
  id?: string;
3173
- translated?: Record<string, never>;
3174
3158
  /** Format: date-time */
3175
3159
  updatedAt?: string;
3176
3160
  };
@@ -3239,7 +3223,7 @@ export type Schemas = {
3239
3223
  /** Format: date-time */
3240
3224
  createdAt: string;
3241
3225
  crossSellings?: components["schemas"]["ProductCrossSelling"][];
3242
- customFields?: Record<string, never>;
3226
+ customFields?: GenericRecord;
3243
3227
  deliveryTime?: components["schemas"]["DeliveryTime"];
3244
3228
  deliveryTimeId?: string;
3245
3229
  description?: string;
@@ -3330,7 +3314,7 @@ export type Schemas = {
3330
3314
  seoCategory: components["schemas"]["Category"];
3331
3315
  seoUrls?: components["schemas"]["SeoUrl"][];
3332
3316
  shippingFree?: boolean;
3333
- sortedProperties?: Record<string, never>;
3317
+ sortedProperties?: GenericRecord;
3334
3318
  states?: readonly string[];
3335
3319
  /** Format: int64 */
3336
3320
  stock: number;
@@ -3341,33 +3325,32 @@ export type Schemas = {
3341
3325
  tax?: components["schemas"]["Tax"];
3342
3326
  taxId: string;
3343
3327
  translated: {
3344
- apiAlias?: string;
3345
- canonicalProductId?: string;
3346
- canonicalProductVersionId?: string;
3347
- cmsPageId?: string;
3348
- cmsPageVersionId?: string;
3349
- coverId?: string;
3350
- deliveryTimeId?: string;
3351
- description?: string;
3352
- displayGroup?: string;
3353
- ean?: string;
3354
- keywords?: string;
3355
- manufacturerId?: string;
3356
- manufacturerNumber?: string;
3357
- metaDescription?: string;
3358
- metaTitle?: string;
3359
- name?: string;
3360
- packUnit?: string;
3361
- packUnitPlural?: string;
3362
- parentId?: string;
3363
- parentVersionId?: string;
3364
- productManufacturerVersionId?: string;
3365
- productMediaVersionId?: string;
3366
- productNumber?: string;
3367
- releaseDate?: string;
3368
- taxId?: string;
3369
- unitId?: string;
3370
- versionId?: string;
3328
+ canonicalProductId: string;
3329
+ canonicalProductVersionId: string;
3330
+ cmsPageId: string;
3331
+ cmsPageVersionId: string;
3332
+ coverId: string;
3333
+ deliveryTimeId: string;
3334
+ description: string;
3335
+ displayGroup: string;
3336
+ ean: string;
3337
+ keywords: string;
3338
+ manufacturerId: string;
3339
+ manufacturerNumber: string;
3340
+ metaDescription: string;
3341
+ metaTitle: string;
3342
+ name: string;
3343
+ packUnit: string;
3344
+ packUnitPlural: string;
3345
+ parentId: string;
3346
+ parentVersionId: string;
3347
+ productManufacturerVersionId: string;
3348
+ productMediaVersionId: string;
3349
+ productNumber: string;
3350
+ releaseDate: string;
3351
+ taxId: string;
3352
+ unitId: string;
3353
+ versionId: string;
3371
3354
  };
3372
3355
  unit?: components["schemas"]["Unit"];
3373
3356
  unitId?: string;
@@ -3385,7 +3368,7 @@ export type Schemas = {
3385
3368
  ProductConfiguratorSetting: {
3386
3369
  /** Format: date-time */
3387
3370
  createdAt: string;
3388
- customFields?: Record<string, never>;
3371
+ customFields?: GenericRecord;
3389
3372
  id: string;
3390
3373
  media?: components["schemas"]["Media"];
3391
3374
  mediaId?: string;
@@ -3411,11 +3394,11 @@ export type Schemas = {
3411
3394
  position: number;
3412
3395
  sortBy?: string;
3413
3396
  sortDirection?: string;
3414
- translated?: {
3415
- name?: string;
3416
- sortBy?: string;
3417
- sortDirection?: string;
3418
- type?: string;
3397
+ translated: {
3398
+ name: string;
3399
+ sortBy: string;
3400
+ sortDirection: string;
3401
+ type: string;
3419
3402
  };
3420
3403
  type: string;
3421
3404
  /** Format: date-time */
@@ -3436,7 +3419,7 @@ export type Schemas = {
3436
3419
  ProductDownload: {
3437
3420
  /** Format: date-time */
3438
3421
  createdAt: string;
3439
- customFields?: Record<string, never>;
3422
+ customFields?: GenericRecord;
3440
3423
  id: string;
3441
3424
  media?: components["schemas"]["Media"];
3442
3425
  mediaId: string;
@@ -3460,7 +3443,6 @@ export type Schemas = {
3460
3443
  /** Format: date-time */
3461
3444
  createdAt: string;
3462
3445
  id?: string;
3463
- translated?: Record<string, never>;
3464
3446
  /** Format: date-time */
3465
3447
  updatedAt?: string;
3466
3448
  };
@@ -3469,14 +3451,14 @@ export type Schemas = {
3469
3451
  available?: boolean;
3470
3452
  /** Format: int64 */
3471
3453
  availableStock?: number;
3472
- calculatedCheapestPrice?: Record<string, never>;
3454
+ calculatedCheapestPrice?: GenericRecord;
3473
3455
  /**
3474
3456
  * Format: int64
3475
3457
  * Runtime field, cannot be used as part of the criteria.
3476
3458
  */
3477
3459
  calculatedMaxPurchase?: number;
3478
- calculatedPrice?: Record<string, never>;
3479
- calculatedPrices?: Record<string, never>[];
3460
+ calculatedPrice?: GenericRecord;
3461
+ calculatedPrices?: GenericRecord[];
3480
3462
  canonicalProductId?: string;
3481
3463
  canonicalProductVersionId?: string;
3482
3464
  categoryIds?: readonly string[];
@@ -3488,7 +3470,7 @@ export type Schemas = {
3488
3470
  coverId?: string;
3489
3471
  /** Format: date-time */
3490
3472
  createdAt: string;
3491
- customFields?: Record<string, never>;
3473
+ customFields?: GenericRecord;
3492
3474
  deliveryTimeId?: string;
3493
3475
  description?: string;
3494
3476
  displayGroup?: string;
@@ -3915,40 +3897,40 @@ export type Schemas = {
3915
3897
  /** Format: int64 */
3916
3898
  sales?: number;
3917
3899
  shippingFree?: boolean;
3918
- sortedProperties?: Record<string, never>;
3900
+ sortedProperties?: GenericRecord;
3919
3901
  states?: readonly string[];
3920
3902
  /** Format: int64 */
3921
3903
  stock: number;
3922
3904
  streamIds?: readonly string[];
3923
3905
  tagIds?: readonly string[];
3924
3906
  taxId: string;
3925
- translated?: {
3926
- canonicalProductId?: string;
3927
- canonicalProductVersionId?: string;
3928
- cmsPageId?: string;
3929
- cmsPageVersionId?: string;
3930
- coverId?: string;
3931
- deliveryTimeId?: string;
3932
- description?: string;
3933
- displayGroup?: string;
3934
- ean?: string;
3935
- keywords?: string;
3936
- manufacturerId?: string;
3937
- manufacturerNumber?: string;
3938
- metaDescription?: string;
3939
- metaTitle?: string;
3940
- name?: string;
3941
- packUnit?: string;
3942
- packUnitPlural?: string;
3943
- parentId?: string;
3944
- parentVersionId?: string;
3945
- productManufacturerVersionId?: string;
3946
- productMediaVersionId?: string;
3947
- productNumber?: string;
3948
- releaseDate?: string;
3949
- taxId?: string;
3950
- unitId?: string;
3951
- versionId?: string;
3907
+ translated: {
3908
+ canonicalProductId: string;
3909
+ canonicalProductVersionId: string;
3910
+ cmsPageId: string;
3911
+ cmsPageVersionId: string;
3912
+ coverId: string;
3913
+ deliveryTimeId: string;
3914
+ description: string;
3915
+ displayGroup: string;
3916
+ ean: string;
3917
+ keywords: string;
3918
+ manufacturerId: string;
3919
+ manufacturerNumber: string;
3920
+ metaDescription: string;
3921
+ metaTitle: string;
3922
+ name: string;
3923
+ packUnit: string;
3924
+ packUnitPlural: string;
3925
+ parentId: string;
3926
+ parentVersionId: string;
3927
+ productManufacturerVersionId: string;
3928
+ productMediaVersionId: string;
3929
+ productNumber: string;
3930
+ releaseDate: string;
3931
+ taxId: string;
3932
+ unitId: string;
3933
+ versionId: string;
3952
3934
  };
3953
3935
  unitId?: string;
3954
3936
  /** Format: date-time */
@@ -4080,19 +4062,19 @@ export type Schemas = {
4080
4062
  ProductManufacturer: {
4081
4063
  /** Format: date-time */
4082
4064
  createdAt: string;
4083
- customFields?: Record<string, never>;
4065
+ customFields?: GenericRecord;
4084
4066
  description?: string;
4085
4067
  id: string;
4086
4068
  link?: string;
4087
4069
  media?: components["schemas"]["Media"];
4088
4070
  mediaId?: string;
4089
4071
  name: string;
4090
- translated?: {
4091
- description?: string;
4092
- link?: string;
4093
- mediaId?: string;
4094
- name?: string;
4095
- versionId?: string;
4072
+ translated: {
4073
+ description: string;
4074
+ link: string;
4075
+ mediaId: string;
4076
+ name: string;
4077
+ versionId: string;
4096
4078
  };
4097
4079
  /** Format: date-time */
4098
4080
  updatedAt?: string;
@@ -4101,7 +4083,7 @@ export type Schemas = {
4101
4083
  ProductMedia: {
4102
4084
  /** Format: date-time */
4103
4085
  createdAt: string;
4104
- customFields?: Record<string, never>;
4086
+ customFields?: GenericRecord;
4105
4087
  id: string;
4106
4088
  media: components["schemas"]["Media"];
4107
4089
  mediaId: string;
@@ -4127,7 +4109,7 @@ export type Schemas = {
4127
4109
  /** Format: date-time */
4128
4110
  createdAt: string;
4129
4111
  customerId?: string;
4130
- customFields?: Record<string, never>;
4112
+ customFields?: GenericRecord;
4131
4113
  externalUser?: string;
4132
4114
  id: string;
4133
4115
  languageId: string;
@@ -4150,10 +4132,10 @@ export type Schemas = {
4150
4132
  salesChannel?: components["schemas"]["SalesChannel"];
4151
4133
  salesChannelId: string;
4152
4134
  summary?: string;
4153
- translated?: {
4154
- productId?: string;
4155
- salesChannelId?: string;
4156
- summary?: string;
4135
+ translated: {
4136
+ productId: string;
4137
+ salesChannelId: string;
4138
+ summary: string;
4157
4139
  };
4158
4140
  /** Format: date-time */
4159
4141
  updatedAt?: string;
@@ -4188,9 +4170,9 @@ export type Schemas = {
4188
4170
  label: string;
4189
4171
  /** Format: int64 */
4190
4172
  priority: number;
4191
- translated?: {
4192
- key?: string;
4193
- label?: string;
4173
+ translated: {
4174
+ key: string;
4175
+ label: string;
4194
4176
  };
4195
4177
  /** Format: date-time */
4196
4178
  updatedAt?: string;
@@ -4198,13 +4180,13 @@ export type Schemas = {
4198
4180
  ProductStream: {
4199
4181
  /** Format: date-time */
4200
4182
  createdAt: string;
4201
- customFields?: Record<string, never>;
4183
+ customFields?: GenericRecord;
4202
4184
  description?: string;
4203
4185
  id: string;
4204
4186
  name: string;
4205
- translated?: {
4206
- description?: string;
4207
- name?: string;
4187
+ translated: {
4188
+ description: string;
4189
+ name: string;
4208
4190
  };
4209
4191
  /** Format: date-time */
4210
4192
  updatedAt?: string;
@@ -4233,9 +4215,8 @@ export type Schemas = {
4233
4215
  Promotion: {
4234
4216
  /** Format: date-time */
4235
4217
  createdAt: string;
4236
- customFields?: Record<string, never>;
4218
+ customFields?: GenericRecord;
4237
4219
  id?: string;
4238
- translated?: Record<string, never>;
4239
4220
  /** Format: date-time */
4240
4221
  updatedAt?: string;
4241
4222
  };
@@ -4277,7 +4258,7 @@ export type Schemas = {
4277
4258
  PropertyGroup: {
4278
4259
  /** Format: date-time */
4279
4260
  createdAt: string;
4280
- customFields?: Record<string, never>;
4261
+ customFields?: GenericRecord;
4281
4262
  description?: string;
4282
4263
  displayType: string;
4283
4264
  filterable?: boolean;
@@ -4287,11 +4268,11 @@ export type Schemas = {
4287
4268
  /** Format: int64 */
4288
4269
  position?: number;
4289
4270
  sortingType: string;
4290
- translated?: {
4291
- description?: string;
4292
- displayType?: string;
4293
- name?: string;
4294
- sortingType?: string;
4271
+ translated: {
4272
+ description: string;
4273
+ displayType: string;
4274
+ name: string;
4275
+ sortingType: string;
4295
4276
  };
4296
4277
  /** Format: date-time */
4297
4278
  updatedAt?: string;
@@ -4301,7 +4282,7 @@ export type Schemas = {
4301
4282
  colorHexCode?: string;
4302
4283
  /** Format: date-time */
4303
4284
  createdAt: string;
4304
- customFields?: Record<string, never>;
4285
+ customFields?: GenericRecord;
4305
4286
  group: components["schemas"]["PropertyGroup"];
4306
4287
  groupId: string;
4307
4288
  id: string;
@@ -4312,11 +4293,11 @@ export type Schemas = {
4312
4293
  /** Format: int64 */
4313
4294
  position?: number;
4314
4295
  translated: {
4315
- colorHexCode?: string;
4316
- groupId?: string;
4317
- mediaId?: string;
4318
- name?: string;
4319
- option?: string;
4296
+ colorHexCode: string;
4297
+ groupId: string;
4298
+ mediaId: string;
4299
+ name: string;
4300
+ option: string;
4320
4301
  };
4321
4302
  /** Format: date-time */
4322
4303
  updatedAt?: string;
@@ -4342,7 +4323,7 @@ export type Schemas = {
4342
4323
  currency?: components["schemas"]["Currency"];
4343
4324
  currencyId: string;
4344
4325
  customerId: string;
4345
- customFields?: Record<string, never>;
4326
+ customFields?: GenericRecord;
4346
4327
  deliveries?: components["schemas"]["QuoteDelivery"][];
4347
4328
  discount?: {
4348
4329
  type?: string;
@@ -4359,14 +4340,14 @@ export type Schemas = {
4359
4340
  orderId?: string;
4360
4341
  orderVersionId?: string;
4361
4342
  price: {
4362
- calculatedTaxes?: Record<string, never>;
4343
+ calculatedTaxes?: GenericRecord;
4363
4344
  /** Format: float */
4364
4345
  netPrice: number;
4365
4346
  /** Format: float */
4366
4347
  positionPrice: number;
4367
4348
  /** Format: float */
4368
4349
  rawTotal: number;
4369
- taxRules?: Record<string, never>;
4350
+ taxRules?: GenericRecord;
4370
4351
  taxStatus: string;
4371
4352
  /** Format: float */
4372
4353
  totalPrice: number;
@@ -4376,7 +4357,7 @@ export type Schemas = {
4376
4357
  /** Format: date-time */
4377
4358
  sentAt?: string;
4378
4359
  shippingCosts?: {
4379
- calculatedTaxes?: Record<string, never>;
4360
+ calculatedTaxes?: GenericRecord;
4380
4361
  listPrice?: {
4381
4362
  /** Format: float */
4382
4363
  discount?: number;
@@ -4387,12 +4368,12 @@ export type Schemas = {
4387
4368
  };
4388
4369
  /** Format: int64 */
4389
4370
  quantity: number;
4390
- referencePrice?: Record<string, never>;
4371
+ referencePrice?: GenericRecord;
4391
4372
  regulationPrice?: {
4392
4373
  /** Format: float */
4393
4374
  price?: number;
4394
4375
  };
4395
- taxRules?: Record<string, never>;
4376
+ taxRules?: GenericRecord;
4396
4377
  /** Format: float */
4397
4378
  totalPrice: number;
4398
4379
  /** Format: float */
@@ -4433,13 +4414,13 @@ export type Schemas = {
4433
4414
  QuoteDelivery: {
4434
4415
  /** Format: date-time */
4435
4416
  createdAt: string;
4436
- customFields?: Record<string, never>;
4417
+ customFields?: GenericRecord;
4437
4418
  id: string;
4438
4419
  positions?: components["schemas"]["QuoteDeliveryPosition"][];
4439
4420
  quoteId: string;
4440
4421
  quoteVersionId?: string;
4441
4422
  shippingCosts?: {
4442
- calculatedTaxes?: Record<string, never>;
4423
+ calculatedTaxes?: GenericRecord;
4443
4424
  listPrice?: {
4444
4425
  /** Format: float */
4445
4426
  discount?: number;
@@ -4450,12 +4431,12 @@ export type Schemas = {
4450
4431
  };
4451
4432
  /** Format: int64 */
4452
4433
  quantity: number;
4453
- referencePrice?: Record<string, never>;
4434
+ referencePrice?: GenericRecord;
4454
4435
  regulationPrice?: {
4455
4436
  /** Format: float */
4456
4437
  price?: number;
4457
4438
  };
4458
- taxRules?: Record<string, never>;
4439
+ taxRules?: GenericRecord;
4459
4440
  /** Format: float */
4460
4441
  totalPrice: number;
4461
4442
  /** Format: float */
@@ -4474,10 +4455,10 @@ export type Schemas = {
4474
4455
  QuoteDeliveryPosition: {
4475
4456
  /** Format: date-time */
4476
4457
  createdAt: string;
4477
- customFields?: Record<string, never>;
4458
+ customFields?: GenericRecord;
4478
4459
  id: string;
4479
4460
  price?: {
4480
- calculatedTaxes?: Record<string, never>;
4461
+ calculatedTaxes?: GenericRecord;
4481
4462
  listPrice?: {
4482
4463
  /** Format: float */
4483
4464
  discount?: number;
@@ -4488,12 +4469,12 @@ export type Schemas = {
4488
4469
  };
4489
4470
  /** Format: int64 */
4490
4471
  quantity: number;
4491
- referencePrice?: Record<string, never>;
4472
+ referencePrice?: GenericRecord;
4492
4473
  regulationPrice?: {
4493
4474
  /** Format: float */
4494
4475
  price?: number;
4495
4476
  };
4496
- taxRules?: Record<string, never>;
4477
+ taxRules?: GenericRecord;
4497
4478
  /** Format: float */
4498
4479
  totalPrice: number;
4499
4480
  /** Format: float */
@@ -4515,10 +4496,10 @@ export type Schemas = {
4515
4496
  };
4516
4497
  QuoteDocument: {
4517
4498
  active?: boolean;
4518
- config: Record<string, never>;
4499
+ config: GenericRecord;
4519
4500
  /** Format: date-time */
4520
4501
  createdAt: string;
4521
- customFields?: Record<string, never>;
4502
+ customFields?: GenericRecord;
4522
4503
  deepLinkCode: string;
4523
4504
  documentMediaFile?: components["schemas"]["Media"];
4524
4505
  documentMediaFileId?: string;
@@ -4551,7 +4532,7 @@ export type Schemas = {
4551
4532
  coverId?: string;
4552
4533
  /** Format: date-time */
4553
4534
  createdAt: string;
4554
- customFields?: Record<string, never>;
4535
+ customFields?: GenericRecord;
4555
4536
  description?: string;
4556
4537
  discount?: {
4557
4538
  type?: string;
@@ -4565,14 +4546,14 @@ export type Schemas = {
4565
4546
  parent?: components["schemas"]["QuoteLineItem"];
4566
4547
  parentId?: string;
4567
4548
  parentVersionId?: string;
4568
- payload?: Record<string, never>;
4549
+ payload?: GenericRecord;
4569
4550
  /** Format: int64 */
4570
4551
  position: number;
4571
- priceDefinition?: Record<string, never>;
4552
+ priceDefinition?: GenericRecord;
4572
4553
  productId?: string;
4573
- productPrice?: Record<string, never>;
4554
+ productPrice?: GenericRecord;
4574
4555
  productVersionId?: string;
4575
- purchasePrice?: Record<string, never>;
4556
+ purchasePrice?: GenericRecord;
4576
4557
  /** Format: int64 */
4577
4558
  quantity: number;
4578
4559
  quoteId: string;
@@ -4592,7 +4573,7 @@ export type Schemas = {
4592
4573
  };
4593
4574
  QuoteTransaction: {
4594
4575
  amount: {
4595
- calculatedTaxes?: Record<string, never>;
4576
+ calculatedTaxes?: GenericRecord;
4596
4577
  listPrice?: {
4597
4578
  /** Format: float */
4598
4579
  discount?: number;
@@ -4603,12 +4584,12 @@ export type Schemas = {
4603
4584
  };
4604
4585
  /** Format: int64 */
4605
4586
  quantity: number;
4606
- referencePrice?: Record<string, never>;
4587
+ referencePrice?: GenericRecord;
4607
4588
  regulationPrice?: {
4608
4589
  /** Format: float */
4609
4590
  price?: number;
4610
4591
  };
4611
- taxRules?: Record<string, never>;
4592
+ taxRules?: GenericRecord;
4612
4593
  /** Format: float */
4613
4594
  totalPrice: number;
4614
4595
  /** Format: float */
@@ -4616,7 +4597,7 @@ export type Schemas = {
4616
4597
  };
4617
4598
  /** Format: date-time */
4618
4599
  createdAt: string;
4619
- customFields?: Record<string, never>;
4600
+ customFields?: GenericRecord;
4620
4601
  id: string;
4621
4602
  paymentMethod?: components["schemas"]["PaymentMethod"];
4622
4603
  paymentMethodId: string;
@@ -4657,7 +4638,7 @@ export type Schemas = {
4657
4638
  Rule: {
4658
4639
  /** Format: date-time */
4659
4640
  createdAt: string;
4660
- customFields?: Record<string, never>;
4641
+ customFields?: GenericRecord;
4661
4642
  description?: string;
4662
4643
  extensions?: {
4663
4644
  warehouseGroup?: {
@@ -4718,7 +4699,7 @@ export type Schemas = {
4718
4699
  };
4719
4700
  SalesChannel: {
4720
4701
  active?: boolean;
4721
- configuration?: Record<string, never>;
4702
+ configuration?: GenericRecord;
4722
4703
  country?: components["schemas"]["Country"];
4723
4704
  countryId: string;
4724
4705
  /** Format: date-time */
@@ -4726,7 +4707,7 @@ export type Schemas = {
4726
4707
  currency?: components["schemas"]["Currency"];
4727
4708
  currencyId: string;
4728
4709
  customerGroupId: string;
4729
- customFields?: Record<string, never>;
4710
+ customFields?: GenericRecord;
4730
4711
  domains?: components["schemas"]["SalesChannelDomain"][];
4731
4712
  footerCategory?: components["schemas"]["Category"];
4732
4713
  footerCategoryId?: string;
@@ -4754,24 +4735,24 @@ export type Schemas = {
4754
4735
  shippingMethodId: string;
4755
4736
  shortName?: string;
4756
4737
  taxCalculationType?: string;
4757
- translated?: {
4758
- countryId?: string;
4759
- currencyId?: string;
4760
- customerGroupId?: string;
4761
- footerCategoryId?: string;
4762
- footerCategoryVersionId?: string;
4763
- hreflangDefaultDomainId?: string;
4764
- languageId?: string;
4765
- mailHeaderFooterId?: string;
4766
- name?: string;
4767
- navigationCategoryId?: string;
4768
- navigationCategoryVersionId?: string;
4769
- paymentMethodId?: string;
4770
- serviceCategoryId?: string;
4771
- serviceCategoryVersionId?: string;
4772
- shippingMethodId?: string;
4773
- shortName?: string;
4774
- taxCalculationType?: string;
4738
+ translated: {
4739
+ countryId: string;
4740
+ currencyId: string;
4741
+ customerGroupId: string;
4742
+ footerCategoryId: string;
4743
+ footerCategoryVersionId: string;
4744
+ hreflangDefaultDomainId: string;
4745
+ languageId: string;
4746
+ mailHeaderFooterId: string;
4747
+ name: string;
4748
+ navigationCategoryId: string;
4749
+ navigationCategoryVersionId: string;
4750
+ paymentMethodId: string;
4751
+ serviceCategoryId: string;
4752
+ serviceCategoryVersionId: string;
4753
+ shippingMethodId: string;
4754
+ shortName: string;
4755
+ taxCalculationType: string;
4775
4756
  };
4776
4757
  /** Format: date-time */
4777
4758
  updatedAt?: string;
@@ -4834,7 +4815,7 @@ export type Schemas = {
4834
4815
  createdAt: string;
4835
4816
  currency?: components["schemas"]["Currency"];
4836
4817
  currencyId: string;
4837
- customFields?: Record<string, never>;
4818
+ customFields?: GenericRecord;
4838
4819
  hreflangUseOnlyLocale?: boolean;
4839
4820
  id: string;
4840
4821
  language?: components["schemas"]["Language"];
@@ -4850,22 +4831,21 @@ export type Schemas = {
4850
4831
  /** Format: date-time */
4851
4832
  createdAt: string;
4852
4833
  id?: string;
4853
- translated?: Record<string, never>;
4854
4834
  /** Format: date-time */
4855
4835
  updatedAt?: string;
4856
4836
  };
4857
4837
  Salutation: {
4858
4838
  /** Format: date-time */
4859
4839
  createdAt: string;
4860
- customFields?: Record<string, never>;
4840
+ customFields?: GenericRecord;
4861
4841
  displayName: string;
4862
4842
  id: string;
4863
4843
  letterName: string;
4864
4844
  salutationKey: string;
4865
- translated?: {
4866
- displayName?: string;
4867
- letterName?: string;
4868
- salutationKey?: string;
4845
+ translated: {
4846
+ displayName: string;
4847
+ letterName: string;
4848
+ salutationKey: string;
4869
4849
  };
4870
4850
  /** Format: date-time */
4871
4851
  updatedAt?: string;
@@ -4873,15 +4853,15 @@ export type Schemas = {
4873
4853
  SalutationJsonApi: components["schemas"]["resource"] & {
4874
4854
  /** Format: date-time */
4875
4855
  createdAt: string;
4876
- customFields?: Record<string, never>;
4856
+ customFields?: GenericRecord;
4877
4857
  displayName: string;
4878
4858
  id: string;
4879
4859
  letterName: string;
4880
4860
  salutationKey: string;
4881
- translated?: {
4882
- displayName?: string;
4883
- letterName?: string;
4884
- salutationKey?: string;
4861
+ translated: {
4862
+ displayName: string;
4863
+ letterName: string;
4864
+ salutationKey: string;
4885
4865
  };
4886
4866
  /** Format: date-time */
4887
4867
  updatedAt?: string;
@@ -4903,13 +4883,13 @@ export type Schemas = {
4903
4883
  SearchByImageSearchTermResponse: {
4904
4884
  /** @enum {string} */
4905
4885
  apiAlias: "product_image_upload_search_term";
4906
- extensions?: Record<string, never>[];
4886
+ extensions?: GenericRecord[];
4907
4887
  term: string;
4908
4888
  }[];
4909
4889
  SeoUrl: {
4910
4890
  /** Format: date-time */
4911
4891
  createdAt: string;
4912
- customFields?: Record<string, never>;
4892
+ customFields?: GenericRecord;
4913
4893
  /** Runtime field, cannot be used as part of the criteria. */
4914
4894
  error?: string;
4915
4895
  foreignKey: string;
@@ -4934,7 +4914,7 @@ export type Schemas = {
4934
4914
  SeoUrlJsonApi: components["schemas"]["resource"] & {
4935
4915
  /** Format: date-time */
4936
4916
  createdAt: string;
4937
- customFields?: Record<string, never>;
4917
+ customFields?: GenericRecord;
4938
4918
  /** Runtime field, cannot be used as part of the criteria. */
4939
4919
  error?: string;
4940
4920
  foreignKey: string;
@@ -4955,7 +4935,7 @@ export type Schemas = {
4955
4935
  SeoUrlTemplate: {
4956
4936
  /** Format: date-time */
4957
4937
  createdAt: string;
4958
- customFields?: Record<string, never>;
4938
+ customFields?: GenericRecord;
4959
4939
  id?: string;
4960
4940
  isValid?: boolean;
4961
4941
  salesChannelId?: string;
@@ -4967,7 +4947,7 @@ export type Schemas = {
4967
4947
  availabilityRule?: components["schemas"]["Rule"];
4968
4948
  /** Format: date-time */
4969
4949
  createdAt: string;
4970
- customFields?: Record<string, never>;
4950
+ customFields?: GenericRecord;
4971
4951
  deliveryTime?: components["schemas"]["DeliveryTime"];
4972
4952
  deliveryTimeId: string;
4973
4953
  description?: string;
@@ -4983,14 +4963,14 @@ export type Schemas = {
4983
4963
  taxType: string;
4984
4964
  technicalName?: string;
4985
4965
  trackingUrl?: string;
4986
- translated?: {
4987
- deliveryTimeId?: string;
4988
- description?: string;
4989
- mediaId?: string;
4990
- name?: string;
4991
- taxType?: string;
4992
- technicalName?: string;
4993
- trackingUrl?: string;
4966
+ translated: {
4967
+ deliveryTimeId: string;
4968
+ description: string;
4969
+ mediaId: string;
4970
+ name: string;
4971
+ taxType: string;
4972
+ technicalName: string;
4973
+ trackingUrl: string;
4994
4974
  };
4995
4975
  /** Format: date-time */
4996
4976
  updatedAt?: string;
@@ -4999,7 +4979,7 @@ export type Schemas = {
4999
4979
  active?: boolean;
5000
4980
  /** Format: date-time */
5001
4981
  createdAt: string;
5002
- customFields?: Record<string, never>;
4982
+ customFields?: GenericRecord;
5003
4983
  deliveryTimeId: string;
5004
4984
  description?: string;
5005
4985
  id: string;
@@ -5102,14 +5082,14 @@ export type Schemas = {
5102
5082
  taxType: string;
5103
5083
  technicalName?: string;
5104
5084
  trackingUrl?: string;
5105
- translated?: {
5106
- deliveryTimeId?: string;
5107
- description?: string;
5108
- mediaId?: string;
5109
- name?: string;
5110
- taxType?: string;
5111
- technicalName?: string;
5112
- trackingUrl?: string;
5085
+ translated: {
5086
+ deliveryTimeId: string;
5087
+ description: string;
5088
+ mediaId: string;
5089
+ name: string;
5090
+ taxType: string;
5091
+ technicalName: string;
5092
+ trackingUrl: string;
5113
5093
  };
5114
5094
  /** Format: date-time */
5115
5095
  updatedAt?: string;
@@ -5239,8 +5219,8 @@ export type Schemas = {
5239
5219
  calculationRuleId?: string;
5240
5220
  /** Format: date-time */
5241
5221
  createdAt: string;
5242
- currencyPrice?: Record<string, never>;
5243
- customFields?: Record<string, never>;
5222
+ currencyPrice?: GenericRecord;
5223
+ customFields?: GenericRecord;
5244
5224
  id: string;
5245
5225
  /** Format: float */
5246
5226
  quantityEnd?: number;
@@ -5265,7 +5245,7 @@ export type Schemas = {
5265
5245
  Snippet: {
5266
5246
  /** Format: date-time */
5267
5247
  createdAt: string;
5268
- customFields?: Record<string, never>;
5248
+ customFields?: GenericRecord;
5269
5249
  id?: string;
5270
5250
  setId: string;
5271
5251
  translationKey: string;
@@ -5276,7 +5256,7 @@ export type Schemas = {
5276
5256
  SnippetSet: {
5277
5257
  /** Format: date-time */
5278
5258
  createdAt: string;
5279
- customFields?: Record<string, never>;
5259
+ customFields?: GenericRecord;
5280
5260
  id?: string;
5281
5261
  iso: string;
5282
5262
  name: string;
@@ -5312,7 +5292,6 @@ export type Schemas = {
5312
5292
  id?: string;
5313
5293
  states?: components["schemas"]["StateMachineState"][];
5314
5294
  transitions?: components["schemas"]["StateMachineTransition"][];
5315
- translated?: Record<string, never>;
5316
5295
  /** Format: date-time */
5317
5296
  updatedAt?: string;
5318
5297
  };
@@ -5328,13 +5307,13 @@ export type Schemas = {
5328
5307
  StateMachineState: {
5329
5308
  /** Format: date-time */
5330
5309
  createdAt: string;
5331
- customFields?: Record<string, never>;
5310
+ customFields?: GenericRecord;
5332
5311
  id?: string;
5333
5312
  name: string;
5334
5313
  technicalName: string;
5335
5314
  translated: {
5336
- name?: string;
5337
- technicalName?: string;
5315
+ name: string;
5316
+ technicalName: string;
5338
5317
  };
5339
5318
  /** Format: date-time */
5340
5319
  updatedAt?: string;
@@ -5363,13 +5342,13 @@ export type Schemas = {
5363
5342
  addresses?: components["schemas"]["SubscriptionAddress"][];
5364
5343
  billingAddress?: components["schemas"]["SubscriptionAddress"];
5365
5344
  billingAddressId: string;
5366
- convertedOrder: Record<string, never>;
5345
+ convertedOrder: GenericRecord;
5367
5346
  /** Format: date-time */
5368
5347
  createdAt: string;
5369
5348
  cronInterval: string;
5370
5349
  currency?: components["schemas"]["Currency"];
5371
5350
  currencyId: string;
5372
- customFields?: Record<string, never>;
5351
+ customFields?: GenericRecord;
5373
5352
  dateInterval: string;
5374
5353
  id: string;
5375
5354
  /** Format: int64 */
@@ -5413,7 +5392,7 @@ export type Schemas = {
5413
5392
  countryStateId?: string;
5414
5393
  /** Format: date-time */
5415
5394
  createdAt: string;
5416
- customFields?: Record<string, never>;
5395
+ customFields?: GenericRecord;
5417
5396
  department?: string;
5418
5397
  firstName: string;
5419
5398
  id: string;
@@ -5437,7 +5416,7 @@ export type Schemas = {
5437
5416
  createdAt: string;
5438
5417
  customerId?: string;
5439
5418
  customerNumber?: string;
5440
- customFields?: Record<string, never>;
5419
+ customFields?: GenericRecord;
5441
5420
  email: string;
5442
5421
  firstName: string;
5443
5422
  id: string;
@@ -5459,11 +5438,11 @@ export type Schemas = {
5459
5438
  id: string;
5460
5439
  name: string;
5461
5440
  subscriptions?: components["schemas"]["Subscription"][];
5462
- translated?: {
5463
- availabilityRuleId?: string;
5464
- cronInterval?: string;
5465
- dateInterval?: string;
5466
- name?: string;
5441
+ translated: {
5442
+ availabilityRuleId: string;
5443
+ cronInterval: string;
5444
+ dateInterval: string;
5445
+ name: string;
5467
5446
  };
5468
5447
  /** Format: date-time */
5469
5448
  updatedAt?: string;
@@ -5477,18 +5456,18 @@ export type Schemas = {
5477
5456
  description?: string;
5478
5457
  /** Format: float */
5479
5458
  discountPercentage?: number;
5480
- discountPrice?: Record<string, never>;
5459
+ discountPrice?: GenericRecord;
5481
5460
  id: string;
5482
5461
  label?: string;
5483
5462
  /** Format: int64 */
5484
5463
  minimumExecutionCount?: number;
5485
5464
  name: string;
5486
5465
  subscriptions?: components["schemas"]["Subscription"][];
5487
- translated?: {
5488
- availabilityRuleId?: string;
5489
- description?: string;
5490
- label?: string;
5491
- name?: string;
5466
+ translated: {
5467
+ availabilityRuleId: string;
5468
+ description: string;
5469
+ label: string;
5470
+ name: string;
5492
5471
  };
5493
5472
  /** Format: date-time */
5494
5473
  updatedAt?: string;
@@ -5509,7 +5488,7 @@ export type Schemas = {
5509
5488
  description?: string;
5510
5489
  /** Format: float */
5511
5490
  discountPercentage?: number;
5512
- discountPrice?: Record<string, never>;
5491
+ discountPrice?: GenericRecord;
5513
5492
  id: string;
5514
5493
  label?: string;
5515
5494
  /** Format: int64 */
@@ -5532,11 +5511,11 @@ export type Schemas = {
5532
5511
  };
5533
5512
  };
5534
5513
  };
5535
- translated?: {
5536
- availabilityRuleId?: string;
5537
- description?: string;
5538
- label?: string;
5539
- name?: string;
5514
+ translated: {
5515
+ availabilityRuleId: string;
5516
+ description: string;
5517
+ label: string;
5518
+ name: string;
5540
5519
  };
5541
5520
  /** Format: date-time */
5542
5521
  updatedAt?: string;
@@ -5576,7 +5555,6 @@ export type Schemas = {
5576
5555
  /** Format: date-time */
5577
5556
  createdAt: string;
5578
5557
  id?: string;
5579
- translated?: Record<string, never>;
5580
5558
  /** Format: date-time */
5581
5559
  updatedAt?: string;
5582
5560
  };
@@ -5584,7 +5562,6 @@ export type Schemas = {
5584
5562
  /** Format: date-time */
5585
5563
  createdAt: string;
5586
5564
  id?: string;
5587
- translated?: Record<string, never>;
5588
5565
  /** Format: date-time */
5589
5566
  updatedAt?: string;
5590
5567
  };
@@ -5592,7 +5569,6 @@ export type Schemas = {
5592
5569
  /** Format: date-time */
5593
5570
  createdAt: string;
5594
5571
  id?: string;
5595
- translated?: Record<string, never>;
5596
5572
  /** Format: date-time */
5597
5573
  updatedAt?: string;
5598
5574
  };
@@ -5616,10 +5592,10 @@ export type Schemas = {
5616
5592
  createdAt: string;
5617
5593
  displayName?: string;
5618
5594
  id: string;
5619
- translated?: {
5620
- cmsSectionId?: string;
5621
- cmsSectionVersionId?: string;
5622
- displayName?: string;
5595
+ translated: {
5596
+ cmsSectionId: string;
5597
+ cmsSectionVersionId: string;
5598
+ displayName: string;
5623
5599
  };
5624
5600
  /** Format: date-time */
5625
5601
  updatedAt?: string;
@@ -5648,7 +5624,7 @@ export type Schemas = {
5648
5624
  confirmInput?: boolean;
5649
5625
  /** Format: date-time */
5650
5626
  createdAt: string;
5651
- decisionTree?: Record<string, never>;
5627
+ decisionTree?: GenericRecord;
5652
5628
  description?: string;
5653
5629
  displayName: string;
5654
5630
  exclusions?: components["schemas"]["SwagCustomizedProductsTemplateExclusion"][];
@@ -5661,20 +5637,20 @@ export type Schemas = {
5661
5637
  parentVersionId?: string;
5662
5638
  products?: components["schemas"]["Product"][];
5663
5639
  stepByStep?: boolean;
5664
- translated?: {
5665
- description?: string;
5666
- displayName?: string;
5667
- internalName?: string;
5668
- mediaId?: string;
5669
- parentVersionId?: string;
5670
- versionId?: string;
5640
+ translated: {
5641
+ description: string;
5642
+ displayName: string;
5643
+ internalName: string;
5644
+ mediaId: string;
5645
+ parentVersionId: string;
5646
+ versionId: string;
5671
5647
  };
5672
5648
  /** Format: date-time */
5673
5649
  updatedAt?: string;
5674
5650
  versionId?: string;
5675
5651
  };
5676
5652
  SwagCustomizedProductsTemplateConfiguration: {
5677
- configuration: Record<string, never>;
5653
+ configuration: GenericRecord;
5678
5654
  /** Format: date-time */
5679
5655
  createdAt: string;
5680
5656
  hash: string;
@@ -5688,7 +5664,7 @@ export type Schemas = {
5688
5664
  versionId?: string;
5689
5665
  };
5690
5666
  SwagCustomizedProductsTemplateConfigurationJsonApi: components["schemas"]["resource"] & {
5691
- configuration: Record<string, never>;
5667
+ configuration: GenericRecord;
5692
5668
  /** Format: date-time */
5693
5669
  createdAt: string;
5694
5670
  hash: string;
@@ -5776,10 +5752,10 @@ export type Schemas = {
5776
5752
  operator: string;
5777
5753
  templateExclusionConditions?: components["schemas"]["SwagCustomizedProductsTemplateExclusionCondition"][];
5778
5754
  templateOptionType: string;
5779
- translated?: {
5780
- label?: string;
5781
- operator?: string;
5782
- templateOptionType?: string;
5755
+ translated: {
5756
+ label: string;
5757
+ operator: string;
5758
+ templateOptionType: string;
5783
5759
  };
5784
5760
  /** Format: date-time */
5785
5761
  updatedAt?: string;
@@ -5789,7 +5765,7 @@ export type Schemas = {
5789
5765
  confirmInput?: boolean;
5790
5766
  /** Format: date-time */
5791
5767
  createdAt: string;
5792
- decisionTree?: Record<string, never>;
5768
+ decisionTree?: GenericRecord;
5793
5769
  description?: string;
5794
5770
  displayName: string;
5795
5771
  id: string;
@@ -5875,13 +5851,13 @@ export type Schemas = {
5875
5851
  };
5876
5852
  };
5877
5853
  stepByStep?: boolean;
5878
- translated?: {
5879
- description?: string;
5880
- displayName?: string;
5881
- internalName?: string;
5882
- mediaId?: string;
5883
- parentVersionId?: string;
5884
- versionId?: string;
5854
+ translated: {
5855
+ description: string;
5856
+ displayName: string;
5857
+ internalName: string;
5858
+ mediaId: string;
5859
+ parentVersionId: string;
5860
+ versionId: string;
5885
5861
  };
5886
5862
  /** Format: date-time */
5887
5863
  updatedAt?: string;
@@ -5889,7 +5865,7 @@ export type Schemas = {
5889
5865
  };
5890
5866
  SwagCustomizedProductsTemplateOption: {
5891
5867
  advancedSurcharge?: boolean;
5892
- calculatedPrice?: Record<string, never>;
5868
+ calculatedPrice?: GenericRecord;
5893
5869
  /** Format: date-time */
5894
5870
  createdAt: string;
5895
5871
  description?: string;
@@ -5902,7 +5878,7 @@ export type Schemas = {
5902
5878
  placeholder?: string;
5903
5879
  /** Format: int64 */
5904
5880
  position?: number;
5905
- price?: Record<string, never>;
5881
+ price?: GenericRecord;
5906
5882
  prices?: components["schemas"]["SwagCustomizedProductsTemplateOptionPrice"][];
5907
5883
  relativeSurcharge?: boolean;
5908
5884
  required?: boolean;
@@ -5912,25 +5888,25 @@ export type Schemas = {
5912
5888
  templateExclusionConditions?: components["schemas"]["SwagCustomizedProductsTemplateExclusionCondition"][];
5913
5889
  templateId: string;
5914
5890
  templateVersionId?: string;
5915
- translated?: {
5916
- description?: string;
5917
- displayName?: string;
5918
- itemNumber?: string;
5919
- placeholder?: string;
5920
- taxId?: string;
5921
- templateId?: string;
5922
- templateVersionId?: string;
5923
- type?: string;
5891
+ translated: {
5892
+ description: string;
5893
+ displayName: string;
5894
+ itemNumber: string;
5895
+ placeholder: string;
5896
+ taxId: string;
5897
+ templateId: string;
5898
+ templateVersionId: string;
5899
+ type: string;
5924
5900
  };
5925
5901
  type: string;
5926
- typeProperties?: Record<string, never>;
5902
+ typeProperties?: GenericRecord;
5927
5903
  /** Format: date-time */
5928
5904
  updatedAt?: string;
5929
5905
  values?: components["schemas"]["SwagCustomizedProductsTemplateOptionValue"][];
5930
5906
  };
5931
5907
  SwagCustomizedProductsTemplateOptionJsonApi: components["schemas"]["resource"] & {
5932
5908
  advancedSurcharge?: boolean;
5933
- calculatedPrice?: Record<string, never>;
5909
+ calculatedPrice?: GenericRecord;
5934
5910
  /** Format: date-time */
5935
5911
  createdAt: string;
5936
5912
  description?: string;
@@ -5943,7 +5919,7 @@ export type Schemas = {
5943
5919
  placeholder?: string;
5944
5920
  /** Format: int64 */
5945
5921
  position?: number;
5946
- price?: Record<string, never>;
5922
+ price?: GenericRecord;
5947
5923
  relationships?: {
5948
5924
  prices?: {
5949
5925
  data?: {
@@ -6026,18 +6002,18 @@ export type Schemas = {
6026
6002
  taxId?: string;
6027
6003
  templateId: string;
6028
6004
  templateVersionId?: string;
6029
- translated?: {
6030
- description?: string;
6031
- displayName?: string;
6032
- itemNumber?: string;
6033
- placeholder?: string;
6034
- taxId?: string;
6035
- templateId?: string;
6036
- templateVersionId?: string;
6037
- type?: string;
6005
+ translated: {
6006
+ description: string;
6007
+ displayName: string;
6008
+ itemNumber: string;
6009
+ placeholder: string;
6010
+ taxId: string;
6011
+ templateId: string;
6012
+ templateVersionId: string;
6013
+ type: string;
6038
6014
  };
6039
6015
  type: string;
6040
- typeProperties?: Record<string, never>;
6016
+ typeProperties?: GenericRecord;
6041
6017
  /** Format: date-time */
6042
6018
  updatedAt?: string;
6043
6019
  };
@@ -6047,7 +6023,7 @@ export type Schemas = {
6047
6023
  id: string;
6048
6024
  /** Format: float */
6049
6025
  percentageSurcharge?: number;
6050
- price?: Record<string, never>;
6026
+ price?: GenericRecord;
6051
6027
  rule?: components["schemas"]["Rule"];
6052
6028
  ruleId?: string;
6053
6029
  templateOption?: components["schemas"]["SwagCustomizedProductsTemplateOption"];
@@ -6070,7 +6046,7 @@ export type Schemas = {
6070
6046
  percentageSurcharge?: number;
6071
6047
  /** Format: int64 */
6072
6048
  position: number;
6073
- price?: Record<string, never>;
6049
+ price?: GenericRecord;
6074
6050
  prices?: components["schemas"]["SwagCustomizedProductsTemplateOptionValuePrice"][];
6075
6051
  relativeSurcharge?: boolean;
6076
6052
  tax?: components["schemas"]["Tax"];
@@ -6079,17 +6055,17 @@ export type Schemas = {
6079
6055
  templateOption?: components["schemas"]["SwagCustomizedProductsTemplateOption"];
6080
6056
  templateOptionId: string;
6081
6057
  templateOptionVersionId?: string;
6082
- translated?: {
6083
- displayName?: string;
6084
- itemNumber?: string;
6085
- taxId?: string;
6086
- templateOptionId?: string;
6087
- templateOptionVersionId?: string;
6088
- versionId?: string;
6058
+ translated: {
6059
+ displayName: string;
6060
+ itemNumber: string;
6061
+ taxId: string;
6062
+ templateOptionId: string;
6063
+ templateOptionVersionId: string;
6064
+ versionId: string;
6089
6065
  };
6090
6066
  /** Format: date-time */
6091
6067
  updatedAt?: string;
6092
- value?: Record<string, never>;
6068
+ value?: GenericRecord;
6093
6069
  versionId?: string;
6094
6070
  };
6095
6071
  SwagCustomizedProductsTemplateOptionValueJsonApi: components["schemas"]["resource"] & {
@@ -6105,7 +6081,7 @@ export type Schemas = {
6105
6081
  percentageSurcharge?: number;
6106
6082
  /** Format: int64 */
6107
6083
  position: number;
6108
- price?: Record<string, never>;
6084
+ price?: GenericRecord;
6109
6085
  relationships?: {
6110
6086
  prices?: {
6111
6087
  data?: {
@@ -6172,17 +6148,17 @@ export type Schemas = {
6172
6148
  taxId?: string;
6173
6149
  templateOptionId: string;
6174
6150
  templateOptionVersionId?: string;
6175
- translated?: {
6176
- displayName?: string;
6177
- itemNumber?: string;
6178
- taxId?: string;
6179
- templateOptionId?: string;
6180
- templateOptionVersionId?: string;
6181
- versionId?: string;
6151
+ translated: {
6152
+ displayName: string;
6153
+ itemNumber: string;
6154
+ taxId: string;
6155
+ templateOptionId: string;
6156
+ templateOptionVersionId: string;
6157
+ versionId: string;
6182
6158
  };
6183
6159
  /** Format: date-time */
6184
6160
  updatedAt?: string;
6185
- value?: Record<string, never>;
6161
+ value?: GenericRecord;
6186
6162
  versionId?: string;
6187
6163
  };
6188
6164
  SwagCustomizedProductsTemplateOptionValuePrice: {
@@ -6191,7 +6167,7 @@ export type Schemas = {
6191
6167
  id: string;
6192
6168
  /** Format: float */
6193
6169
  percentageSurcharge?: number;
6194
- price?: Record<string, never>;
6170
+ price?: GenericRecord;
6195
6171
  rule?: components["schemas"]["Rule"];
6196
6172
  ruleId?: string;
6197
6173
  templateOptionValue?: components["schemas"]["SwagCustomizedProductsTemplateOptionValue"];
@@ -6368,7 +6344,7 @@ export type Schemas = {
6368
6344
  SystemConfig: {
6369
6345
  configurationKey: string;
6370
6346
  configurationValue: {
6371
- _value?: Record<string, never>;
6347
+ _value?: GenericRecord;
6372
6348
  };
6373
6349
  /** Format: date-time */
6374
6350
  createdAt: string;
@@ -6389,7 +6365,7 @@ export type Schemas = {
6389
6365
  Tax: {
6390
6366
  /** Format: date-time */
6391
6367
  createdAt: string;
6392
- customFields?: Record<string, never>;
6368
+ customFields?: GenericRecord;
6393
6369
  id: string;
6394
6370
  name: string;
6395
6371
  /**
@@ -6407,16 +6383,16 @@ export type Schemas = {
6407
6383
  appId?: string;
6408
6384
  /** Format: date-time */
6409
6385
  createdAt: string;
6410
- customFields?: Record<string, never>;
6386
+ customFields?: GenericRecord;
6411
6387
  id: string;
6412
6388
  name: string;
6413
6389
  /** Format: int64 */
6414
6390
  priority: number;
6415
6391
  processUrl?: string;
6416
- translated?: {
6417
- appId?: string;
6418
- name?: string;
6419
- processUrl?: string;
6392
+ translated: {
6393
+ appId: string;
6394
+ name: string;
6395
+ processUrl: string;
6420
6396
  };
6421
6397
  /** Format: date-time */
6422
6398
  updatedAt?: string;
@@ -6432,34 +6408,33 @@ export type Schemas = {
6432
6408
  /** Format: date-time */
6433
6409
  createdAt: string;
6434
6410
  id?: string;
6435
- translated?: Record<string, never>;
6436
6411
  /** Format: date-time */
6437
6412
  updatedAt?: string;
6438
6413
  };
6439
6414
  Theme: {
6440
6415
  active: boolean;
6441
6416
  author: string;
6442
- baseConfig?: Record<string, never>;
6443
- configValues?: Record<string, never>;
6417
+ baseConfig?: GenericRecord;
6418
+ configValues?: GenericRecord;
6444
6419
  /** Format: date-time */
6445
6420
  createdAt: string;
6446
- customFields?: Record<string, never>;
6421
+ customFields?: GenericRecord;
6447
6422
  description?: string;
6448
- helpTexts?: Record<string, never>;
6423
+ helpTexts?: GenericRecord;
6449
6424
  id: string;
6450
- labels?: Record<string, never>;
6425
+ labels?: GenericRecord;
6451
6426
  media?: components["schemas"]["Media"][];
6452
6427
  name: string;
6453
6428
  parentThemeId?: string;
6454
6429
  previewMediaId?: string;
6455
6430
  technicalName?: string;
6456
- translated?: {
6457
- author?: string;
6458
- description?: string;
6459
- name?: string;
6460
- parentThemeId?: string;
6461
- previewMediaId?: string;
6462
- technicalName?: string;
6431
+ translated: {
6432
+ author: string;
6433
+ description: string;
6434
+ name: string;
6435
+ parentThemeId: string;
6436
+ previewMediaId: string;
6437
+ technicalName: string;
6463
6438
  };
6464
6439
  /** Format: date-time */
6465
6440
  updatedAt?: string;
@@ -6468,13 +6443,13 @@ export type Schemas = {
6468
6443
  Unit: {
6469
6444
  /** Format: date-time */
6470
6445
  createdAt: string;
6471
- customFields?: Record<string, never>;
6446
+ customFields?: GenericRecord;
6472
6447
  id: string;
6473
6448
  name: string;
6474
6449
  shortCode: string;
6475
- translated?: {
6476
- name?: string;
6477
- shortCode?: string;
6450
+ translated: {
6451
+ name: string;
6452
+ shortCode: string;
6478
6453
  };
6479
6454
  /** Format: date-time */
6480
6455
  updatedAt?: string;
@@ -6630,7 +6605,7 @@ export type Schemas = {
6630
6605
  };
6631
6606
  relationshipLinks: {
6632
6607
  related?: components["schemas"]["link"];
6633
- self?: Record<string, never>[] & components["schemas"]["link"];
6608
+ self?: GenericRecord[] & components["schemas"]["link"];
6634
6609
  [key: string]: unknown;
6635
6610
  };
6636
6611
  relationshipToMany: components["schemas"]["linkage"][];
@@ -6664,16 +6639,16 @@ export type operations = {
6664
6639
  };
6665
6640
  response: {
6666
6641
  components?: {
6667
- callbacks?: Record<string, never>;
6668
- examples?: Record<string, never>;
6669
- headers?: Record<string, never>;
6670
- links?: Record<string, never>;
6671
- parameters?: Record<string, never>;
6672
- pathItems?: Record<string, never>;
6673
- requestBodies?: Record<string, never>;
6674
- responses?: Record<string, never>;
6675
- schemas?: Record<string, never>;
6676
- securitySchemes?: Record<string, never>;
6642
+ callbacks?: GenericRecord;
6643
+ examples?: GenericRecord;
6644
+ headers?: GenericRecord;
6645
+ links?: GenericRecord;
6646
+ parameters?: GenericRecord;
6647
+ pathItems?: GenericRecord;
6648
+ requestBodies?: GenericRecord;
6649
+ responses?: GenericRecord;
6650
+ schemas?: GenericRecord;
6651
+ securitySchemes?: GenericRecord;
6677
6652
  };
6678
6653
  externalDocs?: {
6679
6654
  description?: string;
@@ -6703,8 +6678,8 @@ export type operations = {
6703
6678
  };
6704
6679
  jsonSchemaDialect?: string;
6705
6680
  openapi: string;
6706
- paths?: Record<string, never>;
6707
- security?: Record<string, never>[];
6681
+ paths?: GenericRecord;
6682
+ security?: GenericRecord[];
6708
6683
  servers?: {
6709
6684
  url: string;
6710
6685
  }[];
@@ -6717,7 +6692,7 @@ export type operations = {
6717
6692
  };
6718
6693
  name: string;
6719
6694
  }[];
6720
- webhooks?: Record<string, never>;
6695
+ webhooks?: GenericRecord;
6721
6696
  };
6722
6697
  responseCode: 200;
6723
6698
  };
@@ -7152,7 +7127,7 @@ export type operations = {
7152
7127
  /** Name of the app */
7153
7128
  name: string;
7154
7129
  };
7155
- body?: Record<string, never>;
7130
+ body?: GenericRecord;
7156
7131
  response: {
7157
7132
  /** Format: date-time */
7158
7133
  expires?: string;
@@ -7317,13 +7292,22 @@ export type operations = {
7317
7292
  "sw-language-id"?: string;
7318
7293
  };
7319
7294
  body: {
7320
- // TODO: [OpenAPI][addLineItem] - add proper request body type with required fields
7321
- items: Array<{
7322
- id?: string; // TODO: [OpenAPI][addLineItem] - check if this is used at all?
7323
- referencedId: string;
7324
- quantity?: number;
7325
- type: "product" | "promotion" | "custom" | "credit"; // TODO: [OpenAPI][addLineItem] - add proper type -> see also #456
7326
- }>;
7295
+ items: (
7296
+ | {
7297
+ id: string;
7298
+ quantity: number;
7299
+ referencedId?: string;
7300
+ /** @enum {string} */
7301
+ type: "product" | "custom" | "credit" | "discount" | "container";
7302
+ }
7303
+ | {
7304
+ id?: string;
7305
+ quantity?: number;
7306
+ referencedId: string;
7307
+ /** @enum {string} */
7308
+ type: "promotion";
7309
+ }
7310
+ )[];
7327
7311
  };
7328
7312
  response: components["schemas"]["Cart"];
7329
7313
  responseCode: 200;
@@ -7387,14 +7371,14 @@ export type operations = {
7387
7371
  }[];
7388
7372
  paymentMethods?: {
7389
7373
  /** aggregation result */
7390
- aggregations?: Record<string, never>;
7374
+ aggregations?: GenericRecord;
7391
7375
  elements?: components["schemas"]["PaymentMethod"][];
7392
7376
  /** Total amount */
7393
7377
  total?: number;
7394
7378
  };
7395
7379
  shippingMethods?: {
7396
7380
  /** aggregation result */
7397
- aggregations?: Record<string, never>;
7381
+ aggregations?: GenericRecord;
7398
7382
  elements?: components["schemas"]["ShippingMethod"][];
7399
7383
  /** Total amount */
7400
7384
  total?: number;
@@ -7772,7 +7756,7 @@ export type operations = {
7772
7756
  };
7773
7757
  body: components["schemas"]["Criteria"] & {
7774
7758
  /** Return the categories as a tree or as a flat list. */
7775
- buildTree?: Record<string, never>[];
7759
+ buildTree?: GenericRecord[];
7776
7760
  /**
7777
7761
  * Format: int32
7778
7762
  * Determines the depth of fetched navigation levels.
@@ -7907,7 +7891,7 @@ export type operations = {
7907
7891
  };
7908
7892
  response: {
7909
7893
  /** aggregation result */
7910
- aggregations?: Record<string, never>;
7894
+ aggregations?: GenericRecord;
7911
7895
  elements?: components["schemas"]["PaymentMethod"][];
7912
7896
  /** Total amount */
7913
7897
  total?: number;