chore: Update modules deps (#9286)

This commit is contained in:
Adrien de Peretti
2024-09-26 07:44:35 +02:00
committed by GitHub
parent 11d8264062
commit e096feb7d5
518 changed files with 1115 additions and 957 deletions

View File

@@ -4,7 +4,7 @@ import {
createPsqlIndexStatementHelper,
generateEntityId,
kebabCase,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
import {
BeforeCreate,
Collection,

View File

@@ -16,7 +16,7 @@ import {
generateEntityId,
kebabCase,
Searchable,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
import Product from "./product"
const collectionHandleIndexName = "IDX_collection_handle_unique"

View File

@@ -14,7 +14,7 @@ import {
DALUtils,
createPsqlIndexStatementHelper,
generateEntityId,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
import Product from "./product"
const imageUrlIndexName = "IDX_product_image_url"

View File

@@ -2,7 +2,7 @@ import {
DALUtils,
createPsqlIndexStatementHelper,
generateEntityId,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
import {
BeforeCreate,
Collection,

View File

@@ -3,7 +3,7 @@ import {
Searchable,
createPsqlIndexStatementHelper,
generateEntityId,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
import {
BeforeCreate,
Cascade,

View File

@@ -15,7 +15,7 @@ import {
Searchable,
createPsqlIndexStatementHelper,
generateEntityId,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
import Product from "./product"
const tagValueIndexName = "IDX_tag_value_unique"

View File

@@ -13,7 +13,7 @@ import {
Searchable,
createPsqlIndexStatementHelper,
generateEntityId,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
const typeValueIndexName = "IDX_type_value_unique"
const typeValueIndexStatement = createPsqlIndexStatementHelper({

View File

@@ -3,7 +3,7 @@ import {
DALUtils,
generateEntityId,
Searchable,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
import {
BeforeCreate,
Collection,

View File

@@ -20,7 +20,7 @@ import {
ProductUtils,
Searchable,
toHandle,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
import ProductCategory from "./product-category"
import ProductCollection from "./product-collection"
import ProductImage from "./product-image"