@revenexx/cover 0.1.0

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 (408) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +39 -0
  3. package/app/api/account.ts +8 -0
  4. package/app/api/categories.ts +3 -0
  5. package/app/api/checkout.ts +6 -0
  6. package/app/api/images.ts +4 -0
  7. package/app/api/markets.ts +3 -0
  8. package/app/api/product.ts +3 -0
  9. package/app/api/products.ts +4 -0
  10. package/app/api/search.ts +4 -0
  11. package/app/app.config.ts +29 -0
  12. package/app/assets/css/cover.css +25 -0
  13. package/app/components/account/AccountMenu.vue +30 -0
  14. package/app/components/account/AccountShell.vue +18 -0
  15. package/app/components/account/AccountSidebar.vue +90 -0
  16. package/app/components/account/address/AccountAddressCard.vue +287 -0
  17. package/app/components/account/carts/AccountCartsTable.vue +284 -0
  18. package/app/components/account/dashboard/AccountDashboard.vue +351 -0
  19. package/app/components/account/directorder/AccountDirectOrder.vue +512 -0
  20. package/app/components/account/governance/AccountApprovalLimitsTable.vue +221 -0
  21. package/app/components/account/governance/AccountCostCenterDetail.vue +276 -0
  22. package/app/components/account/governance/AccountCostCentersTable.vue +252 -0
  23. package/app/components/account/governance/AccountRequisitionDetail.vue +295 -0
  24. package/app/components/account/governance/AccountRequisitionsTable.vue +255 -0
  25. package/app/components/account/governance/AccountWorkflowDetail.vue +215 -0
  26. package/app/components/account/governance/AccountWorkflowsTable.vue +168 -0
  27. package/app/components/account/governance/GovernanceApprovalLimitModal.vue +183 -0
  28. package/app/components/account/governance/GovernanceCostCenterModal.vue +188 -0
  29. package/app/components/account/governance/GovernanceWorkflowModal.vue +191 -0
  30. package/app/components/account/orderlists/AccountOrderListDetail.vue +349 -0
  31. package/app/components/account/orderlists/AccountOrderListsTable.vue +352 -0
  32. package/app/components/account/orders/AccountOrderDetail.vue +376 -0
  33. package/app/components/account/orders/AccountOrdersTable.vue +281 -0
  34. package/app/components/account/preferences/AccountPreferences.vue +50 -0
  35. package/app/components/auth/AuthForgotPasswordPanel.vue +88 -0
  36. package/app/components/auth/AuthLoginPanel.vue +103 -0
  37. package/app/components/auth/AuthLoginTeaser.vue +24 -0
  38. package/app/components/auth/AuthPageHeader.vue +21 -0
  39. package/app/components/auth/AuthRegisterPanel.vue +431 -0
  40. package/app/components/auth/AuthRegisterTeaser.vue +24 -0
  41. package/app/components/auth/AuthResetPasswordPanel.vue +115 -0
  42. package/app/components/cart/CartButton.vue +42 -0
  43. package/app/components/cart/actions/CartCostCenterModal.vue +110 -0
  44. package/app/components/cart/actions/CartExportModal.vue +82 -0
  45. package/app/components/cart/actions/CartPositionTextsModal.vue +92 -0
  46. package/app/components/cart/actions/CartSaveToListModal.vue +177 -0
  47. package/app/components/cart/actions/CartWorkflowPickerModal.vue +64 -0
  48. package/app/components/cart/drawer/CartDrawer.vue +49 -0
  49. package/app/components/cart/item/CartItem.vue +318 -0
  50. package/app/components/cart/manage/CartNameModal.vue +68 -0
  51. package/app/components/cart/position/CartPosition.vue +369 -0
  52. package/app/components/cart/quickadd/CartQuickAdd.vue +145 -0
  53. package/app/components/cart/recommend/CartCrossSell.vue +102 -0
  54. package/app/components/cart/recommend/CartRecommendCard.vue +59 -0
  55. package/app/components/cart/recommend/CartReorderStrip.vue +108 -0
  56. package/app/components/cart/requisition/CartRequisitionGroup.vue +74 -0
  57. package/app/components/cart/skeleton/CartSkeleton.vue +18 -0
  58. package/app/components/cart/summary/CartSummary.vue +25 -0
  59. package/app/components/cart/summary/CartSummaryBreakdown.vue +35 -0
  60. package/app/components/cart/switcher/CartSwitcher.vue +147 -0
  61. package/app/components/cart/target/CartTargetModal.vue +129 -0
  62. package/app/components/cart/view/CartApprovalsPanel.vue +89 -0
  63. package/app/components/cart/view/CartListHeader.vue +86 -0
  64. package/app/components/cart/view/CartPositionList.vue +94 -0
  65. package/app/components/cart/view/CartSummaryPanel.vue +254 -0
  66. package/app/components/cart/view/CartView.vue +310 -0
  67. package/app/components/category/info/CategoryPrice.vue +47 -0
  68. package/app/components/category/info/CategorySku.vue +15 -0
  69. package/app/components/category/info/CategoryStock.vue +25 -0
  70. package/app/components/category/list/CategoryItemCount.vue +27 -0
  71. package/app/components/category/list/CategoryListPagination.vue +81 -0
  72. package/app/components/category/skeleton/CategoryDetailSkeleton.vue +12 -0
  73. package/app/components/category/skeleton/CategoryListSkeleton.vue +65 -0
  74. package/app/components/category/view/CategoryViewToggle.vue +33 -0
  75. package/app/components/category/view/GridView.vue +78 -0
  76. package/app/components/category/view/ListView.vue +80 -0
  77. package/app/components/checkout/confirmation/CheckoutConfirmationView.vue +289 -0
  78. package/app/components/checkout/form/CheckoutSchemaForm.vue +72 -0
  79. package/app/components/checkout/onepage/CheckoutAddressPickerModal.vue +260 -0
  80. package/app/components/checkout/onepage/CheckoutAddressSection.vue +186 -0
  81. package/app/components/checkout/onepage/CheckoutDeliverySection.vue +158 -0
  82. package/app/components/checkout/onepage/CheckoutGate.vue +67 -0
  83. package/app/components/checkout/onepage/CheckoutGuestDetailsSection.vue +154 -0
  84. package/app/components/checkout/onepage/CheckoutNotesSection.vue +62 -0
  85. package/app/components/checkout/onepage/CheckoutOnePageView.vue +77 -0
  86. package/app/components/checkout/onepage/CheckoutPaymentSection.vue +181 -0
  87. package/app/components/checkout/onepage/CheckoutSectionTitle.vue +18 -0
  88. package/app/components/checkout/onepage/CheckoutSummarySection.vue +211 -0
  89. package/app/components/checkout/onepage/CheckoutWorkflowPanel.vue +38 -0
  90. package/app/components/layout/AppLogo.vue +21 -0
  91. package/app/components/layout/footer/Footer.vue +148 -0
  92. package/app/components/layout/header/AppBar.vue +75 -0
  93. package/app/components/layout/header/CategoryNav.vue +93 -0
  94. package/app/components/layout/header/HeaderActionItem.vue +81 -0
  95. package/app/components/layout/header/LocaleSwitcher.vue +123 -0
  96. package/app/components/layout/header/MainNav.vue +61 -0
  97. package/app/components/layout/header/MobileMenu.vue +81 -0
  98. package/app/components/layout/header/TopBar.vue +63 -0
  99. package/app/components/listing/ListingView.vue +227 -0
  100. package/app/components/product/detail/ProductDetailAddToCart.vue +188 -0
  101. package/app/components/product/detail/ProductDetailDescription.vue +20 -0
  102. package/app/components/product/detail/ProductDetailImageGallery.vue +58 -0
  103. package/app/components/product/detail/ProductDetailPricing.vue +108 -0
  104. package/app/components/product/detail/ProductDetailSaveToList.vue +291 -0
  105. package/app/components/product/detail/ProductDetailSpecifications.vue +33 -0
  106. package/app/components/product/detail/ProductDetailStock.vue +36 -0
  107. package/app/components/search/filter/SearchFacets.vue +256 -0
  108. package/app/components/search/filter/SearchFacetsDrawer.vue +58 -0
  109. package/app/components/ui/AppShell.vue +7 -0
  110. package/app/components/ui/debug/PiniaStateCard.vue +106 -0
  111. package/app/components/ui/feedback/EmptyState.vue +30 -0
  112. package/app/components/ui/feedback/ErrorBoundary.vue +44 -0
  113. package/app/components/ui/feedback/NotFound.vue +34 -0
  114. package/app/components/ui/forms/CountrySelection.vue +14 -0
  115. package/app/components/ui/forms/FormKitDatePicker.vue +124 -0
  116. package/app/components/ui/forms/PasswordInput.vue +136 -0
  117. package/app/components/ui/forms/SearchInput.vue +213 -0
  118. package/app/components/ui/table/TableSortButton.vue +51 -0
  119. package/app/components/ui/table/TableToolbar.vue +66 -0
  120. package/app/composables/useAccount.ts +27 -0
  121. package/app/composables/useAccountAddresses.ts +116 -0
  122. package/app/composables/useAccountOrders.ts +18 -0
  123. package/app/composables/useAppUrl.ts +38 -0
  124. package/app/composables/useAuthStore.ts +202 -0
  125. package/app/composables/useB2BContext.ts +23 -0
  126. package/app/composables/useCartActions.ts +25 -0
  127. package/app/composables/useCartCalculation.ts +90 -0
  128. package/app/composables/useCartSelection.ts +46 -0
  129. package/app/composables/useCartStore.ts +837 -0
  130. package/app/composables/useCartSummaryFormatting.ts +28 -0
  131. package/app/composables/useCategories.ts +29 -0
  132. package/app/composables/useCheckoutOnePage.ts +438 -0
  133. package/app/composables/useCheckoutProfileSource.ts +8 -0
  134. package/app/composables/useCheckoutSchema.ts +28 -0
  135. package/app/composables/useDataTable.ts +14 -0
  136. package/app/composables/useFormValidation.ts +29 -0
  137. package/app/composables/useIcons.ts +17 -0
  138. package/app/composables/useLocalePreferences.ts +45 -0
  139. package/app/composables/useMarkets.ts +15 -0
  140. package/app/composables/useProduct.ts +89 -0
  141. package/app/composables/useProductCard.ts +8 -0
  142. package/app/composables/useProductCardActions.ts +106 -0
  143. package/app/composables/useProductImage.ts +12 -0
  144. package/app/composables/useProductListing.ts +210 -0
  145. package/app/composables/useProductUrl.ts +17 -0
  146. package/app/composables/useProducts.ts +130 -0
  147. package/app/composables/useSearch.ts +12 -0
  148. package/app/composables/useThemeStore.ts +81 -0
  149. package/app/composables/useViewMode.ts +18 -0
  150. package/app/config/countries.ts +74 -0
  151. package/app/config/icons.ts +283 -0
  152. package/app/config/navigation.ts +191 -0
  153. package/app/config/palette.ts +13 -0
  154. package/app/config/themes.ts +20 -0
  155. package/app/formkit.config.ts +50 -0
  156. package/app/interfaces/account/address-list.ts +34 -0
  157. package/app/interfaces/account/order-list.ts +47 -0
  158. package/app/interfaces/account/order-lists.ts +35 -0
  159. package/app/interfaces/account/profile.ts +17 -0
  160. package/app/interfaces/account.ts +3 -0
  161. package/app/interfaces/address.ts +9 -0
  162. package/app/interfaces/auth.ts +104 -0
  163. package/app/interfaces/b2b.ts +234 -0
  164. package/app/interfaces/cart-calculation.ts +131 -0
  165. package/app/interfaces/cart-item.ts +45 -0
  166. package/app/interfaces/checkout-draft.ts +4 -0
  167. package/app/interfaces/checkout.ts +43 -0
  168. package/app/interfaces/delivery.ts +13 -0
  169. package/app/interfaces/market.ts +24 -0
  170. package/app/interfaces/payment.ts +19 -0
  171. package/app/interfaces/persisted-cart.ts +10 -0
  172. package/app/interfaces/product-detail.ts +54 -0
  173. package/app/interfaces/product-list.ts +33 -0
  174. package/app/interfaces/search-facets.ts +14 -0
  175. package/app/interfaces/validation.ts +14 -0
  176. package/app/layouts/default.vue +78 -0
  177. package/app/layouts/focus.vue +80 -0
  178. package/app/plugins/formkit-locale.client.ts +23 -0
  179. package/app/shared/constants.ts +1 -0
  180. package/app/validations/companyName.ts +18 -0
  181. package/app/validations/emailFormat.ts +10 -0
  182. package/app/validations/formValidationConfig.ts +50 -0
  183. package/app/validations/maxLength.ts +12 -0
  184. package/app/validations/minLength.ts +9 -0
  185. package/app/validations/optionalCompanyName.ts +23 -0
  186. package/app/validations/passwordsMatch.ts +5 -0
  187. package/app/validations/phoneNumber.ts +19 -0
  188. package/app/validations/required.ts +11 -0
  189. package/app/validations/termsRequired.ts +4 -0
  190. package/app/validations/types.ts +10 -0
  191. package/app/validations/zipCode.ts +15 -0
  192. package/i18n/locales/de/account.json +458 -0
  193. package/i18n/locales/de/auth.json +155 -0
  194. package/i18n/locales/de/cart.json +263 -0
  195. package/i18n/locales/de/checkout.json +217 -0
  196. package/i18n/locales/de/common.json +80 -0
  197. package/i18n/locales/de/cover.json +33 -0
  198. package/i18n/locales/de/order.json +1 -0
  199. package/i18n/locales/de/product.json +71 -0
  200. package/i18n/locales/de/search.json +54 -0
  201. package/i18n/locales/de/validation.json +12 -0
  202. package/i18n/locales/en/account.json +458 -0
  203. package/i18n/locales/en/auth.json +155 -0
  204. package/i18n/locales/en/cart.json +263 -0
  205. package/i18n/locales/en/checkout.json +217 -0
  206. package/i18n/locales/en/common.json +80 -0
  207. package/i18n/locales/en/cover.json +33 -0
  208. package/i18n/locales/en/order.json +1 -0
  209. package/i18n/locales/en/product.json +71 -0
  210. package/i18n/locales/en/search.json +54 -0
  211. package/i18n/locales/en/validation.json +12 -0
  212. package/nuxt.config.ts +109 -0
  213. package/package.json +65 -0
  214. package/public/img/product-placeholder.svg +8 -0
  215. package/public/templates/direct-order-template.csv +3 -0
  216. package/public/templates/direct-order-template.xlsx +0 -0
  217. package/server/api/account/address/[id].delete.ts +51 -0
  218. package/server/api/account/address/[id].put.ts +83 -0
  219. package/server/api/account/address/index.post.ts +60 -0
  220. package/server/api/account/addresses.get.ts +25 -0
  221. package/server/api/account/context.get.ts +16 -0
  222. package/server/api/account/governance/[domain]/[id].put.ts +57 -0
  223. package/server/api/account/governance/[domain].post.ts +111 -0
  224. package/server/api/account/order-lists/[id].delete.ts +22 -0
  225. package/server/api/account/order-lists/[id].get.ts +17 -0
  226. package/server/api/account/order-lists/[id].put.ts +46 -0
  227. package/server/api/account/order-lists/index.get.ts +14 -0
  228. package/server/api/account/order-lists/index.post.ts +38 -0
  229. package/server/api/account/orders/[id].get.ts +35 -0
  230. package/server/api/account/orders.get.ts +35 -0
  231. package/server/api/account/profile.get.ts +56 -0
  232. package/server/api/account/profile.put.ts +128 -0
  233. package/server/api/account/requisitions/[id].get.ts +15 -0
  234. package/server/api/account/requisitions.get.ts +23 -0
  235. package/server/api/auth/login.post.ts +37 -0
  236. package/server/api/auth/logout.post.ts +4 -0
  237. package/server/api/auth/me.get.ts +3 -0
  238. package/server/api/auth/personas.get.ts +7 -0
  239. package/server/api/auth/recovery.post.ts +32 -0
  240. package/server/api/auth/recovery.put.ts +37 -0
  241. package/server/api/auth/register.post.ts +126 -0
  242. package/server/api/cart/calculate.post.ts +25 -0
  243. package/server/api/cart/export.post.ts +81 -0
  244. package/server/api/cart/index.delete.ts +10 -0
  245. package/server/api/cart/index.get.ts +10 -0
  246. package/server/api/cart/sync.post.ts +14 -0
  247. package/server/api/carts/[id]/activate.post.ts +18 -0
  248. package/server/api/carts/[id]/index.delete.ts +18 -0
  249. package/server/api/carts/[id]/index.put.ts +19 -0
  250. package/server/api/carts/[id]/items.post.ts +21 -0
  251. package/server/api/carts/index.get.ts +14 -0
  252. package/server/api/carts/index.post.ts +14 -0
  253. package/server/api/categories/[slug].get.ts +22 -0
  254. package/server/api/categories/index.get.ts +11 -0
  255. package/server/api/checkout/profile.get.ts +21 -0
  256. package/server/api/checkout/schema/[key].get.ts +19 -0
  257. package/server/api/checkout/session.post.ts +8 -0
  258. package/server/api/images/detail/[filename].get.ts +18 -0
  259. package/server/api/images/list/[filename].get.ts +17 -0
  260. package/server/api/markets.get.ts +9 -0
  261. package/server/api/orders/index.post.ts +376 -0
  262. package/server/api/payment/methods.post.ts +65 -0
  263. package/server/api/product/[id].get.ts +29 -0
  264. package/server/api/products/[id].get.ts +30 -0
  265. package/server/api/products/index.get.ts +21 -0
  266. package/server/api/requisitions/index.post.ts +67 -0
  267. package/server/api/shipping/rates.post.ts +70 -0
  268. package/server/api/themes/index.get.ts +9 -0
  269. package/server/api/typesense/drop.get.ts +22 -0
  270. package/server/api/typesense/health.get.ts +9 -0
  271. package/server/api/typesense/search.post.ts +199 -0
  272. package/server/api/typesense/seed.get.ts +112 -0
  273. package/server/api/typesense/suggest.post.ts +69 -0
  274. package/server/config/account/organization.json +146 -0
  275. package/server/config/account/personas.json +169 -0
  276. package/server/config/account/user.json +8 -0
  277. package/server/config/account/workflows.json +19 -0
  278. package/server/data/account/address-list.json +103 -0
  279. package/server/data/account/order-list.json +491 -0
  280. package/server/data/account/order-lists.json +149 -0
  281. package/server/data/account/profile.json +9 -0
  282. package/server/data/account/registration-requests.json +3 -0
  283. package/server/data/account/requisitions.json +686 -0
  284. package/server/data/categories.json +186 -0
  285. package/server/data/forms/checkout/add-address.json +24 -0
  286. package/server/data/list/5137-1.png +0 -0
  287. package/server/data/list/5498-1.png +0 -0
  288. package/server/data/list/5498-2.png +0 -0
  289. package/server/data/list/5498-3.png +0 -0
  290. package/server/data/list/5498-4.png +0 -0
  291. package/server/data/list/5498-5.png +0 -0
  292. package/server/data/list/5498-6.png +0 -0
  293. package/server/data/list/5519-1.png +0 -0
  294. package/server/data/list/5713-1.png +0 -0
  295. package/server/data/list/5789-1.png +0 -0
  296. package/server/data/list/5930-1.png +0 -0
  297. package/server/data/list/6127-1.png +0 -0
  298. package/server/data/list/6234-1.png +0 -0
  299. package/server/data/list/6238-1.png +0 -0
  300. package/server/data/list/6246-1.png +0 -0
  301. package/server/data/list/6270-1.png +0 -0
  302. package/server/data/list/6330-1.png +0 -0
  303. package/server/data/list/6336-1.png +0 -0
  304. package/server/data/list/6360-1.png +0 -0
  305. package/server/data/list/6363-1.png +0 -0
  306. package/server/data/list/6375-1.png +0 -0
  307. package/server/data/list/6385-1.png +0 -0
  308. package/server/data/list/6413-1.png +0 -0
  309. package/server/data/list/6418-1.png +0 -0
  310. package/server/data/list/6465-1.png +0 -0
  311. package/server/data/list/6477-1.png +0 -0
  312. package/server/data/list/6509-1.png +0 -0
  313. package/server/data/list/6545-1.png +0 -0
  314. package/server/data/list/6548-1.png +0 -0
  315. package/server/data/list/6566-1.png +0 -0
  316. package/server/data/list/6581-1.png +0 -0
  317. package/server/data/list/6609-1.png +0 -0
  318. package/server/data/list/6611-1.png +0 -0
  319. package/server/data/list/6641-1.png +0 -0
  320. package/server/data/list/6659-1.png +0 -0
  321. package/server/data/list/6662-1.png +0 -0
  322. package/server/data/list/6689-1.png +0 -0
  323. package/server/data/list/6698-1.png +0 -0
  324. package/server/data/list/6701-1.png +0 -0
  325. package/server/data/list/6752-1.png +0 -0
  326. package/server/data/list/6755-1.png +0 -0
  327. package/server/data/list/6837-1.png +0 -0
  328. package/server/data/list/6841-1.png +0 -0
  329. package/server/data/list/6844-1.png +0 -0
  330. package/server/data/list/6846-1.png +0 -0
  331. package/server/data/list/6886-1.png +0 -0
  332. package/server/data/list/6895-1.png +0 -0
  333. package/server/data/list/6897-1.png +0 -0
  334. package/server/data/list/6919-1.png +0 -0
  335. package/server/data/list/6977-1.png +0 -0
  336. package/server/data/list/6983-1.png +0 -0
  337. package/server/data/list/6984-1.png +0 -0
  338. package/server/data/list/6985-1.png +0 -0
  339. package/server/data/list/6986-1.png +0 -0
  340. package/server/data/list/6989-1.png +0 -0
  341. package/server/data/list/6995-1.png +0 -0
  342. package/server/data/list/6998-1.png +0 -0
  343. package/server/data/markets.json +24 -0
  344. package/server/data/product-detail.json +2450 -0
  345. package/server/data/product-list.json +2450 -0
  346. package/server/data/themes.json +8 -0
  347. package/server/interfaces/account.ts +20 -0
  348. package/server/interfaces/auth.ts +32 -0
  349. package/server/interfaces/b2bContext.ts +23 -0
  350. package/server/interfaces/cart.ts +46 -0
  351. package/server/interfaces/cartCalculation.ts +17 -0
  352. package/server/interfaces/category.ts +12 -0
  353. package/server/interfaces/checkoutProfile.ts +5 -0
  354. package/server/interfaces/log.ts +3 -0
  355. package/server/interfaces/market.ts +10 -0
  356. package/server/interfaces/product.ts +21 -0
  357. package/server/interfaces/schema.ts +20 -0
  358. package/server/interfaces/theme.ts +10 -0
  359. package/server/services/ApiAuthService.ts +138 -0
  360. package/server/services/ApiCartService.ts +254 -0
  361. package/server/services/ApiCategoryService.ts +25 -0
  362. package/server/services/ApiMarketService.ts +71 -0
  363. package/server/services/ApiProductService.ts +53 -0
  364. package/server/services/LocalFileCategoryService.ts +23 -0
  365. package/server/services/LocalFileCheckoutProfileService.ts +117 -0
  366. package/server/services/LocalFileProductService.ts +128 -0
  367. package/server/services/LocalFileSchemaService.ts +70 -0
  368. package/server/services/LocalFileThemeService.ts +18 -0
  369. package/server/services/LogService.ts +28 -0
  370. package/server/services/MockAccountService.ts +58 -0
  371. package/server/services/MockAuthService.ts +105 -0
  372. package/server/services/MockB2BContextService.ts +149 -0
  373. package/server/services/MockCartCalculationService.ts +395 -0
  374. package/server/services/MockMarketService.ts +18 -0
  375. package/server/services/SdkAccountService.ts +56 -0
  376. package/server/services/SdkAuthService.ts +83 -0
  377. package/server/services/SessionCartService.ts +31 -0
  378. package/server/utils/accountService.ts +30 -0
  379. package/server/utils/authCookie.ts +13 -0
  380. package/server/utils/authService.ts +43 -0
  381. package/server/utils/b2bService.ts +49 -0
  382. package/server/utils/cartService.ts +59 -0
  383. package/server/utils/categoryService.ts +19 -0
  384. package/server/utils/checkoutProfileService.ts +9 -0
  385. package/server/utils/checkoutSession.ts +38 -0
  386. package/server/utils/coverData.ts +84 -0
  387. package/server/utils/governanceStore.ts +38 -0
  388. package/server/utils/i18n.ts +76 -0
  389. package/server/utils/inventoryService.ts +14 -0
  390. package/server/utils/liveCatalog.ts +234 -0
  391. package/server/utils/liveInventories.ts +76 -0
  392. package/server/utils/liveOrders.ts +139 -0
  393. package/server/utils/livePrices.ts +93 -0
  394. package/server/utils/locale.ts +39 -0
  395. package/server/utils/logService.ts +19 -0
  396. package/server/utils/marketService.ts +24 -0
  397. package/server/utils/orderService.ts +14 -0
  398. package/server/utils/paymentService.ts +14 -0
  399. package/server/utils/priceService.ts +14 -0
  400. package/server/utils/productService.ts +28 -0
  401. package/server/utils/productsSchema.ts +30 -0
  402. package/server/utils/revenexxApi.ts +136 -0
  403. package/server/utils/schemaService.ts +25 -0
  404. package/server/utils/serviceMode.ts +70 -0
  405. package/server/utils/shippingService.ts +14 -0
  406. package/server/utils/shopSdk.ts +88 -0
  407. package/server/utils/themeService.ts +16 -0
  408. package/server/utils/typesense.ts +27 -0
