n8n-nodes-kirago 0.1.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 (28) hide show
  1. package/README.md +46 -0
  2. package/dist/credentials/KiragoApi.credentials.d.ts +10 -0
  3. package/dist/credentials/KiragoApi.credentials.js +37 -0
  4. package/dist/credentials/KiragoApi.credentials.js.map +1 -0
  5. package/dist/nodes/Kirago/Kirago.node.d.ts +4 -0
  6. package/dist/nodes/Kirago/Kirago.node.js +56 -0
  7. package/dist/nodes/Kirago/Kirago.node.js.map +1 -0
  8. package/dist/nodes/Kirago/Kirago.node.json +18 -0
  9. package/dist/nodes/Kirago/kirago.dark.svg +8753 -0
  10. package/dist/nodes/Kirago/kirago.svg +8753 -0
  11. package/dist/nodes/Kirago/resources/company/getAll.d.ts +2 -0
  12. package/dist/nodes/Kirago/resources/company/getAll.js +62 -0
  13. package/dist/nodes/Kirago/resources/company/getAll.js.map +1 -0
  14. package/dist/nodes/Kirago/resources/company/index.d.ts +2 -0
  15. package/dist/nodes/Kirago/resources/company/index.js +35 -0
  16. package/dist/nodes/Kirago/resources/company/index.js.map +1 -0
  17. package/dist/nodes/Kirago/resources/user/create.d.ts +2 -0
  18. package/dist/nodes/Kirago/resources/user/create.js +27 -0
  19. package/dist/nodes/Kirago/resources/user/create.js.map +1 -0
  20. package/dist/nodes/Kirago/resources/user/get.d.ts +2 -0
  21. package/dist/nodes/Kirago/resources/user/get.js +18 -0
  22. package/dist/nodes/Kirago/resources/user/get.js.map +1 -0
  23. package/dist/nodes/Kirago/resources/user/index.d.ts +2 -0
  24. package/dist/nodes/Kirago/resources/user/index.js +61 -0
  25. package/dist/nodes/Kirago/resources/user/index.js.map +1 -0
  26. package/dist/package.json +44 -0
  27. package/dist/tsconfig.tsbuildinfo +1 -0
  28. package/package.json +53 -0
