@scayle/storefront-core 7.22.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (268) hide show
  1. package/CHANGELOG.md +480 -0
  2. package/LICENSE +21 -0
  3. package/README.md +29 -0
  4. package/dist/bapi/init.cjs +30 -0
  5. package/dist/bapi/init.d.ts +14 -0
  6. package/dist/bapi/init.mjs +23 -0
  7. package/dist/cache/cache.cjs +1 -0
  8. package/dist/cache/cache.d.ts +8 -0
  9. package/dist/cache/cache.mjs +0 -0
  10. package/dist/cache/cached.cjs +89 -0
  11. package/dist/cache/cached.d.ts +24 -0
  12. package/dist/cache/cached.mjs +92 -0
  13. package/dist/cache/index.cjs +38 -0
  14. package/dist/cache/index.d.ts +3 -0
  15. package/dist/cache/index.mjs +3 -0
  16. package/dist/cache/providers/redis.cjs +94 -0
  17. package/dist/cache/providers/redis.d.ts +28 -0
  18. package/dist/cache/providers/redis.mjs +86 -0
  19. package/dist/cache/providers/unstorage.cjs +54 -0
  20. package/dist/cache/providers/unstorage.d.ts +16 -0
  21. package/dist/cache/providers/unstorage.mjs +49 -0
  22. package/dist/cache/types.cjs +11 -0
  23. package/dist/cache/types.d.ts +6 -0
  24. package/dist/cache/types.mjs +4 -0
  25. package/dist/constants/basket.cjs +13 -0
  26. package/dist/constants/basket.d.ts +8 -0
  27. package/dist/constants/basket.mjs +6 -0
  28. package/dist/constants/cache.cjs +8 -0
  29. package/dist/constants/cache.d.ts +1 -0
  30. package/dist/constants/cache.mjs +1 -0
  31. package/dist/constants/hash.cjs +11 -0
  32. package/dist/constants/hash.d.ts +6 -0
  33. package/dist/constants/hash.mjs +4 -0
  34. package/dist/constants/httpStatus.cjs +636 -0
  35. package/dist/constants/httpStatus.d.ts +632 -0
  36. package/dist/constants/httpStatus.mjs +629 -0
  37. package/dist/constants/index.cjs +93 -0
  38. package/dist/constants/index.d.ts +8 -0
  39. package/dist/constants/index.mjs +8 -0
  40. package/dist/constants/product.cjs +11 -0
  41. package/dist/constants/product.d.ts +6 -0
  42. package/dist/constants/product.mjs +4 -0
  43. package/dist/constants/promotion.cjs +10 -0
  44. package/dist/constants/promotion.d.ts +2 -0
  45. package/dist/constants/promotion.mjs +2 -0
  46. package/dist/constants/sorting.cjs +24 -0
  47. package/dist/constants/sorting.d.ts +20 -0
  48. package/dist/constants/sorting.mjs +17 -0
  49. package/dist/constants/withParameters.cjs +138 -0
  50. package/dist/constants/withParameters.d.ts +30 -0
  51. package/dist/constants/withParameters.mjs +132 -0
  52. package/dist/errors/BAPIError.cjs +16 -0
  53. package/dist/errors/BAPIError.d.ts +6 -0
  54. package/dist/errors/BAPIError.mjs +9 -0
  55. package/dist/errors/baseError.cjs +17 -0
  56. package/dist/errors/baseError.d.ts +5 -0
  57. package/dist/errors/baseError.mjs +10 -0
  58. package/dist/errors/index.cjs +27 -0
  59. package/dist/errors/index.d.ts +2 -0
  60. package/dist/errors/index.mjs +2 -0
  61. package/dist/helpers/advancedAttributeHelpers.cjs +26 -0
  62. package/dist/helpers/advancedAttributeHelpers.d.ts +12 -0
  63. package/dist/helpers/advancedAttributeHelpers.mjs +21 -0
  64. package/dist/helpers/arrayHelpers.cjs +10 -0
  65. package/dist/helpers/arrayHelpers.d.ts +1 -0
  66. package/dist/helpers/arrayHelpers.mjs +3 -0
  67. package/dist/helpers/attributeHelpers.cjs +24 -0
  68. package/dist/helpers/attributeHelpers.d.ts +5 -0
  69. package/dist/helpers/attributeHelpers.mjs +17 -0
  70. package/dist/helpers/autobind.cjs +44 -0
  71. package/dist/helpers/autobind.d.ts +39 -0
  72. package/dist/helpers/autobind.mjs +35 -0
  73. package/dist/helpers/basketHelpers.cjs +12 -0
  74. package/dist/helpers/basketHelpers.d.ts +2 -0
  75. package/dist/helpers/basketHelpers.mjs +5 -0
  76. package/dist/helpers/categoryHelper.cjs +61 -0
  77. package/dist/helpers/categoryHelper.d.ts +7 -0
  78. package/dist/helpers/categoryHelper.mjs +44 -0
  79. package/dist/helpers/filterHelper.cjs +156 -0
  80. package/dist/helpers/filterHelper.d.ts +82 -0
  81. package/dist/helpers/filterHelper.mjs +147 -0
  82. package/dist/helpers/formHelpers.cjs +114 -0
  83. package/dist/helpers/formHelpers.d.ts +48 -0
  84. package/dist/helpers/formHelpers.mjs +106 -0
  85. package/dist/helpers/imageHelpers.cjs +20 -0
  86. package/dist/helpers/imageHelpers.d.ts +4 -0
  87. package/dist/helpers/imageHelpers.mjs +14 -0
  88. package/dist/helpers/index.cjs +192 -0
  89. package/dist/helpers/index.d.ts +17 -0
  90. package/dist/helpers/index.mjs +17 -0
  91. package/dist/helpers/localization.cjs +13 -0
  92. package/dist/helpers/localization.d.ts +7 -0
  93. package/dist/helpers/localization.mjs +6 -0
  94. package/dist/helpers/objectHelpers.cjs +19 -0
  95. package/dist/helpers/objectHelpers.d.ts +1 -0
  96. package/dist/helpers/objectHelpers.mjs +6 -0
  97. package/dist/helpers/orderHelpers.cjs +10 -0
  98. package/dist/helpers/orderHelpers.d.ts +67 -0
  99. package/dist/helpers/orderHelpers.mjs +4 -0
  100. package/dist/helpers/product.fixture.cjs +770 -0
  101. package/dist/helpers/product.fixture.d.ts +415 -0
  102. package/dist/helpers/product.fixture.mjs +838 -0
  103. package/dist/helpers/productDisruptorHelper.cjs +37 -0
  104. package/dist/helpers/productDisruptorHelper.d.ts +10 -0
  105. package/dist/helpers/productDisruptorHelper.mjs +23 -0
  106. package/dist/helpers/productHelpers.cjs +188 -0
  107. package/dist/helpers/productHelpers.d.ts +41 -0
  108. package/dist/helpers/productHelpers.mjs +170 -0
  109. package/dist/helpers/sanitizationHelpers.cjs +15 -0
  110. package/dist/helpers/sanitizationHelpers.d.ts +2 -0
  111. package/dist/helpers/sanitizationHelpers.mjs +6 -0
  112. package/dist/helpers/sortingHelper.cjs +67 -0
  113. package/dist/helpers/sortingHelper.d.ts +69 -0
  114. package/dist/helpers/sortingHelper.mjs +66 -0
  115. package/dist/helpers/stringHelpers.cjs +8 -0
  116. package/dist/helpers/stringHelpers.d.ts +2 -0
  117. package/dist/helpers/stringHelpers.mjs +2 -0
  118. package/dist/index.cjs +85 -0
  119. package/dist/index.d.ts +19 -0
  120. package/dist/index.mjs +8 -0
  121. package/dist/rpc/methods/basket/basket.cjs +183 -0
  122. package/dist/rpc/methods/basket/basket.d.ts +23 -0
  123. package/dist/rpc/methods/basket/basket.mjs +181 -0
  124. package/dist/rpc/methods/brands.cjs +34 -0
  125. package/dist/rpc/methods/brands.d.ts +5 -0
  126. package/dist/rpc/methods/brands.mjs +16 -0
  127. package/dist/rpc/methods/categories.cjs +102 -0
  128. package/dist/rpc/methods/categories.d.ts +21 -0
  129. package/dist/rpc/methods/categories.mjs +64 -0
  130. package/dist/rpc/methods/cbd.cjs +45 -0
  131. package/dist/rpc/methods/cbd.d.ts +4 -0
  132. package/dist/rpc/methods/cbd.mjs +36 -0
  133. package/dist/rpc/methods/checkout/index.cjs +38 -0
  134. package/dist/rpc/methods/checkout/index.d.ts +3 -0
  135. package/dist/rpc/methods/checkout/index.mjs +3 -0
  136. package/dist/rpc/methods/checkout/order.cjs +55 -0
  137. package/dist/rpc/methods/checkout/order.d.ts +4 -0
  138. package/dist/rpc/methods/checkout/order.mjs +43 -0
  139. package/dist/rpc/methods/checkout/shopUser.cjs +126 -0
  140. package/dist/rpc/methods/checkout/shopUser.d.ts +7 -0
  141. package/dist/rpc/methods/checkout/shopUser.mjs +109 -0
  142. package/dist/rpc/methods/checkout/shopUserAddresses.cjs +25 -0
  143. package/dist/rpc/methods/checkout/shopUserAddresses.d.ts +3 -0
  144. package/dist/rpc/methods/checkout/shopUserAddresses.mjs +19 -0
  145. package/dist/rpc/methods/index.cjs +159 -0
  146. package/dist/rpc/methods/index.d.ts +14 -0
  147. package/dist/rpc/methods/index.mjs +14 -0
  148. package/dist/rpc/methods/navigationTrees.cjs +33 -0
  149. package/dist/rpc/methods/navigationTrees.d.ts +5 -0
  150. package/dist/rpc/methods/navigationTrees.mjs +10 -0
  151. package/dist/rpc/methods/products.cjs +261 -0
  152. package/dist/rpc/methods/products.d.ts +13 -0
  153. package/dist/rpc/methods/products.mjs +217 -0
  154. package/dist/rpc/methods/promotion.cjs +53 -0
  155. package/dist/rpc/methods/promotion.d.ts +4 -0
  156. package/dist/rpc/methods/promotion.mjs +38 -0
  157. package/dist/rpc/methods/search.cjs +38 -0
  158. package/dist/rpc/methods/search.d.ts +10 -0
  159. package/dist/rpc/methods/search.mjs +22 -0
  160. package/dist/rpc/methods/session.cjs +274 -0
  161. package/dist/rpc/methods/session.d.ts +20 -0
  162. package/dist/rpc/methods/session.mjs +309 -0
  163. package/dist/rpc/methods/shopConfiguration.cjs +15 -0
  164. package/dist/rpc/methods/shopConfiguration.d.ts +4 -0
  165. package/dist/rpc/methods/shopConfiguration.mjs +6 -0
  166. package/dist/rpc/methods/user.cjs +89 -0
  167. package/dist/rpc/methods/user.d.ts +20 -0
  168. package/dist/rpc/methods/user.mjs +56 -0
  169. package/dist/rpc/methods/variants.cjs +29 -0
  170. package/dist/rpc/methods/variants.d.ts +8 -0
  171. package/dist/rpc/methods/variants.mjs +12 -0
  172. package/dist/rpc/methods/wishlist.cjs +85 -0
  173. package/dist/rpc/methods/wishlist.d.ts +13 -0
  174. package/dist/rpc/methods/wishlist.mjs +61 -0
  175. package/dist/server.cjs +39 -0
  176. package/dist/server.d.ts +5 -0
  177. package/dist/server.mjs +4 -0
  178. package/dist/types/api/auth.cjs +1 -0
  179. package/dist/types/api/auth.d.ts +63 -0
  180. package/dist/types/api/auth.mjs +0 -0
  181. package/dist/types/api/context.cjs +1 -0
  182. package/dist/types/api/context.d.ts +61 -0
  183. package/dist/types/api/context.mjs +0 -0
  184. package/dist/types/api/rpc.cjs +1 -0
  185. package/dist/types/api/rpc.d.ts +4 -0
  186. package/dist/types/api/rpc.mjs +0 -0
  187. package/dist/types/bapi/basket.cjs +1 -0
  188. package/dist/types/bapi/basket.d.ts +25 -0
  189. package/dist/types/bapi/basket.mjs +0 -0
  190. package/dist/types/bapi/brand.cjs +1 -0
  191. package/dist/types/bapi/brand.d.ts +2 -0
  192. package/dist/types/bapi/brand.mjs +0 -0
  193. package/dist/types/bapi/category.cjs +1 -0
  194. package/dist/types/bapi/category.d.ts +6 -0
  195. package/dist/types/bapi/category.mjs +0 -0
  196. package/dist/types/bapi/filter.cjs +1 -0
  197. package/dist/types/bapi/filter.d.ts +49 -0
  198. package/dist/types/bapi/filter.mjs +0 -0
  199. package/dist/types/bapi/navigation.cjs +1 -0
  200. package/dist/types/bapi/navigation.d.ts +10 -0
  201. package/dist/types/bapi/navigation.mjs +0 -0
  202. package/dist/types/bapi/order.cjs +1 -0
  203. package/dist/types/bapi/order.d.ts +554 -0
  204. package/dist/types/bapi/order.mjs +0 -0
  205. package/dist/types/bapi/pagination.cjs +1 -0
  206. package/dist/types/bapi/pagination.d.ts +13 -0
  207. package/dist/types/bapi/pagination.mjs +0 -0
  208. package/dist/types/bapi/product.cjs +1 -0
  209. package/dist/types/bapi/product.d.ts +84 -0
  210. package/dist/types/bapi/product.mjs +0 -0
  211. package/dist/types/bapi/productFilter.cjs +1 -0
  212. package/dist/types/bapi/productFilter.d.ts +7 -0
  213. package/dist/types/bapi/productFilter.mjs +0 -0
  214. package/dist/types/bapi/promotion.cjs +1 -0
  215. package/dist/types/bapi/promotion.d.ts +2 -0
  216. package/dist/types/bapi/promotion.mjs +0 -0
  217. package/dist/types/bapi/redirects.cjs +1 -0
  218. package/dist/types/bapi/redirects.d.ts +1 -0
  219. package/dist/types/bapi/redirects.mjs +0 -0
  220. package/dist/types/bapi/router.cjs +1 -0
  221. package/dist/types/bapi/router.d.ts +1 -0
  222. package/dist/types/bapi/router.mjs +0 -0
  223. package/dist/types/bapi/search.cjs +1 -0
  224. package/dist/types/bapi/search.d.ts +21 -0
  225. package/dist/types/bapi/search.mjs +0 -0
  226. package/dist/types/bapi/sorting.cjs +5 -0
  227. package/dist/types/bapi/sorting.d.ts +10 -0
  228. package/dist/types/bapi/sorting.mjs +1 -0
  229. package/dist/types/bapi/wishlist.cjs +1 -0
  230. package/dist/types/bapi/wishlist.d.ts +9 -0
  231. package/dist/types/bapi/wishlist.mjs +0 -0
  232. package/dist/types/breadcrumb.cjs +1 -0
  233. package/dist/types/breadcrumb.d.ts +4 -0
  234. package/dist/types/breadcrumb.mjs +0 -0
  235. package/dist/types/index.cjs +236 -0
  236. package/dist/types/index.d.ts +22 -0
  237. package/dist/types/index.mjs +21 -0
  238. package/dist/types/promises.cjs +1 -0
  239. package/dist/types/promises.d.ts +2 -0
  240. package/dist/types/promises.mjs +0 -0
  241. package/dist/types/user.cjs +1 -0
  242. package/dist/types/user.d.ts +100 -0
  243. package/dist/types/user.mjs +0 -0
  244. package/dist/utils/compression.cjs +24 -0
  245. package/dist/utils/compression.d.ts +2 -0
  246. package/dist/utils/compression.mjs +16 -0
  247. package/dist/utils/hash.cjs +68 -0
  248. package/dist/utils/hash.d.ts +8 -0
  249. package/dist/utils/hash.mjs +61 -0
  250. package/dist/utils/index.cjs +27 -0
  251. package/dist/utils/index.d.ts +2 -0
  252. package/dist/utils/index.mjs +2 -0
  253. package/dist/utils/keys.cjs +67 -0
  254. package/dist/utils/keys.d.ts +24 -0
  255. package/dist/utils/keys.mjs +56 -0
  256. package/dist/utils/log.cjs +93 -0
  257. package/dist/utils/log.d.ts +43 -0
  258. package/dist/utils/log.mjs +75 -0
  259. package/dist/utils/rpc.cjs +41 -0
  260. package/dist/utils/rpc.d.ts +6 -0
  261. package/dist/utils/rpc.mjs +35 -0
  262. package/dist/utils/timeout.cjs +17 -0
  263. package/dist/utils/timeout.d.ts +2 -0
  264. package/dist/utils/timeout.mjs +9 -0
  265. package/dist/utils/user.cjs +75 -0
  266. package/dist/utils/user.d.ts +14 -0
  267. package/dist/utils/user.mjs +65 -0
  268. package/package.json +97 -0
