n8n-nodes-msteams-botframework 1.2.7 → 1.2.9
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.
|
@@ -20,8 +20,8 @@ class MsTeamsAIBot {
|
|
|
20
20
|
defaults: {
|
|
21
21
|
name: 'MS Teams AI Bot',
|
|
22
22
|
},
|
|
23
|
-
inputs: [
|
|
24
|
-
outputs: [
|
|
23
|
+
inputs: ['main'],
|
|
24
|
+
outputs: ['main'],
|
|
25
25
|
credentials: [
|
|
26
26
|
{
|
|
27
27
|
name: 'msTeamsBotFrameworkApi',
|
|
@@ -19,8 +19,8 @@ class MsTeamsBotFramework {
|
|
|
19
19
|
defaults: {
|
|
20
20
|
name: 'MS Teams Bot',
|
|
21
21
|
},
|
|
22
|
-
inputs: [
|
|
23
|
-
outputs: [
|
|
22
|
+
inputs: ['main'],
|
|
23
|
+
outputs: ['main'],
|
|
24
24
|
credentials: [
|
|
25
25
|
{
|
|
26
26
|
name: 'msTeamsBotFrameworkApi',
|
|
@@ -28,7 +28,7 @@ class MsTeamsBotFrameworkTrigger {
|
|
|
28
28
|
name: 'MS Teams Bot Trigger',
|
|
29
29
|
},
|
|
30
30
|
inputs: [],
|
|
31
|
-
outputs: [
|
|
31
|
+
outputs: ['main'],
|
|
32
32
|
credentials: [
|
|
33
33
|
{
|
|
34
34
|
name: 'msTeamsBotFrameworkApi',
|
|
@@ -41,8 +41,7 @@ class MsTeamsBotFrameworkTrigger {
|
|
|
41
41
|
httpMethod: 'POST',
|
|
42
42
|
responseMode: '={{$parameter["respondWhen"]}}',
|
|
43
43
|
responseData: '={{$parameter["responseData"]}}',
|
|
44
|
-
path: '',
|
|
45
|
-
isFullPath: true,
|
|
44
|
+
path: 'webhook',
|
|
46
45
|
},
|
|
47
46
|
],
|
|
48
47
|
properties: [
|
package/package.json
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "n8n-nodes-msteams-botframework",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "n8n node for MS Teams Azure Bot Framework",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"n8n-community-node-package",
|
|
7
|
-
"n8n",
|
|
8
|
-
"msteams",
|
|
9
|
-
"microsoft teams",
|
|
10
|
-
"bot framework",
|
|
11
|
-
"azure"
|
|
12
|
-
],
|
|
13
|
-
"license": "MIT",
|
|
14
|
-
"homepage": "https://weon.vn",
|
|
15
|
-
"author": {
|
|
16
|
-
"name": "Weon Software",
|
|
17
|
-
"email": "doannv@weon.vn"
|
|
18
|
-
},
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "https://github.com/
|
|
22
|
-
},
|
|
23
|
-
"main": "index.js",
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "tsc && gulp build:icons",
|
|
26
|
-
"dev": "tsc --watch",
|
|
27
|
-
"format": "prettier nodes credentials --write",
|
|
28
|
-
"lint": "eslint nodes credentials package.json",
|
|
29
|
-
"lintfix": "eslint nodes credentials package.json --fix",
|
|
30
|
-
"prepublishOnly": "npm run build"
|
|
31
|
-
},
|
|
32
|
-
"files": [
|
|
33
|
-
"dist"
|
|
34
|
-
],
|
|
35
|
-
"n8n": {
|
|
36
|
-
"n8nNodesApiVersion": 1,
|
|
37
|
-
"credentials": [
|
|
38
|
-
"dist/credentials/MsTeamsBotFrameworkApi.credentials.js"
|
|
39
|
-
],
|
|
40
|
-
"nodes": [
|
|
41
|
-
"dist/nodes/MsTeamsBotFramework/MsTeamsBotFramework.node.js",
|
|
42
|
-
"dist/nodes/MsTeamsBotFramework/MsTeamsBotFrameworkTrigger.node.js",
|
|
43
|
-
"dist/nodes/MsTeamsBotFramework/MsTeamsAIBot.node.js"
|
|
44
|
-
]
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@types/express": "^4.17.6",
|
|
48
|
-
"@types/node": "^18.16.0",
|
|
49
|
-
"@typescript-eslint/parser": "^5.59.0",
|
|
50
|
-
"eslint": "^8.39.0",
|
|
51
|
-
"eslint-plugin-n8n-nodes-base": "^1.12.0",
|
|
52
|
-
"gulp": "^4.0.2",
|
|
53
|
-
"n8n-workflow": "^1.
|
|
54
|
-
"prettier": "^2.8.8",
|
|
55
|
-
"typescript": "^5.0.4"
|
|
56
|
-
},
|
|
57
|
-
"peerDependencies": {
|
|
58
|
-
"n8n-workflow": "*"
|
|
59
|
-
},
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
}
|
|
64
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-msteams-botframework",
|
|
3
|
+
"version": "1.2.9",
|
|
4
|
+
"description": "n8n node for MS Teams Azure Bot Framework",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"n8n",
|
|
8
|
+
"msteams",
|
|
9
|
+
"microsoft teams",
|
|
10
|
+
"bot framework",
|
|
11
|
+
"azure"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"homepage": "https://weon.vn",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Weon Software",
|
|
17
|
+
"email": "doannv@weon.vn"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/weonVN/n8n-nodes-msteams-botframework.git"
|
|
22
|
+
},
|
|
23
|
+
"main": "index.js",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc && gulp build:icons",
|
|
26
|
+
"dev": "tsc --watch",
|
|
27
|
+
"format": "prettier nodes credentials --write",
|
|
28
|
+
"lint": "eslint nodes credentials package.json",
|
|
29
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
30
|
+
"prepublishOnly": "npm run build"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"n8n": {
|
|
36
|
+
"n8nNodesApiVersion": 1,
|
|
37
|
+
"credentials": [
|
|
38
|
+
"dist/credentials/MsTeamsBotFrameworkApi.credentials.js"
|
|
39
|
+
],
|
|
40
|
+
"nodes": [
|
|
41
|
+
"dist/nodes/MsTeamsBotFramework/MsTeamsBotFramework.node.js",
|
|
42
|
+
"dist/nodes/MsTeamsBotFramework/MsTeamsBotFrameworkTrigger.node.js",
|
|
43
|
+
"dist/nodes/MsTeamsBotFramework/MsTeamsAIBot.node.js"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/express": "^4.17.6",
|
|
48
|
+
"@types/node": "^18.16.0",
|
|
49
|
+
"@typescript-eslint/parser": "^5.59.0",
|
|
50
|
+
"eslint": "^8.39.0",
|
|
51
|
+
"eslint-plugin-n8n-nodes-base": "^1.12.0",
|
|
52
|
+
"gulp": "^4.0.2",
|
|
53
|
+
"n8n-workflow": "^1.0.0",
|
|
54
|
+
"prettier": "^2.8.8",
|
|
55
|
+
"typescript": "^5.0.4"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"n8n-workflow": "*"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"botbuilder": "^4.20.0",
|
|
62
|
+
"axios": "^1.6.0"
|
|
63
|
+
}
|
|
64
|
+
}
|