@akinon/projectzero 1.32.0 → 1.33.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 (506) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/app-template/.editorconfig +7 -0
  3. package/app-template/.env.example +9 -0
  4. package/app-template/.eslintignore +1 -0
  5. package/app-template/.eslintrc.js +31 -0
  6. package/app-template/.gitattributes +18 -0
  7. package/app-template/.husky/pre-commit +4 -0
  8. package/app-template/.lintstagedrc.js +12 -0
  9. package/app-template/.prettierrc +13 -0
  10. package/app-template/.releaserc.json +49 -0
  11. package/app-template/.stylelintrc.json +37 -0
  12. package/app-template/.vscode/extensions.json +11 -0
  13. package/app-template/.vscode/launch.json +29 -0
  14. package/app-template/.yarnrc +1 -0
  15. package/app-template/CHANGELOG.md +636 -0
  16. package/app-template/LICENSE +21 -0
  17. package/app-template/Procfile +1 -0
  18. package/app-template/README.md +29 -0
  19. package/app-template/akinon.json +28 -0
  20. package/app-template/bitbucket-pipelines.yml +54 -0
  21. package/app-template/build.sh +7 -0
  22. package/app-template/docs/CHANGELOG.md +85 -0
  23. package/app-template/docs/advanced-usage.md +43 -0
  24. package/app-template/docs/basic-setup.md +59 -0
  25. package/app-template/docs/data-fetching/client/account.md +1064 -0
  26. package/app-template/docs/data-fetching/client/address.md +805 -0
  27. package/app-template/docs/data-fetching/client/basket.md +107 -0
  28. package/app-template/docs/data-fetching/client/checkout.md +904 -0
  29. package/app-template/docs/data-fetching/client/misc.md +135 -0
  30. package/app-template/docs/data-fetching/client/product.md +284 -0
  31. package/app-template/docs/data-fetching/client/user.md +56 -0
  32. package/app-template/docs/data-fetching/client/wishlist.md +111 -0
  33. package/app-template/docs/data-fetching/server/category.md +324 -0
  34. package/app-template/docs/data-fetching/server/flat-page.md +42 -0
  35. package/app-template/docs/data-fetching/server/list.md +353 -0
  36. package/app-template/docs/data-fetching/server/menu.md +363 -0
  37. package/app-template/docs/data-fetching/server/product.md +131 -0
  38. package/app-template/docs/data-fetching/server/seo.md +44 -0
  39. package/app-template/docs/data-fetching/server/special-page.md +79 -0
  40. package/app-template/docs/data-fetching/server/widget.md +218 -0
  41. package/app-template/docs/delete-account.md +25 -0
  42. package/app-template/docs/deployment.md +46 -0
  43. package/app-template/docs/dynamic-route.md +33 -0
  44. package/app-template/docs/icons.md +52 -0
  45. package/app-template/docs/localization.md +204 -0
  46. package/app-template/docs/logging.md +48 -0
  47. package/app-template/docs/plugins.md +76 -0
  48. package/app-template/docs/seo-management.md +125 -0
  49. package/app-template/docs/static-assets.md +36 -0
  50. package/app-template/docs/widgets.md +127 -0
  51. package/app-template/global.d.ts +1 -0
  52. package/app-template/jest.config.ts +34 -0
  53. package/app-template/next-env.d.ts +6 -0
  54. package/app-template/next.config.mjs +34 -0
  55. package/app-template/package.json +97 -0
  56. package/app-template/plugins.d.ts +1 -0
  57. package/app-template/postcss.config.js +6 -0
  58. package/app-template/public/404.png +0 -0
  59. package/app-template/public/500.png +0 -0
  60. package/app-template/public/apple-splash-1125-2436.jpg +0 -0
  61. package/app-template/public/apple-splash-1136-640.jpg +0 -0
  62. package/app-template/public/apple-splash-1170-2532.jpg +0 -0
  63. package/app-template/public/apple-splash-1242-2208.jpg +0 -0
  64. package/app-template/public/apple-splash-1242-2688.jpg +0 -0
  65. package/app-template/public/apple-splash-1284-2778.jpg +0 -0
  66. package/app-template/public/apple-splash-1334-750.jpg +0 -0
  67. package/app-template/public/apple-splash-1536-2048.jpg +0 -0
  68. package/app-template/public/apple-splash-1620-2160.jpg +0 -0
  69. package/app-template/public/apple-splash-1668-2224.jpg +0 -0
  70. package/app-template/public/apple-splash-1668-2388.jpg +0 -0
  71. package/app-template/public/apple-splash-1792-828.jpg +0 -0
  72. package/app-template/public/apple-splash-2048-1536.jpg +0 -0
  73. package/app-template/public/apple-splash-2048-2732.jpg +0 -0
  74. package/app-template/public/apple-splash-2160-1620.jpg +0 -0
  75. package/app-template/public/apple-splash-2208-1242.jpg +0 -0
  76. package/app-template/public/apple-splash-2224-1668.jpg +0 -0
  77. package/app-template/public/apple-splash-2388-1668.jpg +0 -0
  78. package/app-template/public/apple-splash-2436-1125.jpg +0 -0
  79. package/app-template/public/apple-splash-2532-1170.jpg +0 -0
  80. package/app-template/public/apple-splash-2688-1242.jpg +0 -0
  81. package/app-template/public/apple-splash-2732-2048.jpg +0 -0
  82. package/app-template/public/apple-splash-2778-1284.jpg +0 -0
  83. package/app-template/public/apple-splash-640-1136.jpg +0 -0
  84. package/app-template/public/apple-splash-750-1334.jpg +0 -0
  85. package/app-template/public/apple-splash-828-1792.jpg +0 -0
  86. package/app-template/public/apple-touch-icon-152x152.png +0 -0
  87. package/app-template/public/apple-touch-icon-167x167.png +0 -0
  88. package/app-template/public/apple-touch-icon-180x180.png +0 -0
  89. package/app-template/public/apple-touch-icon.png +0 -0
  90. package/app-template/public/apple.svg +47 -0
  91. package/app-template/public/cvv.jpg +0 -0
  92. package/app-template/public/facebook.svg +3 -0
  93. package/app-template/public/google.svg +12 -0
  94. package/app-template/public/icon-192x192.png +0 -0
  95. package/app-template/public/icon-256x256.png +0 -0
  96. package/app-template/public/icon-384x384.png +0 -0
  97. package/app-template/public/icon-512x512.png +0 -0
  98. package/app-template/public/icon-sprite.svg +528 -0
  99. package/app-template/public/locales/en/account.json +490 -0
  100. package/app-template/public/locales/en/auth.json +100 -0
  101. package/app-template/public/locales/en/basket.json +50 -0
  102. package/app-template/public/locales/en/category.json +26 -0
  103. package/app-template/public/locales/en/checkout.json +152 -0
  104. package/app-template/public/locales/en/common.json +65 -0
  105. package/app-template/public/locales/en/forgot_password.json +41 -0
  106. package/app-template/public/locales/en/form.json +5 -0
  107. package/app-template/public/locales/en/product.json +39 -0
  108. package/app-template/public/locales/tr/account.json +490 -0
  109. package/app-template/public/locales/tr/auth.json +100 -0
  110. package/app-template/public/locales/tr/basket.json +50 -0
  111. package/app-template/public/locales/tr/category.json +26 -0
  112. package/app-template/public/locales/tr/checkout.json +152 -0
  113. package/app-template/public/locales/tr/common.json +65 -0
  114. package/app-template/public/locales/tr/forgot_password.json +41 -0
  115. package/app-template/public/locales/tr/form.json +5 -0
  116. package/app-template/public/locales/tr/product.json +39 -0
  117. package/app-template/public/logo.svg +29 -0
  118. package/app-template/public/manifest.json +35 -0
  119. package/app-template/public/mastercard.png +0 -0
  120. package/app-template/public/mastersecure.png +0 -0
  121. package/app-template/public/mfs-client.min.js +3 -0
  122. package/app-template/public/noimage.jpg +0 -0
  123. package/app-template/public/safari-pinned-tab.svg +320 -0
  124. package/app-template/public/ssl-secure.png +0 -0
  125. package/app-template/public/vbv.png +0 -0
  126. package/app-template/public/visa.png +0 -0
  127. package/app-template/public/zepto.min.js +2 -0
  128. package/app-template/sentry.client.config.ts +16 -0
  129. package/app-template/sentry.edge.config.ts +3 -0
  130. package/app-template/sentry.properties +4 -0
  131. package/app-template/sentry.server.config.ts +3 -0
  132. package/app-template/setupTests.ts +4 -0
  133. package/app-template/src/__tests__/index.test.tsx +7 -0
  134. package/app-template/src/__tests__/tsconfig.json +7 -0
  135. package/app-template/src/app/[commerce]/[locale]/[currency]/account/address/page.tsx +74 -0
  136. package/app-template/src/app/[commerce]/[locale]/[currency]/account/change-email/page.tsx +174 -0
  137. package/app-template/src/app/[commerce]/[locale]/[currency]/account/change-password/page.tsx +206 -0
  138. package/app-template/src/app/[commerce]/[locale]/[currency]/account/contact/page.tsx +7 -0
  139. package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +210 -0
  140. package/app-template/src/app/[commerce]/[locale]/[currency]/account/email-verification/page.tsx +5 -0
  141. package/app-template/src/app/[commerce]/[locale]/[currency]/account/faq/page.tsx +23 -0
  142. package/app-template/src/app/[commerce]/[locale]/[currency]/account/favourite-products/page.tsx +32 -0
  143. package/app-template/src/app/[commerce]/[locale]/[currency]/account/layout.tsx +28 -0
  144. package/app-template/src/app/[commerce]/[locale]/[currency]/account/my-quotations/page.tsx +7 -0
  145. package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/cancellation/page.tsx +255 -0
  146. package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/layout.tsx +5 -0
  147. package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/page.tsx +309 -0
  148. package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/page.tsx +137 -0
  149. package/app-template/src/app/[commerce]/[locale]/[currency]/account/page.tsx +226 -0
  150. package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +399 -0
  151. package/app-template/src/app/[commerce]/[locale]/[currency]/address/stores/page.tsx +271 -0
  152. package/app-template/src/app/[commerce]/[locale]/[currency]/anonymous-tracking/page.tsx +33 -0
  153. package/app-template/src/app/[commerce]/[locale]/[currency]/auth/oauth-login/page.tsx +3 -0
  154. package/app-template/src/app/[commerce]/[locale]/[currency]/auth/page.tsx +76 -0
  155. package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +77 -0
  156. package/app-template/src/app/[commerce]/[locale]/[currency]/basket-b2b/page.tsx +7 -0
  157. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/loading.tsx +53 -0
  158. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +16 -0
  159. package/app-template/src/app/[commerce]/[locale]/[currency]/client-root.tsx +9 -0
  160. package/app-template/src/app/[commerce]/[locale]/[currency]/contact-us/page.tsx +11 -0
  161. package/app-template/src/app/[commerce]/[locale]/[currency]/error.tsx +20 -0
  162. package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/loading.tsx +5 -0
  163. package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/page.tsx +18 -0
  164. package/app-template/src/app/[commerce]/[locale]/[currency]/forms/[pk]/generate/page.tsx +48 -0
  165. package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/loading.tsx +5 -0
  166. package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/page.tsx +72 -0
  167. package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/loading.tsx +5 -0
  168. package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/page.tsx +23 -0
  169. package/app-template/src/app/[commerce]/[locale]/[currency]/layout.tsx +78 -0
  170. package/app-template/src/app/[commerce]/[locale]/[currency]/list/loading.tsx +53 -0
  171. package/app-template/src/app/[commerce]/[locale]/[currency]/list/page.tsx +16 -0
  172. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx +140 -0
  173. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/layout.tsx +5 -0
  174. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +284 -0
  175. package/app-template/src/app/[commerce]/[locale]/[currency]/page.tsx +50 -0
  176. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +67 -0
  177. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/page.tsx +81 -0
  178. package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/loading.tsx +53 -0
  179. package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/page.tsx +25 -0
  180. package/app-template/src/app/[commerce]/[locale]/[currency]/template.tsx +75 -0
  181. package/app-template/src/app/[commerce]/[locale]/[currency]/users/email-set-primary/[[...id]]/page.tsx +43 -0
  182. package/app-template/src/app/[commerce]/[locale]/[currency]/users/password/reset/page.tsx +79 -0
  183. package/app-template/src/app/[commerce]/[locale]/[currency]/users/registration/account-confirm-email/[[...id]]/page.tsx +43 -0
  184. package/app-template/src/app/[commerce]/[locale]/[currency]/users/reset/[[...id]]/page.tsx +110 -0
  185. package/app-template/src/app/[commerce]/[locale]/[currency]/xml-sitemap/[node]/route.ts +25 -0
  186. package/app-template/src/app/[commerce]/[locale]/[currency]/xml-sitemap/route.ts +37 -0
  187. package/app-template/src/app/api/cache/route.ts +1 -0
  188. package/app-template/src/app/api/client/[...slug]/route.ts +1 -0
  189. package/app-template/src/app/api/form/[...id]/route.ts +7 -0
  190. package/app-template/src/app/api/logout/route.ts +1 -0
  191. package/app-template/src/app/api/sentry/route.ts +9 -0
  192. package/app-template/src/app/api/web-vitals/route.ts +1 -0
  193. package/app-template/src/app/favicon.ico +0 -0
  194. package/app-template/src/assets/fonts/Jost/Jost-Black.eot +0 -0
  195. package/app-template/src/assets/fonts/Jost/Jost-Black.ttf +0 -0
  196. package/app-template/src/assets/fonts/Jost/Jost-Black.woff +0 -0
  197. package/app-template/src/assets/fonts/Jost/Jost-Black.woff2 +0 -0
  198. package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.eot +0 -0
  199. package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.ttf +0 -0
  200. package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.woff +0 -0
  201. package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.woff2 +0 -0
  202. package/app-template/src/assets/fonts/Jost/Jost-Bold.eot +0 -0
  203. package/app-template/src/assets/fonts/Jost/Jost-Bold.ttf +0 -0
  204. package/app-template/src/assets/fonts/Jost/Jost-Bold.woff +0 -0
  205. package/app-template/src/assets/fonts/Jost/Jost-Bold.woff2 +0 -0
  206. package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.eot +0 -0
  207. package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.ttf +0 -0
  208. package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.woff +0 -0
  209. package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.woff2 +0 -0
  210. package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.eot +0 -0
  211. package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.ttf +0 -0
  212. package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.woff +0 -0
  213. package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.woff2 +0 -0
  214. package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.eot +0 -0
  215. package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.ttf +0 -0
  216. package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.woff +0 -0
  217. package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.woff2 +0 -0
  218. package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.eot +0 -0
  219. package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.ttf +0 -0
  220. package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.woff +0 -0
  221. package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.woff2 +0 -0
  222. package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.eot +0 -0
  223. package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.ttf +0 -0
  224. package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.woff +0 -0
  225. package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.woff2 +0 -0
  226. package/app-template/src/assets/fonts/Jost/Jost-Italic.eot +0 -0
  227. package/app-template/src/assets/fonts/Jost/Jost-Italic.ttf +0 -0
  228. package/app-template/src/assets/fonts/Jost/Jost-Italic.woff +0 -0
  229. package/app-template/src/assets/fonts/Jost/Jost-Italic.woff2 +0 -0
  230. package/app-template/src/assets/fonts/Jost/Jost-Light.eot +0 -0
  231. package/app-template/src/assets/fonts/Jost/Jost-Light.ttf +0 -0
  232. package/app-template/src/assets/fonts/Jost/Jost-Light.woff +0 -0
  233. package/app-template/src/assets/fonts/Jost/Jost-Light.woff2 +0 -0
  234. package/app-template/src/assets/fonts/Jost/Jost-LightItalic.eot +0 -0
  235. package/app-template/src/assets/fonts/Jost/Jost-LightItalic.ttf +0 -0
  236. package/app-template/src/assets/fonts/Jost/Jost-LightItalic.woff +0 -0
  237. package/app-template/src/assets/fonts/Jost/Jost-LightItalic.woff2 +0 -0
  238. package/app-template/src/assets/fonts/Jost/Jost-Medium.eot +0 -0
  239. package/app-template/src/assets/fonts/Jost/Jost-Medium.ttf +0 -0
  240. package/app-template/src/assets/fonts/Jost/Jost-Medium.woff +0 -0
  241. package/app-template/src/assets/fonts/Jost/Jost-Medium.woff2 +0 -0
  242. package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.eot +0 -0
  243. package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.ttf +0 -0
  244. package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.woff +0 -0
  245. package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.woff2 +0 -0
  246. package/app-template/src/assets/fonts/Jost/Jost-Regular.eot +0 -0
  247. package/app-template/src/assets/fonts/Jost/Jost-Regular.ttf +0 -0
  248. package/app-template/src/assets/fonts/Jost/Jost-Regular.woff +0 -0
  249. package/app-template/src/assets/fonts/Jost/Jost-Regular.woff2 +0 -0
  250. package/app-template/src/assets/fonts/Jost/Jost-SemiBold.eot +0 -0
  251. package/app-template/src/assets/fonts/Jost/Jost-SemiBold.ttf +0 -0
  252. package/app-template/src/assets/fonts/Jost/Jost-SemiBold.woff +0 -0
  253. package/app-template/src/assets/fonts/Jost/Jost-SemiBold.woff2 +0 -0
  254. package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.eot +0 -0
  255. package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.ttf +0 -0
  256. package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.woff +0 -0
  257. package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.woff2 +0 -0
  258. package/app-template/src/assets/fonts/Jost/Jost-Thin.eot +0 -0
  259. package/app-template/src/assets/fonts/Jost/Jost-Thin.ttf +0 -0
  260. package/app-template/src/assets/fonts/Jost/Jost-Thin.woff +0 -0
  261. package/app-template/src/assets/fonts/Jost/Jost-Thin.woff2 +0 -0
  262. package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.eot +0 -0
  263. package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.ttf +0 -0
  264. package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.woff +0 -0
  265. package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.woff2 +0 -0
  266. package/app-template/src/assets/fonts/Jost/index.scss +269 -0
  267. package/app-template/src/assets/fonts/index.scss +1 -0
  268. package/app-template/src/assets/fonts/pz-icon.css +154 -0
  269. package/app-template/src/assets/fonts/pz-icon.eot +0 -0
  270. package/app-template/src/assets/fonts/pz-icon.html +456 -0
  271. package/app-template/src/assets/fonts/pz-icon.scss +300 -0
  272. package/app-template/src/assets/fonts/pz-icon.svg +144 -0
  273. package/app-template/src/assets/fonts/pz-icon.ttf +0 -0
  274. package/app-template/src/assets/fonts/pz-icon.woff +0 -0
  275. package/app-template/src/assets/fonts/pz-icon.woff2 +0 -0
  276. package/app-template/src/assets/globals.scss +65 -0
  277. package/app-template/src/assets/icons/akinon.svg +11 -0
  278. package/app-template/src/assets/icons/arrow-up.svg +11 -0
  279. package/app-template/src/assets/icons/bell.svg +1 -0
  280. package/app-template/src/assets/icons/cart.svg +13 -0
  281. package/app-template/src/assets/icons/check.svg +19 -0
  282. package/app-template/src/assets/icons/chevron-down.svg +8 -0
  283. package/app-template/src/assets/icons/chevron-end.svg +8 -0
  284. package/app-template/src/assets/icons/chevron-start.svg +8 -0
  285. package/app-template/src/assets/icons/chevron-up.svg +8 -0
  286. package/app-template/src/assets/icons/close.svg +12 -0
  287. package/app-template/src/assets/icons/cvc.svg +54 -0
  288. package/app-template/src/assets/icons/default.svg +6 -0
  289. package/app-template/src/assets/icons/directions.svg +14 -0
  290. package/app-template/src/assets/icons/eye-off.svg +10 -0
  291. package/app-template/src/assets/icons/eye-on.svg +17 -0
  292. package/app-template/src/assets/icons/facebook-login.svg +11 -0
  293. package/app-template/src/assets/icons/facebook.svg +9 -0
  294. package/app-template/src/assets/icons/giftbox.svg +22 -0
  295. package/app-template/src/assets/icons/globe.svg +12 -0
  296. package/app-template/src/assets/icons/google-login.svg +19 -0
  297. package/app-template/src/assets/icons/google.svg +9 -0
  298. package/app-template/src/assets/icons/hamburger.svg +5 -0
  299. package/app-template/src/assets/icons/heart-full.svg +20 -0
  300. package/app-template/src/assets/icons/heart-stroke.svg +22 -0
  301. package/app-template/src/assets/icons/info.svg +1 -0
  302. package/app-template/src/assets/icons/instagram.svg +14 -0
  303. package/app-template/src/assets/icons/layout-2.svg +7 -0
  304. package/app-template/src/assets/icons/layout-3.svg +4 -0
  305. package/app-template/src/assets/icons/logo.svg +24 -0
  306. package/app-template/src/assets/icons/mail.svg +1 -0
  307. package/app-template/src/assets/icons/minus.svg +4 -0
  308. package/app-template/src/assets/icons/money.svg +4 -0
  309. package/app-template/src/assets/icons/mp-otp.svg +1 -0
  310. package/app-template/src/assets/icons/pin.svg +16 -0
  311. package/app-template/src/assets/icons/pinterest.svg +12 -0
  312. package/app-template/src/assets/icons/plus.svg +5 -0
  313. package/app-template/src/assets/icons/search.svg +13 -0
  314. package/app-template/src/assets/icons/share.svg +10 -0
  315. package/app-template/src/assets/icons/spinner.svg +6 -0
  316. package/app-template/src/assets/icons/store-pin.svg +14 -0
  317. package/app-template/src/assets/icons/track-order.svg +1 -0
  318. package/app-template/src/assets/icons/twitter.svg +11 -0
  319. package/app-template/src/assets/icons/user.svg +14 -0
  320. package/app-template/src/assets/icons/whatsapp.svg +45 -0
  321. package/app-template/src/components/__tests__/Modal.test.tsx +103 -0
  322. package/app-template/src/components/__tests__/accordion.test.tsx +65 -0
  323. package/app-template/src/components/__tests__/badge.test.tsx +20 -0
  324. package/app-template/src/components/__tests__/button.test.tsx +59 -0
  325. package/app-template/src/components/__tests__/checkbox.test.tsx +57 -0
  326. package/app-template/src/components/__tests__/file-input.test.tsx +42 -0
  327. package/app-template/src/components/__tests__/icon.test.tsx +39 -0
  328. package/app-template/src/components/__tests__/input.test.tsx +69 -0
  329. package/app-template/src/components/__tests__/language-select.test.tsx +81 -0
  330. package/app-template/src/components/__tests__/link.test.tsx +65 -0
  331. package/app-template/src/components/__tests__/price.test.tsx +72 -0
  332. package/app-template/src/components/__tests__/radio.test.tsx +52 -0
  333. package/app-template/src/components/__tests__/select.test.tsx +115 -0
  334. package/app-template/src/components/__tests__/tab.test.tsx +101 -0
  335. package/app-template/src/components/accordion.tsx +64 -0
  336. package/app-template/src/components/badge.tsx +21 -0
  337. package/app-template/src/components/button.tsx +46 -0
  338. package/app-template/src/components/canonical-url.tsx +21 -0
  339. package/app-template/src/components/carousel-core.tsx +42 -0
  340. package/app-template/src/components/checkbox.tsx +28 -0
  341. package/app-template/src/components/currency-select.tsx +81 -0
  342. package/app-template/src/components/custom-loader.tsx +21 -0
  343. package/app-template/src/components/dynamic-form.tsx +17 -0
  344. package/app-template/src/components/file-input.tsx +8 -0
  345. package/app-template/src/components/generate-form-fields.tsx +349 -0
  346. package/app-template/src/components/icon.tsx +18 -0
  347. package/app-template/src/components/index.ts +41 -0
  348. package/app-template/src/components/input.tsx +110 -0
  349. package/app-template/src/components/language-select.tsx +33 -0
  350. package/app-template/src/components/link.tsx +53 -0
  351. package/app-template/src/components/loader-spinner.tsx +23 -0
  352. package/app-template/src/components/modal.tsx +66 -0
  353. package/app-template/src/components/pagination.tsx +267 -0
  354. package/app-template/src/components/password-rules-feedback.tsx +60 -0
  355. package/app-template/src/components/price.tsx +54 -0
  356. package/app-template/src/components/pwa-tags.tsx +233 -0
  357. package/app-template/src/components/radio.tsx +18 -0
  358. package/app-template/src/components/react-portal.tsx +47 -0
  359. package/app-template/src/components/select.tsx +70 -0
  360. package/app-template/src/components/shimmer.tsx +21 -0
  361. package/app-template/src/components/skeleton-article.tsx +15 -0
  362. package/app-template/src/components/skeleton-product.tsx +14 -0
  363. package/app-template/src/components/skeleton-profile.tsx +19 -0
  364. package/app-template/src/components/skeleton-wrapper.tsx +19 -0
  365. package/app-template/src/components/skeleton.tsx +37 -0
  366. package/app-template/src/components/source.tsx +12 -0
  367. package/app-template/src/components/tab-panel.tsx +10 -0
  368. package/app-template/src/components/tab.tsx +58 -0
  369. package/app-template/src/components/tabs.tsx +58 -0
  370. package/app-template/src/components/types/index.ts +89 -0
  371. package/app-template/src/hooks/index.ts +1 -0
  372. package/app-template/src/hooks/use-add-product-to-basket.ts +48 -0
  373. package/app-template/src/hooks/use-contract.tsx +58 -0
  374. package/app-template/src/hooks/use-fav-button.tsx +99 -0
  375. package/app-template/src/instrumentation.ts +1 -0
  376. package/app-template/src/middleware.ts +33 -0
  377. package/app-template/src/pages/_error.js +14 -0
  378. package/app-template/src/pages/api/auth/[...nextauth].ts +3 -0
  379. package/app-template/src/plugins.js +14 -0
  380. package/app-template/src/redux/middlewares/category.ts +42 -0
  381. package/app-template/src/redux/reducers/category.ts +67 -0
  382. package/app-template/src/redux/store.ts +47 -0
  383. package/app-template/src/routes/index.ts +46 -0
  384. package/app-template/src/settings.js +62 -0
  385. package/app-template/src/theme.js +1 -0
  386. package/app-template/src/types/index.ts +72 -0
  387. package/app-template/src/types/next-auth.d.ts +24 -0
  388. package/app-template/src/types/widgets.ts +115 -0
  389. package/app-template/src/utils/convert-facet-search-params.ts +15 -0
  390. package/app-template/src/utils/generate-jsonld.ts +23 -0
  391. package/app-template/src/utils/gtm.ts +247 -0
  392. package/app-template/src/utils/index.ts +60 -0
  393. package/app-template/src/views/account/account-menu.tsx +117 -0
  394. package/app-template/src/views/account/address-card.tsx +157 -0
  395. package/app-template/src/views/account/address-form.tsx +374 -0
  396. package/app-template/src/views/account/back-button.tsx +27 -0
  397. package/app-template/src/views/account/contact-form.tsx +283 -0
  398. package/app-template/src/views/account/content-header.tsx +52 -0
  399. package/app-template/src/views/account/faq/faq-footer.tsx +30 -0
  400. package/app-template/src/views/account/faq/faq-search.tsx +35 -0
  401. package/app-template/src/views/account/faq/faq-tabs.tsx +54 -0
  402. package/app-template/src/views/account/faq/index.ts +3 -0
  403. package/app-template/src/views/account/favorite-item.tsx +191 -0
  404. package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +65 -0
  405. package/app-template/src/views/account/index.ts +4 -0
  406. package/app-template/src/views/account/order.tsx +89 -0
  407. package/app-template/src/views/account/orders/order-cancellation-item.tsx +99 -0
  408. package/app-template/src/views/account/orders/order-detail-header.tsx +39 -0
  409. package/app-template/src/views/anonymous-tracking/index.tsx +109 -0
  410. package/app-template/src/views/anonymous-tracking/order-detail/index.tsx +318 -0
  411. package/app-template/src/views/basket/basket-item.tsx +231 -0
  412. package/app-template/src/views/basket/index.ts +2 -0
  413. package/app-template/src/views/basket/summary.tsx +220 -0
  414. package/app-template/src/views/breadcrumb.tsx +35 -0
  415. package/app-template/src/views/category/category-active-filters.tsx +98 -0
  416. package/app-template/src/views/category/category-banner.tsx +34 -0
  417. package/app-template/src/views/category/category-header.tsx +143 -0
  418. package/app-template/src/views/category/category-info.tsx +123 -0
  419. package/app-template/src/views/category/filters/index.tsx +163 -0
  420. package/app-template/src/views/category/filters/size-filter.tsx +27 -0
  421. package/app-template/src/views/category/layout.tsx +38 -0
  422. package/app-template/src/views/checkout/auth.tsx +54 -0
  423. package/app-template/src/views/checkout/index.tsx +3 -0
  424. package/app-template/src/views/checkout/layout/footer.tsx +48 -0
  425. package/app-template/src/views/checkout/layout/header.tsx +38 -0
  426. package/app-template/src/views/checkout/step-button.tsx +69 -0
  427. package/app-template/src/views/checkout/step-list.tsx +51 -0
  428. package/app-template/src/views/checkout/steps/payment/agreements.tsx +42 -0
  429. package/app-template/src/views/checkout/steps/payment/index.tsx +31 -0
  430. package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +382 -0
  431. package/app-template/src/views/checkout/steps/payment/options/credit-card/installments.tsx +100 -0
  432. package/app-template/src/views/checkout/steps/payment/options/credit-payment.tsx +14 -0
  433. package/app-template/src/views/checkout/steps/payment/options/funds-transfer.tsx +174 -0
  434. package/app-template/src/views/checkout/steps/payment/options/loyalty.tsx +19 -0
  435. package/app-template/src/views/checkout/steps/payment/options/pay-on-delivery.tsx +15 -0
  436. package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +94 -0
  437. package/app-template/src/views/checkout/steps/payment/payment-header.tsx +17 -0
  438. package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +73 -0
  439. package/app-template/src/views/checkout/steps/shipping/address-box.tsx +244 -0
  440. package/app-template/src/views/checkout/steps/shipping/addresses.tsx +189 -0
  441. package/app-template/src/views/checkout/steps/shipping/index.tsx +27 -0
  442. package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +72 -0
  443. package/app-template/src/views/checkout/summary.tsx +181 -0
  444. package/app-template/src/views/coupon-item/index.tsx +80 -0
  445. package/app-template/src/views/find-in-store/index.tsx +183 -0
  446. package/app-template/src/views/footer.tsx +21 -0
  447. package/app-template/src/views/guest-login/index.tsx +130 -0
  448. package/app-template/src/views/header/action-menu.tsx +117 -0
  449. package/app-template/src/views/header/band.tsx +32 -0
  450. package/app-template/src/views/header/index.tsx +66 -0
  451. package/app-template/src/views/header/mini-basket.tsx +267 -0
  452. package/app-template/src/views/header/mobile-hamburger-button.tsx +35 -0
  453. package/app-template/src/views/header/mobile-menu.tsx +144 -0
  454. package/app-template/src/views/header/navbar.tsx +186 -0
  455. package/app-template/src/views/header/pwa-back-button.tsx +60 -0
  456. package/app-template/src/views/header/search/index.tsx +82 -0
  457. package/app-template/src/views/header/search/results.tsx +123 -0
  458. package/app-template/src/views/header/user-menu.tsx +72 -0
  459. package/app-template/src/views/index.tsx +2 -0
  460. package/app-template/src/views/installment-options/index.tsx +127 -0
  461. package/app-template/src/views/login/index.tsx +233 -0
  462. package/app-template/src/views/otp-login/index.tsx +152 -0
  463. package/app-template/src/views/page-loader-spinner/index.tsx +9 -0
  464. package/app-template/src/views/product/accordion-wrapper.tsx +59 -0
  465. package/app-template/src/views/product/combine-product-card.tsx +82 -0
  466. package/app-template/src/views/product/index.ts +8 -0
  467. package/app-template/src/views/product/layout.tsx +40 -0
  468. package/app-template/src/views/product/misc-buttons.tsx +65 -0
  469. package/app-template/src/views/product/price-wrapper.tsx +41 -0
  470. package/app-template/src/views/product/product-group-info.tsx +63 -0
  471. package/app-template/src/views/product/product-info.tsx +273 -0
  472. package/app-template/src/views/product/slider.tsx +124 -0
  473. package/app-template/src/views/product/variant.tsx +104 -0
  474. package/app-template/src/views/product-item/index.tsx +96 -0
  475. package/app-template/src/views/product-pointer-banner-item.tsx +243 -0
  476. package/app-template/src/views/register/index.tsx +417 -0
  477. package/app-template/src/views/root-modal.tsx +21 -0
  478. package/app-template/src/views/sales-contract-modal/index.tsx +288 -0
  479. package/app-template/src/views/share/index.tsx +71 -0
  480. package/app-template/src/views/widgets/home-hero-slider-content.tsx +54 -0
  481. package/app-template/src/views/widgets/recommendation-content.tsx +86 -0
  482. package/app-template/src/widgets/footer-copyright.tsx +25 -0
  483. package/app-template/src/widgets/footer-info.tsx +78 -0
  484. package/app-template/src/widgets/footer-menu.tsx +258 -0
  485. package/app-template/src/widgets/footer-social.tsx +53 -0
  486. package/app-template/src/widgets/footer-subscription/footer-subscription-form.tsx +110 -0
  487. package/app-template/src/widgets/footer-subscription/index.tsx +30 -0
  488. package/app-template/src/widgets/header-band-text.tsx +21 -0
  489. package/app-template/src/widgets/home-discovery.tsx +191 -0
  490. package/app-template/src/widgets/home-hero-slider.tsx +36 -0
  491. package/app-template/src/widgets/home-product-recommendation.tsx +18 -0
  492. package/app-template/src/widgets/home-single-banner.tsx +87 -0
  493. package/app-template/src/widgets/home-stories-eng.tsx +112 -0
  494. package/app-template/src/widgets/index.ts +25 -0
  495. package/app-template/src/widgets/product-pointer-banners.tsx +35 -0
  496. package/app-template/src/widgets/special-page-banner.tsx +49 -0
  497. package/app-template/src/widgets/special-page-carousel.tsx +68 -0
  498. package/app-template/src/widgets/widget-order.tsx +1 -0
  499. package/app-template/tailwind.config.js +170 -0
  500. package/app-template/tsconfig.json +44 -0
  501. package/app-template/tsconfig.test.json +6 -0
  502. package/app-template/yarn.lock +11278 -0
  503. package/commands/create.ts +49 -118
  504. package/dist/commands/create.js +32 -68
  505. package/package.json +1 -1
  506. package/tsconfig.json +9 -8
