@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.
@@ -28,7 +28,7 @@ export type Schemas = {
28
28
  id: string;
29
29
  integrations?: components["schemas"]["Integration"][];
30
30
  name: string;
31
- privileges: Record<string, never>[];
31
+ privileges: GenericRecord[];
32
32
  /** Format: date-time */
33
33
  updatedAt?: string;
34
34
  users?: components["schemas"]["User"][];
@@ -41,7 +41,7 @@ export type Schemas = {
41
41
  description?: string;
42
42
  id: string;
43
43
  name: string;
44
- privileges: Record<string, never>[];
44
+ privileges: GenericRecord[];
45
45
  relationships?: {
46
46
  app?: {
47
47
  data?: {
@@ -113,7 +113,7 @@ export type Schemas = {
113
113
  name: string;
114
114
  searchTerms?: components["schemas"]["AdvancedSearchActionSearchTerm"][];
115
115
  type: string;
116
- typeConfig?: Record<string, never>;
116
+ typeConfig?: GenericRecord;
117
117
  /** Format: date-time */
118
118
  updatedAt?: string;
119
119
  /** Format: date-time */
@@ -161,7 +161,7 @@ export type Schemas = {
161
161
  };
162
162
  };
163
163
  type: string;
164
- typeConfig?: Record<string, never>;
164
+ typeConfig?: GenericRecord;
165
165
  /** Format: date-time */
166
166
  updatedAt?: string;
167
167
  /** Format: date-time */
@@ -488,7 +488,7 @@ export type Schemas = {
488
488
  updatedAt?: string;
489
489
  };
490
490
  AdvancedSearchEntityStream: {
491
- apiFilter?: Record<string, never>;
491
+ apiFilter?: GenericRecord;
492
492
  boosting?: components["schemas"]["AdvancedSearchBoosting"];
493
493
  /** Format: date-time */
494
494
  createdAt: string;
@@ -507,7 +507,7 @@ export type Schemas = {
507
507
  field?: string;
508
508
  id: string;
509
509
  operator?: string;
510
- parameters?: Record<string, never>;
510
+ parameters?: GenericRecord;
511
511
  parent?: components["schemas"]["AdvancedSearchEntityStreamFilter"];
512
512
  parentId?: string;
513
513
  /** Format: int64 */
@@ -525,7 +525,7 @@ export type Schemas = {
525
525
  field?: string;
526
526
  id: string;
527
527
  operator?: string;
528
- parameters?: Record<string, never>;
528
+ parameters?: GenericRecord;
529
529
  parentId?: string;
530
530
  /** Format: int64 */
531
531
  position?: number;
@@ -582,7 +582,7 @@ export type Schemas = {
582
582
  value?: string;
583
583
  };
584
584
  AdvancedSearchEntityStreamJsonApi: components["schemas"]["resource"] & {
585
- apiFilter?: Record<string, never>;
585
+ apiFilter?: GenericRecord;
586
586
  /** Format: date-time */
587
587
  createdAt: string;
588
588
  id: string;
@@ -673,11 +673,11 @@ export type Schemas = {
673
673
  baseAppUrl?: string;
674
674
  cmsBlocks?: components["schemas"]["AppCmsBlock"][];
675
675
  configurable: boolean;
676
- cookies?: Record<string, never>[];
676
+ cookies?: GenericRecord[];
677
677
  copyright?: string;
678
678
  /** Format: date-time */
679
679
  createdAt: string;
680
- customFields?: Record<string, never>;
680
+ customFields?: GenericRecord;
681
681
  customFieldSets?: components["schemas"]["CustomFieldSet"][];
682
682
  description?: string;
683
683
  extensions?: {
@@ -706,8 +706,8 @@ export type Schemas = {
706
706
  integrationId: string;
707
707
  label: string;
708
708
  license?: string;
709
- mainModule?: Record<string, never>;
710
- modules?: Record<string, never>[];
709
+ mainModule?: GenericRecord;
710
+ modules?: GenericRecord[];
711
711
  name: string;
712
712
  path: string;
713
713
  paymentMethods?: components["schemas"]["AppPaymentMethod"][];
@@ -821,7 +821,7 @@ export type Schemas = {
821
821
  AppCmsBlock: {
822
822
  app?: components["schemas"]["App"];
823
823
  appId: string;
824
- block: Record<string, never>;
824
+ block: GenericRecord;
825
825
  /** Format: date-time */
826
826
  createdAt: string;
827
827
  id: string;
@@ -841,7 +841,7 @@ export type Schemas = {
841
841
  };
842
842
  AppCmsBlockJsonApi: components["schemas"]["resource"] & {
843
843
  appId: string;
844
- block: Record<string, never>;
844
+ block: GenericRecord;
845
845
  /** Format: date-time */
846
846
  createdAt: string;
847
847
  id: string;
@@ -880,14 +880,14 @@ export type Schemas = {
880
880
  app?: components["schemas"]["App"];
881
881
  appId: string;
882
882
  badge?: string;
883
- config?: Record<string, never>;
883
+ config?: GenericRecord;
884
884
  /** Format: date-time */
885
885
  createdAt: string;
886
- customFields?: Record<string, never>;
886
+ customFields?: GenericRecord;
887
887
  delayable?: boolean;
888
888
  description?: string;
889
889
  flowSequences?: components["schemas"]["FlowSequence"][];
890
- headers?: Record<string, never>;
890
+ headers?: GenericRecord;
891
891
  headline?: string;
892
892
  /** Runtime field, cannot be used as part of the criteria. */
893
893
  icon?: string;
@@ -895,7 +895,7 @@ export type Schemas = {
895
895
  id: string;
896
896
  label: string;
897
897
  name: string;
898
- parameters?: Record<string, never>;
898
+ parameters?: GenericRecord;
899
899
  requirements?: string[];
900
900
  swIcon?: string;
901
901
  translated?: {
@@ -917,13 +917,13 @@ export type Schemas = {
917
917
  AppFlowActionJsonApi: components["schemas"]["resource"] & {
918
918
  appId: string;
919
919
  badge?: string;
920
- config?: Record<string, never>;
920
+ config?: GenericRecord;
921
921
  /** Format: date-time */
922
922
  createdAt: string;
923
- customFields?: Record<string, never>;
923
+ customFields?: GenericRecord;
924
924
  delayable?: boolean;
925
925
  description?: string;
926
- headers?: Record<string, never>;
926
+ headers?: GenericRecord;
927
927
  headline?: string;
928
928
  /** Runtime field, cannot be used as part of the criteria. */
929
929
  icon?: string;
@@ -931,7 +931,7 @@ export type Schemas = {
931
931
  id: string;
932
932
  label: string;
933
933
  name: string;
934
- parameters?: Record<string, never>;
934
+ parameters?: GenericRecord;
935
935
  relationships?: {
936
936
  app?: {
937
937
  data?: {
@@ -988,7 +988,7 @@ export type Schemas = {
988
988
  aware: string[];
989
989
  /** Format: date-time */
990
990
  createdAt: string;
991
- customFields?: Record<string, never>;
991
+ customFields?: GenericRecord;
992
992
  flows?: components["schemas"]["Flow"][];
993
993
  id: string;
994
994
  name: string;
@@ -1000,7 +1000,7 @@ export type Schemas = {
1000
1000
  aware: string[];
1001
1001
  /** Format: date-time */
1002
1002
  createdAt: string;
1003
- customFields?: Record<string, never>;
1003
+ customFields?: GenericRecord;
1004
1004
  id: string;
1005
1005
  name: string;
1006
1006
  relationships?: {
@@ -1046,11 +1046,11 @@ export type Schemas = {
1046
1046
  author?: string;
1047
1047
  baseAppUrl?: string;
1048
1048
  configurable: boolean;
1049
- cookies?: Record<string, never>[];
1049
+ cookies?: GenericRecord[];
1050
1050
  copyright?: string;
1051
1051
  /** Format: date-time */
1052
1052
  createdAt: string;
1053
- customFields?: Record<string, never>;
1053
+ customFields?: GenericRecord;
1054
1054
  description?: string;
1055
1055
  extensions?: {
1056
1056
  storefrontConfig?: {
@@ -1075,8 +1075,8 @@ export type Schemas = {
1075
1075
  integrationId: string;
1076
1076
  label: string;
1077
1077
  license?: string;
1078
- mainModule?: Record<string, never>;
1079
- modules?: Record<string, never>[];
1078
+ mainModule?: GenericRecord;
1079
+ modules?: GenericRecord[];
1080
1080
  name: string;
1081
1081
  path: string;
1082
1082
  privacy?: string;
@@ -1375,7 +1375,7 @@ export type Schemas = {
1375
1375
  active: boolean;
1376
1376
  app?: components["schemas"]["App"];
1377
1377
  appId: string;
1378
- config?: Record<string, never>;
1378
+ config?: GenericRecord;
1379
1379
  /** Format: date-time */
1380
1380
  createdAt: string;
1381
1381
  group?: string;
@@ -1397,7 +1397,7 @@ export type Schemas = {
1397
1397
  AppScriptConditionJsonApi: components["schemas"]["resource"] & {
1398
1398
  active: boolean;
1399
1399
  appId: string;
1400
- config?: Record<string, never>;
1400
+ config?: GenericRecord;
1401
1401
  /** Format: date-time */
1402
1402
  createdAt: string;
1403
1403
  group?: string;
@@ -1566,7 +1566,7 @@ export type Schemas = {
1566
1566
  createdAt: string;
1567
1567
  customer?: components["schemas"]["Customer"];
1568
1568
  customerId?: string;
1569
- customFields?: Record<string, never>;
1569
+ customFields?: GenericRecord;
1570
1570
  defaultRole?: components["schemas"]["B2bComponentsRole"];
1571
1571
  defaultRoleId?: string;
1572
1572
  id: string;
@@ -1577,7 +1577,7 @@ export type Schemas = {
1577
1577
  /** Format: date-time */
1578
1578
  createdAt: string;
1579
1579
  customerId?: string;
1580
- customFields?: Record<string, never>;
1580
+ customFields?: GenericRecord;
1581
1581
  defaultRoleId?: string;
1582
1582
  id: string;
1583
1583
  relationships?: {
@@ -1621,7 +1621,7 @@ export type Schemas = {
1621
1621
  affectedRoleId?: string;
1622
1622
  businessPartnerCustomer?: components["schemas"]["Customer"];
1623
1623
  businessPartnerCustomerId?: string;
1624
- conditions: Record<string, never>;
1624
+ conditions: GenericRecord;
1625
1625
  /** Format: date-time */
1626
1626
  createdAt: string;
1627
1627
  description?: string;
@@ -1638,7 +1638,7 @@ export type Schemas = {
1638
1638
  active: boolean;
1639
1639
  affectedRoleId?: string;
1640
1640
  businessPartnerCustomerId?: string;
1641
- conditions: Record<string, never>;
1641
+ conditions: GenericRecord;
1642
1642
  /** Format: date-time */
1643
1643
  createdAt: string;
1644
1644
  description?: string;
@@ -1718,7 +1718,7 @@ export type Schemas = {
1718
1718
  currencyId: string;
1719
1719
  customer?: components["schemas"]["Customer"];
1720
1720
  customerId: string;
1721
- customFields?: Record<string, never>;
1721
+ customFields?: GenericRecord;
1722
1722
  decidedBy?: components["schemas"]["B2bEmployee"];
1723
1723
  decidedById?: string;
1724
1724
  designatedPayerIds?: string[];
@@ -1742,14 +1742,14 @@ export type Schemas = {
1742
1742
  paymentMethod?: components["schemas"]["PaymentMethod"];
1743
1743
  paymentMethodId: string;
1744
1744
  price?: {
1745
- calculatedTaxes?: Record<string, never>;
1745
+ calculatedTaxes?: GenericRecord;
1746
1746
  /** Format: float */
1747
1747
  netPrice: number;
1748
1748
  /** Format: float */
1749
1749
  positionPrice: number;
1750
1750
  /** Format: float */
1751
1751
  rawTotal: number;
1752
- taxRules?: Record<string, never>;
1752
+ taxRules?: GenericRecord;
1753
1753
  taxStatus: string;
1754
1754
  /** Format: float */
1755
1755
  totalPrice: number;
@@ -1783,7 +1783,7 @@ export type Schemas = {
1783
1783
  countryStateId?: string;
1784
1784
  /** Format: date-time */
1785
1785
  createdAt: string;
1786
- customFields?: Record<string, never>;
1786
+ customFields?: GenericRecord;
1787
1787
  department?: string;
1788
1788
  firstName: string;
1789
1789
  id: string;
@@ -1809,7 +1809,7 @@ export type Schemas = {
1809
1809
  countryStateId?: string;
1810
1810
  /** Format: date-time */
1811
1811
  createdAt: string;
1812
- customFields?: Record<string, never>;
1812
+ customFields?: GenericRecord;
1813
1813
  department?: string;
1814
1814
  firstName: string;
1815
1815
  id: string;
@@ -1901,7 +1901,7 @@ export type Schemas = {
1901
1901
  createdAt: string;
1902
1902
  currencyId: string;
1903
1903
  customerId: string;
1904
- customFields?: Record<string, never>;
1904
+ customFields?: GenericRecord;
1905
1905
  decidedById?: string;
1906
1906
  designatedPayerIds?: string[];
1907
1907
  employeeId: string;
@@ -1921,14 +1921,14 @@ export type Schemas = {
1921
1921
  originalPrice?: number;
1922
1922
  paymentMethodId: string;
1923
1923
  price?: {
1924
- calculatedTaxes?: Record<string, never>;
1924
+ calculatedTaxes?: GenericRecord;
1925
1925
  /** Format: float */
1926
1926
  netPrice: number;
1927
1927
  /** Format: float */
1928
1928
  positionPrice: number;
1929
1929
  /** Format: float */
1930
1930
  rawTotal: number;
1931
- taxRules?: Record<string, never>;
1931
+ taxRules?: GenericRecord;
1932
1932
  taxStatus: string;
1933
1933
  /** Format: float */
1934
1934
  totalPrice: number;
@@ -2150,11 +2150,11 @@ export type Schemas = {
2150
2150
  businessPartnerCustomerId?: string;
2151
2151
  /** Format: date-time */
2152
2152
  createdAt: string;
2153
- customFields?: Record<string, never>;
2153
+ customFields?: GenericRecord;
2154
2154
  employees?: components["schemas"]["B2bEmployee"][];
2155
2155
  id: string;
2156
2156
  name: string;
2157
- permissions?: Record<string, never>[];
2157
+ permissions?: GenericRecord[];
2158
2158
  /** Format: date-time */
2159
2159
  updatedAt?: string;
2160
2160
  };
@@ -2162,10 +2162,10 @@ export type Schemas = {
2162
2162
  businessPartnerCustomerId?: string;
2163
2163
  /** Format: date-time */
2164
2164
  createdAt: string;
2165
- customFields?: Record<string, never>;
2165
+ customFields?: GenericRecord;
2166
2166
  id: string;
2167
2167
  name: string;
2168
- permissions?: Record<string, never>[];
2168
+ permissions?: GenericRecord[];
2169
2169
  relationships?: {
2170
2170
  businessPartnerCustomer?: {
2171
2171
  data?: {
@@ -2209,13 +2209,13 @@ export type Schemas = {
2209
2209
  createdById?: string;
2210
2210
  customer?: components["schemas"]["Customer"];
2211
2211
  customerId: string;
2212
- customFields?: Record<string, never>;
2212
+ customFields?: GenericRecord;
2213
2213
  employee?: components["schemas"]["B2bEmployee"];
2214
2214
  employeeId?: string;
2215
2215
  id: string;
2216
2216
  lineItems?: components["schemas"]["B2bComponentsShoppingListLineItem"][];
2217
2217
  name?: string;
2218
- price?: Record<string, never>;
2218
+ price?: GenericRecord;
2219
2219
  salesChannel?: components["schemas"]["SalesChannel"];
2220
2220
  salesChannelId: string;
2221
2221
  /** Format: date-time */
@@ -2229,11 +2229,11 @@ export type Schemas = {
2229
2229
  createdAt: string;
2230
2230
  createdById?: string;
2231
2231
  customerId: string;
2232
- customFields?: Record<string, never>;
2232
+ customFields?: GenericRecord;
2233
2233
  employeeId?: string;
2234
2234
  id: string;
2235
2235
  name?: string;
2236
- price?: Record<string, never>;
2236
+ price?: GenericRecord;
2237
2237
  relationships?: {
2238
2238
  createdBy?: {
2239
2239
  data?: {
@@ -2334,9 +2334,9 @@ export type Schemas = {
2334
2334
  B2bComponentsShoppingListLineItem: {
2335
2335
  /** Format: date-time */
2336
2336
  createdAt: string;
2337
- customFields?: Record<string, never>;
2337
+ customFields?: GenericRecord;
2338
2338
  id: string;
2339
- price?: Record<string, never>;
2339
+ price?: GenericRecord;
2340
2340
  product?: components["schemas"]["Product"];
2341
2341
  productId?: string;
2342
2342
  productVersionId?: string;
@@ -2350,9 +2350,9 @@ export type Schemas = {
2350
2350
  B2bComponentsShoppingListLineItemJsonApi: components["schemas"]["resource"] & {
2351
2351
  /** Format: date-time */
2352
2352
  createdAt: string;
2353
- customFields?: Record<string, never>;
2353
+ customFields?: GenericRecord;
2354
2354
  id: string;
2355
- price?: Record<string, never>;
2355
+ price?: GenericRecord;
2356
2356
  productId?: string;
2357
2357
  productVersionId?: string;
2358
2358
  /** Format: int64 */
@@ -2399,7 +2399,7 @@ export type Schemas = {
2399
2399
  businessPartnerCustomerId?: string;
2400
2400
  /** Format: date-time */
2401
2401
  createdAt: string;
2402
- customFields?: Record<string, never>;
2402
+ customFields?: GenericRecord;
2403
2403
  email: string;
2404
2404
  extensions?: {
2405
2405
  quotes?: {
@@ -2435,7 +2435,7 @@ export type Schemas = {
2435
2435
  businessPartnerCustomerId?: string;
2436
2436
  /** Format: date-time */
2437
2437
  createdAt: string;
2438
- customFields?: Record<string, never>;
2438
+ customFields?: GenericRecord;
2439
2439
  email: string;
2440
2440
  extensions?: {
2441
2441
  quotes?: {
@@ -2597,7 +2597,7 @@ export type Schemas = {
2597
2597
  afterCategoryVersionId?: string;
2598
2598
  /** Format: int64 */
2599
2599
  autoIncrement?: number;
2600
- breadcrumb?: readonly Record<string, never>[];
2600
+ breadcrumb?: readonly GenericRecord[];
2601
2601
  /** Format: int64 */
2602
2602
  childCount?: number;
2603
2603
  children?: components["schemas"]["Category"][];
@@ -2609,11 +2609,11 @@ export type Schemas = {
2609
2609
  /** Format: date-time */
2610
2610
  createdAt: string;
2611
2611
  customEntityTypeId?: string;
2612
- customFields?: Record<string, never>;
2612
+ customFields?: GenericRecord;
2613
2613
  description?: string;
2614
2614
  displayNestedProducts: boolean;
2615
2615
  extensions?: {
2616
- search?: Record<string, never>;
2616
+ search?: GenericRecord;
2617
2617
  swagDynamicAccessRules?: {
2618
2618
  data?: {
2619
2619
  /** @example 05b9d828254c957dfa5224c581439c92 */
@@ -2657,7 +2657,7 @@ export type Schemas = {
2657
2657
  productStreamId?: string;
2658
2658
  seoUrls?: components["schemas"]["SeoUrl"][];
2659
2659
  serviceSalesChannels?: components["schemas"]["SalesChannel"][];
2660
- slotConfig?: Record<string, never>;
2660
+ slotConfig?: GenericRecord;
2661
2661
  tags?: components["schemas"]["Tag"][];
2662
2662
  translated?: {
2663
2663
  afterCategoryId?: string;
@@ -2699,7 +2699,7 @@ export type Schemas = {
2699
2699
  afterCategoryVersionId?: string;
2700
2700
  /** Format: int64 */
2701
2701
  autoIncrement?: number;
2702
- breadcrumb?: readonly Record<string, never>[];
2702
+ breadcrumb?: readonly GenericRecord[];
2703
2703
  /** Format: int64 */
2704
2704
  childCount?: number;
2705
2705
  cmsPageId?: string;
@@ -2709,11 +2709,11 @@ export type Schemas = {
2709
2709
  /** Format: date-time */
2710
2710
  createdAt: string;
2711
2711
  customEntityTypeId?: string;
2712
- customFields?: Record<string, never>;
2712
+ customFields?: GenericRecord;
2713
2713
  description?: string;
2714
2714
  displayNestedProducts: boolean;
2715
2715
  extensions?: {
2716
- search?: Record<string, never>;
2716
+ search?: GenericRecord;
2717
2717
  swagDynamicAccessRules?: {
2718
2718
  data?: {
2719
2719
  /** @example 05b9d828254c957dfa5224c581439c92 */
@@ -2944,7 +2944,7 @@ export type Schemas = {
2944
2944
  };
2945
2945
  };
2946
2946
  };
2947
- slotConfig?: Record<string, never>;
2947
+ slotConfig?: GenericRecord;
2948
2948
  translated?: {
2949
2949
  afterCategoryId?: string;
2950
2950
  afterCategoryVersionId?: string;
@@ -2996,7 +2996,7 @@ export type Schemas = {
2996
2996
  /** Format: date-time */
2997
2997
  createdAt: string;
2998
2998
  cssClass?: string;
2999
- customFields?: Record<string, never>;
2999
+ customFields?: GenericRecord;
3000
3000
  extensions?: {
3001
3001
  swagCmsExtensionsBlockRule?: {
3002
3002
  data?: {
@@ -3060,7 +3060,7 @@ export type Schemas = {
3060
3060
  /** Format: date-time */
3061
3061
  createdAt: string;
3062
3062
  cssClass?: string;
3063
- customFields?: Record<string, never>;
3063
+ customFields?: GenericRecord;
3064
3064
  extensions?: {
3065
3065
  swagCmsExtensionsBlockRule?: {
3066
3066
  data?: {
@@ -3169,7 +3169,7 @@ export type Schemas = {
3169
3169
  /** Format: date-time */
3170
3170
  createdAt: string;
3171
3171
  cssClass?: string;
3172
- customFields?: Record<string, never>;
3172
+ customFields?: GenericRecord;
3173
3173
  entity?: string;
3174
3174
  extensions?: {
3175
3175
  activities?: {
@@ -3245,7 +3245,7 @@ export type Schemas = {
3245
3245
  cmsPageVersionId?: string;
3246
3246
  /** Format: date-time */
3247
3247
  createdAt: string;
3248
- details?: Record<string, never>;
3248
+ details?: GenericRecord;
3249
3249
  draftVersion?: string;
3250
3250
  id: string;
3251
3251
  isDiscarded?: boolean;
@@ -3262,7 +3262,7 @@ export type Schemas = {
3262
3262
  cmsPageVersionId?: string;
3263
3263
  /** Format: date-time */
3264
3264
  createdAt: string;
3265
- details?: Record<string, never>;
3265
+ details?: GenericRecord;
3266
3266
  draftVersion?: string;
3267
3267
  id: string;
3268
3268
  isDiscarded?: boolean;
@@ -3391,7 +3391,7 @@ export type Schemas = {
3391
3391
  /** Format: date-time */
3392
3392
  createdAt: string;
3393
3393
  cssClass?: string;
3394
- customFields?: Record<string, never>;
3394
+ customFields?: GenericRecord;
3395
3395
  entity?: string;
3396
3396
  extensions?: {
3397
3397
  activities?: {
@@ -3559,7 +3559,7 @@ export type Schemas = {
3559
3559
  /** Format: date-time */
3560
3560
  createdAt: string;
3561
3561
  cssClass?: string;
3562
- customFields?: Record<string, never>;
3562
+ customFields?: GenericRecord;
3563
3563
  extensions?: {
3564
3564
  swagCmsExtensionsScrollNavigation?: {
3565
3565
  data?: {
@@ -3604,7 +3604,7 @@ export type Schemas = {
3604
3604
  /** Format: date-time */
3605
3605
  createdAt: string;
3606
3606
  cssClass?: string;
3607
- customFields?: Record<string, never>;
3607
+ customFields?: GenericRecord;
3608
3608
  extensions?: {
3609
3609
  swagCmsExtensionsScrollNavigation?: {
3610
3610
  data?: {
@@ -3691,11 +3691,11 @@ export type Schemas = {
3691
3691
  block?: components["schemas"]["CmsBlock"];
3692
3692
  blockId: string;
3693
3693
  cmsBlockVersionId?: string;
3694
- config?: Record<string, never>;
3694
+ config?: GenericRecord;
3695
3695
  /** Format: date-time */
3696
3696
  createdAt: string;
3697
- customFields?: Record<string, never>;
3698
- data?: Record<string, never>;
3697
+ customFields?: GenericRecord;
3698
+ data?: GenericRecord;
3699
3699
  extensions?: {
3700
3700
  swagCmsExtensionsForm?: {
3701
3701
  data?: {
@@ -3713,7 +3713,7 @@ export type Schemas = {
3713
3713
  };
3714
3714
  };
3715
3715
  };
3716
- fieldConfig?: Record<string, never>;
3716
+ fieldConfig?: GenericRecord;
3717
3717
  id: string;
3718
3718
  locked?: boolean;
3719
3719
  slot: string;
@@ -3732,11 +3732,11 @@ export type Schemas = {
3732
3732
  CmsSlotJsonApi: components["schemas"]["resource"] & {
3733
3733
  blockId: string;
3734
3734
  cmsBlockVersionId?: string;
3735
- config?: Record<string, never>;
3735
+ config?: GenericRecord;
3736
3736
  /** Format: date-time */
3737
3737
  createdAt: string;
3738
- customFields?: Record<string, never>;
3739
- data?: Record<string, never>;
3738
+ customFields?: GenericRecord;
3739
+ data?: GenericRecord;
3740
3740
  extensions?: {
3741
3741
  swagCmsExtensionsForm?: {
3742
3742
  data?: {
@@ -3754,7 +3754,7 @@ export type Schemas = {
3754
3754
  };
3755
3755
  };
3756
3756
  };
3757
- fieldConfig?: Record<string, never>;
3757
+ fieldConfig?: GenericRecord;
3758
3758
  id: string;
3759
3759
  locked?: boolean;
3760
3760
  relationships?: {
@@ -3789,7 +3789,7 @@ export type Schemas = {
3789
3789
  };
3790
3790
  Country: {
3791
3791
  active?: boolean;
3792
- addressFormat: Record<string, never>;
3792
+ addressFormat: GenericRecord;
3793
3793
  advancedPostalCodePattern?: string;
3794
3794
  checkAdvancedPostalCodePattern?: boolean;
3795
3795
  checkPostalCodePattern?: boolean;
@@ -3810,7 +3810,7 @@ export type Schemas = {
3810
3810
  currencyId: string;
3811
3811
  enabled: boolean;
3812
3812
  };
3813
- customFields?: Record<string, never>;
3813
+ customFields?: GenericRecord;
3814
3814
  defaultPostalCodePattern?: string;
3815
3815
  displayStateInRegistration?: boolean;
3816
3816
  extensions?: {
@@ -3859,7 +3859,7 @@ export type Schemas = {
3859
3859
  };
3860
3860
  CountryJsonApi: components["schemas"]["resource"] & {
3861
3861
  active?: boolean;
3862
- addressFormat: Record<string, never>;
3862
+ addressFormat: GenericRecord;
3863
3863
  advancedPostalCodePattern?: string;
3864
3864
  checkAdvancedPostalCodePattern?: boolean;
3865
3865
  checkPostalCodePattern?: boolean;
@@ -3878,7 +3878,7 @@ export type Schemas = {
3878
3878
  currencyId: string;
3879
3879
  enabled: boolean;
3880
3880
  };
3881
- customFields?: Record<string, never>;
3881
+ customFields?: GenericRecord;
3882
3882
  defaultPostalCodePattern?: string;
3883
3883
  displayStateInRegistration?: boolean;
3884
3884
  extensions?: {
@@ -4034,7 +4034,7 @@ export type Schemas = {
4034
4034
  /** Format: date-time */
4035
4035
  createdAt: string;
4036
4036
  customerAddresses?: components["schemas"]["CustomerAddress"][];
4037
- customFields?: Record<string, never>;
4037
+ customFields?: GenericRecord;
4038
4038
  extensions?: {
4039
4039
  subscriptionCustomerAddresses?: {
4040
4040
  data?: {
@@ -4071,7 +4071,7 @@ export type Schemas = {
4071
4071
  countryId: string;
4072
4072
  /** Format: date-time */
4073
4073
  createdAt: string;
4074
- customFields?: Record<string, never>;
4074
+ customFields?: GenericRecord;
4075
4075
  extensions?: {
4076
4076
  subscriptionCustomerAddresses?: {
4077
4077
  data?: {
@@ -4160,7 +4160,7 @@ export type Schemas = {
4160
4160
  type: string;
4161
4161
  }[];
4162
4162
  /** Used to fetch associations which are not fetched by default. */
4163
- associations?: Record<string, never>;
4163
+ associations?: GenericRecord;
4164
4164
  /** Fields which should be returned in the search result. */
4165
4165
  fields?: string[];
4166
4166
  /** List of filters to restrict the search result. For more information, see [Search Queries > Filter](https://shopware.stoplight.io/docs/store-api/docs/concepts/search-queries.md#filter) */
@@ -4198,7 +4198,7 @@ export type Schemas = {
4198
4198
  countryRoundings?: components["schemas"]["CurrencyCountryRounding"][];
4199
4199
  /** Format: date-time */
4200
4200
  createdAt: string;
4201
- customFields?: Record<string, never>;
4201
+ customFields?: GenericRecord;
4202
4202
  extensions?: {
4203
4203
  quotes?: {
4204
4204
  data?: {
@@ -4371,7 +4371,7 @@ export type Schemas = {
4371
4371
  CurrencyJsonApi: components["schemas"]["resource"] & {
4372
4372
  /** Format: date-time */
4373
4373
  createdAt: string;
4374
- customFields?: Record<string, never>;
4374
+ customFields?: GenericRecord;
4375
4375
  extensions?: {
4376
4376
  quotes?: {
4377
4377
  data?: {
@@ -4571,8 +4571,8 @@ export type Schemas = {
4571
4571
  customFieldsAware?: boolean;
4572
4572
  /** Format: date-time */
4573
4573
  deletedAt?: string;
4574
- fields: Record<string, never>;
4575
- flags?: Record<string, never>;
4574
+ fields: GenericRecord;
4575
+ flags?: GenericRecord;
4576
4576
  id: string;
4577
4577
  labelProperty?: string;
4578
4578
  name: string;
@@ -4591,8 +4591,8 @@ export type Schemas = {
4591
4591
  customFieldsAware?: boolean;
4592
4592
  /** Format: date-time */
4593
4593
  deletedAt?: string;
4594
- fields: Record<string, never>;
4595
- flags?: Record<string, never>;
4594
+ fields: GenericRecord;
4595
+ flags?: GenericRecord;
4596
4596
  id: string;
4597
4597
  labelProperty?: string;
4598
4598
  name: string;
@@ -4606,7 +4606,7 @@ export type Schemas = {
4606
4606
  active?: boolean;
4607
4607
  allowCartExpose?: boolean;
4608
4608
  allowCustomerWrite?: boolean;
4609
- config?: Record<string, never>;
4609
+ config?: GenericRecord;
4610
4610
  /** Format: date-time */
4611
4611
  createdAt: string;
4612
4612
  customFieldSet?: components["schemas"]["CustomFieldSet"];
@@ -4622,7 +4622,7 @@ export type Schemas = {
4622
4622
  active?: boolean;
4623
4623
  allowCartExpose?: boolean;
4624
4624
  allowCustomerWrite?: boolean;
4625
- config?: Record<string, never>;
4625
+ config?: GenericRecord;
4626
4626
  /** Format: date-time */
4627
4627
  createdAt: string;
4628
4628
  customFieldSetId?: string;
@@ -4668,7 +4668,7 @@ export type Schemas = {
4668
4668
  active?: boolean;
4669
4669
  app?: components["schemas"]["App"];
4670
4670
  appId?: string;
4671
- config?: Record<string, never>;
4671
+ config?: GenericRecord;
4672
4672
  /** Format: date-time */
4673
4673
  createdAt: string;
4674
4674
  customFields?: components["schemas"]["CustomField"][];
@@ -4685,7 +4685,7 @@ export type Schemas = {
4685
4685
  CustomFieldSetJsonApi: components["schemas"]["resource"] & {
4686
4686
  active?: boolean;
4687
4687
  appId?: string;
4688
- config?: Record<string, never>;
4688
+ config?: GenericRecord;
4689
4689
  /** Format: date-time */
4690
4690
  createdAt: string;
4691
4691
  global?: boolean;
@@ -4802,7 +4802,7 @@ export type Schemas = {
4802
4802
  customerGroupId?: string;
4803
4803
  customerId?: string;
4804
4804
  id: string;
4805
- price: Record<string, never>;
4805
+ price: GenericRecord;
4806
4806
  product?: components["schemas"]["Product"];
4807
4807
  productId: string;
4808
4808
  productVersionId?: string;
@@ -4815,7 +4815,7 @@ export type Schemas = {
4815
4815
  customerGroupId?: string;
4816
4816
  customerId?: string;
4817
4817
  id: string;
4818
- price: Record<string, never>;
4818
+ price: GenericRecord;
4819
4819
  productId: string;
4820
4820
  productVersionId?: string;
4821
4821
  relationships?: {
@@ -4904,7 +4904,7 @@ export type Schemas = {
4904
4904
  };
4905
4905
  CustomPricingResponse: {
4906
4906
  data: {
4907
- extensions?: Record<string, never>[];
4907
+ extensions?: GenericRecord[];
4908
4908
  result?: {
4909
4909
  entities: [] | [string];
4910
4910
  /** A detailed error list addressing specific points in which sync payload does not meet system expectations (data types, structure etc.) */
@@ -4951,7 +4951,7 @@ export type Schemas = {
4951
4951
  createdBy?: components["schemas"]["User"];
4952
4952
  createdById?: string;
4953
4953
  customerNumber: string;
4954
- customFields?: Record<string, never>;
4954
+ customFields?: GenericRecord;
4955
4955
  defaultBillingAddress?: components["schemas"]["CustomerAddress"];
4956
4956
  defaultBillingAddressId: string;
4957
4957
  defaultPaymentMethod?: components["schemas"]["PaymentMethod"];
@@ -5218,7 +5218,7 @@ export type Schemas = {
5218
5218
  createdAt: string;
5219
5219
  customer?: components["schemas"]["Customer"];
5220
5220
  customerId: string;
5221
- customFields?: Record<string, never>;
5221
+ customFields?: GenericRecord;
5222
5222
  department?: string;
5223
5223
  firstName: string;
5224
5224
  id: string;
@@ -5242,7 +5242,7 @@ export type Schemas = {
5242
5242
  /** Format: date-time */
5243
5243
  createdAt: string;
5244
5244
  customerId: string;
5245
- customFields?: Record<string, never>;
5245
+ customFields?: GenericRecord;
5246
5246
  department?: string;
5247
5247
  firstName: string;
5248
5248
  id: string;
@@ -5321,7 +5321,7 @@ export type Schemas = {
5321
5321
  /** Format: date-time */
5322
5322
  createdAt: string;
5323
5323
  customers?: components["schemas"]["Customer"][];
5324
- customFields?: Record<string, never>;
5324
+ customFields?: GenericRecord;
5325
5325
  displayGross?: boolean;
5326
5326
  extensions?: {
5327
5327
  customPrice?: {
@@ -5361,7 +5361,7 @@ export type Schemas = {
5361
5361
  CustomerGroupJsonApi: components["schemas"]["resource"] & {
5362
5362
  /** Format: date-time */
5363
5363
  createdAt: string;
5364
- customFields?: Record<string, never>;
5364
+ customFields?: GenericRecord;
5365
5365
  displayGross?: boolean;
5366
5366
  extensions?: {
5367
5367
  customPrice?: {
@@ -5466,7 +5466,7 @@ export type Schemas = {
5466
5466
  createdAt: string;
5467
5467
  createdById?: string;
5468
5468
  customerNumber: string;
5469
- customFields?: Record<string, never>;
5469
+ customFields?: GenericRecord;
5470
5470
  defaultBillingAddressId: string;
5471
5471
  defaultPaymentMethodId: string;
5472
5472
  defaultShippingAddressId: string;
@@ -6032,7 +6032,7 @@ export type Schemas = {
6032
6032
  createdAt: string;
6033
6033
  customer?: components["schemas"]["Customer"];
6034
6034
  customerId: string;
6035
- features: Record<string, never>;
6035
+ features: GenericRecord;
6036
6036
  id: string;
6037
6037
  /** Format: date-time */
6038
6038
  updatedAt?: string;
@@ -6041,7 +6041,7 @@ export type Schemas = {
6041
6041
  /** Format: date-time */
6042
6042
  createdAt: string;
6043
6043
  customerId: string;
6044
- features: Record<string, never>;
6044
+ features: GenericRecord;
6045
6045
  id: string;
6046
6046
  relationships?: {
6047
6047
  customer?: {
@@ -6075,7 +6075,7 @@ export type Schemas = {
6075
6075
  createdAt: string;
6076
6076
  customer?: components["schemas"]["Customer"];
6077
6077
  customerId: string;
6078
- customFields?: Record<string, never>;
6078
+ customFields?: GenericRecord;
6079
6079
  id: string;
6080
6080
  products?: components["schemas"]["CustomerWishlistProduct"][];
6081
6081
  salesChannel?: components["schemas"]["SalesChannel"];
@@ -6087,7 +6087,7 @@ export type Schemas = {
6087
6087
  /** Format: date-time */
6088
6088
  createdAt: string;
6089
6089
  customerId: string;
6090
- customFields?: Record<string, never>;
6090
+ customFields?: GenericRecord;
6091
6091
  id: string;
6092
6092
  relationships?: {
6093
6093
  customer?: {
@@ -6197,7 +6197,7 @@ export type Schemas = {
6197
6197
  DeliveryTime: {
6198
6198
  /** Format: date-time */
6199
6199
  createdAt: string;
6200
- customFields?: Record<string, never>;
6200
+ customFields?: GenericRecord;
6201
6201
  id: string;
6202
6202
  /** Format: int64 */
6203
6203
  max: number;
@@ -6217,7 +6217,7 @@ export type Schemas = {
6217
6217
  DeliveryTimeJsonApi: components["schemas"]["resource"] & {
6218
6218
  /** Format: date-time */
6219
6219
  createdAt: string;
6220
- customFields?: Record<string, never>;
6220
+ customFields?: GenericRecord;
6221
6221
  id: string;
6222
6222
  /** Format: int64 */
6223
6223
  max: number;
@@ -6265,10 +6265,10 @@ export type Schemas = {
6265
6265
  updatedAt?: string;
6266
6266
  };
6267
6267
  Document: {
6268
- config: Record<string, never>;
6268
+ config: GenericRecord;
6269
6269
  /** Format: date-time */
6270
6270
  createdAt: string;
6271
- customFields?: Record<string, never>;
6271
+ customFields?: GenericRecord;
6272
6272
  deepLinkCode: string;
6273
6273
  dependentDocuments?: components["schemas"]["Document"][];
6274
6274
  documentMediaFile?: components["schemas"]["Media"];
@@ -6289,10 +6289,10 @@ export type Schemas = {
6289
6289
  updatedAt?: string;
6290
6290
  };
6291
6291
  DocumentBaseConfig: {
6292
- config?: Record<string, never>;
6292
+ config?: GenericRecord;
6293
6293
  /** Format: date-time */
6294
6294
  createdAt: string;
6295
- customFields?: Record<string, never>;
6295
+ customFields?: GenericRecord;
6296
6296
  documentNumber?: string;
6297
6297
  documentType?: components["schemas"]["DocumentType"];
6298
6298
  documentTypeId: string;
@@ -6308,10 +6308,10 @@ export type Schemas = {
6308
6308
  updatedAt?: string;
6309
6309
  };
6310
6310
  DocumentBaseConfigJsonApi: components["schemas"]["resource"] & {
6311
- config?: Record<string, never>;
6311
+ config?: GenericRecord;
6312
6312
  /** Format: date-time */
6313
6313
  createdAt: string;
6314
- customFields?: Record<string, never>;
6314
+ customFields?: GenericRecord;
6315
6315
  documentNumber?: string;
6316
6316
  documentTypeId: string;
6317
6317
  filenamePrefix?: string;
@@ -6441,10 +6441,10 @@ export type Schemas = {
6441
6441
  updatedAt?: string;
6442
6442
  };
6443
6443
  DocumentJsonApi: components["schemas"]["resource"] & {
6444
- config: Record<string, never>;
6444
+ config: GenericRecord;
6445
6445
  /** Format: date-time */
6446
6446
  createdAt: string;
6447
- customFields?: Record<string, never>;
6447
+ customFields?: GenericRecord;
6448
6448
  deepLinkCode: string;
6449
6449
  documentMediaFileId?: string;
6450
6450
  documentNumber?: string;
@@ -6539,7 +6539,7 @@ export type Schemas = {
6539
6539
  DocumentType: {
6540
6540
  /** Format: date-time */
6541
6541
  createdAt: string;
6542
- customFields?: Record<string, never>;
6542
+ customFields?: GenericRecord;
6543
6543
  documentBaseConfigs?: components["schemas"]["DocumentBaseConfig"][];
6544
6544
  documentBaseConfigSalesChannels?: components["schemas"]["DocumentBaseConfigSalesChannel"][];
6545
6545
  documents?: components["schemas"]["Document"][];
@@ -6573,7 +6573,7 @@ export type Schemas = {
6573
6573
  DocumentTypeJsonApi: components["schemas"]["resource"] & {
6574
6574
  /** Format: date-time */
6575
6575
  createdAt: string;
6576
- customFields?: Record<string, never>;
6576
+ customFields?: GenericRecord;
6577
6577
  extensions?: {
6578
6578
  quoteDocuments?: {
6579
6579
  data?: {
@@ -6654,7 +6654,7 @@ export type Schemas = {
6654
6654
  appFlowEventId?: string;
6655
6655
  /** Format: date-time */
6656
6656
  createdAt: string;
6657
- customFields?: Record<string, never>;
6657
+ customFields?: GenericRecord;
6658
6658
  description?: string;
6659
6659
  eventName: string;
6660
6660
  extensions?: {
@@ -6688,7 +6688,7 @@ export type Schemas = {
6688
6688
  appFlowEventId?: string;
6689
6689
  /** Format: date-time */
6690
6690
  createdAt: string;
6691
- customFields?: Record<string, never>;
6691
+ customFields?: GenericRecord;
6692
6692
  description?: string;
6693
6693
  eventName: string;
6694
6694
  extensions?: {
@@ -6753,10 +6753,10 @@ export type Schemas = {
6753
6753
  appFlowAction?: components["schemas"]["AppFlowAction"];
6754
6754
  appFlowActionId?: string;
6755
6755
  children?: components["schemas"]["FlowSequence"][];
6756
- config?: Record<string, never>;
6756
+ config?: GenericRecord;
6757
6757
  /** Format: date-time */
6758
6758
  createdAt: string;
6759
- customFields?: Record<string, never>;
6759
+ customFields?: GenericRecord;
6760
6760
  /** Format: int64 */
6761
6761
  displayGroup?: number;
6762
6762
  extensions?: {
@@ -6807,10 +6807,10 @@ export type Schemas = {
6807
6807
  FlowSequenceJsonApi: components["schemas"]["resource"] & {
6808
6808
  actionName?: string;
6809
6809
  appFlowActionId?: string;
6810
- config?: Record<string, never>;
6810
+ config?: GenericRecord;
6811
6811
  /** Format: date-time */
6812
6812
  createdAt: string;
6813
- customFields?: Record<string, never>;
6813
+ customFields?: GenericRecord;
6814
6814
  /** Format: int64 */
6815
6815
  displayGroup?: number;
6816
6816
  extensions?: {
@@ -6933,7 +6933,7 @@ export type Schemas = {
6933
6933
  updatedAt?: string;
6934
6934
  };
6935
6935
  FlowTemplate: {
6936
- config?: Record<string, never>;
6936
+ config?: GenericRecord;
6937
6937
  /** Format: date-time */
6938
6938
  createdAt: string;
6939
6939
  id: string;
@@ -6942,7 +6942,7 @@ export type Schemas = {
6942
6942
  updatedAt?: string;
6943
6943
  };
6944
6944
  FlowTemplateJsonApi: components["schemas"]["resource"] & {
6945
- config?: Record<string, never>;
6945
+ config?: GenericRecord;
6946
6946
  /** Format: date-time */
6947
6947
  createdAt: string;
6948
6948
  id: string;
@@ -6998,7 +6998,7 @@ export type Schemas = {
6998
6998
  };
6999
6999
  ImportExportLog: {
7000
7000
  activity: string;
7001
- config: Record<string, never>;
7001
+ config: GenericRecord;
7002
7002
  /** Format: date-time */
7003
7003
  createdAt: string;
7004
7004
  failedImportLog?: components["schemas"]["ImportExportLog"];
@@ -7012,7 +7012,7 @@ export type Schemas = {
7012
7012
  profileName?: string;
7013
7013
  /** Format: int64 */
7014
7014
  records: number;
7015
- result?: Record<string, never>;
7015
+ result?: GenericRecord;
7016
7016
  state: string;
7017
7017
  /** Format: date-time */
7018
7018
  updatedAt?: string;
@@ -7022,7 +7022,7 @@ export type Schemas = {
7022
7022
  };
7023
7023
  ImportExportLogJsonApi: components["schemas"]["resource"] & {
7024
7024
  activity: string;
7025
- config: Record<string, never>;
7025
+ config: GenericRecord;
7026
7026
  /** Format: date-time */
7027
7027
  createdAt: string;
7028
7028
  fileId?: string;
@@ -7109,7 +7109,7 @@ export type Schemas = {
7109
7109
  };
7110
7110
  };
7111
7111
  };
7112
- result?: Record<string, never>;
7112
+ result?: GenericRecord;
7113
7113
  state: string;
7114
7114
  /** Format: date-time */
7115
7115
  updatedAt?: string;
@@ -7117,7 +7117,7 @@ export type Schemas = {
7117
7117
  username?: string;
7118
7118
  };
7119
7119
  ImportExportProfile: {
7120
- config?: Record<string, never>;
7120
+ config?: GenericRecord;
7121
7121
  /** Format: date-time */
7122
7122
  createdAt: string;
7123
7123
  delimiter: string;
@@ -7126,7 +7126,7 @@ export type Schemas = {
7126
7126
  id: string;
7127
7127
  importExportLogs?: components["schemas"]["ImportExportLog"][];
7128
7128
  label: string;
7129
- mapping?: Record<string, never>;
7129
+ mapping?: GenericRecord;
7130
7130
  name?: string;
7131
7131
  sourceEntity: string;
7132
7132
  systemDefault?: boolean;
@@ -7140,12 +7140,12 @@ export type Schemas = {
7140
7140
  type?: string;
7141
7141
  };
7142
7142
  type?: string;
7143
- updateBy?: Record<string, never>;
7143
+ updateBy?: GenericRecord;
7144
7144
  /** Format: date-time */
7145
7145
  updatedAt?: string;
7146
7146
  };
7147
7147
  ImportExportProfileJsonApi: components["schemas"]["resource"] & {
7148
- config?: Record<string, never>;
7148
+ config?: GenericRecord;
7149
7149
  /** Format: date-time */
7150
7150
  createdAt: string;
7151
7151
  delimiter: string;
@@ -7153,7 +7153,7 @@ export type Schemas = {
7153
7153
  fileType: string;
7154
7154
  id: string;
7155
7155
  label: string;
7156
- mapping?: Record<string, never>;
7156
+ mapping?: GenericRecord;
7157
7157
  name?: string;
7158
7158
  relationships?: {
7159
7159
  importExportLogs?: {
@@ -7184,7 +7184,7 @@ export type Schemas = {
7184
7184
  type?: string;
7185
7185
  };
7186
7186
  type?: string;
7187
- updateBy?: Record<string, never>;
7187
+ updateBy?: GenericRecord;
7188
7188
  /** Format: date-time */
7189
7189
  updatedAt?: string;
7190
7190
  };
@@ -7195,7 +7195,7 @@ export type Schemas = {
7195
7195
  app?: components["schemas"]["App"];
7196
7196
  /** Format: date-time */
7197
7197
  createdAt: string;
7198
- customFields?: Record<string, never>;
7198
+ customFields?: GenericRecord;
7199
7199
  /** Format: date-time */
7200
7200
  deletedAt?: string;
7201
7201
  extensions?: {
@@ -7228,7 +7228,7 @@ export type Schemas = {
7228
7228
  admin?: boolean;
7229
7229
  /** Format: date-time */
7230
7230
  createdAt: string;
7231
- customFields?: Record<string, never>;
7231
+ customFields?: GenericRecord;
7232
7232
  /** Format: date-time */
7233
7233
  deletedAt?: string;
7234
7234
  extensions?: {
@@ -7302,7 +7302,7 @@ export type Schemas = {
7302
7302
  cmsPageVersionId?: string;
7303
7303
  /** Format: date-time */
7304
7304
  createdAt: string;
7305
- customFields?: Record<string, never>;
7305
+ customFields?: GenericRecord;
7306
7306
  extensions?: {
7307
7307
  swagDynamicAccessRules?: {
7308
7308
  data?: {
@@ -7327,7 +7327,7 @@ export type Schemas = {
7327
7327
  name: string;
7328
7328
  salesChannels?: components["schemas"]["SalesChannel"][];
7329
7329
  seoUrls?: components["schemas"]["SeoUrl"][];
7330
- slotConfig?: Record<string, never>;
7330
+ slotConfig?: GenericRecord;
7331
7331
  tags?: components["schemas"]["Tag"][];
7332
7332
  translated?: {
7333
7333
  cmsPageId?: string;
@@ -7350,7 +7350,7 @@ export type Schemas = {
7350
7350
  cmsPageVersionId?: string;
7351
7351
  /** Format: date-time */
7352
7352
  createdAt: string;
7353
- customFields?: Record<string, never>;
7353
+ customFields?: GenericRecord;
7354
7354
  extensions?: {
7355
7355
  swagDynamicAccessRules?: {
7356
7356
  data?: {
@@ -7435,7 +7435,7 @@ export type Schemas = {
7435
7435
  };
7436
7436
  };
7437
7437
  };
7438
- slotConfig?: Record<string, never>;
7438
+ slotConfig?: GenericRecord;
7439
7439
  translated?: {
7440
7440
  cmsPageId?: string;
7441
7441
  cmsPageVersionId?: string;
@@ -7472,7 +7472,7 @@ export type Schemas = {
7472
7472
  /** Format: date-time */
7473
7473
  createdAt: string;
7474
7474
  customers?: components["schemas"]["Customer"][];
7475
- customFields?: Record<string, never>;
7475
+ customFields?: GenericRecord;
7476
7476
  extensions?: {
7477
7477
  mediaAiTagTranslation?: {
7478
7478
  data?: {
@@ -7558,7 +7558,7 @@ export type Schemas = {
7558
7558
  LanguageJsonApi: components["schemas"]["resource"] & {
7559
7559
  /** Format: date-time */
7560
7560
  createdAt: string;
7561
- customFields?: Record<string, never>;
7561
+ customFields?: GenericRecord;
7562
7562
  extensions?: {
7563
7563
  mediaAiTagTranslation?: {
7564
7564
  data?: {
@@ -7845,7 +7845,7 @@ export type Schemas = {
7845
7845
  code: string;
7846
7846
  /** Format: date-time */
7847
7847
  createdAt: string;
7848
- customFields?: Record<string, never>;
7848
+ customFields?: GenericRecord;
7849
7849
  id: string;
7850
7850
  languages?: components["schemas"]["Language"][];
7851
7851
  name: string;
@@ -7863,7 +7863,7 @@ export type Schemas = {
7863
7863
  code: string;
7864
7864
  /** Format: date-time */
7865
7865
  createdAt: string;
7866
- customFields?: Record<string, never>;
7866
+ customFields?: GenericRecord;
7867
7867
  id: string;
7868
7868
  name: string;
7869
7869
  relationships?: {
@@ -7909,10 +7909,10 @@ export type Schemas = {
7909
7909
  };
7910
7910
  LogEntry: {
7911
7911
  channel?: string;
7912
- context?: Record<string, never>;
7912
+ context?: GenericRecord;
7913
7913
  /** Format: date-time */
7914
7914
  createdAt: string;
7915
- extra?: Record<string, never>;
7915
+ extra?: GenericRecord;
7916
7916
  id: string;
7917
7917
  /** Format: int64 */
7918
7918
  level?: number;
@@ -7922,10 +7922,10 @@ export type Schemas = {
7922
7922
  };
7923
7923
  LogEntryJsonApi: components["schemas"]["resource"] & {
7924
7924
  channel?: string;
7925
- context?: Record<string, never>;
7925
+ context?: GenericRecord;
7926
7926
  /** Format: date-time */
7927
7927
  createdAt: string;
7928
- extra?: Record<string, never>;
7928
+ extra?: GenericRecord;
7929
7929
  id: string;
7930
7930
  /** Format: int64 */
7931
7931
  level?: number;
@@ -8000,7 +8000,7 @@ export type Schemas = {
8000
8000
  contentPlain: string;
8001
8001
  /** Format: date-time */
8002
8002
  createdAt: string;
8003
- customFields?: Record<string, never>;
8003
+ customFields?: GenericRecord;
8004
8004
  description?: string;
8005
8005
  extensions?: {
8006
8006
  swagCmsExtensionsForms?: {
@@ -8042,7 +8042,7 @@ export type Schemas = {
8042
8042
  contentPlain: string;
8043
8043
  /** Format: date-time */
8044
8044
  createdAt: string;
8045
- customFields?: Record<string, never>;
8045
+ customFields?: GenericRecord;
8046
8046
  description?: string;
8047
8047
  extensions?: {
8048
8048
  swagCmsExtensionsForms?: {
@@ -8120,15 +8120,15 @@ export type Schemas = {
8120
8120
  position?: number;
8121
8121
  };
8122
8122
  MailTemplateType: {
8123
- availableEntities?: Record<string, never>;
8123
+ availableEntities?: GenericRecord;
8124
8124
  /** Format: date-time */
8125
8125
  createdAt: string;
8126
- customFields?: Record<string, never>;
8126
+ customFields?: GenericRecord;
8127
8127
  id: string;
8128
8128
  mailTemplates?: components["schemas"]["MailTemplate"][];
8129
8129
  name: string;
8130
8130
  technicalName: string;
8131
- templateData?: Record<string, never>;
8131
+ templateData?: GenericRecord;
8132
8132
  translated?: {
8133
8133
  name?: string;
8134
8134
  technicalName?: string;
@@ -8137,10 +8137,10 @@ export type Schemas = {
8137
8137
  updatedAt?: string;
8138
8138
  };
8139
8139
  MailTemplateTypeJsonApi: components["schemas"]["resource"] & {
8140
- availableEntities?: Record<string, never>;
8140
+ availableEntities?: GenericRecord;
8141
8141
  /** Format: date-time */
8142
8142
  createdAt: string;
8143
- customFields?: Record<string, never>;
8143
+ customFields?: GenericRecord;
8144
8144
  id: string;
8145
8145
  name: string;
8146
8146
  relationships?: {
@@ -8161,7 +8161,7 @@ export type Schemas = {
8161
8161
  };
8162
8162
  };
8163
8163
  technicalName: string;
8164
- templateData?: Record<string, never>;
8164
+ templateData?: GenericRecord;
8165
8165
  translated?: {
8166
8166
  name?: string;
8167
8167
  technicalName?: string;
@@ -8252,10 +8252,10 @@ export type Schemas = {
8252
8252
  cmsBlocks?: components["schemas"]["CmsBlock"][];
8253
8253
  cmsPages?: components["schemas"]["CmsPage"][];
8254
8254
  cmsSections?: components["schemas"]["CmsSection"][];
8255
- config?: Record<string, never>;
8255
+ config?: GenericRecord;
8256
8256
  /** Format: date-time */
8257
8257
  createdAt: string;
8258
- customFields?: Record<string, never>;
8258
+ customFields?: GenericRecord;
8259
8259
  documentBaseConfigs?: components["schemas"]["DocumentBaseConfig"][];
8260
8260
  documents?: components["schemas"]["Document"][];
8261
8261
  extensions?: {
@@ -8375,8 +8375,8 @@ export type Schemas = {
8375
8375
  mailTemplateMedia?: components["schemas"]["MailTemplateMedia"][];
8376
8376
  mediaFolder?: components["schemas"]["MediaFolder"];
8377
8377
  mediaFolderId?: string;
8378
- mediaType?: Record<string, never>;
8379
- metaData?: Record<string, never>;
8378
+ mediaType?: GenericRecord;
8379
+ metaData?: GenericRecord;
8380
8380
  mimeType?: string;
8381
8381
  orderLineItemDownloads?: components["schemas"]["OrderLineItemDownload"][];
8382
8382
  orderLineItems?: components["schemas"]["OrderLineItem"][];
@@ -8420,7 +8420,7 @@ export type Schemas = {
8420
8420
  media?: components["schemas"]["Media"];
8421
8421
  mediaId: string;
8422
8422
  needsAnalysis?: boolean;
8423
- tags?: Record<string, never>[];
8423
+ tags?: GenericRecord[];
8424
8424
  translated?: {
8425
8425
  mediaId?: string;
8426
8426
  };
@@ -8450,7 +8450,7 @@ export type Schemas = {
8450
8450
  };
8451
8451
  };
8452
8452
  };
8453
- tags?: Record<string, never>[];
8453
+ tags?: GenericRecord[];
8454
8454
  translated?: {
8455
8455
  mediaId?: string;
8456
8456
  };
@@ -8460,7 +8460,7 @@ export type Schemas = {
8460
8460
  MediaDefaultFolder: {
8461
8461
  /** Format: date-time */
8462
8462
  createdAt: string;
8463
- customFields?: Record<string, never>;
8463
+ customFields?: GenericRecord;
8464
8464
  entity: string;
8465
8465
  folder?: components["schemas"]["MediaFolder"];
8466
8466
  id: string;
@@ -8470,7 +8470,7 @@ export type Schemas = {
8470
8470
  MediaDefaultFolderJsonApi: components["schemas"]["resource"] & {
8471
8471
  /** Format: date-time */
8472
8472
  createdAt: string;
8473
- customFields?: Record<string, never>;
8473
+ customFields?: GenericRecord;
8474
8474
  entity: string;
8475
8475
  id: string;
8476
8476
  relationships?: {
@@ -8501,7 +8501,7 @@ export type Schemas = {
8501
8501
  configurationId: string;
8502
8502
  /** Format: date-time */
8503
8503
  createdAt: string;
8504
- customFields?: Record<string, never>;
8504
+ customFields?: GenericRecord;
8505
8505
  defaultFolder?: components["schemas"]["MediaDefaultFolder"];
8506
8506
  defaultFolderId?: string;
8507
8507
  id: string;
@@ -8518,7 +8518,7 @@ export type Schemas = {
8518
8518
  /** Format: date-time */
8519
8519
  createdAt: string;
8520
8520
  createThumbnails?: boolean;
8521
- customFields?: Record<string, never>;
8521
+ customFields?: GenericRecord;
8522
8522
  id: string;
8523
8523
  keepAspectRatio?: boolean;
8524
8524
  mediaFolders?: components["schemas"]["MediaFolder"][];
@@ -8534,7 +8534,7 @@ export type Schemas = {
8534
8534
  /** Format: date-time */
8535
8535
  createdAt: string;
8536
8536
  createThumbnails?: boolean;
8537
- customFields?: Record<string, never>;
8537
+ customFields?: GenericRecord;
8538
8538
  id: string;
8539
8539
  keepAspectRatio?: boolean;
8540
8540
  noAssociation?: boolean;
@@ -8589,7 +8589,7 @@ export type Schemas = {
8589
8589
  configurationId: string;
8590
8590
  /** Format: date-time */
8591
8591
  createdAt: string;
8592
- customFields?: Record<string, never>;
8592
+ customFields?: GenericRecord;
8593
8593
  defaultFolderId?: string;
8594
8594
  id: string;
8595
8595
  name: string;
@@ -8678,10 +8678,10 @@ export type Schemas = {
8678
8678
  };
8679
8679
  MediaJsonApi: components["schemas"]["resource"] & {
8680
8680
  alt?: string;
8681
- config?: Record<string, never>;
8681
+ config?: GenericRecord;
8682
8682
  /** Format: date-time */
8683
8683
  createdAt: string;
8684
- customFields?: Record<string, never>;
8684
+ customFields?: GenericRecord;
8685
8685
  extensions?: {
8686
8686
  cmsPageDrafts?: {
8687
8687
  data?: {
@@ -8797,8 +8797,8 @@ export type Schemas = {
8797
8797
  hasFile?: boolean;
8798
8798
  id: string;
8799
8799
  mediaFolderId?: string;
8800
- mediaType?: Record<string, never>;
8801
- metaData?: Record<string, never>;
8800
+ mediaType?: GenericRecord;
8801
+ metaData?: GenericRecord;
8802
8802
  mimeType?: string;
8803
8803
  path?: string;
8804
8804
  private?: boolean;
@@ -9180,7 +9180,7 @@ export type Schemas = {
9180
9180
  MediaThumbnail: {
9181
9181
  /** Format: date-time */
9182
9182
  createdAt: string;
9183
- customFields?: Record<string, never>;
9183
+ customFields?: GenericRecord;
9184
9184
  /** Format: int64 */
9185
9185
  height: number;
9186
9186
  id: string;
@@ -9197,7 +9197,7 @@ export type Schemas = {
9197
9197
  MediaThumbnailJsonApi: components["schemas"]["resource"] & {
9198
9198
  /** Format: date-time */
9199
9199
  createdAt: string;
9200
- customFields?: Record<string, never>;
9200
+ customFields?: GenericRecord;
9201
9201
  /** Format: int64 */
9202
9202
  height: number;
9203
9203
  id: string;
@@ -9230,7 +9230,7 @@ export type Schemas = {
9230
9230
  MediaThumbnailSize: {
9231
9231
  /** Format: date-time */
9232
9232
  createdAt: string;
9233
- customFields?: Record<string, never>;
9233
+ customFields?: GenericRecord;
9234
9234
  /** Format: int64 */
9235
9235
  height: number;
9236
9236
  id: string;
@@ -9243,7 +9243,7 @@ export type Schemas = {
9243
9243
  MediaThumbnailSizeJsonApi: components["schemas"]["resource"] & {
9244
9244
  /** Format: date-time */
9245
9245
  createdAt: string;
9246
- customFields?: Record<string, never>;
9246
+ customFields?: GenericRecord;
9247
9247
  /** Format: int64 */
9248
9248
  height: number;
9249
9249
  id: string;
@@ -9275,7 +9275,7 @@ export type Schemas = {
9275
9275
  confirmedAt?: string;
9276
9276
  /** Format: date-time */
9277
9277
  createdAt: string;
9278
- customFields?: Record<string, never>;
9278
+ customFields?: GenericRecord;
9279
9279
  email: string;
9280
9280
  firstName?: string;
9281
9281
  hash: string;
@@ -9301,7 +9301,7 @@ export type Schemas = {
9301
9301
  confirmedAt?: string;
9302
9302
  /** Format: date-time */
9303
9303
  createdAt: string;
9304
- customFields?: Record<string, never>;
9304
+ customFields?: GenericRecord;
9305
9305
  email: string;
9306
9306
  firstName?: string;
9307
9307
  hash: string;
@@ -9396,7 +9396,7 @@ export type Schemas = {
9396
9396
  createdByUserId?: string;
9397
9397
  id: string;
9398
9398
  message: string;
9399
- requiredPrivileges?: Record<string, never>[];
9399
+ requiredPrivileges?: GenericRecord[];
9400
9400
  status: string;
9401
9401
  /** Format: date-time */
9402
9402
  updatedAt?: string;
@@ -9441,7 +9441,7 @@ export type Schemas = {
9441
9441
  };
9442
9442
  };
9443
9443
  };
9444
- requiredPrivileges?: Record<string, never>[];
9444
+ requiredPrivileges?: GenericRecord[];
9445
9445
  status: string;
9446
9446
  /** Format: date-time */
9447
9447
  updatedAt?: string;
@@ -9449,7 +9449,7 @@ export type Schemas = {
9449
9449
  NumberRange: {
9450
9450
  /** Format: date-time */
9451
9451
  createdAt: string;
9452
- customFields?: Record<string, never>;
9452
+ customFields?: GenericRecord;
9453
9453
  description?: string;
9454
9454
  global: boolean;
9455
9455
  id: string;
@@ -9473,7 +9473,7 @@ export type Schemas = {
9473
9473
  NumberRangeJsonApi: components["schemas"]["resource"] & {
9474
9474
  /** Format: date-time */
9475
9475
  createdAt: string;
9476
- customFields?: Record<string, never>;
9476
+ customFields?: GenericRecord;
9477
9477
  description?: string;
9478
9478
  global: boolean;
9479
9479
  id: string;
@@ -9649,7 +9649,7 @@ export type Schemas = {
9649
9649
  NumberRangeType: {
9650
9650
  /** Format: date-time */
9651
9651
  createdAt: string;
9652
- customFields?: Record<string, never>;
9652
+ customFields?: GenericRecord;
9653
9653
  global: boolean;
9654
9654
  id: string;
9655
9655
  numberRanges?: components["schemas"]["NumberRange"][];
@@ -9666,7 +9666,7 @@ export type Schemas = {
9666
9666
  NumberRangeTypeJsonApi: components["schemas"]["resource"] & {
9667
9667
  /** Format: date-time */
9668
9668
  createdAt: string;
9669
- customFields?: Record<string, never>;
9669
+ customFields?: GenericRecord;
9670
9670
  global: boolean;
9671
9671
  id: string;
9672
9672
  relationships?: {
@@ -9778,7 +9778,7 @@ export type Schemas = {
9778
9778
  currencyFactor: number;
9779
9779
  currencyId: string;
9780
9780
  customerComment?: string;
9781
- customFields?: Record<string, never>;
9781
+ customFields?: GenericRecord;
9782
9782
  deepLinkCode?: string;
9783
9783
  deliveries?: components["schemas"]["OrderDelivery"][];
9784
9784
  documents?: components["schemas"]["Document"][];
@@ -9908,14 +9908,14 @@ export type Schemas = {
9908
9908
  /** Format: float */
9909
9909
  positionPrice?: number;
9910
9910
  price?: {
9911
- calculatedTaxes?: Record<string, never>;
9911
+ calculatedTaxes?: GenericRecord;
9912
9912
  /** Format: float */
9913
9913
  netPrice: number;
9914
9914
  /** Format: float */
9915
9915
  positionPrice: number;
9916
9916
  /** Format: float */
9917
9917
  rawTotal: number;
9918
- taxRules?: Record<string, never>;
9918
+ taxRules?: GenericRecord;
9919
9919
  taxStatus: string;
9920
9920
  /** Format: float */
9921
9921
  totalPrice: number;
@@ -9924,7 +9924,7 @@ export type Schemas = {
9924
9924
  salesChannel?: components["schemas"]["SalesChannel"];
9925
9925
  salesChannelId: string;
9926
9926
  shippingCosts?: {
9927
- calculatedTaxes?: Record<string, never>;
9927
+ calculatedTaxes?: GenericRecord;
9928
9928
  listPrice?: {
9929
9929
  /** Format: float */
9930
9930
  discount?: number;
@@ -9935,12 +9935,12 @@ export type Schemas = {
9935
9935
  };
9936
9936
  /** Format: int64 */
9937
9937
  quantity: number;
9938
- referencePrice?: Record<string, never>;
9938
+ referencePrice?: GenericRecord;
9939
9939
  regulationPrice?: {
9940
9940
  /** Format: float */
9941
9941
  price?: number;
9942
9942
  };
9943
- taxRules?: Record<string, never>;
9943
+ taxRules?: GenericRecord;
9944
9944
  /** Format: float */
9945
9945
  totalPrice: number;
9946
9946
  /** Format: float */
@@ -9978,7 +9978,7 @@ export type Schemas = {
9978
9978
  countryStateId?: string;
9979
9979
  /** Format: date-time */
9980
9980
  createdAt: string;
9981
- customFields?: Record<string, never>;
9981
+ customFields?: GenericRecord;
9982
9982
  department?: string;
9983
9983
  firstName: string;
9984
9984
  id: string;
@@ -10007,7 +10007,7 @@ export type Schemas = {
10007
10007
  countryStateId?: string;
10008
10008
  /** Format: date-time */
10009
10009
  createdAt: string;
10010
- customFields?: Record<string, never>;
10010
+ customFields?: GenericRecord;
10011
10011
  department?: string;
10012
10012
  firstName: string;
10013
10013
  id: string;
@@ -10108,7 +10108,7 @@ export type Schemas = {
10108
10108
  customer?: components["schemas"]["Customer"];
10109
10109
  customerId?: string;
10110
10110
  customerNumber?: string;
10111
- customFields?: Record<string, never>;
10111
+ customFields?: GenericRecord;
10112
10112
  email: string;
10113
10113
  firstName: string;
10114
10114
  id: string;
@@ -10131,7 +10131,7 @@ export type Schemas = {
10131
10131
  createdAt: string;
10132
10132
  customerId?: string;
10133
10133
  customerNumber?: string;
10134
- customFields?: Record<string, never>;
10134
+ customFields?: GenericRecord;
10135
10135
  email: string;
10136
10136
  firstName: string;
10137
10137
  id: string;
@@ -10196,14 +10196,14 @@ export type Schemas = {
10196
10196
  OrderDelivery: {
10197
10197
  /** Format: date-time */
10198
10198
  createdAt: string;
10199
- customFields?: Record<string, never>;
10199
+ customFields?: GenericRecord;
10200
10200
  id: string;
10201
10201
  order?: components["schemas"]["Order"];
10202
10202
  orderId: string;
10203
10203
  orderVersionId?: string;
10204
10204
  positions?: components["schemas"]["OrderDeliveryPosition"][];
10205
10205
  shippingCosts?: {
10206
- calculatedTaxes?: Record<string, never>;
10206
+ calculatedTaxes?: GenericRecord;
10207
10207
  listPrice?: {
10208
10208
  /** Format: float */
10209
10209
  discount?: number;
@@ -10214,12 +10214,12 @@ export type Schemas = {
10214
10214
  };
10215
10215
  /** Format: int64 */
10216
10216
  quantity: number;
10217
- referencePrice?: Record<string, never>;
10217
+ referencePrice?: GenericRecord;
10218
10218
  regulationPrice?: {
10219
10219
  /** Format: float */
10220
10220
  price?: number;
10221
10221
  };
10222
- taxRules?: Record<string, never>;
10222
+ taxRules?: GenericRecord;
10223
10223
  /** Format: float */
10224
10224
  totalPrice: number;
10225
10225
  /** Format: float */
@@ -10244,7 +10244,7 @@ export type Schemas = {
10244
10244
  OrderDeliveryJsonApi: components["schemas"]["resource"] & {
10245
10245
  /** Format: date-time */
10246
10246
  createdAt: string;
10247
- customFields?: Record<string, never>;
10247
+ customFields?: GenericRecord;
10248
10248
  id: string;
10249
10249
  orderId: string;
10250
10250
  orderVersionId?: string;
@@ -10326,7 +10326,7 @@ export type Schemas = {
10326
10326
  };
10327
10327
  };
10328
10328
  shippingCosts?: {
10329
- calculatedTaxes?: Record<string, never>;
10329
+ calculatedTaxes?: GenericRecord;
10330
10330
  listPrice?: {
10331
10331
  /** Format: float */
10332
10332
  discount?: number;
@@ -10337,12 +10337,12 @@ export type Schemas = {
10337
10337
  };
10338
10338
  /** Format: int64 */
10339
10339
  quantity: number;
10340
- referencePrice?: Record<string, never>;
10340
+ referencePrice?: GenericRecord;
10341
10341
  regulationPrice?: {
10342
10342
  /** Format: float */
10343
10343
  price?: number;
10344
10344
  };
10345
- taxRules?: Record<string, never>;
10345
+ taxRules?: GenericRecord;
10346
10346
  /** Format: float */
10347
10347
  totalPrice: number;
10348
10348
  /** Format: float */
@@ -10364,7 +10364,7 @@ export type Schemas = {
10364
10364
  OrderDeliveryPosition: {
10365
10365
  /** Format: date-time */
10366
10366
  createdAt: string;
10367
- customFields?: Record<string, never>;
10367
+ customFields?: GenericRecord;
10368
10368
  id: string;
10369
10369
  orderDelivery?: components["schemas"]["OrderDelivery"];
10370
10370
  orderDeliveryId: string;
@@ -10373,7 +10373,7 @@ export type Schemas = {
10373
10373
  orderLineItemId: string;
10374
10374
  orderLineItemVersionId?: string;
10375
10375
  price?: {
10376
- calculatedTaxes?: Record<string, never>;
10376
+ calculatedTaxes?: GenericRecord;
10377
10377
  listPrice?: {
10378
10378
  /** Format: float */
10379
10379
  discount?: number;
@@ -10384,12 +10384,12 @@ export type Schemas = {
10384
10384
  };
10385
10385
  /** Format: int64 */
10386
10386
  quantity: number;
10387
- referencePrice?: Record<string, never>;
10387
+ referencePrice?: GenericRecord;
10388
10388
  regulationPrice?: {
10389
10389
  /** Format: float */
10390
10390
  price?: number;
10391
10391
  };
10392
- taxRules?: Record<string, never>;
10392
+ taxRules?: GenericRecord;
10393
10393
  /** Format: float */
10394
10394
  totalPrice: number;
10395
10395
  /** Format: float */
@@ -10408,14 +10408,14 @@ export type Schemas = {
10408
10408
  OrderDeliveryPositionJsonApi: components["schemas"]["resource"] & {
10409
10409
  /** Format: date-time */
10410
10410
  createdAt: string;
10411
- customFields?: Record<string, never>;
10411
+ customFields?: GenericRecord;
10412
10412
  id: string;
10413
10413
  orderDeliveryId: string;
10414
10414
  orderDeliveryVersionId?: string;
10415
10415
  orderLineItemId: string;
10416
10416
  orderLineItemVersionId?: string;
10417
10417
  price?: {
10418
- calculatedTaxes?: Record<string, never>;
10418
+ calculatedTaxes?: GenericRecord;
10419
10419
  listPrice?: {
10420
10420
  /** Format: float */
10421
10421
  discount?: number;
@@ -10426,12 +10426,12 @@ export type Schemas = {
10426
10426
  };
10427
10427
  /** Format: int64 */
10428
10428
  quantity: number;
10429
- referencePrice?: Record<string, never>;
10429
+ referencePrice?: GenericRecord;
10430
10430
  regulationPrice?: {
10431
10431
  /** Format: float */
10432
10432
  price?: number;
10433
10433
  };
10434
- taxRules?: Record<string, never>;
10434
+ taxRules?: GenericRecord;
10435
10435
  /** Format: float */
10436
10436
  totalPrice: number;
10437
10437
  /** Format: float */
@@ -10497,7 +10497,7 @@ export type Schemas = {
10497
10497
  currencyFactor: number;
10498
10498
  currencyId: string;
10499
10499
  customerComment?: string;
10500
- customFields?: Record<string, never>;
10500
+ customFields?: GenericRecord;
10501
10501
  deepLinkCode?: string;
10502
10502
  extensions?: {
10503
10503
  delayActions?: {
@@ -10622,14 +10622,14 @@ export type Schemas = {
10622
10622
  /** Format: float */
10623
10623
  positionPrice?: number;
10624
10624
  price?: {
10625
- calculatedTaxes?: Record<string, never>;
10625
+ calculatedTaxes?: GenericRecord;
10626
10626
  /** Format: float */
10627
10627
  netPrice: number;
10628
10628
  /** Format: float */
10629
10629
  positionPrice: number;
10630
10630
  /** Format: float */
10631
10631
  rawTotal: number;
10632
- taxRules?: Record<string, never>;
10632
+ taxRules?: GenericRecord;
10633
10633
  taxStatus: string;
10634
10634
  /** Format: float */
10635
10635
  totalPrice: number;
@@ -10849,7 +10849,7 @@ export type Schemas = {
10849
10849
  ruleIds?: string[];
10850
10850
  salesChannelId: string;
10851
10851
  shippingCosts?: {
10852
- calculatedTaxes?: Record<string, never>;
10852
+ calculatedTaxes?: GenericRecord;
10853
10853
  listPrice?: {
10854
10854
  /** Format: float */
10855
10855
  discount?: number;
@@ -10860,12 +10860,12 @@ export type Schemas = {
10860
10860
  };
10861
10861
  /** Format: int64 */
10862
10862
  quantity: number;
10863
- referencePrice?: Record<string, never>;
10863
+ referencePrice?: GenericRecord;
10864
10864
  regulationPrice?: {
10865
10865
  /** Format: float */
10866
10866
  price?: number;
10867
10867
  };
10868
- taxRules?: Record<string, never>;
10868
+ taxRules?: GenericRecord;
10869
10869
  /** Format: float */
10870
10870
  totalPrice: number;
10871
10871
  /** Format: float */
@@ -10894,7 +10894,7 @@ export type Schemas = {
10894
10894
  coverId?: string;
10895
10895
  /** Format: date-time */
10896
10896
  createdAt: string;
10897
- customFields?: Record<string, never>;
10897
+ customFields?: GenericRecord;
10898
10898
  description?: string;
10899
10899
  downloads?: components["schemas"]["OrderLineItemDownload"][];
10900
10900
  extensions?: {
@@ -10941,11 +10941,11 @@ export type Schemas = {
10941
10941
  parent?: components["schemas"]["OrderLineItem"];
10942
10942
  parentId?: string;
10943
10943
  parentVersionId?: string;
10944
- payload?: Record<string, never>;
10944
+ payload?: GenericRecord;
10945
10945
  /** Format: int64 */
10946
10946
  position: number;
10947
10947
  price: {
10948
- calculatedTaxes?: Record<string, never>;
10948
+ calculatedTaxes?: GenericRecord;
10949
10949
  listPrice?: {
10950
10950
  /** Format: float */
10951
10951
  discount?: number;
@@ -10956,18 +10956,18 @@ export type Schemas = {
10956
10956
  };
10957
10957
  /** Format: int64 */
10958
10958
  quantity: number;
10959
- referencePrice?: Record<string, never>;
10959
+ referencePrice?: GenericRecord;
10960
10960
  regulationPrice?: {
10961
10961
  /** Format: float */
10962
10962
  price?: number;
10963
10963
  };
10964
- taxRules?: Record<string, never>;
10964
+ taxRules?: GenericRecord;
10965
10965
  /** Format: float */
10966
10966
  totalPrice: number;
10967
10967
  /** Format: float */
10968
10968
  unitPrice: number;
10969
10969
  };
10970
- priceDefinition?: Record<string, never>;
10970
+ priceDefinition?: GenericRecord;
10971
10971
  product?: components["schemas"]["Product"];
10972
10972
  productId?: string;
10973
10973
  productVersionId?: string;
@@ -10992,7 +10992,7 @@ export type Schemas = {
10992
10992
  accessGranted: boolean;
10993
10993
  /** Format: date-time */
10994
10994
  createdAt: string;
10995
- customFields?: Record<string, never>;
10995
+ customFields?: GenericRecord;
10996
10996
  id: string;
10997
10997
  media?: components["schemas"]["Media"];
10998
10998
  mediaId: string;
@@ -11009,7 +11009,7 @@ export type Schemas = {
11009
11009
  accessGranted: boolean;
11010
11010
  /** Format: date-time */
11011
11011
  createdAt: string;
11012
- customFields?: Record<string, never>;
11012
+ customFields?: GenericRecord;
11013
11013
  id: string;
11014
11014
  mediaId: string;
11015
11015
  orderLineItemId: string;
@@ -11056,7 +11056,7 @@ export type Schemas = {
11056
11056
  coverId?: string;
11057
11057
  /** Format: date-time */
11058
11058
  createdAt: string;
11059
- customFields?: Record<string, never>;
11059
+ customFields?: GenericRecord;
11060
11060
  description?: string;
11061
11061
  extensions?: {
11062
11062
  returns?: {
@@ -11098,11 +11098,11 @@ export type Schemas = {
11098
11098
  orderVersionId?: string;
11099
11099
  parentId?: string;
11100
11100
  parentVersionId?: string;
11101
- payload?: Record<string, never>;
11101
+ payload?: GenericRecord;
11102
11102
  /** Format: int64 */
11103
11103
  position: number;
11104
11104
  price: {
11105
- calculatedTaxes?: Record<string, never>;
11105
+ calculatedTaxes?: GenericRecord;
11106
11106
  listPrice?: {
11107
11107
  /** Format: float */
11108
11108
  discount?: number;
@@ -11113,18 +11113,18 @@ export type Schemas = {
11113
11113
  };
11114
11114
  /** Format: int64 */
11115
11115
  quantity: number;
11116
- referencePrice?: Record<string, never>;
11116
+ referencePrice?: GenericRecord;
11117
11117
  regulationPrice?: {
11118
11118
  /** Format: float */
11119
11119
  price?: number;
11120
11120
  };
11121
- taxRules?: Record<string, never>;
11121
+ taxRules?: GenericRecord;
11122
11122
  /** Format: float */
11123
11123
  totalPrice: number;
11124
11124
  /** Format: float */
11125
11125
  unitPrice: number;
11126
11126
  };
11127
- priceDefinition?: Record<string, never>;
11127
+ priceDefinition?: GenericRecord;
11128
11128
  productId?: string;
11129
11129
  productVersionId?: string;
11130
11130
  promotionId?: string;
@@ -11376,14 +11376,14 @@ export type Schemas = {
11376
11376
  orderId: string;
11377
11377
  orderVersionId?: string;
11378
11378
  price?: {
11379
- calculatedTaxes?: Record<string, never>;
11379
+ calculatedTaxes?: GenericRecord;
11380
11380
  /** Format: float */
11381
11381
  netPrice: number;
11382
11382
  /** Format: float */
11383
11383
  positionPrice: number;
11384
11384
  /** Format: float */
11385
11385
  rawTotal: number;
11386
- taxRules?: Record<string, never>;
11386
+ taxRules?: GenericRecord;
11387
11387
  taxStatus: string;
11388
11388
  /** Format: float */
11389
11389
  totalPrice: number;
@@ -11392,7 +11392,7 @@ export type Schemas = {
11392
11392
  requestedAt: string;
11393
11393
  returnNumber: string;
11394
11394
  shippingCosts?: {
11395
- calculatedTaxes?: Record<string, never>;
11395
+ calculatedTaxes?: GenericRecord;
11396
11396
  listPrice?: {
11397
11397
  /** Format: float */
11398
11398
  discount?: number;
@@ -11403,12 +11403,12 @@ export type Schemas = {
11403
11403
  };
11404
11404
  /** Format: int64 */
11405
11405
  quantity: number;
11406
- referencePrice?: Record<string, never>;
11406
+ referencePrice?: GenericRecord;
11407
11407
  regulationPrice?: {
11408
11408
  /** Format: float */
11409
11409
  price?: number;
11410
11410
  };
11411
- taxRules?: Record<string, never>;
11411
+ taxRules?: GenericRecord;
11412
11412
  /** Format: float */
11413
11413
  totalPrice: number;
11414
11414
  /** Format: float */
@@ -11435,14 +11435,14 @@ export type Schemas = {
11435
11435
  orderId: string;
11436
11436
  orderVersionId?: string;
11437
11437
  price?: {
11438
- calculatedTaxes?: Record<string, never>;
11438
+ calculatedTaxes?: GenericRecord;
11439
11439
  /** Format: float */
11440
11440
  netPrice: number;
11441
11441
  /** Format: float */
11442
11442
  positionPrice: number;
11443
11443
  /** Format: float */
11444
11444
  rawTotal: number;
11445
- taxRules?: Record<string, never>;
11445
+ taxRules?: GenericRecord;
11446
11446
  taxStatus: string;
11447
11447
  /** Format: float */
11448
11448
  totalPrice: number;
@@ -11528,7 +11528,7 @@ export type Schemas = {
11528
11528
  requestedAt: string;
11529
11529
  returnNumber: string;
11530
11530
  shippingCosts?: {
11531
- calculatedTaxes?: Record<string, never>;
11531
+ calculatedTaxes?: GenericRecord;
11532
11532
  listPrice?: {
11533
11533
  /** Format: float */
11534
11534
  discount?: number;
@@ -11539,12 +11539,12 @@ export type Schemas = {
11539
11539
  };
11540
11540
  /** Format: int64 */
11541
11541
  quantity: number;
11542
- referencePrice?: Record<string, never>;
11542
+ referencePrice?: GenericRecord;
11543
11543
  regulationPrice?: {
11544
11544
  /** Format: float */
11545
11545
  price?: number;
11546
11546
  };
11547
- taxRules?: Record<string, never>;
11547
+ taxRules?: GenericRecord;
11548
11548
  /** Format: float */
11549
11549
  totalPrice: number;
11550
11550
  /** Format: float */
@@ -11559,7 +11559,7 @@ export type Schemas = {
11559
11559
  OrderReturnLineItem: {
11560
11560
  /** Format: date-time */
11561
11561
  createdAt: string;
11562
- customFields?: Record<string, never>;
11562
+ customFields?: GenericRecord;
11563
11563
  id: string;
11564
11564
  internalComment?: string;
11565
11565
  lineItem?: components["schemas"]["OrderLineItem"];
@@ -11568,7 +11568,7 @@ export type Schemas = {
11568
11568
  orderReturnId: string;
11569
11569
  orderReturnVersionId?: string;
11570
11570
  price: {
11571
- calculatedTaxes?: Record<string, never>;
11571
+ calculatedTaxes?: GenericRecord;
11572
11572
  listPrice?: {
11573
11573
  /** Format: float */
11574
11574
  discount?: number;
@@ -11579,12 +11579,12 @@ export type Schemas = {
11579
11579
  };
11580
11580
  /** Format: int64 */
11581
11581
  quantity: number;
11582
- referencePrice?: Record<string, never>;
11582
+ referencePrice?: GenericRecord;
11583
11583
  regulationPrice?: {
11584
11584
  /** Format: float */
11585
11585
  price?: number;
11586
11586
  };
11587
- taxRules?: Record<string, never>;
11587
+ taxRules?: GenericRecord;
11588
11588
  /** Format: float */
11589
11589
  totalPrice: number;
11590
11590
  /** Format: float */
@@ -11608,7 +11608,7 @@ export type Schemas = {
11608
11608
  OrderReturnLineItemJsonApi: components["schemas"]["resource"] & {
11609
11609
  /** Format: date-time */
11610
11610
  createdAt: string;
11611
- customFields?: Record<string, never>;
11611
+ customFields?: GenericRecord;
11612
11612
  id: string;
11613
11613
  internalComment?: string;
11614
11614
  orderLineItemId: string;
@@ -11616,7 +11616,7 @@ export type Schemas = {
11616
11616
  orderReturnId: string;
11617
11617
  orderReturnVersionId?: string;
11618
11618
  price: {
11619
- calculatedTaxes?: Record<string, never>;
11619
+ calculatedTaxes?: GenericRecord;
11620
11620
  listPrice?: {
11621
11621
  /** Format: float */
11622
11622
  discount?: number;
@@ -11627,12 +11627,12 @@ export type Schemas = {
11627
11627
  };
11628
11628
  /** Format: int64 */
11629
11629
  quantity: number;
11630
- referencePrice?: Record<string, never>;
11630
+ referencePrice?: GenericRecord;
11631
11631
  regulationPrice?: {
11632
11632
  /** Format: float */
11633
11633
  price?: number;
11634
11634
  };
11635
- taxRules?: Record<string, never>;
11635
+ taxRules?: GenericRecord;
11636
11636
  /** Format: float */
11637
11637
  totalPrice: number;
11638
11638
  /** Format: float */
@@ -11766,7 +11766,7 @@ export type Schemas = {
11766
11766
  };
11767
11767
  OrderTransaction: {
11768
11768
  amount: {
11769
- calculatedTaxes?: Record<string, never>;
11769
+ calculatedTaxes?: GenericRecord;
11770
11770
  listPrice?: {
11771
11771
  /** Format: float */
11772
11772
  discount?: number;
@@ -11777,12 +11777,12 @@ export type Schemas = {
11777
11777
  };
11778
11778
  /** Format: int64 */
11779
11779
  quantity: number;
11780
- referencePrice?: Record<string, never>;
11780
+ referencePrice?: GenericRecord;
11781
11781
  regulationPrice?: {
11782
11782
  /** Format: float */
11783
11783
  price?: number;
11784
11784
  };
11785
- taxRules?: Record<string, never>;
11785
+ taxRules?: GenericRecord;
11786
11786
  /** Format: float */
11787
11787
  totalPrice: number;
11788
11788
  /** Format: float */
@@ -11791,7 +11791,7 @@ export type Schemas = {
11791
11791
  captures?: components["schemas"]["OrderTransactionCapture"][];
11792
11792
  /** Format: date-time */
11793
11793
  createdAt: string;
11794
- customFields?: Record<string, never>;
11794
+ customFields?: GenericRecord;
11795
11795
  id: string;
11796
11796
  order?: components["schemas"]["Order"];
11797
11797
  orderId: string;
@@ -11806,7 +11806,7 @@ export type Schemas = {
11806
11806
  };
11807
11807
  OrderTransactionCapture: {
11808
11808
  amount: {
11809
- calculatedTaxes?: Record<string, never>;
11809
+ calculatedTaxes?: GenericRecord;
11810
11810
  listPrice?: {
11811
11811
  /** Format: float */
11812
11812
  discount?: number;
@@ -11817,12 +11817,12 @@ export type Schemas = {
11817
11817
  };
11818
11818
  /** Format: int64 */
11819
11819
  quantity: number;
11820
- referencePrice?: Record<string, never>;
11820
+ referencePrice?: GenericRecord;
11821
11821
  regulationPrice?: {
11822
11822
  /** Format: float */
11823
11823
  price?: number;
11824
11824
  };
11825
- taxRules?: Record<string, never>;
11825
+ taxRules?: GenericRecord;
11826
11826
  /** Format: float */
11827
11827
  totalPrice: number;
11828
11828
  /** Format: float */
@@ -11830,7 +11830,7 @@ export type Schemas = {
11830
11830
  };
11831
11831
  /** Format: date-time */
11832
11832
  createdAt: string;
11833
- customFields?: Record<string, never>;
11833
+ customFields?: GenericRecord;
11834
11834
  externalReference?: string;
11835
11835
  id: string;
11836
11836
  orderTransactionId: string;
@@ -11845,7 +11845,7 @@ export type Schemas = {
11845
11845
  };
11846
11846
  OrderTransactionCaptureJsonApi: components["schemas"]["resource"] & {
11847
11847
  amount: {
11848
- calculatedTaxes?: Record<string, never>;
11848
+ calculatedTaxes?: GenericRecord;
11849
11849
  listPrice?: {
11850
11850
  /** Format: float */
11851
11851
  discount?: number;
@@ -11856,12 +11856,12 @@ export type Schemas = {
11856
11856
  };
11857
11857
  /** Format: int64 */
11858
11858
  quantity: number;
11859
- referencePrice?: Record<string, never>;
11859
+ referencePrice?: GenericRecord;
11860
11860
  regulationPrice?: {
11861
11861
  /** Format: float */
11862
11862
  price?: number;
11863
11863
  };
11864
- taxRules?: Record<string, never>;
11864
+ taxRules?: GenericRecord;
11865
11865
  /** Format: float */
11866
11866
  totalPrice: number;
11867
11867
  /** Format: float */
@@ -11869,7 +11869,7 @@ export type Schemas = {
11869
11869
  };
11870
11870
  /** Format: date-time */
11871
11871
  createdAt: string;
11872
- customFields?: Record<string, never>;
11872
+ customFields?: GenericRecord;
11873
11873
  externalReference?: string;
11874
11874
  id: string;
11875
11875
  orderTransactionId: string;
@@ -11928,7 +11928,7 @@ export type Schemas = {
11928
11928
  };
11929
11929
  OrderTransactionCaptureRefund: {
11930
11930
  amount: {
11931
- calculatedTaxes?: Record<string, never>;
11931
+ calculatedTaxes?: GenericRecord;
11932
11932
  listPrice?: {
11933
11933
  /** Format: float */
11934
11934
  discount?: number;
@@ -11939,12 +11939,12 @@ export type Schemas = {
11939
11939
  };
11940
11940
  /** Format: int64 */
11941
11941
  quantity: number;
11942
- referencePrice?: Record<string, never>;
11942
+ referencePrice?: GenericRecord;
11943
11943
  regulationPrice?: {
11944
11944
  /** Format: float */
11945
11945
  price?: number;
11946
11946
  };
11947
- taxRules?: Record<string, never>;
11947
+ taxRules?: GenericRecord;
11948
11948
  /** Format: float */
11949
11949
  totalPrice: number;
11950
11950
  /** Format: float */
@@ -11954,7 +11954,7 @@ export type Schemas = {
11954
11954
  captureVersionId?: string;
11955
11955
  /** Format: date-time */
11956
11956
  createdAt: string;
11957
- customFields?: Record<string, never>;
11957
+ customFields?: GenericRecord;
11958
11958
  externalReference?: string;
11959
11959
  id: string;
11960
11960
  positions?: components["schemas"]["OrderTransactionCaptureRefundPosition"][];
@@ -11968,7 +11968,7 @@ export type Schemas = {
11968
11968
  };
11969
11969
  OrderTransactionCaptureRefundJsonApi: components["schemas"]["resource"] & {
11970
11970
  amount: {
11971
- calculatedTaxes?: Record<string, never>;
11971
+ calculatedTaxes?: GenericRecord;
11972
11972
  listPrice?: {
11973
11973
  /** Format: float */
11974
11974
  discount?: number;
@@ -11979,12 +11979,12 @@ export type Schemas = {
11979
11979
  };
11980
11980
  /** Format: int64 */
11981
11981
  quantity: number;
11982
- referencePrice?: Record<string, never>;
11982
+ referencePrice?: GenericRecord;
11983
11983
  regulationPrice?: {
11984
11984
  /** Format: float */
11985
11985
  price?: number;
11986
11986
  };
11987
- taxRules?: Record<string, never>;
11987
+ taxRules?: GenericRecord;
11988
11988
  /** Format: float */
11989
11989
  totalPrice: number;
11990
11990
  /** Format: float */
@@ -11994,7 +11994,7 @@ export type Schemas = {
11994
11994
  captureVersionId?: string;
11995
11995
  /** Format: date-time */
11996
11996
  createdAt: string;
11997
- customFields?: Record<string, never>;
11997
+ customFields?: GenericRecord;
11998
11998
  externalReference?: string;
11999
11999
  id: string;
12000
12000
  reason?: string;
@@ -12052,7 +12052,7 @@ export type Schemas = {
12052
12052
  };
12053
12053
  OrderTransactionCaptureRefundPosition: {
12054
12054
  amount: {
12055
- calculatedTaxes?: Record<string, never>;
12055
+ calculatedTaxes?: GenericRecord;
12056
12056
  listPrice?: {
12057
12057
  /** Format: float */
12058
12058
  discount?: number;
@@ -12063,12 +12063,12 @@ export type Schemas = {
12063
12063
  };
12064
12064
  /** Format: int64 */
12065
12065
  quantity: number;
12066
- referencePrice?: Record<string, never>;
12066
+ referencePrice?: GenericRecord;
12067
12067
  regulationPrice?: {
12068
12068
  /** Format: float */
12069
12069
  price?: number;
12070
12070
  };
12071
- taxRules?: Record<string, never>;
12071
+ taxRules?: GenericRecord;
12072
12072
  /** Format: float */
12073
12073
  totalPrice: number;
12074
12074
  /** Format: float */
@@ -12076,7 +12076,7 @@ export type Schemas = {
12076
12076
  };
12077
12077
  /** Format: date-time */
12078
12078
  createdAt: string;
12079
- customFields?: Record<string, never>;
12079
+ customFields?: GenericRecord;
12080
12080
  externalReference?: string;
12081
12081
  id: string;
12082
12082
  orderLineItem?: components["schemas"]["OrderLineItem"];
@@ -12094,7 +12094,7 @@ export type Schemas = {
12094
12094
  };
12095
12095
  OrderTransactionCaptureRefundPositionJsonApi: components["schemas"]["resource"] & {
12096
12096
  amount: {
12097
- calculatedTaxes?: Record<string, never>;
12097
+ calculatedTaxes?: GenericRecord;
12098
12098
  listPrice?: {
12099
12099
  /** Format: float */
12100
12100
  discount?: number;
@@ -12105,12 +12105,12 @@ export type Schemas = {
12105
12105
  };
12106
12106
  /** Format: int64 */
12107
12107
  quantity: number;
12108
- referencePrice?: Record<string, never>;
12108
+ referencePrice?: GenericRecord;
12109
12109
  regulationPrice?: {
12110
12110
  /** Format: float */
12111
12111
  price?: number;
12112
12112
  };
12113
- taxRules?: Record<string, never>;
12113
+ taxRules?: GenericRecord;
12114
12114
  /** Format: float */
12115
12115
  totalPrice: number;
12116
12116
  /** Format: float */
@@ -12118,7 +12118,7 @@ export type Schemas = {
12118
12118
  };
12119
12119
  /** Format: date-time */
12120
12120
  createdAt: string;
12121
- customFields?: Record<string, never>;
12121
+ customFields?: GenericRecord;
12122
12122
  externalReference?: string;
12123
12123
  id: string;
12124
12124
  orderLineItemId: string;
@@ -12166,7 +12166,7 @@ export type Schemas = {
12166
12166
  };
12167
12167
  OrderTransactionJsonApi: components["schemas"]["resource"] & {
12168
12168
  amount: {
12169
- calculatedTaxes?: Record<string, never>;
12169
+ calculatedTaxes?: GenericRecord;
12170
12170
  listPrice?: {
12171
12171
  /** Format: float */
12172
12172
  discount?: number;
@@ -12177,12 +12177,12 @@ export type Schemas = {
12177
12177
  };
12178
12178
  /** Format: int64 */
12179
12179
  quantity: number;
12180
- referencePrice?: Record<string, never>;
12180
+ referencePrice?: GenericRecord;
12181
12181
  regulationPrice?: {
12182
12182
  /** Format: float */
12183
12183
  price?: number;
12184
12184
  };
12185
- taxRules?: Record<string, never>;
12185
+ taxRules?: GenericRecord;
12186
12186
  /** Format: float */
12187
12187
  totalPrice: number;
12188
12188
  /** Format: float */
@@ -12190,7 +12190,7 @@ export type Schemas = {
12190
12190
  };
12191
12191
  /** Format: date-time */
12192
12192
  createdAt: string;
12193
- customFields?: Record<string, never>;
12193
+ customFields?: GenericRecord;
12194
12194
  id: string;
12195
12195
  orderId: string;
12196
12196
  orderVersionId?: string;
@@ -12329,7 +12329,7 @@ export type Schemas = {
12329
12329
  /** Format: date-time */
12330
12330
  createdAt: string;
12331
12331
  customers?: components["schemas"]["Customer"][];
12332
- customFields?: Record<string, never>;
12332
+ customFields?: GenericRecord;
12333
12333
  description?: string;
12334
12334
  distinguishableName?: string;
12335
12335
  extensions?: {
@@ -12442,7 +12442,7 @@ export type Schemas = {
12442
12442
  availabilityRuleId?: string;
12443
12443
  /** Format: date-time */
12444
12444
  createdAt: string;
12445
- customFields?: Record<string, never>;
12445
+ customFields?: GenericRecord;
12446
12446
  description?: string;
12447
12447
  distinguishableName?: string;
12448
12448
  extensions?: {
@@ -12667,13 +12667,13 @@ export type Schemas = {
12667
12667
  Plugin: {
12668
12668
  active?: boolean;
12669
12669
  author?: string;
12670
- autoload: Record<string, never>;
12670
+ autoload: GenericRecord;
12671
12671
  baseClass: string;
12672
12672
  composerName?: string;
12673
12673
  copyright?: string;
12674
12674
  /** Format: date-time */
12675
12675
  createdAt: string;
12676
- customFields?: Record<string, never>;
12676
+ customFields?: GenericRecord;
12677
12677
  description?: string;
12678
12678
  /** Runtime field, cannot be used as part of the criteria. */
12679
12679
  icon?: string;
@@ -12716,13 +12716,13 @@ export type Schemas = {
12716
12716
  PluginJsonApi: components["schemas"]["resource"] & {
12717
12717
  active?: boolean;
12718
12718
  author?: string;
12719
- autoload: Record<string, never>;
12719
+ autoload: GenericRecord;
12720
12720
  baseClass: string;
12721
12721
  composerName?: string;
12722
12722
  copyright?: string;
12723
12723
  /** Format: date-time */
12724
12724
  createdAt: string;
12725
- customFields?: Record<string, never>;
12725
+ customFields?: GenericRecord;
12726
12726
  description?: string;
12727
12727
  /** Runtime field, cannot be used as part of the criteria. */
12728
12728
  icon?: string;
@@ -12805,10 +12805,10 @@ export type Schemas = {
12805
12805
  createdAt: string;
12806
12806
  crossSellingAssignedProducts?: components["schemas"]["ProductCrossSellingAssignedProducts"][];
12807
12807
  crossSellings?: components["schemas"]["ProductCrossSelling"][];
12808
- customFields?: Record<string, never>;
12808
+ customFields?: GenericRecord;
12809
12809
  customFieldSets?: components["schemas"]["CustomFieldSet"][];
12810
12810
  customFieldSetSelectionActive?: boolean;
12811
- customSearchKeywords?: Record<string, never>[];
12811
+ customSearchKeywords?: GenericRecord[];
12812
12812
  deliveryTime?: components["schemas"]["DeliveryTime"];
12813
12813
  deliveryTimeId?: string;
12814
12814
  description?: string;
@@ -12906,7 +12906,7 @@ export type Schemas = {
12906
12906
  related?: string;
12907
12907
  };
12908
12908
  };
12909
- search?: Record<string, never>;
12909
+ search?: GenericRecord;
12910
12910
  shoppingListLineItems?: {
12911
12911
  data?: {
12912
12912
  /** @example ce593c6d1db236f22dc387a2ee20dfd6 */
@@ -13043,7 +13043,7 @@ export type Schemas = {
13043
13043
  parent?: components["schemas"]["Product"];
13044
13044
  parentId?: string;
13045
13045
  parentVersionId?: string;
13046
- price: Record<string, never>;
13046
+ price: GenericRecord;
13047
13047
  prices?: components["schemas"]["ProductPrice"][];
13048
13048
  productManufacturerVersionId?: string;
13049
13049
  productMediaVersionId?: string;
@@ -13051,7 +13051,7 @@ export type Schemas = {
13051
13051
  productReviews?: components["schemas"]["ProductReview"][];
13052
13052
  properties?: components["schemas"]["PropertyGroupOption"][];
13053
13053
  propertyIds?: readonly string[];
13054
- purchasePrices?: Record<string, never>;
13054
+ purchasePrices?: GenericRecord;
13055
13055
  /** Format: int64 */
13056
13056
  purchaseSteps?: number;
13057
13057
  /** Format: float */
@@ -13069,7 +13069,7 @@ export type Schemas = {
13069
13069
  searchKeywords?: components["schemas"]["ProductSearchKeyword"][];
13070
13070
  seoUrls?: components["schemas"]["SeoUrl"][];
13071
13071
  shippingFree?: boolean;
13072
- slotConfig?: Record<string, never>;
13072
+ slotConfig?: GenericRecord;
13073
13073
  states?: readonly string[];
13074
13074
  /** Format: int64 */
13075
13075
  stock: number;
@@ -13112,8 +13112,8 @@ export type Schemas = {
13112
13112
  unitId?: string;
13113
13113
  /** Format: date-time */
13114
13114
  updatedAt?: string;
13115
- variantListingConfig?: Record<string, never>;
13116
- variantRestrictions?: Record<string, never>;
13115
+ variantListingConfig?: GenericRecord;
13116
+ variantRestrictions?: GenericRecord;
13117
13117
  variation?: string[];
13118
13118
  versionId?: string;
13119
13119
  visibilities?: components["schemas"]["ProductVisibility"][];
@@ -13144,7 +13144,7 @@ export type Schemas = {
13144
13144
  ProductConfiguratorSetting: {
13145
13145
  /** Format: date-time */
13146
13146
  createdAt: string;
13147
- customFields?: Record<string, never>;
13147
+ customFields?: GenericRecord;
13148
13148
  id: string;
13149
13149
  media?: components["schemas"]["Media"];
13150
13150
  mediaId?: string;
@@ -13152,7 +13152,7 @@ export type Schemas = {
13152
13152
  optionId: string;
13153
13153
  /** Format: int64 */
13154
13154
  position?: number;
13155
- price?: Record<string, never>;
13155
+ price?: GenericRecord;
13156
13156
  product?: components["schemas"]["Product"];
13157
13157
  productId: string;
13158
13158
  productVersionId?: string;
@@ -13163,13 +13163,13 @@ export type Schemas = {
13163
13163
  ProductConfiguratorSettingJsonApi: components["schemas"]["resource"] & {
13164
13164
  /** Format: date-time */
13165
13165
  createdAt: string;
13166
- customFields?: Record<string, never>;
13166
+ customFields?: GenericRecord;
13167
13167
  id: string;
13168
13168
  mediaId?: string;
13169
13169
  optionId: string;
13170
13170
  /** Format: int64 */
13171
13171
  position?: number;
13172
- price?: Record<string, never>;
13172
+ price?: GenericRecord;
13173
13173
  productId: string;
13174
13174
  productVersionId?: string;
13175
13175
  relationships?: {
@@ -13398,7 +13398,7 @@ export type Schemas = {
13398
13398
  ProductDownload: {
13399
13399
  /** Format: date-time */
13400
13400
  createdAt: string;
13401
- customFields?: Record<string, never>;
13401
+ customFields?: GenericRecord;
13402
13402
  id: string;
13403
13403
  media?: components["schemas"]["Media"];
13404
13404
  mediaId: string;
@@ -13414,7 +13414,7 @@ export type Schemas = {
13414
13414
  ProductDownloadJsonApi: components["schemas"]["resource"] & {
13415
13415
  /** Format: date-time */
13416
13416
  createdAt: string;
13417
- customFields?: Record<string, never>;
13417
+ customFields?: GenericRecord;
13418
13418
  id: string;
13419
13419
  mediaId: string;
13420
13420
  /** Format: int64 */
@@ -13597,7 +13597,7 @@ export type Schemas = {
13597
13597
  /** Format: date-time */
13598
13598
  createdAt: string;
13599
13599
  description?: string;
13600
- features?: Record<string, never>;
13600
+ features?: GenericRecord;
13601
13601
  id: string;
13602
13602
  name: string;
13603
13603
  products?: components["schemas"]["Product"][];
@@ -13612,7 +13612,7 @@ export type Schemas = {
13612
13612
  /** Format: date-time */
13613
13613
  createdAt: string;
13614
13614
  description?: string;
13615
- features?: Record<string, never>;
13615
+ features?: GenericRecord;
13616
13616
  id: string;
13617
13617
  name: string;
13618
13618
  relationships?: {
@@ -13657,9 +13657,9 @@ export type Schemas = {
13657
13657
  coverId?: string;
13658
13658
  /** Format: date-time */
13659
13659
  createdAt: string;
13660
- customFields?: Record<string, never>;
13660
+ customFields?: GenericRecord;
13661
13661
  customFieldSetSelectionActive?: boolean;
13662
- customSearchKeywords?: Record<string, never>[];
13662
+ customSearchKeywords?: GenericRecord[];
13663
13663
  deliveryTimeId?: string;
13664
13664
  description?: string;
13665
13665
  displayGroup?: string;
@@ -13755,7 +13755,7 @@ export type Schemas = {
13755
13755
  related?: string;
13756
13756
  };
13757
13757
  };
13758
- search?: Record<string, never>;
13758
+ search?: GenericRecord;
13759
13759
  shoppingListLineItems?: {
13760
13760
  data?: {
13761
13761
  /** @example ce593c6d1db236f22dc387a2ee20dfd6 */
@@ -13885,12 +13885,12 @@ export type Schemas = {
13885
13885
  packUnitPlural?: string;
13886
13886
  parentId?: string;
13887
13887
  parentVersionId?: string;
13888
- price: Record<string, never>;
13888
+ price: GenericRecord;
13889
13889
  productManufacturerVersionId?: string;
13890
13890
  productMediaVersionId?: string;
13891
13891
  productNumber: string;
13892
13892
  propertyIds?: readonly string[];
13893
- purchasePrices?: Record<string, never>;
13893
+ purchasePrices?: GenericRecord;
13894
13894
  /** Format: int64 */
13895
13895
  purchaseSteps?: number;
13896
13896
  /** Format: float */
@@ -14358,7 +14358,7 @@ export type Schemas = {
14358
14358
  /** Format: int64 */
14359
14359
  sales?: number;
14360
14360
  shippingFree?: boolean;
14361
- slotConfig?: Record<string, never>;
14361
+ slotConfig?: GenericRecord;
14362
14362
  states?: readonly string[];
14363
14363
  /** Format: int64 */
14364
14364
  stock: number;
@@ -14397,8 +14397,8 @@ export type Schemas = {
14397
14397
  unitId?: string;
14398
14398
  /** Format: date-time */
14399
14399
  updatedAt?: string;
14400
- variantListingConfig?: Record<string, never>;
14401
- variantRestrictions?: Record<string, never>;
14400
+ variantListingConfig?: GenericRecord;
14401
+ variantRestrictions?: GenericRecord;
14402
14402
  variation?: string[];
14403
14403
  versionId?: string;
14404
14404
  /** Format: float */
@@ -14439,10 +14439,10 @@ export type Schemas = {
14439
14439
  ProductManufacturer: {
14440
14440
  /** Format: date-time */
14441
14441
  createdAt: string;
14442
- customFields?: Record<string, never>;
14442
+ customFields?: GenericRecord;
14443
14443
  description?: string;
14444
14444
  extensions?: {
14445
- search?: Record<string, never>;
14445
+ search?: GenericRecord;
14446
14446
  };
14447
14447
  id: string;
14448
14448
  link?: string;
@@ -14464,10 +14464,10 @@ export type Schemas = {
14464
14464
  ProductManufacturerJsonApi: components["schemas"]["resource"] & {
14465
14465
  /** Format: date-time */
14466
14466
  createdAt: string;
14467
- customFields?: Record<string, never>;
14467
+ customFields?: GenericRecord;
14468
14468
  description?: string;
14469
14469
  extensions?: {
14470
- search?: Record<string, never>;
14470
+ search?: GenericRecord;
14471
14471
  };
14472
14472
  id: string;
14473
14473
  link?: string;
@@ -14520,7 +14520,7 @@ export type Schemas = {
14520
14520
  coverProducts?: components["schemas"]["Product"][];
14521
14521
  /** Format: date-time */
14522
14522
  createdAt: string;
14523
- customFields?: Record<string, never>;
14523
+ customFields?: GenericRecord;
14524
14524
  id: string;
14525
14525
  media?: components["schemas"]["Media"];
14526
14526
  mediaId: string;
@@ -14536,7 +14536,7 @@ export type Schemas = {
14536
14536
  ProductMediaJsonApi: components["schemas"]["resource"] & {
14537
14537
  /** Format: date-time */
14538
14538
  createdAt: string;
14539
- customFields?: Record<string, never>;
14539
+ customFields?: GenericRecord;
14540
14540
  id: string;
14541
14541
  mediaId: string;
14542
14542
  /** Format: int64 */
@@ -14605,9 +14605,9 @@ export type Schemas = {
14605
14605
  ProductPrice: {
14606
14606
  /** Format: date-time */
14607
14607
  createdAt: string;
14608
- customFields?: Record<string, never>;
14608
+ customFields?: GenericRecord;
14609
14609
  id: string;
14610
- price: Record<string, never>;
14610
+ price: GenericRecord;
14611
14611
  product?: components["schemas"]["Product"];
14612
14612
  productId: string;
14613
14613
  productVersionId?: string;
@@ -14624,9 +14624,9 @@ export type Schemas = {
14624
14624
  ProductPriceJsonApi: components["schemas"]["resource"] & {
14625
14625
  /** Format: date-time */
14626
14626
  createdAt: string;
14627
- customFields?: Record<string, never>;
14627
+ customFields?: GenericRecord;
14628
14628
  id: string;
14629
- price: Record<string, never>;
14629
+ price: GenericRecord;
14630
14630
  productId: string;
14631
14631
  productVersionId?: string;
14632
14632
  /** Format: int64 */
@@ -14685,7 +14685,7 @@ export type Schemas = {
14685
14685
  createdAt: string;
14686
14686
  customer?: components["schemas"]["Customer"];
14687
14687
  customerId?: string;
14688
- customFields?: Record<string, never>;
14688
+ customFields?: GenericRecord;
14689
14689
  externalEmail?: string;
14690
14690
  externalUser?: string;
14691
14691
  id: string;
@@ -14709,7 +14709,7 @@ export type Schemas = {
14709
14709
  /** Format: date-time */
14710
14710
  createdAt: string;
14711
14711
  customerId?: string;
14712
- customFields?: Record<string, never>;
14712
+ customFields?: GenericRecord;
14713
14713
  externalEmail?: string;
14714
14714
  externalUser?: string;
14715
14715
  id: string;
@@ -15042,7 +15042,7 @@ export type Schemas = {
15042
15042
  active: boolean;
15043
15043
  /** Format: date-time */
15044
15044
  createdAt: string;
15045
- fields: Record<string, never>;
15045
+ fields: GenericRecord;
15046
15046
  id: string;
15047
15047
  key: string;
15048
15048
  label: string;
@@ -15060,7 +15060,7 @@ export type Schemas = {
15060
15060
  active: boolean;
15061
15061
  /** Format: date-time */
15062
15062
  createdAt: string;
15063
- fields: Record<string, never>;
15063
+ fields: GenericRecord;
15064
15064
  id: string;
15065
15065
  key: string;
15066
15066
  label: string;
@@ -15075,11 +15075,11 @@ export type Schemas = {
15075
15075
  updatedAt?: string;
15076
15076
  };
15077
15077
  ProductStream: {
15078
- apiFilter?: Record<string, never>;
15078
+ apiFilter?: GenericRecord;
15079
15079
  categories?: components["schemas"]["Category"][];
15080
15080
  /** Format: date-time */
15081
15081
  createdAt: string;
15082
- customFields?: Record<string, never>;
15082
+ customFields?: GenericRecord;
15083
15083
  description?: string;
15084
15084
  extensions?: {
15085
15085
  paypalPosSalesChannels?: {
@@ -15129,11 +15129,11 @@ export type Schemas = {
15129
15129
  ProductStreamFilter: {
15130
15130
  /** Format: date-time */
15131
15131
  createdAt: string;
15132
- customFields?: Record<string, never>;
15132
+ customFields?: GenericRecord;
15133
15133
  field?: string;
15134
15134
  id: string;
15135
15135
  operator?: string;
15136
- parameters?: Record<string, never>;
15136
+ parameters?: GenericRecord;
15137
15137
  parent?: components["schemas"]["ProductStreamFilter"];
15138
15138
  parentId?: string;
15139
15139
  /** Format: int64 */
@@ -15149,11 +15149,11 @@ export type Schemas = {
15149
15149
  ProductStreamFilterJsonApi: components["schemas"]["resource"] & {
15150
15150
  /** Format: date-time */
15151
15151
  createdAt: string;
15152
- customFields?: Record<string, never>;
15152
+ customFields?: GenericRecord;
15153
15153
  field?: string;
15154
15154
  id: string;
15155
15155
  operator?: string;
15156
- parameters?: Record<string, never>;
15156
+ parameters?: GenericRecord;
15157
15157
  parentId?: string;
15158
15158
  /** Format: int64 */
15159
15159
  position?: number;
@@ -15211,10 +15211,10 @@ export type Schemas = {
15211
15211
  value?: string;
15212
15212
  };
15213
15213
  ProductStreamJsonApi: components["schemas"]["resource"] & {
15214
- apiFilter?: Record<string, never>;
15214
+ apiFilter?: GenericRecord;
15215
15215
  /** Format: date-time */
15216
15216
  createdAt: string;
15217
- customFields?: Record<string, never>;
15217
+ customFields?: GenericRecord;
15218
15218
  description?: string;
15219
15219
  extensions?: {
15220
15220
  paypalPosSalesChannels?: {
@@ -15467,7 +15467,7 @@ export type Schemas = {
15467
15467
  /** Format: date-time */
15468
15468
  createdAt: string;
15469
15469
  customerRestriction?: boolean;
15470
- customFields?: Record<string, never>;
15470
+ customFields?: GenericRecord;
15471
15471
  discounts?: components["schemas"]["PromotionDiscount"][];
15472
15472
  exclusionIds?: string[];
15473
15473
  exclusive: boolean;
@@ -15500,7 +15500,7 @@ export type Schemas = {
15500
15500
  orderCount?: number;
15501
15501
  orderLineItems?: components["schemas"]["OrderLineItem"][];
15502
15502
  orderRules?: components["schemas"]["Rule"][];
15503
- ordersPerCustomerCount?: Record<string, never>;
15503
+ ordersPerCustomerCount?: GenericRecord;
15504
15504
  personaCustomers?: components["schemas"]["Customer"][];
15505
15505
  personaRules?: components["schemas"]["Rule"][];
15506
15506
  preventCombination: boolean;
@@ -15688,7 +15688,7 @@ export type Schemas = {
15688
15688
  /** Format: date-time */
15689
15689
  createdAt: string;
15690
15690
  id: string;
15691
- payload?: Record<string, never>;
15691
+ payload?: GenericRecord;
15692
15692
  promotion?: components["schemas"]["Promotion"];
15693
15693
  promotionId: string;
15694
15694
  /** Format: date-time */
@@ -15699,7 +15699,7 @@ export type Schemas = {
15699
15699
  /** Format: date-time */
15700
15700
  createdAt: string;
15701
15701
  id: string;
15702
- payload?: Record<string, never>;
15702
+ payload?: GenericRecord;
15703
15703
  promotionId: string;
15704
15704
  relationships?: {
15705
15705
  promotion?: {
@@ -15727,7 +15727,7 @@ export type Schemas = {
15727
15727
  /** Format: date-time */
15728
15728
  createdAt: string;
15729
15729
  customerRestriction?: boolean;
15730
- customFields?: Record<string, never>;
15730
+ customFields?: GenericRecord;
15731
15731
  exclusionIds?: string[];
15732
15732
  exclusive: boolean;
15733
15733
  extensions?: {
@@ -15756,7 +15756,7 @@ export type Schemas = {
15756
15756
  name: string;
15757
15757
  /** Format: int64 */
15758
15758
  orderCount?: number;
15759
- ordersPerCustomerCount?: Record<string, never>;
15759
+ ordersPerCustomerCount?: GenericRecord;
15760
15760
  preventCombination: boolean;
15761
15761
  /** Format: int64 */
15762
15762
  priority: number;
@@ -16059,7 +16059,7 @@ export type Schemas = {
16059
16059
  PropertyGroup: {
16060
16060
  /** Format: date-time */
16061
16061
  createdAt: string;
16062
- customFields?: Record<string, never>;
16062
+ customFields?: GenericRecord;
16063
16063
  description?: string;
16064
16064
  displayType: string;
16065
16065
  filterable?: boolean;
@@ -16082,7 +16082,7 @@ export type Schemas = {
16082
16082
  PropertyGroupJsonApi: components["schemas"]["resource"] & {
16083
16083
  /** Format: date-time */
16084
16084
  createdAt: string;
16085
- customFields?: Record<string, never>;
16085
+ customFields?: GenericRecord;
16086
16086
  description?: string;
16087
16087
  displayType: string;
16088
16088
  filterable?: boolean;
@@ -16122,7 +16122,7 @@ export type Schemas = {
16122
16122
  colorHexCode?: string;
16123
16123
  /** Format: date-time */
16124
16124
  createdAt: string;
16125
- customFields?: Record<string, never>;
16125
+ customFields?: GenericRecord;
16126
16126
  group?: components["schemas"]["PropertyGroup"];
16127
16127
  groupId: string;
16128
16128
  id: string;
@@ -16147,7 +16147,7 @@ export type Schemas = {
16147
16147
  colorHexCode?: string;
16148
16148
  /** Format: date-time */
16149
16149
  createdAt: string;
16150
- customFields?: Record<string, never>;
16150
+ customFields?: GenericRecord;
16151
16151
  groupId: string;
16152
16152
  id: string;
16153
16153
  mediaId?: string;
@@ -16256,7 +16256,7 @@ export type Schemas = {
16256
16256
  currencyId: string;
16257
16257
  customer?: components["schemas"]["Customer"];
16258
16258
  customerId: string;
16259
- customFields?: Record<string, never>;
16259
+ customFields?: GenericRecord;
16260
16260
  deliveries?: components["schemas"]["QuoteDelivery"][];
16261
16261
  discount?: {
16262
16262
  type?: string;
@@ -16281,14 +16281,14 @@ export type Schemas = {
16281
16281
  orderId?: string;
16282
16282
  orderVersionId?: string;
16283
16283
  price?: {
16284
- calculatedTaxes?: Record<string, never>;
16284
+ calculatedTaxes?: GenericRecord;
16285
16285
  /** Format: float */
16286
16286
  netPrice: number;
16287
16287
  /** Format: float */
16288
16288
  positionPrice: number;
16289
16289
  /** Format: float */
16290
16290
  rawTotal: number;
16291
- taxRules?: Record<string, never>;
16291
+ taxRules?: GenericRecord;
16292
16292
  taxStatus: string;
16293
16293
  /** Format: float */
16294
16294
  totalPrice: number;
@@ -16300,7 +16300,7 @@ export type Schemas = {
16300
16300
  /** Format: date-time */
16301
16301
  sentAt?: string;
16302
16302
  shippingCosts?: {
16303
- calculatedTaxes?: Record<string, never>;
16303
+ calculatedTaxes?: GenericRecord;
16304
16304
  listPrice?: {
16305
16305
  /** Format: float */
16306
16306
  discount?: number;
@@ -16311,12 +16311,12 @@ export type Schemas = {
16311
16311
  };
16312
16312
  /** Format: int64 */
16313
16313
  quantity: number;
16314
- referencePrice?: Record<string, never>;
16314
+ referencePrice?: GenericRecord;
16315
16315
  regulationPrice?: {
16316
16316
  /** Format: float */
16317
16317
  price?: number;
16318
16318
  };
16319
- taxRules?: Record<string, never>;
16319
+ taxRules?: GenericRecord;
16320
16320
  /** Format: float */
16321
16321
  totalPrice: number;
16322
16322
  /** Format: float */
@@ -16446,14 +16446,14 @@ export type Schemas = {
16446
16446
  QuoteDelivery: {
16447
16447
  /** Format: date-time */
16448
16448
  createdAt: string;
16449
- customFields?: Record<string, never>;
16449
+ customFields?: GenericRecord;
16450
16450
  id: string;
16451
16451
  positions?: components["schemas"]["QuoteDeliveryPosition"][];
16452
16452
  quote?: components["schemas"]["Quote"];
16453
16453
  quoteId: string;
16454
16454
  quoteVersionId?: string;
16455
16455
  shippingCosts?: {
16456
- calculatedTaxes?: Record<string, never>;
16456
+ calculatedTaxes?: GenericRecord;
16457
16457
  listPrice?: {
16458
16458
  /** Format: float */
16459
16459
  discount?: number;
@@ -16464,12 +16464,12 @@ export type Schemas = {
16464
16464
  };
16465
16465
  /** Format: int64 */
16466
16466
  quantity: number;
16467
- referencePrice?: Record<string, never>;
16467
+ referencePrice?: GenericRecord;
16468
16468
  regulationPrice?: {
16469
16469
  /** Format: float */
16470
16470
  price?: number;
16471
16471
  };
16472
- taxRules?: Record<string, never>;
16472
+ taxRules?: GenericRecord;
16473
16473
  /** Format: float */
16474
16474
  totalPrice: number;
16475
16475
  /** Format: float */
@@ -16488,7 +16488,7 @@ export type Schemas = {
16488
16488
  QuoteDeliveryJsonApi: components["schemas"]["resource"] & {
16489
16489
  /** Format: date-time */
16490
16490
  createdAt: string;
16491
- customFields?: Record<string, never>;
16491
+ customFields?: GenericRecord;
16492
16492
  id: string;
16493
16493
  quoteId: string;
16494
16494
  quoteVersionId?: string;
@@ -16540,7 +16540,7 @@ export type Schemas = {
16540
16540
  };
16541
16541
  };
16542
16542
  shippingCosts?: {
16543
- calculatedTaxes?: Record<string, never>;
16543
+ calculatedTaxes?: GenericRecord;
16544
16544
  listPrice?: {
16545
16545
  /** Format: float */
16546
16546
  discount?: number;
@@ -16551,12 +16551,12 @@ export type Schemas = {
16551
16551
  };
16552
16552
  /** Format: int64 */
16553
16553
  quantity: number;
16554
- referencePrice?: Record<string, never>;
16554
+ referencePrice?: GenericRecord;
16555
16555
  regulationPrice?: {
16556
16556
  /** Format: float */
16557
16557
  price?: number;
16558
16558
  };
16559
- taxRules?: Record<string, never>;
16559
+ taxRules?: GenericRecord;
16560
16560
  /** Format: float */
16561
16561
  totalPrice: number;
16562
16562
  /** Format: float */
@@ -16574,10 +16574,10 @@ export type Schemas = {
16574
16574
  QuoteDeliveryPosition: {
16575
16575
  /** Format: date-time */
16576
16576
  createdAt: string;
16577
- customFields?: Record<string, never>;
16577
+ customFields?: GenericRecord;
16578
16578
  id: string;
16579
16579
  price?: {
16580
- calculatedTaxes?: Record<string, never>;
16580
+ calculatedTaxes?: GenericRecord;
16581
16581
  listPrice?: {
16582
16582
  /** Format: float */
16583
16583
  discount?: number;
@@ -16588,12 +16588,12 @@ export type Schemas = {
16588
16588
  };
16589
16589
  /** Format: int64 */
16590
16590
  quantity: number;
16591
- referencePrice?: Record<string, never>;
16591
+ referencePrice?: GenericRecord;
16592
16592
  regulationPrice?: {
16593
16593
  /** Format: float */
16594
16594
  price?: number;
16595
16595
  };
16596
- taxRules?: Record<string, never>;
16596
+ taxRules?: GenericRecord;
16597
16597
  /** Format: float */
16598
16598
  totalPrice: number;
16599
16599
  /** Format: float */
@@ -16618,10 +16618,10 @@ export type Schemas = {
16618
16618
  QuoteDeliveryPositionJsonApi: components["schemas"]["resource"] & {
16619
16619
  /** Format: date-time */
16620
16620
  createdAt: string;
16621
- customFields?: Record<string, never>;
16621
+ customFields?: GenericRecord;
16622
16622
  id: string;
16623
16623
  price?: {
16624
- calculatedTaxes?: Record<string, never>;
16624
+ calculatedTaxes?: GenericRecord;
16625
16625
  listPrice?: {
16626
16626
  /** Format: float */
16627
16627
  discount?: number;
@@ -16632,12 +16632,12 @@ export type Schemas = {
16632
16632
  };
16633
16633
  /** Format: int64 */
16634
16634
  quantity: number;
16635
- referencePrice?: Record<string, never>;
16635
+ referencePrice?: GenericRecord;
16636
16636
  regulationPrice?: {
16637
16637
  /** Format: float */
16638
16638
  price?: number;
16639
16639
  };
16640
- taxRules?: Record<string, never>;
16640
+ taxRules?: GenericRecord;
16641
16641
  /** Format: float */
16642
16642
  totalPrice: number;
16643
16643
  /** Format: float */
@@ -16691,10 +16691,10 @@ export type Schemas = {
16691
16691
  };
16692
16692
  QuoteDocument: {
16693
16693
  active?: boolean;
16694
- config: Record<string, never>;
16694
+ config: GenericRecord;
16695
16695
  /** Format: date-time */
16696
16696
  createdAt: string;
16697
- customFields?: Record<string, never>;
16697
+ customFields?: GenericRecord;
16698
16698
  deepLinkCode: string;
16699
16699
  documentMediaFile?: components["schemas"]["Media"];
16700
16700
  documentMediaFileId?: string;
@@ -16714,10 +16714,10 @@ export type Schemas = {
16714
16714
  };
16715
16715
  QuoteDocumentJsonApi: components["schemas"]["resource"] & {
16716
16716
  active?: boolean;
16717
- config: Record<string, never>;
16717
+ config: GenericRecord;
16718
16718
  /** Format: date-time */
16719
16719
  createdAt: string;
16720
- customFields?: Record<string, never>;
16720
+ customFields?: GenericRecord;
16721
16721
  deepLinkCode: string;
16722
16722
  documentMediaFileId?: string;
16723
16723
  documentNumber?: string;
@@ -16851,7 +16851,7 @@ export type Schemas = {
16851
16851
  createdById?: string;
16852
16852
  currencyId: string;
16853
16853
  customerId: string;
16854
- customFields?: Record<string, never>;
16854
+ customFields?: GenericRecord;
16855
16855
  discount?: {
16856
16856
  type?: string;
16857
16857
  /** Format: float */
@@ -16871,14 +16871,14 @@ export type Schemas = {
16871
16871
  orderId?: string;
16872
16872
  orderVersionId?: string;
16873
16873
  price?: {
16874
- calculatedTaxes?: Record<string, never>;
16874
+ calculatedTaxes?: GenericRecord;
16875
16875
  /** Format: float */
16876
16876
  netPrice: number;
16877
16877
  /** Format: float */
16878
16878
  positionPrice: number;
16879
16879
  /** Format: float */
16880
16880
  rawTotal: number;
16881
- taxRules?: Record<string, never>;
16881
+ taxRules?: GenericRecord;
16882
16882
  taxStatus: string;
16883
16883
  /** Format: float */
16884
16884
  totalPrice: number;
@@ -17115,7 +17115,7 @@ export type Schemas = {
17115
17115
  /** Format: date-time */
17116
17116
  sentAt?: string;
17117
17117
  shippingCosts?: {
17118
- calculatedTaxes?: Record<string, never>;
17118
+ calculatedTaxes?: GenericRecord;
17119
17119
  listPrice?: {
17120
17120
  /** Format: float */
17121
17121
  discount?: number;
@@ -17126,12 +17126,12 @@ export type Schemas = {
17126
17126
  };
17127
17127
  /** Format: int64 */
17128
17128
  quantity: number;
17129
- referencePrice?: Record<string, never>;
17129
+ referencePrice?: GenericRecord;
17130
17130
  regulationPrice?: {
17131
17131
  /** Format: float */
17132
17132
  price?: number;
17133
17133
  };
17134
- taxRules?: Record<string, never>;
17134
+ taxRules?: GenericRecord;
17135
17135
  /** Format: float */
17136
17136
  totalPrice: number;
17137
17137
  /** Format: float */
@@ -17162,7 +17162,7 @@ export type Schemas = {
17162
17162
  coverId?: string;
17163
17163
  /** Format: date-time */
17164
17164
  createdAt: string;
17165
- customFields?: Record<string, never>;
17165
+ customFields?: GenericRecord;
17166
17166
  description?: string;
17167
17167
  discount?: {
17168
17168
  type?: string;
@@ -17176,11 +17176,11 @@ export type Schemas = {
17176
17176
  parent?: components["schemas"]["QuoteLineItem"];
17177
17177
  parentId?: string;
17178
17178
  parentVersionId?: string;
17179
- payload?: Record<string, never>;
17179
+ payload?: GenericRecord;
17180
17180
  /** Format: int64 */
17181
17181
  position: number;
17182
17182
  price: {
17183
- calculatedTaxes?: Record<string, never>;
17183
+ calculatedTaxes?: GenericRecord;
17184
17184
  listPrice?: {
17185
17185
  /** Format: float */
17186
17186
  discount?: number;
@@ -17191,25 +17191,25 @@ export type Schemas = {
17191
17191
  };
17192
17192
  /** Format: int64 */
17193
17193
  quantity: number;
17194
- referencePrice?: Record<string, never>;
17194
+ referencePrice?: GenericRecord;
17195
17195
  regulationPrice?: {
17196
17196
  /** Format: float */
17197
17197
  price?: number;
17198
17198
  };
17199
- taxRules?: Record<string, never>;
17199
+ taxRules?: GenericRecord;
17200
17200
  /** Format: float */
17201
17201
  totalPrice: number;
17202
17202
  /** Format: float */
17203
17203
  unitPrice: number;
17204
17204
  };
17205
- priceDefinition?: Record<string, never>;
17205
+ priceDefinition?: GenericRecord;
17206
17206
  product?: components["schemas"]["Product"];
17207
17207
  productId?: string;
17208
- productPrice?: Record<string, never>;
17208
+ productPrice?: GenericRecord;
17209
17209
  productVersionId?: string;
17210
17210
  promotion?: components["schemas"]["Promotion"];
17211
17211
  promotionId?: string;
17212
- purchasePrice?: Record<string, never>;
17212
+ purchasePrice?: GenericRecord;
17213
17213
  /** Format: int64 */
17214
17214
  quantity: number;
17215
17215
  quote?: components["schemas"]["Quote"];
@@ -17232,7 +17232,7 @@ export type Schemas = {
17232
17232
  coverId?: string;
17233
17233
  /** Format: date-time */
17234
17234
  createdAt: string;
17235
- customFields?: Record<string, never>;
17235
+ customFields?: GenericRecord;
17236
17236
  description?: string;
17237
17237
  discount?: {
17238
17238
  type?: string;
@@ -17245,11 +17245,11 @@ export type Schemas = {
17245
17245
  label: string;
17246
17246
  parentId?: string;
17247
17247
  parentVersionId?: string;
17248
- payload?: Record<string, never>;
17248
+ payload?: GenericRecord;
17249
17249
  /** Format: int64 */
17250
17250
  position: number;
17251
17251
  price: {
17252
- calculatedTaxes?: Record<string, never>;
17252
+ calculatedTaxes?: GenericRecord;
17253
17253
  listPrice?: {
17254
17254
  /** Format: float */
17255
17255
  discount?: number;
@@ -17260,23 +17260,23 @@ export type Schemas = {
17260
17260
  };
17261
17261
  /** Format: int64 */
17262
17262
  quantity: number;
17263
- referencePrice?: Record<string, never>;
17263
+ referencePrice?: GenericRecord;
17264
17264
  regulationPrice?: {
17265
17265
  /** Format: float */
17266
17266
  price?: number;
17267
17267
  };
17268
- taxRules?: Record<string, never>;
17268
+ taxRules?: GenericRecord;
17269
17269
  /** Format: float */
17270
17270
  totalPrice: number;
17271
17271
  /** Format: float */
17272
17272
  unitPrice: number;
17273
17273
  };
17274
- priceDefinition?: Record<string, never>;
17274
+ priceDefinition?: GenericRecord;
17275
17275
  productId?: string;
17276
- productPrice?: Record<string, never>;
17276
+ productPrice?: GenericRecord;
17277
17277
  productVersionId?: string;
17278
17278
  promotionId?: string;
17279
- purchasePrice?: Record<string, never>;
17279
+ purchasePrice?: GenericRecord;
17280
17280
  /** Format: int64 */
17281
17281
  quantity: number;
17282
17282
  quoteId: string;
@@ -17388,7 +17388,7 @@ export type Schemas = {
17388
17388
  };
17389
17389
  QuoteTransaction: {
17390
17390
  amount: {
17391
- calculatedTaxes?: Record<string, never>;
17391
+ calculatedTaxes?: GenericRecord;
17392
17392
  listPrice?: {
17393
17393
  /** Format: float */
17394
17394
  discount?: number;
@@ -17399,12 +17399,12 @@ export type Schemas = {
17399
17399
  };
17400
17400
  /** Format: int64 */
17401
17401
  quantity: number;
17402
- referencePrice?: Record<string, never>;
17402
+ referencePrice?: GenericRecord;
17403
17403
  regulationPrice?: {
17404
17404
  /** Format: float */
17405
17405
  price?: number;
17406
17406
  };
17407
- taxRules?: Record<string, never>;
17407
+ taxRules?: GenericRecord;
17408
17408
  /** Format: float */
17409
17409
  totalPrice: number;
17410
17410
  /** Format: float */
@@ -17412,7 +17412,7 @@ export type Schemas = {
17412
17412
  };
17413
17413
  /** Format: date-time */
17414
17414
  createdAt: string;
17415
- customFields?: Record<string, never>;
17415
+ customFields?: GenericRecord;
17416
17416
  id: string;
17417
17417
  paymentMethod?: components["schemas"]["PaymentMethod"];
17418
17418
  paymentMethodId: string;
@@ -17425,7 +17425,7 @@ export type Schemas = {
17425
17425
  };
17426
17426
  QuoteTransactionJsonApi: components["schemas"]["resource"] & {
17427
17427
  amount: {
17428
- calculatedTaxes?: Record<string, never>;
17428
+ calculatedTaxes?: GenericRecord;
17429
17429
  listPrice?: {
17430
17430
  /** Format: float */
17431
17431
  discount?: number;
@@ -17436,12 +17436,12 @@ export type Schemas = {
17436
17436
  };
17437
17437
  /** Format: int64 */
17438
17438
  quantity: number;
17439
- referencePrice?: Record<string, never>;
17439
+ referencePrice?: GenericRecord;
17440
17440
  regulationPrice?: {
17441
17441
  /** Format: float */
17442
17442
  price?: number;
17443
17443
  };
17444
- taxRules?: Record<string, never>;
17444
+ taxRules?: GenericRecord;
17445
17445
  /** Format: float */
17446
17446
  totalPrice: number;
17447
17447
  /** Format: float */
@@ -17449,7 +17449,7 @@ export type Schemas = {
17449
17449
  };
17450
17450
  /** Format: date-time */
17451
17451
  createdAt: string;
17452
- customFields?: Record<string, never>;
17452
+ customFields?: GenericRecord;
17453
17453
  id: string;
17454
17454
  paymentMethodId: string;
17455
17455
  quoteId: string;
@@ -17491,12 +17491,12 @@ export type Schemas = {
17491
17491
  versionId?: string;
17492
17492
  };
17493
17493
  Rule: {
17494
- areas?: readonly Record<string, never>[];
17494
+ areas?: readonly GenericRecord[];
17495
17495
  cartPromotions?: components["schemas"]["Promotion"][];
17496
17496
  conditions?: components["schemas"]["RuleCondition"][];
17497
17497
  /** Format: date-time */
17498
17498
  createdAt: string;
17499
- customFields?: Record<string, never>;
17499
+ customFields?: GenericRecord;
17500
17500
  description?: string;
17501
17501
  extensions?: {
17502
17502
  customizedProductsTemplateOptionPrices?: {
@@ -17638,7 +17638,7 @@ export type Schemas = {
17638
17638
  flowSequences?: components["schemas"]["FlowSequence"][];
17639
17639
  id: string;
17640
17640
  invalid?: boolean;
17641
- moduleTypes?: Record<string, never>;
17641
+ moduleTypes?: GenericRecord;
17642
17642
  name: string;
17643
17643
  orderPromotions?: components["schemas"]["Promotion"][];
17644
17644
  paymentMethods?: components["schemas"]["PaymentMethod"][];
@@ -17661,7 +17661,7 @@ export type Schemas = {
17661
17661
  children?: components["schemas"]["RuleCondition"][];
17662
17662
  /** Format: date-time */
17663
17663
  createdAt: string;
17664
- customFields?: Record<string, never>;
17664
+ customFields?: GenericRecord;
17665
17665
  id: string;
17666
17666
  parent?: components["schemas"]["RuleCondition"];
17667
17667
  parentId?: string;
@@ -17673,12 +17673,12 @@ export type Schemas = {
17673
17673
  type: string;
17674
17674
  /** Format: date-time */
17675
17675
  updatedAt?: string;
17676
- value?: Record<string, never>;
17676
+ value?: GenericRecord;
17677
17677
  };
17678
17678
  RuleConditionJsonApi: components["schemas"]["resource"] & {
17679
17679
  /** Format: date-time */
17680
17680
  createdAt: string;
17681
- customFields?: Record<string, never>;
17681
+ customFields?: GenericRecord;
17682
17682
  id: string;
17683
17683
  parentId?: string;
17684
17684
  /** Format: int64 */
@@ -17750,13 +17750,13 @@ export type Schemas = {
17750
17750
  type: string;
17751
17751
  /** Format: date-time */
17752
17752
  updatedAt?: string;
17753
- value?: Record<string, never>;
17753
+ value?: GenericRecord;
17754
17754
  };
17755
17755
  RuleJsonApi: components["schemas"]["resource"] & {
17756
- areas?: readonly Record<string, never>[];
17756
+ areas?: readonly GenericRecord[];
17757
17757
  /** Format: date-time */
17758
17758
  createdAt: string;
17759
- customFields?: Record<string, never>;
17759
+ customFields?: GenericRecord;
17760
17760
  description?: string;
17761
17761
  extensions?: {
17762
17762
  customizedProductsTemplateOptionPrices?: {
@@ -17897,7 +17897,7 @@ export type Schemas = {
17897
17897
  };
17898
17898
  id: string;
17899
17899
  invalid?: boolean;
17900
- moduleTypes?: Record<string, never>;
17900
+ moduleTypes?: GenericRecord;
17901
17901
  name: string;
17902
17902
  /** Format: int64 */
17903
17903
  priority: number;
@@ -18136,12 +18136,12 @@ export type Schemas = {
18136
18136
  isTheme?: boolean;
18137
18137
  name?: string;
18138
18138
  previewMedia?: string;
18139
- scriptFiles?: Record<string, never>;
18139
+ scriptFiles?: GenericRecord;
18140
18140
  storefrontEntryPath?: string;
18141
- styleFiles?: Record<string, never>;
18141
+ styleFiles?: GenericRecord;
18142
18142
  technicalName: string;
18143
- themeConfig?: Record<string, never>;
18144
- themeJson?: Record<string, never>;
18143
+ themeConfig?: GenericRecord;
18144
+ themeJson?: GenericRecord;
18145
18145
  /** Format: date-time */
18146
18146
  updatedAt?: string;
18147
18147
  viewInheritance?: string[];
@@ -18175,12 +18175,12 @@ export type Schemas = {
18175
18175
  };
18176
18176
  };
18177
18177
  };
18178
- scriptFiles?: Record<string, never>;
18178
+ scriptFiles?: GenericRecord;
18179
18179
  storefrontEntryPath?: string;
18180
- styleFiles?: Record<string, never>;
18180
+ styleFiles?: GenericRecord;
18181
18181
  technicalName: string;
18182
- themeConfig?: Record<string, never>;
18183
- themeJson?: Record<string, never>;
18182
+ themeConfig?: GenericRecord;
18183
+ themeJson?: GenericRecord;
18184
18184
  /** Format: date-time */
18185
18185
  updatedAt?: string;
18186
18186
  viewInheritance?: string[];
@@ -18191,7 +18191,7 @@ export type Schemas = {
18191
18191
  id: string;
18192
18192
  /** Format: date-time */
18193
18193
  lastSbpStatusChange?: string;
18194
- sbpAccessToken?: Record<string, never>;
18194
+ sbpAccessToken?: GenericRecord;
18195
18195
  sbpStatus: string;
18196
18196
  /** Format: int64 */
18197
18197
  sbpUserId: number;
@@ -18223,7 +18223,7 @@ export type Schemas = {
18223
18223
  };
18224
18224
  };
18225
18225
  };
18226
- sbpAccessToken?: Record<string, never>;
18226
+ sbpAccessToken?: GenericRecord;
18227
18227
  sbpStatus: string;
18228
18228
  /** Format: int64 */
18229
18229
  sbpUserId: number;
@@ -18317,7 +18317,7 @@ export type Schemas = {
18317
18317
  analytics?: components["schemas"]["SalesChannelAnalytics"];
18318
18318
  analyticsId?: string;
18319
18319
  boundCustomers?: components["schemas"]["Customer"][];
18320
- configuration?: Record<string, never>;
18320
+ configuration?: GenericRecord;
18321
18321
  countries?: components["schemas"]["Country"][];
18322
18322
  country?: components["schemas"]["Country"];
18323
18323
  countryId: string;
@@ -18330,7 +18330,7 @@ export type Schemas = {
18330
18330
  customerGroupId: string;
18331
18331
  customerGroupsRegistrations?: components["schemas"]["CustomerGroup"][];
18332
18332
  customers?: components["schemas"]["Customer"][];
18333
- customFields?: Record<string, never>;
18333
+ customFields?: GenericRecord;
18334
18334
  documentBaseConfigSalesChannels?: components["schemas"]["DocumentBaseConfigSalesChannel"][];
18335
18335
  domains?: components["schemas"]["SalesChannelDomain"][];
18336
18336
  extensions?: {
@@ -18466,7 +18466,7 @@ export type Schemas = {
18466
18466
  homeMetaDescription?: string;
18467
18467
  homeMetaTitle?: string;
18468
18468
  homeName?: string;
18469
- homeSlotConfig?: Record<string, never>;
18469
+ homeSlotConfig?: GenericRecord;
18470
18470
  hreflangActive?: boolean;
18471
18471
  hreflangDefaultDomain?: components["schemas"]["SalesChannelDomain"];
18472
18472
  hreflangDefaultDomainId?: string;
@@ -18479,7 +18479,7 @@ export type Schemas = {
18479
18479
  mailHeaderFooterId?: string;
18480
18480
  mainCategories?: components["schemas"]["MainCategory"][];
18481
18481
  maintenance?: boolean;
18482
- maintenanceIpWhitelist?: Record<string, never>[];
18482
+ maintenanceIpWhitelist?: GenericRecord[];
18483
18483
  name: string;
18484
18484
  navigationCategory?: components["schemas"]["Category"];
18485
18485
  /** Format: int64 */
@@ -18601,7 +18601,7 @@ export type Schemas = {
18601
18601
  createdAt: string;
18602
18602
  currency?: components["schemas"]["Currency"];
18603
18603
  currencyId: string;
18604
- customFields?: Record<string, never>;
18604
+ customFields?: GenericRecord;
18605
18605
  extensions?: {
18606
18606
  socialShoppingSalesChannels?: {
18607
18607
  data?: {
@@ -18637,7 +18637,7 @@ export type Schemas = {
18637
18637
  /** Format: date-time */
18638
18638
  createdAt: string;
18639
18639
  currencyId: string;
18640
- customFields?: Record<string, never>;
18640
+ customFields?: GenericRecord;
18641
18641
  extensions?: {
18642
18642
  socialShoppingSalesChannels?: {
18643
18643
  data?: {
@@ -18760,13 +18760,13 @@ export type Schemas = {
18760
18760
  accessKey: string;
18761
18761
  active?: boolean;
18762
18762
  analyticsId?: string;
18763
- configuration?: Record<string, never>;
18763
+ configuration?: GenericRecord;
18764
18764
  countryId: string;
18765
18765
  /** Format: date-time */
18766
18766
  createdAt: string;
18767
18767
  currencyId: string;
18768
18768
  customerGroupId: string;
18769
- customFields?: Record<string, never>;
18769
+ customFields?: GenericRecord;
18770
18770
  extensions?: {
18771
18771
  paypalPosSalesChannel?: {
18772
18772
  data?: {
@@ -18898,14 +18898,14 @@ export type Schemas = {
18898
18898
  homeMetaDescription?: string;
18899
18899
  homeMetaTitle?: string;
18900
18900
  homeName?: string;
18901
- homeSlotConfig?: Record<string, never>;
18901
+ homeSlotConfig?: GenericRecord;
18902
18902
  hreflangActive?: boolean;
18903
18903
  hreflangDefaultDomainId?: string;
18904
18904
  id: string;
18905
18905
  languageId: string;
18906
18906
  mailHeaderFooterId?: string;
18907
18907
  maintenance?: boolean;
18908
- maintenanceIpWhitelist?: Record<string, never>[];
18908
+ maintenanceIpWhitelist?: GenericRecord[];
18909
18909
  name: string;
18910
18910
  /** Format: int64 */
18911
18911
  navigationCategoryDepth?: number;
@@ -19532,7 +19532,7 @@ export type Schemas = {
19532
19532
  coverUrl?: string;
19533
19533
  /** Format: date-time */
19534
19534
  createdAt: string;
19535
- customFields?: Record<string, never>;
19535
+ customFields?: GenericRecord;
19536
19536
  description?: string;
19537
19537
  descriptionLong?: string;
19538
19538
  iconName?: string;
@@ -19556,7 +19556,7 @@ export type Schemas = {
19556
19556
  coverUrl?: string;
19557
19557
  /** Format: date-time */
19558
19558
  createdAt: string;
19559
- customFields?: Record<string, never>;
19559
+ customFields?: GenericRecord;
19560
19560
  description?: string;
19561
19561
  descriptionLong?: string;
19562
19562
  iconName?: string;
@@ -19597,7 +19597,7 @@ export type Schemas = {
19597
19597
  createdAt: string;
19598
19598
  customerAddresses?: components["schemas"]["CustomerAddress"][];
19599
19599
  customers?: components["schemas"]["Customer"][];
19600
- customFields?: Record<string, never>;
19600
+ customFields?: GenericRecord;
19601
19601
  displayName: string;
19602
19602
  extensions?: {
19603
19603
  subscriptionCustomerAddresses?: {
@@ -19648,7 +19648,7 @@ export type Schemas = {
19648
19648
  SalutationJsonApi: components["schemas"]["resource"] & {
19649
19649
  /** Format: date-time */
19650
19650
  createdAt: string;
19651
- customFields?: Record<string, never>;
19651
+ customFields?: GenericRecord;
19652
19652
  displayName: string;
19653
19653
  extensions?: {
19654
19654
  subscriptionCustomerAddresses?: {
@@ -19851,7 +19851,7 @@ export type Schemas = {
19851
19851
  SeoUrl: {
19852
19852
  /** Format: date-time */
19853
19853
  createdAt: string;
19854
- customFields?: Record<string, never>;
19854
+ customFields?: GenericRecord;
19855
19855
  /** Runtime field, cannot be used as part of the criteria. */
19856
19856
  error?: string;
19857
19857
  foreignKey: string;
@@ -19874,7 +19874,7 @@ export type Schemas = {
19874
19874
  SeoUrlJsonApi: components["schemas"]["resource"] & {
19875
19875
  /** Format: date-time */
19876
19876
  createdAt: string;
19877
- customFields?: Record<string, never>;
19877
+ customFields?: GenericRecord;
19878
19878
  /** Runtime field, cannot be used as part of the criteria. */
19879
19879
  error?: string;
19880
19880
  foreignKey: string;
@@ -19927,7 +19927,7 @@ export type Schemas = {
19927
19927
  SeoUrlTemplate: {
19928
19928
  /** Format: date-time */
19929
19929
  createdAt: string;
19930
- customFields?: Record<string, never>;
19930
+ customFields?: GenericRecord;
19931
19931
  entityName: string;
19932
19932
  id: string;
19933
19933
  isValid?: boolean;
@@ -19941,7 +19941,7 @@ export type Schemas = {
19941
19941
  SeoUrlTemplateJsonApi: components["schemas"]["resource"] & {
19942
19942
  /** Format: date-time */
19943
19943
  createdAt: string;
19944
- customFields?: Record<string, never>;
19944
+ customFields?: GenericRecord;
19945
19945
  entityName: string;
19946
19946
  id: string;
19947
19947
  isValid?: boolean;
@@ -19975,7 +19975,7 @@ export type Schemas = {
19975
19975
  availabilityRuleId?: string;
19976
19976
  /** Format: date-time */
19977
19977
  createdAt: string;
19978
- customFields?: Record<string, never>;
19978
+ customFields?: GenericRecord;
19979
19979
  deliveryTime?: components["schemas"]["DeliveryTime"];
19980
19980
  deliveryTimeId: string;
19981
19981
  description?: string;
@@ -20046,7 +20046,7 @@ export type Schemas = {
20046
20046
  availabilityRuleId?: string;
20047
20047
  /** Format: date-time */
20048
20048
  createdAt: string;
20049
- customFields?: Record<string, never>;
20049
+ customFields?: GenericRecord;
20050
20050
  deliveryTimeId: string;
20051
20051
  description?: string;
20052
20052
  extensions?: {
@@ -20263,8 +20263,8 @@ export type Schemas = {
20263
20263
  calculationRuleId?: string;
20264
20264
  /** Format: date-time */
20265
20265
  createdAt: string;
20266
- currencyPrice?: Record<string, never>;
20267
- customFields?: Record<string, never>;
20266
+ currencyPrice?: GenericRecord;
20267
+ customFields?: GenericRecord;
20268
20268
  id: string;
20269
20269
  /** Format: float */
20270
20270
  quantityEnd?: number;
@@ -20283,8 +20283,8 @@ export type Schemas = {
20283
20283
  calculationRuleId?: string;
20284
20284
  /** Format: date-time */
20285
20285
  createdAt: string;
20286
- currencyPrice?: Record<string, never>;
20287
- customFields?: Record<string, never>;
20286
+ currencyPrice?: GenericRecord;
20287
+ customFields?: GenericRecord;
20288
20288
  id: string;
20289
20289
  /** Format: float */
20290
20290
  quantityEnd?: number;
@@ -20353,7 +20353,7 @@ export type Schemas = {
20353
20353
  author: string;
20354
20354
  /** Format: date-time */
20355
20355
  createdAt: string;
20356
- customFields?: Record<string, never>;
20356
+ customFields?: GenericRecord;
20357
20357
  id: string;
20358
20358
  set?: components["schemas"]["SnippetSet"];
20359
20359
  setId: string;
@@ -20366,7 +20366,7 @@ export type Schemas = {
20366
20366
  author: string;
20367
20367
  /** Format: date-time */
20368
20368
  createdAt: string;
20369
- customFields?: Record<string, never>;
20369
+ customFields?: GenericRecord;
20370
20370
  id: string;
20371
20371
  relationships?: {
20372
20372
  set?: {
@@ -20395,7 +20395,7 @@ export type Schemas = {
20395
20395
  baseFile: string;
20396
20396
  /** Format: date-time */
20397
20397
  createdAt: string;
20398
- customFields?: Record<string, never>;
20398
+ customFields?: GenericRecord;
20399
20399
  id: string;
20400
20400
  iso: string;
20401
20401
  name: string;
@@ -20408,7 +20408,7 @@ export type Schemas = {
20408
20408
  baseFile: string;
20409
20409
  /** Format: date-time */
20410
20410
  createdAt: string;
20411
- customFields?: Record<string, never>;
20411
+ customFields?: GenericRecord;
20412
20412
  id: string;
20413
20413
  iso: string;
20414
20414
  name: string;
@@ -20449,7 +20449,7 @@ export type Schemas = {
20449
20449
  };
20450
20450
  SsoProvider: {
20451
20451
  active: boolean;
20452
- config: Record<string, never>;
20452
+ config: GenericRecord;
20453
20453
  /** Format: date-time */
20454
20454
  createdAt: string;
20455
20455
  id: string;
@@ -20517,7 +20517,7 @@ export type Schemas = {
20517
20517
  };
20518
20518
  SsoProviderJsonApi: components["schemas"]["resource"] & {
20519
20519
  active: boolean;
20520
- config: Record<string, never>;
20520
+ config: GenericRecord;
20521
20521
  /** Format: date-time */
20522
20522
  createdAt: string;
20523
20523
  id: string;
@@ -20562,7 +20562,7 @@ export type Schemas = {
20562
20562
  StateMachine: {
20563
20563
  /** Format: date-time */
20564
20564
  createdAt: string;
20565
- customFields?: Record<string, never>;
20565
+ customFields?: GenericRecord;
20566
20566
  historyEntries?: components["schemas"]["StateMachineHistory"][];
20567
20567
  id: string;
20568
20568
  initialStateId?: string;
@@ -20677,7 +20677,7 @@ export type Schemas = {
20677
20677
  StateMachineJsonApi: components["schemas"]["resource"] & {
20678
20678
  /** Format: date-time */
20679
20679
  createdAt: string;
20680
- customFields?: Record<string, never>;
20680
+ customFields?: GenericRecord;
20681
20681
  id: string;
20682
20682
  initialStateId?: string;
20683
20683
  name: string;
@@ -20740,7 +20740,7 @@ export type Schemas = {
20740
20740
  StateMachineState: {
20741
20741
  /** Format: date-time */
20742
20742
  createdAt: string;
20743
- customFields?: Record<string, never>;
20743
+ customFields?: GenericRecord;
20744
20744
  extensions?: {
20745
20745
  orderLineItems?: {
20746
20746
  data?: {
@@ -20858,7 +20858,7 @@ export type Schemas = {
20858
20858
  StateMachineStateJsonApi: components["schemas"]["resource"] & {
20859
20859
  /** Format: date-time */
20860
20860
  createdAt: string;
20861
- customFields?: Record<string, never>;
20861
+ customFields?: GenericRecord;
20862
20862
  extensions?: {
20863
20863
  orderLineItems?: {
20864
20864
  data?: {
@@ -21119,7 +21119,7 @@ export type Schemas = {
21119
21119
  actionName: string;
21120
21120
  /** Format: date-time */
21121
21121
  createdAt: string;
21122
- customFields?: Record<string, never>;
21122
+ customFields?: GenericRecord;
21123
21123
  fromStateId: string;
21124
21124
  fromStateMachineState?: components["schemas"]["StateMachineState"];
21125
21125
  id: string;
@@ -21134,7 +21134,7 @@ export type Schemas = {
21134
21134
  actionName: string;
21135
21135
  /** Format: date-time */
21136
21136
  createdAt: string;
21137
- customFields?: Record<string, never>;
21137
+ customFields?: GenericRecord;
21138
21138
  fromStateId: string;
21139
21139
  id: string;
21140
21140
  relationships?: {
@@ -21195,13 +21195,13 @@ export type Schemas = {
21195
21195
  autoIncrement?: number;
21196
21196
  billingAddress?: components["schemas"]["SubscriptionAddress"];
21197
21197
  billingAddressId: string;
21198
- convertedOrder: Record<string, never>;
21198
+ convertedOrder: GenericRecord;
21199
21199
  /** Format: date-time */
21200
21200
  createdAt: string;
21201
21201
  cronInterval: string;
21202
21202
  currency?: components["schemas"]["Currency"];
21203
21203
  currencyId: string;
21204
- customFields?: Record<string, never>;
21204
+ customFields?: GenericRecord;
21205
21205
  dateInterval: string;
21206
21206
  id: string;
21207
21207
  /** Format: int64 */
@@ -21261,7 +21261,7 @@ export type Schemas = {
21261
21261
  countryStateId?: string;
21262
21262
  /** Format: date-time */
21263
21263
  createdAt: string;
21264
- customFields?: Record<string, never>;
21264
+ customFields?: GenericRecord;
21265
21265
  department?: string;
21266
21266
  firstName: string;
21267
21267
  id: string;
@@ -21288,7 +21288,7 @@ export type Schemas = {
21288
21288
  countryStateId?: string;
21289
21289
  /** Format: date-time */
21290
21290
  createdAt: string;
21291
- customFields?: Record<string, never>;
21291
+ customFields?: GenericRecord;
21292
21292
  department?: string;
21293
21293
  firstName: string;
21294
21294
  id: string;
@@ -21402,7 +21402,7 @@ export type Schemas = {
21402
21402
  customer?: components["schemas"]["Customer"];
21403
21403
  customerId?: string;
21404
21404
  customerNumber?: string;
21405
- customFields?: Record<string, never>;
21405
+ customFields?: GenericRecord;
21406
21406
  email: string;
21407
21407
  firstName: string;
21408
21408
  id: string;
@@ -21423,7 +21423,7 @@ export type Schemas = {
21423
21423
  createdAt: string;
21424
21424
  customerId?: string;
21425
21425
  customerNumber?: string;
21426
- customFields?: Record<string, never>;
21426
+ customFields?: GenericRecord;
21427
21427
  email: string;
21428
21428
  firstName: string;
21429
21429
  id: string;
@@ -21573,12 +21573,12 @@ export type Schemas = {
21573
21573
  /** Format: int64 */
21574
21574
  autoIncrement?: number;
21575
21575
  billingAddressId: string;
21576
- convertedOrder: Record<string, never>;
21576
+ convertedOrder: GenericRecord;
21577
21577
  /** Format: date-time */
21578
21578
  createdAt: string;
21579
21579
  cronInterval: string;
21580
21580
  currencyId: string;
21581
- customFields?: Record<string, never>;
21581
+ customFields?: GenericRecord;
21582
21582
  dateInterval: string;
21583
21583
  id: string;
21584
21584
  /** Format: int64 */
@@ -22028,7 +22028,7 @@ export type Schemas = {
22028
22028
  isTemplate: boolean;
22029
22029
  mailTemplate?: components["schemas"]["MailTemplate"];
22030
22030
  mailTemplateId: string;
22031
- receivers?: Record<string, never>;
22031
+ receivers?: GenericRecord;
22032
22032
  successMessage?: string;
22033
22033
  technicalName: string;
22034
22034
  title?: string;
@@ -22063,7 +22063,7 @@ export type Schemas = {
22063
22063
  updatedAt?: string;
22064
22064
  };
22065
22065
  SwagCmsExtensionsFormGroupField: {
22066
- config?: Record<string, never>;
22066
+ config?: GenericRecord;
22067
22067
  /** Format: date-time */
22068
22068
  createdAt: string;
22069
22069
  errorMessage?: string;
@@ -22091,7 +22091,7 @@ export type Schemas = {
22091
22091
  width: number;
22092
22092
  };
22093
22093
  SwagCmsExtensionsFormGroupFieldJsonApi: components["schemas"]["resource"] & {
22094
- config?: Record<string, never>;
22094
+ config?: GenericRecord;
22095
22095
  /** Format: date-time */
22096
22096
  createdAt: string;
22097
22097
  errorMessage?: string;
@@ -22191,7 +22191,7 @@ export type Schemas = {
22191
22191
  id: string;
22192
22192
  isTemplate: boolean;
22193
22193
  mailTemplateId: string;
22194
- receivers?: Record<string, never>;
22194
+ receivers?: GenericRecord;
22195
22195
  relationships?: {
22196
22196
  cmsSlot?: {
22197
22197
  data?: {
@@ -22399,7 +22399,7 @@ export type Schemas = {
22399
22399
  confirmInput?: boolean;
22400
22400
  /** Format: date-time */
22401
22401
  createdAt: string;
22402
- decisionTree?: Record<string, never>;
22402
+ decisionTree?: GenericRecord;
22403
22403
  description?: string;
22404
22404
  displayName: string;
22405
22405
  exclusions?: components["schemas"]["SwagCustomizedProductsTemplateExclusion"][];
@@ -22425,7 +22425,7 @@ export type Schemas = {
22425
22425
  versionId?: string;
22426
22426
  };
22427
22427
  SwagCustomizedProductsTemplateConfiguration: {
22428
- configuration: Record<string, never>;
22428
+ configuration: GenericRecord;
22429
22429
  /** Format: date-time */
22430
22430
  createdAt: string;
22431
22431
  hash: string;
@@ -22439,7 +22439,7 @@ export type Schemas = {
22439
22439
  versionId?: string;
22440
22440
  };
22441
22441
  SwagCustomizedProductsTemplateConfigurationJsonApi: components["schemas"]["resource"] & {
22442
- configuration: Record<string, never>;
22442
+ configuration: GenericRecord;
22443
22443
  /** Format: date-time */
22444
22444
  createdAt: string;
22445
22445
  hash: string;
@@ -22736,7 +22736,7 @@ export type Schemas = {
22736
22736
  confirmInput?: boolean;
22737
22737
  /** Format: date-time */
22738
22738
  createdAt: string;
22739
- decisionTree?: Record<string, never>;
22739
+ decisionTree?: GenericRecord;
22740
22740
  description?: string;
22741
22741
  displayName: string;
22742
22742
  id: string;
@@ -22836,7 +22836,7 @@ export type Schemas = {
22836
22836
  };
22837
22837
  SwagCustomizedProductsTemplateOption: {
22838
22838
  advancedSurcharge?: boolean;
22839
- calculatedPrice?: Record<string, never>;
22839
+ calculatedPrice?: GenericRecord;
22840
22840
  /** Format: date-time */
22841
22841
  createdAt: string;
22842
22842
  description?: string;
@@ -22849,7 +22849,7 @@ export type Schemas = {
22849
22849
  placeholder?: string;
22850
22850
  /** Format: int64 */
22851
22851
  position?: number;
22852
- price?: Record<string, never>;
22852
+ price?: GenericRecord;
22853
22853
  prices?: components["schemas"]["SwagCustomizedProductsTemplateOptionPrice"][];
22854
22854
  relativeSurcharge?: boolean;
22855
22855
  required?: boolean;
@@ -22871,7 +22871,7 @@ export type Schemas = {
22871
22871
  versionId?: string;
22872
22872
  };
22873
22873
  type: string;
22874
- typeProperties?: Record<string, never>;
22874
+ typeProperties?: GenericRecord;
22875
22875
  /** Format: date-time */
22876
22876
  updatedAt?: string;
22877
22877
  values?: components["schemas"]["SwagCustomizedProductsTemplateOptionValue"][];
@@ -22879,7 +22879,7 @@ export type Schemas = {
22879
22879
  };
22880
22880
  SwagCustomizedProductsTemplateOptionJsonApi: components["schemas"]["resource"] & {
22881
22881
  advancedSurcharge?: boolean;
22882
- calculatedPrice?: Record<string, never>;
22882
+ calculatedPrice?: GenericRecord;
22883
22883
  /** Format: date-time */
22884
22884
  createdAt: string;
22885
22885
  description?: string;
@@ -22892,7 +22892,7 @@ export type Schemas = {
22892
22892
  placeholder?: string;
22893
22893
  /** Format: int64 */
22894
22894
  position?: number;
22895
- price?: Record<string, never>;
22895
+ price?: GenericRecord;
22896
22896
  relationships?: {
22897
22897
  prices?: {
22898
22898
  data?: {
@@ -22987,7 +22987,7 @@ export type Schemas = {
22987
22987
  versionId?: string;
22988
22988
  };
22989
22989
  type: string;
22990
- typeProperties?: Record<string, never>;
22990
+ typeProperties?: GenericRecord;
22991
22991
  /** Format: date-time */
22992
22992
  updatedAt?: string;
22993
22993
  versionId?: string;
@@ -22998,7 +22998,7 @@ export type Schemas = {
22998
22998
  id: string;
22999
22999
  /** Format: float */
23000
23000
  percentageSurcharge?: number;
23001
- price?: Record<string, never>;
23001
+ price?: GenericRecord;
23002
23002
  rule?: components["schemas"]["Rule"];
23003
23003
  ruleId?: string;
23004
23004
  templateOption?: components["schemas"]["SwagCustomizedProductsTemplateOption"];
@@ -23014,7 +23014,7 @@ export type Schemas = {
23014
23014
  id: string;
23015
23015
  /** Format: float */
23016
23016
  percentageSurcharge?: number;
23017
- price?: Record<string, never>;
23017
+ price?: GenericRecord;
23018
23018
  relationships?: {
23019
23019
  rule?: {
23020
23020
  data?: {
@@ -23067,7 +23067,7 @@ export type Schemas = {
23067
23067
  percentageSurcharge?: number;
23068
23068
  /** Format: int64 */
23069
23069
  position: number;
23070
- price?: Record<string, never>;
23070
+ price?: GenericRecord;
23071
23071
  prices?: components["schemas"]["SwagCustomizedProductsTemplateOptionValuePrice"][];
23072
23072
  relativeSurcharge?: boolean;
23073
23073
  tax?: components["schemas"]["Tax"];
@@ -23086,7 +23086,7 @@ export type Schemas = {
23086
23086
  };
23087
23087
  /** Format: date-time */
23088
23088
  updatedAt?: string;
23089
- value?: Record<string, never>;
23089
+ value?: GenericRecord;
23090
23090
  versionId?: string;
23091
23091
  };
23092
23092
  SwagCustomizedProductsTemplateOptionValueJsonApi: components["schemas"]["resource"] & {
@@ -23102,7 +23102,7 @@ export type Schemas = {
23102
23102
  percentageSurcharge?: number;
23103
23103
  /** Format: int64 */
23104
23104
  position: number;
23105
- price?: Record<string, never>;
23105
+ price?: GenericRecord;
23106
23106
  relationships?: {
23107
23107
  prices?: {
23108
23108
  data?: {
@@ -23179,7 +23179,7 @@ export type Schemas = {
23179
23179
  };
23180
23180
  /** Format: date-time */
23181
23181
  updatedAt?: string;
23182
- value?: Record<string, never>;
23182
+ value?: GenericRecord;
23183
23183
  versionId?: string;
23184
23184
  };
23185
23185
  SwagCustomizedProductsTemplateOptionValuePrice: {
@@ -23188,7 +23188,7 @@ export type Schemas = {
23188
23188
  id: string;
23189
23189
  /** Format: float */
23190
23190
  percentageSurcharge?: number;
23191
- price?: Record<string, never>;
23191
+ price?: GenericRecord;
23192
23192
  rule?: components["schemas"]["Rule"];
23193
23193
  ruleId?: string;
23194
23194
  templateOptionValue?: components["schemas"]["SwagCustomizedProductsTemplateOptionValue"];
@@ -23204,7 +23204,7 @@ export type Schemas = {
23204
23204
  id: string;
23205
23205
  /** Format: float */
23206
23206
  percentageSurcharge?: number;
23207
- price?: Record<string, never>;
23207
+ price?: GenericRecord;
23208
23208
  relationships?: {
23209
23209
  rule?: {
23210
23210
  data?: {
@@ -23261,7 +23261,7 @@ export type Schemas = {
23261
23261
  orderId?: string;
23262
23262
  orderVersionId?: string;
23263
23263
  sequence?: components["schemas"]["FlowSequence"];
23264
- stored: Record<string, never>;
23264
+ stored: GenericRecord;
23265
23265
  /** Format: date-time */
23266
23266
  updatedAt?: string;
23267
23267
  };
@@ -23340,7 +23340,7 @@ export type Schemas = {
23340
23340
  };
23341
23341
  };
23342
23342
  };
23343
- stored: Record<string, never>;
23343
+ stored: GenericRecord;
23344
23344
  /** Format: date-time */
23345
23345
  updatedAt?: string;
23346
23346
  };
@@ -23409,12 +23409,12 @@ export type Schemas = {
23409
23409
  SwagMigrationConnection: {
23410
23410
  /** Format: date-time */
23411
23411
  createdAt: string;
23412
- credentialFields?: Record<string, never>;
23412
+ credentialFields?: GenericRecord;
23413
23413
  gatewayName: string;
23414
23414
  id: string;
23415
23415
  mappings?: components["schemas"]["SwagMigrationMapping"][];
23416
23416
  name: string;
23417
- premapping?: Record<string, never>;
23417
+ premapping?: GenericRecord;
23418
23418
  profileName: string;
23419
23419
  runs?: components["schemas"]["SwagMigrationRun"][];
23420
23420
  settings?: components["schemas"]["SwagMigrationGeneralSetting"][];
@@ -23424,11 +23424,11 @@ export type Schemas = {
23424
23424
  SwagMigrationConnectionJsonApi: components["schemas"]["resource"] & {
23425
23425
  /** Format: date-time */
23426
23426
  createdAt: string;
23427
- credentialFields?: Record<string, never>;
23427
+ credentialFields?: GenericRecord;
23428
23428
  gatewayName: string;
23429
23429
  id: string;
23430
23430
  name: string;
23431
- premapping?: Record<string, never>;
23431
+ premapping?: GenericRecord;
23432
23432
  profileName: string;
23433
23433
  relationships?: {
23434
23434
  mappings?: {
@@ -23483,17 +23483,17 @@ export type Schemas = {
23483
23483
  SwagMigrationData: {
23484
23484
  /** Format: int64 */
23485
23485
  autoIncrement?: number;
23486
- converted?: Record<string, never>;
23486
+ converted?: GenericRecord;
23487
23487
  convertFailure?: boolean;
23488
23488
  /** Format: date-time */
23489
23489
  createdAt: string;
23490
23490
  entity: string;
23491
23491
  id: string;
23492
23492
  mappingUuid?: string;
23493
- raw: Record<string, never>;
23493
+ raw: GenericRecord;
23494
23494
  run?: components["schemas"]["SwagMigrationRun"];
23495
23495
  runId: string;
23496
- unmapped?: Record<string, never>;
23496
+ unmapped?: GenericRecord;
23497
23497
  /** Format: date-time */
23498
23498
  updatedAt?: string;
23499
23499
  writeFailure?: boolean;
@@ -23502,14 +23502,14 @@ export type Schemas = {
23502
23502
  SwagMigrationDataJsonApi: components["schemas"]["resource"] & {
23503
23503
  /** Format: int64 */
23504
23504
  autoIncrement?: number;
23505
- converted?: Record<string, never>;
23505
+ converted?: GenericRecord;
23506
23506
  convertFailure?: boolean;
23507
23507
  /** Format: date-time */
23508
23508
  createdAt: string;
23509
23509
  entity: string;
23510
23510
  id: string;
23511
23511
  mappingUuid?: string;
23512
- raw: Record<string, never>;
23512
+ raw: GenericRecord;
23513
23513
  relationships?: {
23514
23514
  run?: {
23515
23515
  data?: {
@@ -23528,7 +23528,7 @@ export type Schemas = {
23528
23528
  };
23529
23529
  };
23530
23530
  runId: string;
23531
- unmapped?: Record<string, never>;
23531
+ unmapped?: GenericRecord;
23532
23532
  /** Format: date-time */
23533
23533
  updatedAt?: string;
23534
23534
  writeFailure?: boolean;
@@ -23579,7 +23579,7 @@ export type Schemas = {
23579
23579
  entity?: string;
23580
23580
  id: string;
23581
23581
  level: string;
23582
- parameters: Record<string, never>;
23582
+ parameters: GenericRecord;
23583
23583
  run?: components["schemas"]["SwagMigrationRun"];
23584
23584
  runId?: string;
23585
23585
  sourceId?: string;
@@ -23597,7 +23597,7 @@ export type Schemas = {
23597
23597
  entity?: string;
23598
23598
  id: string;
23599
23599
  level: string;
23600
- parameters: Record<string, never>;
23600
+ parameters: GenericRecord;
23601
23601
  relationships?: {
23602
23602
  run?: {
23603
23603
  data?: {
@@ -23623,7 +23623,7 @@ export type Schemas = {
23623
23623
  updatedAt?: string;
23624
23624
  };
23625
23625
  SwagMigrationMapping: {
23626
- additionalData?: Record<string, never>;
23626
+ additionalData?: GenericRecord;
23627
23627
  checksum?: string;
23628
23628
  connection?: components["schemas"]["SwagMigrationConnection"];
23629
23629
  connectionId: string;
@@ -23638,7 +23638,7 @@ export type Schemas = {
23638
23638
  updatedAt?: string;
23639
23639
  };
23640
23640
  SwagMigrationMappingJsonApi: components["schemas"]["resource"] & {
23641
- additionalData?: Record<string, never>;
23641
+ additionalData?: GenericRecord;
23642
23642
  checksum?: string;
23643
23643
  connectionId: string;
23644
23644
  /** Format: date-time */
@@ -23727,12 +23727,12 @@ export type Schemas = {
23727
23727
  /** Format: date-time */
23728
23728
  createdAt: string;
23729
23729
  data?: components["schemas"]["SwagMigrationData"][];
23730
- environmentInformation?: Record<string, never>;
23730
+ environmentInformation?: GenericRecord;
23731
23731
  id: string;
23732
23732
  logs?: components["schemas"]["SwagMigrationLogging"][];
23733
23733
  mediaFiles?: components["schemas"]["SwagMigrationMediaFile"][];
23734
- premapping?: Record<string, never>;
23735
- progress?: Record<string, never>;
23734
+ premapping?: GenericRecord;
23735
+ progress?: GenericRecord;
23736
23736
  status: string;
23737
23737
  /** Format: date-time */
23738
23738
  updatedAt?: string;
@@ -23743,10 +23743,10 @@ export type Schemas = {
23743
23743
  connectionId?: string;
23744
23744
  /** Format: date-time */
23745
23745
  createdAt: string;
23746
- environmentInformation?: Record<string, never>;
23746
+ environmentInformation?: GenericRecord;
23747
23747
  id: string;
23748
- premapping?: Record<string, never>;
23749
- progress?: Record<string, never>;
23748
+ premapping?: GenericRecord;
23749
+ progress?: GenericRecord;
23750
23750
  relationships?: {
23751
23751
  connection?: {
23752
23752
  data?: {
@@ -23924,7 +23924,7 @@ export type Schemas = {
23924
23924
  status: string;
23925
23925
  /** Format: int64 */
23926
23926
  stepIndex: number;
23927
- steps: Record<string, never>;
23927
+ steps: GenericRecord;
23928
23928
  task: string;
23929
23929
  /** Format: date-time */
23930
23930
  updatedAt?: string;
@@ -23958,7 +23958,7 @@ export type Schemas = {
23958
23958
  status: string;
23959
23959
  /** Format: int64 */
23960
23960
  stepIndex: number;
23961
- steps: Record<string, never>;
23961
+ steps: GenericRecord;
23962
23962
  task: string;
23963
23963
  /** Format: date-time */
23964
23964
  updatedAt?: string;
@@ -24307,7 +24307,7 @@ export type Schemas = {
24307
24307
  SwagSocialShoppingProductError: {
24308
24308
  /** Format: date-time */
24309
24309
  createdAt: string;
24310
- errors: Record<string, never>;
24310
+ errors: GenericRecord;
24311
24311
  id: string;
24312
24312
  product?: components["schemas"]["Product"];
24313
24313
  productId: string;
@@ -24320,7 +24320,7 @@ export type Schemas = {
24320
24320
  SwagSocialShoppingProductErrorJsonApi: components["schemas"]["resource"] & {
24321
24321
  /** Format: date-time */
24322
24322
  createdAt: string;
24323
- errors: Record<string, never>;
24323
+ errors: GenericRecord;
24324
24324
  id: string;
24325
24325
  productId: string;
24326
24326
  productVersionId?: string;
@@ -24361,7 +24361,7 @@ export type Schemas = {
24361
24361
  updatedAt?: string;
24362
24362
  };
24363
24363
  SwagSocialShoppingSalesChannel: {
24364
- configuration?: Record<string, never>;
24364
+ configuration?: GenericRecord;
24365
24365
  /** Format: date-time */
24366
24366
  createdAt: string;
24367
24367
  currency?: components["schemas"]["Currency"];
@@ -24381,7 +24381,7 @@ export type Schemas = {
24381
24381
  updatedAt?: string;
24382
24382
  };
24383
24383
  SwagSocialShoppingSalesChannelJsonApi: components["schemas"]["resource"] & {
24384
- configuration?: Record<string, never>;
24384
+ configuration?: GenericRecord;
24385
24385
  /** Format: date-time */
24386
24386
  createdAt: string;
24387
24387
  currencyId?: string;
@@ -24461,7 +24461,7 @@ export type Schemas = {
24461
24461
  SystemConfig: {
24462
24462
  configurationKey: string;
24463
24463
  configurationValue: {
24464
- _value?: Record<string, never>;
24464
+ _value?: GenericRecord;
24465
24465
  };
24466
24466
  /** Format: date-time */
24467
24467
  createdAt: string;
@@ -24474,7 +24474,7 @@ export type Schemas = {
24474
24474
  SystemConfigJsonApi: components["schemas"]["resource"] & {
24475
24475
  configurationKey: string;
24476
24476
  configurationValue: {
24477
- _value?: Record<string, never>;
24477
+ _value?: GenericRecord;
24478
24478
  };
24479
24479
  /** Format: date-time */
24480
24480
  createdAt: string;
@@ -24699,7 +24699,7 @@ export type Schemas = {
24699
24699
  Tax: {
24700
24700
  /** Format: date-time */
24701
24701
  createdAt: string;
24702
- customFields?: Record<string, never>;
24702
+ customFields?: GenericRecord;
24703
24703
  extensions?: {
24704
24704
  customizedProductsOptions?: {
24705
24705
  data?: {
@@ -24750,7 +24750,7 @@ export type Schemas = {
24750
24750
  TaxJsonApi: components["schemas"]["resource"] & {
24751
24751
  /** Format: date-time */
24752
24752
  createdAt: string;
24753
- customFields?: Record<string, never>;
24753
+ customFields?: GenericRecord;
24754
24754
  extensions?: {
24755
24755
  customizedProductsOptions?: {
24756
24756
  data?: {
@@ -24850,7 +24850,7 @@ export type Schemas = {
24850
24850
  availabilityRuleId?: string;
24851
24851
  /** Format: date-time */
24852
24852
  createdAt: string;
24853
- customFields?: Record<string, never>;
24853
+ customFields?: GenericRecord;
24854
24854
  id: string;
24855
24855
  identifier: string;
24856
24856
  name: string;
@@ -24873,7 +24873,7 @@ export type Schemas = {
24873
24873
  availabilityRuleId?: string;
24874
24874
  /** Format: date-time */
24875
24875
  createdAt: string;
24876
- customFields?: Record<string, never>;
24876
+ customFields?: GenericRecord;
24877
24877
  id: string;
24878
24878
  identifier: string;
24879
24879
  name: string;
@@ -24931,7 +24931,7 @@ export type Schemas = {
24931
24931
  createdAt: string;
24932
24932
  data?: {
24933
24933
  fromZipCode?: string;
24934
- states?: Record<string, never>[];
24934
+ states?: GenericRecord[];
24935
24935
  toZipCode?: string;
24936
24936
  zipCode?: string;
24937
24937
  };
@@ -24953,7 +24953,7 @@ export type Schemas = {
24953
24953
  createdAt: string;
24954
24954
  data?: {
24955
24955
  fromZipCode?: string;
24956
- states?: Record<string, never>[];
24956
+ states?: GenericRecord[];
24957
24957
  toZipCode?: string;
24958
24958
  zipCode?: string;
24959
24959
  };
@@ -25063,16 +25063,16 @@ export type Schemas = {
25063
25063
  Theme: {
25064
25064
  active: boolean;
25065
25065
  author: string;
25066
- baseConfig?: Record<string, never>;
25067
- configValues?: Record<string, never>;
25066
+ baseConfig?: GenericRecord;
25067
+ configValues?: GenericRecord;
25068
25068
  /** Format: date-time */
25069
25069
  createdAt: string;
25070
- customFields?: Record<string, never>;
25070
+ customFields?: GenericRecord;
25071
25071
  dependentThemes?: components["schemas"]["Theme"][];
25072
25072
  description?: string;
25073
- helpTexts?: Record<string, never>;
25073
+ helpTexts?: GenericRecord;
25074
25074
  id: string;
25075
- labels?: Record<string, never>;
25075
+ labels?: GenericRecord;
25076
25076
  media?: components["schemas"]["Media"][];
25077
25077
  name: string;
25078
25078
  parentThemeId?: string;
@@ -25080,7 +25080,7 @@ export type Schemas = {
25080
25080
  previewMediaId?: string;
25081
25081
  salesChannels?: components["schemas"]["SalesChannel"][];
25082
25082
  technicalName?: string;
25083
- themeJson?: Record<string, never>;
25083
+ themeJson?: GenericRecord;
25084
25084
  translated?: {
25085
25085
  author?: string;
25086
25086
  description?: string;
@@ -25102,15 +25102,15 @@ export type Schemas = {
25102
25102
  ThemeJsonApi: components["schemas"]["resource"] & {
25103
25103
  active: boolean;
25104
25104
  author: string;
25105
- baseConfig?: Record<string, never>;
25106
- configValues?: Record<string, never>;
25105
+ baseConfig?: GenericRecord;
25106
+ configValues?: GenericRecord;
25107
25107
  /** Format: date-time */
25108
25108
  createdAt: string;
25109
- customFields?: Record<string, never>;
25109
+ customFields?: GenericRecord;
25110
25110
  description?: string;
25111
- helpTexts?: Record<string, never>;
25111
+ helpTexts?: GenericRecord;
25112
25112
  id: string;
25113
- labels?: Record<string, never>;
25113
+ labels?: GenericRecord;
25114
25114
  name: string;
25115
25115
  parentThemeId?: string;
25116
25116
  previewMediaId?: string;
@@ -25177,7 +25177,7 @@ export type Schemas = {
25177
25177
  };
25178
25178
  };
25179
25179
  technicalName?: string;
25180
- themeJson?: Record<string, never>;
25180
+ themeJson?: GenericRecord;
25181
25181
  translated?: {
25182
25182
  author?: string;
25183
25183
  description?: string;
@@ -25206,7 +25206,7 @@ export type Schemas = {
25206
25206
  Unit: {
25207
25207
  /** Format: date-time */
25208
25208
  createdAt: string;
25209
- customFields?: Record<string, never>;
25209
+ customFields?: GenericRecord;
25210
25210
  id: string;
25211
25211
  name: string;
25212
25212
  products?: components["schemas"]["Product"][];
@@ -25221,7 +25221,7 @@ export type Schemas = {
25221
25221
  UnitJsonApi: components["schemas"]["resource"] & {
25222
25222
  /** Format: date-time */
25223
25223
  createdAt: string;
25224
- customFields?: Record<string, never>;
25224
+ customFields?: GenericRecord;
25225
25225
  id: string;
25226
25226
  name: string;
25227
25227
  relationships?: {
@@ -25261,7 +25261,7 @@ export type Schemas = {
25261
25261
  createdAt: string;
25262
25262
  createdCustomers?: components["schemas"]["Customer"][];
25263
25263
  createdOrders?: components["schemas"]["Order"][];
25264
- customFields?: Record<string, never>;
25264
+ customFields?: GenericRecord;
25265
25265
  email: string;
25266
25266
  extensions?: {
25267
25267
  cmsPageActivities?: {
@@ -25468,7 +25468,7 @@ export type Schemas = {
25468
25468
  accessKey: string;
25469
25469
  /** Format: date-time */
25470
25470
  createdAt: string;
25471
- customFields?: Record<string, never>;
25471
+ customFields?: GenericRecord;
25472
25472
  id: string;
25473
25473
  /** Format: date-time */
25474
25474
  lastUsageAt?: string;
@@ -25482,7 +25482,7 @@ export type Schemas = {
25482
25482
  accessKey: string;
25483
25483
  /** Format: date-time */
25484
25484
  createdAt: string;
25485
- customFields?: Record<string, never>;
25485
+ customFields?: GenericRecord;
25486
25486
  id: string;
25487
25487
  /** Format: date-time */
25488
25488
  lastUsageAt?: string;
@@ -25517,7 +25517,7 @@ export type Schemas = {
25517
25517
  updatedAt?: string;
25518
25518
  user?: components["schemas"]["User"];
25519
25519
  userId: string;
25520
- value?: Record<string, never>;
25520
+ value?: GenericRecord;
25521
25521
  };
25522
25522
  UserConfigJsonApi: components["schemas"]["resource"] & {
25523
25523
  /** Format: date-time */
@@ -25544,7 +25544,7 @@ export type Schemas = {
25544
25544
  /** Format: date-time */
25545
25545
  updatedAt?: string;
25546
25546
  userId: string;
25547
- value?: Record<string, never>;
25547
+ value?: GenericRecord;
25548
25548
  };
25549
25549
  UserJsonApi: components["schemas"]["resource"] & {
25550
25550
  active?: boolean;
@@ -25552,7 +25552,7 @@ export type Schemas = {
25552
25552
  avatarId?: string;
25553
25553
  /** Format: date-time */
25554
25554
  createdAt: string;
25555
- customFields?: Record<string, never>;
25555
+ customFields?: GenericRecord;
25556
25556
  email: string;
25557
25557
  extensions?: {
25558
25558
  cmsPageActivities?: {
@@ -26153,7 +26153,7 @@ export type Schemas = {
26153
26153
  appVersion?: string;
26154
26154
  /** Format: date-time */
26155
26155
  createdAt: string;
26156
- customFields?: Record<string, never>;
26156
+ customFields?: GenericRecord;
26157
26157
  deliveryStatus: string;
26158
26158
  eventName: string;
26159
26159
  extensions?: {
@@ -26177,8 +26177,8 @@ export type Schemas = {
26177
26177
  onlyLiveVersion?: boolean;
26178
26178
  /** Format: int64 */
26179
26179
  processingTime?: number;
26180
- requestContent?: Record<string, never>;
26181
- responseContent?: Record<string, never>;
26180
+ requestContent?: GenericRecord;
26181
+ responseContent?: GenericRecord;
26182
26182
  responseReasonPhrase?: string;
26183
26183
  /** Format: int64 */
26184
26184
  responseStatusCode?: number;
@@ -26194,7 +26194,7 @@ export type Schemas = {
26194
26194
  appVersion?: string;
26195
26195
  /** Format: date-time */
26196
26196
  createdAt: string;
26197
- customFields?: Record<string, never>;
26197
+ customFields?: GenericRecord;
26198
26198
  deliveryStatus: string;
26199
26199
  eventName: string;
26200
26200
  extensions?: {
@@ -26218,8 +26218,8 @@ export type Schemas = {
26218
26218
  onlyLiveVersion?: boolean;
26219
26219
  /** Format: int64 */
26220
26220
  processingTime?: number;
26221
- requestContent?: Record<string, never>;
26222
- responseContent?: Record<string, never>;
26221
+ requestContent?: GenericRecord;
26222
+ responseContent?: GenericRecord;
26223
26223
  responseReasonPhrase?: string;
26224
26224
  /** Format: int64 */
26225
26225
  responseStatusCode?: number;
@@ -26271,7 +26271,7 @@ export type Schemas = {
26271
26271
  /** Class name of the event */
26272
26272
  class?: string;
26273
26273
  /** Available data of event */
26274
- data?: Record<string, never>;
26274
+ data?: GenericRecord;
26275
26275
  /** Extensions data of event */
26276
26276
  extensions?: string[];
26277
26277
  /** Name of the event */
@@ -26394,7 +26394,7 @@ export type Schemas = {
26394
26394
  };
26395
26395
  relationshipLinks: {
26396
26396
  related?: components["schemas"]["link"];
26397
- self?: Record<string, never>[] & components["schemas"]["link"];
26397
+ self?: GenericRecord[] & components["schemas"]["link"];
26398
26398
  [key: string]: unknown;
26399
26399
  };
26400
26400
  relationshipToMany: components["schemas"]["linkage"][];
@@ -26810,7 +26810,7 @@ export type operations = {
26810
26810
  */
26811
26811
  transition: string;
26812
26812
  };
26813
- body: {
26813
+ body?: {
26814
26814
  /** A list of document identifiers that should be attached */
26815
26815
  documentIds?: string[];
26816
26816
  /** A list of media identifiers that should be attached */
@@ -26849,7 +26849,7 @@ export type operations = {
26849
26849
  */
26850
26850
  transition: string;
26851
26851
  };
26852
- body: {
26852
+ body?: {
26853
26853
  /** A list of document identifiers that should be attached */
26854
26854
  documentIds?: string[];
26855
26855
  /** A list of media identifiers that should be attached */
@@ -26899,7 +26899,7 @@ export type operations = {
26899
26899
  */
26900
26900
  transition: string;
26901
26901
  };
26902
- body: {
26902
+ body?: {
26903
26903
  /** A list of document identifiers that should be attached */
26904
26904
  documentIds?: string[];
26905
26905
  /** A list of media identifiers that should be attached */
@@ -26924,7 +26924,7 @@ export type operations = {
26924
26924
  };
26925
26925
  body: {
26926
26926
  /** Document specific configuration, like documentNumber, documentDate, documentComment. */
26927
- config?: Record<string, never>;
26927
+ config?: GenericRecord;
26928
26928
  /**
26929
26929
  * Type of document file to be generated.
26930
26930
  * @default pdf
@@ -26978,14 +26978,14 @@ export type operations = {
26978
26978
  /** Identifier of the quote to be fetched */
26979
26979
  quoteId: string;
26980
26980
  };
26981
- body: {
26981
+ body?: {
26982
26982
  /** @default null */
26983
26983
  description?: string;
26984
26984
  identifier?: string;
26985
26985
  /** @default null */
26986
26986
  label?: string;
26987
- payload?: Record<string, never>[];
26988
- priceDefinition?: Record<string, never>[];
26987
+ payload?: GenericRecord[];
26988
+ priceDefinition?: GenericRecord[];
26989
26989
  quantity?: number;
26990
26990
  /** @default true */
26991
26991
  removable?: boolean;
@@ -27006,7 +27006,7 @@ export type operations = {
27006
27006
  /** Identifier of the product to be fetched */
27007
27007
  productId: string;
27008
27008
  };
27009
- body: {
27009
+ body?: {
27010
27010
  quantity?: number;
27011
27011
  };
27012
27012
  response: never;
@@ -27071,15 +27071,15 @@ export type operations = {
27071
27071
  * Contains a list of changesets for an entity. If the action type is `delete`,
27072
27072
  * a list of identifiers can be provided.
27073
27073
  */
27074
- payload: Record<string, never>[];
27074
+ payload: GenericRecord[];
27075
27075
  }[];
27076
27076
  response: {
27077
27077
  /** Object with information about updated entites */
27078
- data?: Record<string, never>;
27078
+ data?: GenericRecord;
27079
27079
  /** Object with information about deleted entites */
27080
- deleted?: Record<string, never>;
27080
+ deleted?: GenericRecord;
27081
27081
  /** Object with information about not found entites */
27082
- notFound?: Record<string, never>;
27082
+ notFound?: GenericRecord;
27083
27083
  };
27084
27084
  responseCode: 200;
27085
27085
  };
@@ -27147,16 +27147,16 @@ export type operations = {
27147
27147
  };
27148
27148
  response: {
27149
27149
  components?: {
27150
- callbacks?: Record<string, never>;
27151
- examples?: Record<string, never>;
27152
- headers?: Record<string, never>;
27153
- links?: Record<string, never>;
27154
- parameters?: Record<string, never>;
27155
- pathItems?: Record<string, never>;
27156
- requestBodies?: Record<string, never>;
27157
- responses?: Record<string, never>;
27158
- schemas?: Record<string, never>;
27159
- securitySchemes?: Record<string, never>;
27150
+ callbacks?: GenericRecord;
27151
+ examples?: GenericRecord;
27152
+ headers?: GenericRecord;
27153
+ links?: GenericRecord;
27154
+ parameters?: GenericRecord;
27155
+ pathItems?: GenericRecord;
27156
+ requestBodies?: GenericRecord;
27157
+ responses?: GenericRecord;
27158
+ schemas?: GenericRecord;
27159
+ securitySchemes?: GenericRecord;
27160
27160
  };
27161
27161
  externalDocs?: {
27162
27162
  description?: string;
@@ -27186,8 +27186,8 @@ export type operations = {
27186
27186
  };
27187
27187
  jsonSchemaDialect?: string;
27188
27188
  openapi: string;
27189
- paths?: Record<string, never>;
27190
- security?: Record<string, never>[];
27189
+ paths?: GenericRecord;
27190
+ security?: GenericRecord[];
27191
27191
  servers?: {
27192
27192
  url: string;
27193
27193
  }[];
@@ -27200,7 +27200,7 @@ export type operations = {
27200
27200
  };
27201
27201
  name: string;
27202
27202
  }[];
27203
- webhooks?: Record<string, never>;
27203
+ webhooks?: GenericRecord;
27204
27204
  };
27205
27205
  responseCode: 200;
27206
27206
  };
@@ -27220,7 +27220,7 @@ export type operations = {
27220
27220
  /** Identifier of the sales channel to be fetched */
27221
27221
  salesChannelId: string;
27222
27222
  };
27223
- body: {
27223
+ body?: {
27224
27224
  customerId?: string;
27225
27225
  };
27226
27226
  response: components["schemas"]["Quote"];
@@ -29197,7 +29197,7 @@ export type operations = {
29197
29197
  };
29198
29198
  body: {
29199
29199
  /** Array of nested rule condition payloads. */
29200
- conditions: Record<string, never>[];
29200
+ conditions: GenericRecord[];
29201
29201
  /** A date and time to be mocked in the preview evaluation. */
29202
29202
  dateTime?: string;
29203
29203
  };