@steamsets/client-ts 0.6.0 → 0.7.1
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 +71 -50
- package/docs/sdks/account/README.md +46 -138
- package/docs/sdks/app/README.md +4 -12
- package/docs/sdks/connection/README.md +8 -24
- package/docs/sdks/data/README.md +16 -48
- package/docs/sdks/liveness/README.md +2 -6
- package/docs/sdks/location/README.md +2 -6
- package/docs/sdks/public/README.md +14 -42
- package/docs/sdks/session/README.md +8 -24
- package/docs/sdks/settings/README.md +16 -48
- package/funcs/accountAccountV1SessionCreate.js +1 -1
- package/funcs/accountAccountV1SessionCreate.js.map +1 -1
- package/funcs/accountAccountV1SettingsSendEmailVerification.js +1 -1
- package/funcs/accountAccountV1SettingsSendEmailVerification.js.map +1 -1
- package/funcs/sessionAccountV1SessionCreate.js +1 -1
- package/funcs/sessionAccountV1SessionCreate.js.map +1 -1
- package/funcs/settingsAccountV1SettingsSendEmailVerification.js +1 -1
- package/funcs/settingsAccountV1SettingsSendEmailVerification.js.map +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- 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/components/v1appdetail.d.ts +5 -0
- package/models/components/v1appdetail.d.ts.map +1 -1
- package/models/components/v1appdetail.js +2 -0
- package/models/components/v1appdetail.js.map +1 -1
- package/package.json +2 -2
- package/src/funcs/accountAccountV1SessionCreate.ts +1 -1
- package/src/funcs/accountAccountV1SettingsSendEmailVerification.ts +1 -1
- package/src/funcs/sessionAccountV1SessionCreate.ts +1 -1
- package/src/funcs/settingsAccountV1SettingsSendEmailVerification.ts +1 -1
- package/src/lib/config.ts +3 -3
- package/src/models/components/security.ts +4 -4
- package/src/models/components/v1appdetail.ts +7 -0
package/docs/sdks/data/README.md
CHANGED
|
@@ -25,9 +25,7 @@ Get Account Apps
|
|
|
25
25
|
```typescript
|
|
26
26
|
import { SteamSets } from "@steamsets/client-ts";
|
|
27
27
|
|
|
28
|
-
const steamSets = new SteamSets(
|
|
29
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
30
|
-
});
|
|
28
|
+
const steamSets = new SteamSets();
|
|
31
29
|
|
|
32
30
|
async function run() {
|
|
33
31
|
const result = await steamSets.data.accountV1GetApps({
|
|
@@ -51,9 +49,7 @@ import { dataAccountV1GetApps } from "@steamsets/client-ts/funcs/dataAccountV1Ge
|
|
|
51
49
|
|
|
52
50
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
53
51
|
// You can create one instance of it to use across an application.
|
|
54
|
-
const steamSets = new SteamSetsCore(
|
|
55
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
56
|
-
});
|
|
52
|
+
const steamSets = new SteamSetsCore();
|
|
57
53
|
|
|
58
54
|
async function run() {
|
|
59
55
|
const res = await dataAccountV1GetApps(steamSets, {
|
|
@@ -103,9 +99,7 @@ Get Account Badges
|
|
|
103
99
|
```typescript
|
|
104
100
|
import { SteamSets } from "@steamsets/client-ts";
|
|
105
101
|
|
|
106
|
-
const steamSets = new SteamSets(
|
|
107
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
108
|
-
});
|
|
102
|
+
const steamSets = new SteamSets();
|
|
109
103
|
|
|
110
104
|
async function run() {
|
|
111
105
|
const result = await steamSets.data.accountV1GetBadges({
|
|
@@ -129,9 +123,7 @@ import { dataAccountV1GetBadges } from "@steamsets/client-ts/funcs/dataAccountV1
|
|
|
129
123
|
|
|
130
124
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
131
125
|
// You can create one instance of it to use across an application.
|
|
132
|
-
const steamSets = new SteamSetsCore(
|
|
133
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
134
|
-
});
|
|
126
|
+
const steamSets = new SteamSetsCore();
|
|
135
127
|
|
|
136
128
|
async function run() {
|
|
137
129
|
const res = await dataAccountV1GetBadges(steamSets, {
|
|
@@ -181,9 +173,7 @@ Get Account DataPoints
|
|
|
181
173
|
```typescript
|
|
182
174
|
import { SteamSets } from "@steamsets/client-ts";
|
|
183
175
|
|
|
184
|
-
const steamSets = new SteamSets(
|
|
185
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
186
|
-
});
|
|
176
|
+
const steamSets = new SteamSets();
|
|
187
177
|
|
|
188
178
|
async function run() {
|
|
189
179
|
const result = await steamSets.data.accountV1GetDataPoints({
|
|
@@ -207,9 +197,7 @@ import { dataAccountV1GetDataPoints } from "@steamsets/client-ts/funcs/dataAccou
|
|
|
207
197
|
|
|
208
198
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
209
199
|
// You can create one instance of it to use across an application.
|
|
210
|
-
const steamSets = new SteamSetsCore(
|
|
211
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
212
|
-
});
|
|
200
|
+
const steamSets = new SteamSetsCore();
|
|
213
201
|
|
|
214
202
|
async function run() {
|
|
215
203
|
const res = await dataAccountV1GetDataPoints(steamSets, {
|
|
@@ -259,9 +247,7 @@ Get Account Friends
|
|
|
259
247
|
```typescript
|
|
260
248
|
import { SteamSets } from "@steamsets/client-ts";
|
|
261
249
|
|
|
262
|
-
const steamSets = new SteamSets(
|
|
263
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
264
|
-
});
|
|
250
|
+
const steamSets = new SteamSets();
|
|
265
251
|
|
|
266
252
|
async function run() {
|
|
267
253
|
const result = await steamSets.data.accountV1GetFriends({
|
|
@@ -285,9 +271,7 @@ import { dataAccountV1GetFriends } from "@steamsets/client-ts/funcs/dataAccountV
|
|
|
285
271
|
|
|
286
272
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
287
273
|
// You can create one instance of it to use across an application.
|
|
288
|
-
const steamSets = new SteamSetsCore(
|
|
289
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
290
|
-
});
|
|
274
|
+
const steamSets = new SteamSetsCore();
|
|
291
275
|
|
|
292
276
|
async function run() {
|
|
293
277
|
const res = await dataAccountV1GetFriends(steamSets, {
|
|
@@ -337,9 +321,7 @@ Get Account Info
|
|
|
337
321
|
```typescript
|
|
338
322
|
import { SteamSets } from "@steamsets/client-ts";
|
|
339
323
|
|
|
340
|
-
const steamSets = new SteamSets(
|
|
341
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
342
|
-
});
|
|
324
|
+
const steamSets = new SteamSets();
|
|
343
325
|
|
|
344
326
|
async function run() {
|
|
345
327
|
const result = await steamSets.data.accountV1GetInfo({});
|
|
@@ -361,9 +343,7 @@ import { dataAccountV1GetInfo } from "@steamsets/client-ts/funcs/dataAccountV1Ge
|
|
|
361
343
|
|
|
362
344
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
363
345
|
// You can create one instance of it to use across an application.
|
|
364
|
-
const steamSets = new SteamSetsCore(
|
|
365
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
366
|
-
});
|
|
346
|
+
const steamSets = new SteamSetsCore();
|
|
367
347
|
|
|
368
348
|
async function run() {
|
|
369
349
|
const res = await dataAccountV1GetInfo(steamSets, {});
|
|
@@ -411,9 +391,7 @@ Get Account Leaderboard History
|
|
|
411
391
|
```typescript
|
|
412
392
|
import { SteamSets } from "@steamsets/client-ts";
|
|
413
393
|
|
|
414
|
-
const steamSets = new SteamSets(
|
|
415
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
416
|
-
});
|
|
394
|
+
const steamSets = new SteamSets();
|
|
417
395
|
|
|
418
396
|
async function run() {
|
|
419
397
|
const result = await steamSets.data.accountV1GetLeaderboardHistory({
|
|
@@ -437,9 +415,7 @@ import { dataAccountV1GetLeaderboardHistory } from "@steamsets/client-ts/funcs/d
|
|
|
437
415
|
|
|
438
416
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
439
417
|
// You can create one instance of it to use across an application.
|
|
440
|
-
const steamSets = new SteamSetsCore(
|
|
441
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
442
|
-
});
|
|
418
|
+
const steamSets = new SteamSetsCore();
|
|
443
419
|
|
|
444
420
|
async function run() {
|
|
445
421
|
const res = await dataAccountV1GetLeaderboardHistory(steamSets, {
|
|
@@ -489,9 +465,7 @@ Get Staff Members and their info
|
|
|
489
465
|
```typescript
|
|
490
466
|
import { SteamSets } from "@steamsets/client-ts";
|
|
491
467
|
|
|
492
|
-
const steamSets = new SteamSets(
|
|
493
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
494
|
-
});
|
|
468
|
+
const steamSets = new SteamSets();
|
|
495
469
|
|
|
496
470
|
async function run() {
|
|
497
471
|
const result = await steamSets.data.accountV1GetStaff();
|
|
@@ -513,9 +487,7 @@ import { dataAccountV1GetStaff } from "@steamsets/client-ts/funcs/dataAccountV1G
|
|
|
513
487
|
|
|
514
488
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
515
489
|
// You can create one instance of it to use across an application.
|
|
516
|
-
const steamSets = new SteamSetsCore(
|
|
517
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
518
|
-
});
|
|
490
|
+
const steamSets = new SteamSetsCore();
|
|
519
491
|
|
|
520
492
|
async function run() {
|
|
521
493
|
const res = await dataAccountV1GetStaff(steamSets);
|
|
@@ -562,9 +534,7 @@ Queue a app for processing
|
|
|
562
534
|
```typescript
|
|
563
535
|
import { SteamSets } from "@steamsets/client-ts";
|
|
564
536
|
|
|
565
|
-
const steamSets = new SteamSets(
|
|
566
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
567
|
-
});
|
|
537
|
+
const steamSets = new SteamSets();
|
|
568
538
|
|
|
569
539
|
async function run() {
|
|
570
540
|
const result = await steamSets.data.accountV1Queue({
|
|
@@ -590,9 +560,7 @@ import { dataAccountV1Queue } from "@steamsets/client-ts/funcs/dataAccountV1Queu
|
|
|
590
560
|
|
|
591
561
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
592
562
|
// You can create one instance of it to use across an application.
|
|
593
|
-
const steamSets = new SteamSetsCore(
|
|
594
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
595
|
-
});
|
|
563
|
+
const steamSets = new SteamSetsCore();
|
|
596
564
|
|
|
597
565
|
async function run() {
|
|
598
566
|
const res = await dataAccountV1Queue(steamSets, {
|
|
@@ -18,9 +18,7 @@ This endpoint checks if the service is alive.
|
|
|
18
18
|
```typescript
|
|
19
19
|
import { SteamSets } from "@steamsets/client-ts";
|
|
20
20
|
|
|
21
|
-
const steamSets = new SteamSets(
|
|
22
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
23
|
-
});
|
|
21
|
+
const steamSets = new SteamSets();
|
|
24
22
|
|
|
25
23
|
async function run() {
|
|
26
24
|
const result = await steamSets.liveness.liveness();
|
|
@@ -42,9 +40,7 @@ import { livenessLiveness } from "@steamsets/client-ts/funcs/livenessLiveness.js
|
|
|
42
40
|
|
|
43
41
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
44
42
|
// You can create one instance of it to use across an application.
|
|
45
|
-
const steamSets = new SteamSetsCore(
|
|
46
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
47
|
-
});
|
|
43
|
+
const steamSets = new SteamSetsCore();
|
|
48
44
|
|
|
49
45
|
async function run() {
|
|
50
46
|
const res = await livenessLiveness(steamSets);
|
|
@@ -16,9 +16,7 @@ Get all of our available locations
|
|
|
16
16
|
```typescript
|
|
17
17
|
import { SteamSets } from "@steamsets/client-ts";
|
|
18
18
|
|
|
19
|
-
const steamSets = new SteamSets(
|
|
20
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
21
|
-
});
|
|
19
|
+
const steamSets = new SteamSets();
|
|
22
20
|
|
|
23
21
|
async function run() {
|
|
24
22
|
const result = await steamSets.location.location();
|
|
@@ -40,9 +38,7 @@ import { locationLocation } from "@steamsets/client-ts/funcs/locationLocation.js
|
|
|
40
38
|
|
|
41
39
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
42
40
|
// You can create one instance of it to use across an application.
|
|
43
|
-
const steamSets = new SteamSetsCore(
|
|
44
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
45
|
-
});
|
|
41
|
+
const steamSets = new SteamSetsCore();
|
|
46
42
|
|
|
47
43
|
async function run() {
|
|
48
44
|
const res = await locationLocation(steamSets);
|
|
@@ -24,9 +24,7 @@ Get Account Apps
|
|
|
24
24
|
```typescript
|
|
25
25
|
import { SteamSets } from "@steamsets/client-ts";
|
|
26
26
|
|
|
27
|
-
const steamSets = new SteamSets(
|
|
28
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
29
|
-
});
|
|
27
|
+
const steamSets = new SteamSets();
|
|
30
28
|
|
|
31
29
|
async function run() {
|
|
32
30
|
const result = await steamSets.public.accountV1GetApps({
|
|
@@ -50,9 +48,7 @@ import { publicAccountV1GetApps } from "@steamsets/client-ts/funcs/publicAccount
|
|
|
50
48
|
|
|
51
49
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
52
50
|
// You can create one instance of it to use across an application.
|
|
53
|
-
const steamSets = new SteamSetsCore(
|
|
54
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
55
|
-
});
|
|
51
|
+
const steamSets = new SteamSetsCore();
|
|
56
52
|
|
|
57
53
|
async function run() {
|
|
58
54
|
const res = await publicAccountV1GetApps(steamSets, {
|
|
@@ -102,9 +98,7 @@ Get Account Badges
|
|
|
102
98
|
```typescript
|
|
103
99
|
import { SteamSets } from "@steamsets/client-ts";
|
|
104
100
|
|
|
105
|
-
const steamSets = new SteamSets(
|
|
106
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
107
|
-
});
|
|
101
|
+
const steamSets = new SteamSets();
|
|
108
102
|
|
|
109
103
|
async function run() {
|
|
110
104
|
const result = await steamSets.public.accountV1GetBadges({
|
|
@@ -128,9 +122,7 @@ import { publicAccountV1GetBadges } from "@steamsets/client-ts/funcs/publicAccou
|
|
|
128
122
|
|
|
129
123
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
130
124
|
// You can create one instance of it to use across an application.
|
|
131
|
-
const steamSets = new SteamSetsCore(
|
|
132
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
133
|
-
});
|
|
125
|
+
const steamSets = new SteamSetsCore();
|
|
134
126
|
|
|
135
127
|
async function run() {
|
|
136
128
|
const res = await publicAccountV1GetBadges(steamSets, {
|
|
@@ -180,9 +172,7 @@ Get Account DataPoints
|
|
|
180
172
|
```typescript
|
|
181
173
|
import { SteamSets } from "@steamsets/client-ts";
|
|
182
174
|
|
|
183
|
-
const steamSets = new SteamSets(
|
|
184
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
185
|
-
});
|
|
175
|
+
const steamSets = new SteamSets();
|
|
186
176
|
|
|
187
177
|
async function run() {
|
|
188
178
|
const result = await steamSets.public.accountV1GetDataPoints({
|
|
@@ -206,9 +196,7 @@ import { publicAccountV1GetDataPoints } from "@steamsets/client-ts/funcs/publicA
|
|
|
206
196
|
|
|
207
197
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
208
198
|
// You can create one instance of it to use across an application.
|
|
209
|
-
const steamSets = new SteamSetsCore(
|
|
210
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
211
|
-
});
|
|
199
|
+
const steamSets = new SteamSetsCore();
|
|
212
200
|
|
|
213
201
|
async function run() {
|
|
214
202
|
const res = await publicAccountV1GetDataPoints(steamSets, {
|
|
@@ -258,9 +246,7 @@ Get Account Friends
|
|
|
258
246
|
```typescript
|
|
259
247
|
import { SteamSets } from "@steamsets/client-ts";
|
|
260
248
|
|
|
261
|
-
const steamSets = new SteamSets(
|
|
262
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
263
|
-
});
|
|
249
|
+
const steamSets = new SteamSets();
|
|
264
250
|
|
|
265
251
|
async function run() {
|
|
266
252
|
const result = await steamSets.public.accountV1GetFriends({
|
|
@@ -284,9 +270,7 @@ import { publicAccountV1GetFriends } from "@steamsets/client-ts/funcs/publicAcco
|
|
|
284
270
|
|
|
285
271
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
286
272
|
// You can create one instance of it to use across an application.
|
|
287
|
-
const steamSets = new SteamSetsCore(
|
|
288
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
289
|
-
});
|
|
273
|
+
const steamSets = new SteamSetsCore();
|
|
290
274
|
|
|
291
275
|
async function run() {
|
|
292
276
|
const res = await publicAccountV1GetFriends(steamSets, {
|
|
@@ -336,9 +320,7 @@ Get Account Info
|
|
|
336
320
|
```typescript
|
|
337
321
|
import { SteamSets } from "@steamsets/client-ts";
|
|
338
322
|
|
|
339
|
-
const steamSets = new SteamSets(
|
|
340
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
341
|
-
});
|
|
323
|
+
const steamSets = new SteamSets();
|
|
342
324
|
|
|
343
325
|
async function run() {
|
|
344
326
|
const result = await steamSets.public.accountV1GetInfo({});
|
|
@@ -360,9 +342,7 @@ import { publicAccountV1GetInfo } from "@steamsets/client-ts/funcs/publicAccount
|
|
|
360
342
|
|
|
361
343
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
362
344
|
// You can create one instance of it to use across an application.
|
|
363
|
-
const steamSets = new SteamSetsCore(
|
|
364
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
365
|
-
});
|
|
345
|
+
const steamSets = new SteamSetsCore();
|
|
366
346
|
|
|
367
347
|
async function run() {
|
|
368
348
|
const res = await publicAccountV1GetInfo(steamSets, {});
|
|
@@ -410,9 +390,7 @@ Get Account Leaderboard History
|
|
|
410
390
|
```typescript
|
|
411
391
|
import { SteamSets } from "@steamsets/client-ts";
|
|
412
392
|
|
|
413
|
-
const steamSets = new SteamSets(
|
|
414
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
415
|
-
});
|
|
393
|
+
const steamSets = new SteamSets();
|
|
416
394
|
|
|
417
395
|
async function run() {
|
|
418
396
|
const result = await steamSets.public.accountV1GetLeaderboardHistory({
|
|
@@ -436,9 +414,7 @@ import { publicAccountV1GetLeaderboardHistory } from "@steamsets/client-ts/funcs
|
|
|
436
414
|
|
|
437
415
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
438
416
|
// You can create one instance of it to use across an application.
|
|
439
|
-
const steamSets = new SteamSetsCore(
|
|
440
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
441
|
-
});
|
|
417
|
+
const steamSets = new SteamSetsCore();
|
|
442
418
|
|
|
443
419
|
async function run() {
|
|
444
420
|
const res = await publicAccountV1GetLeaderboardHistory(steamSets, {
|
|
@@ -488,9 +464,7 @@ Queue a app for processing
|
|
|
488
464
|
```typescript
|
|
489
465
|
import { SteamSets } from "@steamsets/client-ts";
|
|
490
466
|
|
|
491
|
-
const steamSets = new SteamSets(
|
|
492
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
493
|
-
});
|
|
467
|
+
const steamSets = new SteamSets();
|
|
494
468
|
|
|
495
469
|
async function run() {
|
|
496
470
|
const result = await steamSets.public.accountV1Queue({
|
|
@@ -516,9 +490,7 @@ import { publicAccountV1Queue } from "@steamsets/client-ts/funcs/publicAccountV1
|
|
|
516
490
|
|
|
517
491
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
518
492
|
// You can create one instance of it to use across an application.
|
|
519
|
-
const steamSets = new SteamSetsCore(
|
|
520
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
521
|
-
});
|
|
493
|
+
const steamSets = new SteamSetsCore();
|
|
522
494
|
|
|
523
495
|
async function run() {
|
|
524
496
|
const res = await publicAccountV1Queue(steamSets, {
|
|
@@ -19,9 +19,7 @@ Create a new session for non logged in users
|
|
|
19
19
|
```typescript
|
|
20
20
|
import { SteamSets } from "@steamsets/client-ts";
|
|
21
21
|
|
|
22
|
-
const steamSets = new SteamSets(
|
|
23
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
24
|
-
});
|
|
22
|
+
const steamSets = new SteamSets();
|
|
25
23
|
|
|
26
24
|
async function run() {
|
|
27
25
|
const result = await steamSets.session.accountV1SessionCreate({});
|
|
@@ -43,9 +41,7 @@ import { sessionAccountV1SessionCreate } from "@steamsets/client-ts/funcs/sessio
|
|
|
43
41
|
|
|
44
42
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
45
43
|
// You can create one instance of it to use across an application.
|
|
46
|
-
const steamSets = new SteamSetsCore(
|
|
47
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
48
|
-
});
|
|
44
|
+
const steamSets = new SteamSetsCore();
|
|
49
45
|
|
|
50
46
|
async function run() {
|
|
51
47
|
const res = await sessionAccountV1SessionCreate(steamSets, {});
|
|
@@ -93,9 +89,7 @@ Deletes a session, can also be used to logout
|
|
|
93
89
|
```typescript
|
|
94
90
|
import { SteamSets } from "@steamsets/client-ts";
|
|
95
91
|
|
|
96
|
-
const steamSets = new SteamSets(
|
|
97
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
98
|
-
});
|
|
92
|
+
const steamSets = new SteamSets();
|
|
99
93
|
|
|
100
94
|
async function run() {
|
|
101
95
|
const result = await steamSets.session.accountV1SessionDelete({
|
|
@@ -119,9 +113,7 @@ import { sessionAccountV1SessionDelete } from "@steamsets/client-ts/funcs/sessio
|
|
|
119
113
|
|
|
120
114
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
121
115
|
// You can create one instance of it to use across an application.
|
|
122
|
-
const steamSets = new SteamSetsCore(
|
|
123
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
124
|
-
});
|
|
116
|
+
const steamSets = new SteamSetsCore();
|
|
125
117
|
|
|
126
118
|
async function run() {
|
|
127
119
|
const res = await sessionAccountV1SessionDelete(steamSets, {
|
|
@@ -171,9 +163,7 @@ Gets all session data
|
|
|
171
163
|
```typescript
|
|
172
164
|
import { SteamSets } from "@steamsets/client-ts";
|
|
173
165
|
|
|
174
|
-
const steamSets = new SteamSets(
|
|
175
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
176
|
-
});
|
|
166
|
+
const steamSets = new SteamSets();
|
|
177
167
|
|
|
178
168
|
async function run() {
|
|
179
169
|
const result = await steamSets.session.accountV1SessionGet();
|
|
@@ -195,9 +185,7 @@ import { sessionAccountV1SessionGet } from "@steamsets/client-ts/funcs/sessionAc
|
|
|
195
185
|
|
|
196
186
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
197
187
|
// You can create one instance of it to use across an application.
|
|
198
|
-
const steamSets = new SteamSetsCore(
|
|
199
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
200
|
-
});
|
|
188
|
+
const steamSets = new SteamSetsCore();
|
|
201
189
|
|
|
202
190
|
async function run() {
|
|
203
191
|
const res = await sessionAccountV1SessionGet(steamSets);
|
|
@@ -244,9 +232,7 @@ Logs a user in and creates a new session
|
|
|
244
232
|
```typescript
|
|
245
233
|
import { SteamSets } from "@steamsets/client-ts";
|
|
246
234
|
|
|
247
|
-
const steamSets = new SteamSets(
|
|
248
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
249
|
-
});
|
|
235
|
+
const steamSets = new SteamSets();
|
|
250
236
|
|
|
251
237
|
async function run() {
|
|
252
238
|
const result = await steamSets.session.accountV1SessionLogin({
|
|
@@ -281,9 +267,7 @@ import { sessionAccountV1SessionLogin } from "@steamsets/client-ts/funcs/session
|
|
|
281
267
|
|
|
282
268
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
283
269
|
// You can create one instance of it to use across an application.
|
|
284
|
-
const steamSets = new SteamSetsCore(
|
|
285
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
286
|
-
});
|
|
270
|
+
const steamSets = new SteamSetsCore();
|
|
287
271
|
|
|
288
272
|
async function run() {
|
|
289
273
|
const res = await sessionAccountV1SessionLogin(steamSets, {
|
|
@@ -23,9 +23,7 @@ Delete mulitple imagest
|
|
|
23
23
|
```typescript
|
|
24
24
|
import { SteamSets } from "@steamsets/client-ts";
|
|
25
25
|
|
|
26
|
-
const steamSets = new SteamSets(
|
|
27
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
28
|
-
});
|
|
26
|
+
const steamSets = new SteamSets();
|
|
29
27
|
|
|
30
28
|
async function run() {
|
|
31
29
|
const result = await steamSets.settings.accountV1SettingsDeleteImages({
|
|
@@ -51,9 +49,7 @@ import { settingsAccountV1SettingsDeleteImages } from "@steamsets/client-ts/func
|
|
|
51
49
|
|
|
52
50
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
53
51
|
// You can create one instance of it to use across an application.
|
|
54
|
-
const steamSets = new SteamSetsCore(
|
|
55
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
56
|
-
});
|
|
52
|
+
const steamSets = new SteamSetsCore();
|
|
57
53
|
|
|
58
54
|
async function run() {
|
|
59
55
|
const res = await settingsAccountV1SettingsDeleteImages(steamSets, {
|
|
@@ -105,9 +101,7 @@ Generate a new API key for the account
|
|
|
105
101
|
```typescript
|
|
106
102
|
import { SteamSets } from "@steamsets/client-ts";
|
|
107
103
|
|
|
108
|
-
const steamSets = new SteamSets(
|
|
109
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
110
|
-
});
|
|
104
|
+
const steamSets = new SteamSets();
|
|
111
105
|
|
|
112
106
|
async function run() {
|
|
113
107
|
const result = await steamSets.settings.accountV1SettingsGenerateApiKey();
|
|
@@ -129,9 +123,7 @@ import { settingsAccountV1SettingsGenerateApiKey } from "@steamsets/client-ts/fu
|
|
|
129
123
|
|
|
130
124
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
131
125
|
// You can create one instance of it to use across an application.
|
|
132
|
-
const steamSets = new SteamSetsCore(
|
|
133
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
134
|
-
});
|
|
126
|
+
const steamSets = new SteamSetsCore();
|
|
135
127
|
|
|
136
128
|
async function run() {
|
|
137
129
|
const res = await settingsAccountV1SettingsGenerateApiKey(steamSets);
|
|
@@ -178,9 +170,7 @@ Gets all settings for the account
|
|
|
178
170
|
```typescript
|
|
179
171
|
import { SteamSets } from "@steamsets/client-ts";
|
|
180
172
|
|
|
181
|
-
const steamSets = new SteamSets(
|
|
182
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
183
|
-
});
|
|
173
|
+
const steamSets = new SteamSets();
|
|
184
174
|
|
|
185
175
|
async function run() {
|
|
186
176
|
const result = await steamSets.settings.accountV1SettingsGet();
|
|
@@ -202,9 +192,7 @@ import { settingsAccountV1SettingsGet } from "@steamsets/client-ts/funcs/setting
|
|
|
202
192
|
|
|
203
193
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
204
194
|
// You can create one instance of it to use across an application.
|
|
205
|
-
const steamSets = new SteamSetsCore(
|
|
206
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
207
|
-
});
|
|
195
|
+
const steamSets = new SteamSetsCore();
|
|
208
196
|
|
|
209
197
|
async function run() {
|
|
210
198
|
const res = await settingsAccountV1SettingsGet(steamSets);
|
|
@@ -251,9 +239,7 @@ Resend the verification code for an email
|
|
|
251
239
|
```typescript
|
|
252
240
|
import { SteamSets } from "@steamsets/client-ts";
|
|
253
241
|
|
|
254
|
-
const steamSets = new SteamSets(
|
|
255
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
256
|
-
});
|
|
242
|
+
const steamSets = new SteamSets();
|
|
257
243
|
|
|
258
244
|
async function run() {
|
|
259
245
|
const result = await steamSets.settings.accountV1SettingsSendEmailVerification({});
|
|
@@ -275,9 +261,7 @@ import { settingsAccountV1SettingsSendEmailVerification } from "@steamsets/clien
|
|
|
275
261
|
|
|
276
262
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
277
263
|
// You can create one instance of it to use across an application.
|
|
278
|
-
const steamSets = new SteamSetsCore(
|
|
279
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
280
|
-
});
|
|
264
|
+
const steamSets = new SteamSetsCore();
|
|
281
265
|
|
|
282
266
|
async function run() {
|
|
283
267
|
const res = await settingsAccountV1SettingsSendEmailVerification(steamSets, {});
|
|
@@ -325,9 +309,7 @@ Update one of the uploaded images
|
|
|
325
309
|
```typescript
|
|
326
310
|
import { SteamSets } from "@steamsets/client-ts";
|
|
327
311
|
|
|
328
|
-
const steamSets = new SteamSets(
|
|
329
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
330
|
-
});
|
|
312
|
+
const steamSets = new SteamSets();
|
|
331
313
|
|
|
332
314
|
async function run() {
|
|
333
315
|
const result = await steamSets.settings.accountV1SettingsUpdateImage({
|
|
@@ -352,9 +334,7 @@ import { settingsAccountV1SettingsUpdateImage } from "@steamsets/client-ts/funcs
|
|
|
352
334
|
|
|
353
335
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
354
336
|
// You can create one instance of it to use across an application.
|
|
355
|
-
const steamSets = new SteamSetsCore(
|
|
356
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
357
|
-
});
|
|
337
|
+
const steamSets = new SteamSetsCore();
|
|
358
338
|
|
|
359
339
|
async function run() {
|
|
360
340
|
const res = await settingsAccountV1SettingsUpdateImage(steamSets, {
|
|
@@ -405,9 +385,7 @@ Update settings for the logged in account
|
|
|
405
385
|
```typescript
|
|
406
386
|
import { SteamSets } from "@steamsets/client-ts";
|
|
407
387
|
|
|
408
|
-
const steamSets = new SteamSets(
|
|
409
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
410
|
-
});
|
|
388
|
+
const steamSets = new SteamSets();
|
|
411
389
|
|
|
412
390
|
async function run() {
|
|
413
391
|
const result = await steamSets.settings.accountV1SettingsUpdate({
|
|
@@ -445,9 +423,7 @@ import { settingsAccountV1SettingsUpdate } from "@steamsets/client-ts/funcs/sett
|
|
|
445
423
|
|
|
446
424
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
447
425
|
// You can create one instance of it to use across an application.
|
|
448
|
-
const steamSets = new SteamSetsCore(
|
|
449
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
450
|
-
});
|
|
426
|
+
const steamSets = new SteamSetsCore();
|
|
451
427
|
|
|
452
428
|
async function run() {
|
|
453
429
|
const res = await settingsAccountV1SettingsUpdate(steamSets, {
|
|
@@ -511,9 +487,7 @@ Multi Upload Endpoint for images
|
|
|
511
487
|
```typescript
|
|
512
488
|
import { SteamSets } from "@steamsets/client-ts";
|
|
513
489
|
|
|
514
|
-
const steamSets = new SteamSets(
|
|
515
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
516
|
-
});
|
|
490
|
+
const steamSets = new SteamSets();
|
|
517
491
|
|
|
518
492
|
async function run() {
|
|
519
493
|
const result = await steamSets.settings.accountV1SettingsUploadImages({
|
|
@@ -542,9 +516,7 @@ import { settingsAccountV1SettingsUploadImages } from "@steamsets/client-ts/func
|
|
|
542
516
|
|
|
543
517
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
544
518
|
// You can create one instance of it to use across an application.
|
|
545
|
-
const steamSets = new SteamSetsCore(
|
|
546
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
547
|
-
});
|
|
519
|
+
const steamSets = new SteamSetsCore();
|
|
548
520
|
|
|
549
521
|
async function run() {
|
|
550
522
|
const res = await settingsAccountV1SettingsUploadImages(steamSets, {
|
|
@@ -599,9 +571,7 @@ Verify the email by passing in the code the user should've gotten
|
|
|
599
571
|
```typescript
|
|
600
572
|
import { SteamSets } from "@steamsets/client-ts";
|
|
601
573
|
|
|
602
|
-
const steamSets = new SteamSets(
|
|
603
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
604
|
-
});
|
|
574
|
+
const steamSets = new SteamSets();
|
|
605
575
|
|
|
606
576
|
async function run() {
|
|
607
577
|
const result = await steamSets.settings.accountV1SettingsVerfyEmail({
|
|
@@ -625,9 +595,7 @@ import { settingsAccountV1SettingsVerfyEmail } from "@steamsets/client-ts/funcs/
|
|
|
625
595
|
|
|
626
596
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
627
597
|
// You can create one instance of it to use across an application.
|
|
628
|
-
const steamSets = new SteamSetsCore(
|
|
629
|
-
session: "<YOUR_BEARER_TOKEN_HERE>",
|
|
630
|
-
});
|
|
598
|
+
const steamSets = new SteamSetsCore();
|
|
631
599
|
|
|
632
600
|
async function run() {
|
|
633
601
|
const res = await settingsAccountV1SettingsVerfyEmail(steamSets, {
|
|
@@ -38,7 +38,7 @@ const operations = __importStar(require("../models/operations/index.js"));
|
|
|
38
38
|
* Create a new session for non logged in users
|
|
39
39
|
*/
|
|
40
40
|
async function accountAccountV1SessionCreate(client$, request, options) {
|
|
41
|
-
const input$ =
|
|
41
|
+
const input$ = request;
|
|
42
42
|
const parsed$ = schemas$.safeParse(input$, (value$) => operations.AccountV1SessionCreateRequest$outboundSchema.parse(value$), "Input validation failed");
|
|
43
43
|
if (!parsed$.ok) {
|
|
44
44
|
return parsed$;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountAccountV1SessionCreate.js","sourceRoot":"","sources":["../src/funcs/accountAccountV1SessionCreate.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;AAyBH,sEAqHC;AA3ID,sDAAoE;AACpE,uDAAyC;AACzC,4DAA8C;AAE9C,oDAA4E;AAC5E,0CAA2C;AAQ3C,kEAAoD;AAGpD,0EAA4D;AAG5D;;GAEG;AACI,KAAK,UAAU,6BAA6B,CACjD,OAAsB,EACtB,OAAiD,EACjD,OAAwB;IAcxB,MAAM,MAAM,GAAG,OAAO,
|
|
1
|
+
{"version":3,"file":"accountAccountV1SessionCreate.js","sourceRoot":"","sources":["../src/funcs/accountAccountV1SessionCreate.ts"],"names":[],"mappings":"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"}
|
|
@@ -38,7 +38,7 @@ const operations = __importStar(require("../models/operations/index.js"));
|
|
|
38
38
|
* Resend the verification code for an email
|
|
39
39
|
*/
|
|
40
40
|
async function accountAccountV1SettingsSendEmailVerification(client$, request, options) {
|
|
41
|
-
const input$ =
|
|
41
|
+
const input$ = request;
|
|
42
42
|
const parsed$ = schemas$.safeParse(input$, (value$) => operations.AccountV1SettingsSendEmailVerificationRequest$outboundSchema
|
|
43
43
|
.parse(value$), "Input validation failed");
|
|
44
44
|
if (!parsed$.ok) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountAccountV1SettingsSendEmailVerification.js","sourceRoot":"","sources":["../src/funcs/accountAccountV1SettingsSendEmailVerification.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;AAyBH,sGA6GC;AAnID,sDAAoE;AACpE,uDAAyC;AACzC,4DAA8C;AAE9C,oDAA4E;AAC5E,0CAA2C;AAQ3C,kEAAoD;AAGpD,0EAA4D;AAG5D;;GAEG;AACI,KAAK,UAAU,6CAA6C,CACjE,OAAsB,EACtB,OAAiE,EACjE,OAAwB;IAcxB,MAAM,MAAM,GAAG,OAAO,
|
|
1
|
+
{"version":3,"file":"accountAccountV1SettingsSendEmailVerification.js","sourceRoot":"","sources":["../src/funcs/accountAccountV1SettingsSendEmailVerification.ts"],"names":[],"mappings":"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"}
|