@medusajs/product 2.10.2-snapshot-20250912102418 → 2.10.3-preview-20250912180153

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.
@@ -1 +1 @@
1
- {"root":["../src/index.ts","../src/joiner-config.ts","../src/migrations/initialsetup20240401153642.ts","../src/migrations/migration20240601111544.ts","../src/migrations/migration202408271511.ts","../src/migrations/migration20241122120331.ts","../src/migrations/migration20241125090957.ts","../src/migrations/migration20250411073236.ts","../src/migrations/migration20250516081326.ts","../src/migrations/migration20250910154539.ts","../src/migrations/migration20250911092221.ts","../src/models/index.ts","../src/models/product-category.ts","../src/models/product-collection.ts","../src/models/product-image.ts","../src/models/product-option-value.ts","../src/models/product-option.ts","../src/models/product-tag.ts","../src/models/product-type.ts","../src/models/product-variant.ts","../src/models/product.ts","../src/repositories/index.ts","../src/repositories/product-category.ts","../src/repositories/product.ts","../src/schema/index.ts","../src/services/index.ts","../src/services/product-category.ts","../src/services/product-module-service.ts","../src/services/__tests__/index.ts","../src/types/index.ts","../src/utils/events.ts","../src/utils/index.ts"],"version":"5.6.2"}
1
+ {"root":["../src/index.ts","../src/joiner-config.ts","../src/migrations/InitialSetup20240401153642.ts","../src/migrations/Migration20240601111544.ts","../src/migrations/Migration202408271511.ts","../src/migrations/Migration20241122120331.ts","../src/migrations/Migration20241125090957.ts","../src/migrations/Migration20250411073236.ts","../src/migrations/Migration20250516081326.ts","../src/migrations/Migration20250910154539.ts","../src/migrations/Migration20250911092221.ts","../src/models/index.ts","../src/models/product-category.ts","../src/models/product-collection.ts","../src/models/product-image.ts","../src/models/product-option-value.ts","../src/models/product-option.ts","../src/models/product-tag.ts","../src/models/product-type.ts","../src/models/product-variant.ts","../src/models/product.ts","../src/repositories/index.ts","../src/repositories/product-category.ts","../src/repositories/product.ts","../src/schema/index.ts","../src/services/index.ts","../src/services/product-category.ts","../src/services/product-module-service.ts","../src/services/__tests__/index.ts","../src/types/index.ts","../src/utils/events.ts","../src/utils/index.ts"],"version":"5.6.2"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medusajs/product",
3
- "version": "2.10.2-snapshot-20250912102418",
3
+ "version": "2.10.3-preview-20250912180153",
4
4
  "description": "Medusa Product module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -23,9 +23,21 @@
23
23
  },
24
24
  "author": "Medusa",
25
25
  "license": "MIT",
26
+ "scripts": {
27
+ "watch": "tsc --build --watch",
28
+ "watch:test": "tsc --build tsconfig.spec.json --watch",
29
+ "resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
30
+ "build": "rimraf dist && tsc --build && npm run resolve:aliases",
31
+ "test": "jest --runInBand --bail --forceExit -- src/**/__tests__/**/*.ts",
32
+ "test:integration": "jest --bail --forceExit -- integration-tests/__tests__/**/*.spec.ts",
33
+ "migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts medusa-mikro-orm migration:create --initial",
34
+ "migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts medusa-mikro-orm migration:create",
35
+ "migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts medusa-mikro-orm migration:up",
36
+ "orm:cache:clear": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
37
+ },
26
38
  "devDependencies": {
27
- "@medusajs/framework": "2.10.2-snapshot-20250912102418",
28
- "@medusajs/test-utils": "2.10.2-snapshot-20250912102418",
39
+ "@medusajs/framework": "2.10.3-preview-20250912180153",
40
+ "@medusajs/test-utils": "2.10.3-preview-20250912180153",
29
41
  "@mikro-orm/cli": "6.4.3",
30
42
  "@mikro-orm/core": "6.4.3",
31
43
  "@mikro-orm/migrations": "6.4.3",
@@ -39,22 +51,10 @@
39
51
  "typescript": "^5.6.2"
40
52
  },
41
53
  "peerDependencies": {
42
- "@medusajs/framework": "2.10.2-snapshot-20250912102418",
54
+ "@medusajs/framework": "2.10.3-preview-20250912180153",
43
55
  "@mikro-orm/core": "6.4.3",
44
56
  "@mikro-orm/migrations": "6.4.3",
45
57
  "@mikro-orm/postgresql": "6.4.3",
46
58
  "awilix": "^8.0.1"
47
- },
48
- "scripts": {
49
- "watch": "tsc --build --watch",
50
- "watch:test": "tsc --build tsconfig.spec.json --watch",
51
- "resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
52
- "build": "rimraf dist && tsc --build && npm run resolve:aliases",
53
- "test": "jest --runInBand --bail --forceExit -- src/**/__tests__/**/*.ts",
54
- "test:integration": "jest --bail --forceExit -- integration-tests/__tests__/**/*.spec.ts",
55
- "migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts medusa-mikro-orm migration:create --initial",
56
- "migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts medusa-mikro-orm migration:create",
57
- "migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts medusa-mikro-orm migration:up",
58
- "orm:cache:clear": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
59
59
  }
60
- }
60
+ }