crisp-api 10.0.5 → 10.0.6
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
package/dist/crisp.js
CHANGED
|
@@ -47,7 +47,7 @@ declare class PluginConnect extends BaseResource {
|
|
|
47
47
|
/**
|
|
48
48
|
* List Connect Websites Since
|
|
49
49
|
*/
|
|
50
|
-
listConnectWebsitesSince(dateSince: string, filterConfigured: boolean): Promise<PluginConnectWebsitesSince>;
|
|
50
|
+
listConnectWebsitesSince(dateSince: string, filterConfigured: boolean): Promise<PluginConnectWebsitesSince[]>;
|
|
51
51
|
/**
|
|
52
52
|
* Get Connect Endpoints
|
|
53
53
|
*/
|
|
@@ -96,7 +96,7 @@ class PluginConnect extends BaseResource {
|
|
|
96
96
|
*/
|
|
97
97
|
listConnectWebsitesSince(
|
|
98
98
|
dateSince: string, filterConfigured: boolean
|
|
99
|
-
): Promise<PluginConnectWebsitesSince> {
|
|
99
|
+
): Promise<PluginConnectWebsitesSince[]> {
|
|
100
100
|
// Generate query
|
|
101
101
|
let query = {
|
|
102
102
|
filter_configured: (
|
package/package.json
CHANGED