package/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # n8n-nodes-kirago
2
+
3
+ This is an n8n community node. It lets you use _app/service name_ in your n8n workflows.
4
+
5
+ _App/service name_ is _one or two sentences describing the service this node integrates with_.
6
+
7
+ [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/sustainable-use-license/) workflow automation platform.
8
+
9
+ [Installation](#installation)
10
+ [Operations](#operations)
11
+ [Credentials](#credentials)
12
+ [Compatibility](#compatibility)
13
+ [Usage](#usage)
14
+ [Resources](#resources)
15
+ [Version history](#version-history)
16
+
17
+ ## Installation
18
+
19
+ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
20
+
21
+ ## Operations
22
+
23
+ _List the operations supported by your node._
24
+
25
+ ## Credentials
26
+
27
+ _If users need to authenticate with the app/service, provide details here. You should include prerequisites (such as signing up with the service), available authentication methods, and how to set them up._
28
+
29
+ ## Compatibility
30
+
31
+ _State the minimum n8n version, as well as which versions you test against. You can also include any known version incompatibility issues._
32
+
33
+ ## Usage
34
+
35
+ _This is an optional section. Use it to help users with any difficult or confusing aspects of the node._
36
+
37
+ _By the time users are looking for community nodes, they probably already know n8n basics. But if you expect new users, you can link to the [Try it out](https://docs.n8n.io/try-it-out/) documentation to help them get started._
38
+
39
+ ## Resources
40
+
41
+ * [n8n community nodes documentation](https://docs.n8n.io/integrations/#community-nodes)
42
+ * _Link to app/service documentation._
43
+
44
+ ## Version history
45
+
46
+ _This is another optional section. If your node has multiple versions, include a short description of available versions and what changed, as well as any compatibility impact._
@@ -0,0 +1,10 @@
1
+ import type { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties, Icon } from 'n8n-workflow';
2
+ export declare class KiragoApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ icon: Icon;
6
+ documentationUrl: string;
7
+ properties: INodeProperties[];
8
+ authenticate: IAuthenticateGeneric;
9
+ test: ICredentialTestRequest;
10
+ }
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.KiragoApi = void 0;
4
+ class KiragoApi {
5
+ constructor() {
6
+ this.name = 'kiragoApi';
7
+ this.displayName = 'Kirago API';
8
+ this.icon = 'file:../nodes/Kirago/kirago.svg';
9
+ this.documentationUrl = 'https://github.com/org/-kirago?tab=readme-ov-file#credentials';
10
+ this.properties = [
11
+ {
12
+ displayName: 'API Key',
13
+ name: 'apiKey',
14
+ type: 'string',
15
+ typeOptions: { password: true },
16
+ required: true,
17
+ default: '',
18
+ },
19
+ ];
20
+ this.authenticate = {
21
+ type: 'generic',
22
+ properties: {
23
+ headers: {
24
+ 'x-api-key': '={{$credentials.apiKey}}',
25
+ },
26
+ },
27
+ };
28
+ this.test = {
29
+ request: {
30
+ baseURL: 'https://kirago.com.br/',
31
+ url: '/v1/user',
32
+ },
33
+ };
34
+ }
35
+ }
36
+ exports.KiragoApi = KiragoApi;
37
+ //# sourceMappingURL=KiragoApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"KiragoApi.credentials.js","sourceRoot":"","sources":["../../credentials/KiragoApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,SAAS;IAAtB;QACC,SAAI,GAAG,WAAW,CAAC;QACnB,gBAAW,GAAG,YAAY,CAAC;QAC3B,SAAI,GAAS,iCAAiC,CAAC;QAE/C,qBAAgB,GAAG,+DAA+D,CAAC;QAEnF,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,QAAQ,EAAE,IAAI;gBACd,OAAO,EAAE,EAAE;aACX;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,WAAW,EAAE,0BAA0B;iBACvC;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,wBAAwB;gBACjC,GAAG,EAAE,UAAU;aACf;SACD,CAAC;IACH,CAAC;CAAA;AAjCD,8BAiCC"}
@@ -0,0 +1,4 @@
1
+ import { type INodeType, type INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class Kirago implements INodeType {
3
+ description: INodeTypeDescription;
4
+ }
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Kirago = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ const user_1 = require("./resources/user");
6
+ const company_1 = require("./resources/company");
7
+ class Kirago {
8
+ constructor() {
9
+ this.description = {
10
+ displayName: 'Kirago',
11
+ name: 'kirago',
12
+ icon: { light: 'file:kirago.svg', dark: 'file:kirago.dark.svg' },
13
+ group: ['transform'],
14
+ version: 1,
15
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
16
+ description: 'Interact with the Kirago API',
17
+ defaults: {
18
+ name: 'Kirago',
19
+ },
20
+ usableAsTool: true,
21
+ inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
22
+ outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
23
+ credentials: [{ name: 'kiragoApi', required: true }],
24
+ requestDefaults: {
25
+ baseURL: 'https://kirago.com.br/',
26
+ headers: {
27
+ Accept: 'application/json',
28
+ 'Content-Type': 'application/json',
29
+ },
30
+ },
31
+ properties: [
32
+ {
33
+ displayName: 'Resource',
34
+ name: 'resource',
35
+ type: 'options',
36
+ noDataExpression: true,
37
+ options: [
38
+ {
39
+ name: 'User',
40
+ value: 'user',
41
+ },
42
+ {
43
+ name: 'Company',
44
+ value: 'company',
45
+ },
46
+ ],
47
+ default: 'user',
48
+ },
49
+ ...user_1.userDescription,
50
+ ...company_1.companyDescription,
51
+ ],
52
+ };
53
+ }
54
+ }
55
+ exports.Kirago = Kirago;
56
+ //# sourceMappingURL=Kirago.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Kirago.node.js","sourceRoot":"","sources":["../../../nodes/Kirago/Kirago.node.ts"],"names":[],"mappings":";;;AAAA,+CAA8F;AAC9F,2CAAmD;AACnD,iDAAyD;AAEzD,MAAa,MAAM;IAAnB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,QAAQ;YACrB,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,EAAE,KAAK,EAAE,iBAAiB,EAAE,IAAI,EAAE,sBAAsB,EAAE;YAChE,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,8BAA8B;YAC3C,QAAQ,EAAE;gBACT,IAAI,EAAE,QAAQ;aACd;YACD,YAAY,EAAE,IAAI;YAClB,MAAM,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YAClC,OAAO,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YACnC,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;YACpD,eAAe,EAAE;gBAChB,OAAO,EAAE,wBAAwB;gBACjC,OAAO,EAAE;oBACR,MAAM,EAAE,kBAAkB;oBAC1B,cAAc,EAAE,kBAAkB;iBAClC;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,MAAM;4BACZ,KAAK,EAAE,MAAM;yBACb;wBACD;4BACC,IAAI,EAAE,SAAS;4BACf,KAAK,EAAE,SAAS;yBAChB;qBACD;oBACD,OAAO,EAAE,MAAM;iBACf;gBACD,GAAG,sBAAe;gBAClB,GAAG,4BAAkB;aACrB;SACD,CAAC;IACH,CAAC;CAAA;AA7CD,wBA6CC"}
@@ -0,0 +1,18 @@
1
+ {
2
+ "node": "n8n-nodes-kirago",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": ["Development", "Developer Tools"],
6
+ "resources": {
7
+ "credentialDocumentation": [
8
+ {
9
+ "url": "https://github.com/org/repo?tab=readme-ov-file#credentials"
10
+ }
11
+ ],
12
+ "primaryDocumentation": [
13
+ {
14
+ "url": "https://github.com/org/repo?tab=readme-ov-file"
15
+ }
16
+ ]
17
+ }
18
+ }