@vendure/dashboard 3.2.0 → 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (364) hide show
  1. package/LICENSE.md +42 -0
  2. package/README.md +12 -12
  3. package/dist/plugin/vite-plugin-admin-api-schema.js +2 -2
  4. package/dist/plugin/vite-plugin-dashboard-metadata.js +4 -4
  5. package/dist/plugin/vite-plugin-theme.d.ts +55 -0
  6. package/dist/plugin/vite-plugin-theme.js +130 -0
  7. package/dist/plugin/vite-plugin-ui-config.js +2 -2
  8. package/dist/plugin/vite-plugin-vendure-dashboard.d.ts +2 -1
  9. package/dist/plugin/vite-plugin-vendure-dashboard.js +2 -0
  10. package/index.html +15 -15
  11. package/lingui.config.js +12 -12
  12. package/package.json +15 -5
  13. package/src/app/app-providers.tsx +30 -30
  14. package/src/app/main.tsx +97 -97
  15. package/src/app/routes/__root.tsx +24 -24
  16. package/src/app/routes/_authenticated/_administrators/administrators.graphql.ts +79 -79
  17. package/src/app/routes/_authenticated/_administrators/administrators.tsx +86 -86
  18. package/src/app/routes/_authenticated/_administrators/administrators_.$id.tsx +155 -155
  19. package/src/app/routes/_authenticated/_administrators/components/role-permissions-display.tsx +133 -133
  20. package/src/app/routes/_authenticated/_assets/assets.tsx +19 -19
  21. package/src/app/routes/_authenticated/_channels/channels.graphql.ts +93 -93
  22. package/src/app/routes/_authenticated/_channels/channels.tsx +60 -60
  23. package/src/app/routes/_authenticated/_channels/channels_.$id.tsx +248 -248
  24. package/src/app/routes/_authenticated/_collections/collections.graphql.ts +133 -133
  25. package/src/app/routes/_authenticated/_collections/collections.tsx +195 -195
  26. package/src/app/routes/_authenticated/_collections/collections_.$id.tsx +224 -224
  27. package/src/app/routes/_authenticated/_collections/components/collection-contents-preview-table.tsx +127 -127
  28. package/src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx +46 -46
  29. package/src/app/routes/_authenticated/_collections/components/collection-contents-table.tsx +82 -82
  30. package/src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx +91 -91
  31. package/src/app/routes/_authenticated/_countries/countries.graphql.ts +69 -69
  32. package/src/app/routes/_authenticated/_countries/countries.tsx +67 -67
  33. package/src/app/routes/_authenticated/_countries/countries_.$id.tsx +122 -122
  34. package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx +44 -44
  35. package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx +129 -129
  36. package/src/app/routes/_authenticated/_customer-groups/customer-groups.graphql.ts +71 -71
  37. package/src/app/routes/_authenticated/_customer-groups/customer-groups.tsx +68 -68
  38. package/src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx +111 -111
  39. package/src/app/routes/_authenticated/_customers/components/customer-address-card.tsx +155 -155
  40. package/src/app/routes/_authenticated/_customers/components/customer-address-form.tsx +344 -344
  41. package/src/app/routes/_authenticated/_customers/components/customer-group-controls.tsx +4 -4
  42. package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx +78 -78
  43. package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx +77 -77
  44. package/src/app/routes/_authenticated/_customers/components/customer-history/index.ts +3 -3
  45. package/src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts +169 -169
  46. package/src/app/routes/_authenticated/_customers/components/customer-order-table.tsx +88 -88
  47. package/src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx +33 -33
  48. package/src/app/routes/_authenticated/_customers/customers.graphql.ts +204 -204
  49. package/src/app/routes/_authenticated/_customers/customers.tsx +82 -82
  50. package/src/app/routes/_authenticated/_customers/customers_.$id.tsx +274 -274
  51. package/src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx +129 -129
  52. package/src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx +46 -46
  53. package/src/app/routes/_authenticated/_facets/components/facet-values-table.tsx +97 -97
  54. package/src/app/routes/_authenticated/_facets/facets.graphql.ts +104 -104
  55. package/src/app/routes/_authenticated/_facets/facets.tsx +97 -97
  56. package/src/app/routes/_authenticated/_facets/facets_.$id.tsx +139 -139
  57. package/src/app/routes/_authenticated/_global-settings/global-settings.graphql.ts +28 -28
  58. package/src/app/routes/_authenticated/_global-settings/global-settings.tsx +161 -161
  59. package/src/app/routes/_authenticated/_orders/components/order-address.tsx +58 -58
  60. package/src/app/routes/_authenticated/_orders/components/order-history/index.ts +3 -3
  61. package/src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx +72 -72
  62. package/src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx +96 -96
  63. package/src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts +171 -171
  64. package/src/app/routes/_authenticated/_orders/components/order-table.tsx +169 -169
  65. package/src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx +38 -38
  66. package/src/app/routes/_authenticated/_orders/components/payment-details.tsx +61 -61
  67. package/src/app/routes/_authenticated/_orders/orders.graphql.ts +325 -325
  68. package/src/app/routes/_authenticated/_orders/orders.tsx +120 -120
  69. package/src/app/routes/_authenticated/_orders/orders_.$id.tsx +133 -133
  70. package/src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx +104 -104
  71. package/src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx +100 -100
  72. package/src/app/routes/_authenticated/_payment-methods/payment-methods.graphql.ts +83 -83
  73. package/src/app/routes/_authenticated/_payment-methods/payment-methods.tsx +64 -64
  74. package/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx +183 -183
  75. package/src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx +87 -87
  76. package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +123 -123
  77. package/src/app/routes/_authenticated/_product-variants/product-variants.tsx +78 -78
  78. package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +331 -331
  79. package/src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx +228 -228
  80. package/src/app/routes/_authenticated/_products/components/create-product-variants.tsx +462 -462
  81. package/src/app/routes/_authenticated/_products/components/option-value-input.tsx +95 -95
  82. package/src/app/routes/_authenticated/_products/components/product-variants-table.tsx +87 -87
  83. package/src/app/routes/_authenticated/_products/products.graphql.ts +116 -116
  84. package/src/app/routes/_authenticated/_products/products.tsx +48 -48
  85. package/src/app/routes/_authenticated/_products/products_.$id.tsx +196 -196
  86. package/src/app/routes/_authenticated/_profile/profile.graphql.ts +23 -23
  87. package/src/app/routes/_authenticated/_profile/profile.tsx +122 -122
  88. package/src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx +107 -107
  89. package/src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx +107 -107
  90. package/src/app/routes/_authenticated/_promotions/promotions.graphql.ts +96 -96
  91. package/src/app/routes/_authenticated/_promotions/promotions.tsx +61 -61
  92. package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +235 -235
  93. package/src/app/routes/_authenticated/_roles/components/expandable-permissions.tsx +54 -54
  94. package/src/app/routes/_authenticated/_roles/components/permissions-grid.tsx +116 -116
  95. package/src/app/routes/_authenticated/_roles/roles.graphql.ts +67 -67
  96. package/src/app/routes/_authenticated/_roles/roles.tsx +96 -96
  97. package/src/app/routes/_authenticated/_roles/roles_.$id.tsx +142 -142
  98. package/src/app/routes/_authenticated/_sellers/sellers.graphql.ts +61 -61
  99. package/src/app/routes/_authenticated/_sellers/sellers.tsx +51 -51
  100. package/src/app/routes/_authenticated/_sellers/sellers_.$id.tsx +111 -111
  101. package/src/app/routes/_authenticated/_shipping-methods/components/fulfillment-handler-selector.tsx +56 -56
  102. package/src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx +101 -101
  103. package/src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx +101 -101
  104. package/src/app/routes/_authenticated/_shipping-methods/components/test-shipping-method-dialog.tsx +32 -32
  105. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.graphql.ts +83 -83
  106. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx +55 -55
  107. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +171 -171
  108. package/src/app/routes/_authenticated/_stock-locations/stock-locations.graphql.ts +62 -62
  109. package/src/app/routes/_authenticated/_stock-locations/stock-locations.tsx +48 -48
  110. package/src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx +115 -115
  111. package/src/app/routes/_authenticated/_system/components/payload-dialog.tsx +34 -34
  112. package/src/app/routes/_authenticated/_system/healthchecks.tsx +93 -93
  113. package/src/app/routes/_authenticated/_system/job-queue.graphql.ts +43 -43
  114. package/src/app/routes/_authenticated/_system/job-queue.tsx +161 -161
  115. package/src/app/routes/_authenticated/_tax-categories/tax-categories.graphql.ts +63 -63
  116. package/src/app/routes/_authenticated/_tax-categories/tax-categories.tsx +65 -65
  117. package/src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx +115 -115
  118. package/src/app/routes/_authenticated/_tax-rates/tax-rates.graphql.ts +75 -75
  119. package/src/app/routes/_authenticated/_tax-rates/tax-rates.tsx +108 -108
  120. package/src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx +148 -148
  121. package/src/app/routes/_authenticated/_zones/components/zone-countries-sheet.tsx +31 -31
  122. package/src/app/routes/_authenticated/_zones/components/zone-countries-table.tsx +79 -79
  123. package/src/app/routes/_authenticated/_zones/zones.graphql.ts +96 -96
  124. package/src/app/routes/_authenticated/_zones/zones.tsx +57 -57
  125. package/src/app/routes/_authenticated/_zones/zones_.$id.tsx +103 -103
  126. package/src/app/routes/_authenticated/index.tsx +194 -194
  127. package/src/app/routes/_authenticated.tsx +25 -25
  128. package/src/app/routes/login.tsx +48 -48
  129. package/src/app/styles.css +82 -82
  130. package/src/app/tailwindcss-animate.css +275 -275
  131. package/src/i18n/locales/de.po +1579 -1579
  132. package/src/i18n/locales/en.po +1579 -1579
  133. package/src/lib/components/data-display/boolean.tsx +23 -23
  134. package/src/lib/components/data-display/date-time.tsx +13 -13
  135. package/src/lib/components/data-display/json.tsx +5 -5
  136. package/src/lib/components/data-display/money.tsx +15 -15
  137. package/src/lib/components/data-input/affixed-input.tsx +49 -49
  138. package/src/lib/components/data-input/customer-group-input.tsx +72 -72
  139. package/src/lib/components/data-input/datetime-input.tsx +149 -149
  140. package/src/lib/components/data-input/facet-value-input.tsx +68 -68
  141. package/src/lib/components/data-input/money-input.tsx +112 -112
  142. package/src/lib/components/data-input/richt-text-input.tsx +99 -99
  143. package/src/lib/components/data-table/data-table-column-header.tsx +73 -73
  144. package/src/lib/components/data-table/data-table-faceted-filter.tsx +172 -172
  145. package/src/lib/components/data-table/data-table-filter-dialog.tsx +73 -73
  146. package/src/lib/components/data-table/data-table-pagination.tsx +87 -87
  147. package/src/lib/components/data-table/data-table-view-options.tsx +53 -53
  148. package/src/lib/components/data-table/data-table.tsx +218 -218
  149. package/src/lib/components/layout/app-layout.tsx +42 -42
  150. package/src/lib/components/layout/app-sidebar.tsx +34 -34
  151. package/src/lib/components/layout/channel-switcher.tsx +87 -87
  152. package/src/lib/components/layout/content-language-selector.tsx +41 -41
  153. package/src/lib/components/layout/generated-breadcrumbs.tsx +82 -82
  154. package/src/lib/components/layout/language-dialog.tsx +104 -104
  155. package/src/lib/components/layout/nav-main.tsx +178 -178
  156. package/src/lib/components/layout/nav-projects.tsx +81 -81
  157. package/src/lib/components/layout/nav-user.tsx +176 -176
  158. package/src/lib/components/layout/prerelease-popup.tsx +38 -38
  159. package/src/lib/components/login/login-form.tsx +173 -173
  160. package/src/lib/components/shared/alerts.tsx +20 -20
  161. package/src/lib/components/shared/animated-number.tsx +49 -49
  162. package/src/lib/components/shared/asset-gallery.tsx +433 -433
  163. package/src/lib/components/shared/asset-picker-dialog.tsx +71 -71
  164. package/src/lib/components/shared/asset-preview-dialog.tsx +48 -48
  165. package/src/lib/components/shared/asset-preview.tsx +345 -345
  166. package/src/lib/components/shared/assigned-facet-values.tsx +68 -68
  167. package/src/lib/components/shared/channel-code-label.tsx +7 -7
  168. package/src/lib/components/shared/channel-selector.tsx +51 -51
  169. package/src/lib/components/shared/configurable-operation-arg-input.tsx +51 -51
  170. package/src/lib/components/shared/configurable-operation-input.tsx +133 -133
  171. package/src/lib/components/shared/confirmation-dialog.tsx +58 -58
  172. package/src/lib/components/shared/copyable-text.tsx +31 -31
  173. package/src/lib/components/shared/country-selector.tsx +105 -105
  174. package/src/lib/components/shared/currency-selector.tsx +33 -33
  175. package/src/lib/components/shared/custom-fields-form.tsx +86 -86
  176. package/src/lib/components/shared/customer-address-form.tsx +330 -330
  177. package/src/lib/components/shared/customer-group-chip.tsx +30 -30
  178. package/src/lib/components/shared/customer-group-selector.tsx +62 -62
  179. package/src/lib/components/shared/customer-selector.tsx +107 -107
  180. package/src/lib/components/shared/detail-page-button.tsx +22 -22
  181. package/src/lib/components/shared/entity-assets.tsx +340 -340
  182. package/src/lib/components/shared/error-page.tsx +31 -31
  183. package/src/lib/components/shared/facet-value-chip.tsx +44 -44
  184. package/src/lib/components/shared/facet-value-selector.tsx +306 -306
  185. package/src/lib/components/shared/focal-point-control.tsx +64 -64
  186. package/src/lib/components/shared/form-field-wrapper.tsx +37 -37
  187. package/src/lib/components/shared/history-timeline/history-entry.tsx +112 -112
  188. package/src/lib/components/shared/history-timeline/history-note-checkbox.tsx +28 -28
  189. package/src/lib/components/shared/history-timeline/history-note-editor.tsx +60 -60
  190. package/src/lib/components/shared/history-timeline/history-note-input.tsx +39 -39
  191. package/src/lib/components/shared/history-timeline/history-timeline.tsx +56 -56
  192. package/src/lib/components/shared/icon-mark.tsx +18 -18
  193. package/src/lib/components/shared/language-selector.tsx +48 -48
  194. package/src/lib/components/shared/logo-mark.tsx +24 -24
  195. package/src/lib/components/shared/multi-select.tsx +159 -159
  196. package/src/lib/components/shared/option-value-input.tsx +94 -94
  197. package/src/lib/components/shared/paginated-list-data-table.tsx +520 -520
  198. package/src/lib/components/shared/permission-guard.tsx +20 -20
  199. package/src/lib/components/shared/role-code-label.tsx +8 -8
  200. package/src/lib/components/shared/role-selector.tsx +56 -56
  201. package/src/lib/components/shared/seller-selector.tsx +107 -107
  202. package/src/lib/components/shared/tax-category-selector.tsx +65 -65
  203. package/src/lib/components/shared/translatable-form-field.tsx +74 -74
  204. package/src/lib/components/shared/vendure-image.tsx +159 -159
  205. package/src/lib/components/shared/zone-selector.tsx +66 -66
  206. package/src/lib/components/ui/accordion.tsx +59 -59
  207. package/src/lib/components/ui/alert-dialog.tsx +128 -128
  208. package/src/lib/components/ui/alert.tsx +60 -60
  209. package/src/lib/components/ui/avatar.tsx +38 -38
  210. package/src/lib/components/ui/badge.tsx +38 -38
  211. package/src/lib/components/ui/breadcrumb.tsx +102 -102
  212. package/src/lib/components/ui/button.tsx +51 -51
  213. package/src/lib/components/ui/calendar.tsx +69 -69
  214. package/src/lib/components/ui/card.tsx +47 -47
  215. package/src/lib/components/ui/checkbox.tsx +27 -27
  216. package/src/lib/components/ui/collapsible.tsx +33 -33
  217. package/src/lib/components/ui/command.tsx +133 -133
  218. package/src/lib/components/ui/dialog.tsx +116 -116
  219. package/src/lib/components/ui/dropdown-menu.tsx +220 -220
  220. package/src/lib/components/ui/form.tsx +141 -141
  221. package/src/lib/components/ui/hover-card.tsx +36 -36
  222. package/src/lib/components/ui/input.tsx +19 -19
  223. package/src/lib/components/ui/label.tsx +21 -21
  224. package/src/lib/components/ui/pagination.tsx +127 -127
  225. package/src/lib/components/ui/popover.tsx +40 -40
  226. package/src/lib/components/ui/scroll-area.tsx +50 -50
  227. package/src/lib/components/ui/select.tsx +161 -161
  228. package/src/lib/components/ui/separator.tsx +26 -26
  229. package/src/lib/components/ui/sheet.tsx +118 -118
  230. package/src/lib/components/ui/sidebar.tsx +696 -696
  231. package/src/lib/components/ui/skeleton.tsx +13 -13
  232. package/src/lib/components/ui/sonner.tsx +27 -27
  233. package/src/lib/components/ui/switch.tsx +26 -26
  234. package/src/lib/components/ui/table.tsx +82 -82
  235. package/src/lib/components/ui/tabs.tsx +48 -48
  236. package/src/lib/components/ui/textarea.tsx +18 -18
  237. package/src/lib/components/ui/tooltip.tsx +51 -51
  238. package/src/lib/constants.ts +326 -326
  239. package/src/lib/framework/component-registry/component-registry.tsx +70 -70
  240. package/src/lib/framework/component-registry/dynamic-component.tsx +58 -58
  241. package/src/lib/framework/dashboard-widget/base-widget.tsx +97 -97
  242. package/src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx +96 -96
  243. package/src/lib/framework/dashboard-widget/latest-orders-widget/latest-orders-widget.graphql.ts +35 -35
  244. package/src/lib/framework/dashboard-widget/metrics-widget/chart.tsx +24 -24
  245. package/src/lib/framework/dashboard-widget/metrics-widget/index.tsx +82 -82
  246. package/src/lib/framework/dashboard-widget/metrics-widget/metrics-widget.graphql.ts +14 -14
  247. package/src/lib/framework/dashboard-widget/orders-summary/index.tsx +167 -167
  248. package/src/lib/framework/dashboard-widget/orders-summary/order-summary-widget.graphql.ts +14 -14
  249. package/src/lib/framework/dashboard-widget/types.ts +22 -22
  250. package/src/lib/framework/dashboard-widget/widget-extensions.tsx +19 -19
  251. package/src/lib/framework/defaults.ts +219 -219
  252. package/src/lib/framework/document-introspection/add-custom-fields.spec.ts +242 -242
  253. package/src/lib/framework/document-introspection/add-custom-fields.ts +246 -246
  254. package/src/lib/framework/document-introspection/get-document-structure.spec.ts +310 -310
  255. package/src/lib/framework/document-introspection/get-document-structure.ts +460 -460
  256. package/src/lib/framework/document-introspection/hooks.ts +10 -10
  257. package/src/lib/framework/extension-api/define-dashboard-extension.ts +66 -66
  258. package/src/lib/framework/extension-api/extension-api-types.ts +58 -58
  259. package/src/lib/framework/extension-api/use-dashboard-extensions.ts +26 -26
  260. package/src/lib/framework/form-engine/form-schema-tools.ts +98 -98
  261. package/src/lib/framework/form-engine/use-generated-form.tsx +116 -116
  262. package/src/lib/framework/layout-engine/layout-extensions.ts +30 -30
  263. package/src/lib/framework/layout-engine/location-wrapper.tsx +96 -96
  264. package/src/lib/framework/layout-engine/page-layout.tsx +272 -272
  265. package/src/lib/framework/nav-menu/nav-menu-extensions.ts +66 -66
  266. package/src/lib/framework/page/detail-page-route-loader.tsx +48 -48
  267. package/src/lib/framework/page/detail-page.tsx +131 -131
  268. package/src/lib/framework/page/list-page.tsx +166 -166
  269. package/src/lib/framework/page/page-api.ts +9 -9
  270. package/src/lib/framework/page/page-types.ts +51 -51
  271. package/src/lib/framework/page/use-detail-page.ts +217 -217
  272. package/src/lib/framework/page/use-extended-router.tsx +69 -69
  273. package/src/lib/framework/registry/global-registry.ts +46 -46
  274. package/src/lib/framework/registry/registry-types.ts +15 -15
  275. package/src/lib/graphql/api.ts +61 -61
  276. package/src/lib/graphql/fragments.tsx +54 -54
  277. package/src/lib/graphql/graphql-env.d.ts +499 -499
  278. package/src/lib/graphql/graphql.ts +15 -15
  279. package/src/lib/hooks/use-auth.tsx +11 -11
  280. package/src/lib/hooks/use-channel.ts +12 -12
  281. package/src/lib/hooks/use-custom-field-config.ts +10 -10
  282. package/src/lib/hooks/use-grouped-permissions.ts +54 -54
  283. package/src/lib/hooks/use-local-format.ts +119 -119
  284. package/src/lib/hooks/use-mobile.ts +19 -19
  285. package/src/lib/hooks/use-page.tsx +10 -10
  286. package/src/lib/hooks/use-permissions.ts +22 -22
  287. package/src/lib/hooks/use-server-config.ts +4 -4
  288. package/src/lib/hooks/use-theme.ts +10 -10
  289. package/src/lib/hooks/use-user-settings.tsx +12 -12
  290. package/src/lib/index.ts +149 -149
  291. package/src/lib/lib/trans.tsx +16 -16
  292. package/src/lib/lib/utils.ts +60 -60
  293. package/src/lib/providers/auth.tsx +152 -152
  294. package/src/lib/providers/channel-provider.tsx +121 -121
  295. package/src/lib/providers/i18n-provider.tsx +28 -28
  296. package/src/lib/providers/server-config.tsx +279 -279
  297. package/src/lib/providers/theme-provider.tsx +54 -54
  298. package/src/lib/providers/user-settings.tsx +89 -89
  299. package/src/lib/virtual.d.ts +12 -12
  300. package/vite/config-loader.ts +181 -181
  301. package/vite/constants.ts +280 -280
  302. package/vite/index.ts +1 -1
  303. package/vite/schema-generator.ts +40 -40
  304. package/vite/ui-config.ts +60 -60
  305. package/vite/vite-plugin-admin-api-schema.ts +141 -141
  306. package/vite/vite-plugin-config-loader.ts +64 -64
  307. package/vite/vite-plugin-config.ts +42 -42
  308. package/vite/vite-plugin-dashboard-metadata.ts +58 -58
  309. package/vite/vite-plugin-gql-tada.ts +62 -62
  310. package/vite/vite-plugin-theme.ts +195 -195
  311. package/vite/vite-plugin-ui-config.ts +60 -60
  312. package/vite/vite-plugin-vendure-dashboard.ts +118 -118
  313. package/dist/plugin/.vendure-dashboard-temp/dev-config.js +0 -227
  314. package/dist/plugin/.vendure-dashboard-temp/dev-config.js.map +0 -1
  315. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/api-extensions.js +0 -33
  316. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/api-extensions.js.map +0 -1
  317. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/mv.resolver.js +0 -69
  318. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/mv.resolver.js.map +0 -1
  319. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-process.js +0 -110
  320. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-process.js.map +0 -1
  321. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-seller-strategy.js +0 -134
  322. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-seller-strategy.js.map +0 -1
  323. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-payment-handler.js +0 -86
  324. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-payment-handler.js.map +0 -1
  325. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-eligibility-checker.js +0 -49
  326. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-eligibility-checker.js.map +0 -1
  327. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-line-assignment-strategy.js +0 -57
  328. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-line-assignment-strategy.js.map +0 -1
  329. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/constants.js +0 -20
  330. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/constants.js.map +0 -1
  331. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/multivendor.plugin.js +0 -151
  332. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/multivendor.plugin.js.map +0 -1
  333. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/payment/mv-connect-sdk.js +0 -47
  334. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/payment/mv-connect-sdk.js.map +0 -1
  335. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/service/mv.service.js +0 -222
  336. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/service/mv.service.js.map +0 -1
  337. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/types.js +0 -4
  338. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/types.js.map +0 -1
  339. package/dist/plugin/.vendure-dashboard-temp/package.json +0 -3
  340. package/dist/plugin/.vendure-dashboard-temp/schema.graphql +0 -6378
  341. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/api-extensions.js +0 -103
  342. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/api-extensions.js.map +0 -1
  343. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-entity.resolver.js +0 -105
  344. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-entity.resolver.js.map +0 -1
  345. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-admin.resolver.js +0 -183
  346. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-admin.resolver.js.map +0 -1
  347. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-entity.resolver.js +0 -113
  348. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-entity.resolver.js.map +0 -1
  349. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-shop.resolver.js +0 -112
  350. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-shop.resolver.js.map +0 -1
  351. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/entities/product-review.entity.js +0 -111
  352. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/entities/product-review.entity.js.map +0 -1
  353. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-admin-types.js +0 -616
  354. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-admin-types.js.map +0 -1
  355. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-shop-types.js +0 -563
  356. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-shop-types.js.map +0 -1
  357. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/reviews-plugin.js +0 -135
  358. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/reviews-plugin.js.map +0 -1
  359. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/types.js +0 -4
  360. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/types.js.map +0 -1
  361. package/dist/plugin/.vendure-dashboard-temp/tsconfig.json +0 -10
  362. package/dist/plugin/vite-plugin-set-root.d.ts +0 -4
  363. package/dist/plugin/vite-plugin-set-root.js +0 -15
  364. package/src/app/routeTree.gen.ts +0 -1372
