@friggframework/api-module-zoho-crm 1.0.1-canary.332f986.0 → 1.0.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/CHANGELOG.md +33 -0
- package/package.json +2 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# v1.0.1 (Mon Jul 15 2024)
|
|
2
|
+
|
|
3
|
+
:tada: This release contains work from new contributors! :tada:
|
|
4
|
+
|
|
5
|
+
Thanks for all your work!
|
|
6
|
+
|
|
7
|
+
:heart: Igor Schechtel ([@igorschechtel](https://github.com/igorschechtel))
|
|
8
|
+
|
|
9
|
+
:heart: Armando Alvarado ([@aaj](https://github.com/aaj))
|
|
10
|
+
|
|
11
|
+
#### 🐛 Bug Fix
|
|
12
|
+
|
|
13
|
+
- Unbabel Projects, Asana, and Zoho CRM [#10](https://github.com/friggframework/api-module-library/pull/10) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
|
|
14
|
+
- add public publish access for zoho-crm ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
|
|
15
|
+
- Add API module for Asana [#2](https://github.com/friggframework/api-module-library/pull/2) ([@igorschechtel](https://github.com/igorschechtel))
|
|
16
|
+
- Added Zoho CRM API module [#4](https://github.com/friggframework/api-module-library/pull/4) ([@aaj](https://github.com/aaj))
|
|
17
|
+
- Update README.md ([@aaj](https://github.com/aaj))
|
|
18
|
+
- Added README ([@aaj](https://github.com/aaj))
|
|
19
|
+
- Use single quotes ([@aaj](https://github.com/aaj))
|
|
20
|
+
- Added test for listProfile, left stumps for all the other tests ([@aaj](https://github.com/aaj))
|
|
21
|
+
- Better comments ([@aaj](https://github.com/aaj))
|
|
22
|
+
- Added missing scope ([@aaj](https://github.com/aaj))
|
|
23
|
+
- Added tests for all endpoints ([@aaj](https://github.com/aaj))
|
|
24
|
+
- Added all CRUD endpoints for User and Role entities ([@aaj](https://github.com/aaj))
|
|
25
|
+
- Added .env.example ([@aaj](https://github.com/aaj))
|
|
26
|
+
- Added JSON headers, added createRole ([@aaj](https://github.com/aaj))
|
|
27
|
+
- Initial Zoho CRM api module ([@aaj](https://github.com/aaj))
|
|
28
|
+
|
|
29
|
+
#### Authors: 3
|
|
30
|
+
|
|
31
|
+
- [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
|
|
32
|
+
- Armando Alvarado ([@aaj](https://github.com/aaj))
|
|
33
|
+
- Igor Schechtel ([@igorschechtel](https://github.com/igorschechtel))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friggframework/api-module-zoho-crm",
|
|
3
|
-
"version": "1.0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"prettier": "@friggframework/prettier-config",
|
|
5
5
|
"description": "Zoho CRM API module that lets the Frigg Framework interact with Zoho CRM",
|
|
6
6
|
"main": "index.js",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "003a8861c32ab73859443bd8c7b0e1ea815d4dfa"
|
|
29
29
|
}
|