@junglesub/n8n-nodes-ajam 0.4.0 → 0.4.1

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.
Files changed (2) hide show
  1. package/README.md +49 -49
  2. package/package.json +43 -38
package/README.md CHANGED
@@ -1,49 +1,49 @@
1
- # @junglesub/n8n-nodes-ajam
2
-
3
- Custom n8n community node package for aJam automation.
4
-
5
- ## Nodes
6
-
7
- - `aJam`
8
- - `AI Cleanup > Run Scheduled Cleanup`
9
- - `Daily Reminder > List Missing Timesheet Users`
10
- - `Daily Reminder > Mark Reminder Sent`
11
- - `Notion > Run Daily Maintenance`
12
-
13
- The node has two outputs:
14
-
15
- - `Summary`: normal operation results.
16
- - `Alerts`: alert-ready items for failed Notion maintenance or AI cleanup runs. This output is empty when there are no automation errors.
17
-
18
- ## Credentials
19
-
20
- Create an `aJam API` credential in n8n:
21
-
22
- - `Base URL`: deployed aJam URL, for example `https://ajam.example.com`
23
- - `Internal API Token`: same value as `AJAM_INTERNAL_API_TOKEN` in aJam
24
-
25
- ## Local Install
26
-
27
- Build the package from the repository root:
28
-
29
- ```powershell
30
- pnpm --filter @junglesub/n8n-nodes-ajam build
31
- ```
32
-
33
- Install from the public npm registry:
34
-
35
- ```bash
36
- pnpm add @junglesub/n8n-nodes-ajam
37
- ```
38
-
39
- ## Publish
40
-
41
- The package publishes to the public npm registry. GitHub Actions publishes automatically when the package `version` changes on `main` and n8n node verification passes. The repository secret `NPM_TOKEN` must contain an npm automation token.
42
-
43
- Manual publish, if needed:
44
-
45
- ```bash
46
- pnpm --filter @junglesub/n8n-nodes-ajam build
47
- cd packages/n8n-nodes-ajam
48
- pnpm publish --access public
49
- ```
1
+ # @junglesub/n8n-nodes-ajam
2
+
3
+ Custom n8n community node package for aJam automation.
4
+
5
+ ## Nodes
6
+
7
+ - `aJam`
8
+ - `AI Cleanup > Run Scheduled Cleanup`
9
+ - `Daily Reminder > List Missing Timesheet Users`
10
+ - `Daily Reminder > Mark Reminder Sent`
11
+ - `Notion > Run Daily Maintenance`
12
+
13
+ The node has two outputs:
14
+
15
+ - `Summary`: normal operation results.
16
+ - `Alerts`: alert-ready items for failed Notion maintenance or AI cleanup runs. This output is empty when there are no automation errors.
17
+
18
+ ## Credentials
19
+
20
+ Create an `aJam API` credential in n8n:
21
+
22
+ - `Base URL`: deployed aJam URL, for example `https://ajam.example.com`
23
+ - `Internal API Token`: same value as `AJAM_INTERNAL_API_TOKEN` in aJam
24
+
25
+ ## Local Install
26
+
27
+ Build the package from the repository root:
28
+
29
+ ```powershell
30
+ pnpm --filter @junglesub/n8n-nodes-ajam build
31
+ ```
32
+
33
+ Install from the public npm registry:
34
+
35
+ ```bash
36
+ pnpm add @junglesub/n8n-nodes-ajam
37
+ ```
38
+
39
+ ## Publish
40
+
41
+ The package publishes to the public npm registry. GitHub Actions publishes automatically when the package `version` changes on `main` and n8n node verification passes. npm Trusted Publishing must be configured for this repository and workflow on npmjs.com.
42
+
43
+ Manual publish, if needed:
44
+
45
+ ```bash
46
+ pnpm --filter @junglesub/n8n-nodes-ajam build
47
+ cd packages/n8n-nodes-ajam
48
+ pnpm publish --access public
49
+ ```
package/package.json CHANGED
@@ -1,39 +1,44 @@
1
- {
2
- "name": "@junglesub/n8n-nodes-ajam",
3
- "version": "0.4.0",
4
- "description": "n8n community nodes for aJam automation.",
5
- "license": "MIT",
6
- "type": "commonjs",
7
- "main": "dist/nodes/Ajam/Ajam.node.js",
8
- "publishConfig": {
9
- "access": "public",
10
- "registry": "https://registry.npmjs.org"
11
- },
12
- "files": [
13
- "dist"
14
- ],
15
- "scripts": {
16
- "build": "tsc -p tsconfig.json && node scripts/copy-assets.mjs",
17
- "typecheck": "tsc --noEmit -p tsconfig.json"
18
- },
19
- "keywords": [
20
- "n8n-community-node-package",
21
- "n8n",
22
- "ajam",
23
- "timesheet"
24
- ],
25
- "n8n": {
26
- "n8nNodesApiVersion": 1,
27
- "credentials": [
28
- "dist/credentials/AjamApi.credentials.js"
29
- ],
30
- "nodes": [
31
- "dist/nodes/Ajam/Ajam.node.js"
32
- ]
33
- },
34
- "devDependencies": {
35
- "n8n-core": "^1.0.0",
36
- "n8n-workflow": "^1.0.0",
37
- "typescript": "^5.9.3"
38
- }
1
+ {
2
+ "name": "@junglesub/n8n-nodes-ajam",
3
+ "version": "0.4.1",
4
+ "description": "n8n community nodes for aJam automation.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/junglesub/ajam.git",
9
+ "directory": "packages/n8n-nodes-ajam"
10
+ },
11
+ "type": "commonjs",
12
+ "main": "dist/nodes/Ajam/Ajam.node.js",
13
+ "publishConfig": {
14
+ "access": "public",
15
+ "registry": "https://registry.npmjs.org"
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "keywords": [
21
+ "n8n-community-node-package",
22
+ "n8n",
23
+ "ajam",
24
+ "timesheet"
25
+ ],
26
+ "n8n": {
27
+ "n8nNodesApiVersion": 1,
28
+ "credentials": [
29
+ "dist/credentials/AjamApi.credentials.js"
30
+ ],
31
+ "nodes": [
32
+ "dist/nodes/Ajam/Ajam.node.js"
33
+ ]
34
+ },
35
+ "devDependencies": {
36
+ "n8n-core": "^1.0.0",
37
+ "n8n-workflow": "^1.0.0",
38
+ "typescript": "^5.9.3"
39
+ },
40
+ "scripts": {
41
+ "build": "tsc -p tsconfig.json && node scripts/copy-assets.mjs",
42
+ "typecheck": "tsc --noEmit -p tsconfig.json"
43
+ }
39
44
  }