crisp-api 10.7.0 → 10.8.0
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 +6 -0
- package/README.md +2 -0
- package/dist/crisp.js +2 -1
- package/lib/crisp.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -3985,6 +3985,8 @@ Available events are listed below:
|
|
|
3985
3985
|
* `plugin:channel`
|
|
3986
3986
|
* **Plugin Event** [`user`, `plugin`]:
|
|
3987
3987
|
* `plugin:event`
|
|
3988
|
+
* **Plugin Subscription Updated** [`user`, `plugin`]:
|
|
3989
|
+
* `plugin:subscription:updated`
|
|
3988
3990
|
* **Plugin Settings Saved** [`user`, `plugin`]:
|
|
3989
3991
|
* `plugin:settings:saved`
|
|
3990
3992
|
|
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.
|
|
49
|
+
const VERSION = "10.8.0";
|
|
50
50
|
// Base configuration
|
|
51
51
|
const DEFAULT_REQUEST_TIMEOUT = 10000;
|
|
52
52
|
const DEFAULT_SOCKET_TIMEOUT = 10000;
|
|
@@ -155,6 +155,7 @@ const DEFAULT_RTM_EVENTS = [
|
|
|
155
155
|
// Plugin Events
|
|
156
156
|
"plugin:channel",
|
|
157
157
|
"plugin:event",
|
|
158
|
+
"plugin:subscription:updated",
|
|
158
159
|
"plugin:settings:saved",
|
|
159
160
|
// Plan Events
|
|
160
161
|
"plan:subscription:updated"
|
package/lib/crisp.ts
CHANGED
package/package.json
CHANGED