crisp-api 10.8.5 → 10.9.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 +30 -0
- package/README.md +0 -2
- package/dist/crisp.js +1 -2
- package/lib/crisp.ts +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
## v10.9.0
|
|
5
|
+
|
|
6
|
+
### Changes
|
|
7
|
+
|
|
8
|
+
* Removed support for the `bucket:url:crawler:generated` RTM API event.
|
|
9
|
+
|
|
10
|
+
## v10.8.6
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
* Bumped package version.
|
|
15
|
+
|
|
16
|
+
## v10.8.5
|
|
17
|
+
|
|
18
|
+
### Changes
|
|
19
|
+
|
|
20
|
+
* Added return type on the `CrispClient.website.getPeopleProfile` method.
|
|
21
|
+
|
|
22
|
+
## v10.8.4
|
|
23
|
+
|
|
24
|
+
### Changes
|
|
25
|
+
|
|
26
|
+
* Added types for new `origin` field on some payloads.
|
|
27
|
+
|
|
28
|
+
## v10.8.3
|
|
29
|
+
|
|
30
|
+
### Changes
|
|
31
|
+
|
|
32
|
+
* Added types for new `user` field on some payloads.
|
|
33
|
+
|
|
4
34
|
## v10.8.2
|
|
5
35
|
|
|
6
36
|
### Changes
|
package/README.md
CHANGED
|
@@ -3970,8 +3970,6 @@ Available events are listed below:
|
|
|
3970
3970
|
* `bucket:url:status:generated`
|
|
3971
3971
|
* **Bucket URL Processing Generated** [`user`, `plugin`]:
|
|
3972
3972
|
* `bucket:url:processing:generated`
|
|
3973
|
-
* **Bucket URL Crawler Generated** [`user`, `plugin`]:
|
|
3974
|
-
* `bucket:url:crawler:generated`
|
|
3975
3973
|
|
|
3976
3974
|
* #### **Media Events**: [Reference](https://docs.crisp.chat/references/rtm-api/v1/#media-events)
|
|
3977
3975
|
* **Media Animation Listed** [`user`]:
|
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.9.0";
|
|
50
50
|
// Base configuration
|
|
51
51
|
const DEFAULT_REQUEST_TIMEOUT = 10000;
|
|
52
52
|
const DEFAULT_SOCKET_TIMEOUT = 10000;
|
|
@@ -146,7 +146,6 @@ const DEFAULT_RTM_EVENTS = [
|
|
|
146
146
|
"bucket:url:helpdesk:generated",
|
|
147
147
|
"bucket:url:status:generated",
|
|
148
148
|
"bucket:url:processing:generated",
|
|
149
|
-
"bucket:url:crawler:generated",
|
|
150
149
|
// Media Events
|
|
151
150
|
"media:animation:listed",
|
|
152
151
|
// Email Event
|
package/lib/crisp.ts
CHANGED
package/package.json
CHANGED