@@ -0,0 +1,2450 @@
1
+ {
2
+ "5137": {
3
+ "product": [
4
+ {
5
+ "id": 5137,
6
+ "version": 1,
7
+ "name": "Samsung Galaxy S24 Ultra 256 GB Titanium Black",
8
+ "sku": "SG-S24UL-001-5137",
9
+ "manufacturer": "Samsung",
10
+ "createdAt": "2026-04-01T12:00:00Z",
11
+ "updatedAt": "2026-04-01T12:00:00Z",
12
+ "deletedAt": null,
13
+ "available": true
14
+ }
15
+ ],
16
+ "stocks": [
17
+ {
18
+ "quantity": 0,
19
+ "maxOrderQuantity": 0
20
+ }
21
+ ],
22
+ "tax": {
23
+ "rate": 7
24
+ },
25
+ "prices": [
26
+ {
27
+ "1": 129900,
28
+ "3": 378000,
29
+ "5": 617500,
30
+ "10": 1209000
31
+ }
32
+ ],
33
+ "descriptions": [
34
+ {
35
+ "type": "long",
36
+ "content": "Samsung Galaxy S24 Ultra von Samsung — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,8 Zoll Display, Snapdragon 8 Gen 3, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 5000 mAh · Gewicht: 232 g · Android 14 · Farbe Titanium Black. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
37
+ }
38
+ ],
39
+ "categories": [
40
+ {
41
+ "type": "root",
42
+ "name": "Home"
43
+ },
44
+ {
45
+ "type": "main",
46
+ "name": "Mobile Phones"
47
+ },
48
+ {
49
+ "type": "subcategory",
50
+ "name": "Samsung"
51
+ },
52
+ {
53
+ "type": "slug",
54
+ "name": "mobile-phones/samsung/product/5137-samsung-galaxy-s24-ultra-256-gb-titanium-black"
55
+ }
56
+ ],
57
+ "images": [
58
+ {
59
+ "type": "main",
60
+ "priority": 1,
61
+ "url": "5137-1.png"
62
+ }
63
+ ],
64
+ "attributes": [
65
+ {
66
+ "id": 1,
67
+ "name": "Color",
68
+ "value": "Titanium Black"
69
+ },
70
+ {
71
+ "id": 2,
72
+ "name": "Storage",
73
+ "value": "256 GB"
74
+ },
75
+ {
76
+ "id": 3,
77
+ "name": "Display Size",
78
+ "value": "6,8 Zoll"
79
+ },
80
+ {
81
+ "id": 4,
82
+ "name": "Processor",
83
+ "value": "Snapdragon 8 Gen 3"
84
+ },
85
+ {
86
+ "id": 5,
87
+ "name": "Camera",
88
+ "value": "200 MP"
89
+ },
90
+ {
91
+ "id": 6,
92
+ "name": "Operating System",
93
+ "value": "Android 14"
94
+ },
95
+ {
96
+ "id": 7,
97
+ "name": "Battery",
98
+ "value": "5000 mAh"
99
+ },
100
+ {
101
+ "id": 8,
102
+ "name": "Weight",
103
+ "value": "232 g"
104
+ }
105
+ ]
106
+ },
107
+ "5498": {
108
+ "product": [
109
+ {
110
+ "id": 5498,
111
+ "version": 1,
112
+ "name": "revenexx 1 Pro 256 GB Graphite Gray",
113
+ "sku": "RX-1P-001-5498",
114
+ "manufacturer": "revenexx",
115
+ "createdAt": "2026-04-01T12:00:00Z",
116
+ "updatedAt": "2026-04-01T12:00:00Z",
117
+ "deletedAt": null,
118
+ "available": true
119
+ }
120
+ ],
121
+ "stocks": [
122
+ {
123
+ "quantity": 20,
124
+ "maxOrderQuantity": 10
125
+ }
126
+ ],
127
+ "tax": {
128
+ "rate": 7
129
+ },
130
+ "prices": [
131
+ {
132
+ "1": 109900,
133
+ "2": 214000,
134
+ "5": 524500,
135
+ "10": 1039000,
136
+ "25": 2547500
137
+ }
138
+ ],
139
+ "descriptions": [
140
+ {
141
+ "type": "long",
142
+ "content": "revenexx 1 Pro von revenexx — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,7 Zoll Display, Snapdragon 8 Gen 3, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 4900 mAh · Gewicht: 196 g · Android 14 · Farbe Graphite Gray. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
143
+ }
144
+ ],
145
+ "categories": [
146
+ {
147
+ "type": "root",
148
+ "name": "Home"
149
+ },
150
+ {
151
+ "type": "main",
152
+ "name": "Mobile Phones"
153
+ },
154
+ {
155
+ "type": "subcategory",
156
+ "name": "revenexx"
157
+ },
158
+ {
159
+ "type": "slug",
160
+ "name": "mobile-phones/revenexx/product/5498-revenexx-1-pro-256-gb-graphite-gray"
161
+ }
162
+ ],
163
+ "images": [
164
+ {
165
+ "type": "main",
166
+ "priority": 1,
167
+ "url": "5498-1.png"
168
+ },
169
+ {
170
+ "type": "main",
171
+ "priority": 2,
172
+ "url": "5498-2.png"
173
+ },
174
+ {
175
+ "type": "main",
176
+ "priority": 3,
177
+ "url": "5498-3.png"
178
+ },
179
+ {
180
+ "type": "main",
181
+ "priority": 4,
182
+ "url": "5498-4.png"
183
+ },
184
+ {
185
+ "type": "main",
186
+ "priority": 5,
187
+ "url": "5498-5.png"
188
+ },
189
+ {
190
+ "type": "main",
191
+ "priority": 6,
192
+ "url": "5498-6.png"
193
+ }
194
+ ],
195
+ "attributes": [
196
+ {
197
+ "id": 1,
198
+ "name": "Color",
199
+ "value": "Graphite Gray"
200
+ },
201
+ {
202
+ "id": 2,
203
+ "name": "Storage",
204
+ "value": "256 GB"
205
+ },
206
+ {
207
+ "id": 3,
208
+ "name": "Display Size",
209
+ "value": "6,7 Zoll"
210
+ },
211
+ {
212
+ "id": 4,
213
+ "name": "Processor",
214
+ "value": "Snapdragon 8 Gen 3"
215
+ },
216
+ {
217
+ "id": 5,
218
+ "name": "Camera",
219
+ "value": "50 MP"
220
+ },
221
+ {
222
+ "id": 6,
223
+ "name": "Operating System",
224
+ "value": "Android 14"
225
+ },
226
+ {
227
+ "id": 7,
228
+ "name": "Battery",
229
+ "value": "4900 mAh"
230
+ },
231
+ {
232
+ "id": 8,
233
+ "name": "Weight",
234
+ "value": "196 g"
235
+ }
236
+ ]
237
+ },
238
+ "5519": {
239
+ "product": [
240
+ {
241
+ "id": 5519,
242
+ "version": 1,
243
+ "name": "Samsung Galaxy S23 FE 128 GB Mint",
244
+ "sku": "SG-S23FE-001-5519",
245
+ "manufacturer": "Samsung",
246
+ "createdAt": "2026-04-01T12:00:00Z",
247
+ "updatedAt": "2026-04-01T12:00:00Z",
248
+ "deletedAt": null,
249
+ "available": true
250
+ }
251
+ ],
252
+ "stocks": [
253
+ {
254
+ "quantity": 12,
255
+ "maxOrderQuantity": 8
256
+ }
257
+ ],
258
+ "tax": {
259
+ "rate": 19
260
+ },
261
+ "prices": [
262
+ {
263
+ "1": 44900
264
+ }
265
+ ],
266
+ "descriptions": [
267
+ {
268
+ "type": "long",
269
+ "content": "Samsung Galaxy S23 FE von Samsung — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,4 Zoll Display, Snapdragon 8 Gen 1, 128 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 4500 mAh · Gewicht: 209 g · Android 14 · Farbe Mint. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
270
+ }
271
+ ],
272
+ "categories": [
273
+ {
274
+ "type": "root",
275
+ "name": "Home"
276
+ },
277
+ {
278
+ "type": "main",
279
+ "name": "Mobile Phones"
280
+ },
281
+ {
282
+ "type": "subcategory",
283
+ "name": "Samsung"
284
+ },
285
+ {
286
+ "type": "slug",
287
+ "name": "mobile-phones/samsung/product/5519-samsung-galaxy-s23-fe-128-gb-mint"
288
+ }
289
+ ],
290
+ "images": [
291
+ {
292
+ "type": "main",
293
+ "priority": 1,
294
+ "url": "5519-1.png"
295
+ }
296
+ ],
297
+ "attributes": [
298
+ {
299
+ "id": 1,
300
+ "name": "Color",
301
+ "value": "Mint"
302
+ },
303
+ {
304
+ "id": 2,
305
+ "name": "Storage",
306
+ "value": "128 GB"
307
+ },
308
+ {
309
+ "id": 3,
310
+ "name": "Display Size",
311
+ "value": "6,4 Zoll"
312
+ },
313
+ {
314
+ "id": 4,
315
+ "name": "Processor",
316
+ "value": "Snapdragon 8 Gen 1"
317
+ },
318
+ {
319
+ "id": 5,
320
+ "name": "Camera",
321
+ "value": "50 MP"
322
+ },
323
+ {
324
+ "id": 6,
325
+ "name": "Operating System",
326
+ "value": "Android 14"
327
+ },
328
+ {
329
+ "id": 7,
330
+ "name": "Battery",
331
+ "value": "4500 mAh"
332
+ },
333
+ {
334
+ "id": 8,
335
+ "name": "Weight",
336
+ "value": "209 g"
337
+ }
338
+ ]
339
+ },
340
+ "5713": {
341
+ "product": [
342
+ {
343
+ "id": 5713,
344
+ "version": 1,
345
+ "name": "Samsung Galaxy A55 256 GB Awesome Navy",
346
+ "sku": "SG-A55-001-5713",
347
+ "manufacturer": "Samsung",
348
+ "createdAt": "2026-04-01T12:00:00Z",
349
+ "updatedAt": "2026-04-01T12:00:00Z",
350
+ "deletedAt": null,
351
+ "available": true
352
+ }
353
+ ],
354
+ "stocks": [
355
+ {
356
+ "quantity": 67,
357
+ "maxOrderQuantity": 30
358
+ }
359
+ ],
360
+ "tax": {
361
+ "rate": 7
362
+ },
363
+ "prices": [
364
+ {
365
+ "1": 49900,
366
+ "5": 242500,
367
+ "10": 480000,
368
+ "20": 940000
369
+ }
370
+ ],
371
+ "descriptions": [
372
+ {
373
+ "type": "long",
374
+ "content": "Samsung Galaxy A55 von Samsung — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,6 Zoll Display, Exynos 1480, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 5000 mAh · Gewicht: 213 g · Android 14 · Farbe Awesome Navy. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
375
+ }
376
+ ],
377
+ "categories": [
378
+ {
379
+ "type": "root",
380
+ "name": "Home"
381
+ },
382
+ {
383
+ "type": "main",
384
+ "name": "Mobile Phones"
385
+ },
386
+ {
387
+ "type": "subcategory",
388
+ "name": "Samsung"
389
+ },
390
+ {
391
+ "type": "slug",
392
+ "name": "mobile-phones/samsung/product/5713-samsung-galaxy-a55-256-gb-awesome-navy"
393
+ }
394
+ ],
395
+ "images": [
396
+ {
397
+ "type": "main",
398
+ "priority": 1,
399
+ "url": "5713-1.png"
400
+ }
401
+ ],
402
+ "attributes": [
403
+ {
404
+ "id": 1,
405
+ "name": "Color",
406
+ "value": "Awesome Navy"
407
+ },
408
+ {
409
+ "id": 2,
410
+ "name": "Storage",
411
+ "value": "256 GB"
412
+ },
413
+ {
414
+ "id": 3,
415
+ "name": "Display Size",
416
+ "value": "6,6 Zoll"
417
+ },
418
+ {
419
+ "id": 4,
420
+ "name": "Processor",
421
+ "value": "Exynos 1480"
422
+ },
423
+ {
424
+ "id": 5,
425
+ "name": "Camera",
426
+ "value": "50 MP"
427
+ },
428
+ {
429
+ "id": 6,
430
+ "name": "Operating System",
431
+ "value": "Android 14"
432
+ },
433
+ {
434
+ "id": 7,
435
+ "name": "Battery",
436
+ "value": "5000 mAh"
437
+ },
438
+ {
439
+ "id": 8,
440
+ "name": "Weight",
441
+ "value": "213 g"
442
+ }
443
+ ]
444
+ },
445
+ "5930": {
446
+ "product": [
447
+ {
448
+ "id": 5930,
449
+ "version": 1,
450
+ "name": "Samsung Galaxy Z Fold 5 512 GB Phantom Black",
451
+ "sku": "SG-ZF5-001-5930",
452
+ "manufacturer": "Samsung",
453
+ "createdAt": "2026-04-01T12:00:00Z",
454
+ "updatedAt": "2026-04-01T12:00:00Z",
455
+ "deletedAt": null,
456
+ "available": true
457
+ }
458
+ ],
459
+ "stocks": [
460
+ {
461
+ "quantity": 8,
462
+ "maxOrderQuantity": 5
463
+ }
464
+ ],
465
+ "tax": {
466
+ "rate": 7
467
+ },
468
+ "prices": [
469
+ {
470
+ "1": 179900,
471
+ "3": 527700,
472
+ "5": 869500
473
+ }
474
+ ],
475
+ "descriptions": [
476
+ {
477
+ "type": "long",
478
+ "content": "Samsung Galaxy Z Fold 5 von Samsung — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 7,6 Zoll Display, Snapdragon 8 Gen 2, 512 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 4400 mAh · Gewicht: 253 g · Android 13 · Farbe Phantom Black. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
479
+ }
480
+ ],
481
+ "categories": [
482
+ {
483
+ "type": "root",
484
+ "name": "Home"
485
+ },
486
+ {
487
+ "type": "main",
488
+ "name": "Mobile Phones"
489
+ },
490
+ {
491
+ "type": "subcategory",
492
+ "name": "Samsung"
493
+ },
494
+ {
495
+ "type": "slug",
496
+ "name": "mobile-phones/samsung/product/5930-samsung-galaxy-z-fold-5-512-gb-phantom-black"
497
+ }
498
+ ],
499
+ "images": [
500
+ {
501
+ "type": "main",
502
+ "priority": 1,
503
+ "url": "5930-1.png"
504
+ }
505
+ ],
506
+ "attributes": [
507
+ {
508
+ "id": 1,
509
+ "name": "Color",
510
+ "value": "Phantom Black"
511
+ },
512
+ {
513
+ "id": 2,
514
+ "name": "Storage",
515
+ "value": "512 GB"
516
+ },
517
+ {
518
+ "id": 3,
519
+ "name": "Display Size",
520
+ "value": "7,6 Zoll"
521
+ },
522
+ {
523
+ "id": 4,
524
+ "name": "Processor",
525
+ "value": "Snapdragon 8 Gen 2"
526
+ },
527
+ {
528
+ "id": 5,
529
+ "name": "Camera",
530
+ "value": "50 MP"
531
+ },
532
+ {
533
+ "id": 6,
534
+ "name": "Operating System",
535
+ "value": "Android 13"
536
+ },
537
+ {
538
+ "id": 7,
539
+ "name": "Battery",
540
+ "value": "4400 mAh"
541
+ },
542
+ {
543
+ "id": 8,
544
+ "name": "Weight",
545
+ "value": "253 g"
546
+ }
547
+ ]
548
+ },
549
+ "6336": {
550
+ "product": [
551
+ {
552
+ "id": 6336,
553
+ "version": 1,
554
+ "name": "Apple iPhone 16 Pro 256 GB Desert Titanium",
555
+ "sku": "IP-16P-001-6336",
556
+ "manufacturer": "Apple",
557
+ "createdAt": "2026-04-01T12:00:00Z",
558
+ "updatedAt": "2026-04-01T12:00:00Z",
559
+ "deletedAt": null,
560
+ "available": true
561
+ }
562
+ ],
563
+ "stocks": [
564
+ {
565
+ "quantity": 38,
566
+ "maxOrderQuantity": 15
567
+ }
568
+ ],
569
+ "tax": {
570
+ "rate": 7
571
+ },
572
+ "prices": [
573
+ {
574
+ "1": 122900,
575
+ "3": 360000,
576
+ "5": 594500,
577
+ "10": 1169000
578
+ }
579
+ ],
580
+ "descriptions": [
581
+ {
582
+ "type": "long",
583
+ "content": "Apple iPhone 16 Pro von Apple — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,3 Zoll Display, A18 Pro, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 3582 mAh · Gewicht: 199 g · iOS 18 · Farbe Desert Titanium. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
584
+ }
585
+ ],
586
+ "categories": [
587
+ {
588
+ "type": "root",
589
+ "name": "Home"
590
+ },
591
+ {
592
+ "type": "main",
593
+ "name": "Mobile Phones"
594
+ },
595
+ {
596
+ "type": "subcategory",
597
+ "name": "Apple"
598
+ },
599
+ {
600
+ "type": "slug",
601
+ "name": "mobile-phones/apple/product/6336-apple-iphone-16-pro-256-gb-desert-titanium"
602
+ }
603
+ ],
604
+ "images": [
605
+ {
606
+ "type": "main",
607
+ "priority": 1,
608
+ "url": "6336-1.png"
609
+ }
610
+ ],
611
+ "attributes": [
612
+ {
613
+ "id": 1,
614
+ "name": "Color",
615
+ "value": "Desert Titanium"
616
+ },
617
+ {
618
+ "id": 2,
619
+ "name": "Storage",
620
+ "value": "256 GB"
621
+ },
622
+ {
623
+ "id": 3,
624
+ "name": "Display Size",
625
+ "value": "6,3 Zoll"
626
+ },
627
+ {
628
+ "id": 4,
629
+ "name": "Processor",
630
+ "value": "A18 Pro"
631
+ },
632
+ {
633
+ "id": 5,
634
+ "name": "Camera",
635
+ "value": "48 MP"
636
+ },
637
+ {
638
+ "id": 6,
639
+ "name": "Operating System",
640
+ "value": "iOS 18"
641
+ },
642
+ {
643
+ "id": 7,
644
+ "name": "Battery",
645
+ "value": "3582 mAh"
646
+ },
647
+ {
648
+ "id": 8,
649
+ "name": "Weight",
650
+ "value": "199 g"
651
+ }
652
+ ]
653
+ },
654
+ "6360": {
655
+ "product": [
656
+ {
657
+ "id": 6360,
658
+ "version": 1,
659
+ "name": "Apple iPhone 16 128 GB Black",
660
+ "sku": "IP-16-001-6360",
661
+ "manufacturer": "Apple",
662
+ "createdAt": "2026-04-01T12:00:00Z",
663
+ "updatedAt": "2026-04-01T12:00:00Z",
664
+ "deletedAt": null,
665
+ "available": true
666
+ }
667
+ ],
668
+ "stocks": [
669
+ {
670
+ "quantity": 63,
671
+ "maxOrderQuantity": 35
672
+ }
673
+ ],
674
+ "tax": {
675
+ "rate": 7
676
+ },
677
+ "prices": [
678
+ {
679
+ "1": 94900,
680
+ "3": 277200,
681
+ "8": 726400
682
+ }
683
+ ],
684
+ "descriptions": [
685
+ {
686
+ "type": "long",
687
+ "content": "Apple iPhone 16 von Apple — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,1 Zoll Display, A18, 128 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 3561 mAh · Gewicht: 170 g · iOS 18 · Farbe Black. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
688
+ }
689
+ ],
690
+ "categories": [
691
+ {
692
+ "type": "root",
693
+ "name": "Home"
694
+ },
695
+ {
696
+ "type": "main",
697
+ "name": "Mobile Phones"
698
+ },
699
+ {
700
+ "type": "subcategory",
701
+ "name": "Apple"
702
+ },
703
+ {
704
+ "type": "slug",
705
+ "name": "mobile-phones/apple/product/6360-apple-iphone-16-128-gb-black"
706
+ }
707
+ ],
708
+ "images": [
709
+ {
710
+ "type": "main",
711
+ "priority": 1,
712
+ "url": "6360-1.png"
713
+ }
714
+ ],
715
+ "attributes": [
716
+ {
717
+ "id": 1,
718
+ "name": "Color",
719
+ "value": "Black"
720
+ },
721
+ {
722
+ "id": 2,
723
+ "name": "Storage",
724
+ "value": "128 GB"
725
+ },
726
+ {
727
+ "id": 3,
728
+ "name": "Display Size",
729
+ "value": "6,1 Zoll"
730
+ },
731
+ {
732
+ "id": 4,
733
+ "name": "Processor",
734
+ "value": "A18"
735
+ },
736
+ {
737
+ "id": 5,
738
+ "name": "Camera",
739
+ "value": "48 MP"
740
+ },
741
+ {
742
+ "id": 6,
743
+ "name": "Operating System",
744
+ "value": "iOS 18"
745
+ },
746
+ {
747
+ "id": 7,
748
+ "name": "Battery",
749
+ "value": "3561 mAh"
750
+ },
751
+ {
752
+ "id": 8,
753
+ "name": "Weight",
754
+ "value": "170 g"
755
+ }
756
+ ]
757
+ },
758
+ "6363": {
759
+ "product": [
760
+ {
761
+ "id": 6363,
762
+ "version": 1,
763
+ "name": "Apple iPhone 15 Pro Max 512 GB Blue Titanium",
764
+ "sku": "IP-15PM-001-6363",
765
+ "manufacturer": "Apple",
766
+ "createdAt": "2026-04-01T12:00:00Z",
767
+ "updatedAt": "2026-04-01T12:00:00Z",
768
+ "deletedAt": null,
769
+ "available": true
770
+ }
771
+ ],
772
+ "stocks": [
773
+ {
774
+ "quantity": 5,
775
+ "maxOrderQuantity": 3
776
+ }
777
+ ],
778
+ "tax": {
779
+ "rate": 7
780
+ },
781
+ "prices": [
782
+ {
783
+ "1": 147900,
784
+ "5": 724500,
785
+ "10": 1429000
786
+ }
787
+ ],
788
+ "descriptions": [
789
+ {
790
+ "type": "long",
791
+ "content": "Apple iPhone 15 Pro Max von Apple — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,7 Zoll Display, A17 Pro, 512 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 4422 mAh · Gewicht: 221 g · iOS 17 · Farbe Blue Titanium. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
792
+ }
793
+ ],
794
+ "categories": [
795
+ {
796
+ "type": "root",
797
+ "name": "Home"
798
+ },
799
+ {
800
+ "type": "main",
801
+ "name": "Mobile Phones"
802
+ },
803
+ {
804
+ "type": "subcategory",
805
+ "name": "Apple"
806
+ },
807
+ {
808
+ "type": "slug",
809
+ "name": "mobile-phones/apple/product/6363-apple-iphone-15-pro-max-512-gb-blue-titanium"
810
+ }
811
+ ],
812
+ "images": [
813
+ {
814
+ "type": "main",
815
+ "priority": 1,
816
+ "url": "6363-1.png"
817
+ }
818
+ ],
819
+ "attributes": [
820
+ {
821
+ "id": 1,
822
+ "name": "Color",
823
+ "value": "Blue Titanium"
824
+ },
825
+ {
826
+ "id": 2,
827
+ "name": "Storage",
828
+ "value": "512 GB"
829
+ },
830
+ {
831
+ "id": 3,
832
+ "name": "Display Size",
833
+ "value": "6,7 Zoll"
834
+ },
835
+ {
836
+ "id": 4,
837
+ "name": "Processor",
838
+ "value": "A17 Pro"
839
+ },
840
+ {
841
+ "id": 5,
842
+ "name": "Camera",
843
+ "value": "48 MP"
844
+ },
845
+ {
846
+ "id": 6,
847
+ "name": "Operating System",
848
+ "value": "iOS 17"
849
+ },
850
+ {
851
+ "id": 7,
852
+ "name": "Battery",
853
+ "value": "4422 mAh"
854
+ },
855
+ {
856
+ "id": 8,
857
+ "name": "Weight",
858
+ "value": "221 g"
859
+ }
860
+ ]
861
+ },
862
+ "6413": {
863
+ "product": [
864
+ {
865
+ "id": 6413,
866
+ "version": 1,
867
+ "name": "Apple iPhone 14 256 GB Midnight",
868
+ "sku": "IP-14-001-6413",
869
+ "manufacturer": "Apple",
870
+ "createdAt": "2026-04-01T12:00:00Z",
871
+ "updatedAt": "2026-04-01T12:00:00Z",
872
+ "deletedAt": null,
873
+ "available": true
874
+ }
875
+ ],
876
+ "stocks": [
877
+ {
878
+ "quantity": 41,
879
+ "maxOrderQuantity": 20
880
+ }
881
+ ],
882
+ "tax": {
883
+ "rate": 19
884
+ },
885
+ "prices": [
886
+ {
887
+ "1": 79900,
888
+ "5": 389500,
889
+ "15": 1143000
890
+ }
891
+ ],
892
+ "descriptions": [
893
+ {
894
+ "type": "long",
895
+ "content": "Apple iPhone 14 von Apple — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,1 Zoll Display, A15 Bionic, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 3279 mAh · Gewicht: 172 g · iOS 16 · Farbe Midnight. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
896
+ }
897
+ ],
898
+ "categories": [
899
+ {
900
+ "type": "root",
901
+ "name": "Home"
902
+ },
903
+ {
904
+ "type": "main",
905
+ "name": "Mobile Phones"
906
+ },
907
+ {
908
+ "type": "subcategory",
909
+ "name": "Apple"
910
+ },
911
+ {
912
+ "type": "slug",
913
+ "name": "mobile-phones/apple/product/6413-apple-iphone-14-256-gb-midnight"
914
+ }
915
+ ],
916
+ "images": [
917
+ {
918
+ "type": "main",
919
+ "priority": 1,
920
+ "url": "6413-1.png"
921
+ }
922
+ ],
923
+ "attributes": [
924
+ {
925
+ "id": 1,
926
+ "name": "Color",
927
+ "value": "Midnight"
928
+ },
929
+ {
930
+ "id": 2,
931
+ "name": "Storage",
932
+ "value": "256 GB"
933
+ },
934
+ {
935
+ "id": 3,
936
+ "name": "Display Size",
937
+ "value": "6,1 Zoll"
938
+ },
939
+ {
940
+ "id": 4,
941
+ "name": "Processor",
942
+ "value": "A15 Bionic"
943
+ },
944
+ {
945
+ "id": 5,
946
+ "name": "Camera",
947
+ "value": "12 MP"
948
+ },
949
+ {
950
+ "id": 6,
951
+ "name": "Operating System",
952
+ "value": "iOS 16"
953
+ },
954
+ {
955
+ "id": 7,
956
+ "name": "Battery",
957
+ "value": "3279 mAh"
958
+ },
959
+ {
960
+ "id": 8,
961
+ "name": "Weight",
962
+ "value": "172 g"
963
+ }
964
+ ]
965
+ },
966
+ "6477": {
967
+ "product": [
968
+ {
969
+ "id": 6477,
970
+ "version": 1,
971
+ "name": "Xiaomi 14 Pro 512 GB Black",
972
+ "sku": "XI-14P-001-6477",
973
+ "manufacturer": "Xiaomi",
974
+ "createdAt": "2026-04-01T12:00:00Z",
975
+ "updatedAt": "2026-04-01T12:00:00Z",
976
+ "deletedAt": null,
977
+ "available": true
978
+ }
979
+ ],
980
+ "stocks": [
981
+ {
982
+ "quantity": 32,
983
+ "maxOrderQuantity": 20
984
+ }
985
+ ],
986
+ "tax": {
987
+ "rate": 7
988
+ },
989
+ "prices": [
990
+ {
991
+ "1": 109900,
992
+ "5": 534500,
993
+ "10": 1059000
994
+ }
995
+ ],
996
+ "descriptions": [
997
+ {
998
+ "type": "long",
999
+ "content": "Xiaomi 14 Pro von Xiaomi — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,73 Zoll Display, Snapdragon 8 Gen 3, 512 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 4880 mAh · Gewicht: 229 g · Android 14 · Farbe Black. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
1000
+ }
1001
+ ],
1002
+ "categories": [
1003
+ {
1004
+ "type": "root",
1005
+ "name": "Home"
1006
+ },
1007
+ {
1008
+ "type": "main",
1009
+ "name": "Mobile Phones"
1010
+ },
1011
+ {
1012
+ "type": "subcategory",
1013
+ "name": "Xiaomi"
1014
+ },
1015
+ {
1016
+ "type": "slug",
1017
+ "name": "mobile-phones/xiaomi/product/6477-xiaomi-14-pro-512-gb-black"
1018
+ }
1019
+ ],
1020
+ "images": [
1021
+ {
1022
+ "type": "main",
1023
+ "priority": 1,
1024
+ "url": "6477-1.png"
1025
+ }
1026
+ ],
1027
+ "attributes": [
1028
+ {
1029
+ "id": 1,
1030
+ "name": "Color",
1031
+ "value": "Black"
1032
+ },
1033
+ {
1034
+ "id": 2,
1035
+ "name": "Storage",
1036
+ "value": "512 GB"
1037
+ },
1038
+ {
1039
+ "id": 3,
1040
+ "name": "Display Size",
1041
+ "value": "6,73 Zoll"
1042
+ },
1043
+ {
1044
+ "id": 4,
1045
+ "name": "Processor",
1046
+ "value": "Snapdragon 8 Gen 3"
1047
+ },
1048
+ {
1049
+ "id": 5,
1050
+ "name": "Camera",
1051
+ "value": "50 MP"
1052
+ },
1053
+ {
1054
+ "id": 6,
1055
+ "name": "Operating System",
1056
+ "value": "Android 14"
1057
+ },
1058
+ {
1059
+ "id": 7,
1060
+ "name": "Battery",
1061
+ "value": "4880 mAh"
1062
+ },
1063
+ {
1064
+ "id": 8,
1065
+ "name": "Weight",
1066
+ "value": "229 g"
1067
+ }
1068
+ ]
1069
+ },
1070
+ "6509": {
1071
+ "product": [
1072
+ {
1073
+ "id": 6509,
1074
+ "version": 1,
1075
+ "name": "Xiaomi 13T Pro 256 GB Meadow Green",
1076
+ "sku": "XI-13TP-001-6509",
1077
+ "manufacturer": "Xiaomi",
1078
+ "createdAt": "2026-04-01T12:00:00Z",
1079
+ "updatedAt": "2026-04-01T12:00:00Z",
1080
+ "deletedAt": null,
1081
+ "available": true
1082
+ }
1083
+ ],
1084
+ "stocks": [
1085
+ {
1086
+ "quantity": 56,
1087
+ "maxOrderQuantity": 30
1088
+ }
1089
+ ],
1090
+ "tax": {
1091
+ "rate": 7
1092
+ },
1093
+ "prices": [
1094
+ {
1095
+ "1": 69900,
1096
+ "3": 205800,
1097
+ "8": 540800,
1098
+ "20": 1320000
1099
+ }
1100
+ ],
1101
+ "descriptions": [
1102
+ {
1103
+ "type": "long",
1104
+ "content": "Xiaomi 13T Pro von Xiaomi — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,67 Zoll Display, Dimensity 9200+, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 5000 mAh · Gewicht: 206 g · Android 13 · Farbe Meadow Green. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
1105
+ }
1106
+ ],
1107
+ "categories": [
1108
+ {
1109
+ "type": "root",
1110
+ "name": "Home"
1111
+ },
1112
+ {
1113
+ "type": "main",
1114
+ "name": "Mobile Phones"
1115
+ },
1116
+ {
1117
+ "type": "subcategory",
1118
+ "name": "Xiaomi"
1119
+ },
1120
+ {
1121
+ "type": "slug",
1122
+ "name": "mobile-phones/xiaomi/product/6509-xiaomi-13t-pro-256-gb-meadow-green"
1123
+ }
1124
+ ],
1125
+ "images": [
1126
+ {
1127
+ "type": "main",
1128
+ "priority": 1,
1129
+ "url": "6509-1.png"
1130
+ }
1131
+ ],
1132
+ "attributes": [
1133
+ {
1134
+ "id": 1,
1135
+ "name": "Color",
1136
+ "value": "Meadow Green"
1137
+ },
1138
+ {
1139
+ "id": 2,
1140
+ "name": "Storage",
1141
+ "value": "256 GB"
1142
+ },
1143
+ {
1144
+ "id": 3,
1145
+ "name": "Display Size",
1146
+ "value": "6,67 Zoll"
1147
+ },
1148
+ {
1149
+ "id": 4,
1150
+ "name": "Processor",
1151
+ "value": "Dimensity 9200+"
1152
+ },
1153
+ {
1154
+ "id": 5,
1155
+ "name": "Camera",
1156
+ "value": "50 MP"
1157
+ },
1158
+ {
1159
+ "id": 6,
1160
+ "name": "Operating System",
1161
+ "value": "Android 13"
1162
+ },
1163
+ {
1164
+ "id": 7,
1165
+ "name": "Battery",
1166
+ "value": "5000 mAh"
1167
+ },
1168
+ {
1169
+ "id": 8,
1170
+ "name": "Weight",
1171
+ "value": "206 g"
1172
+ }
1173
+ ]
1174
+ },
1175
+ "6545": {
1176
+ "product": [
1177
+ {
1178
+ "id": 6545,
1179
+ "version": 1,
1180
+ "name": "Xiaomi Redmi Note 13 Pro 256 GB Midnight Black",
1181
+ "sku": "XI-RN13P-001-6545",
1182
+ "manufacturer": "Xiaomi",
1183
+ "createdAt": "2026-04-01T12:00:00Z",
1184
+ "updatedAt": "2026-04-01T12:00:00Z",
1185
+ "deletedAt": null,
1186
+ "available": true
1187
+ }
1188
+ ],
1189
+ "stocks": [
1190
+ {
1191
+ "quantity": 84,
1192
+ "maxOrderQuantity": 50
1193
+ }
1194
+ ],
1195
+ "tax": {
1196
+ "rate": 7
1197
+ },
1198
+ "prices": [
1199
+ {
1200
+ "1": 34900,
1201
+ "5": 169500,
1202
+ "10": 330000,
1203
+ "25": 805000,
1204
+ "50": 1575000
1205
+ }
1206
+ ],
1207
+ "descriptions": [
1208
+ {
1209
+ "type": "long",
1210
+ "content": "Xiaomi Redmi Note 13 Pro von Xiaomi — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,67 Zoll Display, Dimensity 7200, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 5100 mAh · Gewicht: 187 g · Android 13 · Farbe Midnight Black. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
1211
+ }
1212
+ ],
1213
+ "categories": [
1214
+ {
1215
+ "type": "root",
1216
+ "name": "Home"
1217
+ },
1218
+ {
1219
+ "type": "main",
1220
+ "name": "Mobile Phones"
1221
+ },
1222
+ {
1223
+ "type": "subcategory",
1224
+ "name": "Xiaomi"
1225
+ },
1226
+ {
1227
+ "type": "slug",
1228
+ "name": "mobile-phones/xiaomi/product/6545-xiaomi-redmi-note-13-pro-256-gb-midnight-black"
1229
+ }
1230
+ ],
1231
+ "images": [
1232
+ {
1233
+ "type": "main",
1234
+ "priority": 1,
1235
+ "url": "6545-1.png"
1236
+ }
1237
+ ],
1238
+ "attributes": [
1239
+ {
1240
+ "id": 1,
1241
+ "name": "Color",
1242
+ "value": "Midnight Black"
1243
+ },
1244
+ {
1245
+ "id": 2,
1246
+ "name": "Storage",
1247
+ "value": "256 GB"
1248
+ },
1249
+ {
1250
+ "id": 3,
1251
+ "name": "Display Size",
1252
+ "value": "6,67 Zoll"
1253
+ },
1254
+ {
1255
+ "id": 4,
1256
+ "name": "Processor",
1257
+ "value": "Dimensity 7200"
1258
+ },
1259
+ {
1260
+ "id": 5,
1261
+ "name": "Camera",
1262
+ "value": "200 MP"
1263
+ },
1264
+ {
1265
+ "id": 6,
1266
+ "name": "Operating System",
1267
+ "value": "Android 13"
1268
+ },
1269
+ {
1270
+ "id": 7,
1271
+ "name": "Battery",
1272
+ "value": "5100 mAh"
1273
+ },
1274
+ {
1275
+ "id": 8,
1276
+ "name": "Weight",
1277
+ "value": "187 g"
1278
+ }
1279
+ ]
1280
+ },
1281
+ "6641": {
1282
+ "product": [
1283
+ {
1284
+ "id": 6641,
1285
+ "version": 1,
1286
+ "name": "Google Pixel 9 Pro 256 GB Obsidian",
1287
+ "sku": "GP-9P-001-6641",
1288
+ "manufacturer": "Google",
1289
+ "createdAt": "2026-04-01T12:00:00Z",
1290
+ "updatedAt": "2026-04-01T12:00:00Z",
1291
+ "deletedAt": null,
1292
+ "available": true
1293
+ }
1294
+ ],
1295
+ "stocks": [
1296
+ {
1297
+ "quantity": 29,
1298
+ "maxOrderQuantity": 15
1299
+ }
1300
+ ],
1301
+ "tax": {
1302
+ "rate": 7
1303
+ },
1304
+ "prices": [
1305
+ {
1306
+ "1": 109900,
1307
+ "3": 321900,
1308
+ "8": 847200
1309
+ }
1310
+ ],
1311
+ "descriptions": [
1312
+ {
1313
+ "type": "long",
1314
+ "content": "Google Pixel 9 Pro von Google — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,3 Zoll Display, Google Tensor G4, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 4700 mAh · Gewicht: 199 g · Android 14 · Farbe Obsidian. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
1315
+ }
1316
+ ],
1317
+ "categories": [
1318
+ {
1319
+ "type": "root",
1320
+ "name": "Home"
1321
+ },
1322
+ {
1323
+ "type": "main",
1324
+ "name": "Mobile Phones"
1325
+ },
1326
+ {
1327
+ "type": "subcategory",
1328
+ "name": "Google"
1329
+ },
1330
+ {
1331
+ "type": "slug",
1332
+ "name": "mobile-phones/google/product/6641-google-pixel-9-pro-256-gb-obsidian"
1333
+ }
1334
+ ],
1335
+ "images": [
1336
+ {
1337
+ "type": "main",
1338
+ "priority": 1,
1339
+ "url": "6641-1.png"
1340
+ }
1341
+ ],
1342
+ "attributes": [
1343
+ {
1344
+ "id": 1,
1345
+ "name": "Color",
1346
+ "value": "Obsidian"
1347
+ },
1348
+ {
1349
+ "id": 2,
1350
+ "name": "Storage",
1351
+ "value": "256 GB"
1352
+ },
1353
+ {
1354
+ "id": 3,
1355
+ "name": "Display Size",
1356
+ "value": "6,3 Zoll"
1357
+ },
1358
+ {
1359
+ "id": 4,
1360
+ "name": "Processor",
1361
+ "value": "Google Tensor G4"
1362
+ },
1363
+ {
1364
+ "id": 5,
1365
+ "name": "Camera",
1366
+ "value": "50 MP"
1367
+ },
1368
+ {
1369
+ "id": 6,
1370
+ "name": "Operating System",
1371
+ "value": "Android 14"
1372
+ },
1373
+ {
1374
+ "id": 7,
1375
+ "name": "Battery",
1376
+ "value": "4700 mAh"
1377
+ },
1378
+ {
1379
+ "id": 8,
1380
+ "name": "Weight",
1381
+ "value": "199 g"
1382
+ }
1383
+ ]
1384
+ },
1385
+ "6659": {
1386
+ "product": [
1387
+ {
1388
+ "id": 6659,
1389
+ "version": 1,
1390
+ "name": "Google Pixel 9 128 GB Peony",
1391
+ "sku": "GP-9-001-6659",
1392
+ "manufacturer": "Google",
1393
+ "createdAt": "2026-04-01T12:00:00Z",
1394
+ "updatedAt": "2026-04-01T12:00:00Z",
1395
+ "deletedAt": null,
1396
+ "available": true
1397
+ }
1398
+ ],
1399
+ "stocks": [
1400
+ {
1401
+ "quantity": 42,
1402
+ "maxOrderQuantity": 20
1403
+ }
1404
+ ],
1405
+ "tax": {
1406
+ "rate": 7
1407
+ },
1408
+ "prices": [
1409
+ {
1410
+ "1": 89900,
1411
+ "2": 176000,
1412
+ "5": 435500,
1413
+ "10": 859000
1414
+ }
1415
+ ],
1416
+ "descriptions": [
1417
+ {
1418
+ "type": "long",
1419
+ "content": "Google Pixel 9 von Google — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,3 Zoll Display, Google Tensor G4, 128 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 4700 mAh · Gewicht: 198 g · Android 14 · Farbe Peony. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
1420
+ }
1421
+ ],
1422
+ "categories": [
1423
+ {
1424
+ "type": "root",
1425
+ "name": "Home"
1426
+ },
1427
+ {
1428
+ "type": "main",
1429
+ "name": "Mobile Phones"
1430
+ },
1431
+ {
1432
+ "type": "subcategory",
1433
+ "name": "Google"
1434
+ },
1435
+ {
1436
+ "type": "slug",
1437
+ "name": "mobile-phones/google/product/6659-google-pixel-9-128-gb-peony"
1438
+ }
1439
+ ],
1440
+ "images": [
1441
+ {
1442
+ "type": "main",
1443
+ "priority": 1,
1444
+ "url": "6659-1.png"
1445
+ }
1446
+ ],
1447
+ "attributes": [
1448
+ {
1449
+ "id": 1,
1450
+ "name": "Color",
1451
+ "value": "Peony"
1452
+ },
1453
+ {
1454
+ "id": 2,
1455
+ "name": "Storage",
1456
+ "value": "128 GB"
1457
+ },
1458
+ {
1459
+ "id": 3,
1460
+ "name": "Display Size",
1461
+ "value": "6,3 Zoll"
1462
+ },
1463
+ {
1464
+ "id": 4,
1465
+ "name": "Processor",
1466
+ "value": "Google Tensor G4"
1467
+ },
1468
+ {
1469
+ "id": 5,
1470
+ "name": "Camera",
1471
+ "value": "50 MP"
1472
+ },
1473
+ {
1474
+ "id": 6,
1475
+ "name": "Operating System",
1476
+ "value": "Android 14"
1477
+ },
1478
+ {
1479
+ "id": 7,
1480
+ "name": "Battery",
1481
+ "value": "4700 mAh"
1482
+ },
1483
+ {
1484
+ "id": 8,
1485
+ "name": "Weight",
1486
+ "value": "198 g"
1487
+ }
1488
+ ]
1489
+ },
1490
+ "6701": {
1491
+ "product": [
1492
+ {
1493
+ "id": 6701,
1494
+ "version": 1,
1495
+ "name": "OnePlus 12 512 GB Silky Black",
1496
+ "sku": "OP-12-001-6701",
1497
+ "manufacturer": "OnePlus",
1498
+ "createdAt": "2026-04-01T12:00:00Z",
1499
+ "updatedAt": "2026-04-01T12:00:00Z",
1500
+ "deletedAt": null,
1501
+ "available": true
1502
+ }
1503
+ ],
1504
+ "stocks": [
1505
+ {
1506
+ "quantity": 23,
1507
+ "maxOrderQuantity": 10
1508
+ }
1509
+ ],
1510
+ "tax": {
1511
+ "rate": 7
1512
+ },
1513
+ "prices": [
1514
+ {
1515
+ "1": 89900,
1516
+ "5": 440500,
1517
+ "10": 870000,
1518
+ "25": 2125000
1519
+ }
1520
+ ],
1521
+ "descriptions": [
1522
+ {
1523
+ "type": "long",
1524
+ "content": "OnePlus 12 von OnePlus — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,82 Zoll Display, Snapdragon 8 Gen 3, 512 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 5400 mAh · Gewicht: 220 g · Android 14 · Farbe Silky Black. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
1525
+ }
1526
+ ],
1527
+ "categories": [
1528
+ {
1529
+ "type": "root",
1530
+ "name": "Home"
1531
+ },
1532
+ {
1533
+ "type": "main",
1534
+ "name": "Mobile Phones"
1535
+ },
1536
+ {
1537
+ "type": "subcategory",
1538
+ "name": "OnePlus"
1539
+ },
1540
+ {
1541
+ "type": "slug",
1542
+ "name": "mobile-phones/oneplus/product/6701-oneplus-12-512-gb-silky-black"
1543
+ }
1544
+ ],
1545
+ "images": [
1546
+ {
1547
+ "type": "main",
1548
+ "priority": 1,
1549
+ "url": "6701-1.png"
1550
+ }
1551
+ ],
1552
+ "attributes": [
1553
+ {
1554
+ "id": 1,
1555
+ "name": "Color",
1556
+ "value": "Silky Black"
1557
+ },
1558
+ {
1559
+ "id": 2,
1560
+ "name": "Storage",
1561
+ "value": "512 GB"
1562
+ },
1563
+ {
1564
+ "id": 3,
1565
+ "name": "Display Size",
1566
+ "value": "6,82 Zoll"
1567
+ },
1568
+ {
1569
+ "id": 4,
1570
+ "name": "Processor",
1571
+ "value": "Snapdragon 8 Gen 3"
1572
+ },
1573
+ {
1574
+ "id": 5,
1575
+ "name": "Camera",
1576
+ "value": "50 MP"
1577
+ },
1578
+ {
1579
+ "id": 6,
1580
+ "name": "Operating System",
1581
+ "value": "Android 14"
1582
+ },
1583
+ {
1584
+ "id": 7,
1585
+ "name": "Battery",
1586
+ "value": "5400 mAh"
1587
+ },
1588
+ {
1589
+ "id": 8,
1590
+ "name": "Weight",
1591
+ "value": "220 g"
1592
+ }
1593
+ ]
1594
+ },
1595
+ "6755": {
1596
+ "product": [
1597
+ {
1598
+ "id": 6755,
1599
+ "version": 1,
1600
+ "name": "OnePlus Nord 4 256 GB Mercurial Silver",
1601
+ "sku": "OP-N4-001-6755",
1602
+ "manufacturer": "OnePlus",
1603
+ "createdAt": "2026-04-01T12:00:00Z",
1604
+ "updatedAt": "2026-04-01T12:00:00Z",
1605
+ "deletedAt": null,
1606
+ "available": true
1607
+ }
1608
+ ],
1609
+ "stocks": [
1610
+ {
1611
+ "quantity": 76,
1612
+ "maxOrderQuantity": 40
1613
+ }
1614
+ ],
1615
+ "tax": {
1616
+ "rate": 7
1617
+ },
1618
+ "prices": [
1619
+ {
1620
+ "1": 49900,
1621
+ "5": 244500,
1622
+ "15": 720000,
1623
+ "50": 2350000
1624
+ }
1625
+ ],
1626
+ "descriptions": [
1627
+ {
1628
+ "type": "long",
1629
+ "content": "OnePlus Nord 4 von OnePlus — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,74 Zoll Display, Snapdragon 7+ Gen 3, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 5500 mAh · Gewicht: 198 g · Android 14 · Farbe Mercurial Silver. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
1630
+ }
1631
+ ],
1632
+ "categories": [
1633
+ {
1634
+ "type": "root",
1635
+ "name": "Home"
1636
+ },
1637
+ {
1638
+ "type": "main",
1639
+ "name": "Mobile Phones"
1640
+ },
1641
+ {
1642
+ "type": "subcategory",
1643
+ "name": "OnePlus"
1644
+ },
1645
+ {
1646
+ "type": "slug",
1647
+ "name": "mobile-phones/oneplus/product/6755-oneplus-nord-4-256-gb-mercurial-silver"
1648
+ }
1649
+ ],
1650
+ "images": [
1651
+ {
1652
+ "type": "main",
1653
+ "priority": 1,
1654
+ "url": "6755-1.png"
1655
+ }
1656
+ ],
1657
+ "attributes": [
1658
+ {
1659
+ "id": 1,
1660
+ "name": "Color",
1661
+ "value": "Mercurial Silver"
1662
+ },
1663
+ {
1664
+ "id": 2,
1665
+ "name": "Storage",
1666
+ "value": "256 GB"
1667
+ },
1668
+ {
1669
+ "id": 3,
1670
+ "name": "Display Size",
1671
+ "value": "6,74 Zoll"
1672
+ },
1673
+ {
1674
+ "id": 4,
1675
+ "name": "Processor",
1676
+ "value": "Snapdragon 7+ Gen 3"
1677
+ },
1678
+ {
1679
+ "id": 5,
1680
+ "name": "Camera",
1681
+ "value": "50 MP"
1682
+ },
1683
+ {
1684
+ "id": 6,
1685
+ "name": "Operating System",
1686
+ "value": "Android 14"
1687
+ },
1688
+ {
1689
+ "id": 7,
1690
+ "name": "Battery",
1691
+ "value": "5500 mAh"
1692
+ },
1693
+ {
1694
+ "id": 8,
1695
+ "name": "Weight",
1696
+ "value": "198 g"
1697
+ }
1698
+ ]
1699
+ },
1700
+ "6841": {
1701
+ "product": [
1702
+ {
1703
+ "id": 6841,
1704
+ "version": 1,
1705
+ "name": "Sony Xperia 1 VI 256 GB Black",
1706
+ "sku": "SY-X1VI-001-6841",
1707
+ "manufacturer": "Sony",
1708
+ "createdAt": "2026-04-01T12:00:00Z",
1709
+ "updatedAt": "2026-04-01T12:00:00Z",
1710
+ "deletedAt": null,
1711
+ "available": true
1712
+ }
1713
+ ],
1714
+ "stocks": [
1715
+ {
1716
+ "quantity": 7,
1717
+ "maxOrderQuantity": 5
1718
+ }
1719
+ ],
1720
+ "tax": {
1721
+ "rate": 19
1722
+ },
1723
+ "prices": [
1724
+ {
1725
+ "1": 129900,
1726
+ "2": 254000,
1727
+ "5": 629500
1728
+ }
1729
+ ],
1730
+ "descriptions": [
1731
+ {
1732
+ "type": "long",
1733
+ "content": "Sony Xperia 1 VI von Sony — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,5 Zoll Display, Snapdragon 8 Gen 3, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 5000 mAh · Gewicht: 192 g · Android 14 · Farbe Black. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
1734
+ }
1735
+ ],
1736
+ "categories": [
1737
+ {
1738
+ "type": "root",
1739
+ "name": "Home"
1740
+ },
1741
+ {
1742
+ "type": "main",
1743
+ "name": "Mobile Phones"
1744
+ },
1745
+ {
1746
+ "type": "subcategory",
1747
+ "name": "Sony"
1748
+ },
1749
+ {
1750
+ "type": "slug",
1751
+ "name": "mobile-phones/sony/product/6841-sony-xperia-1-vi-256-gb-black"
1752
+ }
1753
+ ],
1754
+ "images": [
1755
+ {
1756
+ "type": "main",
1757
+ "priority": 1,
1758
+ "url": "6841-1.png"
1759
+ }
1760
+ ],
1761
+ "attributes": [
1762
+ {
1763
+ "id": 1,
1764
+ "name": "Color",
1765
+ "value": "Black"
1766
+ },
1767
+ {
1768
+ "id": 2,
1769
+ "name": "Storage",
1770
+ "value": "256 GB"
1771
+ },
1772
+ {
1773
+ "id": 3,
1774
+ "name": "Display Size",
1775
+ "value": "6,5 Zoll"
1776
+ },
1777
+ {
1778
+ "id": 4,
1779
+ "name": "Processor",
1780
+ "value": "Snapdragon 8 Gen 3"
1781
+ },
1782
+ {
1783
+ "id": 5,
1784
+ "name": "Camera",
1785
+ "value": "48 MP"
1786
+ },
1787
+ {
1788
+ "id": 6,
1789
+ "name": "Operating System",
1790
+ "value": "Android 14"
1791
+ },
1792
+ {
1793
+ "id": 7,
1794
+ "name": "Battery",
1795
+ "value": "5000 mAh"
1796
+ },
1797
+ {
1798
+ "id": 8,
1799
+ "name": "Weight",
1800
+ "value": "192 g"
1801
+ }
1802
+ ]
1803
+ },
1804
+ "6886": {
1805
+ "product": [
1806
+ {
1807
+ "id": 6886,
1808
+ "version": 1,
1809
+ "name": "Motorola Edge 50 Pro 256 GB Black Beauty",
1810
+ "sku": "MT-E50P-001-6886",
1811
+ "manufacturer": "Motorola",
1812
+ "createdAt": "2026-04-01T12:00:00Z",
1813
+ "updatedAt": "2026-04-01T12:00:00Z",
1814
+ "deletedAt": null,
1815
+ "available": true
1816
+ }
1817
+ ],
1818
+ "stocks": [
1819
+ {
1820
+ "quantity": 37,
1821
+ "maxOrderQuantity": 15
1822
+ }
1823
+ ],
1824
+ "tax": {
1825
+ "rate": 7
1826
+ },
1827
+ "prices": [
1828
+ {
1829
+ "1": 64900,
1830
+ "3": 190500,
1831
+ "10": 624000
1832
+ }
1833
+ ],
1834
+ "descriptions": [
1835
+ {
1836
+ "type": "long",
1837
+ "content": "Motorola Edge 50 Pro von Motorola — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,7 Zoll Display, Snapdragon 7 Gen 3, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 4500 mAh · Gewicht: 186 g · Android 14 · Farbe Black Beauty. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
1838
+ }
1839
+ ],
1840
+ "categories": [
1841
+ {
1842
+ "type": "root",
1843
+ "name": "Home"
1844
+ },
1845
+ {
1846
+ "type": "main",
1847
+ "name": "Mobile Phones"
1848
+ },
1849
+ {
1850
+ "type": "subcategory",
1851
+ "name": "Motorola"
1852
+ },
1853
+ {
1854
+ "type": "slug",
1855
+ "name": "mobile-phones/motorola/product/6886-motorola-edge-50-pro-256-gb-black-beauty"
1856
+ }
1857
+ ],
1858
+ "images": [
1859
+ {
1860
+ "type": "main",
1861
+ "priority": 1,
1862
+ "url": "6886-1.png"
1863
+ }
1864
+ ],
1865
+ "attributes": [
1866
+ {
1867
+ "id": 1,
1868
+ "name": "Color",
1869
+ "value": "Black Beauty"
1870
+ },
1871
+ {
1872
+ "id": 2,
1873
+ "name": "Storage",
1874
+ "value": "256 GB"
1875
+ },
1876
+ {
1877
+ "id": 3,
1878
+ "name": "Display Size",
1879
+ "value": "6,7 Zoll"
1880
+ },
1881
+ {
1882
+ "id": 4,
1883
+ "name": "Processor",
1884
+ "value": "Snapdragon 7 Gen 3"
1885
+ },
1886
+ {
1887
+ "id": 5,
1888
+ "name": "Camera",
1889
+ "value": "50 MP"
1890
+ },
1891
+ {
1892
+ "id": 6,
1893
+ "name": "Operating System",
1894
+ "value": "Android 14"
1895
+ },
1896
+ {
1897
+ "id": 7,
1898
+ "name": "Battery",
1899
+ "value": "4500 mAh"
1900
+ },
1901
+ {
1902
+ "id": 8,
1903
+ "name": "Weight",
1904
+ "value": "186 g"
1905
+ }
1906
+ ]
1907
+ },
1908
+ "6919": {
1909
+ "product": [
1910
+ {
1911
+ "id": 6919,
1912
+ "version": 1,
1913
+ "name": "Nokia G42 128 GB Purple",
1914
+ "sku": "NK-G42-001-6919",
1915
+ "manufacturer": "Nokia",
1916
+ "createdAt": "2026-04-01T12:00:00Z",
1917
+ "updatedAt": "2026-04-01T12:00:00Z",
1918
+ "deletedAt": null,
1919
+ "available": true
1920
+ }
1921
+ ],
1922
+ "stocks": [
1923
+ {
1924
+ "quantity": 88,
1925
+ "maxOrderQuantity": 50
1926
+ }
1927
+ ],
1928
+ "tax": {
1929
+ "rate": 19
1930
+ },
1931
+ "prices": [
1932
+ {
1933
+ "1": 24900,
1934
+ "5": 120500,
1935
+ "20": 472000,
1936
+ "50": 1150000
1937
+ }
1938
+ ],
1939
+ "descriptions": [
1940
+ {
1941
+ "type": "long",
1942
+ "content": "Nokia G42 von Nokia — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,56 Zoll Display, Snapdragon 480+, 128 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 5000 mAh · Gewicht: 194 g · Android 13 · Farbe Purple. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
1943
+ }
1944
+ ],
1945
+ "categories": [
1946
+ {
1947
+ "type": "root",
1948
+ "name": "Home"
1949
+ },
1950
+ {
1951
+ "type": "main",
1952
+ "name": "Mobile Phones"
1953
+ },
1954
+ {
1955
+ "type": "subcategory",
1956
+ "name": "Nokia"
1957
+ },
1958
+ {
1959
+ "type": "slug",
1960
+ "name": "mobile-phones/nokia/product/6919-nokia-g42-128-gb-purple"
1961
+ }
1962
+ ],
1963
+ "images": [
1964
+ {
1965
+ "type": "main",
1966
+ "priority": 1,
1967
+ "url": "6919-1.png"
1968
+ }
1969
+ ],
1970
+ "attributes": [
1971
+ {
1972
+ "id": 1,
1973
+ "name": "Color",
1974
+ "value": "Purple"
1975
+ },
1976
+ {
1977
+ "id": 2,
1978
+ "name": "Storage",
1979
+ "value": "128 GB"
1980
+ },
1981
+ {
1982
+ "id": 3,
1983
+ "name": "Display Size",
1984
+ "value": "6,56 Zoll"
1985
+ },
1986
+ {
1987
+ "id": 4,
1988
+ "name": "Processor",
1989
+ "value": "Snapdragon 480+"
1990
+ },
1991
+ {
1992
+ "id": 5,
1993
+ "name": "Camera",
1994
+ "value": "50 MP"
1995
+ },
1996
+ {
1997
+ "id": 6,
1998
+ "name": "Operating System",
1999
+ "value": "Android 13"
2000
+ },
2001
+ {
2002
+ "id": 7,
2003
+ "name": "Battery",
2004
+ "value": "5000 mAh"
2005
+ },
2006
+ {
2007
+ "id": 8,
2008
+ "name": "Weight",
2009
+ "value": "194 g"
2010
+ }
2011
+ ]
2012
+ },
2013
+ "6983": {
2014
+ "product": [
2015
+ {
2016
+ "id": 6983,
2017
+ "version": 1,
2018
+ "name": "OPPO Find X7 Pro 256 GB Space Black",
2019
+ "sku": "OO-FX7P-001-6983",
2020
+ "manufacturer": "OPPO",
2021
+ "createdAt": "2026-04-01T12:00:00Z",
2022
+ "updatedAt": "2026-04-01T12:00:00Z",
2023
+ "deletedAt": null,
2024
+ "available": true
2025
+ }
2026
+ ],
2027
+ "stocks": [
2028
+ {
2029
+ "quantity": 24,
2030
+ "maxOrderQuantity": 20
2031
+ }
2032
+ ],
2033
+ "tax": {
2034
+ "rate": 19
2035
+ },
2036
+ "prices": [
2037
+ {
2038
+ "1": 99900,
2039
+ "5": 489500,
2040
+ "10": 969000
2041
+ }
2042
+ ],
2043
+ "descriptions": [
2044
+ {
2045
+ "type": "long",
2046
+ "content": "OPPO Find X7 Pro von OPPO — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,82 Zoll Display, Dimensity 9300, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 5000 mAh · Gewicht: 220 g · Android 14 · Farbe Space Black. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
2047
+ }
2048
+ ],
2049
+ "categories": [
2050
+ {
2051
+ "type": "root",
2052
+ "name": "Home"
2053
+ },
2054
+ {
2055
+ "type": "main",
2056
+ "name": "Mobile Phones"
2057
+ },
2058
+ {
2059
+ "type": "subcategory",
2060
+ "name": "OPPO"
2061
+ },
2062
+ {
2063
+ "type": "slug",
2064
+ "name": "mobile-phones/oppo/product/6983-oppo-find-x7-pro-256-gb-space-black"
2065
+ }
2066
+ ],
2067
+ "images": [
2068
+ {
2069
+ "type": "main",
2070
+ "priority": 1,
2071
+ "url": "6983-1.png"
2072
+ }
2073
+ ],
2074
+ "attributes": [
2075
+ {
2076
+ "id": 1,
2077
+ "name": "Color",
2078
+ "value": "Space Black"
2079
+ },
2080
+ {
2081
+ "id": 2,
2082
+ "name": "Storage",
2083
+ "value": "256 GB"
2084
+ },
2085
+ {
2086
+ "id": 3,
2087
+ "name": "Display Size",
2088
+ "value": "6,82 Zoll"
2089
+ },
2090
+ {
2091
+ "id": 4,
2092
+ "name": "Processor",
2093
+ "value": "Dimensity 9300"
2094
+ },
2095
+ {
2096
+ "id": 5,
2097
+ "name": "Camera",
2098
+ "value": "50 MP"
2099
+ },
2100
+ {
2101
+ "id": 6,
2102
+ "name": "Operating System",
2103
+ "value": "Android 14"
2104
+ },
2105
+ {
2106
+ "id": 7,
2107
+ "name": "Battery",
2108
+ "value": "5000 mAh"
2109
+ },
2110
+ {
2111
+ "id": 8,
2112
+ "name": "Weight",
2113
+ "value": "220 g"
2114
+ }
2115
+ ]
2116
+ },
2117
+ "6984": {
2118
+ "product": [
2119
+ {
2120
+ "id": 6984,
2121
+ "version": 1,
2122
+ "name": "Dell XPS 15 Laptop 512 GB Silver",
2123
+ "sku": "DL-XPS15-001-6984",
2124
+ "manufacturer": "Dell",
2125
+ "createdAt": "2026-04-01T12:00:00Z",
2126
+ "updatedAt": "2026-04-01T12:00:00Z",
2127
+ "deletedAt": null,
2128
+ "available": true
2129
+ }
2130
+ ],
2131
+ "stocks": [
2132
+ {
2133
+ "quantity": 8,
2134
+ "maxOrderQuantity": 5
2135
+ }
2136
+ ],
2137
+ "tax": {
2138
+ "rate": 7
2139
+ },
2140
+ "prices": [
2141
+ {
2142
+ "1": 189900,
2143
+ "2": 369000,
2144
+ "5": 924500
2145
+ }
2146
+ ],
2147
+ "descriptions": [
2148
+ {
2149
+ "type": "long",
2150
+ "content": "Dell XPS 15 Laptop von Dell — das zuverlässige Notebook für den professionellen Einsatz im Unternehmen. Ausgestattet mit 15,6 Zoll Display, Intel Core i7, 16 GB RAM, 512 GB SSD Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 6-Cell 97 Wh · Gewicht: 1950 g · Windows 11 · Farbe Silver. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
2151
+ }
2152
+ ],
2153
+ "categories": [
2154
+ {
2155
+ "type": "root",
2156
+ "name": "Home"
2157
+ },
2158
+ {
2159
+ "type": "main",
2160
+ "name": "Technology"
2161
+ },
2162
+ {
2163
+ "type": "subcategory",
2164
+ "name": "Laptops"
2165
+ },
2166
+ {
2167
+ "type": "slug",
2168
+ "name": "technology/laptops/product/6984-dell-xps-15-laptop-512-gb-silver"
2169
+ }
2170
+ ],
2171
+ "images": [
2172
+ {
2173
+ "type": "main",
2174
+ "priority": 1,
2175
+ "url": "6984-1.png"
2176
+ },
2177
+ {
2178
+ "type": "main",
2179
+ "priority": 2,
2180
+ "url": "6984-2.png"
2181
+ }
2182
+ ],
2183
+ "attributes": [
2184
+ {
2185
+ "id": 1,
2186
+ "name": "Color",
2187
+ "value": "Silver"
2188
+ },
2189
+ {
2190
+ "id": 2,
2191
+ "name": "Storage",
2192
+ "value": "512 GB SSD"
2193
+ },
2194
+ {
2195
+ "id": 3,
2196
+ "name": "Display Size",
2197
+ "value": "15,6 Zoll"
2198
+ },
2199
+ {
2200
+ "id": 4,
2201
+ "name": "Processor",
2202
+ "value": "Intel Core i7"
2203
+ },
2204
+ {
2205
+ "id": 5,
2206
+ "name": "RAM",
2207
+ "value": "16 GB"
2208
+ },
2209
+ {
2210
+ "id": 6,
2211
+ "name": "Operating System",
2212
+ "value": "Windows 11"
2213
+ },
2214
+ {
2215
+ "id": 7,
2216
+ "name": "Battery",
2217
+ "value": "6-Cell 97 Wh"
2218
+ },
2219
+ {
2220
+ "id": 8,
2221
+ "name": "Weight",
2222
+ "value": "1950 g"
2223
+ }
2224
+ ]
2225
+ },
2226
+ "6985": {
2227
+ "product": [
2228
+ {
2229
+ "id": 6985,
2230
+ "version": 1,
2231
+ "name": "Google Pixel 9 Pro 256 GB Obsidian",
2232
+ "sku": "GL-PIX9P-001-6985",
2233
+ "manufacturer": "Google",
2234
+ "createdAt": "2026-04-01T12:00:00Z",
2235
+ "updatedAt": "2026-04-01T12:00:00Z",
2236
+ "deletedAt": null,
2237
+ "available": true
2238
+ }
2239
+ ],
2240
+ "stocks": [
2241
+ {
2242
+ "quantity": 15,
2243
+ "maxOrderQuantity": 8
2244
+ }
2245
+ ],
2246
+ "tax": {
2247
+ "rate": 19
2248
+ },
2249
+ "prices": [
2250
+ {
2251
+ "1": 119900,
2252
+ "2": 233000,
2253
+ "5": 574500,
2254
+ "10": 1179000
2255
+ }
2256
+ ],
2257
+ "descriptions": [
2258
+ {
2259
+ "type": "long",
2260
+ "content": "Google Pixel 9 Pro von Google — das zuverlässige Smartphone für den professionellen Einsatz im Unternehmen. Ausgestattet mit 6,34 Zoll Display, Google Tensor G4, 256 GB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 5050 mAh · Gewicht: 221 g · Android 15 · Farbe Obsidian. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
2261
+ }
2262
+ ],
2263
+ "categories": [
2264
+ {
2265
+ "type": "root",
2266
+ "name": "Home"
2267
+ },
2268
+ {
2269
+ "type": "main",
2270
+ "name": "Mobile Phones"
2271
+ },
2272
+ {
2273
+ "type": "subcategory",
2274
+ "name": "Google"
2275
+ },
2276
+ {
2277
+ "type": "slug",
2278
+ "name": "mobile-phones/google/product/6985-google-pixel-9-pro-256-gb-obsidian"
2279
+ }
2280
+ ],
2281
+ "images": [
2282
+ {
2283
+ "type": "main",
2284
+ "priority": 1,
2285
+ "url": "6985-1.png"
2286
+ },
2287
+ {
2288
+ "type": "main",
2289
+ "priority": 2,
2290
+ "url": "6985-2.png"
2291
+ }
2292
+ ],
2293
+ "attributes": [
2294
+ {
2295
+ "id": 1,
2296
+ "name": "Color",
2297
+ "value": "Obsidian"
2298
+ },
2299
+ {
2300
+ "id": 2,
2301
+ "name": "Storage",
2302
+ "value": "256 GB"
2303
+ },
2304
+ {
2305
+ "id": 3,
2306
+ "name": "Display Size",
2307
+ "value": "6,34 Zoll"
2308
+ },
2309
+ {
2310
+ "id": 4,
2311
+ "name": "Processor",
2312
+ "value": "Google Tensor G4"
2313
+ },
2314
+ {
2315
+ "id": 5,
2316
+ "name": "Camera",
2317
+ "value": "42 MP"
2318
+ },
2319
+ {
2320
+ "id": 6,
2321
+ "name": "Operating System",
2322
+ "value": "Android 15"
2323
+ },
2324
+ {
2325
+ "id": 7,
2326
+ "name": "Battery",
2327
+ "value": "5050 mAh"
2328
+ },
2329
+ {
2330
+ "id": 8,
2331
+ "name": "Weight",
2332
+ "value": "221 g"
2333
+ }
2334
+ ]
2335
+ },
2336
+ "6986": {
2337
+ "product": [
2338
+ {
2339
+ "id": 6986,
2340
+ "version": 1,
2341
+ "name": "Apple iPad Pro 12.9 1TB Space Gray",
2342
+ "sku": "AP-IPD129-001-6986",
2343
+ "manufacturer": "Apple",
2344
+ "createdAt": "2026-04-01T12:00:00Z",
2345
+ "updatedAt": "2026-04-01T12:00:00Z",
2346
+ "deletedAt": null,
2347
+ "available": true
2348
+ }
2349
+ ],
2350
+ "stocks": [
2351
+ {
2352
+ "quantity": 12,
2353
+ "maxOrderQuantity": 6
2354
+ }
2355
+ ],
2356
+ "tax": {
2357
+ "rate": 7
2358
+ },
2359
+ "prices": [
2360
+ {
2361
+ "1": 149900,
2362
+ "2": 289000,
2363
+ "5": 724500
2364
+ }
2365
+ ],
2366
+ "descriptions": [
2367
+ {
2368
+ "type": "long",
2369
+ "content": "Apple iPad Pro 12.9 1TB Space Gray von Apple — das zuverlässige Tablet für den professionellen Einsatz im Unternehmen. Ausgestattet mit 12,9 Zoll Display, Apple M4, 16 GB RAM, 1 TB Speicher meistert es den Arbeitsalltag ohne Kompromisse. Akku: 10786 mAh · Gewicht: 682 g · iPadOS 18 · Farbe Space Gray. Geeignet für Flottenausstattung und Vielbesteller: Mengenstaffeln, schnelle Lieferung und Beschaffung auf Rechnung inklusive."
2370
+ }
2371
+ ],
2372
+ "categories": [
2373
+ {
2374
+ "type": "root",
2375
+ "name": "Home"
2376
+ },
2377
+ {
2378
+ "type": "main",
2379
+ "name": "Technology"
2380
+ },
2381
+ {
2382
+ "type": "subcategory",
2383
+ "name": "Tablets"
2384
+ },
2385
+ {
2386
+ "type": "slug",
2387
+ "name": "technology/tablets/product/6986-apple-ipad-pro-12-9-1tb-space-gray"
2388
+ }
2389
+ ],
2390
+ "images": [
2391
+ {
2392
+ "type": "main",
2393
+ "priority": 1,
2394
+ "url": "6986-1.png"
2395
+ },
2396
+ {
2397
+ "type": "main",
2398
+ "priority": 2,
2399
+ "url": "6986-2.png"
2400
+ },
2401
+ {
2402
+ "type": "main",
2403
+ "priority": 3,
2404
+ "url": "6986-3.png"
2405
+ }
2406
+ ],
2407
+ "attributes": [
2408
+ {
2409
+ "id": 1,
2410
+ "name": "Color",
2411
+ "value": "Space Gray"
2412
+ },
2413
+ {
2414
+ "id": 2,
2415
+ "name": "Storage",
2416
+ "value": "1 TB"
2417
+ },
2418
+ {
2419
+ "id": 3,
2420
+ "name": "Display Size",
2421
+ "value": "12,9 Zoll"
2422
+ },
2423
+ {
2424
+ "id": 4,
2425
+ "name": "Processor",
2426
+ "value": "Apple M4"
2427
+ },
2428
+ {
2429
+ "id": 5,
2430
+ "name": "RAM",
2431
+ "value": "16 GB"
2432
+ },
2433
+ {
2434
+ "id": 6,
2435
+ "name": "Operating System",
2436
+ "value": "iPadOS 18"
2437
+ },
2438
+ {
2439
+ "id": 7,
2440
+ "name": "Battery",
2441
+ "value": "10786 mAh"
2442
+ },
2443
+ {
2444
+ "id": 8,
2445
+ "name": "Weight",
2446
+ "value": "682 g"
2447
+ }
2448
+ ]
2449
+ }
2450
+ }