crisp-api 8.3.1 → 8.3.2
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/EXAMPLES.md +11 -0
- package/README.md +16 -1
- package/lib/resources/WebsiteHelpdesk.js +21 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/EXAMPLES.md
CHANGED
|
@@ -1053,6 +1053,17 @@ CrispClient.website.deleteHelpdeskLocaleArticle(websiteID, locale, articleId);
|
|
|
1053
1053
|
|
|
1054
1054
|
=========================
|
|
1055
1055
|
|
|
1056
|
+
https://docs.crisp.chat/references/rest-api/v1/#resolve-helpdesk-locale-article-page
|
|
1057
|
+
|
|
1058
|
+
var websiteID = "8c842203-7ed8-4e29-a608-7cf78a7d2fcc";
|
|
1059
|
+
|
|
1060
|
+
var locale = "en";
|
|
1061
|
+
var articleId = "fd036d68-c619-4c63-9deb-e2ce91733dd6";
|
|
1062
|
+
|
|
1063
|
+
CrispClient.website.resolveHelpdeskLocaleArticlePage(websiteID, locale, articleId);
|
|
1064
|
+
|
|
1065
|
+
=========================
|
|
1066
|
+
|
|
1056
1067
|
https://docs.crisp.chat/references/rest-api/v1/#resolve-helpdesk-locale-article-category
|
|
1057
1068
|
|
|
1058
1069
|
var websiteID = "8c842203-7ed8-4e29-a608-7cf78a7d2fcc";
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ The Crisp API Node wrapper. Authenticate, send messages, fetch conversations, ac
|
|
|
6
6
|
|
|
7
7
|
Copyright 2023 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:
|
|
9
|
+
* **📝 Implements**: [REST API Reference (V1)](https://docs.crisp.chat/references/rest-api/v1/) at revision: 10/04/2024
|
|
10
10
|
* **😘 Maintainers**: [@baptistejamin](https://github.com/baptistejamin), [@eliottvincent](https://github.com/eliottvincent), [@valeriansaliou](https://github.com/valeriansaliou)
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
@@ -1596,6 +1596,21 @@ _👉 Notice: The `peopleID` argument can be an email or the `peopleID`._
|
|
|
1596
1596
|
```
|
|
1597
1597
|
</details>
|
|
1598
1598
|
|
|
1599
|
+
* **Resolve Helpdesk Locale Article Page** [`user`, `plugin`]: [Reference](https://docs.crisp.chat/references/rest-api/v1/#resolve-helpdesk-locale-article-page)
|
|
1600
|
+
* `CrispClient.website.resolveHelpdeskLocaleArticlePage(websiteID, locale, articleId)`
|
|
1601
|
+
* <details>
|
|
1602
|
+
<summary>See Example</summary>
|
|
1603
|
+
|
|
1604
|
+
```javascript
|
|
1605
|
+
var websiteID = "8c842203-7ed8-4e29-a608-7cf78a7d2fcc";
|
|
1606
|
+
|
|
1607
|
+
var locale = "en";
|
|
1608
|
+
var articleId = "fd036d68-c619-4c63-9deb-e2ce91733dd6";
|
|
1609
|
+
|
|
1610
|
+
CrispClient.website.resolveHelpdeskLocaleArticlePage(websiteID, locale, articleId);
|
|
1611
|
+
```
|
|
1612
|
+
</details>
|
|
1613
|
+
|
|
1599
1614
|
* **Resolve Helpdesk Locale Article Category** [`user`, `plugin`]: [Reference](https://docs.crisp.chat/references/rest-api/v1/#resolve-helpdesk-locale-article-category)
|
|
1600
1615
|
* `CrispClient.website.resolveHelpdeskLocaleArticleCategory(websiteID, locale, articleId)`
|
|
1601
1616
|
* <details>
|
|
@@ -328,6 +328,27 @@ function WebsiteHelpdesk(service, crisp) {
|
|
|
328
328
|
);
|
|
329
329
|
};
|
|
330
330
|
|
|
331
|
+
/**
|
|
332
|
+
* Resolve Helpdesk Locale Article Page
|
|
333
|
+
* @memberof WebsiteConversation
|
|
334
|
+
* @public
|
|
335
|
+
* @method resolveHelpdeskLocaleArticlePage
|
|
336
|
+
* @param {string} websiteID
|
|
337
|
+
* @param {string} locale
|
|
338
|
+
* @param {string} articleId
|
|
339
|
+
* @return {Promise}
|
|
340
|
+
*/
|
|
341
|
+
service.resolveHelpdeskLocaleArticlePage = function(
|
|
342
|
+
websiteID, locale, articleId
|
|
343
|
+
) {
|
|
344
|
+
return crisp.get(
|
|
345
|
+
crisp._prepareRestUrl([
|
|
346
|
+
"website", websiteID, "helpdesk", "locale", locale, "article",
|
|
347
|
+
articleId, "page"
|
|
348
|
+
])
|
|
349
|
+
);
|
|
350
|
+
};
|
|
351
|
+
|
|
331
352
|
/**
|
|
332
353
|
* Resolve Helpdesk Locale Article Category
|
|
333
354
|
* @memberof WebsiteConversation
|
package/package.json
CHANGED