@steamsets/client-ts 0.36.1 → 0.36.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/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
31
31
|
export declare const SDK_METADATA: {
|
|
32
32
|
readonly language: "typescript";
|
|
33
33
|
readonly openapiDocVersion: "1.0.0";
|
|
34
|
-
readonly sdkVersion: "0.36.
|
|
34
|
+
readonly sdkVersion: "0.36.2";
|
|
35
35
|
readonly genVersion: "2.915.1";
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.36.
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.36.2 2.915.1 1.0.0 @steamsets/client-ts";
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -29,8 +29,8 @@ function serverURLFromOptions(options) {
|
|
|
29
29
|
exports.SDK_METADATA = {
|
|
30
30
|
language: "typescript",
|
|
31
31
|
openapiDocVersion: "1.0.0",
|
|
32
|
-
sdkVersion: "0.36.
|
|
32
|
+
sdkVersion: "0.36.2",
|
|
33
33
|
genVersion: "2.915.1",
|
|
34
|
-
userAgent: "speakeasy-sdk/typescript 0.36.
|
|
34
|
+
userAgent: "speakeasy-sdk/typescript 0.36.2 2.915.1 1.0.0 @steamsets/client-ts",
|
|
35
35
|
};
|
|
36
36
|
//# sourceMappingURL=config.js.map
|
|
@@ -85,7 +85,7 @@ export type LeaderboardGetChangesRequestBody = {
|
|
|
85
85
|
*/
|
|
86
86
|
leaderboard: LeaderboardGetChangesRequestBodyLeaderboard;
|
|
87
87
|
/**
|
|
88
|
-
* Number of accounts returned. Default 100.
|
|
88
|
+
* Number of accounts returned. Default 100, max 1000.
|
|
89
89
|
*/
|
|
90
90
|
limit?: number | undefined;
|
|
91
91
|
/**
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -59,8 +59,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
59
59
|
export const SDK_METADATA = {
|
|
60
60
|
language: "typescript",
|
|
61
61
|
openapiDocVersion: "1.0.0",
|
|
62
|
-
sdkVersion: "0.36.
|
|
62
|
+
sdkVersion: "0.36.2",
|
|
63
63
|
genVersion: "2.915.1",
|
|
64
64
|
userAgent:
|
|
65
|
-
"speakeasy-sdk/typescript 0.36.
|
|
65
|
+
"speakeasy-sdk/typescript 0.36.2 2.915.1 1.0.0 @steamsets/client-ts",
|
|
66
66
|
} as const;
|
|
@@ -101,7 +101,7 @@ export type LeaderboardGetChangesRequestBody = {
|
|
|
101
101
|
*/
|
|
102
102
|
leaderboard: LeaderboardGetChangesRequestBodyLeaderboard;
|
|
103
103
|
/**
|
|
104
|
-
* Number of accounts returned. Default 100.
|
|
104
|
+
* Number of accounts returned. Default 100, max 1000.
|
|
105
105
|
*/
|
|
106
106
|
limit?: number | undefined;
|
|
107
107
|
/**
|