vrchat 1.18.0 → 1.18.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/api.ts +228 -127
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +217 -120
- package/dist/api.js +28 -21
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.18.
|
|
6
|
+
* The version of the OpenAPI document: 1.18.1
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -58,6 +58,18 @@ export interface APIConfig {
|
|
|
58
58
|
* @deprecated
|
|
59
59
|
*/
|
|
60
60
|
'appName': string;
|
|
61
|
+
/**
|
|
62
|
+
* List of supported Languages
|
|
63
|
+
* @type {Array<string>}
|
|
64
|
+
* @memberof APIConfig
|
|
65
|
+
*/
|
|
66
|
+
'availableLanguageCodes': Array<string>;
|
|
67
|
+
/**
|
|
68
|
+
* List of supported Languages
|
|
69
|
+
* @type {Array<string>}
|
|
70
|
+
* @memberof APIConfig
|
|
71
|
+
*/
|
|
72
|
+
'availableLanguages': Array<string>;
|
|
61
73
|
/**
|
|
62
74
|
* Build tag of the API server
|
|
63
75
|
* @type {string}
|
|
@@ -82,6 +94,66 @@ export interface APIConfig {
|
|
|
82
94
|
* @memberof APIConfig
|
|
83
95
|
*/
|
|
84
96
|
'clientDisconnectTimeout': number;
|
|
97
|
+
/**
|
|
98
|
+
* Unknown
|
|
99
|
+
* @type {boolean}
|
|
100
|
+
* @memberof APIConfig
|
|
101
|
+
*/
|
|
102
|
+
'clientNetDispatchThread'?: boolean;
|
|
103
|
+
/**
|
|
104
|
+
* Unknown
|
|
105
|
+
* @type {boolean}
|
|
106
|
+
* @memberof APIConfig
|
|
107
|
+
*/
|
|
108
|
+
'clientNetInThread'?: boolean;
|
|
109
|
+
/**
|
|
110
|
+
* Unknown
|
|
111
|
+
* @type {boolean}
|
|
112
|
+
* @memberof APIConfig
|
|
113
|
+
*/
|
|
114
|
+
'clientNetInThread2'?: boolean;
|
|
115
|
+
/**
|
|
116
|
+
* Unknown
|
|
117
|
+
* @type {boolean}
|
|
118
|
+
* @memberof APIConfig
|
|
119
|
+
*/
|
|
120
|
+
'clientNetInThreadMobile'?: boolean;
|
|
121
|
+
/**
|
|
122
|
+
* Unknown
|
|
123
|
+
* @type {boolean}
|
|
124
|
+
* @memberof APIConfig
|
|
125
|
+
*/
|
|
126
|
+
'clientNetInThreadMobile2'?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* Unknown
|
|
129
|
+
* @type {boolean}
|
|
130
|
+
* @memberof APIConfig
|
|
131
|
+
*/
|
|
132
|
+
'clientNetOutThread'?: boolean;
|
|
133
|
+
/**
|
|
134
|
+
* Unknown
|
|
135
|
+
* @type {boolean}
|
|
136
|
+
* @memberof APIConfig
|
|
137
|
+
*/
|
|
138
|
+
'clientNetOutThread2'?: boolean;
|
|
139
|
+
/**
|
|
140
|
+
* Unknown
|
|
141
|
+
* @type {boolean}
|
|
142
|
+
* @memberof APIConfig
|
|
143
|
+
*/
|
|
144
|
+
'clientNetOutThreadMobile'?: boolean;
|
|
145
|
+
/**
|
|
146
|
+
* Unknown
|
|
147
|
+
* @type {boolean}
|
|
148
|
+
* @memberof APIConfig
|
|
149
|
+
*/
|
|
150
|
+
'clientNetOutThreadMobile2'?: boolean;
|
|
151
|
+
/**
|
|
152
|
+
* Unknown
|
|
153
|
+
* @type {number}
|
|
154
|
+
* @memberof APIConfig
|
|
155
|
+
*/
|
|
156
|
+
'clientQR'?: number;
|
|
85
157
|
/**
|
|
86
158
|
* Unknown
|
|
87
159
|
* @type {number}
|
|
@@ -106,6 +178,12 @@ export interface APIConfig {
|
|
|
106
178
|
* @memberof APIConfig
|
|
107
179
|
*/
|
|
108
180
|
'copyrightEmail': string;
|
|
181
|
+
/**
|
|
182
|
+
* Current version number of the Privacy Agreement
|
|
183
|
+
* @type {number}
|
|
184
|
+
* @memberof APIConfig
|
|
185
|
+
*/
|
|
186
|
+
'currentPrivacyVersion'?: number;
|
|
109
187
|
/**
|
|
110
188
|
* Current version number of the Terms of Service
|
|
111
189
|
* @type {number}
|
|
@@ -125,19 +203,11 @@ export interface APIConfig {
|
|
|
125
203
|
*/
|
|
126
204
|
'deploymentGroup': DeploymentGroup;
|
|
127
205
|
/**
|
|
128
|
-
*
|
|
129
|
-
* @type {string}
|
|
130
|
-
* @memberof APIConfig
|
|
131
|
-
* @deprecated
|
|
132
|
-
*/
|
|
133
|
-
'devAppVersionStandalone': string;
|
|
134
|
-
/**
|
|
135
|
-
* Developer Download link
|
|
136
|
-
* @type {string}
|
|
206
|
+
* Unknown
|
|
207
|
+
* @type {Array<string>}
|
|
137
208
|
* @memberof APIConfig
|
|
138
|
-
* @deprecated
|
|
139
209
|
*/
|
|
140
|
-
'
|
|
210
|
+
'devLanguageCodes'?: Array<string>;
|
|
141
211
|
/**
|
|
142
212
|
* Link to download the development SDK, use downloadUrls instead
|
|
143
213
|
* @type {string}
|
|
@@ -153,18 +223,17 @@ export interface APIConfig {
|
|
|
153
223
|
*/
|
|
154
224
|
'devSdkVersion': string;
|
|
155
225
|
/**
|
|
156
|
-
*
|
|
226
|
+
* Unknown, \"dis\" maybe for disconnect?
|
|
157
227
|
* @type {string}
|
|
158
228
|
* @memberof APIConfig
|
|
159
|
-
* @deprecated
|
|
160
229
|
*/
|
|
161
|
-
'
|
|
230
|
+
'dis-countdown': string;
|
|
162
231
|
/**
|
|
163
|
-
* Unknown
|
|
164
|
-
* @type {
|
|
232
|
+
* Unknown
|
|
233
|
+
* @type {boolean}
|
|
165
234
|
* @memberof APIConfig
|
|
166
235
|
*/
|
|
167
|
-
'
|
|
236
|
+
'disableAVProInProton'?: boolean;
|
|
168
237
|
/**
|
|
169
238
|
* Toggles if copying avatars should be disabled
|
|
170
239
|
* @type {boolean}
|
|
@@ -195,6 +264,12 @@ export interface APIConfig {
|
|
|
195
264
|
* @memberof APIConfig
|
|
196
265
|
*/
|
|
197
266
|
'disableEmail': boolean;
|
|
267
|
+
/**
|
|
268
|
+
* Unknown
|
|
269
|
+
* @type {boolean}
|
|
270
|
+
* @memberof APIConfig
|
|
271
|
+
*/
|
|
272
|
+
'disableCaptcha'?: boolean;
|
|
198
273
|
/**
|
|
199
274
|
* Toggles if Analytics should be disabled.
|
|
200
275
|
* @type {boolean}
|
|
@@ -275,18 +350,29 @@ export interface APIConfig {
|
|
|
275
350
|
*/
|
|
276
351
|
'dynamicWorldRows': Set<DynamicContentRow>;
|
|
277
352
|
/**
|
|
278
|
-
*
|
|
279
|
-
* @type {
|
|
353
|
+
* Unknown
|
|
354
|
+
* @type {string}
|
|
280
355
|
* @memberof APIConfig
|
|
281
356
|
*/
|
|
282
|
-
'
|
|
357
|
+
'economyPauseEnd'?: string;
|
|
283
358
|
/**
|
|
284
359
|
* Unknown
|
|
285
360
|
* @type {string}
|
|
286
361
|
* @memberof APIConfig
|
|
287
|
-
* @deprecated
|
|
288
362
|
*/
|
|
289
|
-
'
|
|
363
|
+
'economyPauseStart'?: string;
|
|
364
|
+
/**
|
|
365
|
+
* Unknown
|
|
366
|
+
* @type {number}
|
|
367
|
+
* @memberof APIConfig
|
|
368
|
+
*/
|
|
369
|
+
'economyState'?: number;
|
|
370
|
+
/**
|
|
371
|
+
*
|
|
372
|
+
* @type {APIConfigEvents}
|
|
373
|
+
* @memberof APIConfig
|
|
374
|
+
*/
|
|
375
|
+
'events': APIConfigEvents;
|
|
290
376
|
/**
|
|
291
377
|
* WorldID be \"offline\" on User profiles if you are not friends with that user.
|
|
292
378
|
* @type {string}
|
|
@@ -306,70 +392,29 @@ export interface APIConfig {
|
|
|
306
392
|
*/
|
|
307
393
|
'hubWorldId': string;
|
|
308
394
|
/**
|
|
309
|
-
*
|
|
310
|
-
* @type {string}
|
|
395
|
+
* A list of explicitly allowed origins that worlds can request images from via the Udon\'s [VRCImageDownloader#DownloadImage](https://creators.vrchat.com/worlds/udon/image-loading/#downloadimage).
|
|
396
|
+
* @type {Array<string>}
|
|
311
397
|
* @memberof APIConfig
|
|
312
398
|
*/
|
|
313
|
-
'
|
|
399
|
+
'imageHostUrlList': Array<string>;
|
|
314
400
|
/**
|
|
315
|
-
*
|
|
401
|
+
* VRChat\'s job application email
|
|
316
402
|
* @type {string}
|
|
317
403
|
* @memberof APIConfig
|
|
318
|
-
* @deprecated
|
|
319
404
|
*/
|
|
320
|
-
'
|
|
405
|
+
'jobsEmail': string;
|
|
321
406
|
/**
|
|
322
407
|
* VRChat\'s moderation related email
|
|
323
408
|
* @type {string}
|
|
324
409
|
* @memberof APIConfig
|
|
325
410
|
*/
|
|
326
411
|
'moderationEmail': string;
|
|
327
|
-
/**
|
|
328
|
-
* Unknown
|
|
329
|
-
* @type {number}
|
|
330
|
-
* @memberof APIConfig
|
|
331
|
-
*/
|
|
332
|
-
'moderationQueryPeriod': number;
|
|
333
412
|
/**
|
|
334
413
|
* Used in-game to notify a user they aren\'t allowed to select avatars in private worlds
|
|
335
414
|
* @type {string}
|
|
336
415
|
* @memberof APIConfig
|
|
337
416
|
*/
|
|
338
417
|
'notAllowedToSelectAvatarInPrivateWorldMessage': string;
|
|
339
|
-
/**
|
|
340
|
-
* Extra [plugin](https://doc.photonengine.com/en-us/server/current/plugins/manual) to run in each instance
|
|
341
|
-
* @type {string}
|
|
342
|
-
* @memberof APIConfig
|
|
343
|
-
*/
|
|
344
|
-
'plugin': string;
|
|
345
|
-
/**
|
|
346
|
-
* Version number for game release build
|
|
347
|
-
* @type {string}
|
|
348
|
-
* @memberof APIConfig
|
|
349
|
-
* @deprecated
|
|
350
|
-
*/
|
|
351
|
-
'releaseAppVersionStandalone': string;
|
|
352
|
-
/**
|
|
353
|
-
* Link to download the release SDK
|
|
354
|
-
* @type {string}
|
|
355
|
-
* @memberof APIConfig
|
|
356
|
-
* @deprecated
|
|
357
|
-
*/
|
|
358
|
-
'releaseSdkUrl': string;
|
|
359
|
-
/**
|
|
360
|
-
* Version of the release SDK
|
|
361
|
-
* @type {string}
|
|
362
|
-
* @memberof APIConfig
|
|
363
|
-
* @deprecated
|
|
364
|
-
*/
|
|
365
|
-
'releaseSdkVersion': string;
|
|
366
|
-
/**
|
|
367
|
-
* Version number for server release build
|
|
368
|
-
* @type {string}
|
|
369
|
-
* @memberof APIConfig
|
|
370
|
-
* @deprecated
|
|
371
|
-
*/
|
|
372
|
-
'releaseServerVersionStandalone': string;
|
|
373
418
|
/**
|
|
374
419
|
* Link to the developer FAQ
|
|
375
420
|
* @type {string}
|
|
@@ -400,6 +445,12 @@ export interface APIConfig {
|
|
|
400
445
|
* @memberof APIConfig
|
|
401
446
|
*/
|
|
402
447
|
'serverName': string;
|
|
448
|
+
/**
|
|
449
|
+
* A list of explicitly allowed origins that worlds can request strings from via the Udon\'s [VRCStringDownloader.LoadUrl](https://creators.vrchat.com/worlds/udon/string-loading/#ivrcstringdownload).
|
|
450
|
+
* @type {Array<string>}
|
|
451
|
+
* @memberof APIConfig
|
|
452
|
+
*/
|
|
453
|
+
'stringHostUrlList': Array<string>;
|
|
403
454
|
/**
|
|
404
455
|
* VRChat\'s support email
|
|
405
456
|
* @type {string}
|
|
@@ -460,30 +511,6 @@ export interface APIConfig {
|
|
|
460
511
|
* @memberof APIConfig
|
|
461
512
|
*/
|
|
462
513
|
'useReliableUdpForVoice': boolean;
|
|
463
|
-
/**
|
|
464
|
-
* Unknown
|
|
465
|
-
* @type {number}
|
|
466
|
-
* @memberof APIConfig
|
|
467
|
-
*/
|
|
468
|
-
'userUpdatePeriod': number;
|
|
469
|
-
/**
|
|
470
|
-
* Unknown
|
|
471
|
-
* @type {number}
|
|
472
|
-
* @memberof APIConfig
|
|
473
|
-
*/
|
|
474
|
-
'userVerificationDelay': number;
|
|
475
|
-
/**
|
|
476
|
-
* Unknown
|
|
477
|
-
* @type {number}
|
|
478
|
-
* @memberof APIConfig
|
|
479
|
-
*/
|
|
480
|
-
'userVerificationRetry': number;
|
|
481
|
-
/**
|
|
482
|
-
* Unknown
|
|
483
|
-
* @type {number}
|
|
484
|
-
* @memberof APIConfig
|
|
485
|
-
*/
|
|
486
|
-
'userVerificationTimeout': number;
|
|
487
514
|
/**
|
|
488
515
|
* Download link for game on the Steam website.
|
|
489
516
|
* @type {string}
|
|
@@ -497,23 +524,17 @@ export interface APIConfig {
|
|
|
497
524
|
*/
|
|
498
525
|
'whiteListedAssetUrls': Array<string>;
|
|
499
526
|
/**
|
|
500
|
-
*
|
|
501
|
-
* @type {number}
|
|
502
|
-
* @memberof APIConfig
|
|
503
|
-
*/
|
|
504
|
-
'worldUpdatePeriod': number;
|
|
505
|
-
/**
|
|
506
|
-
* Currently used youtube-dl.exe hash in SHA-256-delimited format
|
|
527
|
+
* Currently used youtube-dl.exe version
|
|
507
528
|
* @type {string}
|
|
508
529
|
* @memberof APIConfig
|
|
509
530
|
*/
|
|
510
|
-
'player-url-resolver-
|
|
531
|
+
'player-url-resolver-version': string;
|
|
511
532
|
/**
|
|
512
|
-
* Currently used youtube-dl.exe
|
|
533
|
+
* Currently used youtube-dl.exe hash in SHA1-delimited format
|
|
513
534
|
* @type {string}
|
|
514
535
|
* @memberof APIConfig
|
|
515
536
|
*/
|
|
516
|
-
'player-url-resolver-
|
|
537
|
+
'player-url-resolver-sha1': string;
|
|
517
538
|
}
|
|
518
539
|
/**
|
|
519
540
|
* Public Announcement
|
|
@@ -2161,7 +2182,7 @@ export interface FileData {
|
|
|
2161
2182
|
* @type {string}
|
|
2162
2183
|
* @memberof FileData
|
|
2163
2184
|
*/
|
|
2164
|
-
'md5'
|
|
2185
|
+
'md5'?: string;
|
|
2165
2186
|
/**
|
|
2166
2187
|
*
|
|
2167
2188
|
* @type {number}
|
|
@@ -2489,6 +2510,12 @@ export interface Group {
|
|
|
2489
2510
|
* @memberof Group
|
|
2490
2511
|
*/
|
|
2491
2512
|
'tags'?: Array<string>;
|
|
2513
|
+
/**
|
|
2514
|
+
* A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
|
|
2515
|
+
* @type {string}
|
|
2516
|
+
* @memberof Group
|
|
2517
|
+
*/
|
|
2518
|
+
'transferTargetId'?: string;
|
|
2492
2519
|
/**
|
|
2493
2520
|
*
|
|
2494
2521
|
* @type {Array<GroupGallery>}
|
|
@@ -2501,6 +2528,18 @@ export interface Group {
|
|
|
2501
2528
|
* @memberof Group
|
|
2502
2529
|
*/
|
|
2503
2530
|
'createdAt'?: string;
|
|
2531
|
+
/**
|
|
2532
|
+
*
|
|
2533
|
+
* @type {string}
|
|
2534
|
+
* @memberof Group
|
|
2535
|
+
*/
|
|
2536
|
+
'updatedAt'?: string;
|
|
2537
|
+
/**
|
|
2538
|
+
*
|
|
2539
|
+
* @type {string}
|
|
2540
|
+
* @memberof Group
|
|
2541
|
+
*/
|
|
2542
|
+
'lastPostCreatedAt'?: string;
|
|
2504
2543
|
/**
|
|
2505
2544
|
*
|
|
2506
2545
|
* @type {number}
|
|
@@ -3155,6 +3194,24 @@ export interface GroupMyMember {
|
|
|
3155
3194
|
* @memberof GroupMyMember
|
|
3156
3195
|
*/
|
|
3157
3196
|
'roleIds'?: Array<string>;
|
|
3197
|
+
/**
|
|
3198
|
+
*
|
|
3199
|
+
* @type {string}
|
|
3200
|
+
* @memberof GroupMyMember
|
|
3201
|
+
*/
|
|
3202
|
+
'acceptedByDisplayName'?: string;
|
|
3203
|
+
/**
|
|
3204
|
+
* A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
|
|
3205
|
+
* @type {string}
|
|
3206
|
+
* @memberof GroupMyMember
|
|
3207
|
+
*/
|
|
3208
|
+
'acceptedById'?: string;
|
|
3209
|
+
/**
|
|
3210
|
+
*
|
|
3211
|
+
* @type {string}
|
|
3212
|
+
* @memberof GroupMyMember
|
|
3213
|
+
*/
|
|
3214
|
+
'createdAt'?: string;
|
|
3158
3215
|
/**
|
|
3159
3216
|
*
|
|
3160
3217
|
* @type {string}
|
|
@@ -3203,6 +3260,24 @@ export interface GroupMyMember {
|
|
|
3203
3260
|
* @memberof GroupMyMember
|
|
3204
3261
|
*/
|
|
3205
3262
|
'has2FA'?: boolean;
|
|
3263
|
+
/**
|
|
3264
|
+
*
|
|
3265
|
+
* @type {boolean}
|
|
3266
|
+
* @memberof GroupMyMember
|
|
3267
|
+
*/
|
|
3268
|
+
'hasJoinedFromPurchase'?: boolean;
|
|
3269
|
+
/**
|
|
3270
|
+
*
|
|
3271
|
+
* @type {string}
|
|
3272
|
+
* @memberof GroupMyMember
|
|
3273
|
+
*/
|
|
3274
|
+
'lastPostReadAt'?: string;
|
|
3275
|
+
/**
|
|
3276
|
+
*
|
|
3277
|
+
* @type {Array<string>}
|
|
3278
|
+
* @memberof GroupMyMember
|
|
3279
|
+
*/
|
|
3280
|
+
'mRoleIds'?: Array<string>;
|
|
3206
3281
|
/**
|
|
3207
3282
|
*
|
|
3208
3283
|
* @type {Array<string>}
|
|
@@ -5032,6 +5107,12 @@ export interface Permission {
|
|
|
5032
5107
|
* @memberof Permission
|
|
5033
5108
|
*/
|
|
5034
5109
|
'id': string;
|
|
5110
|
+
/**
|
|
5111
|
+
*
|
|
5112
|
+
* @type {string}
|
|
5113
|
+
* @memberof Permission
|
|
5114
|
+
*/
|
|
5115
|
+
'ownerDisplayName': string;
|
|
5035
5116
|
/**
|
|
5036
5117
|
*
|
|
5037
5118
|
* @type {string}
|
|
@@ -5563,7 +5644,7 @@ export interface Transaction {
|
|
|
5563
5644
|
'isTokens'?: boolean;
|
|
5564
5645
|
}
|
|
5565
5646
|
/**
|
|
5566
|
-
*
|
|
5647
|
+
* Represents a single Transaction, which is likely between VRChat and Steam.
|
|
5567
5648
|
* @export
|
|
5568
5649
|
* @interface TransactionAgreement
|
|
5569
5650
|
*/
|
|
@@ -5580,6 +5661,12 @@ export interface TransactionAgreement {
|
|
|
5580
5661
|
* @memberof TransactionAgreement
|
|
5581
5662
|
*/
|
|
5582
5663
|
'itemId': number;
|
|
5664
|
+
/**
|
|
5665
|
+
*
|
|
5666
|
+
* @type {string}
|
|
5667
|
+
* @memberof TransactionAgreement
|
|
5668
|
+
*/
|
|
5669
|
+
'agreement': string;
|
|
5583
5670
|
/**
|
|
5584
5671
|
* This is NOT TransactionStatus, but whatever Steam return.
|
|
5585
5672
|
* @type {string}
|
|
@@ -6630,6 +6717,12 @@ export interface UserSubscription {
|
|
|
6630
6717
|
* @memberof UserSubscription
|
|
6631
6718
|
*/
|
|
6632
6719
|
'status': TransactionStatus;
|
|
6720
|
+
/**
|
|
6721
|
+
*
|
|
6722
|
+
* @type {string}
|
|
6723
|
+
* @memberof UserSubscription
|
|
6724
|
+
*/
|
|
6725
|
+
'starts'?: string;
|
|
6633
6726
|
/**
|
|
6634
6727
|
*
|
|
6635
6728
|
* @type {string}
|
|
@@ -6937,12 +7030,12 @@ export const AuthenticationApiAxiosParamCreator = function (configuration?: Conf
|
|
|
6937
7030
|
* @summary Check User Exists
|
|
6938
7031
|
* @param {string} [email] Filter by email.
|
|
6939
7032
|
* @param {string} [displayName] Filter by displayName.
|
|
6940
|
-
* @param {string} [
|
|
7033
|
+
* @param {string} [username] Filter by Username.
|
|
6941
7034
|
* @param {string} [excludeUserId] Exclude by UserID.
|
|
6942
7035
|
* @param {*} [options] Override http request option.
|
|
6943
7036
|
* @throws {RequiredError}
|
|
6944
7037
|
*/
|
|
6945
|
-
checkUserExists: async (email?: string, displayName?: string,
|
|
7038
|
+
checkUserExists: async (email?: string, displayName?: string, username?: string, excludeUserId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6946
7039
|
const localVarPath = `/auth/exists`;
|
|
6947
7040
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6948
7041
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -6963,8 +7056,8 @@ export const AuthenticationApiAxiosParamCreator = function (configuration?: Conf
|
|
|
6963
7056
|
localVarQueryParameter['displayName'] = displayName;
|
|
6964
7057
|
}
|
|
6965
7058
|
|
|
6966
|
-
if (
|
|
6967
|
-
localVarQueryParameter['
|
|
7059
|
+
if (username !== undefined) {
|
|
7060
|
+
localVarQueryParameter['username'] = username;
|
|
6968
7061
|
}
|
|
6969
7062
|
|
|
6970
7063
|
if (excludeUserId !== undefined) {
|
|
@@ -7249,13 +7342,13 @@ export const AuthenticationApiFp = function(configuration?: Configuration) {
|
|
|
7249
7342
|
* @summary Check User Exists
|
|
7250
7343
|
* @param {string} [email] Filter by email.
|
|
7251
7344
|
* @param {string} [displayName] Filter by displayName.
|
|
7252
|
-
* @param {string} [
|
|
7345
|
+
* @param {string} [username] Filter by Username.
|
|
7253
7346
|
* @param {string} [excludeUserId] Exclude by UserID.
|
|
7254
7347
|
* @param {*} [options] Override http request option.
|
|
7255
7348
|
* @throws {RequiredError}
|
|
7256
7349
|
*/
|
|
7257
|
-
async checkUserExists(email?: string, displayName?: string,
|
|
7258
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.checkUserExists(email, displayName,
|
|
7350
|
+
async checkUserExists(email?: string, displayName?: string, username?: string, excludeUserId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserExists>> {
|
|
7351
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.checkUserExists(email, displayName, username, excludeUserId, options);
|
|
7259
7352
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7260
7353
|
},
|
|
7261
7354
|
/**
|
|
@@ -7347,13 +7440,13 @@ export const AuthenticationApiFactory = function (configuration?: Configuration,
|
|
|
7347
7440
|
* @summary Check User Exists
|
|
7348
7441
|
* @param {string} [email] Filter by email.
|
|
7349
7442
|
* @param {string} [displayName] Filter by displayName.
|
|
7350
|
-
* @param {string} [
|
|
7443
|
+
* @param {string} [username] Filter by Username.
|
|
7351
7444
|
* @param {string} [excludeUserId] Exclude by UserID.
|
|
7352
7445
|
* @param {*} [options] Override http request option.
|
|
7353
7446
|
* @throws {RequiredError}
|
|
7354
7447
|
*/
|
|
7355
|
-
checkUserExists(email?: string, displayName?: string,
|
|
7356
|
-
return localVarFp.checkUserExists(email, displayName,
|
|
7448
|
+
checkUserExists(email?: string, displayName?: string, username?: string, excludeUserId?: string, options?: any): AxiosPromise<UserExists> {
|
|
7449
|
+
return localVarFp.checkUserExists(email, displayName, username, excludeUserId, options).then((request) => request(axios, basePath));
|
|
7357
7450
|
},
|
|
7358
7451
|
/**
|
|
7359
7452
|
* Deletes the account with given ID. Normal users only have permission to delete their own account. Account deletion is 14 days from this request, and will be cancelled if you do an authenticated request with the account afterwards. **VRC+ NOTE:** Despite the 14-days cooldown, any VRC+ subscription will be cancelled **immediately**. **METHOD NOTE:** Despite this being a Delete action, the method type required is PUT.
|
|
@@ -7437,14 +7530,14 @@ export class AuthenticationApi extends BaseAPI {
|
|
|
7437
7530
|
* @summary Check User Exists
|
|
7438
7531
|
* @param {string} [email] Filter by email.
|
|
7439
7532
|
* @param {string} [displayName] Filter by displayName.
|
|
7440
|
-
* @param {string} [
|
|
7533
|
+
* @param {string} [username] Filter by Username.
|
|
7441
7534
|
* @param {string} [excludeUserId] Exclude by UserID.
|
|
7442
7535
|
* @param {*} [options] Override http request option.
|
|
7443
7536
|
* @throws {RequiredError}
|
|
7444
7537
|
* @memberof AuthenticationApi
|
|
7445
7538
|
*/
|
|
7446
|
-
public checkUserExists(email?: string, displayName?: string,
|
|
7447
|
-
return AuthenticationApiFp(this.configuration).checkUserExists(email, displayName,
|
|
7539
|
+
public checkUserExists(email?: string, displayName?: string, username?: string, excludeUserId?: string, options?: AxiosRequestConfig) {
|
|
7540
|
+
return AuthenticationApiFp(this.configuration).checkUserExists(email, displayName, username, excludeUserId, options).then((request) => request(this.axios, this.basePath));
|
|
7448
7541
|
}
|
|
7449
7542
|
|
|
7450
7543
|
/**
|
|
@@ -9904,7 +9997,7 @@ export const FilesApiFp = function(configuration?: Configuration) {
|
|
|
9904
9997
|
* @param {*} [options] Override http request option.
|
|
9905
9998
|
* @throws {RequiredError}
|
|
9906
9999
|
*/
|
|
9907
|
-
async deleteFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
10000
|
+
async deleteFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
|
|
9908
10001
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFile(fileId, options);
|
|
9909
10002
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9910
10003
|
},
|
|
@@ -10036,7 +10129,7 @@ export const FilesApiFactory = function (configuration?: Configuration, basePath
|
|
|
10036
10129
|
* @param {*} [options] Override http request option.
|
|
10037
10130
|
* @throws {RequiredError}
|
|
10038
10131
|
*/
|
|
10039
|
-
deleteFile(fileId: string, options?: any): AxiosPromise<
|
|
10132
|
+
deleteFile(fileId: string, options?: any): AxiosPromise<any> {
|
|
10040
10133
|
return localVarFp.deleteFile(fileId, options).then((request) => request(axios, basePath));
|
|
10041
10134
|
},
|
|
10042
10135
|
/**
|
|
@@ -17893,10 +17986,11 @@ export const WorldsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17893
17986
|
* @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
|
|
17894
17987
|
* @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
|
|
17895
17988
|
* @param {string} [platform] The platform the asset supports.
|
|
17989
|
+
* @param {boolean} [fuzzy]
|
|
17896
17990
|
* @param {*} [options] Override http request option.
|
|
17897
17991
|
* @throws {RequiredError}
|
|
17898
17992
|
*/
|
|
17899
|
-
searchWorlds: async (featured?: boolean, sort?: SortOption, user?: 'me', userId?: string, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
17993
|
+
searchWorlds: async (featured?: boolean, sort?: SortOption, user?: 'me', userId?: string, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, fuzzy?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
17900
17994
|
const localVarPath = `/worlds`;
|
|
17901
17995
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17902
17996
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -17967,6 +18061,10 @@ export const WorldsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17967
18061
|
localVarQueryParameter['platform'] = platform;
|
|
17968
18062
|
}
|
|
17969
18063
|
|
|
18064
|
+
if (fuzzy !== undefined) {
|
|
18065
|
+
localVarQueryParameter['fuzzy'] = fuzzy;
|
|
18066
|
+
}
|
|
18067
|
+
|
|
17970
18068
|
|
|
17971
18069
|
|
|
17972
18070
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -18228,11 +18326,12 @@ export const WorldsApiFp = function(configuration?: Configuration) {
|
|
|
18228
18326
|
* @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
|
|
18229
18327
|
* @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
|
|
18230
18328
|
* @param {string} [platform] The platform the asset supports.
|
|
18329
|
+
* @param {boolean} [fuzzy]
|
|
18231
18330
|
* @param {*} [options] Override http request option.
|
|
18232
18331
|
* @throws {RequiredError}
|
|
18233
18332
|
*/
|
|
18234
|
-
async searchWorlds(featured?: boolean, sort?: SortOption, user?: 'me', userId?: string, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>> {
|
|
18235
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options);
|
|
18333
|
+
async searchWorlds(featured?: boolean, sort?: SortOption, user?: 'me', userId?: string, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, fuzzy?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>> {
|
|
18334
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, fuzzy, options);
|
|
18236
18335
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
18237
18336
|
},
|
|
18238
18337
|
/**
|
|
@@ -18422,11 +18521,12 @@ export const WorldsApiFactory = function (configuration?: Configuration, basePat
|
|
|
18422
18521
|
* @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
|
|
18423
18522
|
* @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
|
|
18424
18523
|
* @param {string} [platform] The platform the asset supports.
|
|
18524
|
+
* @param {boolean} [fuzzy]
|
|
18425
18525
|
* @param {*} [options] Override http request option.
|
|
18426
18526
|
* @throws {RequiredError}
|
|
18427
18527
|
*/
|
|
18428
|
-
searchWorlds(featured?: boolean, sort?: SortOption, user?: 'me', userId?: string, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: any): AxiosPromise<Array<LimitedWorld>> {
|
|
18429
|
-
return localVarFp.searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options).then((request) => request(axios, basePath));
|
|
18528
|
+
searchWorlds(featured?: boolean, sort?: SortOption, user?: 'me', userId?: string, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, fuzzy?: boolean, options?: any): AxiosPromise<Array<LimitedWorld>> {
|
|
18529
|
+
return localVarFp.searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, fuzzy, options).then((request) => request(axios, basePath));
|
|
18430
18530
|
},
|
|
18431
18531
|
/**
|
|
18432
18532
|
* Unpublish a world.
|
|
@@ -18633,12 +18733,13 @@ export class WorldsApi extends BaseAPI {
|
|
|
18633
18733
|
* @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
|
|
18634
18734
|
* @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
|
|
18635
18735
|
* @param {string} [platform] The platform the asset supports.
|
|
18736
|
+
* @param {boolean} [fuzzy]
|
|
18636
18737
|
* @param {*} [options] Override http request option.
|
|
18637
18738
|
* @throws {RequiredError}
|
|
18638
18739
|
* @memberof WorldsApi
|
|
18639
18740
|
*/
|
|
18640
|
-
public searchWorlds(featured?: boolean, sort?: SortOption, user?: 'me', userId?: string, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig) {
|
|
18641
|
-
return WorldsApiFp(this.configuration).searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options).then((request) => request(this.axios, this.basePath));
|
|
18741
|
+
public searchWorlds(featured?: boolean, sort?: SortOption, user?: 'me', userId?: string, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, fuzzy?: boolean, options?: AxiosRequestConfig) {
|
|
18742
|
+
return WorldsApiFp(this.configuration).searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, fuzzy, options).then((request) => request(this.axios, this.basePath));
|
|
18642
18743
|
}
|
|
18643
18744
|
|
|
18644
18745
|
/**
|
package/base.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.18.
|
|
6
|
+
* The version of the OpenAPI document: 1.18.1
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.18.
|
|
6
|
+
* The version of the OpenAPI document: 1.18.1
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.18.
|
|
6
|
+
* The version of the OpenAPI document: 1.18.1
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|