feat: Add product routes and components to v2 in admin-next (#6958)

This commit is contained in:
Stevche Radevski
2024-04-06 11:59:52 +02:00
committed by GitHub
parent d333db0842
commit 07fb058d96
81 changed files with 597 additions and 144 deletions
@@ -1,5 +1,6 @@
import { apiKeys } from "./api-keys"
import { auth } from "./auth"
import { categories } from "./categories"
import { collections } from "./collections"
import { currencies } from "./currencies"
import { customers } from "./customers"
@@ -11,18 +12,21 @@ import { regions } from "./regions"
import { salesChannels } from "./sales-channels"
import { stockLocations } from "./stock-locations"
import { stores } from "./stores"
import { tags } from "./tags"
import { users } from "./users"
import { workflowExecutions } from "./workflow-executions"
export const client = {
auth: auth,
apiKeys: apiKeys,
categories: categories,
customers: customers,
currencies: currencies,
collections: collections,
promotions: promotions,
stores: stores,
salesChannels: salesChannels,
tags: tags,
users: users,
regions: regions,
invites: invites,