@@ -1,1372 +0,0 @@
1
- /* eslint-disable */
2
-
3
- // @ts-nocheck
4
-
5
- // noinspection JSUnusedGlobalSymbols
6
-
7
- // This file was automatically generated by TanStack Router.
8
- // You should NOT make any changes in this file as it will be overwritten.
9
- // Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
10
-
11
- // Import Routes
12
-
13
- import { Route as rootRoute } from './routes/__root'
14
- import { Route as LoginImport } from './routes/login'
15
- import { Route as AuthenticatedImport } from './routes/_authenticated'
16
- import { Route as AuthenticatedIndexImport } from './routes/_authenticated/index'
17
- import { Route as AuthenticatedZonesZonesImport } from './routes/_authenticated/_zones/zones'
18
- import { Route as AuthenticatedTaxRatesTaxRatesImport } from './routes/_authenticated/_tax-rates/tax-rates'
19
- import { Route as AuthenticatedTaxCategoriesTaxCategoriesImport } from './routes/_authenticated/_tax-categories/tax-categories'
20
- import { Route as AuthenticatedSystemJobQueueImport } from './routes/_authenticated/_system/job-queue'
21
- import { Route as AuthenticatedSystemHealthchecksImport } from './routes/_authenticated/_system/healthchecks'
22
- import { Route as AuthenticatedStockLocationsStockLocationsImport } from './routes/_authenticated/_stock-locations/stock-locations'
23
- import { Route as AuthenticatedShippingMethodsShippingMethodsImport } from './routes/_authenticated/_shipping-methods/shipping-methods'
24
- import { Route as AuthenticatedSellersSellersImport } from './routes/_authenticated/_sellers/sellers'
25
- import { Route as AuthenticatedRolesRolesImport } from './routes/_authenticated/_roles/roles'
26
- import { Route as AuthenticatedPromotionsPromotionsImport } from './routes/_authenticated/_promotions/promotions'
27
- import { Route as AuthenticatedProfileProfileImport } from './routes/_authenticated/_profile/profile'
28
- import { Route as AuthenticatedProductsProductsImport } from './routes/_authenticated/_products/products'
29
- import { Route as AuthenticatedProductVariantsProductVariantsImport } from './routes/_authenticated/_product-variants/product-variants'
30
- import { Route as AuthenticatedPaymentMethodsPaymentMethodsImport } from './routes/_authenticated/_payment-methods/payment-methods'
31
- import { Route as AuthenticatedOrdersOrdersImport } from './routes/_authenticated/_orders/orders'
32
- import { Route as AuthenticatedGlobalSettingsGlobalSettingsImport } from './routes/_authenticated/_global-settings/global-settings'
33
- import { Route as AuthenticatedFacetsFacetsImport } from './routes/_authenticated/_facets/facets'
34
- import { Route as AuthenticatedCustomersCustomersImport } from './routes/_authenticated/_customers/customers'
35
- import { Route as AuthenticatedCustomerGroupsCustomerGroupsImport } from './routes/_authenticated/_customer-groups/customer-groups'
36
- import { Route as AuthenticatedCountriesCountriesImport } from './routes/_authenticated/_countries/countries'
37
- import { Route as AuthenticatedCollectionsCollectionsImport } from './routes/_authenticated/_collections/collections'
38
- import { Route as AuthenticatedChannelsChannelsImport } from './routes/_authenticated/_channels/channels'
39
- import { Route as AuthenticatedAssetsAssetsImport } from './routes/_authenticated/_assets/assets'
40
- import { Route as AuthenticatedAdministratorsAdministratorsImport } from './routes/_authenticated/_administrators/administrators'
41
- import { Route as AuthenticatedZonesZonesIdImport } from './routes/_authenticated/_zones/zones_.$id'
42
- import { Route as AuthenticatedTaxRatesTaxRatesIdImport } from './routes/_authenticated/_tax-rates/tax-rates_.$id'
43
- import { Route as AuthenticatedTaxCategoriesTaxCategoriesIdImport } from './routes/_authenticated/_tax-categories/tax-categories_.$id'
44
- import { Route as AuthenticatedStockLocationsStockLocationsIdImport } from './routes/_authenticated/_stock-locations/stock-locations_.$id'
45
- import { Route as AuthenticatedShippingMethodsShippingMethodsIdImport } from './routes/_authenticated/_shipping-methods/shipping-methods_.$id'
46
- import { Route as AuthenticatedSellersSellersIdImport } from './routes/_authenticated/_sellers/sellers_.$id'
47
- import { Route as AuthenticatedRolesRolesIdImport } from './routes/_authenticated/_roles/roles_.$id'
48
- import { Route as AuthenticatedPromotionsPromotionsIdImport } from './routes/_authenticated/_promotions/promotions_.$id'
49
- import { Route as AuthenticatedProductsProductsIdImport } from './routes/_authenticated/_products/products_.$id'
50
- import { Route as AuthenticatedProductVariantsProductVariantsIdImport } from './routes/_authenticated/_product-variants/product-variants_.$id'
51
- import { Route as AuthenticatedPaymentMethodsPaymentMethodsIdImport } from './routes/_authenticated/_payment-methods/payment-methods_.$id'
52
- import { Route as AuthenticatedOrdersOrdersIdImport } from './routes/_authenticated/_orders/orders_.$id'
53
- import { Route as AuthenticatedFacetsFacetsIdImport } from './routes/_authenticated/_facets/facets_.$id'
54
- import { Route as AuthenticatedCustomersCustomersIdImport } from './routes/_authenticated/_customers/customers_.$id'
55
- import { Route as AuthenticatedCustomerGroupsCustomerGroupsIdImport } from './routes/_authenticated/_customer-groups/customer-groups_.$id'
56
- import { Route as AuthenticatedCountriesCountriesIdImport } from './routes/_authenticated/_countries/countries_.$id'
57
- import { Route as AuthenticatedCollectionsCollectionsIdImport } from './routes/_authenticated/_collections/collections_.$id'
58
- import { Route as AuthenticatedChannelsChannelsIdImport } from './routes/_authenticated/_channels/channels_.$id'
59
- import { Route as AuthenticatedAdministratorsAdministratorsIdImport } from './routes/_authenticated/_administrators/administrators_.$id'
60
-
61
- // Create/Update Routes
62
-
63
- const LoginRoute = LoginImport.update({
64
- id: '/login',
65
- path: '/login',
66
- getParentRoute: () => rootRoute,
67
- } as any)
68
-
69
- const AuthenticatedRoute = AuthenticatedImport.update({
70
- id: '/_authenticated',
71
- getParentRoute: () => rootRoute,
72
- } as any)
73
-
74
- const AuthenticatedIndexRoute = AuthenticatedIndexImport.update({
75
- id: '/',
76
- path: '/',
77
- getParentRoute: () => AuthenticatedRoute,
78
- } as any)
79
-
80
- const AuthenticatedZonesZonesRoute = AuthenticatedZonesZonesImport.update({
81
- id: '/_zones/zones',
82
- path: '/zones',
83
- getParentRoute: () => AuthenticatedRoute,
84
- } as any)
85
-
86
- const AuthenticatedTaxRatesTaxRatesRoute =
87
- AuthenticatedTaxRatesTaxRatesImport.update({
88
- id: '/_tax-rates/tax-rates',
89
- path: '/tax-rates',
90
- getParentRoute: () => AuthenticatedRoute,
91
- } as any)
92
-
93
- const AuthenticatedTaxCategoriesTaxCategoriesRoute =
94
- AuthenticatedTaxCategoriesTaxCategoriesImport.update({
95
- id: '/_tax-categories/tax-categories',
96
- path: '/tax-categories',
97
- getParentRoute: () => AuthenticatedRoute,
98
- } as any)
99
-
100
- const AuthenticatedSystemJobQueueRoute =
101
- AuthenticatedSystemJobQueueImport.update({
102
- id: '/_system/job-queue',
103
- path: '/job-queue',
104
- getParentRoute: () => AuthenticatedRoute,
105
- } as any)
106
-
107
- const AuthenticatedSystemHealthchecksRoute =
108
- AuthenticatedSystemHealthchecksImport.update({
109
- id: '/_system/healthchecks',
110
- path: '/healthchecks',
111
- getParentRoute: () => AuthenticatedRoute,
112
- } as any)
113
-
114
- const AuthenticatedStockLocationsStockLocationsRoute =
115
- AuthenticatedStockLocationsStockLocationsImport.update({
116
- id: '/_stock-locations/stock-locations',
117
- path: '/stock-locations',
118
- getParentRoute: () => AuthenticatedRoute,
119
- } as any)
120
-
121
- const AuthenticatedShippingMethodsShippingMethodsRoute =
122
- AuthenticatedShippingMethodsShippingMethodsImport.update({
123
- id: '/_shipping-methods/shipping-methods',
124
- path: '/shipping-methods',
125
- getParentRoute: () => AuthenticatedRoute,
126
- } as any)
127
-
128
- const AuthenticatedSellersSellersRoute =
129
- AuthenticatedSellersSellersImport.update({
130
- id: '/_sellers/sellers',
131
- path: '/sellers',
132
- getParentRoute: () => AuthenticatedRoute,
133
- } as any)
134
-
135
- const AuthenticatedRolesRolesRoute = AuthenticatedRolesRolesImport.update({
136
- id: '/_roles/roles',
137
- path: '/roles',
138
- getParentRoute: () => AuthenticatedRoute,
139
- } as any)
140
-
141
- const AuthenticatedPromotionsPromotionsRoute =
142
- AuthenticatedPromotionsPromotionsImport.update({
143
- id: '/_promotions/promotions',
144
- path: '/promotions',
145
- getParentRoute: () => AuthenticatedRoute,
146
- } as any)
147
-
148
- const AuthenticatedProfileProfileRoute =
149
- AuthenticatedProfileProfileImport.update({
150
- id: '/_profile/profile',
151
- path: '/profile',
152
- getParentRoute: () => AuthenticatedRoute,
153
- } as any)
154
-
155
- const AuthenticatedProductsProductsRoute =
156
- AuthenticatedProductsProductsImport.update({
157
- id: '/_products/products',
158
- path: '/products',
159
- getParentRoute: () => AuthenticatedRoute,
160
- } as any)
161
-
162
- const AuthenticatedProductVariantsProductVariantsRoute =
163
- AuthenticatedProductVariantsProductVariantsImport.update({
164
- id: '/_product-variants/product-variants',
165
- path: '/product-variants',
166
- getParentRoute: () => AuthenticatedRoute,
167
- } as any)
168
-
169
- const AuthenticatedPaymentMethodsPaymentMethodsRoute =
170
- AuthenticatedPaymentMethodsPaymentMethodsImport.update({
171
- id: '/_payment-methods/payment-methods',
172
- path: '/payment-methods',
173
- getParentRoute: () => AuthenticatedRoute,
174
- } as any)
175
-
176
- const AuthenticatedOrdersOrdersRoute = AuthenticatedOrdersOrdersImport.update({
177
- id: '/_orders/orders',
178
- path: '/orders',
179
- getParentRoute: () => AuthenticatedRoute,
180
- } as any)
181
-
182
- const AuthenticatedGlobalSettingsGlobalSettingsRoute =
183
- AuthenticatedGlobalSettingsGlobalSettingsImport.update({
184
- id: '/_global-settings/global-settings',
185
- path: '/global-settings',
186
- getParentRoute: () => AuthenticatedRoute,
187
- } as any)
188
-
189
- const AuthenticatedFacetsFacetsRoute = AuthenticatedFacetsFacetsImport.update({
190
- id: '/_facets/facets',
191
- path: '/facets',
192
- getParentRoute: () => AuthenticatedRoute,
193
- } as any)
194
-
195
- const AuthenticatedCustomersCustomersRoute =
196
- AuthenticatedCustomersCustomersImport.update({
197
- id: '/_customers/customers',
198
- path: '/customers',
199
- getParentRoute: () => AuthenticatedRoute,
200
- } as any)
201
-
202
- const AuthenticatedCustomerGroupsCustomerGroupsRoute =
203
- AuthenticatedCustomerGroupsCustomerGroupsImport.update({
204
- id: '/_customer-groups/customer-groups',
205
- path: '/customer-groups',
206
- getParentRoute: () => AuthenticatedRoute,
207
- } as any)
208
-
209
- const AuthenticatedCountriesCountriesRoute =
210
- AuthenticatedCountriesCountriesImport.update({
211
- id: '/_countries/countries',
212
- path: '/countries',
213
- getParentRoute: () => AuthenticatedRoute,
214
- } as any)
215
-
216
- const AuthenticatedCollectionsCollectionsRoute =
217
- AuthenticatedCollectionsCollectionsImport.update({
218
- id: '/_collections/collections',
219
- path: '/collections',
220
- getParentRoute: () => AuthenticatedRoute,
221
- } as any)
222
-
223
- const AuthenticatedChannelsChannelsRoute =
224
- AuthenticatedChannelsChannelsImport.update({
225
- id: '/_channels/channels',
226
- path: '/channels',
227
- getParentRoute: () => AuthenticatedRoute,
228
- } as any)
229
-
230
- const AuthenticatedAssetsAssetsRoute = AuthenticatedAssetsAssetsImport.update({
231
- id: '/_assets/assets',
232
- path: '/assets',
233
- getParentRoute: () => AuthenticatedRoute,
234
- } as any)
235
-
236
- const AuthenticatedAdministratorsAdministratorsRoute =
237
- AuthenticatedAdministratorsAdministratorsImport.update({
238
- id: '/_administrators/administrators',
239
- path: '/administrators',
240
- getParentRoute: () => AuthenticatedRoute,
241
- } as any)
242
-
243
- const AuthenticatedZonesZonesIdRoute = AuthenticatedZonesZonesIdImport.update({
244
- id: '/_zones/zones_/$id',
245
- path: '/zones/$id',
246
- getParentRoute: () => AuthenticatedRoute,
247
- } as any)
248
-
249
- const AuthenticatedTaxRatesTaxRatesIdRoute =
250
- AuthenticatedTaxRatesTaxRatesIdImport.update({
251
- id: '/_tax-rates/tax-rates_/$id',
252
- path: '/tax-rates/$id',
253
- getParentRoute: () => AuthenticatedRoute,
254
- } as any)
255
-
256
- const AuthenticatedTaxCategoriesTaxCategoriesIdRoute =
257
- AuthenticatedTaxCategoriesTaxCategoriesIdImport.update({
258
- id: '/_tax-categories/tax-categories_/$id',
259
- path: '/tax-categories/$id',
260
- getParentRoute: () => AuthenticatedRoute,
261
- } as any)
262
-
263
- const AuthenticatedStockLocationsStockLocationsIdRoute =
264
- AuthenticatedStockLocationsStockLocationsIdImport.update({
265
- id: '/_stock-locations/stock-locations_/$id',
266
- path: '/stock-locations/$id',
267
- getParentRoute: () => AuthenticatedRoute,
268
- } as any)
269
-
270
- const AuthenticatedShippingMethodsShippingMethodsIdRoute =
271
- AuthenticatedShippingMethodsShippingMethodsIdImport.update({
272
- id: '/_shipping-methods/shipping-methods_/$id',
273
- path: '/shipping-methods/$id',
274
- getParentRoute: () => AuthenticatedRoute,
275
- } as any)
276
-
277
- const AuthenticatedSellersSellersIdRoute =
278
- AuthenticatedSellersSellersIdImport.update({
279
- id: '/_sellers/sellers_/$id',
280
- path: '/sellers/$id',
281
- getParentRoute: () => AuthenticatedRoute,
282
- } as any)
283
-
284
- const AuthenticatedRolesRolesIdRoute = AuthenticatedRolesRolesIdImport.update({
285
- id: '/_roles/roles_/$id',
286
- path: '/roles/$id',
287
- getParentRoute: () => AuthenticatedRoute,
288
- } as any)
289
-
290
- const AuthenticatedPromotionsPromotionsIdRoute =
291
- AuthenticatedPromotionsPromotionsIdImport.update({
292
- id: '/_promotions/promotions_/$id',
293
- path: '/promotions/$id',
294
- getParentRoute: () => AuthenticatedRoute,
295
- } as any)
296
-
297
- const AuthenticatedProductsProductsIdRoute =
298
- AuthenticatedProductsProductsIdImport.update({
299
- id: '/_products/products_/$id',
300
- path: '/products/$id',
301
- getParentRoute: () => AuthenticatedRoute,
302
- } as any)
303
-
304
- const AuthenticatedProductVariantsProductVariantsIdRoute =
305
- AuthenticatedProductVariantsProductVariantsIdImport.update({
306
- id: '/_product-variants/product-variants_/$id',
307
- path: '/product-variants/$id',
308
- getParentRoute: () => AuthenticatedRoute,
309
- } as any)
310
-
311
- const AuthenticatedPaymentMethodsPaymentMethodsIdRoute =
312
- AuthenticatedPaymentMethodsPaymentMethodsIdImport.update({
313
- id: '/_payment-methods/payment-methods_/$id',
314
- path: '/payment-methods/$id',
315
- getParentRoute: () => AuthenticatedRoute,
316
- } as any)
317
-
318
- const AuthenticatedOrdersOrdersIdRoute =
319
- AuthenticatedOrdersOrdersIdImport.update({
320
- id: '/_orders/orders_/$id',
321
- path: '/orders/$id',
322
- getParentRoute: () => AuthenticatedRoute,
323
- } as any)
324
-
325
- const AuthenticatedFacetsFacetsIdRoute =
326
- AuthenticatedFacetsFacetsIdImport.update({
327
- id: '/_facets/facets_/$id',
328
- path: '/facets/$id',
329
- getParentRoute: () => AuthenticatedRoute,
330
- } as any)
331
-
332
- const AuthenticatedCustomersCustomersIdRoute =
333
- AuthenticatedCustomersCustomersIdImport.update({
334
- id: '/_customers/customers_/$id',
335
- path: '/customers/$id',
336
- getParentRoute: () => AuthenticatedRoute,
337
- } as any)
338
-
339
- const AuthenticatedCustomerGroupsCustomerGroupsIdRoute =
340
- AuthenticatedCustomerGroupsCustomerGroupsIdImport.update({
341
- id: '/_customer-groups/customer-groups_/$id',
342
- path: '/customer-groups/$id',
343
- getParentRoute: () => AuthenticatedRoute,
344
- } as any)
345
-
346
- const AuthenticatedCountriesCountriesIdRoute =
347
- AuthenticatedCountriesCountriesIdImport.update({
348
- id: '/_countries/countries_/$id',
349
- path: '/countries/$id',
350
- getParentRoute: () => AuthenticatedRoute,
351
- } as any)
352
-
353
- const AuthenticatedCollectionsCollectionsIdRoute =
354
- AuthenticatedCollectionsCollectionsIdImport.update({
355
- id: '/_collections/collections_/$id',
356
- path: '/collections/$id',
357
- getParentRoute: () => AuthenticatedRoute,
358
- } as any)
359
-
360
- const AuthenticatedChannelsChannelsIdRoute =
361
- AuthenticatedChannelsChannelsIdImport.update({
362
- id: '/_channels/channels_/$id',
363
- path: '/channels/$id',
364
- getParentRoute: () => AuthenticatedRoute,
365
- } as any)
366
-
367
- const AuthenticatedAdministratorsAdministratorsIdRoute =
368
- AuthenticatedAdministratorsAdministratorsIdImport.update({
369
- id: '/_administrators/administrators_/$id',
370
- path: '/administrators/$id',
371
- getParentRoute: () => AuthenticatedRoute,
372
- } as any)
373
-
374
- // Populate the FileRoutesByPath interface
375
-
376
- declare module '@tanstack/react-router' {
377
- interface FileRoutesByPath {
378
- '/_authenticated': {
379
- id: '/_authenticated'
380
- path: ''
381
- fullPath: ''
382
- preLoaderRoute: typeof AuthenticatedImport
383
- parentRoute: typeof rootRoute
384
- }
385
- '/login': {
386
- id: '/login'
387
- path: '/login'
388
- fullPath: '/login'
389
- preLoaderRoute: typeof LoginImport
390
- parentRoute: typeof rootRoute
391
- }
392
- '/_authenticated/': {
393
- id: '/_authenticated/'
394
- path: '/'
395
- fullPath: '/'
396
- preLoaderRoute: typeof AuthenticatedIndexImport
397
- parentRoute: typeof AuthenticatedImport
398
- }
399
- '/_authenticated/_administrators/administrators': {
400
- id: '/_authenticated/_administrators/administrators'
401
- path: '/administrators'
402
- fullPath: '/administrators'
403
- preLoaderRoute: typeof AuthenticatedAdministratorsAdministratorsImport
404
- parentRoute: typeof AuthenticatedImport
405
- }
406
- '/_authenticated/_assets/assets': {
407
- id: '/_authenticated/_assets/assets'
408
- path: '/assets'
409
- fullPath: '/assets'
410
- preLoaderRoute: typeof AuthenticatedAssetsAssetsImport
411
- parentRoute: typeof AuthenticatedImport
412
- }
413
- '/_authenticated/_channels/channels': {
414
- id: '/_authenticated/_channels/channels'
415
- path: '/channels'
416
- fullPath: '/channels'
417
- preLoaderRoute: typeof AuthenticatedChannelsChannelsImport
418
- parentRoute: typeof AuthenticatedImport
419
- }
420
- '/_authenticated/_collections/collections': {
421
- id: '/_authenticated/_collections/collections'
422
- path: '/collections'
423
- fullPath: '/collections'
424
- preLoaderRoute: typeof AuthenticatedCollectionsCollectionsImport
425
- parentRoute: typeof AuthenticatedImport
426
- }
427
- '/_authenticated/_countries/countries': {
428
- id: '/_authenticated/_countries/countries'
429
- path: '/countries'
430
- fullPath: '/countries'
431
- preLoaderRoute: typeof AuthenticatedCountriesCountriesImport
432
- parentRoute: typeof AuthenticatedImport
433
- }
434
- '/_authenticated/_customer-groups/customer-groups': {
435
- id: '/_authenticated/_customer-groups/customer-groups'
436
- path: '/customer-groups'
437
- fullPath: '/customer-groups'
438
- preLoaderRoute: typeof AuthenticatedCustomerGroupsCustomerGroupsImport
439
- parentRoute: typeof AuthenticatedImport
440
- }
441
- '/_authenticated/_customers/customers': {
442
- id: '/_authenticated/_customers/customers'
443
- path: '/customers'
444
- fullPath: '/customers'
445
- preLoaderRoute: typeof AuthenticatedCustomersCustomersImport
446
- parentRoute: typeof AuthenticatedImport
447
- }
448
- '/_authenticated/_facets/facets': {
449
- id: '/_authenticated/_facets/facets'
450
- path: '/facets'
451
- fullPath: '/facets'
452
- preLoaderRoute: typeof AuthenticatedFacetsFacetsImport
453
- parentRoute: typeof AuthenticatedImport
454
- }
455
- '/_authenticated/_global-settings/global-settings': {
456
- id: '/_authenticated/_global-settings/global-settings'
457
- path: '/global-settings'
458
- fullPath: '/global-settings'
459
- preLoaderRoute: typeof AuthenticatedGlobalSettingsGlobalSettingsImport
460
- parentRoute: typeof AuthenticatedImport
461
- }
462
- '/_authenticated/_orders/orders': {
463
- id: '/_authenticated/_orders/orders'
464
- path: '/orders'
465
- fullPath: '/orders'
466
- preLoaderRoute: typeof AuthenticatedOrdersOrdersImport
467
- parentRoute: typeof AuthenticatedImport
468
- }
469
- '/_authenticated/_payment-methods/payment-methods': {
470
- id: '/_authenticated/_payment-methods/payment-methods'
471
- path: '/payment-methods'
472
- fullPath: '/payment-methods'
473
- preLoaderRoute: typeof AuthenticatedPaymentMethodsPaymentMethodsImport
474
- parentRoute: typeof AuthenticatedImport
475
- }
476
- '/_authenticated/_product-variants/product-variants': {
477
- id: '/_authenticated/_product-variants/product-variants'
478
- path: '/product-variants'
479
- fullPath: '/product-variants'
480
- preLoaderRoute: typeof AuthenticatedProductVariantsProductVariantsImport
481
- parentRoute: typeof AuthenticatedImport
482
- }
483
- '/_authenticated/_products/products': {
484
- id: '/_authenticated/_products/products'
485
- path: '/products'
486
- fullPath: '/products'
487
- preLoaderRoute: typeof AuthenticatedProductsProductsImport
488
- parentRoute: typeof AuthenticatedImport
489
- }
490
- '/_authenticated/_profile/profile': {
491
- id: '/_authenticated/_profile/profile'
492
- path: '/profile'
493
- fullPath: '/profile'
494
- preLoaderRoute: typeof AuthenticatedProfileProfileImport
495
- parentRoute: typeof AuthenticatedImport
496
- }
497
- '/_authenticated/_promotions/promotions': {
498
- id: '/_authenticated/_promotions/promotions'
499
- path: '/promotions'
500
- fullPath: '/promotions'
501
- preLoaderRoute: typeof AuthenticatedPromotionsPromotionsImport
502
- parentRoute: typeof AuthenticatedImport
503
- }
504
- '/_authenticated/_roles/roles': {
505
- id: '/_authenticated/_roles/roles'
506
- path: '/roles'
507
- fullPath: '/roles'
508
- preLoaderRoute: typeof AuthenticatedRolesRolesImport
509
- parentRoute: typeof AuthenticatedImport
510
- }
511
- '/_authenticated/_sellers/sellers': {
512
- id: '/_authenticated/_sellers/sellers'
513
- path: '/sellers'
514
- fullPath: '/sellers'
515
- preLoaderRoute: typeof AuthenticatedSellersSellersImport
516
- parentRoute: typeof AuthenticatedImport
517
- }
518
- '/_authenticated/_shipping-methods/shipping-methods': {
519
- id: '/_authenticated/_shipping-methods/shipping-methods'
520
- path: '/shipping-methods'
521
- fullPath: '/shipping-methods'
522
- preLoaderRoute: typeof AuthenticatedShippingMethodsShippingMethodsImport
523
- parentRoute: typeof AuthenticatedImport
524
- }
525
- '/_authenticated/_stock-locations/stock-locations': {
526
- id: '/_authenticated/_stock-locations/stock-locations'
527
- path: '/stock-locations'
528
- fullPath: '/stock-locations'
529
- preLoaderRoute: typeof AuthenticatedStockLocationsStockLocationsImport
530
- parentRoute: typeof AuthenticatedImport
531
- }
532
- '/_authenticated/_system/healthchecks': {
533
- id: '/_authenticated/_system/healthchecks'
534
- path: '/healthchecks'
535
- fullPath: '/healthchecks'
536
- preLoaderRoute: typeof AuthenticatedSystemHealthchecksImport
537
- parentRoute: typeof AuthenticatedImport
538
- }
539
- '/_authenticated/_system/job-queue': {
540
- id: '/_authenticated/_system/job-queue'
541
- path: '/job-queue'
542
- fullPath: '/job-queue'
543
- preLoaderRoute: typeof AuthenticatedSystemJobQueueImport
544
- parentRoute: typeof AuthenticatedImport
545
- }
546
- '/_authenticated/_tax-categories/tax-categories': {
547
- id: '/_authenticated/_tax-categories/tax-categories'
548
- path: '/tax-categories'
549
- fullPath: '/tax-categories'
550
- preLoaderRoute: typeof AuthenticatedTaxCategoriesTaxCategoriesImport
551
- parentRoute: typeof AuthenticatedImport
552
- }
553
- '/_authenticated/_tax-rates/tax-rates': {
554
- id: '/_authenticated/_tax-rates/tax-rates'
555
- path: '/tax-rates'
556
- fullPath: '/tax-rates'
557
- preLoaderRoute: typeof AuthenticatedTaxRatesTaxRatesImport
558
- parentRoute: typeof AuthenticatedImport
559
- }
560
- '/_authenticated/_zones/zones': {
561
- id: '/_authenticated/_zones/zones'
562
- path: '/zones'
563
- fullPath: '/zones'
564
- preLoaderRoute: typeof AuthenticatedZonesZonesImport
565
- parentRoute: typeof AuthenticatedImport
566
- }
567
- '/_authenticated/_administrators/administrators_/$id': {
568
- id: '/_authenticated/_administrators/administrators_/$id'
569
- path: '/administrators/$id'
570
- fullPath: '/administrators/$id'
571
- preLoaderRoute: typeof AuthenticatedAdministratorsAdministratorsIdImport
572
- parentRoute: typeof AuthenticatedImport
573
- }
574
- '/_authenticated/_channels/channels_/$id': {
575
- id: '/_authenticated/_channels/channels_/$id'
576
- path: '/channels/$id'
577
- fullPath: '/channels/$id'
578
- preLoaderRoute: typeof AuthenticatedChannelsChannelsIdImport
579
- parentRoute: typeof AuthenticatedImport
580
- }
581
- '/_authenticated/_collections/collections_/$id': {
582
- id: '/_authenticated/_collections/collections_/$id'
583
- path: '/collections/$id'
584
- fullPath: '/collections/$id'
585
- preLoaderRoute: typeof AuthenticatedCollectionsCollectionsIdImport
586
- parentRoute: typeof AuthenticatedImport
587
- }
588
- '/_authenticated/_countries/countries_/$id': {
589
- id: '/_authenticated/_countries/countries_/$id'
590
- path: '/countries/$id'
591
- fullPath: '/countries/$id'
592
- preLoaderRoute: typeof AuthenticatedCountriesCountriesIdImport
593
- parentRoute: typeof AuthenticatedImport
594
- }
595
- '/_authenticated/_customer-groups/customer-groups_/$id': {
596
- id: '/_authenticated/_customer-groups/customer-groups_/$id'
597
- path: '/customer-groups/$id'
598
- fullPath: '/customer-groups/$id'
599
- preLoaderRoute: typeof AuthenticatedCustomerGroupsCustomerGroupsIdImport
600
- parentRoute: typeof AuthenticatedImport
601
- }
602
- '/_authenticated/_customers/customers_/$id': {
603
- id: '/_authenticated/_customers/customers_/$id'
604
- path: '/customers/$id'
605
- fullPath: '/customers/$id'
606
- preLoaderRoute: typeof AuthenticatedCustomersCustomersIdImport
607
- parentRoute: typeof AuthenticatedImport
608
- }
609
- '/_authenticated/_facets/facets_/$id': {
610
- id: '/_authenticated/_facets/facets_/$id'
611
- path: '/facets/$id'
612
- fullPath: '/facets/$id'
613
- preLoaderRoute: typeof AuthenticatedFacetsFacetsIdImport
614
- parentRoute: typeof AuthenticatedImport
615
- }
616
- '/_authenticated/_orders/orders_/$id': {
617
- id: '/_authenticated/_orders/orders_/$id'
618
- path: '/orders/$id'
619
- fullPath: '/orders/$id'
620
- preLoaderRoute: typeof AuthenticatedOrdersOrdersIdImport
621
- parentRoute: typeof AuthenticatedImport
622
- }
623
- '/_authenticated/_payment-methods/payment-methods_/$id': {
624
- id: '/_authenticated/_payment-methods/payment-methods_/$id'
625
- path: '/payment-methods/$id'
626
- fullPath: '/payment-methods/$id'
627
- preLoaderRoute: typeof AuthenticatedPaymentMethodsPaymentMethodsIdImport
628
- parentRoute: typeof AuthenticatedImport
629
- }
630
- '/_authenticated/_product-variants/product-variants_/$id': {
631
- id: '/_authenticated/_product-variants/product-variants_/$id'
632
- path: '/product-variants/$id'
633
- fullPath: '/product-variants/$id'
634
- preLoaderRoute: typeof AuthenticatedProductVariantsProductVariantsIdImport
635
- parentRoute: typeof AuthenticatedImport
636
- }
637
- '/_authenticated/_products/products_/$id': {
638
- id: '/_authenticated/_products/products_/$id'
639
- path: '/products/$id'
640
- fullPath: '/products/$id'
641
- preLoaderRoute: typeof AuthenticatedProductsProductsIdImport
642
- parentRoute: typeof AuthenticatedImport
643
- }
644
- '/_authenticated/_promotions/promotions_/$id': {
645
- id: '/_authenticated/_promotions/promotions_/$id'
646
- path: '/promotions/$id'
647
- fullPath: '/promotions/$id'
648
- preLoaderRoute: typeof AuthenticatedPromotionsPromotionsIdImport
649
- parentRoute: typeof AuthenticatedImport
650
- }
651
- '/_authenticated/_roles/roles_/$id': {
652
- id: '/_authenticated/_roles/roles_/$id'
653
- path: '/roles/$id'
654
- fullPath: '/roles/$id'
655
- preLoaderRoute: typeof AuthenticatedRolesRolesIdImport
656
- parentRoute: typeof AuthenticatedImport
657
- }
658
- '/_authenticated/_sellers/sellers_/$id': {
659
- id: '/_authenticated/_sellers/sellers_/$id'
660
- path: '/sellers/$id'
661
- fullPath: '/sellers/$id'
662
- preLoaderRoute: typeof AuthenticatedSellersSellersIdImport
663
- parentRoute: typeof AuthenticatedImport
664
- }
665
- '/_authenticated/_shipping-methods/shipping-methods_/$id': {
666
- id: '/_authenticated/_shipping-methods/shipping-methods_/$id'
667
- path: '/shipping-methods/$id'
668
- fullPath: '/shipping-methods/$id'
669
- preLoaderRoute: typeof AuthenticatedShippingMethodsShippingMethodsIdImport
670
- parentRoute: typeof AuthenticatedImport
671
- }
672
- '/_authenticated/_stock-locations/stock-locations_/$id': {
673
- id: '/_authenticated/_stock-locations/stock-locations_/$id'
674
- path: '/stock-locations/$id'
675
- fullPath: '/stock-locations/$id'
676
- preLoaderRoute: typeof AuthenticatedStockLocationsStockLocationsIdImport
677
- parentRoute: typeof AuthenticatedImport
678
- }
679
- '/_authenticated/_tax-categories/tax-categories_/$id': {
680
- id: '/_authenticated/_tax-categories/tax-categories_/$id'
681
- path: '/tax-categories/$id'
682
- fullPath: '/tax-categories/$id'
683
- preLoaderRoute: typeof AuthenticatedTaxCategoriesTaxCategoriesIdImport
684
- parentRoute: typeof AuthenticatedImport
685
- }
686
- '/_authenticated/_tax-rates/tax-rates_/$id': {
687
- id: '/_authenticated/_tax-rates/tax-rates_/$id'
688
- path: '/tax-rates/$id'
689
- fullPath: '/tax-rates/$id'
690
- preLoaderRoute: typeof AuthenticatedTaxRatesTaxRatesIdImport
691
- parentRoute: typeof AuthenticatedImport
692
- }
693
- '/_authenticated/_zones/zones_/$id': {
694
- id: '/_authenticated/_zones/zones_/$id'
695
- path: '/zones/$id'
696
- fullPath: '/zones/$id'
697
- preLoaderRoute: typeof AuthenticatedZonesZonesIdImport
698
- parentRoute: typeof AuthenticatedImport
699
- }
700
- }
701
- }
702
-
703
- // Create and export the route tree
704
-
705
- interface AuthenticatedRouteChildren {
706
- AuthenticatedIndexRoute: typeof AuthenticatedIndexRoute
707
- AuthenticatedAdministratorsAdministratorsRoute: typeof AuthenticatedAdministratorsAdministratorsRoute
708
- AuthenticatedAssetsAssetsRoute: typeof AuthenticatedAssetsAssetsRoute
709
- AuthenticatedChannelsChannelsRoute: typeof AuthenticatedChannelsChannelsRoute
710
- AuthenticatedCollectionsCollectionsRoute: typeof AuthenticatedCollectionsCollectionsRoute
711
- AuthenticatedCountriesCountriesRoute: typeof AuthenticatedCountriesCountriesRoute
712
- AuthenticatedCustomerGroupsCustomerGroupsRoute: typeof AuthenticatedCustomerGroupsCustomerGroupsRoute
713
- AuthenticatedCustomersCustomersRoute: typeof AuthenticatedCustomersCustomersRoute
714
- AuthenticatedFacetsFacetsRoute: typeof AuthenticatedFacetsFacetsRoute
715
- AuthenticatedGlobalSettingsGlobalSettingsRoute: typeof AuthenticatedGlobalSettingsGlobalSettingsRoute
716
- AuthenticatedOrdersOrdersRoute: typeof AuthenticatedOrdersOrdersRoute
717
- AuthenticatedPaymentMethodsPaymentMethodsRoute: typeof AuthenticatedPaymentMethodsPaymentMethodsRoute
718
- AuthenticatedProductVariantsProductVariantsRoute: typeof AuthenticatedProductVariantsProductVariantsRoute
719
- AuthenticatedProductsProductsRoute: typeof AuthenticatedProductsProductsRoute
720
- AuthenticatedProfileProfileRoute: typeof AuthenticatedProfileProfileRoute
721
- AuthenticatedPromotionsPromotionsRoute: typeof AuthenticatedPromotionsPromotionsRoute
722
- AuthenticatedRolesRolesRoute: typeof AuthenticatedRolesRolesRoute
723
- AuthenticatedSellersSellersRoute: typeof AuthenticatedSellersSellersRoute
724
- AuthenticatedShippingMethodsShippingMethodsRoute: typeof AuthenticatedShippingMethodsShippingMethodsRoute
725
- AuthenticatedStockLocationsStockLocationsRoute: typeof AuthenticatedStockLocationsStockLocationsRoute
726
- AuthenticatedSystemHealthchecksRoute: typeof AuthenticatedSystemHealthchecksRoute
727
- AuthenticatedSystemJobQueueRoute: typeof AuthenticatedSystemJobQueueRoute
728
- AuthenticatedTaxCategoriesTaxCategoriesRoute: typeof AuthenticatedTaxCategoriesTaxCategoriesRoute
729
- AuthenticatedTaxRatesTaxRatesRoute: typeof AuthenticatedTaxRatesTaxRatesRoute
730
- AuthenticatedZonesZonesRoute: typeof AuthenticatedZonesZonesRoute
731
- AuthenticatedAdministratorsAdministratorsIdRoute: typeof AuthenticatedAdministratorsAdministratorsIdRoute
732
- AuthenticatedChannelsChannelsIdRoute: typeof AuthenticatedChannelsChannelsIdRoute
733
- AuthenticatedCollectionsCollectionsIdRoute: typeof AuthenticatedCollectionsCollectionsIdRoute
734
- AuthenticatedCountriesCountriesIdRoute: typeof AuthenticatedCountriesCountriesIdRoute
735
- AuthenticatedCustomerGroupsCustomerGroupsIdRoute: typeof AuthenticatedCustomerGroupsCustomerGroupsIdRoute
736
- AuthenticatedCustomersCustomersIdRoute: typeof AuthenticatedCustomersCustomersIdRoute
737
- AuthenticatedFacetsFacetsIdRoute: typeof AuthenticatedFacetsFacetsIdRoute
738
- AuthenticatedOrdersOrdersIdRoute: typeof AuthenticatedOrdersOrdersIdRoute
739
- AuthenticatedPaymentMethodsPaymentMethodsIdRoute: typeof AuthenticatedPaymentMethodsPaymentMethodsIdRoute
740
- AuthenticatedProductVariantsProductVariantsIdRoute: typeof AuthenticatedProductVariantsProductVariantsIdRoute
741
- AuthenticatedProductsProductsIdRoute: typeof AuthenticatedProductsProductsIdRoute
742
- AuthenticatedPromotionsPromotionsIdRoute: typeof AuthenticatedPromotionsPromotionsIdRoute
743
- AuthenticatedRolesRolesIdRoute: typeof AuthenticatedRolesRolesIdRoute
744
- AuthenticatedSellersSellersIdRoute: typeof AuthenticatedSellersSellersIdRoute
745
- AuthenticatedShippingMethodsShippingMethodsIdRoute: typeof AuthenticatedShippingMethodsShippingMethodsIdRoute
746
- AuthenticatedStockLocationsStockLocationsIdRoute: typeof AuthenticatedStockLocationsStockLocationsIdRoute
747
- AuthenticatedTaxCategoriesTaxCategoriesIdRoute: typeof AuthenticatedTaxCategoriesTaxCategoriesIdRoute
748
- AuthenticatedTaxRatesTaxRatesIdRoute: typeof AuthenticatedTaxRatesTaxRatesIdRoute
749
- AuthenticatedZonesZonesIdRoute: typeof AuthenticatedZonesZonesIdRoute
750
- }
751
-
752
- const AuthenticatedRouteChildren: AuthenticatedRouteChildren = {
753
- AuthenticatedIndexRoute: AuthenticatedIndexRoute,
754
- AuthenticatedAdministratorsAdministratorsRoute:
755
- AuthenticatedAdministratorsAdministratorsRoute,
756
- AuthenticatedAssetsAssetsRoute: AuthenticatedAssetsAssetsRoute,
757
- AuthenticatedChannelsChannelsRoute: AuthenticatedChannelsChannelsRoute,
758
- AuthenticatedCollectionsCollectionsRoute:
759
- AuthenticatedCollectionsCollectionsRoute,
760
- AuthenticatedCountriesCountriesRoute: AuthenticatedCountriesCountriesRoute,
761
- AuthenticatedCustomerGroupsCustomerGroupsRoute:
762
- AuthenticatedCustomerGroupsCustomerGroupsRoute,
763
- AuthenticatedCustomersCustomersRoute: AuthenticatedCustomersCustomersRoute,
764
- AuthenticatedFacetsFacetsRoute: AuthenticatedFacetsFacetsRoute,
765
- AuthenticatedGlobalSettingsGlobalSettingsRoute:
766
- AuthenticatedGlobalSettingsGlobalSettingsRoute,
767
- AuthenticatedOrdersOrdersRoute: AuthenticatedOrdersOrdersRoute,
768
- AuthenticatedPaymentMethodsPaymentMethodsRoute:
769
- AuthenticatedPaymentMethodsPaymentMethodsRoute,
770
- AuthenticatedProductVariantsProductVariantsRoute:
771
- AuthenticatedProductVariantsProductVariantsRoute,
772
- AuthenticatedProductsProductsRoute: AuthenticatedProductsProductsRoute,
773
- AuthenticatedProfileProfileRoute: AuthenticatedProfileProfileRoute,
774
- AuthenticatedPromotionsPromotionsRoute:
775
- AuthenticatedPromotionsPromotionsRoute,
776
- AuthenticatedRolesRolesRoute: AuthenticatedRolesRolesRoute,
777
- AuthenticatedSellersSellersRoute: AuthenticatedSellersSellersRoute,
778
- AuthenticatedShippingMethodsShippingMethodsRoute:
779
- AuthenticatedShippingMethodsShippingMethodsRoute,
780
- AuthenticatedStockLocationsStockLocationsRoute:
781
- AuthenticatedStockLocationsStockLocationsRoute,
782
- AuthenticatedSystemHealthchecksRoute: AuthenticatedSystemHealthchecksRoute,
783
- AuthenticatedSystemJobQueueRoute: AuthenticatedSystemJobQueueRoute,
784
- AuthenticatedTaxCategoriesTaxCategoriesRoute:
785
- AuthenticatedTaxCategoriesTaxCategoriesRoute,
786
- AuthenticatedTaxRatesTaxRatesRoute: AuthenticatedTaxRatesTaxRatesRoute,
787
- AuthenticatedZonesZonesRoute: AuthenticatedZonesZonesRoute,
788
- AuthenticatedAdministratorsAdministratorsIdRoute:
789
- AuthenticatedAdministratorsAdministratorsIdRoute,
790
- AuthenticatedChannelsChannelsIdRoute: AuthenticatedChannelsChannelsIdRoute,
791
- AuthenticatedCollectionsCollectionsIdRoute:
792
- AuthenticatedCollectionsCollectionsIdRoute,
793
- AuthenticatedCountriesCountriesIdRoute:
794
- AuthenticatedCountriesCountriesIdRoute,
795
- AuthenticatedCustomerGroupsCustomerGroupsIdRoute:
796
- AuthenticatedCustomerGroupsCustomerGroupsIdRoute,
797
- AuthenticatedCustomersCustomersIdRoute:
798
- AuthenticatedCustomersCustomersIdRoute,
799
- AuthenticatedFacetsFacetsIdRoute: AuthenticatedFacetsFacetsIdRoute,
800
- AuthenticatedOrdersOrdersIdRoute: AuthenticatedOrdersOrdersIdRoute,
801
- AuthenticatedPaymentMethodsPaymentMethodsIdRoute:
802
- AuthenticatedPaymentMethodsPaymentMethodsIdRoute,
803
- AuthenticatedProductVariantsProductVariantsIdRoute:
804
- AuthenticatedProductVariantsProductVariantsIdRoute,
805
- AuthenticatedProductsProductsIdRoute: AuthenticatedProductsProductsIdRoute,
806
- AuthenticatedPromotionsPromotionsIdRoute:
807
- AuthenticatedPromotionsPromotionsIdRoute,
808
- AuthenticatedRolesRolesIdRoute: AuthenticatedRolesRolesIdRoute,
809
- AuthenticatedSellersSellersIdRoute: AuthenticatedSellersSellersIdRoute,
810
- AuthenticatedShippingMethodsShippingMethodsIdRoute:
811
- AuthenticatedShippingMethodsShippingMethodsIdRoute,
812
- AuthenticatedStockLocationsStockLocationsIdRoute:
813
- AuthenticatedStockLocationsStockLocationsIdRoute,
814
- AuthenticatedTaxCategoriesTaxCategoriesIdRoute:
815
- AuthenticatedTaxCategoriesTaxCategoriesIdRoute,
816
- AuthenticatedTaxRatesTaxRatesIdRoute: AuthenticatedTaxRatesTaxRatesIdRoute,
817
- AuthenticatedZonesZonesIdRoute: AuthenticatedZonesZonesIdRoute,
818
- }
819
-
820
- const AuthenticatedRouteWithChildren = AuthenticatedRoute._addFileChildren(
821
- AuthenticatedRouteChildren,
822
- )
823
-
824
- export interface FileRoutesByFullPath {
825
- '': typeof AuthenticatedRouteWithChildren
826
- '/login': typeof LoginRoute
827
- '/': typeof AuthenticatedIndexRoute
828
- '/administrators': typeof AuthenticatedAdministratorsAdministratorsRoute
829
- '/assets': typeof AuthenticatedAssetsAssetsRoute
830
- '/channels': typeof AuthenticatedChannelsChannelsRoute
831
- '/collections': typeof AuthenticatedCollectionsCollectionsRoute
832
- '/countries': typeof AuthenticatedCountriesCountriesRoute
833
- '/customer-groups': typeof AuthenticatedCustomerGroupsCustomerGroupsRoute
834
- '/customers': typeof AuthenticatedCustomersCustomersRoute
835
- '/facets': typeof AuthenticatedFacetsFacetsRoute
836
- '/global-settings': typeof AuthenticatedGlobalSettingsGlobalSettingsRoute
837
- '/orders': typeof AuthenticatedOrdersOrdersRoute
838
- '/payment-methods': typeof AuthenticatedPaymentMethodsPaymentMethodsRoute
839
- '/product-variants': typeof AuthenticatedProductVariantsProductVariantsRoute
840
- '/products': typeof AuthenticatedProductsProductsRoute
841
- '/profile': typeof AuthenticatedProfileProfileRoute
842
- '/promotions': typeof AuthenticatedPromotionsPromotionsRoute
843
- '/roles': typeof AuthenticatedRolesRolesRoute
844
- '/sellers': typeof AuthenticatedSellersSellersRoute
845
- '/shipping-methods': typeof AuthenticatedShippingMethodsShippingMethodsRoute
846
- '/stock-locations': typeof AuthenticatedStockLocationsStockLocationsRoute
847
- '/healthchecks': typeof AuthenticatedSystemHealthchecksRoute
848
- '/job-queue': typeof AuthenticatedSystemJobQueueRoute
849
- '/tax-categories': typeof AuthenticatedTaxCategoriesTaxCategoriesRoute
850
- '/tax-rates': typeof AuthenticatedTaxRatesTaxRatesRoute
851
- '/zones': typeof AuthenticatedZonesZonesRoute
852
- '/administrators/$id': typeof AuthenticatedAdministratorsAdministratorsIdRoute
853
- '/channels/$id': typeof AuthenticatedChannelsChannelsIdRoute
854
- '/collections/$id': typeof AuthenticatedCollectionsCollectionsIdRoute
855
- '/countries/$id': typeof AuthenticatedCountriesCountriesIdRoute
856
- '/customer-groups/$id': typeof AuthenticatedCustomerGroupsCustomerGroupsIdRoute
857
- '/customers/$id': typeof AuthenticatedCustomersCustomersIdRoute
858
- '/facets/$id': typeof AuthenticatedFacetsFacetsIdRoute
859
- '/orders/$id': typeof AuthenticatedOrdersOrdersIdRoute
860
- '/payment-methods/$id': typeof AuthenticatedPaymentMethodsPaymentMethodsIdRoute
861
- '/product-variants/$id': typeof AuthenticatedProductVariantsProductVariantsIdRoute
862
- '/products/$id': typeof AuthenticatedProductsProductsIdRoute
863
- '/promotions/$id': typeof AuthenticatedPromotionsPromotionsIdRoute
864
- '/roles/$id': typeof AuthenticatedRolesRolesIdRoute
865
- '/sellers/$id': typeof AuthenticatedSellersSellersIdRoute
866
- '/shipping-methods/$id': typeof AuthenticatedShippingMethodsShippingMethodsIdRoute
867
- '/stock-locations/$id': typeof AuthenticatedStockLocationsStockLocationsIdRoute
868
- '/tax-categories/$id': typeof AuthenticatedTaxCategoriesTaxCategoriesIdRoute
869
- '/tax-rates/$id': typeof AuthenticatedTaxRatesTaxRatesIdRoute
870
- '/zones/$id': typeof AuthenticatedZonesZonesIdRoute
871
- }
872
-
873
- export interface FileRoutesByTo {
874
- '/login': typeof LoginRoute
875
- '/': typeof AuthenticatedIndexRoute
876
- '/administrators': typeof AuthenticatedAdministratorsAdministratorsRoute
877
- '/assets': typeof AuthenticatedAssetsAssetsRoute
878
- '/channels': typeof AuthenticatedChannelsChannelsRoute
879
- '/collections': typeof AuthenticatedCollectionsCollectionsRoute
880
- '/countries': typeof AuthenticatedCountriesCountriesRoute
881
- '/customer-groups': typeof AuthenticatedCustomerGroupsCustomerGroupsRoute
882
- '/customers': typeof AuthenticatedCustomersCustomersRoute
883
- '/facets': typeof AuthenticatedFacetsFacetsRoute
884
- '/global-settings': typeof AuthenticatedGlobalSettingsGlobalSettingsRoute
885
- '/orders': typeof AuthenticatedOrdersOrdersRoute
886
- '/payment-methods': typeof AuthenticatedPaymentMethodsPaymentMethodsRoute
887
- '/product-variants': typeof AuthenticatedProductVariantsProductVariantsRoute
888
- '/products': typeof AuthenticatedProductsProductsRoute
889
- '/profile': typeof AuthenticatedProfileProfileRoute
890
- '/promotions': typeof AuthenticatedPromotionsPromotionsRoute
891
- '/roles': typeof AuthenticatedRolesRolesRoute
892
- '/sellers': typeof AuthenticatedSellersSellersRoute
893
- '/shipping-methods': typeof AuthenticatedShippingMethodsShippingMethodsRoute
894
- '/stock-locations': typeof AuthenticatedStockLocationsStockLocationsRoute
895
- '/healthchecks': typeof AuthenticatedSystemHealthchecksRoute
896
- '/job-queue': typeof AuthenticatedSystemJobQueueRoute
897
- '/tax-categories': typeof AuthenticatedTaxCategoriesTaxCategoriesRoute
898
- '/tax-rates': typeof AuthenticatedTaxRatesTaxRatesRoute
899
- '/zones': typeof AuthenticatedZonesZonesRoute
900
- '/administrators/$id': typeof AuthenticatedAdministratorsAdministratorsIdRoute
901
- '/channels/$id': typeof AuthenticatedChannelsChannelsIdRoute
902
- '/collections/$id': typeof AuthenticatedCollectionsCollectionsIdRoute
903
- '/countries/$id': typeof AuthenticatedCountriesCountriesIdRoute
904
- '/customer-groups/$id': typeof AuthenticatedCustomerGroupsCustomerGroupsIdRoute
905
- '/customers/$id': typeof AuthenticatedCustomersCustomersIdRoute
906
- '/facets/$id': typeof AuthenticatedFacetsFacetsIdRoute
907
- '/orders/$id': typeof AuthenticatedOrdersOrdersIdRoute
908
- '/payment-methods/$id': typeof AuthenticatedPaymentMethodsPaymentMethodsIdRoute
909
- '/product-variants/$id': typeof AuthenticatedProductVariantsProductVariantsIdRoute
910
- '/products/$id': typeof AuthenticatedProductsProductsIdRoute
911
- '/promotions/$id': typeof AuthenticatedPromotionsPromotionsIdRoute
912
- '/roles/$id': typeof AuthenticatedRolesRolesIdRoute
913
- '/sellers/$id': typeof AuthenticatedSellersSellersIdRoute
914
- '/shipping-methods/$id': typeof AuthenticatedShippingMethodsShippingMethodsIdRoute
915
- '/stock-locations/$id': typeof AuthenticatedStockLocationsStockLocationsIdRoute
916
- '/tax-categories/$id': typeof AuthenticatedTaxCategoriesTaxCategoriesIdRoute
917
- '/tax-rates/$id': typeof AuthenticatedTaxRatesTaxRatesIdRoute
918
- '/zones/$id': typeof AuthenticatedZonesZonesIdRoute
919
- }
920
-
921
- export interface FileRoutesById {
922
- __root__: typeof rootRoute
923
- '/_authenticated': typeof AuthenticatedRouteWithChildren
924
- '/login': typeof LoginRoute
925
- '/_authenticated/': typeof AuthenticatedIndexRoute
926
- '/_authenticated/_administrators/administrators': typeof AuthenticatedAdministratorsAdministratorsRoute
927
- '/_authenticated/_assets/assets': typeof AuthenticatedAssetsAssetsRoute
928
- '/_authenticated/_channels/channels': typeof AuthenticatedChannelsChannelsRoute
929
- '/_authenticated/_collections/collections': typeof AuthenticatedCollectionsCollectionsRoute
930
- '/_authenticated/_countries/countries': typeof AuthenticatedCountriesCountriesRoute
931
- '/_authenticated/_customer-groups/customer-groups': typeof AuthenticatedCustomerGroupsCustomerGroupsRoute
932
- '/_authenticated/_customers/customers': typeof AuthenticatedCustomersCustomersRoute
933
- '/_authenticated/_facets/facets': typeof AuthenticatedFacetsFacetsRoute
934
- '/_authenticated/_global-settings/global-settings': typeof AuthenticatedGlobalSettingsGlobalSettingsRoute
935
- '/_authenticated/_orders/orders': typeof AuthenticatedOrdersOrdersRoute
936
- '/_authenticated/_payment-methods/payment-methods': typeof AuthenticatedPaymentMethodsPaymentMethodsRoute
937
- '/_authenticated/_product-variants/product-variants': typeof AuthenticatedProductVariantsProductVariantsRoute
938
- '/_authenticated/_products/products': typeof AuthenticatedProductsProductsRoute
939
- '/_authenticated/_profile/profile': typeof AuthenticatedProfileProfileRoute
940
- '/_authenticated/_promotions/promotions': typeof AuthenticatedPromotionsPromotionsRoute
941
- '/_authenticated/_roles/roles': typeof AuthenticatedRolesRolesRoute
942
- '/_authenticated/_sellers/sellers': typeof AuthenticatedSellersSellersRoute
943
- '/_authenticated/_shipping-methods/shipping-methods': typeof AuthenticatedShippingMethodsShippingMethodsRoute
944
- '/_authenticated/_stock-locations/stock-locations': typeof AuthenticatedStockLocationsStockLocationsRoute
945
- '/_authenticated/_system/healthchecks': typeof AuthenticatedSystemHealthchecksRoute
946
- '/_authenticated/_system/job-queue': typeof AuthenticatedSystemJobQueueRoute
947
- '/_authenticated/_tax-categories/tax-categories': typeof AuthenticatedTaxCategoriesTaxCategoriesRoute
948
- '/_authenticated/_tax-rates/tax-rates': typeof AuthenticatedTaxRatesTaxRatesRoute
949
- '/_authenticated/_zones/zones': typeof AuthenticatedZonesZonesRoute
950
- '/_authenticated/_administrators/administrators_/$id': typeof AuthenticatedAdministratorsAdministratorsIdRoute
951
- '/_authenticated/_channels/channels_/$id': typeof AuthenticatedChannelsChannelsIdRoute
952
- '/_authenticated/_collections/collections_/$id': typeof AuthenticatedCollectionsCollectionsIdRoute
953
- '/_authenticated/_countries/countries_/$id': typeof AuthenticatedCountriesCountriesIdRoute
954
- '/_authenticated/_customer-groups/customer-groups_/$id': typeof AuthenticatedCustomerGroupsCustomerGroupsIdRoute
955
- '/_authenticated/_customers/customers_/$id': typeof AuthenticatedCustomersCustomersIdRoute
956
- '/_authenticated/_facets/facets_/$id': typeof AuthenticatedFacetsFacetsIdRoute
957
- '/_authenticated/_orders/orders_/$id': typeof AuthenticatedOrdersOrdersIdRoute
958
- '/_authenticated/_payment-methods/payment-methods_/$id': typeof AuthenticatedPaymentMethodsPaymentMethodsIdRoute
959
- '/_authenticated/_product-variants/product-variants_/$id': typeof AuthenticatedProductVariantsProductVariantsIdRoute
960
- '/_authenticated/_products/products_/$id': typeof AuthenticatedProductsProductsIdRoute
961
- '/_authenticated/_promotions/promotions_/$id': typeof AuthenticatedPromotionsPromotionsIdRoute
962
- '/_authenticated/_roles/roles_/$id': typeof AuthenticatedRolesRolesIdRoute
963
- '/_authenticated/_sellers/sellers_/$id': typeof AuthenticatedSellersSellersIdRoute
964
- '/_authenticated/_shipping-methods/shipping-methods_/$id': typeof AuthenticatedShippingMethodsShippingMethodsIdRoute
965
- '/_authenticated/_stock-locations/stock-locations_/$id': typeof AuthenticatedStockLocationsStockLocationsIdRoute
966
- '/_authenticated/_tax-categories/tax-categories_/$id': typeof AuthenticatedTaxCategoriesTaxCategoriesIdRoute
967
- '/_authenticated/_tax-rates/tax-rates_/$id': typeof AuthenticatedTaxRatesTaxRatesIdRoute
968
- '/_authenticated/_zones/zones_/$id': typeof AuthenticatedZonesZonesIdRoute
969
- }
970
-
971
- export interface FileRouteTypes {
972
- fileRoutesByFullPath: FileRoutesByFullPath
973
- fullPaths:
974
- | ''
975
- | '/login'
976
- | '/'
977
- | '/administrators'
978
- | '/assets'
979
- | '/channels'
980
- | '/collections'
981
- | '/countries'
982
- | '/customer-groups'
983
- | '/customers'
984
- | '/facets'
985
- | '/global-settings'
986
- | '/orders'
987
- | '/payment-methods'
988
- | '/product-variants'
989
- | '/products'
990
- | '/profile'
991
- | '/promotions'
992
- | '/roles'
993
- | '/sellers'
994
- | '/shipping-methods'
995
- | '/stock-locations'
996
- | '/healthchecks'
997
- | '/job-queue'
998
- | '/tax-categories'
999
- | '/tax-rates'
1000
- | '/zones'
1001
- | '/administrators/$id'
1002
- | '/channels/$id'
1003
- | '/collections/$id'
1004
- | '/countries/$id'
1005
- | '/customer-groups/$id'
1006
- | '/customers/$id'
1007
- | '/facets/$id'
1008
- | '/orders/$id'
1009
- | '/payment-methods/$id'
1010
- | '/product-variants/$id'
1011
- | '/products/$id'
1012
- | '/promotions/$id'
1013
- | '/roles/$id'
1014
- | '/sellers/$id'
1015
- | '/shipping-methods/$id'
1016
- | '/stock-locations/$id'
1017
- | '/tax-categories/$id'
1018
- | '/tax-rates/$id'
1019
- | '/zones/$id'
1020
- fileRoutesByTo: FileRoutesByTo
1021
- to:
1022
- | '/login'
1023
- | '/'
1024
- | '/administrators'
1025
- | '/assets'
1026
- | '/channels'
1027
- | '/collections'
1028
- | '/countries'
1029
- | '/customer-groups'
1030
- | '/customers'
1031
- | '/facets'
1032
- | '/global-settings'
1033
- | '/orders'
1034
- | '/payment-methods'
1035
- | '/product-variants'
1036
- | '/products'
1037
- | '/profile'
1038
- | '/promotions'
1039
- | '/roles'
1040
- | '/sellers'
1041
- | '/shipping-methods'
1042
- | '/stock-locations'
1043
- | '/healthchecks'
1044
- | '/job-queue'
1045
- | '/tax-categories'
1046
- | '/tax-rates'
1047
- | '/zones'
1048
- | '/administrators/$id'
1049
- | '/channels/$id'
1050
- | '/collections/$id'
1051
- | '/countries/$id'
1052
- | '/customer-groups/$id'
1053
- | '/customers/$id'
1054
- | '/facets/$id'
1055
- | '/orders/$id'
1056
- | '/payment-methods/$id'
1057
- | '/product-variants/$id'
1058
- | '/products/$id'
1059
- | '/promotions/$id'
1060
- | '/roles/$id'
1061
- | '/sellers/$id'
1062
- | '/shipping-methods/$id'
1063
- | '/stock-locations/$id'
1064
- | '/tax-categories/$id'
1065
- | '/tax-rates/$id'
1066
- | '/zones/$id'
1067
- id:
1068
- | '__root__'
1069
- | '/_authenticated'
1070
- | '/login'
1071
- | '/_authenticated/'
1072
- | '/_authenticated/_administrators/administrators'
1073
- | '/_authenticated/_assets/assets'
1074
- | '/_authenticated/_channels/channels'
1075
- | '/_authenticated/_collections/collections'
1076
- | '/_authenticated/_countries/countries'
1077
- | '/_authenticated/_customer-groups/customer-groups'
1078
- | '/_authenticated/_customers/customers'
1079
- | '/_authenticated/_facets/facets'
1080
- | '/_authenticated/_global-settings/global-settings'
1081
- | '/_authenticated/_orders/orders'
1082
- | '/_authenticated/_payment-methods/payment-methods'
1083
- | '/_authenticated/_product-variants/product-variants'
1084
- | '/_authenticated/_products/products'
1085
- | '/_authenticated/_profile/profile'
1086
- | '/_authenticated/_promotions/promotions'
1087
- | '/_authenticated/_roles/roles'
1088
- | '/_authenticated/_sellers/sellers'
1089
- | '/_authenticated/_shipping-methods/shipping-methods'
1090
- | '/_authenticated/_stock-locations/stock-locations'
1091
- | '/_authenticated/_system/healthchecks'
1092
- | '/_authenticated/_system/job-queue'
1093
- | '/_authenticated/_tax-categories/tax-categories'
1094
- | '/_authenticated/_tax-rates/tax-rates'
1095
- | '/_authenticated/_zones/zones'
1096
- | '/_authenticated/_administrators/administrators_/$id'
1097
- | '/_authenticated/_channels/channels_/$id'
1098
- | '/_authenticated/_collections/collections_/$id'
1099
- | '/_authenticated/_countries/countries_/$id'
1100
- | '/_authenticated/_customer-groups/customer-groups_/$id'
1101
- | '/_authenticated/_customers/customers_/$id'
1102
- | '/_authenticated/_facets/facets_/$id'
1103
- | '/_authenticated/_orders/orders_/$id'
1104
- | '/_authenticated/_payment-methods/payment-methods_/$id'
1105
- | '/_authenticated/_product-variants/product-variants_/$id'
1106
- | '/_authenticated/_products/products_/$id'
1107
- | '/_authenticated/_promotions/promotions_/$id'
1108
- | '/_authenticated/_roles/roles_/$id'
1109
- | '/_authenticated/_sellers/sellers_/$id'
1110
- | '/_authenticated/_shipping-methods/shipping-methods_/$id'
1111
- | '/_authenticated/_stock-locations/stock-locations_/$id'
1112
- | '/_authenticated/_tax-categories/tax-categories_/$id'
1113
- | '/_authenticated/_tax-rates/tax-rates_/$id'
1114
- | '/_authenticated/_zones/zones_/$id'
1115
- fileRoutesById: FileRoutesById
1116
- }
1117
-
1118
- export interface RootRouteChildren {
1119
- AuthenticatedRoute: typeof AuthenticatedRouteWithChildren
1120
- LoginRoute: typeof LoginRoute
1121
- }
1122
-
1123
- const rootRouteChildren: RootRouteChildren = {
1124
- AuthenticatedRoute: AuthenticatedRouteWithChildren,
1125
- LoginRoute: LoginRoute,
1126
- }
1127
-
1128
- export const routeTree = rootRoute
1129
- ._addFileChildren(rootRouteChildren)
1130
- ._addFileTypes<FileRouteTypes>()
1131
-
1132
- /* ROUTE_MANIFEST_START
1133
- {
1134
- "routes": {
1135
- "__root__": {
1136
- "filePath": "__root.tsx",
1137
- "children": [
1138
- "/_authenticated",
1139
- "/login"
1140
- ]
1141
- },
1142
- "/_authenticated": {
1143
- "filePath": "_authenticated.tsx",
1144
- "children": [
1145
- "/_authenticated/",
1146
- "/_authenticated/_administrators/administrators",
1147
- "/_authenticated/_assets/assets",
1148
- "/_authenticated/_channels/channels",
1149
- "/_authenticated/_collections/collections",
1150
- "/_authenticated/_countries/countries",
1151
- "/_authenticated/_customer-groups/customer-groups",
1152
- "/_authenticated/_customers/customers",
1153
- "/_authenticated/_facets/facets",
1154
- "/_authenticated/_global-settings/global-settings",
1155
- "/_authenticated/_orders/orders",
1156
- "/_authenticated/_payment-methods/payment-methods",
1157
- "/_authenticated/_product-variants/product-variants",
1158
- "/_authenticated/_products/products",
1159
- "/_authenticated/_profile/profile",
1160
- "/_authenticated/_promotions/promotions",
1161
- "/_authenticated/_roles/roles",
1162
- "/_authenticated/_sellers/sellers",
1163
- "/_authenticated/_shipping-methods/shipping-methods",
1164
- "/_authenticated/_stock-locations/stock-locations",
1165
- "/_authenticated/_system/healthchecks",
1166
- "/_authenticated/_system/job-queue",
1167
- "/_authenticated/_tax-categories/tax-categories",
1168
- "/_authenticated/_tax-rates/tax-rates",
1169
- "/_authenticated/_zones/zones",
1170
- "/_authenticated/_administrators/administrators_/$id",
1171
- "/_authenticated/_channels/channels_/$id",
1172
- "/_authenticated/_collections/collections_/$id",
1173
- "/_authenticated/_countries/countries_/$id",
1174
- "/_authenticated/_customer-groups/customer-groups_/$id",
1175
- "/_authenticated/_customers/customers_/$id",
1176
- "/_authenticated/_facets/facets_/$id",
1177
- "/_authenticated/_orders/orders_/$id",
1178
- "/_authenticated/_payment-methods/payment-methods_/$id",
1179
- "/_authenticated/_product-variants/product-variants_/$id",
1180
- "/_authenticated/_products/products_/$id",
1181
- "/_authenticated/_promotions/promotions_/$id",
1182
- "/_authenticated/_roles/roles_/$id",
1183
- "/_authenticated/_sellers/sellers_/$id",
1184
- "/_authenticated/_shipping-methods/shipping-methods_/$id",
1185
- "/_authenticated/_stock-locations/stock-locations_/$id",
1186
- "/_authenticated/_tax-categories/tax-categories_/$id",
1187
- "/_authenticated/_tax-rates/tax-rates_/$id",
1188
- "/_authenticated/_zones/zones_/$id"
1189
- ]
1190
- },
1191
- "/login": {
1192
- "filePath": "login.tsx"
1193
- },
1194
- "/_authenticated/": {
1195
- "filePath": "_authenticated/index.tsx",
1196
- "parent": "/_authenticated"
1197
- },
1198
- "/_authenticated/_administrators/administrators": {
1199
- "filePath": "_authenticated/_administrators/administrators.tsx",
1200
- "parent": "/_authenticated"
1201
- },
1202
- "/_authenticated/_assets/assets": {
1203
- "filePath": "_authenticated/_assets/assets.tsx",
1204
- "parent": "/_authenticated"
1205
- },
1206
- "/_authenticated/_channels/channels": {
1207
- "filePath": "_authenticated/_channels/channels.tsx",
1208
- "parent": "/_authenticated"
1209
- },
1210
- "/_authenticated/_collections/collections": {
1211
- "filePath": "_authenticated/_collections/collections.tsx",
1212
- "parent": "/_authenticated"
1213
- },
1214
- "/_authenticated/_countries/countries": {
1215
- "filePath": "_authenticated/_countries/countries.tsx",
1216
- "parent": "/_authenticated"
1217
- },
1218
- "/_authenticated/_customer-groups/customer-groups": {
1219
- "filePath": "_authenticated/_customer-groups/customer-groups.tsx",
1220
- "parent": "/_authenticated"
1221
- },
1222
- "/_authenticated/_customers/customers": {
1223
- "filePath": "_authenticated/_customers/customers.tsx",
1224
- "parent": "/_authenticated"
1225
- },
1226
- "/_authenticated/_facets/facets": {
1227
- "filePath": "_authenticated/_facets/facets.tsx",
1228
- "parent": "/_authenticated"
1229
- },
1230
- "/_authenticated/_global-settings/global-settings": {
1231
- "filePath": "_authenticated/_global-settings/global-settings.tsx",
1232
- "parent": "/_authenticated"
1233
- },
1234
- "/_authenticated/_orders/orders": {
1235
- "filePath": "_authenticated/_orders/orders.tsx",
1236
- "parent": "/_authenticated"
1237
- },
1238
- "/_authenticated/_payment-methods/payment-methods": {
1239
- "filePath": "_authenticated/_payment-methods/payment-methods.tsx",
1240
- "parent": "/_authenticated"
1241
- },
1242
- "/_authenticated/_product-variants/product-variants": {
1243
- "filePath": "_authenticated/_product-variants/product-variants.tsx",
1244
- "parent": "/_authenticated"
1245
- },
1246
- "/_authenticated/_products/products": {
1247
- "filePath": "_authenticated/_products/products.tsx",
1248
- "parent": "/_authenticated"
1249
- },
1250
- "/_authenticated/_profile/profile": {
1251
- "filePath": "_authenticated/_profile/profile.tsx",
1252
- "parent": "/_authenticated"
1253
- },
1254
- "/_authenticated/_promotions/promotions": {
1255
- "filePath": "_authenticated/_promotions/promotions.tsx",
1256
- "parent": "/_authenticated"
1257
- },
1258
- "/_authenticated/_roles/roles": {
1259
- "filePath": "_authenticated/_roles/roles.tsx",
1260
- "parent": "/_authenticated"
1261
- },
1262
- "/_authenticated/_sellers/sellers": {
1263
- "filePath": "_authenticated/_sellers/sellers.tsx",
1264
- "parent": "/_authenticated"
1265
- },
1266
- "/_authenticated/_shipping-methods/shipping-methods": {
1267
- "filePath": "_authenticated/_shipping-methods/shipping-methods.tsx",
1268
- "parent": "/_authenticated"
1269
- },
1270
- "/_authenticated/_stock-locations/stock-locations": {
1271
- "filePath": "_authenticated/_stock-locations/stock-locations.tsx",
1272
- "parent": "/_authenticated"
1273
- },
1274
- "/_authenticated/_system/healthchecks": {
1275
- "filePath": "_authenticated/_system/healthchecks.tsx",
1276
- "parent": "/_authenticated"
1277
- },
1278
- "/_authenticated/_system/job-queue": {
1279
- "filePath": "_authenticated/_system/job-queue.tsx",
1280
- "parent": "/_authenticated"
1281
- },
1282
- "/_authenticated/_tax-categories/tax-categories": {
1283
- "filePath": "_authenticated/_tax-categories/tax-categories.tsx",
1284
- "parent": "/_authenticated"
1285
- },
1286
- "/_authenticated/_tax-rates/tax-rates": {
1287
- "filePath": "_authenticated/_tax-rates/tax-rates.tsx",
1288
- "parent": "/_authenticated"
1289
- },
1290
- "/_authenticated/_zones/zones": {
1291
- "filePath": "_authenticated/_zones/zones.tsx",
1292
- "parent": "/_authenticated"
1293
- },
1294
- "/_authenticated/_administrators/administrators_/$id": {
1295
- "filePath": "_authenticated/_administrators/administrators_.$id.tsx",
1296
- "parent": "/_authenticated"
1297
- },
1298
- "/_authenticated/_channels/channels_/$id": {
1299
- "filePath": "_authenticated/_channels/channels_.$id.tsx",
1300
- "parent": "/_authenticated"
1301
- },
1302
- "/_authenticated/_collections/collections_/$id": {
1303
- "filePath": "_authenticated/_collections/collections_.$id.tsx",
1304
- "parent": "/_authenticated"
1305
- },
1306
- "/_authenticated/_countries/countries_/$id": {
1307
- "filePath": "_authenticated/_countries/countries_.$id.tsx",
1308
- "parent": "/_authenticated"
1309
- },
1310
- "/_authenticated/_customer-groups/customer-groups_/$id": {
1311
- "filePath": "_authenticated/_customer-groups/customer-groups_.$id.tsx",
1312
- "parent": "/_authenticated"
1313
- },
1314
- "/_authenticated/_customers/customers_/$id": {
1315
- "filePath": "_authenticated/_customers/customers_.$id.tsx",
1316
- "parent": "/_authenticated"
1317
- },
1318
- "/_authenticated/_facets/facets_/$id": {
1319
- "filePath": "_authenticated/_facets/facets_.$id.tsx",
1320
- "parent": "/_authenticated"
1321
- },
1322
- "/_authenticated/_orders/orders_/$id": {
1323
- "filePath": "_authenticated/_orders/orders_.$id.tsx",
1324
- "parent": "/_authenticated"
1325
- },
1326
- "/_authenticated/_payment-methods/payment-methods_/$id": {
1327
- "filePath": "_authenticated/_payment-methods/payment-methods_.$id.tsx",
1328
- "parent": "/_authenticated"
1329
- },
1330
- "/_authenticated/_product-variants/product-variants_/$id": {
1331
- "filePath": "_authenticated/_product-variants/product-variants_.$id.tsx",
1332
- "parent": "/_authenticated"
1333
- },
1334
- "/_authenticated/_products/products_/$id": {
1335
- "filePath": "_authenticated/_products/products_.$id.tsx",
1336
- "parent": "/_authenticated"
1337
- },
1338
- "/_authenticated/_promotions/promotions_/$id": {
1339
- "filePath": "_authenticated/_promotions/promotions_.$id.tsx",
1340
- "parent": "/_authenticated"
1341
- },
1342
- "/_authenticated/_roles/roles_/$id": {
1343
- "filePath": "_authenticated/_roles/roles_.$id.tsx",
1344
- "parent": "/_authenticated"
1345
- },
1346
- "/_authenticated/_sellers/sellers_/$id": {
1347
- "filePath": "_authenticated/_sellers/sellers_.$id.tsx",
1348
- "parent": "/_authenticated"
1349
- },
1350
- "/_authenticated/_shipping-methods/shipping-methods_/$id": {
1351
- "filePath": "_authenticated/_shipping-methods/shipping-methods_.$id.tsx",
1352
- "parent": "/_authenticated"
1353
- },
1354
- "/_authenticated/_stock-locations/stock-locations_/$id": {
1355
- "filePath": "_authenticated/_stock-locations/stock-locations_.$id.tsx",
1356
- "parent": "/_authenticated"
1357
- },
1358
- "/_authenticated/_tax-categories/tax-categories_/$id": {
1359
- "filePath": "_authenticated/_tax-categories/tax-categories_.$id.tsx",
1360
- "parent": "/_authenticated"
1361
- },
1362
- "/_authenticated/_tax-rates/tax-rates_/$id": {
1363
- "filePath": "_authenticated/_tax-rates/tax-rates_.$id.tsx",
1364
- "parent": "/_authenticated"
1365
- },
1366
- "/_authenticated/_zones/zones_/$id": {
1367
- "filePath": "_authenticated/_zones/zones_.$id.tsx",
1368
- "parent": "/_authenticated"
1369
- }
1370
- }
1371
- }
1372
- ROUTE_MANIFEST_END */