@@ -0,0 +1,415 @@
1
+ export declare const product: {
2
+ id: number;
3
+ isActive: boolean;
4
+ isSoldOut: boolean;
5
+ isNew: boolean;
6
+ createdAt: string;
7
+ updatedAt: string;
8
+ masterKey: string;
9
+ referenceKey: string;
10
+ firstLiveAt: string;
11
+ attributes: {
12
+ color: {
13
+ id: number;
14
+ key: string;
15
+ label: string;
16
+ type: string;
17
+ multiSelect: boolean;
18
+ values: {
19
+ id: number;
20
+ label: string;
21
+ value: string;
22
+ };
23
+ };
24
+ brand: {
25
+ id: number;
26
+ key: string;
27
+ label: string;
28
+ type: string;
29
+ multiSelect: boolean;
30
+ values: {
31
+ id: number;
32
+ label: string;
33
+ value: string;
34
+ };
35
+ };
36
+ name: {
37
+ id: number;
38
+ key: string;
39
+ label: string;
40
+ type: null;
41
+ multiSelect: boolean;
42
+ values: {
43
+ label: string;
44
+ };
45
+ };
46
+ };
47
+ lowestPriorPrice: {
48
+ withTax: null;
49
+ relativeDifferenceToPrice: null;
50
+ };
51
+ images: {
52
+ hash: string;
53
+ attributes: {};
54
+ }[];
55
+ variants: {
56
+ id: number;
57
+ referenceKey: string;
58
+ firstLiveAt: string;
59
+ createdAt: string;
60
+ updatedAt: string;
61
+ price: {
62
+ currencyCode: string;
63
+ withTax: number;
64
+ withoutTax: number;
65
+ appliedReductions: never[];
66
+ recommendedRetailPrice: null;
67
+ tax: {
68
+ vat: {
69
+ amount: number;
70
+ rate: number;
71
+ };
72
+ };
73
+ };
74
+ stock: {
75
+ supplierId: number;
76
+ warehouseId: number;
77
+ quantity: number;
78
+ isSellableWithoutStock: boolean;
79
+ };
80
+ attributes: {
81
+ shopSize: {
82
+ id: number;
83
+ key: string;
84
+ label: string;
85
+ type: string;
86
+ multiSelect: boolean;
87
+ values: {
88
+ id: number;
89
+ label: string;
90
+ value: string;
91
+ };
92
+ };
93
+ };
94
+ }[];
95
+ siblings: never[];
96
+ priceRange: {
97
+ min: {
98
+ currencyCode: string;
99
+ withTax: number;
100
+ withoutTax: number;
101
+ appliedReductions: never[];
102
+ recommendedRetailPrice: null;
103
+ tax: {
104
+ vat: {
105
+ amount: number;
106
+ rate: number;
107
+ };
108
+ };
109
+ };
110
+ max: {
111
+ currencyCode: string;
112
+ withTax: number;
113
+ withoutTax: number;
114
+ appliedReductions: never[];
115
+ recommendedRetailPrice: null;
116
+ tax: {
117
+ vat: {
118
+ amount: number;
119
+ rate: number;
120
+ };
121
+ };
122
+ };
123
+ };
124
+ categories: {
125
+ categoryId: number;
126
+ categoryName: string;
127
+ categorySlug: string;
128
+ categoryUrl: string;
129
+ categoryHidden: boolean;
130
+ categoryProperties: never[];
131
+ }[][];
132
+ };
133
+ export declare const productFromEDT: {
134
+ id: number;
135
+ isActive: boolean;
136
+ isSoldOut: boolean;
137
+ isNew: boolean;
138
+ createdAt: string;
139
+ updatedAt: string;
140
+ masterKey: string;
141
+ referenceKey: string;
142
+ firstLiveAt: string;
143
+ attributes: {
144
+ brand: {
145
+ id: number;
146
+ key: string;
147
+ label: string;
148
+ type: string;
149
+ multiSelect: boolean;
150
+ values: {
151
+ id: number;
152
+ label: string;
153
+ value: string;
154
+ };
155
+ };
156
+ colorDetail: {
157
+ id: number;
158
+ key: string;
159
+ label: string;
160
+ type: string;
161
+ multiSelect: boolean;
162
+ values: {
163
+ id: number;
164
+ label: string;
165
+ value: string;
166
+ }[];
167
+ };
168
+ name: {
169
+ id: number;
170
+ key: string;
171
+ label: string;
172
+ type: string;
173
+ multiSelect: boolean;
174
+ values: {
175
+ id: number;
176
+ label: string;
177
+ value: string;
178
+ };
179
+ };
180
+ };
181
+ lowestPriorPrice: {
182
+ withTax: null;
183
+ relativeDifferenceToPrice: null;
184
+ };
185
+ images: ({
186
+ hash: string;
187
+ attributes: {
188
+ imageBackground: {
189
+ id: number;
190
+ key: string;
191
+ label: string;
192
+ type: string;
193
+ multiSelect: boolean;
194
+ values: {
195
+ id: number;
196
+ label: string;
197
+ value: string;
198
+ };
199
+ };
200
+ imageKind: {
201
+ id: number;
202
+ key: string;
203
+ label: string;
204
+ type: string;
205
+ multiSelect: boolean;
206
+ values: {
207
+ id: number;
208
+ label: string;
209
+ value: string;
210
+ };
211
+ };
212
+ imageView: {
213
+ id: number;
214
+ key: string;
215
+ label: string;
216
+ type: string;
217
+ multiSelect: boolean;
218
+ values: {
219
+ id: number;
220
+ label: string;
221
+ value: string;
222
+ };
223
+ };
224
+ imageType: {
225
+ id: number;
226
+ key: string;
227
+ label: string;
228
+ type: string;
229
+ multiSelect: boolean;
230
+ values: {
231
+ id: number;
232
+ label: string;
233
+ value: string;
234
+ };
235
+ };
236
+ };
237
+ } | {
238
+ hash: string;
239
+ attributes: {
240
+ imageBackground: {
241
+ id: number;
242
+ key: string;
243
+ label: string;
244
+ type: string;
245
+ multiSelect: boolean;
246
+ values: {
247
+ id: number;
248
+ label: string;
249
+ value: string;
250
+ };
251
+ };
252
+ imageKind: {
253
+ id: number;
254
+ key: string;
255
+ label: string;
256
+ type: string;
257
+ multiSelect: boolean;
258
+ values: {
259
+ id: number;
260
+ label: string;
261
+ value: string;
262
+ };
263
+ };
264
+ imageType: {
265
+ id: number;
266
+ key: string;
267
+ label: string;
268
+ type: string;
269
+ multiSelect: boolean;
270
+ values: {
271
+ id: number;
272
+ label: string;
273
+ value: string;
274
+ };
275
+ };
276
+ imageView?: undefined;
277
+ };
278
+ })[];
279
+ variants: {
280
+ id: number;
281
+ referenceKey: string;
282
+ firstLiveAt: string;
283
+ createdAt: string;
284
+ updatedAt: string;
285
+ price: {
286
+ currencyCode: string;
287
+ withTax: number;
288
+ withoutTax: number;
289
+ appliedReductions: {
290
+ category: string;
291
+ type: string;
292
+ amount: {
293
+ relative: number;
294
+ absoluteWithTax: number;
295
+ };
296
+ }[];
297
+ recommendedRetailPrice: null;
298
+ tax: {
299
+ vat: {
300
+ amount: number;
301
+ rate: number;
302
+ };
303
+ };
304
+ };
305
+ stock: {
306
+ supplierId: number;
307
+ warehouseId: number;
308
+ quantity: number;
309
+ isSellableWithoutStock: boolean;
310
+ };
311
+ attributes: {};
312
+ advancedAttributes: {
313
+ variantCrosssellings: {
314
+ id: number;
315
+ key: string;
316
+ label: string;
317
+ type: string;
318
+ values: {
319
+ fieldSet: {
320
+ value: string;
321
+ }[][];
322
+ groupSet: never[];
323
+ }[];
324
+ };
325
+ };
326
+ lowestPriorPrice: {
327
+ withTax: null;
328
+ relativeDifferenceToPrice: null;
329
+ };
330
+ }[];
331
+ siblings: never[];
332
+ priceRange: {
333
+ min: {
334
+ currencyCode: string;
335
+ withTax: number;
336
+ withoutTax: number;
337
+ appliedReductions: {
338
+ category: string;
339
+ type: string;
340
+ amount: {
341
+ relative: number;
342
+ absoluteWithTax: number;
343
+ };
344
+ }[];
345
+ recommendedRetailPrice: null;
346
+ tax: {
347
+ vat: {
348
+ amount: number;
349
+ rate: number;
350
+ };
351
+ };
352
+ };
353
+ max: {
354
+ currencyCode: string;
355
+ withTax: number;
356
+ withoutTax: number;
357
+ appliedReductions: {
358
+ category: string;
359
+ type: string;
360
+ amount: {
361
+ relative: number;
362
+ absoluteWithTax: number;
363
+ };
364
+ }[];
365
+ recommendedRetailPrice: null;
366
+ tax: {
367
+ vat: {
368
+ amount: number;
369
+ rate: number;
370
+ };
371
+ };
372
+ };
373
+ };
374
+ categories: {
375
+ categoryId: number;
376
+ categoryName: string;
377
+ categorySlug: string;
378
+ categoryUrl: string;
379
+ categoryHidden: boolean;
380
+ categoryProperties: never[];
381
+ }[][];
382
+ };
383
+ export declare const priceFixture: {
384
+ currencyCode: string;
385
+ withTax: number;
386
+ withoutTax: number;
387
+ appliedReductions: never[];
388
+ recommendedRetailPrice: null;
389
+ tax: {
390
+ vat: {
391
+ amount: number;
392
+ rate: number;
393
+ };
394
+ };
395
+ };
396
+ export declare const priceFixtureWithReductions: {
397
+ currencyCode: string;
398
+ withTax: number;
399
+ withoutTax: number;
400
+ appliedReductions: {
401
+ category: string;
402
+ type: string;
403
+ amount: {
404
+ relative: number;
405
+ absoluteWithTax: number;
406
+ };
407
+ }[];
408
+ recommendedRetailPrice: null;
409
+ tax: {
410
+ vat: {
411
+ amount: number;
412
+ rate: number;
413
+ };
414
+ };
415
+ };