n8n-nodes-socialfetch 0.1.0 → 0.13.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.
Files changed (2) hide show
  1. package/README.md +15 -4
  2. package/package.json +59 -59
package/README.md CHANGED
@@ -30,14 +30,25 @@ Every request consumes credits from your SocialFetch balance (most endpoints cos
30
30
 
31
31
  ## Development
32
32
 
33
+ The node descriptions are generated from the SocialFetch OpenAPI spec.
34
+
33
35
  ```bash
34
- pnpm install
35
- pnpm run lint:fix
36
+ # from the repo root (codegen + eslint fix on generated descriptions)
37
+ pnpm generate:n8n
38
+
39
+ # full derived check before a PR (openapi, sdk, zapier, n8n, …)
40
+ pnpm check:derived
41
+
42
+ # local dev (standalone pnpm project — not part of the root pnpm workspace)
43
+ cd integrations/n8n
44
+ pnpm install --ignore-workspace
36
45
  pnpm run build
37
- pnpm run dev # local n8n at http://localhost:5678 with this node loaded
46
+ pnpm run dev # http://localhost:5678
38
47
  ```
39
48
 
40
- Source of truth for API coverage lives in the [SocialFetch](https://github.com/social-freak-ltd/socialfetch) monorepo (`integrations/n8n/`). Sync generated description files from there when the public API changes.
49
+ `generate:n8n` syncs the package **version** from `@socialfetch/sdk`, regenerates descriptions, and runs `lint:fix`. `check:derived` also runs `check:n8n` (install, lint, build).
50
+
51
+ Releases and syncing to [n8n-nodes-socialfetch](https://github.com/social-freak-ltd/n8n-nodes-socialfetch) are automated from the monorepo — see [PUBLISHING.md](PUBLISHING.md).
41
52
 
42
53
  ## License
43
54
 
package/package.json CHANGED
@@ -1,61 +1,61 @@
1
1
  {
2
- "name": "n8n-nodes-socialfetch",
3
- "version": "0.1.0",
4
- "description": "Fetch social media and web data with the SocialFetch API.",
5
- "keywords": [
6
- "n8n-community-node-package",
7
- "socialfetch",
8
- "social-media",
9
- "tiktok",
10
- "instagram",
11
- "youtube",
12
- "twitter"
13
- ],
14
- "license": "MIT",
15
- "homepage": "https://www.socialfetch.dev",
16
- "author": {
17
- "name": "Social Fetch"
18
- },
19
- "repository": {
20
- "type": "git",
21
- "url": "git+https://github.com/social-freak-ltd/n8n-nodes-socialfetch.git"
22
- },
23
- "publishConfig": {
24
- "access": "public"
25
- },
26
- "packageManager": "pnpm@10.33.0",
27
- "engines": {
28
- "node": ">=22"
29
- },
30
- "main": "dist/index.js",
31
- "scripts": {
32
- "build": "n8n-node build",
33
- "dev": "n8n-node dev",
34
- "lint": "n8n-node lint",
35
- "lint:fix": "n8n-node lint --fix",
36
- "release": "n8n-node release",
37
- "prepublishOnly": "n8n-node prerelease"
38
- },
39
- "files": [
40
- "dist"
41
- ],
42
- "n8n": {
43
- "n8nNodesApiVersion": 1,
44
- "credentials": [
45
- "dist/credentials/SocialFetchApi.credentials.js"
46
- ],
47
- "nodes": [
48
- "dist/nodes/SocialFetch/SocialFetch.node.js"
49
- ]
50
- },
51
- "devDependencies": {
52
- "@n8n/node-cli": "0.32.1",
53
- "eslint": "9.39.4",
54
- "n8n-workflow": "2.16.0",
55
- "prettier": "3.8.3",
56
- "typescript": "5.9.3"
57
- },
58
- "peerDependencies": {
59
- "n8n-workflow": "*"
60
- }
2
+ "name": "n8n-nodes-socialfetch",
3
+ "version": "0.13.2",
4
+ "description": "Fetch social media and web data with the SocialFetch API.",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "socialfetch",
8
+ "social-media",
9
+ "tiktok",
10
+ "instagram",
11
+ "youtube",
12
+ "twitter"
13
+ ],
14
+ "license": "MIT",
15
+ "homepage": "https://www.socialfetch.dev",
16
+ "author": {
17
+ "name": "Social Fetch"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/social-freak-ltd/n8n-nodes-socialfetch.git"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "packageManager": "pnpm@10.33.0",
27
+ "engines": {
28
+ "node": ">=22"
29
+ },
30
+ "main": "dist/index.js",
31
+ "scripts": {
32
+ "build": "n8n-node build",
33
+ "dev": "n8n-node dev",
34
+ "lint": "n8n-node lint",
35
+ "lint:fix": "n8n-node lint --fix",
36
+ "release": "n8n-node release",
37
+ "prepublishOnly": "n8n-node prerelease"
38
+ },
39
+ "files": [
40
+ "dist"
41
+ ],
42
+ "n8n": {
43
+ "n8nNodesApiVersion": 1,
44
+ "credentials": [
45
+ "dist/credentials/SocialFetchApi.credentials.js"
46
+ ],
47
+ "nodes": [
48
+ "dist/nodes/SocialFetch/SocialFetch.node.js"
49
+ ]
50
+ },
51
+ "devDependencies": {
52
+ "@n8n/node-cli": "0.32.1",
53
+ "eslint": "9.39.4",
54
+ "n8n-workflow": "2.16.0",
55
+ "prettier": "3.8.3",
56
+ "typescript": "5.9.3"
57
+ },
58
+ "peerDependencies": {
59
+ "n8n-workflow": "*"
60
+ }
61
61
  }