@mookielianhd/n8n-nodes-instagram 2.0.0 → 2.2.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.
- package/README.md +64 -64
- package/dist/credentials/InstagramApi.credentials.js +1 -1
- package/dist/credentials/InstagramApi.credentials.js.map +1 -1
- package/dist/credentials/instagram.svg +26 -26
- package/dist/nodes/Instagram/Instagram.node.js +240 -20
- package/dist/nodes/Instagram/Instagram.node.js.map +1 -1
- package/dist/nodes/Instagram/instagram.dark.svg +26 -26
- package/dist/nodes/Instagram/instagram.svg +26 -26
- package/dist/nodes/Instagram/resources/image/index.js +3 -1
- package/dist/nodes/Instagram/resources/image/index.js.map +1 -1
- package/dist/nodes/Instagram/resources/reels/index.js +1 -0
- package/dist/nodes/Instagram/resources/reels/index.js.map +1 -1
- package/dist/package.json +1 -4
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +52 -55
- package/dist/credentials/FacebookGraphApi.credentials.d.ts +0 -9
- package/dist/credentials/FacebookGraphApi.credentials.js +0 -31
- package/dist/credentials/FacebookGraphApi.credentials.js.map +0 -1
- package/dist/credentials/facebook.svg +0 -1
package/package.json
CHANGED
|
@@ -1,55 +1,52 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@mookielianhd/n8n-nodes-instagram",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Instagram node for n8n",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"homepage": "",
|
|
7
|
-
"keywords": [
|
|
8
|
-
"n8n-community-node-package"
|
|
9
|
-
],
|
|
10
|
-
"author": {
|
|
11
|
-
"name": "MookieLian",
|
|
12
|
-
"email": "mookielianhd@gmail.com"
|
|
13
|
-
},
|
|
14
|
-
"repository": {
|
|
15
|
-
"type": "git",
|
|
16
|
-
"url": "git+https://github.com/MookieLian/n8n-nodes-instagram.git"
|
|
17
|
-
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "n8n-node build",
|
|
20
|
-
"build:watch": "tsc --watch",
|
|
21
|
-
"dev": "n8n-node dev",
|
|
22
|
-
"lint": "n8n-node lint",
|
|
23
|
-
"lint:fix": "n8n-node lint --fix",
|
|
24
|
-
"release": "n8n-node release",
|
|
25
|
-
"prepublishOnly": "n8n-node prerelease"
|
|
26
|
-
},
|
|
27
|
-
"files": [
|
|
28
|
-
"dist"
|
|
29
|
-
],
|
|
30
|
-
"n8n": {
|
|
31
|
-
"n8nNodesApiVersion": 1,
|
|
32
|
-
"strict": true,
|
|
33
|
-
"nodes": [
|
|
34
|
-
"dist/nodes/Instagram/Instagram.node.js"
|
|
35
|
-
],
|
|
36
|
-
"credentials": [
|
|
37
|
-
"dist/credentials/InstagramApi.credentials.js"
|
|
38
|
-
]
|
|
39
|
-
},
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@n8n/node-cli": "*",
|
|
42
|
-
"@types/estree": "^1.0.8",
|
|
43
|
-
"@types/json-schema": "^7.0.15",
|
|
44
|
-
"eslint": "9.32.0",
|
|
45
|
-
"prettier": "3.6.2",
|
|
46
|
-
"release-it": "^19.0.4",
|
|
47
|
-
"typescript": "5.9.2"
|
|
48
|
-
},
|
|
49
|
-
"peerDependencies": {
|
|
50
|
-
"n8n-workflow": "*"
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
"node": "^22.21.1"
|
|
54
|
-
}
|
|
55
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@mookielianhd/n8n-nodes-instagram",
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "Instagram node for n8n",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"n8n-community-node-package"
|
|
9
|
+
],
|
|
10
|
+
"author": {
|
|
11
|
+
"name": "MookieLian",
|
|
12
|
+
"email": "mookielianhd@gmail.com"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/MookieLian/n8n-nodes-instagram.git"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "n8n-node build",
|
|
20
|
+
"build:watch": "tsc --watch",
|
|
21
|
+
"dev": "n8n-node dev",
|
|
22
|
+
"lint": "n8n-node lint",
|
|
23
|
+
"lint:fix": "n8n-node lint --fix",
|
|
24
|
+
"release": "n8n-node release",
|
|
25
|
+
"prepublishOnly": "n8n-node prerelease"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"n8n": {
|
|
31
|
+
"n8nNodesApiVersion": 1,
|
|
32
|
+
"strict": true,
|
|
33
|
+
"nodes": [
|
|
34
|
+
"dist/nodes/Instagram/Instagram.node.js"
|
|
35
|
+
],
|
|
36
|
+
"credentials": [
|
|
37
|
+
"dist/credentials/InstagramApi.credentials.js"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@n8n/node-cli": "*",
|
|
42
|
+
"@types/estree": "^1.0.8",
|
|
43
|
+
"@types/json-schema": "^7.0.15",
|
|
44
|
+
"eslint": "9.32.0",
|
|
45
|
+
"prettier": "3.6.2",
|
|
46
|
+
"release-it": "^19.0.4",
|
|
47
|
+
"typescript": "5.9.2"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"n8n-workflow": "*"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { ICredentialTestRequest, ICredentialType, INodeProperties, Icon } from 'n8n-workflow';
|
|
2
|
-
export declare class FacebookGraphApi implements ICredentialType {
|
|
3
|
-
name: string;
|
|
4
|
-
displayName: string;
|
|
5
|
-
icon: Icon;
|
|
6
|
-
documentationUrl: string;
|
|
7
|
-
properties: INodeProperties[];
|
|
8
|
-
test: ICredentialTestRequest;
|
|
9
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FacebookGraphApi = void 0;
|
|
4
|
-
class FacebookGraphApi {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.name = 'facebookGraphApi';
|
|
7
|
-
this.displayName = 'Facebook Graph API';
|
|
8
|
-
this.icon = 'file:facebook.svg';
|
|
9
|
-
this.documentationUrl = 'https://developers.facebook.com/docs/graph-api';
|
|
10
|
-
this.properties = [
|
|
11
|
-
{
|
|
12
|
-
displayName: 'Access Token',
|
|
13
|
-
name: 'accessToken',
|
|
14
|
-
type: 'string',
|
|
15
|
-
typeOptions: { password: true },
|
|
16
|
-
required: true,
|
|
17
|
-
default: '',
|
|
18
|
-
description: 'Facebook Graph API access token',
|
|
19
|
-
},
|
|
20
|
-
];
|
|
21
|
-
this.test = {
|
|
22
|
-
request: {
|
|
23
|
-
baseURL: 'https://graph.facebook.com/',
|
|
24
|
-
url: '/me',
|
|
25
|
-
method: 'GET',
|
|
26
|
-
},
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
exports.FacebookGraphApi = FacebookGraphApi;
|
|
31
|
-
//# sourceMappingURL=FacebookGraphApi.credentials.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FacebookGraphApi.credentials.js","sourceRoot":"","sources":["../../credentials/FacebookGraphApi.credentials.ts"],"names":[],"mappings":";;;AAOA,MAAa,gBAAgB;IAA7B;QACC,SAAI,GAAG,kBAAkB,CAAC;QAE1B,gBAAW,GAAG,oBAAoB,CAAC;QAEnC,SAAI,GAAS,mBAAmB,CAAC;QAEjC,qBAAgB,GAAG,gDAAgD,CAAC;QAEpE,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,cAAc;gBAC3B,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,QAAQ,EAAE,IAAI;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,iCAAiC;aAC9C;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,6BAA6B;gBACtC,GAAG,EAAE,KAAK;gBACV,MAAM,EAAE,KAAK;aACb;SACD,CAAC;IACH,CAAC;CAAA;AA5BD,4CA4BC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path fill="#1877f2" d="M59.5 30C59.5 13.71 46.29.5 30 .5S.5 13.71.5 30c0 14.72 10.79 26.93 24.89 29.14V38.53H17.9V30h7.49v-6.5c0-7.39 4.4-11.48 11.14-11.48 3.23 0 6.6.58 6.6.58v7.26h-3.72c-3.66 0-4.81 2.27-4.81 4.61V30h8.18l-1.31 8.53H34.6v20.61C48.71 56.93 59.5 44.72 59.5 30"/><path fill="#fff" d="M41.48 38.53 42.79 30h-8.18v-5.53c0-2.33 1.14-4.61 4.81-4.61h3.72V12.6s-3.38-.58-6.6-.58c-6.74 0-11.14 4.08-11.14 11.48V30h-7.5v8.53h7.49v20.61c1.5.24 3.04.36 4.61.36s3.11-.12 4.61-.36V38.53z"/></svg>
|