crisp-api 10.9.0 → 10.9.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,12 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ ## v10.9.1
5
+
6
+ ### Changes
7
+
8
+ * Added `price` property on the `PluginConnectWebsite` type.
9
+
4
10
  ## v10.9.0
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.9.0";
49
+ const VERSION = "10.9.1";
50
50
  // Base configuration
51
51
  const DEFAULT_REQUEST_TIMEOUT = 10000;
52
52
  const DEFAULT_SOCKET_TIMEOUT = 10000;
@@ -10,6 +10,7 @@ export type PluginConnectAccount = {
10
10
  };
11
11
  export type PluginConnectWebsite = {
12
12
  website_id?: string;
13
+ price?: number;
13
14
  token?: string;
14
15
  settings?: object;
15
16
  plan?: PluginConnectWebsitePlan;
@@ -22,6 +22,7 @@ export type PluginConnectAccount = {
22
22
 
23
23
  export type PluginConnectWebsite = {
24
24
  website_id?: string;
25
+ price?: number;
25
26
  token?: string;
26
27
  settings?: object;
27
28
  plan?: PluginConnectWebsitePlan;
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.9.0",
4
+ "version": "10.9.1",
5
5
  "homepage": "https://github.com/crisp-im/node-crisp-api",
6
6
  "license": "MIT",
7
7
  "author": {