@etsoo/smarterp-core 1.1.1 → 1.1.2

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.
@@ -11,6 +11,10 @@ on:
11
11
  # release:
12
12
  # types: [created]
13
13
 
14
+ permissions:
15
+ id-token: write # Required for OIDC
16
+ contents: read
17
+
14
18
  jobs:
15
19
  # Publish to NPM
16
20
  publish-npm:
@@ -52,9 +56,8 @@ jobs:
52
56
  - name: Publish if necessary
53
57
  id: publish
54
58
  if: ${{ steps.check.outputs.exists == '0' }} # package version doesn't yet exist, ship it!
55
- run: npm publish --access public
56
- env:
57
- NODE_AUTH_TOKEN: ${{ secrets.ETSOONpmToken }}
59
+ run: npm publish
60
+
58
61
  - name: Report publish status
59
62
  if: ${{ steps.check.outputs.exists == '1' }}
60
63
  run: 'echo "package version already exists on npm registry"'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/smarterp-core",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "TypeScript APIs for SmartERP Core",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "git+https://github.com/ETSOO/etsoo-smarterp-core.git"
27
+ "url": "git+https://github.com/ETSOO/smarterp-core.git"
28
28
  },
29
29
  "keywords": [
30
30
  "TypeScript",
@@ -38,30 +38,30 @@
38
38
  ],
39
39
  "author": "ETSOO",
40
40
  "license": "MIT",
41
- "homepage": "https://github.com/ETSOO/etsoo-smarterp-core#readme",
41
+ "homepage": "https://github.com/ETSOO/smarterp-core#readme",
42
42
  "devDependencies": {
43
43
  "@babel/cli": "^7.28.3",
44
44
  "@babel/core": "^7.28.5",
45
45
  "@babel/plugin-transform-runtime": "^7.28.5",
46
46
  "@babel/preset-env": "^7.28.5",
47
47
  "@babel/runtime-corejs3": "^7.28.4",
48
- "@types/react": "^19.2.5",
48
+ "@types/react": "^19.2.7",
49
49
  "@types/react-dom": "^19.2.3",
50
- "@vitejs/plugin-react": "^5.1.1",
51
- "jsdom": "^27.2.0",
50
+ "@vitejs/plugin-react": "^5.1.2",
51
+ "jsdom": "^27.3.0",
52
52
  "typescript": "^5.9.3",
53
- "vitest": "^4.0.9"
53
+ "vitest": "^4.0.15"
54
54
  },
55
55
  "dependencies": {
56
- "@etsoo/appscript": "^1.6.48",
57
- "@etsoo/materialui": "^1.5.88",
58
- "@etsoo/react": "^1.8.63",
59
- "@etsoo/shared": "^1.2.79",
56
+ "@etsoo/appscript": "^1.6.49",
57
+ "@etsoo/materialui": "^1.5.90",
58
+ "@etsoo/react": "^1.8.64",
59
+ "@etsoo/shared": "^1.2.80",
60
60
  "@etsoo/toolpad": "^1.0.42",
61
- "@mui/material": "^7.3.5",
61
+ "@mui/material": "^7.3.6",
62
62
  "ajv": "^8.17.1",
63
63
  "ajv-formats": "^3.0.1",
64
- "react": "^19.2.0",
65
- "react-dom": "^19.2.0"
64
+ "react": "^19.2.1",
65
+ "react-dom": "^19.2.1"
66
66
  }
67
67
  }