@@ -0,0 +1,1064 @@
1
+ ---
2
+ title: Account
3
+ sidebar_label: Account
4
+ slug: account
5
+ custom_edit_url: null
6
+ ---
7
+
8
+ ## useGetProfileInfoQuery
9
+
10
+ This function is used to fetch user profile information.
11
+
12
+ The **useGetProfileInfoQuery** function is imported from `'@akinon/next/data/client/account'`.
13
+
14
+ ```javascript
15
+ import { useGetProfileInfoQuery } from '@akinon/next/data/client/account';
16
+ ```
17
+ This function can be used to access data like the user's **name, surname, email, phone number, birth date, birth month, birth year, gender**, and more. To use this function, assign it to a variable like this:
18
+
19
+ ```javascript
20
+ const { data: profileInfo } = useGetProfileInfoQuery();
21
+ ```
22
+
23
+ Specific data can be accessed by using the `profileInfo` variable. For example, to access the email:
24
+
25
+ ```javascript
26
+ const userEmail = profileInfo?.email ?? '';
27
+ ```
28
+
29
+ The data returned from the function:
30
+
31
+ ```json
32
+ {
33
+ "id": 7,
34
+ "first_name": "FirstName",
35
+ "last_name": "LastName",
36
+ "email_allowed": false,
37
+ "sms_allowed": false,
38
+ "call_allowed": null,
39
+ "avatar": null,
40
+ "email": "mail@akinon.com",
41
+ "phone": "05351231212",
42
+ "date_of_birth": "2023-04-28",
43
+ "gender": "female",
44
+ "genders": [
45
+ {
46
+ "value": "female",
47
+ "label": "female"
48
+ },
49
+ {
50
+ "value": "male",
51
+ "label": "male"
52
+ }
53
+ ],
54
+ "language_code": "en",
55
+ "attributes": {
56
+ "register_client_type": "default",
57
+ "logged_ip": "31.223.57.74",
58
+ "confirm": true
59
+ }
60
+ }
61
+ ```
62
+
63
+ ## useGetContactSubjectsQuery
64
+
65
+ This function is used to fetch contact form subject titles from Omnitron.
66
+
67
+ The **useGetContactSubjectsQuery** function is imported from `'@akinon/next/data/client/account'`.
68
+
69
+ ```javascript
70
+ import { useGetContactSubjectsQuery } from '@akinon/next/data/client/account';
71
+ ```
72
+
73
+ To use this function, create a variable and call the function:
74
+
75
+ ```javascript
76
+ const {
77
+ data: contactSubject,
78
+ isLoading: subjectLoading,
79
+ isSuccess: subjectSuccess
80
+ } = useGetContactSubjectsQuery();
81
+ ```
82
+
83
+ - The `isLoading` value indicates whether the subject data is being loaded. In order to use **LoaderSpinner** properly, **isLoading** data can be used.
84
+ - The `isSuccess` value becomes `true` when the subjects are successfully loaded.
85
+
86
+ The data returned from the function:
87
+
88
+ ```json
89
+ {
90
+ isLoading: false,
91
+ isSuccess: false,
92
+ data: [{
93
+ "id": 1,
94
+ "text":"Example Subject",
95
+ }]
96
+ }
97
+ ```
98
+
99
+ ## useGetOrderQuery
100
+
101
+ This function is used to fetch details about a single order.
102
+
103
+ The **useGetOrderQuery** function is imported from `'@akinon/next/data/client/account'`.
104
+
105
+ ```javascript
106
+ import { useGetOrderQuery } from '@akinon/next/data/client/account';
107
+ ```
108
+
109
+ To use this function, the order ID needs to be given to the function:
110
+
111
+ ```javascript
112
+ const { data: order } = useGetOrderQuery(id);
113
+ ```
114
+
115
+ The returned data can be used as `{order.status.label}`.
116
+
117
+ Data returned from the function:
118
+
119
+ ```json
120
+ {
121
+ "id": 213,
122
+ "status": {
123
+ "value": "400",
124
+ "label": "Onaylandı"
125
+ },
126
+ "currency": {
127
+ "value": "try",
128
+ "label": "TL"
129
+ },
130
+ "orderitem_set": [{
131
+ "id": 487,
132
+ "status": {
133
+ "value": "400",
134
+ "label": "Onaylandı"
135
+ },
136
+ "price_currency": {
137
+ "value": "try",
138
+ "label": "TL"
139
+ },
140
+ "product": {
141
+ "pk": 209,
142
+ "sku": "123456",
143
+ "base_code": "5eb0c13d-123456",
144
+ "name": "Product Name",
145
+ "image": "https://example/image.jpg",
146
+ "absolute_url": "/product-url/",
147
+ "attributes": {
148
+ ...
149
+ },
150
+ "attributes_kwargs": {
151
+ ...
152
+ }
153
+ },
154
+ "is_cancelled": false,
155
+ "is_cancellable": true,
156
+ "is_refundable": false,
157
+ "cancellationrequest_set": [],
158
+ "active_cancellation_request": null,
159
+ "shipping_company": null,
160
+ "tracking_url": null,
161
+ "is_tradable": false,
162
+ "created_date": "2022-10-10T15:10:04.828931Z",
163
+ "modified_date": "2022-10-10T15:14:10.882500Z",
164
+ "attributes": {},
165
+ "attributes_kwargs": {},
166
+ "localized_attributes": {},
167
+ "localized_attributes_kwargs": {},
168
+ "price": "400.00",
169
+ "tax_rate": "0.00",
170
+ "invoice_number": null,
171
+ "invoice_date": null,
172
+ "e_archive_url": null,
173
+ "tracking_number": null,
174
+ "retail_price": "400.00",
175
+ "image": null,
176
+ "estimated_delivery_date": null,
177
+ "shipping_tracking_url": null,
178
+ "order": 213,
179
+ "extra_product_price": 400,
180
+ "extra_product_stock": 400,
181
+ "datasource": 26
182
+ }
183
+ ],
184
+ "discountitem_set": [],
185
+ "is_cancelled": false,
186
+ "is_cancellable": true,
187
+ "is_refundable": false,
188
+ "shipping_address": {
189
+ "pk": 214,
190
+ "email": "email@akinon.com",
191
+ "phone_number": "05320000000",
192
+ "first_name": "firstName",
193
+ "last_name": "lastName",
194
+ "country": {
195
+ "pk": 1,
196
+ "is_active": true,
197
+ "name": "Türkiye",
198
+ "code": "tr",
199
+ "translations": null
200
+ },
201
+ "city": {
202
+ "pk": 1,
203
+ "is_active": true,
204
+ "name": "Adana",
205
+ "country": 1,
206
+ "translations": null,
207
+ "priority": null,
208
+ "postcode": null
209
+ },
210
+ "line": "Example Adress Line",
211
+ "title": "Adress Title",
212
+ "township": {
213
+ "pk": 1,
214
+ "is_active": true,
215
+ "name": "ALADAĞ",
216
+ "city": 1,
217
+ "postcode": null
218
+ },
219
+ "district": {
220
+ "pk": 61802,
221
+ "is_active": true,
222
+ "name": "AKÖREN MAH",
223
+ "city": 1,
224
+ "township": 1,
225
+ "postcode": null
226
+ },
227
+ "postcode": null,
228
+ "notes": null,
229
+ "company_name": "",
230
+ "tax_office": "",
231
+ "tax_no": "",
232
+ "e_bill_taxpayer": false,
233
+ "hash_data": "2f8d20d7f12b5a844c24e337cd736c93",
234
+ "address_type": "customer",
235
+ "retail_store": null,
236
+ "remote_id": null,
237
+ "identity_number": "11111111111",
238
+ "extra_field": null,
239
+ "user": {
240
+ "pk": 3,
241
+ "username": "4251d92a20e3d795d30bfd5b4fa5f6f2",
242
+ "email": "email@akinon.com",
243
+ "first_name": "firstName",
244
+ "last_name": "lastName",
245
+ "is_active": true,
246
+ "date_joined": "2022-07-01T11:46:01.970233Z",
247
+ "last_login": "2023-05-02T14:31:58.673990Z",
248
+ "email_allowed": true,
249
+ "sms_allowed": true,
250
+ "call_allowed": true,
251
+ "gender": null,
252
+ "attributes": {
253
+ "verified_phone": true,
254
+ "register_client_type": "default",
255
+ "logged_ip": "3.73.5.7",
256
+ "user_type": "architect",
257
+ "confirm": true,
258
+ "verified_user": true
259
+ },
260
+ "phone": "05320000000",
261
+ "date_of_birth": "1998-03-09",
262
+ "attributes_kwargs": {},
263
+ "user_type": "registered",
264
+ "modified_date": "2023-04-18T07:40:10.621112Z"
265
+ },
266
+ "is_corporate": false,
267
+ "primary": false
268
+ },
269
+ "billing_address": {
270
+ "pk": 214,
271
+ "email": "email@akinon.com",
272
+ "phone_number": "05320000000",
273
+ "first_name": "firstName",
274
+ "last_name": "lastName",
275
+ "country": {
276
+ "pk": 1,
277
+ "is_active": true,
278
+ "name": "Türkiye",
279
+ "code": "tr",
280
+ "translations": null
281
+ },
282
+ "city": {
283
+ "pk": 1,
284
+ "is_active": true,
285
+ "name": "Adana",
286
+ "country": 1,
287
+ "translations": null,
288
+ "priority": null,
289
+ "postcode": null
290
+ },
291
+ "line": "Example Adress Line",
292
+ "title": "Adress Title",
293
+ "township": {
294
+ "pk": 1,
295
+ "is_active": true,
296
+ "name": "ALADAĞ",
297
+ "city": 1,
298
+ "postcode": null
299
+ },
300
+ "district": {
301
+ "pk": 61802,
302
+ "is_active": true,
303
+ "name": "AKÖREN MAH",
304
+ "city": 1,
305
+ "township": 1,
306
+ "postcode": null
307
+ },
308
+ "postcode": null,
309
+ "notes": null,
310
+ "company_name": "",
311
+ "tax_office": "",
312
+ "tax_no": "",
313
+ "e_bill_taxpayer": false,
314
+ "hash_data": "2f8d20d7f12b5a844c24e337cd736c93",
315
+ "address_type": "customer",
316
+ "retail_store": null,
317
+ "remote_id": null,
318
+ "identity_number": "11111111111",
319
+ "extra_field": null,
320
+ "user": {
321
+ "pk": 3,
322
+ "username": "4251d92a20e3d795d30bfd5b4fa5f6f2",
323
+ "email": "email@akinon.com",
324
+ "first_name": "firstName",
325
+ "last_name": "lastName",
326
+ "is_active": true,
327
+ "date_joined": "2022-07-01T11:46:01.970233Z",
328
+ "last_login": "2023-05-02T14:31:58.673990Z",
329
+ "email_allowed": true,
330
+ "sms_allowed": true,
331
+ "call_allowed": true,
332
+ "gender": null,
333
+ "attributes": {
334
+ "verified_phone": true,
335
+ "register_client_type": "default",
336
+ "logged_ip": "3.73.5.7",
337
+ "user_type": "architect",
338
+ "confirm": true,
339
+ "verified_user": true
340
+ },
341
+ "phone": "05320000000",
342
+ "date_of_birth": "1998-03-09",
343
+ "attributes_kwargs": {},
344
+ "user_type": "registered",
345
+ "modified_date": "2023-04-18T07:40:10.621112Z"
346
+ },
347
+ "is_corporate": false,
348
+ "primary": false
349
+ },
350
+ "shipping_company": null,
351
+ "client_type": "default",
352
+ "payment_option": {
353
+ "pk": 1,
354
+ "name": "Kredi Kartı / Banka Kartı",
355
+ "payment_type": "credit_card",
356
+ "slug": "credit-card"
357
+ },
358
+ "amount_without_discount": "1180.00",
359
+ "is_payable": false,
360
+ "tracking_url": null,
361
+ "bank": {
362
+ "pk": 1,
363
+ "name": "Other",
364
+ "slug": "other",
365
+ "logo": "https://441fa4.cdn.akinoncloud.com/banks/2022/06/30/728390b7-22d8-4987-9cd6-3edffc50d578.jpg"
366
+ },
367
+ "created_date": "2022-10-10T15:10:04.823510Z",
368
+ "modified_date": "2022-10-10T15:10:19.212651Z",
369
+ "number": "2101925807112197",
370
+ "amount": "1180.00",
371
+ "discount_amount": "0.00",
372
+ "shipping_amount": "0.00",
373
+ "shipping_tax_rate": null,
374
+ "refund_amount": "0.00",
375
+ "discount_refund_amount": "0.00",
376
+ "shipping_refund_amount": "0.00",
377
+ "invoice_number": null,
378
+ "invoice_date": null,
379
+ "e_archive_url": null,
380
+ "tracking_number": null,
381
+ "remote_addr": "10.8.0.46",
382
+ "has_gift_box": false,
383
+ "gift_box_note": null,
384
+ "language_code": "tr-tr",
385
+ "notes": null,
386
+ "delivery_range": null,
387
+ "extra_field": {},
388
+ "user_email": "email@akinon.com",
389
+ "shipping_option_slug": "sendeo",
390
+ "payment_option_slug": "credit-card",
391
+ "bin_number": "545454",
392
+ "installment_count": 1,
393
+ "installment_interest_amount": "0.00",
394
+ "shipping_tracking_url": null,
395
+ "user": 3,
396
+ "basket": 544,
397
+ "shipping_option": 1,
398
+ "card": 1,
399
+ "installment": 1,
400
+ "segment": null,
401
+ "checkout_provider": null
402
+ }
403
+ ```
404
+
405
+ ## useGetOrdersQuery
406
+
407
+ This function is used to fetch a list of orders belonging to a user.
408
+
409
+ The **useGetOrdersQuery** function is imported from `'@akinon/next/data/client/account'`.
410
+
411
+ ```javascript
412
+ import { useGetOrdersQuery } from '@akinon/next/data/client/account';
413
+ ```
414
+
415
+ This function can be used like this:
416
+
417
+ ```javascript
418
+ const { data: orders } = useGetOrdersQuery({});
419
+ ```
420
+
421
+ The incoming data can be mapped within `orders?.results?`. The item from the mapped list can be processed in the component where it is located or can be sent to a card component as shown below and processed there.
422
+
423
+ ```javascript
424
+ {orders.results.map((item, index) => (
425
+ <Order key={index} {...item} />
426
+ ))}
427
+ ```
428
+
429
+ The returned data from the function:
430
+
431
+ ```json
432
+ {
433
+ "count": 551,
434
+ "next": "https://demo.akinon.net/users/orders/?format=json&page=2",
435
+ "previous": null,
436
+ "results": [{
437
+ "id": 2841,
438
+ "status": {
439
+ "value": "450",
440
+ "label": "Hazırlanıyor"
441
+ },
442
+ "currency": {
443
+ "value": "try",
444
+ "label": "TL"
445
+ },
446
+ "orderitem_set": [{
447
+ "id": 7336,
448
+ "status": {
449
+ "value": "450",
450
+ "label": "Hazırlanıyor"
451
+ },
452
+ "price_currency": {
453
+ "value": "try",
454
+ "label": "TL"
455
+ },
456
+ "product": {
457
+ "pk": 209,
458
+ "sku": "123456",
459
+ "base_code": "5eb0c13d-123456",
460
+ "name": "Product Name",
461
+ "image": "https://example/image.jpg",
462
+ "absolute_url": "/product-url/",
463
+ "attributes": {
464
+ ...
465
+ },
466
+ "attributes_kwargs": {
467
+ ...
468
+ }
469
+ },
470
+ "is_cancelled": false,
471
+ "is_cancellable": false,
472
+ "is_refundable": true,
473
+ "cancellationrequest_set": [],
474
+ "active_cancellation_request": null,
475
+ "shipping_company": null,
476
+ "tracking_url": null,
477
+ "is_tradable": false,
478
+ "available_easy_return_shipping_companies": [],
479
+ "created_date": "2023-04-11T06:24:47.015497Z",
480
+ "modified_date": "2023-04-11T06:40:26.649191Z",
481
+ "attributes": {},
482
+ "attributes_kwargs": {},
483
+ "localized_attributes": {},
484
+ "localized_attributes_kwargs": {},
485
+ "price": "39.99",
486
+ "tax_rate": "0.00",
487
+ "invoice_number": "x",
488
+ "invoice_date": null,
489
+ "e_archive_url": null,
490
+ "tracking_number": "-1",
491
+ "retail_price": "39.99",
492
+ "image": null,
493
+ "extra_field": {
494
+ "price_extra_field": {
495
+ "sort": 0,
496
+ "leadtime_to_ship": 3,
497
+ "delivery_time_earliest_days": 3,
498
+ "delivery_time_latest_days": 5
499
+ },
500
+ "stock_extra_field": {}
501
+ },
502
+ "estimated_delivery_date": null,
503
+ "shipping_tracking_url": null,
504
+ "order": 2841,
505
+ "parent": null,
506
+ "extra_product_price": 5985,
507
+ "extra_product_stock": 6018,
508
+ "datasource": 83
509
+ }],
510
+ "discountitem_set": [{}],
511
+ "is_cancelled": false,
512
+ "is_cancellable": false,
513
+ "is_refundable": true,
514
+ "shipping_address": {
515
+ "pk": 1370,
516
+ "email": "email@akinon.com",
517
+ "phone_number": "05320000000",
518
+ "first_name": "firstName",
519
+ "last_name": "lastName",
520
+ "country": {
521
+ "pk": 1,
522
+ "is_active": true,
523
+ "name": "Türkiye",
524
+ "code": "tr",
525
+ "translations": null
526
+ },
527
+ "city": {
528
+ "pk": 40,
529
+ "is_active": true,
530
+ "name": "İSTANBUL",
531
+ "country": 1,
532
+ "translations": null,
533
+ "priority": null,
534
+ "postcode": null
535
+ },
536
+ "line": "Example Adress Line",
537
+ "title": "Adress Title",
538
+ "township": {
539
+ "pk": 449,
540
+ "is_active": true,
541
+ "name": "ARNAVUTKÖY",
542
+ "city": 40,
543
+ "postcode": null
544
+ },
545
+ "district": {
546
+ "pk": 23739,
547
+ "is_active": true,
548
+ "name": "ADNAN MENDERES MAH",
549
+ "city": 40,
550
+ "township": 449,
551
+ "postcode": null
552
+ },
553
+ "postcode": null,
554
+ "notes": null,
555
+ "company_name": "",
556
+ "tax_office": "",
557
+ "tax_no": "",
558
+ "e_bill_taxpayer": false,
559
+ "hash_data": "680009c875031382348ea491673c7b2f",
560
+ "address_type": "customer",
561
+ "retail_store": null,
562
+ "remote_id": null,
563
+ "identity_number": "11111111111",
564
+ "extra_field": null,
565
+ "user": {
566
+ "pk": 3,
567
+ "username": "4251d92a20e3d795d30bfd5b4fa5f6f2",
568
+ "first_name": "firstName",
569
+ "last_name": "lastName",
570
+ "email": "email@akinon.com",
571
+ "is_active": true,
572
+ "date_joined": "2022-07-01T11:46:01.970233Z",
573
+ "last_login": "2023-05-02T14:31:58.673990Z",
574
+ "email_allowed": true,
575
+ "sms_allowed": true,
576
+ "call_allowed": true,
577
+ "gender": null,
578
+ "attributes": {
579
+ "verified_phone": true,
580
+ "register_client_type": "default",
581
+ "logged_ip": "3.73.5.7",
582
+ "user_type": "architect",
583
+ "confirm": true,
584
+ "verified_user": true
585
+ },
586
+ "phone": "05320000000",
587
+ "date_of_birth": "1998-03-09",
588
+ "attributes_kwargs": {},
589
+ "user_type": "registered",
590
+ "modified_date": "2023-04-18T07:40:10.621112Z"
591
+ },
592
+ "is_corporate": false,
593
+ "primary": false
594
+ },
595
+ "billing_address": {
596
+ "pk": 1370,
597
+ "email": "email@akinon.com",
598
+ "phone_number": "05320000000",
599
+ "first_name": "firstName",
600
+ "last_name": "lastName",
601
+ "country": {
602
+ "pk": 1,
603
+ "is_active": true,
604
+ "name": "Türkiye",
605
+ "code": "tr",
606
+ "translations": null
607
+ },
608
+ "city": {
609
+ "pk": 40,
610
+ "is_active": true,
611
+ "name": "İSTANBUL",
612
+ "country": 1,
613
+ "translations": null,
614
+ "priority": null,
615
+ "postcode": null
616
+ },
617
+ "line": "Example Adress Line",
618
+ "title": "Adress Title",
619
+ "township": {
620
+ "pk": 449,
621
+ "is_active": true,
622
+ "name": "ARNAVUTKÖY",
623
+ "city": 40,
624
+ "postcode": null
625
+ },
626
+ "district": {
627
+ "pk": 23739,
628
+ "is_active": true,
629
+ "name": "ADNAN MENDERES MAH",
630
+ "city": 40,
631
+ "township": 449,
632
+ "postcode": null
633
+ },
634
+ "postcode": null,
635
+ "notes": null,
636
+ "company_name": "",
637
+ "tax_office": "",
638
+ "tax_no": "",
639
+ "e_bill_taxpayer": false,
640
+ "hash_data": "680009c875031382348ea491673c7b2f",
641
+ "address_type": "customer",
642
+ "retail_store": null,
643
+ "remote_id": null,
644
+ "identity_number": "11111111111",
645
+ "extra_field": null,
646
+ "user": {
647
+ "pk": 3,
648
+ "username": "4251d92a20e3d795d30bfd5b4fa5f6f2",
649
+ "first_name": "firstName",
650
+ "last_name": "lastName",
651
+ "email": "email@akinon.com",
652
+ "is_active": true,
653
+ "date_joined": "2022-07-01T11:46:01.970233Z",
654
+ "last_login": "2023-05-02T14:31:58.673990Z",
655
+ "email_allowed": true,
656
+ "sms_allowed": true,
657
+ "call_allowed": true,
658
+ "gender": null,
659
+ "attributes": {
660
+ "verified_phone": true,
661
+ "register_client_type": "default",
662
+ "logged_ip": "3.73.5.7",
663
+ "user_type": "architect",
664
+ "confirm": true,
665
+ "verified_user": true
666
+ },
667
+ "phone": "05320000000",
668
+ "date_of_birth": "1998-03-09",
669
+ "attributes_kwargs": {},
670
+ "user_type": "registered",
671
+ "modified_date": "2023-04-18T07:40:10.621112Z"
672
+ },
673
+ "is_corporate": false,
674
+ "primary": false
675
+ },
676
+ "shipping_company": null,
677
+ "client_type": "default",
678
+ "payment_option": {
679
+ "pk": 1,
680
+ "name": "Kredi Kartı / Banka Kartı",
681
+ "payment_type": "credit_card",
682
+ "slug": "credit-card"
683
+ },
684
+ "amount_without_discount": "159.96",
685
+ "is_payable": false,
686
+ "tracking_url": null,
687
+ "bank": {
688
+ "pk": 16,
689
+ "name": "İş Bankası",
690
+ "slug": "is-bankas",
691
+ "logo": null
692
+ },
693
+ "created_date": "2023-04-11T06:24:47.012358Z",
694
+ "modified_date": "2023-04-11T06:38:19.104843Z",
695
+ "number": "2259722258911780",
696
+ "amount": "159.96",
697
+ "discount_amount": "0.00",
698
+ "shipping_amount": "0.00",
699
+ "shipping_tax_rate": null,
700
+ "refund_amount": "0.00",
701
+ "discount_refund_amount": "0.00",
702
+ "shipping_refund_amount": "0.00",
703
+ "invoice_number": "x",
704
+ "invoice_date": null,
705
+ "e_archive_url": null,
706
+ "tracking_number": "-1",
707
+ "remote_addr": "31.145.77.36",
708
+ "has_gift_box": false,
709
+ "gift_box_note": null,
710
+ "language_code": "tr-tr",
711
+ "notes": null,
712
+ "delivery_range": null,
713
+ "extra_field": {},
714
+ "user_email": "email@akinon.com",
715
+ "shipping_option_slug": "other",
716
+ "payment_option_slug": "credit-card",
717
+ "bin_number": "450803",
718
+ "installment_count": 1,
719
+ "installment_interest_amount": "0.00",
720
+ "shipping_tracking_url": null,
721
+ "user": 3,
722
+ "basket": 4169,
723
+ "shipping_option": 6,
724
+ "card": 42,
725
+ "installment": 23,
726
+ "segment": null,
727
+ "checkout_provider": null
728
+ }]
729
+ }
730
+ ```
731
+
732
+ ## useGetCancellationReasonsQuery
733
+
734
+ This function is used to fetch cancellation reasons for orders from Omnitron.
735
+
736
+ The **useGetCancellationReasonsQuery** function is imported from `'@akinon/next/data/client/account'`.
737
+
738
+ ```javascript
739
+ import { useGetCancellationReasonsQuery } from '@akinon/next/data/client/account';
740
+ ```
741
+
742
+ To get the cancellation reasons, define a variable and call the function:
743
+
744
+ ```javascript
745
+ const {
746
+ data: cancellationReasons,
747
+ isSuccess: cancellationReasonsSuccess } = useGetCancellationReasonsQuery();
748
+ ```
749
+
750
+ - `isSuccess` becomes `true` when the reasons are successfully loaded.
751
+
752
+ The returned data from the function:
753
+
754
+ ```
755
+ {
756
+ isSuccess: false,
757
+ data: [{
758
+ "id": 1,
759
+ "subject":"Example Subject",
760
+ }]
761
+ }
762
+ ```
763
+ To map the data, a variable called **cancelReasons** is defined.
764
+
765
+ ```
766
+ const cancelReasons = cancellationReasons.results
767
+ .filter((item) => item.cancellation_type === cancellationType)
768
+ .map((item) => {
769
+ return { label: item.subject, value: String(item.id) };
770
+ });
771
+ ```
772
+
773
+ **cancelReasons** now becomes a variable that provides a plain list of the cancellation reasons.
774
+
775
+ ## useGetBasketOffersQuery
776
+
777
+ This function is used to fetch a list of coupons from Omnitron.
778
+
779
+ The **useGetBasketOffersQuery** function is imported from `'@akinon/next/data/client/account'`.
780
+
781
+ ```javascript
782
+ import { useGetBasketOffersQuery } from '@akinon/next/data/client/account';
783
+ ```
784
+
785
+ To use this function, create a variable and call the function:
786
+
787
+ ```javascript
788
+ const {
789
+ data: basketOffers,
790
+ isLoading: basketOffersLoading,
791
+ isSuccess: basketOffersSuccess
792
+ } = useGetBasketOffersQuery();
793
+ ```
794
+
795
+ Data returned from the function:
796
+
797
+ ```json
798
+ {
799
+ "discounts": [{
800
+ "label": "This is a test coupon.",
801
+ "amount": 100,
802
+ "percentage": null,
803
+ "end_datetime": "2024-05-08T08:32:12.181000Z",
804
+ "start_datetime": "2023-05-08T08:00:00.138000Z",
805
+ "currency": {
806
+ "value": "aed",
807
+ "label": "AED"
808
+ },
809
+ "voucher_code": null,
810
+ "offer_type": {
811
+ "value": "coupon",
812
+ "label": "Coupon"
813
+ },
814
+ "condition": {
815
+ "type": "Amount",
816
+ "value": 10
817
+ },
818
+ "benefit_type": {
819
+ "value": "fixed",
820
+ "label": "Fixed"
821
+ }
822
+ }],
823
+ "total_discount": 100,
824
+ "all_discounts": [{
825
+ "label": "This is a test coupon.",
826
+ "amount": 100,
827
+ "percentage": null,
828
+ "end_datetime": "2024-05-08T08:32:12.181000Z",
829
+ "start_datetime": "2023-05-08T08:00:00.138000Z",
830
+ "currency": {
831
+ "value": "aed",
832
+ "label": "AED"
833
+ },
834
+ "voucher_code": null,
835
+ "offer_type": {
836
+ "value": "coupon",
837
+ "label": "Coupon"
838
+ },
839
+ "condition": {
840
+ "type": "Amount",
841
+ "value": 10
842
+ },
843
+ "benefit_type": {
844
+ "value": "fixed",
845
+ "label": "Fixed"
846
+ }
847
+ }]
848
+ }
849
+ ```
850
+
851
+ ## useGetFutureBasketOffersQuery
852
+
853
+ This function is used to fetch a list of coupons that will be used in the future from Omnitron.
854
+
855
+ The **useGetFutureBasketOffersQuery** function is imported from `'@akinon/next/data/client/account'`.
856
+
857
+ ```javascript
858
+ import { useGetFutureBasketOffersQuery } from '@akinon/next/data/client/account';
859
+ ```
860
+
861
+ To use this function, create a variable and call the function:
862
+
863
+ ```javascript
864
+ const {
865
+ data: futureBasketOffers,
866
+ isLoading: futureBasketOffersLoading,
867
+ isSuccess: futureBasketOffersSuccess
868
+ } = useGetFutureBasketOffersQuery();
869
+ ```
870
+
871
+ Data returned from the function:
872
+
873
+ ```json
874
+ {
875
+ "count": 1,
876
+ "next": null,
877
+ "previous": null,
878
+ "results": [{
879
+ "label": "This is a test coupon.",
880
+ "amount": 0,
881
+ "percentage": null,
882
+ "end_datetime": "2024-05-04T08:47:22.286000Z",
883
+ "start_datetime": "2023-05-31T08:47:10.669000Z",
884
+ "currency": {
885
+ "value": "aed",
886
+ "label": "AED"
887
+ },
888
+ "voucher_code": null,
889
+ "offer_type": {
890
+ "value": "coupon",
891
+ "label": "Coupon"
892
+ },
893
+ "condition": {
894
+ "type": "Amount",
895
+ "value": 10
896
+ },
897
+ "benefit_type": {
898
+ "value": "shipping_free",
899
+ "label": "Shipping Free"
900
+ }
901
+ }]
902
+ }
903
+ ```
904
+
905
+ ## useGetExpiredBasketOffersQuery
906
+
907
+ This function is used to fetch a list of expired coupons from Omnitron.
908
+
909
+ The **useGetExpiredBasketOffersQuery** function is imported from `'@akinon/next/data/client/account'`.
910
+
911
+ ```javascript
912
+ import { useGetExpiredBasketOffersQuery } from '@akinon/next/data/client/account';
913
+ ```
914
+
915
+ To use this function, create a variable and call the function:
916
+
917
+ ```javascript
918
+ const {
919
+ data: expiredBasketOffers,
920
+ isLoading: expiredBasketOffersLoading,
921
+ isSuccess: expiredBasketOffersSuccess
922
+ } = useGetExpiredBasketOffersQuery();
923
+ ```
924
+
925
+ Data returned from the function:
926
+ ```
927
+ {
928
+ "count": 1,
929
+ "next": null,
930
+ "previous": null,
931
+ "results": [{
932
+ "label": "This is a test coupon.",
933
+ "amount": 0,
934
+ "percentage": null,
935
+ "end_datetime": "2024-05-04T08:47:22.286000Z",
936
+ "start_datetime": "2023-05-31T08:47:10.669000Z",
937
+ "currency": {
938
+ "value": "aed",
939
+ "label": "AED"
940
+ },
941
+ "voucher_code": null,
942
+ "offer_type": {
943
+ "value": "coupon",
944
+ "label": "Coupon"
945
+ },
946
+ "condition": {
947
+ "type": "Amount",
948
+ "value": 10
949
+ },
950
+ "benefit_type": {
951
+ "value": "shipping_free",
952
+ "label": "Shipping Free"
953
+ }
954
+ }]
955
+ }
956
+ ```
957
+
958
+ ## useGetDiscountItemsQuery
959
+
960
+ This function is used to fetch a list of used coupons from Omnitron.
961
+
962
+ The **useGetDiscountItemsQuery** function is imported from `'@akinon/next/data/client/account'`.
963
+
964
+ ```javascript
965
+ import { useGetDiscountItemsQuery } from '@akinon/next/data/client/account';
966
+ ```
967
+
968
+ To use this function, create a variable and call the function:
969
+
970
+ ```javascript
971
+ const {
972
+ data: discountItems,
973
+ isLoading: discountItemsLoading,
974
+ isSuccess: discountItemsSuccess
975
+ } = useGetDiscountItemsQuery();
976
+ ```
977
+
978
+ Data returned from the function:
979
+
980
+ ```json
981
+ {
982
+ "count": 1,
983
+ "next": null,
984
+ "previous": null,
985
+ "results": [{
986
+ "label": "This is a test coupon.",
987
+ "amount": 0,
988
+ "percentage": null,
989
+ "end_datetime": "2024-05-04T08:47:22.286000Z",
990
+ "start_datetime": "2023-05-31T08:47:10.669000Z",
991
+ "currency": {
992
+ "value": "aed",
993
+ "label": "AED"
994
+ },
995
+ "voucher_code": null,
996
+ "offer_type": {
997
+ "value": "coupon",
998
+ "label": "Coupon"
999
+ },
1000
+ "condition": {
1001
+ "type": "Amount",
1002
+ "value": 10
1003
+ },
1004
+ "benefit_type": {
1005
+ "value": "shipping_free",
1006
+ "label": "Shipping Free"
1007
+ }
1008
+ }]
1009
+ }
1010
+ ```
1011
+
1012
+
1013
+ ## useGetLoyaltyBalanceQuery
1014
+
1015
+ This function is used to fetch a user's loyalty points balance.
1016
+
1017
+ The **useGetLoyaltyBalanceQuery** function is imported from `'@akinon/next/data/client/account'`.
1018
+
1019
+ ```javascript
1020
+ import { useGetLoyaltyBalanceQuery } from '@akinon/next/data/client/account';
1021
+ ```
1022
+
1023
+ To use this function, create a variable and call the function:
1024
+
1025
+ ```javascript
1026
+ const { data: loyaltyBalance, isLoading: isLoadingLoyaltyBalance } = useGetLoyaltyBalanceQuery();
1027
+ ```
1028
+
1029
+ ## useGetLoyaltyTransactionsQuery
1030
+
1031
+ This function is used to fetch a list of a user's loyalty transactions, both used and unused points. Negative points in the list represent used points.
1032
+
1033
+ The **useGetLoyaltyTransactionsQuery** function is imported from `'@akinon/next/data/client/account'`.
1034
+
1035
+ ```javascript
1036
+ import { useGetLoyaltyTransactionsQuery } from '@akinon/next/data/client/account';
1037
+ ```
1038
+
1039
+ To use this function, create a variable and call the function:
1040
+
1041
+ `const { data: loyalty, isLoading: isLoadingLoyaltyList } = useGetLoyaltyTransactionsQuery();`
1042
+
1043
+ The variable can be mapped to the location where you desire to display list. An example of how to map the data is provided below:
1044
+
1045
+ ```jsx
1046
+ {loyalty.results.map((item, index) => (
1047
+ <div key={`loyalty-${index}`}>
1048
+ <span>
1049
+ {new Date(item.transaction.created_date).toLocaleDateString(
1050
+ localeValue,
1051
+ {
1052
+ day: 'numeric',
1053
+ month: 'short',
1054
+ year: 'numeric'
1055
+ }
1056
+ )}
1057
+ </span>
1058
+ <span>
1059
+ {item.transaction.order}
1060
+ </span>
1061
+ <Price value={item.amount} />
1062
+ </div>
1063
+ ))}
1064
+ ```