crisp-api 10.10.2 → 10.10.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/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ ## v10.10.3
5
+
6
+ ### Changes
7
+
8
+ * Added types for new `verified` and `institutional` field on `Website` payload.
9
+
4
10
  ## v10.10.2
5
11
 
6
12
  ### Changes
package/dist/crisp.js CHANGED
@@ -46,7 +46,7 @@ const AVAILABLE_RTM_MODES = [
46
46
  "websockets",
47
47
  "webhooks"
48
48
  ];
49
- const VERSION = "10.10.2";
49
+ const VERSION = "10.10.3";
50
50
  // Base configuration
51
51
  const DEFAULT_REQUEST_TIMEOUT = 10000;
52
52
  const DEFAULT_SOCKET_TIMEOUT = 10000;
@@ -10,6 +10,8 @@ export type Website = {
10
10
  name?: string;
11
11
  domain?: string;
12
12
  logo?: string;
13
+ verified?: boolean;
14
+ institutional?: boolean;
13
15
  };
14
16
  export type WebsiteCreate = {
15
17
  name?: string;
@@ -21,6 +21,8 @@ export type Website = {
21
21
  name?: string;
22
22
  domain?: string;
23
23
  logo?: string;
24
+ verified?: boolean;
25
+ institutional?: boolean;
24
26
  }
25
27
 
26
28
  export type WebsiteCreate = {
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": "10.10.2",
4
+ "version": "10.10.3",
5
5
  "homepage": "https://github.com/crisp-im/node-crisp-api",
6
6
  "license": "MIT",
7
7
  "author": {