@steamsets/client-ts 0.17.0 → 0.17.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/README.md +6 -0
- package/docs/sdks/account/README.md +73 -0
- package/docs/sdks/data/README.md +73 -0
- package/docs/sdks/internal/README.md +73 -0
- package/funcs/accountAccountV1GetMeta.d.ts +11 -0
- package/funcs/accountAccountV1GetMeta.d.ts.map +1 -0
- package/funcs/accountAccountV1GetMeta.js +113 -0
- package/funcs/accountAccountV1GetMeta.js.map +1 -0
- package/funcs/dataAccountV1GetMeta.d.ts +11 -0
- package/funcs/dataAccountV1GetMeta.d.ts.map +1 -0
- package/funcs/dataAccountV1GetMeta.js +113 -0
- package/funcs/dataAccountV1GetMeta.js.map +1 -0
- package/funcs/internalAccountV1GetMeta.d.ts +11 -0
- package/funcs/internalAccountV1GetMeta.d.ts.map +1 -0
- package/funcs/internalAccountV1GetMeta.js +113 -0
- package/funcs/internalAccountV1GetMeta.js.map +1 -0
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/index.d.ts +1 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +1 -0
- package/models/components/index.js.map +1 -1
- package/models/components/v1accountmetaresponsebody.d.ts +41 -0
- package/models/components/v1accountmetaresponsebody.d.ts.map +1 -0
- package/models/components/v1accountmetaresponsebody.js +74 -0
- package/models/components/v1accountmetaresponsebody.js.map +1 -0
- package/models/operations/accountv1getmeta.d.ts +35 -0
- package/models/operations/accountv1getmeta.d.ts.map +1 -0
- package/models/operations/accountv1getmeta.js +75 -0
- package/models/operations/accountv1getmeta.js.map +1 -0
- package/models/operations/index.d.ts +1 -0
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +1 -0
- package/models/operations/index.js.map +1 -1
- package/package.json +1 -1
- package/sdk/account.d.ts +1 -0
- package/sdk/account.d.ts.map +1 -1
- package/sdk/account.js +4 -0
- package/sdk/account.js.map +1 -1
- package/sdk/data.d.ts +1 -0
- package/sdk/data.d.ts.map +1 -1
- package/sdk/data.js +4 -0
- package/sdk/data.js.map +1 -1
- package/sdk/internal.d.ts +1 -0
- package/sdk/internal.d.ts.map +1 -1
- package/sdk/internal.js +4 -0
- package/sdk/internal.js.map +1 -1
- package/src/funcs/accountAccountV1GetMeta.ts +149 -0
- package/src/funcs/dataAccountV1GetMeta.ts +149 -0
- package/src/funcs/internalAccountV1GetMeta.ts +149 -0
- package/src/lib/config.ts +3 -3
- package/src/models/components/index.ts +1 -0
- package/src/models/components/v1accountmetaresponsebody.ts +93 -0
- package/src/models/operations/accountv1getmeta.ts +89 -0
- package/src/models/operations/index.ts +1 -0
- package/src/sdk/account.ts +12 -0
- package/src/sdk/data.ts +12 -0
- package/src/sdk/internal.ts +12 -0
package/src/sdk/account.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
+
import { accountAccountV1GetMeta } from "../funcs/accountAccountV1GetMeta.js";
|
|
5
6
|
import { accountCreateDeveloperApp } from "../funcs/accountCreateDeveloperApp.js";
|
|
6
7
|
import { accountDeleteDeveloperApp } from "../funcs/accountDeleteDeveloperApp.js";
|
|
7
8
|
import { accountDeleteImages } from "../funcs/accountDeleteImages.js";
|
|
@@ -131,6 +132,17 @@ export class Account extends ClientSDK {
|
|
|
131
132
|
));
|
|
132
133
|
}
|
|
133
134
|
|
|
135
|
+
async accountV1GetMeta(
|
|
136
|
+
request: components.AccountSearch,
|
|
137
|
+
options?: RequestOptions,
|
|
138
|
+
): Promise<operations.AccountV1GetMetaResponse> {
|
|
139
|
+
return unwrapAsync(accountAccountV1GetMeta(
|
|
140
|
+
this,
|
|
141
|
+
request,
|
|
142
|
+
options,
|
|
143
|
+
));
|
|
144
|
+
}
|
|
145
|
+
|
|
134
146
|
async getStaff(
|
|
135
147
|
options?: RequestOptions,
|
|
136
148
|
): Promise<operations.AccountV1GetStaffResponse> {
|
package/src/sdk/data.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
+
import { dataAccountV1GetMeta } from "../funcs/dataAccountV1GetMeta.js";
|
|
5
6
|
import { dataGetApps } from "../funcs/dataGetApps.js";
|
|
6
7
|
import { dataGetBadges } from "../funcs/dataGetBadges.js";
|
|
7
8
|
import { dataGetDataPoints } from "../funcs/dataGetDataPoints.js";
|
|
@@ -79,4 +80,15 @@ export class Data extends ClientSDK {
|
|
|
79
80
|
options,
|
|
80
81
|
));
|
|
81
82
|
}
|
|
83
|
+
|
|
84
|
+
async accountV1GetMeta(
|
|
85
|
+
request: components.AccountSearch,
|
|
86
|
+
options?: RequestOptions,
|
|
87
|
+
): Promise<operations.AccountV1GetMetaResponse> {
|
|
88
|
+
return unwrapAsync(dataAccountV1GetMeta(
|
|
89
|
+
this,
|
|
90
|
+
request,
|
|
91
|
+
options,
|
|
92
|
+
));
|
|
93
|
+
}
|
|
82
94
|
}
|
package/src/sdk/internal.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
+
import { internalAccountV1GetMeta } from "../funcs/internalAccountV1GetMeta.js";
|
|
5
6
|
import { internalCheck } from "../funcs/internalCheck.js";
|
|
6
7
|
import { internalCreateDeveloperApp } from "../funcs/internalCreateDeveloperApp.js";
|
|
7
8
|
import { internalDeleteDeveloperApp } from "../funcs/internalDeleteDeveloperApp.js";
|
|
@@ -61,6 +62,17 @@ export class Internal extends ClientSDK {
|
|
|
61
62
|
));
|
|
62
63
|
}
|
|
63
64
|
|
|
65
|
+
async accountV1GetMeta(
|
|
66
|
+
request: components.AccountSearch,
|
|
67
|
+
options?: RequestOptions,
|
|
68
|
+
): Promise<operations.AccountV1GetMetaResponse> {
|
|
69
|
+
return unwrapAsync(internalAccountV1GetMeta(
|
|
70
|
+
this,
|
|
71
|
+
request,
|
|
72
|
+
options,
|
|
73
|
+
));
|
|
74
|
+
}
|
|
75
|
+
|
|
64
76
|
async getStaff(
|
|
65
77
|
options?: RequestOptions,
|
|
66
78
|
): Promise<operations.AccountV1GetStaffResponse> {
|