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/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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glitch-javascript-sdk",
3
- "version": "3.2.26",
3
+ "version": "3.2.27",
4
4
  "description": "Javascript SDK for Glitch",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -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;
@@ -7,6 +7,10 @@ class AdminReportsRoute {
7
7
  url: '/admin/reports/users-revenue',
8
8
  method: HTTP_METHODS.GET
9
9
  },
10
+ steam: {
11
+ url: '/admin/reports/steam',
12
+ method: HTTP_METHODS.GET
13
+ },
10
14
  };
11
15
  }
12
16