@steamsets/client-ts 0.3.2 → 0.4.0
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 +37 -0
- package/docs/sdks/account/README.md +48 -46
- package/docs/sdks/connection/README.md +7 -8
- package/docs/sdks/liveness/README.md +1 -2
- package/docs/sdks/session/README.md +14 -12
- package/docs/sdks/settings/README.md +17 -16
- package/docs/sdks/steamsets/README.md +1 -5
- package/funcs/accountAccountV1GetApps.d.ts +1 -1
- package/funcs/accountAccountV1GetApps.d.ts.map +1 -1
- package/funcs/accountAccountV1GetApps.js +14 -3
- package/funcs/accountAccountV1GetApps.js.map +1 -1
- package/funcs/accountAccountV1GetBadges.d.ts +1 -1
- package/funcs/accountAccountV1GetBadges.d.ts.map +1 -1
- package/funcs/accountAccountV1GetBadges.js +14 -3
- package/funcs/accountAccountV1GetBadges.js.map +1 -1
- package/funcs/accountAccountV1SessionLogin.d.ts +1 -1
- package/funcs/accountAccountV1SessionLogin.d.ts.map +1 -1
- package/funcs/accountAccountV1SessionLogin.js +12 -5
- package/funcs/accountAccountV1SessionLogin.js.map +1 -1
- package/funcs/sessionAccountV1SessionLogin.d.ts +1 -1
- package/funcs/sessionAccountV1SessionLogin.d.ts.map +1 -1
- package/funcs/sessionAccountV1SessionLogin.js +12 -5
- package/funcs/sessionAccountV1SessionLogin.js.map +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/accountsearch.d.ts +29 -0
- package/models/components/accountsearch.d.ts.map +1 -0
- package/models/components/accountsearch.js +54 -0
- package/models/components/accountsearch.js.map +1 -0
- package/models/components/accountsearchidstruct.d.ts +33 -0
- package/models/components/accountsearchidstruct.d.ts.map +1 -0
- package/models/components/accountsearchidstruct.js +52 -0
- package/models/components/accountsearchidstruct.js.map +1 -0
- package/models/components/accountsearchvanitystruct.d.ts +65 -0
- package/models/components/accountsearchvanitystruct.d.ts.map +1 -0
- package/models/components/accountsearchvanitystruct.js +74 -0
- package/models/components/accountsearchvanitystruct.js.map +1 -0
- package/models/components/emailnotification.d.ts +8 -8
- package/models/components/emailnotification.d.ts.map +1 -1
- package/models/components/emailnotification.js +13 -13
- package/models/components/emailnotification.js.map +1 -1
- package/models/components/index.d.ts +3 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +3 -0
- package/models/components/index.js.map +1 -1
- package/models/components/security.d.ts +2 -2
- package/models/components/security.d.ts.map +1 -1
- package/models/components/security.js +2 -2
- package/models/components/security.js.map +1 -1
- package/models/operations/accountv1sessionlogin.d.ts +23 -0
- package/models/operations/accountv1sessionlogin.d.ts.map +1 -1
- package/models/operations/accountv1sessionlogin.js +20 -1
- package/models/operations/accountv1sessionlogin.js.map +1 -1
- package/package.json +1 -1
- package/sdk/account.d.ts +3 -3
- package/sdk/account.d.ts.map +1 -1
- package/sdk/account.js +6 -6
- package/sdk/account.js.map +1 -1
- package/sdk/session.d.ts +1 -1
- package/sdk/session.d.ts.map +1 -1
- package/sdk/session.js +2 -2
- package/sdk/session.js.map +1 -1
- package/src/funcs/accountAccountV1GetApps.ts +20 -2
- package/src/funcs/accountAccountV1GetBadges.ts +20 -2
- package/src/funcs/accountAccountV1SessionLogin.ts +13 -5
- package/src/funcs/sessionAccountV1SessionLogin.ts +13 -5
- package/src/lib/config.ts +3 -3
- package/src/models/components/accountsearch.ts +58 -0
- package/src/models/components/accountsearchidstruct.ts +55 -0
- package/src/models/components/accountsearchvanitystruct.ts +85 -0
- package/src/models/components/emailnotification.ts +14 -12
- package/src/models/components/index.ts +3 -0
- package/src/models/components/security.ts +4 -4
- package/src/models/operations/accountv1sessionlogin.ts +40 -0
- package/src/sdk/account.ts +9 -4
- package/src/sdk/session.ts +2 -1
|
@@ -38,7 +38,6 @@ async function run() {
|
|
|
38
38
|
run();
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
|
|
42
41
|
### Standalone function
|
|
43
42
|
|
|
44
43
|
The standalone function version of this method:
|
|
@@ -81,10 +80,10 @@ run();
|
|
|
81
80
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
82
81
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
83
82
|
|
|
84
|
-
|
|
85
83
|
### Response
|
|
86
84
|
|
|
87
85
|
**Promise\<[components.V1ConnectResponseBody](../../models/components/v1connectresponsebody.md)\>**
|
|
86
|
+
|
|
88
87
|
### Errors
|
|
89
88
|
|
|
90
89
|
| Error Object | Status Code | Content Type |
|
|
@@ -92,6 +91,7 @@ run();
|
|
|
92
91
|
| errors.ErrorModel | 400,422,500 | application/problem+json |
|
|
93
92
|
| errors.SDKError | 4xx-5xx | */* |
|
|
94
93
|
|
|
94
|
+
|
|
95
95
|
## accountV1ConnectionDeleteConnection
|
|
96
96
|
|
|
97
97
|
Remove a connection
|
|
@@ -117,7 +117,6 @@ async function run() {
|
|
|
117
117
|
run();
|
|
118
118
|
```
|
|
119
119
|
|
|
120
|
-
|
|
121
120
|
### Standalone function
|
|
122
121
|
|
|
123
122
|
The standalone function version of this method:
|
|
@@ -159,10 +158,10 @@ run();
|
|
|
159
158
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
160
159
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
161
160
|
|
|
162
|
-
|
|
163
161
|
### Response
|
|
164
162
|
|
|
165
163
|
**Promise\<[components.V1DeleteConnectionResponseBody](../../models/components/v1deleteconnectionresponsebody.md)\>**
|
|
164
|
+
|
|
166
165
|
### Errors
|
|
167
166
|
|
|
168
167
|
| Error Object | Status Code | Content Type |
|
|
@@ -170,6 +169,7 @@ run();
|
|
|
170
169
|
| errors.ErrorModel | 400,422,500 | application/problem+json |
|
|
171
170
|
| errors.SDKError | 4xx-5xx | */* |
|
|
172
171
|
|
|
172
|
+
|
|
173
173
|
## accountV1ConnectionUpdateConnection
|
|
174
174
|
|
|
175
175
|
Make a connection visible/invisible
|
|
@@ -196,7 +196,6 @@ async function run() {
|
|
|
196
196
|
run();
|
|
197
197
|
```
|
|
198
198
|
|
|
199
|
-
|
|
200
199
|
### Standalone function
|
|
201
200
|
|
|
202
201
|
The standalone function version of this method:
|
|
@@ -239,10 +238,10 @@ run();
|
|
|
239
238
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
240
239
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
241
240
|
|
|
242
|
-
|
|
243
241
|
### Response
|
|
244
242
|
|
|
245
243
|
**Promise\<[components.V1UpdateConnectionResponseBody](../../models/components/v1updateconnectionresponsebody.md)\>**
|
|
244
|
+
|
|
246
245
|
### Errors
|
|
247
246
|
|
|
248
247
|
| Error Object | Status Code | Content Type |
|
|
@@ -250,6 +249,7 @@ run();
|
|
|
250
249
|
| errors.ErrorModel | 400,404,422,500 | application/problem+json |
|
|
251
250
|
| errors.SDKError | 4xx-5xx | */* |
|
|
252
251
|
|
|
252
|
+
|
|
253
253
|
## accountV1ConnectionVerifyConnection
|
|
254
254
|
|
|
255
255
|
Verify a domain connection only atm
|
|
@@ -275,7 +275,6 @@ async function run() {
|
|
|
275
275
|
run();
|
|
276
276
|
```
|
|
277
277
|
|
|
278
|
-
|
|
279
278
|
### Standalone function
|
|
280
279
|
|
|
281
280
|
The standalone function version of this method:
|
|
@@ -317,10 +316,10 @@ run();
|
|
|
317
316
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
318
317
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
319
318
|
|
|
320
|
-
|
|
321
319
|
### Response
|
|
322
320
|
|
|
323
321
|
**Promise\<[components.V1VerifyConnectionResponseBody](../../models/components/v1verifyconnectionresponsebody.md)\>**
|
|
322
|
+
|
|
324
323
|
### Errors
|
|
325
324
|
|
|
326
325
|
| Error Object | Status Code | Content Type |
|
|
@@ -32,7 +32,6 @@ async function run() {
|
|
|
32
32
|
run();
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
|
|
36
35
|
### Standalone function
|
|
37
36
|
|
|
38
37
|
The standalone function version of this method:
|
|
@@ -71,10 +70,10 @@ run();
|
|
|
71
70
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
72
71
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
73
72
|
|
|
74
|
-
|
|
75
73
|
### Response
|
|
76
74
|
|
|
77
75
|
**Promise\<[components.V1LivenessResponseBody](../../models/components/v1livenessresponsebody.md)\>**
|
|
76
|
+
|
|
78
77
|
### Errors
|
|
79
78
|
|
|
80
79
|
| Error Object | Status Code | Content Type |
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Session
|
|
2
2
|
(*session*)
|
|
3
3
|
|
|
4
|
+
## Overview
|
|
5
|
+
|
|
4
6
|
### Available Operations
|
|
5
7
|
|
|
6
8
|
* [accountV1SessionDelete](#accountv1sessiondelete) - Deletes a session, can also be used to logout
|
|
@@ -32,7 +34,6 @@ async function run() {
|
|
|
32
34
|
run();
|
|
33
35
|
```
|
|
34
36
|
|
|
35
|
-
|
|
36
37
|
### Standalone function
|
|
37
38
|
|
|
38
39
|
The standalone function version of this method:
|
|
@@ -74,10 +75,10 @@ run();
|
|
|
74
75
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
75
76
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
76
77
|
|
|
77
|
-
|
|
78
78
|
### Response
|
|
79
79
|
|
|
80
80
|
**Promise\<[components.V1DeleteSessionResponseBody](../../models/components/v1deletesessionresponsebody.md)\>**
|
|
81
|
+
|
|
81
82
|
### Errors
|
|
82
83
|
|
|
83
84
|
| Error Object | Status Code | Content Type |
|
|
@@ -85,6 +86,7 @@ run();
|
|
|
85
86
|
| errors.ErrorModel | 404,422,500 | application/problem+json |
|
|
86
87
|
| errors.SDKError | 4xx-5xx | */* |
|
|
87
88
|
|
|
89
|
+
|
|
88
90
|
## accountV1SessionGet
|
|
89
91
|
|
|
90
92
|
Gets all session data
|
|
@@ -108,7 +110,6 @@ async function run() {
|
|
|
108
110
|
run();
|
|
109
111
|
```
|
|
110
112
|
|
|
111
|
-
|
|
112
113
|
### Standalone function
|
|
113
114
|
|
|
114
115
|
The standalone function version of this method:
|
|
@@ -147,10 +148,10 @@ run();
|
|
|
147
148
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
148
149
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
149
150
|
|
|
150
|
-
|
|
151
151
|
### Response
|
|
152
152
|
|
|
153
153
|
**Promise\<[components.V1GetSessionBody](../../models/components/v1getsessionbody.md)\>**
|
|
154
|
+
|
|
154
155
|
### Errors
|
|
155
156
|
|
|
156
157
|
| Error Object | Status Code | Content Type |
|
|
@@ -158,6 +159,7 @@ run();
|
|
|
158
159
|
| errors.ErrorModel | 500 | application/problem+json |
|
|
159
160
|
| errors.SDKError | 4xx-5xx | */* |
|
|
160
161
|
|
|
162
|
+
|
|
161
163
|
## accountV1SessionLogin
|
|
162
164
|
|
|
163
165
|
Logs a user in and creates a new session
|
|
@@ -167,9 +169,7 @@ Logs a user in and creates a new session
|
|
|
167
169
|
```typescript
|
|
168
170
|
import { SteamSets } from "@steamsets/client-ts";
|
|
169
171
|
|
|
170
|
-
const steamSets = new SteamSets(
|
|
171
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
172
|
-
});
|
|
172
|
+
const steamSets = new SteamSets();
|
|
173
173
|
|
|
174
174
|
async function run() {
|
|
175
175
|
const result = await steamSets.session.accountV1SessionLogin({
|
|
@@ -185,6 +185,8 @@ async function run() {
|
|
|
185
185
|
openidSig: "123456",
|
|
186
186
|
openidSigned: "123456",
|
|
187
187
|
},
|
|
188
|
+
}, {
|
|
189
|
+
anonymous: "<YOUR_BEARER_TOKEN_HERE>",
|
|
188
190
|
});
|
|
189
191
|
|
|
190
192
|
// Handle the result
|
|
@@ -194,7 +196,6 @@ async function run() {
|
|
|
194
196
|
run();
|
|
195
197
|
```
|
|
196
198
|
|
|
197
|
-
|
|
198
199
|
### Standalone function
|
|
199
200
|
|
|
200
201
|
The standalone function version of this method:
|
|
@@ -205,9 +206,7 @@ import { sessionAccountV1SessionLogin } from "@steamsets/client-ts/funcs/session
|
|
|
205
206
|
|
|
206
207
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
207
208
|
// You can create one instance of it to use across an application.
|
|
208
|
-
const steamSets = new SteamSetsCore(
|
|
209
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
210
|
-
});
|
|
209
|
+
const steamSets = new SteamSetsCore();
|
|
211
210
|
|
|
212
211
|
async function run() {
|
|
213
212
|
const res = await sessionAccountV1SessionLogin(steamSets, {
|
|
@@ -223,6 +222,8 @@ async function run() {
|
|
|
223
222
|
openidSig: "123456",
|
|
224
223
|
openidSigned: "123456",
|
|
225
224
|
},
|
|
225
|
+
}, {
|
|
226
|
+
anonymous: "<YOUR_BEARER_TOKEN_HERE>",
|
|
226
227
|
});
|
|
227
228
|
|
|
228
229
|
if (!res.ok) {
|
|
@@ -243,14 +244,15 @@ run();
|
|
|
243
244
|
| Parameter | Type | Required | Description |
|
|
244
245
|
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
245
246
|
| `request` | [operations.AccountV1SessionLoginRequest](../../models/operations/accountv1sessionloginrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
247
|
+
| `security` | [operations.AccountV1SessionLoginSecurity](../../models/operations/accountv1sessionloginsecurity.md) | :heavy_check_mark: | The security requirements to use for the request. |
|
|
246
248
|
| `options` | RequestOptions | :heavy_minus_sign: | Used to set various options for making HTTP requests. |
|
|
247
249
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
248
250
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
249
251
|
|
|
250
|
-
|
|
251
252
|
### Response
|
|
252
253
|
|
|
253
254
|
**Promise\<[components.V1LoginResponseBody](../../models/components/v1loginresponsebody.md)\>**
|
|
255
|
+
|
|
254
256
|
### Errors
|
|
255
257
|
|
|
256
258
|
| Error Object | Status Code | Content Type |
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Settings
|
|
2
2
|
(*settings*)
|
|
3
3
|
|
|
4
|
+
## Overview
|
|
5
|
+
|
|
4
6
|
### Available Operations
|
|
5
7
|
|
|
6
8
|
* [accountV1SettingsDeleteImages](#accountv1settingsdeleteimages) - Delete mulitple imagest
|
|
@@ -42,7 +44,6 @@ async function run() {
|
|
|
42
44
|
run();
|
|
43
45
|
```
|
|
44
46
|
|
|
45
|
-
|
|
46
47
|
### Standalone function
|
|
47
48
|
|
|
48
49
|
The standalone function version of this method:
|
|
@@ -89,10 +90,10 @@ run();
|
|
|
89
90
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
90
91
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
91
92
|
|
|
92
|
-
|
|
93
93
|
### Response
|
|
94
94
|
|
|
95
95
|
**Promise\<[components.V1DeleteImagesResponseBody](../../models/components/v1deleteimagesresponsebody.md)\>**
|
|
96
|
+
|
|
96
97
|
### Errors
|
|
97
98
|
|
|
98
99
|
| Error Object | Status Code | Content Type |
|
|
@@ -100,6 +101,7 @@ run();
|
|
|
100
101
|
| errors.ErrorModel | 404,422,500 | application/problem+json |
|
|
101
102
|
| errors.SDKError | 4xx-5xx | */* |
|
|
102
103
|
|
|
104
|
+
|
|
103
105
|
## accountV1SettingsGenerateApiKey
|
|
104
106
|
|
|
105
107
|
Generate a new API key for the account
|
|
@@ -123,7 +125,6 @@ async function run() {
|
|
|
123
125
|
run();
|
|
124
126
|
```
|
|
125
127
|
|
|
126
|
-
|
|
127
128
|
### Standalone function
|
|
128
129
|
|
|
129
130
|
The standalone function version of this method:
|
|
@@ -162,10 +163,10 @@ run();
|
|
|
162
163
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
163
164
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
164
165
|
|
|
165
|
-
|
|
166
166
|
### Response
|
|
167
167
|
|
|
168
168
|
**Promise\<[components.V1GenerateApiKeyResponseBody](../../models/components/v1generateapikeyresponsebody.md)\>**
|
|
169
|
+
|
|
169
170
|
### Errors
|
|
170
171
|
|
|
171
172
|
| Error Object | Status Code | Content Type |
|
|
@@ -173,6 +174,7 @@ run();
|
|
|
173
174
|
| errors.ErrorModel | 404,429,500 | application/problem+json |
|
|
174
175
|
| errors.SDKError | 4xx-5xx | */* |
|
|
175
176
|
|
|
177
|
+
|
|
176
178
|
## accountV1SettingsGet
|
|
177
179
|
|
|
178
180
|
Gets all settings for the account
|
|
@@ -196,7 +198,6 @@ async function run() {
|
|
|
196
198
|
run();
|
|
197
199
|
```
|
|
198
200
|
|
|
199
|
-
|
|
200
201
|
### Standalone function
|
|
201
202
|
|
|
202
203
|
The standalone function version of this method:
|
|
@@ -235,10 +236,10 @@ run();
|
|
|
235
236
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
236
237
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
237
238
|
|
|
238
|
-
|
|
239
239
|
### Response
|
|
240
240
|
|
|
241
241
|
**Promise\<[components.V1GetSettingsBody](../../models/components/v1getsettingsbody.md)\>**
|
|
242
|
+
|
|
242
243
|
### Errors
|
|
243
244
|
|
|
244
245
|
| Error Object | Status Code | Content Type |
|
|
@@ -246,6 +247,7 @@ run();
|
|
|
246
247
|
| errors.ErrorModel | 500 | application/problem+json |
|
|
247
248
|
| errors.SDKError | 4xx-5xx | */* |
|
|
248
249
|
|
|
250
|
+
|
|
249
251
|
## accountV1SettingsSendEmailVerification
|
|
250
252
|
|
|
251
253
|
Resend the verification code for an email
|
|
@@ -268,7 +270,6 @@ async function run() {
|
|
|
268
270
|
run();
|
|
269
271
|
```
|
|
270
272
|
|
|
271
|
-
|
|
272
273
|
### Standalone function
|
|
273
274
|
|
|
274
275
|
The standalone function version of this method:
|
|
@@ -307,10 +308,10 @@ run();
|
|
|
307
308
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
308
309
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
309
310
|
|
|
310
|
-
|
|
311
311
|
### Response
|
|
312
312
|
|
|
313
313
|
**Promise\<void\>**
|
|
314
|
+
|
|
314
315
|
### Errors
|
|
315
316
|
|
|
316
317
|
| Error Object | Status Code | Content Type |
|
|
@@ -318,6 +319,7 @@ run();
|
|
|
318
319
|
| errors.ErrorModel | 404,422,429,500 | application/problem+json |
|
|
319
320
|
| errors.SDKError | 4xx-5xx | */* |
|
|
320
321
|
|
|
322
|
+
|
|
321
323
|
## accountV1SettingsUpdateImage
|
|
322
324
|
|
|
323
325
|
Update one of the uploaded images
|
|
@@ -344,7 +346,6 @@ async function run() {
|
|
|
344
346
|
run();
|
|
345
347
|
```
|
|
346
348
|
|
|
347
|
-
|
|
348
349
|
### Standalone function
|
|
349
350
|
|
|
350
351
|
The standalone function version of this method:
|
|
@@ -387,10 +388,10 @@ run();
|
|
|
387
388
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
388
389
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
389
390
|
|
|
390
|
-
|
|
391
391
|
### Response
|
|
392
392
|
|
|
393
393
|
**Promise\<[components.V1UpdateImageResponseBody](../../models/components/v1updateimageresponsebody.md)\>**
|
|
394
|
+
|
|
394
395
|
### Errors
|
|
395
396
|
|
|
396
397
|
| Error Object | Status Code | Content Type |
|
|
@@ -398,6 +399,7 @@ run();
|
|
|
398
399
|
| errors.ErrorModel | 404,422,500 | application/problem+json |
|
|
399
400
|
| errors.SDKError | 4xx-5xx | */* |
|
|
400
401
|
|
|
402
|
+
|
|
401
403
|
## accountV1SettingsUpdate
|
|
402
404
|
|
|
403
405
|
Update settings for the logged in account
|
|
@@ -437,7 +439,6 @@ async function run() {
|
|
|
437
439
|
run();
|
|
438
440
|
```
|
|
439
441
|
|
|
440
|
-
|
|
441
442
|
### Standalone function
|
|
442
443
|
|
|
443
444
|
The standalone function version of this method:
|
|
@@ -493,10 +494,10 @@ run();
|
|
|
493
494
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
494
495
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
495
496
|
|
|
496
|
-
|
|
497
497
|
### Response
|
|
498
498
|
|
|
499
499
|
**Promise\<[components.V1UpdateSettingsResponseBody](../../models/components/v1updatesettingsresponsebody.md)\>**
|
|
500
|
+
|
|
500
501
|
### Errors
|
|
501
502
|
|
|
502
503
|
| Error Object | Status Code | Content Type |
|
|
@@ -504,6 +505,7 @@ run();
|
|
|
504
505
|
| errors.ErrorModel | 422,429,500 | application/problem+json |
|
|
505
506
|
| errors.SDKError | 4xx-5xx | */* |
|
|
506
507
|
|
|
508
|
+
|
|
507
509
|
## accountV1SettingsUploadImages
|
|
508
510
|
|
|
509
511
|
Multi Upload Endpoint for images
|
|
@@ -533,7 +535,6 @@ async function run() {
|
|
|
533
535
|
run();
|
|
534
536
|
```
|
|
535
537
|
|
|
536
|
-
|
|
537
538
|
### Standalone function
|
|
538
539
|
|
|
539
540
|
The standalone function version of this method:
|
|
@@ -579,10 +580,10 @@ run();
|
|
|
579
580
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
580
581
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
581
582
|
|
|
582
|
-
|
|
583
583
|
### Response
|
|
584
584
|
|
|
585
585
|
**Promise\<void\>**
|
|
586
|
+
|
|
586
587
|
### Errors
|
|
587
588
|
|
|
588
589
|
| Error Object | Status Code | Content Type |
|
|
@@ -590,6 +591,7 @@ run();
|
|
|
590
591
|
| errors.ErrorModel | 422,500 | application/problem+json |
|
|
591
592
|
| errors.SDKError | 4xx-5xx | */* |
|
|
592
593
|
|
|
594
|
+
|
|
593
595
|
## accountV1SettingsVerfyEmail
|
|
594
596
|
|
|
595
597
|
Verify the email by passing in the code the user should've gotten
|
|
@@ -615,7 +617,6 @@ async function run() {
|
|
|
615
617
|
run();
|
|
616
618
|
```
|
|
617
619
|
|
|
618
|
-
|
|
619
620
|
### Standalone function
|
|
620
621
|
|
|
621
622
|
The standalone function version of this method:
|
|
@@ -657,10 +658,10 @@ run();
|
|
|
657
658
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
658
659
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
659
660
|
|
|
660
|
-
|
|
661
661
|
### Response
|
|
662
662
|
|
|
663
663
|
**Promise\<[components.V1VerifyEmailResponseBody](../../models/components/v1verifyemailresponsebody.md)\>**
|
|
664
|
+
|
|
664
665
|
### Errors
|
|
665
666
|
|
|
666
667
|
| Error Object | Status Code | Content Type |
|
|
@@ -9,5 +9,5 @@ import { Result } from "../types/fp.js";
|
|
|
9
9
|
/**
|
|
10
10
|
* Get Account Apps
|
|
11
11
|
*/
|
|
12
|
-
export declare function accountAccountV1GetApps(client$: SteamSetsCore, options?: RequestOptions): Promise<Result<components.V1AccountsAppsResponseBody, errors.ErrorModel | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
|
|
12
|
+
export declare function accountAccountV1GetApps(client$: SteamSetsCore, request: components.AccountSearch, options?: RequestOptions): Promise<Result<components.V1AccountsAppsResponseBody, errors.ErrorModel | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
|
|
13
13
|
//# sourceMappingURL=accountAccountV1GetApps.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountAccountV1GetApps.d.ts","sourceRoot":"","sources":["../src/funcs/accountAccountV1GetApps.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"accountAccountV1GetApps.d.ts","sourceRoot":"","sources":["../src/funcs/accountAccountV1GetApps.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAI3C,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGhD,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EACH,eAAe,EACf,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,qBAAqB,EACxB,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,MAAM,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAC5E,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAExC;;GAEG;AACH,wBAAsB,uBAAuB,CACzC,OAAO,EAAE,aAAa,EACtB,OAAO,EAAE,UAAU,CAAC,aAAa,EACjC,OAAO,CAAC,EAAE,cAAc,GACzB,OAAO,CACN,MAAM,CACF,UAAU,CAAC,0BAA0B,EACnC,MAAM,CAAC,UAAU,GACjB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,eAAe,CACpB,CACJ,CAqFA"}
|
|
@@ -27,7 +27,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.accountAccountV1GetApps = accountAccountV1GetApps;
|
|
30
|
+
const encodings_js_1 = require("../lib/encodings.js");
|
|
30
31
|
const m$ = __importStar(require("../lib/matchers.js"));
|
|
32
|
+
const schemas$ = __importStar(require("../lib/schemas.js"));
|
|
31
33
|
const security_js_1 = require("../lib/security.js");
|
|
32
34
|
const url_js_1 = require("../lib/url.js");
|
|
33
35
|
const components = __importStar(require("../models/components/index.js"));
|
|
@@ -35,9 +37,17 @@ const errors = __importStar(require("../models/errors/index.js"));
|
|
|
35
37
|
/**
|
|
36
38
|
* Get Account Apps
|
|
37
39
|
*/
|
|
38
|
-
async function accountAccountV1GetApps(client$, options) {
|
|
40
|
+
async function accountAccountV1GetApps(client$, request, options) {
|
|
41
|
+
const input$ = request;
|
|
42
|
+
const parsed$ = schemas$.safeParse(input$, (value$) => components.AccountSearch$outboundSchema.parse(value$), "Input validation failed");
|
|
43
|
+
if (!parsed$.ok) {
|
|
44
|
+
return parsed$;
|
|
45
|
+
}
|
|
46
|
+
const payload$ = parsed$.value;
|
|
47
|
+
const body$ = (0, encodings_js_1.encodeJSON)("body", payload$, { explode: true });
|
|
39
48
|
const path$ = (0, url_js_1.pathToFunc)("/account.v1.AccountService/GetApps")();
|
|
40
49
|
const headers$ = new Headers({
|
|
50
|
+
"Content-Type": "application/json",
|
|
41
51
|
Accept: "application/json",
|
|
42
52
|
});
|
|
43
53
|
const session$ = await (0, security_js_1.extractSecurity)(client$.options$.session);
|
|
@@ -53,6 +63,7 @@ async function accountAccountV1GetApps(client$, options) {
|
|
|
53
63
|
method: "POST",
|
|
54
64
|
path: path$,
|
|
55
65
|
headers: headers$,
|
|
66
|
+
body: body$,
|
|
56
67
|
uaHeader: "x-speakeasy-user-agent",
|
|
57
68
|
timeoutMs: (options === null || options === void 0 ? void 0 : options.timeoutMs) || client$.options$.timeoutMs || -1,
|
|
58
69
|
}, options);
|
|
@@ -62,7 +73,7 @@ async function accountAccountV1GetApps(client$, options) {
|
|
|
62
73
|
const request$ = requestRes.value;
|
|
63
74
|
const doResult = await client$.do$(request$, {
|
|
64
75
|
context,
|
|
65
|
-
errorCodes: ["400", "4XX", "500", "5XX"],
|
|
76
|
+
errorCodes: ["400", "422", "4XX", "500", "5XX"],
|
|
66
77
|
retryConfig: (options === null || options === void 0 ? void 0 : options.retries) || client$.options$.retryConfig,
|
|
67
78
|
retryCodes: (options === null || options === void 0 ? void 0 : options.retryCodes) || ["429", "500", "502", "503", "504"],
|
|
68
79
|
});
|
|
@@ -73,7 +84,7 @@ async function accountAccountV1GetApps(client$, options) {
|
|
|
73
84
|
const responseFields$ = {
|
|
74
85
|
HttpMeta: { Response: response, Request: request$ },
|
|
75
86
|
};
|
|
76
|
-
const [result$] = await m$.match(m$.json(200, components.V1AccountsAppsResponseBody$inboundSchema), m$.jsonErr([400, 500], errors.ErrorModel$inboundSchema, {
|
|
87
|
+
const [result$] = await m$.match(m$.json(200, components.V1AccountsAppsResponseBody$inboundSchema), m$.jsonErr([400, 422, 500], errors.ErrorModel$inboundSchema, {
|
|
77
88
|
ctype: "application/problem+json",
|
|
78
89
|
}), m$.fail(["4XX", "5XX"]))(response, { extraFields: responseFields$ });
|
|
79
90
|
if (!result$.ok) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountAccountV1GetApps.js","sourceRoot":"","sources":["../src/funcs/accountAccountV1GetApps.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"accountAccountV1GetApps.js","sourceRoot":"","sources":["../src/funcs/accountAccountV1GetApps.ts"],"names":[],"mappings":"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"}
|
|
@@ -9,5 +9,5 @@ import { Result } from "../types/fp.js";
|
|
|
9
9
|
/**
|
|
10
10
|
* Get Account Badges
|
|
11
11
|
*/
|
|
12
|
-
export declare function accountAccountV1GetBadges(client$: SteamSetsCore, options?: RequestOptions): Promise<Result<components.V1BadgesResponseBody, errors.ErrorModel | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
|
|
12
|
+
export declare function accountAccountV1GetBadges(client$: SteamSetsCore, request: components.AccountSearch, options?: RequestOptions): Promise<Result<components.V1BadgesResponseBody, errors.ErrorModel | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
|
|
13
13
|
//# sourceMappingURL=accountAccountV1GetBadges.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountAccountV1GetBadges.d.ts","sourceRoot":"","sources":["../src/funcs/accountAccountV1GetBadges.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"accountAccountV1GetBadges.d.ts","sourceRoot":"","sources":["../src/funcs/accountAccountV1GetBadges.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAI3C,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGhD,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EACH,eAAe,EACf,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,qBAAqB,EACxB,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,MAAM,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAC5E,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAExC;;GAEG;AACH,wBAAsB,yBAAyB,CAC3C,OAAO,EAAE,aAAa,EACtB,OAAO,EAAE,UAAU,CAAC,aAAa,EACjC,OAAO,CAAC,EAAE,cAAc,GACzB,OAAO,CACN,MAAM,CACF,UAAU,CAAC,oBAAoB,EAC7B,MAAM,CAAC,UAAU,GACjB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,eAAe,CACpB,CACJ,CAqFA"}
|