glitch-javascript-sdk 3.1.1 → 3.1.2
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 +3 -1189
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/Titles.d.ts +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/api/Titles.ts +2 -2
package/dist/esm/api/Titles.d.ts
CHANGED
|
@@ -500,7 +500,7 @@ declare class Titles {
|
|
|
500
500
|
/**
|
|
501
501
|
* Get the total earnings and playtime summary for a title.
|
|
502
502
|
*/
|
|
503
|
-
static getDeveloperPayoutSummary<T>(title_id: string): AxiosPromise<Response<T>>;
|
|
503
|
+
static getDeveloperPayoutSummary<T>(title_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
504
504
|
/**
|
|
505
505
|
* The Aegis Handshake: Verify if a player is allowed to play.
|
|
506
506
|
*
|
package/dist/esm/index.js
CHANGED
|
@@ -12698,8 +12698,8 @@ var Titles = /** @class */ (function () {
|
|
|
12698
12698
|
/**
|
|
12699
12699
|
* Get the total earnings and playtime summary for a title.
|
|
12700
12700
|
*/
|
|
12701
|
-
Titles.getDeveloperPayoutSummary = function (title_id) {
|
|
12702
|
-
return Requests.processRoute(TitlesRoute.routes.developerPayoutSummary, {}, { title_id: title_id });
|
|
12701
|
+
Titles.getDeveloperPayoutSummary = function (title_id, params) {
|
|
12702
|
+
return Requests.processRoute(TitlesRoute.routes.developerPayoutSummary, {}, { title_id: title_id }, params);
|
|
12703
12703
|
};
|
|
12704
12704
|
/**
|
|
12705
12705
|
* The Aegis Handshake: Verify if a player is allowed to play.
|