crisp-api 9.4.0 → 9.5.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 CHANGED
@@ -1,6 +1,12 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ ## v9.5.0
5
+
6
+ ### New Features
7
+
8
+ * Added support for the `message:acknowledge:ignored` RTM API event.
9
+
4
10
  ## v9.4.0
5
11
 
6
12
  ### Breaking Changes
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2023 Crisp
3
+ Copyright (c) 2024 Crisp
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -4,9 +4,9 @@
4
4
 
5
5
  The Crisp API Node wrapper. Authenticate, send messages, fetch conversations, access your agent accounts from your JavaScript code.
6
6
 
7
- Copyright 2023 Crisp IM SAS. See LICENSE for copying information.
7
+ Copyright 2024 Crisp IM SAS. See LICENSE for copying information.
8
8
 
9
- * **📝 Implements**: [REST API Reference (V1)](https://docs.crisp.chat/references/rest-api/v1/) at revision: 27/08/2024
9
+ * **📝 Implements**: [REST API Reference (V1)](https://docs.crisp.chat/references/rest-api/v1/) at revision: 17/10/2024
10
10
  * **😘 Maintainers**: [@baptistejamin](https://github.com/baptistejamin), [@eliottvincent](https://github.com/eliottvincent), [@valeriansaliou](https://github.com/valeriansaliou)
11
11
 
12
12
  ## Installation
@@ -3526,6 +3526,8 @@ Available events are listed below:
3526
3526
  * `message:acknowledge:read:received`
3527
3527
  * **Message Acknowledge Delivered** [`user`, `plugin`]:
3528
3528
  * `message:acknowledge:delivered`
3529
+ * **Message Acknowledge Ignored** [`user`, `plugin`]:
3530
+ * `message:acknowledge:ignored`
3529
3531
  * **Message Notify Unread Send** [`user`, `plugin`]:
3530
3532
  * `message:notify:unread:send`
3531
3533
  * **Message Notify Unread Received** [`user`, `plugin`]:
package/lib/crisp.js CHANGED
@@ -92,6 +92,7 @@ Crisp.DEFAULT_RTM_EVENTS = [
92
92
  "message:acknowledge:read:send",
93
93
  "message:acknowledge:read:received",
94
94
  "message:acknowledge:delivered",
95
+ "message:acknowledge:ignored",
95
96
  "message:notify:unread:send",
96
97
  "message:notify:unread:received",
97
98
 
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.4.0",
4
+ "version": "9.5.0",
5
5
  "homepage": "https://github.com/crisp-im/node-crisp-api",
6
6
  "license": "MIT",
7
7
  "author": {