crisp-api 9.2.0 → 9.3.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 CHANGED
@@ -1,6 +1,18 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ ## v9.3.1
5
+
6
+ ### Breaking Changes
7
+
8
+ * ⚠️ Restored the argument of the `CrispClient.website.inviteWebsiteOperator` method to its specification from pre-`v9.3.0`.
9
+
10
+ ## v9.3.0
11
+
12
+ ### Breaking Changes
13
+
14
+ * ⚠️ Changed the argument of the `CrispClient.website.inviteWebsiteOperator` method.
15
+
4
16
  ## v9.2.0
5
17
 
6
18
  ### New Features
package/EXAMPLES.md CHANGED
@@ -1734,11 +1734,9 @@ https://docs.crisp.chat/references/rest-api/v1/#invite-a-website-operator
1734
1734
 
1735
1735
  var websiteID = "8c842203-7ed8-4e29-a608-7cf78a7d2fcc";
1736
1736
 
1737
- var verify = {
1738
- "email": "julien@crisp.chat",
1739
- "role": "member",
1740
- "verify": "MySuperSecurePassword"
1741
- };
1737
+ var email = "julien@crisp.chat";
1738
+ var role = "member";
1739
+ var verify = "MySuperSecurePassword";
1742
1740
 
1743
1741
  CrispClient.website.inviteWebsiteOperator(websiteID, email, role, verify);
1744
1742
 
package/README.md CHANGED
@@ -2502,11 +2502,9 @@ _👉 Notice: The `peopleID` argument can be an email or the `peopleID`._
2502
2502
  ```javascript
2503
2503
  var websiteID = "8c842203-7ed8-4e29-a608-7cf78a7d2fcc";
2504
2504
 
2505
- var verify = {
2506
- "email": "julien@crisp.chat",
2507
- "role": "member",
2508
- "verify": "MySuperSecurePassword"
2509
- };
2505
+ var email = "julien@crisp.chat";
2506
+ var role = "member";
2507
+ var verify = "MySuperSecurePassword";
2510
2508
 
2511
2509
  CrispClient.website.inviteWebsiteOperator(websiteID, email, role, verify);
2512
2510
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "crisp-api",
3
3
  "description": "Crisp API wrapper for Node - official, maintained by Crisp",
4
- "version": "9.2.0",
4
+ "version": "9.3.1",
5
5
  "homepage": "https://github.com/crisp-im/node-crisp-api",
6
6
  "license": "MIT",
7
7
  "author": {