glitch-javascript-sdk 2.7.2 → 2.7.3
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/dist/cjs/index.js +7 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/Crm.d.ts +4 -0
- package/dist/esm/index.js +7 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/api/Crm.ts +7 -0
- package/src/routes/CrmRoute.ts +1 -0
package/dist/cjs/index.js
CHANGED
|
@@ -30323,6 +30323,7 @@ var CrmRoute = /** @class */ (function () {
|
|
|
30323
30323
|
// Analytics
|
|
30324
30324
|
funnelStats: { url: '/admin/crm/analytics/funnel', method: HTTP_METHODS.GET },
|
|
30325
30325
|
performanceStats: { url: '/admin/crm/analytics/performance', method: HTTP_METHODS.GET },
|
|
30326
|
+
getInterestStats: { url: '/admin/crm/analytics/interests', method: HTTP_METHODS.GET },
|
|
30326
30327
|
};
|
|
30327
30328
|
return CrmRoute;
|
|
30328
30329
|
}());
|
|
@@ -30438,6 +30439,12 @@ var Crm = /** @class */ (function () {
|
|
|
30438
30439
|
Crm.getPerformanceStats = function () {
|
|
30439
30440
|
return Requests.processRoute(CrmRoute.routes.performanceStats);
|
|
30440
30441
|
};
|
|
30442
|
+
/**
|
|
30443
|
+
* Get the analytics on what users indcated they were interested in.
|
|
30444
|
+
*/
|
|
30445
|
+
Crm.getInterestStats = function () {
|
|
30446
|
+
return Requests.processRoute(CrmRoute.routes.getInterestStats);
|
|
30447
|
+
};
|
|
30441
30448
|
return Crm;
|
|
30442
30449
|
}());
|
|
30443
30450
|
|