n8n-nodes-innotes 1.0.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.
Files changed (31) hide show
  1. package/README.md +305 -0
  2. package/dist/credentials/InNotesApi.credentials.js +108 -0
  3. package/dist/credentials/InNotesApi.credentials.js.map +1 -0
  4. package/dist/credentials/InNotesApi.credentials.ts +111 -0
  5. package/dist/credentials/Logo_128.png +0 -0
  6. package/dist/descriptions/ContactDescription.js +291 -0
  7. package/dist/descriptions/ContactDescription.js.map +1 -0
  8. package/dist/descriptions/JobDescription.js +413 -0
  9. package/dist/descriptions/JobDescription.js.map +1 -0
  10. package/dist/descriptions/NoteDescription.js +130 -0
  11. package/dist/descriptions/NoteDescription.js.map +1 -0
  12. package/dist/descriptions/StatusDescription.js +78 -0
  13. package/dist/descriptions/StatusDescription.js.map +1 -0
  14. package/dist/descriptions/TagDescription.js +34 -0
  15. package/dist/descriptions/TagDescription.js.map +1 -0
  16. package/dist/descriptions/UserDescription.js +40 -0
  17. package/dist/descriptions/UserDescription.js.map +1 -0
  18. package/dist/icons/Logo_128.png +0 -0
  19. package/dist/nodes/InNotes/InNotes.node.js +679 -0
  20. package/dist/nodes/InNotes/InNotes.node.js.map +1 -0
  21. package/dist/nodes/InNotes/Logo_128.png +0 -0
  22. package/dist/package.json +70 -0
  23. package/dist/test/InNotes.node.test.js +144 -0
  24. package/dist/test/InNotes.node.test.js.map +1 -0
  25. package/dist/test/setup.js +38 -0
  26. package/dist/test/setup.js.map +1 -0
  27. package/dist/types/InNotesTypes.js +8 -0
  28. package/dist/types/InNotesTypes.js.map +1 -0
  29. package/dist/utils/helpers.js +172 -0
  30. package/dist/utils/helpers.js.map +1 -0
  31. package/package.json +70 -0
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ /**
3
+ * @author Marco Visin
4
+ * @date 2025-05-30
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.tagFields = exports.tagOperations = void 0;
8
+ exports.tagOperations = [
9
+ {
10
+ displayName: 'Operation',
11
+ name: 'operation',
12
+ type: 'options',
13
+ noDataExpression: true,
14
+ displayOptions: {
15
+ show: {
16
+ resource: ['tag'],
17
+ },
18
+ },
19
+ options: [
20
+ {
21
+ name: 'Get All',
22
+ value: 'getAll',
23
+ description: 'Get all tags',
24
+ action: 'Get all tags',
25
+ },
26
+ ],
27
+ default: 'getAll',
28
+ },
29
+ ];
30
+ exports.tagFields = [
31
+ // No additional fields needed for tag operations
32
+ ];
33
+
34
+ //# sourceMappingURL=TagDescription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../descriptions/TagDescription.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAIU,QAAA,aAAa,GAAsB;IAC/C;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,KAAK,CAAC;aACjB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,SAAS;gBACf,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,cAAc;gBAC3B,MAAM,EAAE,cAAc;aACtB;SACD;QACD,OAAO,EAAE,QAAQ;KACjB;CACD,CAAC;AAEW,QAAA,SAAS,GAAsB;AAC3C,iDAAiD;CACjD,CAAC","file":"TagDescription.js","sourcesContent":["/**\n * @author Marco Visin\n * @date 2025-05-30\n */\n\nimport { INodeProperties } from 'n8n-workflow';\n\nexport const tagOperations: INodeProperties[] = [\n\t{\n\t\tdisplayName: 'Operation',\n\t\tname: 'operation',\n\t\ttype: 'options',\n\t\tnoDataExpression: true,\n\t\tdisplayOptions: {\n\t\t\tshow: {\n\t\t\t\tresource: ['tag'],\n\t\t\t},\n\t\t},\n\t\toptions: [\n\t\t\t{\n\t\t\t\tname: 'Get All',\n\t\t\t\tvalue: 'getAll',\n\t\t\t\tdescription: 'Get all tags',\n\t\t\t\taction: 'Get all tags',\n\t\t\t},\n\t\t],\n\t\tdefault: 'getAll',\n\t},\n];\n\nexport const tagFields: INodeProperties[] = [\n\t// No additional fields needed for tag operations\n];\n"]}
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ /**
3
+ * @author Marco Visin
4
+ * @date 2025-06-02
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.userFields = exports.userOperations = void 0;
8
+ exports.userOperations = [
9
+ {
10
+ displayName: 'Operation',
11
+ name: 'operation',
12
+ type: 'options',
13
+ noDataExpression: true,
14
+ displayOptions: {
15
+ show: {
16
+ resource: ['user'],
17
+ },
18
+ },
19
+ options: [
20
+ {
21
+ name: 'Get',
22
+ value: 'get',
23
+ description: 'Get current user information',
24
+ action: 'Get user',
25
+ },
26
+ {
27
+ name: 'Get CV',
28
+ value: 'getCv',
29
+ description: 'Get user CV information including preferences and last update',
30
+ action: 'Get user CV',
31
+ },
32
+ ],
33
+ default: 'get',
34
+ },
35
+ ];
36
+ exports.userFields = [
37
+ // No additional fields needed for user operations
38
+ ];
39
+
40
+ //# sourceMappingURL=UserDescription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../descriptions/UserDescription.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAIU,QAAA,cAAc,GAAsB;IAChD;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,MAAM,CAAC;aAClB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,WAAW,EAAE,8BAA8B;gBAC3C,MAAM,EAAE,UAAU;aAClB;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,OAAO;gBACd,WAAW,EAAE,+DAA+D;gBAC5E,MAAM,EAAE,aAAa;aACrB;SACD;QACD,OAAO,EAAE,KAAK;KACd;CACD,CAAC;AAEW,QAAA,UAAU,GAAsB;AAC5C,kDAAkD;CAClD,CAAC","file":"UserDescription.js","sourcesContent":["/**\n * @author Marco Visin\n * @date 2025-06-02\n */\n\nimport { INodeProperties } from 'n8n-workflow';\n\nexport const userOperations: INodeProperties[] = [\n\t{\n\t\tdisplayName: 'Operation',\n\t\tname: 'operation',\n\t\ttype: 'options',\n\t\tnoDataExpression: true,\n\t\tdisplayOptions: {\n\t\t\tshow: {\n\t\t\t\tresource: ['user'],\n\t\t\t},\n\t\t},\n\t\toptions: [\n\t\t\t{\n\t\t\t\tname: 'Get',\n\t\t\t\tvalue: 'get',\n\t\t\t\tdescription: 'Get current user information',\n\t\t\t\taction: 'Get user',\n\t\t\t},\n\t\t\t{\n\t\t\t\tname: 'Get CV',\n\t\t\t\tvalue: 'getCv',\n\t\t\t\tdescription: 'Get user CV information including preferences and last update',\n\t\t\t\taction: 'Get user CV',\n\t\t\t},\n\t\t],\n\t\tdefault: 'get',\n\t},\n];\n\nexport const userFields: INodeProperties[] = [\n\t// No additional fields needed for user operations\n];\n"]}
Binary file