@vendure/dashboard 3.5.2-master-202511270232 → 3.5.2-master-202511290231

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vendure/dashboard",
3
3
  "private": false,
4
- "version": "3.5.2-master-202511270232",
4
+ "version": "3.5.2-master-202511290231",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",
@@ -155,8 +155,8 @@
155
155
  "@storybook/addon-vitest": "^10.0.0-beta.9",
156
156
  "@storybook/react-vite": "^10.0.0-beta.9",
157
157
  "@types/node": "^22.13.4",
158
- "@vendure/common": "^3.5.2-master-202511270232",
159
- "@vendure/core": "^3.5.2-master-202511270232",
158
+ "@vendure/common": "^3.5.2-master-202511290231",
159
+ "@vendure/core": "^3.5.2-master-202511290231",
160
160
  "@vitest/browser": "^3.2.4",
161
161
  "@vitest/coverage-v8": "^3.2.4",
162
162
  "eslint": "^9.19.0",
@@ -173,5 +173,5 @@
173
173
  "lightningcss-linux-arm64-musl": "^1.29.3",
174
174
  "lightningcss-linux-x64-musl": "^1.29.1"
175
175
  },
176
- "gitHead": "75e34064eb76a4ced818d4e4c4104d3334555130"
176
+ "gitHead": "0af614693c5b72f0c54d7b8c21f82a40e1baf4c4"
177
177
  }
@@ -92,6 +92,7 @@ export const productVariantDetailDocument = graphql(
92
92
  }
93
93
  trackInventory
94
94
  outOfStockThreshold
95
+ useGlobalOutOfStockThreshold
95
96
  stockLevels {
96
97
  id
97
98
  stockOnHand
@@ -97,6 +97,7 @@ function ProductVariantDetailPage() {
97
97
  prices: entity.prices,
98
98
  trackInventory: entity.trackInventory,
99
99
  outOfStockThreshold: entity.outOfStockThreshold,
100
+ useGlobalOutOfStockThreshold : entity.useGlobalOutOfStockThreshold,
100
101
  stockLevels: entity.stockLevels.map(stockLevel => ({
101
102
  stockOnHand: stockLevel.stockOnHand,
102
103
  stockLocationId: stockLevel.stockLocation.id,