glitch-javascript-sdk 3.2.26 → 3.2.27
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 +12 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/AdminReports.d.ts +6 -0
- package/dist/esm/index.js +12 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
- package/src/api/AdminReports.ts +9 -0
- package/src/routes/AdminReportsRoute.ts +4 -0
package/dist/index.d.ts
CHANGED
|
@@ -10301,6 +10301,12 @@ declare class AdminReports {
|
|
|
10301
10301
|
* engagement, and user-generated revenue.
|
|
10302
10302
|
*/
|
|
10303
10303
|
static usersRevenue<T>(params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
10304
|
+
/**
|
|
10305
|
+
* Returns site-admin Steam market reports, including social profile coverage,
|
|
10306
|
+
* platform usage, follower benchmarks, review/player relationships, and
|
|
10307
|
+
* optional target-app game reports.
|
|
10308
|
+
*/
|
|
10309
|
+
static steam<T>(params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
10304
10310
|
}
|
|
10305
10311
|
|
|
10306
10312
|
interface Route {
|
package/package.json
CHANGED
package/src/api/AdminReports.ts
CHANGED
|
@@ -11,6 +11,15 @@ class AdminReports {
|
|
|
11
11
|
public static usersRevenue<T>(params?: Record<string, any>): AxiosPromise<Response<T>> {
|
|
12
12
|
return Requests.processRoute(AdminReportsRoute.routes.usersRevenue, undefined, undefined, params);
|
|
13
13
|
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Returns site-admin Steam market reports, including social profile coverage,
|
|
17
|
+
* platform usage, follower benchmarks, review/player relationships, and
|
|
18
|
+
* optional target-app game reports.
|
|
19
|
+
*/
|
|
20
|
+
public static steam<T>(params?: Record<string, any>): AxiosPromise<Response<T>> {
|
|
21
|
+
return Requests.processRoute(AdminReportsRoute.routes.steam, undefined, undefined, params);
|
|
22
|
+
}
|
|
14
23
|
}
|
|
15
24
|
|
|
16
25
|
export default AdminReports;
|