n8n-nodes-yourang 0.3.2 → 0.5.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.
- package/dist/nodes/Yourang/Yourang.node.js +33 -8
- package/dist/nodes/Yourang/Yourang.node.js.map +1 -1
- package/dist/nodes/Yourang/YourangDescription.js +9 -0
- package/dist/nodes/Yourang/YourangDescription.js.map +1 -1
- package/dist/nodes/Yourang/descriptions/agent.description.d.ts +3 -0
- package/dist/nodes/Yourang/descriptions/agent.description.js +110 -0
- package/dist/nodes/Yourang/descriptions/agent.description.js.map +1 -0
- package/dist/nodes/Yourang/descriptions/agentTool.description.d.ts +3 -0
- package/dist/nodes/Yourang/descriptions/agentTool.description.js +467 -0
- package/dist/nodes/Yourang/descriptions/agentTool.description.js.map +1 -0
- package/dist/nodes/Yourang/descriptions/workflow.description.d.ts +3 -0
- package/dist/nodes/Yourang/descriptions/workflow.description.js +329 -0
- package/dist/nodes/Yourang/descriptions/workflow.description.js.map +1 -0
- package/dist/nodes/Yourang/resources/AgentHandler.d.ts +4 -0
- package/dist/nodes/Yourang/resources/AgentHandler.js +32 -0
- package/dist/nodes/Yourang/resources/AgentHandler.js.map +1 -0
- package/dist/nodes/Yourang/resources/AgentToolHandler.d.ts +6 -0
- package/dist/nodes/Yourang/resources/AgentToolHandler.js +114 -0
- package/dist/nodes/Yourang/resources/AgentToolHandler.js.map +1 -0
- package/dist/nodes/Yourang/resources/WorkflowHandler.d.ts +11 -0
- package/dist/nodes/Yourang/resources/WorkflowHandler.js +133 -0
- package/dist/nodes/Yourang/resources/WorkflowHandler.js.map +1 -0
- package/dist/package.json +17 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +17 -6
|
@@ -7,6 +7,9 @@ const CallHistoryHandler_1 = require("./resources/CallHistoryHandler");
|
|
|
7
7
|
const ContactHandler_1 = require("./resources/ContactHandler");
|
|
8
8
|
const ActionHandler_1 = require("./resources/ActionHandler");
|
|
9
9
|
const EventHandler_1 = require("./resources/EventHandler");
|
|
10
|
+
const AgentHandler_1 = require("./resources/AgentHandler");
|
|
11
|
+
const AgentToolHandler_1 = require("./resources/AgentToolHandler");
|
|
12
|
+
const WorkflowHandler_1 = require("./resources/WorkflowHandler");
|
|
10
13
|
function getResourceHandler(resource, context, baseUrl) {
|
|
11
14
|
switch (resource) {
|
|
12
15
|
case 'callHistory':
|
|
@@ -17,6 +20,12 @@ function getResourceHandler(resource, context, baseUrl) {
|
|
|
17
20
|
return new ActionHandler_1.ActionHandler(context, baseUrl);
|
|
18
21
|
case 'event':
|
|
19
22
|
return new EventHandler_1.EventHandler(context, baseUrl);
|
|
23
|
+
case 'agent':
|
|
24
|
+
return new AgentHandler_1.AgentHandler(context, baseUrl);
|
|
25
|
+
case 'agentTool':
|
|
26
|
+
return new AgentToolHandler_1.AgentToolHandler(context, baseUrl);
|
|
27
|
+
case 'workflow':
|
|
28
|
+
return new WorkflowHandler_1.WorkflowHandler(context, baseUrl);
|
|
20
29
|
default:
|
|
21
30
|
throw new n8n_workflow_1.NodeOperationError(context.getNode(), `Unknown resource: ${resource}`);
|
|
22
31
|
}
|
|
@@ -26,7 +35,7 @@ class Yourang {
|
|
|
26
35
|
this.description = {
|
|
27
36
|
displayName: 'Yourang',
|
|
28
37
|
name: 'yourang',
|
|
29
|
-
icon:
|
|
38
|
+
icon: 'file:yourang.svg',
|
|
30
39
|
group: ['transform'],
|
|
31
40
|
version: 1,
|
|
32
41
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
@@ -36,7 +45,6 @@ class Yourang {
|
|
|
36
45
|
},
|
|
37
46
|
inputs: ['main'],
|
|
38
47
|
outputs: ['main'],
|
|
39
|
-
usableAsTool: true,
|
|
40
48
|
credentials: [
|
|
41
49
|
{
|
|
42
50
|
name: 'yourangApi',
|
|
@@ -57,6 +65,21 @@ class Yourang {
|
|
|
57
65
|
type: 'options',
|
|
58
66
|
noDataExpression: true,
|
|
59
67
|
options: [
|
|
68
|
+
{
|
|
69
|
+
name: 'Action',
|
|
70
|
+
value: 'action',
|
|
71
|
+
description: 'Execute actions and manage action configurations',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Agent',
|
|
75
|
+
value: 'agent',
|
|
76
|
+
description: 'Retrieve and manage AI agents',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
name: 'Agent Tool',
|
|
80
|
+
value: 'agentTool',
|
|
81
|
+
description: 'Manage tools available for an agent',
|
|
82
|
+
},
|
|
60
83
|
{
|
|
61
84
|
name: 'Call History',
|
|
62
85
|
value: 'callHistory',
|
|
@@ -67,16 +90,16 @@ class Yourang {
|
|
|
67
90
|
value: 'contact',
|
|
68
91
|
description: 'Manage customer contacts and information',
|
|
69
92
|
},
|
|
70
|
-
{
|
|
71
|
-
name: 'Action',
|
|
72
|
-
value: 'action',
|
|
73
|
-
description: 'Execute actions and manage action configurations',
|
|
74
|
-
},
|
|
75
93
|
{
|
|
76
94
|
name: 'Event',
|
|
77
95
|
value: 'event',
|
|
78
96
|
description: 'Manage calendar events and appointments',
|
|
79
97
|
},
|
|
98
|
+
{
|
|
99
|
+
name: 'Workflow',
|
|
100
|
+
value: 'workflow',
|
|
101
|
+
description: 'Manage and execute workflows',
|
|
102
|
+
},
|
|
80
103
|
],
|
|
81
104
|
default: 'callHistory',
|
|
82
105
|
},
|
|
@@ -96,7 +119,9 @@ class Yourang {
|
|
|
96
119
|
for (let i = 0; i < items.length; i++) {
|
|
97
120
|
try {
|
|
98
121
|
const responseData = await handler.execute(operation, i);
|
|
99
|
-
const executionData = this.helpers.constructExecutionMetaData([{ json: responseData }], {
|
|
122
|
+
const executionData = this.helpers.constructExecutionMetaData([{ json: responseData }], {
|
|
123
|
+
itemData: { item: i },
|
|
124
|
+
});
|
|
100
125
|
returnData.push(...executionData);
|
|
101
126
|
}
|
|
102
127
|
catch (error) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Yourang.node.js","sourceRoot":"","sources":["../../../nodes/Yourang/Yourang.node.ts"],"names":[],"mappings":";;;AAAA,+CAMsB;AACtB,6DAAwE;AAExE,uEAAoE;AACpE,+DAA4D;AAC5D,6DAA0D;AAC1D,2DAAwD;
|
|
1
|
+
{"version":3,"file":"Yourang.node.js","sourceRoot":"","sources":["../../../nodes/Yourang/Yourang.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,16 +5,25 @@ const callHistory_description_1 = require("./descriptions/callHistory.descriptio
|
|
|
5
5
|
const contact_description_1 = require("./descriptions/contact.description");
|
|
6
6
|
const action_description_1 = require("./descriptions/action.description");
|
|
7
7
|
const event_description_1 = require("./descriptions/event.description");
|
|
8
|
+
const agent_description_1 = require("./descriptions/agent.description");
|
|
9
|
+
const agentTool_description_1 = require("./descriptions/agentTool.description");
|
|
10
|
+
const workflow_description_1 = require("./descriptions/workflow.description");
|
|
8
11
|
exports.yourangOperations = [
|
|
9
12
|
...callHistory_description_1.callHistoryOperations,
|
|
10
13
|
...contact_description_1.contactOperations,
|
|
11
14
|
...action_description_1.actionOperations,
|
|
12
15
|
...event_description_1.eventOperations,
|
|
16
|
+
...agent_description_1.agentOperations,
|
|
17
|
+
...agentTool_description_1.agentToolOperations,
|
|
18
|
+
...workflow_description_1.workflowOperations,
|
|
13
19
|
];
|
|
14
20
|
exports.yourangFields = [
|
|
15
21
|
...callHistory_description_1.callHistoryFields,
|
|
16
22
|
...contact_description_1.contactFields,
|
|
17
23
|
...action_description_1.actionFields,
|
|
18
24
|
...event_description_1.eventFields,
|
|
25
|
+
...agent_description_1.agentFields,
|
|
26
|
+
...agentTool_description_1.agentToolFields,
|
|
27
|
+
...workflow_description_1.workflowFields,
|
|
19
28
|
];
|
|
20
29
|
//# sourceMappingURL=YourangDescription.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"YourangDescription.js","sourceRoot":"","sources":["../../../nodes/Yourang/YourangDescription.ts"],"names":[],"mappings":";;;AAGA,
|
|
1
|
+
{"version":3,"file":"YourangDescription.js","sourceRoot":"","sources":["../../../nodes/Yourang/YourangDescription.ts"],"names":[],"mappings":";;;AAGA,oFAAkG;AAElG,4EAAsF;AAEtF,0EAAmF;AAEnF,wEAAgF;AAEhF,wEAAgF;AAEhF,gFAA4F;AAE5F,8EAAyF;AAG5E,QAAA,iBAAiB,GAAsB;IACnD,GAAG,+CAAqB;IACxB,GAAG,uCAAiB;IACpB,GAAG,qCAAgB;IACnB,GAAG,mCAAe;IAClB,GAAG,mCAAe;IAClB,GAAG,2CAAmB;IACtB,GAAG,yCAAkB;CACrB,CAAC;AAGW,QAAA,aAAa,GAAsB;IAC/C,GAAG,2CAAiB;IACpB,GAAG,mCAAa;IAChB,GAAG,iCAAY;IACf,GAAG,+BAAW;IACd,GAAG,+BAAW;IACd,GAAG,uCAAe;IAClB,GAAG,qCAAc;CACjB,CAAC"}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.agentFields = exports.agentOperations = void 0;
|
|
4
|
+
exports.agentOperations = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ['agent'],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Get',
|
|
18
|
+
value: 'get',
|
|
19
|
+
description: 'Get details of a specific agent',
|
|
20
|
+
action: 'Get an agent',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
name: 'Get Many',
|
|
24
|
+
value: 'getAll',
|
|
25
|
+
description: 'Get many agents for the authenticated organization',
|
|
26
|
+
action: 'Get many agents',
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
default: 'getAll',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
exports.agentFields = [
|
|
33
|
+
{
|
|
34
|
+
displayName: 'Agent ID',
|
|
35
|
+
name: 'agentId',
|
|
36
|
+
type: 'string',
|
|
37
|
+
displayOptions: {
|
|
38
|
+
show: {
|
|
39
|
+
resource: ['agent'],
|
|
40
|
+
operation: ['get'],
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
default: '',
|
|
44
|
+
required: true,
|
|
45
|
+
description: 'The ID of the agent to retrieve',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
displayName: 'Return All',
|
|
49
|
+
name: 'returnAll',
|
|
50
|
+
type: 'boolean',
|
|
51
|
+
displayOptions: {
|
|
52
|
+
show: {
|
|
53
|
+
resource: ['agent'],
|
|
54
|
+
operation: ['getAll'],
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
default: false,
|
|
58
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
displayName: 'Limit',
|
|
62
|
+
name: 'limit',
|
|
63
|
+
type: 'number',
|
|
64
|
+
displayOptions: {
|
|
65
|
+
show: {
|
|
66
|
+
resource: ['agent'],
|
|
67
|
+
operation: ['getAll'],
|
|
68
|
+
returnAll: [false],
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
typeOptions: {
|
|
72
|
+
minValue: 1,
|
|
73
|
+
},
|
|
74
|
+
default: 50,
|
|
75
|
+
description: 'Max number of results to return',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
displayName: 'Filters',
|
|
79
|
+
name: 'filters',
|
|
80
|
+
type: 'collection',
|
|
81
|
+
placeholder: 'Add Filter',
|
|
82
|
+
displayOptions: {
|
|
83
|
+
show: {
|
|
84
|
+
resource: ['agent'],
|
|
85
|
+
operation: ['getAll'],
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
default: {},
|
|
89
|
+
options: [
|
|
90
|
+
{
|
|
91
|
+
displayName: 'Agent Type',
|
|
92
|
+
name: 'agent_type',
|
|
93
|
+
type: 'options',
|
|
94
|
+
options: [
|
|
95
|
+
{
|
|
96
|
+
name: 'Inbound',
|
|
97
|
+
value: 'inbound',
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
name: 'Outbound',
|
|
101
|
+
value: 'outbound',
|
|
102
|
+
},
|
|
103
|
+
],
|
|
104
|
+
default: 'inbound',
|
|
105
|
+
description: 'Filter agents by type (inbound or outbound)',
|
|
106
|
+
},
|
|
107
|
+
],
|
|
108
|
+
},
|
|
109
|
+
];
|
|
110
|
+
//# sourceMappingURL=agent.description.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent.description.js","sourceRoot":"","sources":["../../../../nodes/Yourang/descriptions/agent.description.ts"],"names":[],"mappings":";;;AAEa,QAAA,eAAe,GAAsB;IACjD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,OAAO,CAAC;aACnB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,WAAW,EAAE,iCAAiC;gBAC9C,MAAM,EAAE,cAAc;aACtB;YACD;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,oDAAoD;gBACjE,MAAM,EAAE,iBAAiB;aACzB;SACD;QACD,OAAO,EAAE,QAAQ;KACjB;CACD,CAAC;AAEW,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,OAAO,CAAC;gBACnB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,OAAO,EAAE,EAAE;QACX,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,iCAAiC;KAC9C;IACD;QACC,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,OAAO,CAAC;gBACnB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE,KAAK;QACd,WAAW,EAAE,2DAA2D;KACxE;IACD;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,OAAO,CAAC;gBACnB,SAAS,EAAE,CAAC,QAAQ,CAAC;gBACrB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,WAAW,EAAE;YACZ,QAAQ,EAAE,CAAC;SACX;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,iCAAiC;KAC9C;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,OAAO,CAAC;gBACnB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE,EAAE;QACX,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,YAAY;gBACzB,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE;oBACR;wBACC,IAAI,EAAE,SAAS;wBACf,KAAK,EAAE,SAAS;qBAChB;oBACD;wBACC,IAAI,EAAE,UAAU;wBAChB,KAAK,EAAE,UAAU;qBACjB;iBACD;gBACD,OAAO,EAAE,SAAS;gBAClB,WAAW,EAAE,6CAA6C;aAC1D;SACD;KACD;CACD,CAAC"}
|