@juhuu/sdk-ts 1.2.325 → 1.3.0

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.
@@ -0,0 +1,31 @@
1
+ name: Publish to npm
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ permissions:
9
+ contents: read
10
+ id-token: write # Required for OIDC
11
+
12
+ jobs:
13
+ publish:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+
18
+ - uses: actions/setup-node@v4
19
+ with:
20
+ node-version: '20'
21
+ registry-url: 'https://registry.npmjs.org'
22
+
23
+ - name: Install latest npm
24
+ run: npm install -g npm@latest
25
+
26
+ - run: npm ci
27
+ - run: npm run build
28
+
29
+ - name: Publish
30
+ run: npm publish --access public
31
+ # CRITICAL: Do NOT set NODE_AUTH_TOKEN or NPM_TOKEN env vars
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
+ "publishConfig": {
3
+ "provenance": true
4
+ },
2
5
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.325",
6
+ "version": "1.3.0",
4
7
  "description": "Typescript wrapper for JUHUU services",
5
8
  "main": "./dist/index.js",
6
9
  "module": "./dist/index.mjs",