glitch-javascript-sdk 1.6.8 → 1.6.9
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 +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/Hashtags.d.ts +2 -2
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/api/Hashtags.ts +4 -4
package/dist/cjs/index.js
CHANGED
|
@@ -25373,8 +25373,8 @@ var Hashtags = /** @class */ (function () {
|
|
|
25373
25373
|
*
|
|
25374
25374
|
* @returns A promise
|
|
25375
25375
|
*/
|
|
25376
|
-
Hashtags.list = function (
|
|
25377
|
-
return Requests.processRoute(HashtagRoute.routes.list,
|
|
25376
|
+
Hashtags.list = function (params) {
|
|
25377
|
+
return Requests.processRoute(HashtagRoute.routes.list, {}, {}, params);
|
|
25378
25378
|
};
|
|
25379
25379
|
/**
|
|
25380
25380
|
* Get the top hashtags for a title, campaign, or schedule.
|
|
@@ -25382,8 +25382,8 @@ var Hashtags = /** @class */ (function () {
|
|
|
25382
25382
|
* @param params - e.g. { title_id: '...', limit: 10, sort: 'sum_views', start_date: 'YYYY-MM-DD', end_date: 'YYYY-MM-DD' }
|
|
25383
25383
|
* @returns AxiosPromise of an array of aggregated hashtags
|
|
25384
25384
|
*/
|
|
25385
|
-
Hashtags.top = function (
|
|
25386
|
-
return Requests.processRoute(HashtagRoute.routes.top,
|
|
25385
|
+
Hashtags.top = function (params) {
|
|
25386
|
+
return Requests.processRoute(HashtagRoute.routes.top, {}, {}, params);
|
|
25387
25387
|
};
|
|
25388
25388
|
return Hashtags;
|
|
25389
25389
|
}());
|