crisp-api 10.9.2 → 10.10.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/EXAMPLES.md +8 -0
- package/README.md +449 -310
- package/dist/crisp.d.ts +2 -2
- package/dist/crisp.js +5 -1
- package/dist/resources/WebsiteBatch.d.ts +43 -0
- package/dist/resources/WebsiteBatch.js +42 -0
- package/dist/resources/WebsiteCampaign.d.ts +1 -0
- package/dist/resources/WebsiteConnect.d.ts +34 -0
- package/dist/resources/WebsiteConnect.js +37 -0
- package/dist/resources/WebsiteConversation.d.ts +1 -1
- package/dist/resources/WebsiteConversation.js +1 -1
- package/dist/resources/index.d.ts +1 -0
- package/dist/resources/index.js +1 -0
- package/dist/services/website.d.ts +2 -1
- package/dist/services/website.js +2 -0
- package/lib/crisp.ts +8 -2
- package/lib/resources/WebsiteBatch.ts +102 -0
- package/lib/resources/WebsiteCampaign.ts +1 -0
- package/lib/resources/WebsiteConnect.ts +57 -0
- package/lib/resources/WebsiteConversation.ts +2 -2
- package/lib/resources/index.ts +1 -0
- package/lib/services/website.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/EXAMPLES.md
CHANGED
|
@@ -2379,6 +2379,14 @@ CrispClient.website.listCampaignStatistics(websiteID, campaignID, action, pageNu
|
|
|
2379
2379
|
|
|
2380
2380
|
=========================
|
|
2381
2381
|
|
|
2382
|
+
https://docs.crisp.chat/references/rest-api/v1/#get-website-connect-endpoints
|
|
2383
|
+
|
|
2384
|
+
var websiteID = "8c842203-7ed8-4e29-a608-7cf78a7d2fcc";
|
|
2385
|
+
|
|
2386
|
+
CrispClient.website.getConnectEndpoints(websiteID);
|
|
2387
|
+
|
|
2388
|
+
=========================
|
|
2389
|
+
|
|
2382
2390
|
https://docs.crisp.chat/references/rest-api/v1/#get-connect-account
|
|
2383
2391
|
|
|
2384
2392
|
CrispClient.plugin.getConnectAccount();
|