chore: Update modules deps (#9286)

This commit is contained in:
Adrien de Peretti
2024-09-26 11:14:35 +05:30
committed by GitHub
parent 11d8264062
commit e096feb7d5
518 changed files with 1115 additions and 957 deletions
@@ -1,7 +1,7 @@
import { moduleIntegrationTestRunner } from "medusa-test-utils"
import { IStockLocationService } from "@medusajs/types"
import { Module, Modules } from "@medusajs/utils"
import { IStockLocationService } from "@medusajs/framework/types"
import { Module, Modules } from "@medusajs/framework/utils"
import { StockLocationModuleService } from "../../src/services"
jest.setTimeout(100000)
@@ -1,6 +1,6 @@
import * as entities from "./src/models"
import { defineMikroOrmCliConfig, Modules } from "@medusajs/utils"
import { defineMikroOrmCliConfig, Modules } from "@medusajs/framework/utils"
export default defineMikroOrmCliConfig(Modules.STOCK_LOCATION, {
entities: Object.values(entities),
@@ -23,7 +23,7 @@
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/types": "^1.11.16",
"@medusajs/framework": "^0.0.1",
"@mikro-orm/cli": "5.9.7",
"cross-env": "^5.2.1",
"jest": "^29.7.0",
@@ -33,10 +33,8 @@
"tsc-alias": "^1.8.6",
"typescript": "^5.6.2"
},
"dependencies": {
"@medusajs/utils": "^1.11.9"
},
"peerDependencies": {
"@medusajs/framework": "^0.0.1",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",
@@ -1,5 +1,5 @@
import { StockLocationModuleService } from "@services"
import { ModuleExports } from "@medusajs/types"
import { ModuleExports } from "@medusajs/framework/types"
const moduleDefinition: ModuleExports = {
service: StockLocationModuleService,
@@ -1,4 +1,4 @@
import { defineJoinerConfig, Modules } from "@medusajs/utils"
import { defineJoinerConfig, Modules } from "@medusajs/framework/utils"
import { StockLocation } from "./models"
import { default as schema } from "./schema"
@@ -8,7 +8,7 @@ import {
import {
createPsqlIndexStatementHelper,
generateEntityId,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
const StockLocationAddressDeletedAtIndex = createPsqlIndexStatementHelper({
tableName: "stock_location_address",
@@ -3,7 +3,7 @@ import {
Searchable,
createPsqlIndexStatementHelper,
generateEntityId,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
import {
BeforeCreate,
Entity,
@@ -12,7 +12,7 @@ import {
StockLocationTypes,
UpdateStockLocationInput,
UpsertStockLocationInput,
} from "@medusajs/types"
} from "@medusajs/framework/types"
import {
InjectManager,
InjectTransactionManager,
@@ -21,7 +21,7 @@ import {
MedusaService,
Modules,
promiseAll,
} from "@medusajs/utils"
} from "@medusajs/framework/utils"
import { joinerConfig } from "../joiner-config"
import { StockLocation, StockLocationAddress } from "../models"