crisp-api 7.4.1 → 8.0.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.
@@ -28,6 +28,7 @@ function Website() {
28
28
  "WebsiteConversation",
29
29
  "WebsiteOperator",
30
30
  "WebsitePeople",
31
+ "WebsiteHelpdesk",
31
32
  "WebsiteSettings",
32
33
  "WebsiteVerify",
33
34
  "WebsiteVisitors"
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": "7.4.1",
4
+ "version": "8.0.0",
5
5
  "homepage": "https://github.com/crisp-im/node-crisp-api",
6
6
  "license": "MIT",
7
7
  "author": {
@@ -0,0 +1,15 @@
1
+ export = WebsiteHelpdesk;
2
+ /**
3
+ * Crisp WebsiteHelpdesk Resource
4
+ * @class
5
+ * @classdesc This is the Crisp Website Helpdesk Resource
6
+ */
7
+ declare function WebsiteHelpdesk(service: any, crisp: any): void;
8
+ declare class WebsiteHelpdesk {
9
+ /**
10
+ * Crisp WebsiteHelpdesk Resource
11
+ * @class
12
+ * @classdesc This is the Crisp Website Helpdesk Resource
13
+ */
14
+ constructor(service: any, crisp: any);
15
+ }