@crono-one/n8n-nodes-crono-public-api 0.1.1 → 0.1.3

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/LICENSE.md CHANGED
@@ -1,19 +1,19 @@
1
- Copyright 2022 n8n
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy of
4
- this software and associated documentation files (the "Software"), to deal in
5
- the Software without restriction, including without limitation the rights to
6
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
- of the Software, and to permit persons to whom the Software is furnished to do
8
- so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in all
11
- copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
- SOFTWARE.
1
+ Copyright 2022 n8n
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
package/README.md CHANGED
@@ -1,58 +1,61 @@
1
- # n8n-nodes-crono-public-api
2
-
3
- This is an n8n community node. It lets you use Crono Public API in your n8n workflows.
4
-
5
- Crono Public API gives programmatic access to Crono CRM data such as companies, contacts, deals, activities, and more.
6
-
7
- [Installation](#installation)
8
- [Operations](#operations)
9
- [Credentials](#credentials)
10
- [Compatibility](#compatibility)
11
- [Resources](#resources)
12
- [Version history](#version-history)
13
-
14
- ## Installation
15
-
16
- Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
17
-
18
- ## Operations
19
-
20
- - Activities: Get, Get Many, Search
21
- - Companies: Create, Get, Get Many, Search, Update, Import
22
- - Contacts: Create, Get, Get Many, Search, Update, Import
23
- - Deals: Create, Get, Get Many, Search, Update
24
- - External Properties: Search
25
- - Imports: Get, Get Many
26
- - Lists: Search
27
- - Notes: Create, Get, Get Many, Search
28
- - Pipelines: Get Many
29
- - Strategies: Search, Search Details
30
- - Tasks: Create, Search
31
- - Users: Get, Get Many, Search
32
-
33
- ## Credentials
34
-
35
- This node uses Crono Public API credentials.
36
-
37
- You need:
38
- - API Key
39
- - API Secret
40
-
41
- The node sends credentials via headers:
42
- - `X-Api-Key`
43
- - `X-Api-Secret`
44
-
45
- ## Compatibility
46
-
47
- Minimum n8n version: 1.120.4
48
- Tested against n8n version: 1.120.4
49
-
50
- ## Resources
51
-
52
- * [n8n community nodes documentation](https://docs.n8n.io/integrations/#community-nodes)
53
- * [Crono Public API documentation](https://ext.crono.one/docs/)
54
-
55
- ## Version history
56
-
57
- - 0.1.0: Initial release
58
- - 1.0.0: Version One
1
+ # n8n-nodes-crono-public-api
2
+
3
+ This is an n8n community node. It lets you use Crono Public API in your n8n workflows.
4
+
5
+ Crono Public API gives programmatic access to Crono CRM data such as companies, contacts, deals, activities, and more.
6
+
7
+ [Installation](#installation)
8
+ [Operations](#operations)
9
+ [Credentials](#credentials)
10
+ [Compatibility](#compatibility)
11
+ [Resources](#resources)
12
+ [Version history](#version-history)
13
+
14
+ ## Installation
15
+
16
+ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
17
+
18
+ ## Operations
19
+
20
+ - Activities: Get, Get Many, Search
21
+ - Companies: Create, Get, Get Many, Search, Update, Import
22
+ - Contacts: Create, Get, Get Many, Search, Update, Import
23
+ - Deals: Create, Get, Get Many, Search, Update
24
+ - External Properties: Search
25
+ - Imports: Get, Get Many
26
+ - Lists: Search
27
+ - Notes: Create, Get, Get Many, Search
28
+ - Pipelines: Get Many
29
+ - Strategies: Search, Search Details
30
+ - Tasks: Create, Search
31
+ - Users: Get, Get Many, Search
32
+
33
+ ## Credentials
34
+
35
+ This node uses Crono Public API credentials.
36
+
37
+ Credentials are required for all operations.
38
+
39
+ You need:
40
+ - API Key
41
+ - API Secret
42
+
43
+ The node sends credentials via headers:
44
+ - `X-Api-Key`
45
+ - `X-Api-Secret`
46
+
47
+ ## Compatibility
48
+
49
+ Minimum n8n version: 1.120.4
50
+ Tested against n8n version: 1.120.4
51
+
52
+ ## Resources
53
+
54
+ * [n8n community nodes documentation](https://docs.n8n.io/integrations/#community-nodes)
55
+ * [Crono Public API documentation](https://ext.crono.one/docs/)
56
+
57
+ ## Version history
58
+
59
+ * [CHANGELOG](./CHANGELOG.md)
60
+
61
+ ----
@@ -67,7 +67,7 @@ async function cronoApiRequest(method, endpoint, qs = {}, body = undefined) {
67
67
  class CronoPublicApi {
68
68
  constructor() {
69
69
  this.description = {
70
- displayName: 'Crono Public API',
70
+ displayName: 'Crono',
71
71
  name: 'cronoPublicApi',
72
72
  icon: 'file:/crono.svg',
73
73
  group: ['input'],