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/dist/api.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.18.
|
|
4
|
+
* The version of the OpenAPI document: 1.18.1
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -48,6 +48,18 @@ export interface APIConfig {
|
|
|
48
48
|
* @deprecated
|
|
49
49
|
*/
|
|
50
50
|
'appName': string;
|
|
51
|
+
/**
|
|
52
|
+
* List of supported Languages
|
|
53
|
+
* @type {Array<string>}
|
|
54
|
+
* @memberof APIConfig
|
|
55
|
+
*/
|
|
56
|
+
'availableLanguageCodes': Array<string>;
|
|
57
|
+
/**
|
|
58
|
+
* List of supported Languages
|
|
59
|
+
* @type {Array<string>}
|
|
60
|
+
* @memberof APIConfig
|
|
61
|
+
*/
|
|
62
|
+
'availableLanguages': Array<string>;
|
|
51
63
|
/**
|
|
52
64
|
* Build tag of the API server
|
|
53
65
|
* @type {string}
|
|
@@ -72,6 +84,66 @@ export interface APIConfig {
|
|
|
72
84
|
* @memberof APIConfig
|
|
73
85
|
*/
|
|
74
86
|
'clientDisconnectTimeout': number;
|
|
87
|
+
/**
|
|
88
|
+
* Unknown
|
|
89
|
+
* @type {boolean}
|
|
90
|
+
* @memberof APIConfig
|
|
91
|
+
*/
|
|
92
|
+
'clientNetDispatchThread'?: boolean;
|
|
93
|
+
/**
|
|
94
|
+
* Unknown
|
|
95
|
+
* @type {boolean}
|
|
96
|
+
* @memberof APIConfig
|
|
97
|
+
*/
|
|
98
|
+
'clientNetInThread'?: boolean;
|
|
99
|
+
/**
|
|
100
|
+
* Unknown
|
|
101
|
+
* @type {boolean}
|
|
102
|
+
* @memberof APIConfig
|
|
103
|
+
*/
|
|
104
|
+
'clientNetInThread2'?: boolean;
|
|
105
|
+
/**
|
|
106
|
+
* Unknown
|
|
107
|
+
* @type {boolean}
|
|
108
|
+
* @memberof APIConfig
|
|
109
|
+
*/
|
|
110
|
+
'clientNetInThreadMobile'?: boolean;
|
|
111
|
+
/**
|
|
112
|
+
* Unknown
|
|
113
|
+
* @type {boolean}
|
|
114
|
+
* @memberof APIConfig
|
|
115
|
+
*/
|
|
116
|
+
'clientNetInThreadMobile2'?: boolean;
|
|
117
|
+
/**
|
|
118
|
+
* Unknown
|
|
119
|
+
* @type {boolean}
|
|
120
|
+
* @memberof APIConfig
|
|
121
|
+
*/
|
|
122
|
+
'clientNetOutThread'?: boolean;
|
|
123
|
+
/**
|
|
124
|
+
* Unknown
|
|
125
|
+
* @type {boolean}
|
|
126
|
+
* @memberof APIConfig
|
|
127
|
+
*/
|
|
128
|
+
'clientNetOutThread2'?: boolean;
|
|
129
|
+
/**
|
|
130
|
+
* Unknown
|
|
131
|
+
* @type {boolean}
|
|
132
|
+
* @memberof APIConfig
|
|
133
|
+
*/
|
|
134
|
+
'clientNetOutThreadMobile'?: boolean;
|
|
135
|
+
/**
|
|
136
|
+
* Unknown
|
|
137
|
+
* @type {boolean}
|
|
138
|
+
* @memberof APIConfig
|
|
139
|
+
*/
|
|
140
|
+
'clientNetOutThreadMobile2'?: boolean;
|
|
141
|
+
/**
|
|
142
|
+
* Unknown
|
|
143
|
+
* @type {number}
|
|
144
|
+
* @memberof APIConfig
|
|
145
|
+
*/
|
|
146
|
+
'clientQR'?: number;
|
|
75
147
|
/**
|
|
76
148
|
* Unknown
|
|
77
149
|
* @type {number}
|
|
@@ -96,6 +168,12 @@ export interface APIConfig {
|
|
|
96
168
|
* @memberof APIConfig
|
|
97
169
|
*/
|
|
98
170
|
'copyrightEmail': string;
|
|
171
|
+
/**
|
|
172
|
+
* Current version number of the Privacy Agreement
|
|
173
|
+
* @type {number}
|
|
174
|
+
* @memberof APIConfig
|
|
175
|
+
*/
|
|
176
|
+
'currentPrivacyVersion'?: number;
|
|
99
177
|
/**
|
|
100
178
|
* Current version number of the Terms of Service
|
|
101
179
|
* @type {number}
|
|
@@ -115,19 +193,11 @@ export interface APIConfig {
|
|
|
115
193
|
*/
|
|
116
194
|
'deploymentGroup': DeploymentGroup;
|
|
117
195
|
/**
|
|
118
|
-
*
|
|
119
|
-
* @type {string}
|
|
120
|
-
* @memberof APIConfig
|
|
121
|
-
* @deprecated
|
|
122
|
-
*/
|
|
123
|
-
'devAppVersionStandalone': string;
|
|
124
|
-
/**
|
|
125
|
-
* Developer Download link
|
|
126
|
-
* @type {string}
|
|
196
|
+
* Unknown
|
|
197
|
+
* @type {Array<string>}
|
|
127
198
|
* @memberof APIConfig
|
|
128
|
-
* @deprecated
|
|
129
199
|
*/
|
|
130
|
-
'
|
|
200
|
+
'devLanguageCodes'?: Array<string>;
|
|
131
201
|
/**
|
|
132
202
|
* Link to download the development SDK, use downloadUrls instead
|
|
133
203
|
* @type {string}
|
|
@@ -143,18 +213,17 @@ export interface APIConfig {
|
|
|
143
213
|
*/
|
|
144
214
|
'devSdkVersion': string;
|
|
145
215
|
/**
|
|
146
|
-
*
|
|
216
|
+
* Unknown, \"dis\" maybe for disconnect?
|
|
147
217
|
* @type {string}
|
|
148
218
|
* @memberof APIConfig
|
|
149
|
-
* @deprecated
|
|
150
219
|
*/
|
|
151
|
-
'
|
|
220
|
+
'dis-countdown': string;
|
|
152
221
|
/**
|
|
153
|
-
* Unknown
|
|
154
|
-
* @type {
|
|
222
|
+
* Unknown
|
|
223
|
+
* @type {boolean}
|
|
155
224
|
* @memberof APIConfig
|
|
156
225
|
*/
|
|
157
|
-
'
|
|
226
|
+
'disableAVProInProton'?: boolean;
|
|
158
227
|
/**
|
|
159
228
|
* Toggles if copying avatars should be disabled
|
|
160
229
|
* @type {boolean}
|
|
@@ -185,6 +254,12 @@ export interface APIConfig {
|
|
|
185
254
|
* @memberof APIConfig
|
|
186
255
|
*/
|
|
187
256
|
'disableEmail': boolean;
|
|
257
|
+
/**
|
|
258
|
+
* Unknown
|
|
259
|
+
* @type {boolean}
|
|
260
|
+
* @memberof APIConfig
|
|
261
|
+
*/
|
|
262
|
+
'disableCaptcha'?: boolean;
|
|
188
263
|
/**
|
|
189
264
|
* Toggles if Analytics should be disabled.
|
|
190
265
|
* @type {boolean}
|
|
@@ -265,18 +340,29 @@ export interface APIConfig {
|
|
|
265
340
|
*/
|
|
266
341
|
'dynamicWorldRows': Set<DynamicContentRow>;
|
|
267
342
|
/**
|
|
268
|
-
*
|
|
269
|
-
* @type {
|
|
343
|
+
* Unknown
|
|
344
|
+
* @type {string}
|
|
270
345
|
* @memberof APIConfig
|
|
271
346
|
*/
|
|
272
|
-
'
|
|
347
|
+
'economyPauseEnd'?: string;
|
|
273
348
|
/**
|
|
274
349
|
* Unknown
|
|
275
350
|
* @type {string}
|
|
276
351
|
* @memberof APIConfig
|
|
277
|
-
* @deprecated
|
|
278
352
|
*/
|
|
279
|
-
'
|
|
353
|
+
'economyPauseStart'?: string;
|
|
354
|
+
/**
|
|
355
|
+
* Unknown
|
|
356
|
+
* @type {number}
|
|
357
|
+
* @memberof APIConfig
|
|
358
|
+
*/
|
|
359
|
+
'economyState'?: number;
|
|
360
|
+
/**
|
|
361
|
+
*
|
|
362
|
+
* @type {APIConfigEvents}
|
|
363
|
+
* @memberof APIConfig
|
|
364
|
+
*/
|
|
365
|
+
'events': APIConfigEvents;
|
|
280
366
|
/**
|
|
281
367
|
* WorldID be \"offline\" on User profiles if you are not friends with that user.
|
|
282
368
|
* @type {string}
|
|
@@ -296,70 +382,29 @@ export interface APIConfig {
|
|
|
296
382
|
*/
|
|
297
383
|
'hubWorldId': string;
|
|
298
384
|
/**
|
|
299
|
-
*
|
|
300
|
-
* @type {string}
|
|
385
|
+
* 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).
|
|
386
|
+
* @type {Array<string>}
|
|
301
387
|
* @memberof APIConfig
|
|
302
388
|
*/
|
|
303
|
-
'
|
|
389
|
+
'imageHostUrlList': Array<string>;
|
|
304
390
|
/**
|
|
305
|
-
*
|
|
391
|
+
* VRChat\'s job application email
|
|
306
392
|
* @type {string}
|
|
307
393
|
* @memberof APIConfig
|
|
308
|
-
* @deprecated
|
|
309
394
|
*/
|
|
310
|
-
'
|
|
395
|
+
'jobsEmail': string;
|
|
311
396
|
/**
|
|
312
397
|
* VRChat\'s moderation related email
|
|
313
398
|
* @type {string}
|
|
314
399
|
* @memberof APIConfig
|
|
315
400
|
*/
|
|
316
401
|
'moderationEmail': string;
|
|
317
|
-
/**
|
|
318
|
-
* Unknown
|
|
319
|
-
* @type {number}
|
|
320
|
-
* @memberof APIConfig
|
|
321
|
-
*/
|
|
322
|
-
'moderationQueryPeriod': number;
|
|
323
402
|
/**
|
|
324
403
|
* Used in-game to notify a user they aren\'t allowed to select avatars in private worlds
|
|
325
404
|
* @type {string}
|
|
326
405
|
* @memberof APIConfig
|
|
327
406
|
*/
|
|
328
407
|
'notAllowedToSelectAvatarInPrivateWorldMessage': string;
|
|
329
|
-
/**
|
|
330
|
-
* Extra [plugin](https://doc.photonengine.com/en-us/server/current/plugins/manual) to run in each instance
|
|
331
|
-
* @type {string}
|
|
332
|
-
* @memberof APIConfig
|
|
333
|
-
*/
|
|
334
|
-
'plugin': string;
|
|
335
|
-
/**
|
|
336
|
-
* Version number for game release build
|
|
337
|
-
* @type {string}
|
|
338
|
-
* @memberof APIConfig
|
|
339
|
-
* @deprecated
|
|
340
|
-
*/
|
|
341
|
-
'releaseAppVersionStandalone': string;
|
|
342
|
-
/**
|
|
343
|
-
* Link to download the release SDK
|
|
344
|
-
* @type {string}
|
|
345
|
-
* @memberof APIConfig
|
|
346
|
-
* @deprecated
|
|
347
|
-
*/
|
|
348
|
-
'releaseSdkUrl': string;
|
|
349
|
-
/**
|
|
350
|
-
* Version of the release SDK
|
|
351
|
-
* @type {string}
|
|
352
|
-
* @memberof APIConfig
|
|
353
|
-
* @deprecated
|
|
354
|
-
*/
|
|
355
|
-
'releaseSdkVersion': string;
|
|
356
|
-
/**
|
|
357
|
-
* Version number for server release build
|
|
358
|
-
* @type {string}
|
|
359
|
-
* @memberof APIConfig
|
|
360
|
-
* @deprecated
|
|
361
|
-
*/
|
|
362
|
-
'releaseServerVersionStandalone': string;
|
|
363
408
|
/**
|
|
364
409
|
* Link to the developer FAQ
|
|
365
410
|
* @type {string}
|
|
@@ -390,6 +435,12 @@ export interface APIConfig {
|
|
|
390
435
|
* @memberof APIConfig
|
|
391
436
|
*/
|
|
392
437
|
'serverName': string;
|
|
438
|
+
/**
|
|
439
|
+
* 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).
|
|
440
|
+
* @type {Array<string>}
|
|
441
|
+
* @memberof APIConfig
|
|
442
|
+
*/
|
|
443
|
+
'stringHostUrlList': Array<string>;
|
|
393
444
|
/**
|
|
394
445
|
* VRChat\'s support email
|
|
395
446
|
* @type {string}
|
|
@@ -450,30 +501,6 @@ export interface APIConfig {
|
|
|
450
501
|
* @memberof APIConfig
|
|
451
502
|
*/
|
|
452
503
|
'useReliableUdpForVoice': boolean;
|
|
453
|
-
/**
|
|
454
|
-
* Unknown
|
|
455
|
-
* @type {number}
|
|
456
|
-
* @memberof APIConfig
|
|
457
|
-
*/
|
|
458
|
-
'userUpdatePeriod': number;
|
|
459
|
-
/**
|
|
460
|
-
* Unknown
|
|
461
|
-
* @type {number}
|
|
462
|
-
* @memberof APIConfig
|
|
463
|
-
*/
|
|
464
|
-
'userVerificationDelay': number;
|
|
465
|
-
/**
|
|
466
|
-
* Unknown
|
|
467
|
-
* @type {number}
|
|
468
|
-
* @memberof APIConfig
|
|
469
|
-
*/
|
|
470
|
-
'userVerificationRetry': number;
|
|
471
|
-
/**
|
|
472
|
-
* Unknown
|
|
473
|
-
* @type {number}
|
|
474
|
-
* @memberof APIConfig
|
|
475
|
-
*/
|
|
476
|
-
'userVerificationTimeout': number;
|
|
477
504
|
/**
|
|
478
505
|
* Download link for game on the Steam website.
|
|
479
506
|
* @type {string}
|
|
@@ -487,23 +514,17 @@ export interface APIConfig {
|
|
|
487
514
|
*/
|
|
488
515
|
'whiteListedAssetUrls': Array<string>;
|
|
489
516
|
/**
|
|
490
|
-
*
|
|
491
|
-
* @type {number}
|
|
492
|
-
* @memberof APIConfig
|
|
493
|
-
*/
|
|
494
|
-
'worldUpdatePeriod': number;
|
|
495
|
-
/**
|
|
496
|
-
* Currently used youtube-dl.exe hash in SHA-256-delimited format
|
|
517
|
+
* Currently used youtube-dl.exe version
|
|
497
518
|
* @type {string}
|
|
498
519
|
* @memberof APIConfig
|
|
499
520
|
*/
|
|
500
|
-
'player-url-resolver-
|
|
521
|
+
'player-url-resolver-version': string;
|
|
501
522
|
/**
|
|
502
|
-
* Currently used youtube-dl.exe
|
|
523
|
+
* Currently used youtube-dl.exe hash in SHA1-delimited format
|
|
503
524
|
* @type {string}
|
|
504
525
|
* @memberof APIConfig
|
|
505
526
|
*/
|
|
506
|
-
'player-url-resolver-
|
|
527
|
+
'player-url-resolver-sha1': string;
|
|
507
528
|
}
|
|
508
529
|
/**
|
|
509
530
|
* Public Announcement
|
|
@@ -2135,7 +2156,7 @@ export interface FileData {
|
|
|
2135
2156
|
* @type {string}
|
|
2136
2157
|
* @memberof FileData
|
|
2137
2158
|
*/
|
|
2138
|
-
'md5'
|
|
2159
|
+
'md5'?: string;
|
|
2139
2160
|
/**
|
|
2140
2161
|
*
|
|
2141
2162
|
* @type {number}
|
|
@@ -2456,6 +2477,12 @@ export interface Group {
|
|
|
2456
2477
|
* @memberof Group
|
|
2457
2478
|
*/
|
|
2458
2479
|
'tags'?: Array<string>;
|
|
2480
|
+
/**
|
|
2481
|
+
* 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.
|
|
2482
|
+
* @type {string}
|
|
2483
|
+
* @memberof Group
|
|
2484
|
+
*/
|
|
2485
|
+
'transferTargetId'?: string;
|
|
2459
2486
|
/**
|
|
2460
2487
|
*
|
|
2461
2488
|
* @type {Array<GroupGallery>}
|
|
@@ -2468,6 +2495,18 @@ export interface Group {
|
|
|
2468
2495
|
* @memberof Group
|
|
2469
2496
|
*/
|
|
2470
2497
|
'createdAt'?: string;
|
|
2498
|
+
/**
|
|
2499
|
+
*
|
|
2500
|
+
* @type {string}
|
|
2501
|
+
* @memberof Group
|
|
2502
|
+
*/
|
|
2503
|
+
'updatedAt'?: string;
|
|
2504
|
+
/**
|
|
2505
|
+
*
|
|
2506
|
+
* @type {string}
|
|
2507
|
+
* @memberof Group
|
|
2508
|
+
*/
|
|
2509
|
+
'lastPostCreatedAt'?: string;
|
|
2471
2510
|
/**
|
|
2472
2511
|
*
|
|
2473
2512
|
* @type {number}
|
|
@@ -3106,6 +3145,24 @@ export interface GroupMyMember {
|
|
|
3106
3145
|
* @memberof GroupMyMember
|
|
3107
3146
|
*/
|
|
3108
3147
|
'roleIds'?: Array<string>;
|
|
3148
|
+
/**
|
|
3149
|
+
*
|
|
3150
|
+
* @type {string}
|
|
3151
|
+
* @memberof GroupMyMember
|
|
3152
|
+
*/
|
|
3153
|
+
'acceptedByDisplayName'?: string;
|
|
3154
|
+
/**
|
|
3155
|
+
* 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.
|
|
3156
|
+
* @type {string}
|
|
3157
|
+
* @memberof GroupMyMember
|
|
3158
|
+
*/
|
|
3159
|
+
'acceptedById'?: string;
|
|
3160
|
+
/**
|
|
3161
|
+
*
|
|
3162
|
+
* @type {string}
|
|
3163
|
+
* @memberof GroupMyMember
|
|
3164
|
+
*/
|
|
3165
|
+
'createdAt'?: string;
|
|
3109
3166
|
/**
|
|
3110
3167
|
*
|
|
3111
3168
|
* @type {string}
|
|
@@ -3154,6 +3211,24 @@ export interface GroupMyMember {
|
|
|
3154
3211
|
* @memberof GroupMyMember
|
|
3155
3212
|
*/
|
|
3156
3213
|
'has2FA'?: boolean;
|
|
3214
|
+
/**
|
|
3215
|
+
*
|
|
3216
|
+
* @type {boolean}
|
|
3217
|
+
* @memberof GroupMyMember
|
|
3218
|
+
*/
|
|
3219
|
+
'hasJoinedFromPurchase'?: boolean;
|
|
3220
|
+
/**
|
|
3221
|
+
*
|
|
3222
|
+
* @type {string}
|
|
3223
|
+
* @memberof GroupMyMember
|
|
3224
|
+
*/
|
|
3225
|
+
'lastPostReadAt'?: string;
|
|
3226
|
+
/**
|
|
3227
|
+
*
|
|
3228
|
+
* @type {Array<string>}
|
|
3229
|
+
* @memberof GroupMyMember
|
|
3230
|
+
*/
|
|
3231
|
+
'mRoleIds'?: Array<string>;
|
|
3157
3232
|
/**
|
|
3158
3233
|
*
|
|
3159
3234
|
* @type {Array<string>}
|
|
@@ -4928,6 +5003,12 @@ export interface Permission {
|
|
|
4928
5003
|
* @memberof Permission
|
|
4929
5004
|
*/
|
|
4930
5005
|
'id': string;
|
|
5006
|
+
/**
|
|
5007
|
+
*
|
|
5008
|
+
* @type {string}
|
|
5009
|
+
* @memberof Permission
|
|
5010
|
+
*/
|
|
5011
|
+
'ownerDisplayName': string;
|
|
4931
5012
|
/**
|
|
4932
5013
|
*
|
|
4933
5014
|
* @type {string}
|
|
@@ -5439,7 +5520,7 @@ export interface Transaction {
|
|
|
5439
5520
|
'isTokens'?: boolean;
|
|
5440
5521
|
}
|
|
5441
5522
|
/**
|
|
5442
|
-
*
|
|
5523
|
+
* Represents a single Transaction, which is likely between VRChat and Steam.
|
|
5443
5524
|
* @export
|
|
5444
5525
|
* @interface TransactionAgreement
|
|
5445
5526
|
*/
|
|
@@ -5456,6 +5537,12 @@ export interface TransactionAgreement {
|
|
|
5456
5537
|
* @memberof TransactionAgreement
|
|
5457
5538
|
*/
|
|
5458
5539
|
'itemId': number;
|
|
5540
|
+
/**
|
|
5541
|
+
*
|
|
5542
|
+
* @type {string}
|
|
5543
|
+
* @memberof TransactionAgreement
|
|
5544
|
+
*/
|
|
5545
|
+
'agreement': string;
|
|
5459
5546
|
/**
|
|
5460
5547
|
* This is NOT TransactionStatus, but whatever Steam return.
|
|
5461
5548
|
* @type {string}
|
|
@@ -6494,6 +6581,12 @@ export interface UserSubscription {
|
|
|
6494
6581
|
* @memberof UserSubscription
|
|
6495
6582
|
*/
|
|
6496
6583
|
'status': TransactionStatus;
|
|
6584
|
+
/**
|
|
6585
|
+
*
|
|
6586
|
+
* @type {string}
|
|
6587
|
+
* @memberof UserSubscription
|
|
6588
|
+
*/
|
|
6589
|
+
'starts'?: string;
|
|
6497
6590
|
/**
|
|
6498
6591
|
*
|
|
6499
6592
|
* @type {string}
|
|
@@ -6799,12 +6892,12 @@ export declare const AuthenticationApiAxiosParamCreator: (configuration?: Config
|
|
|
6799
6892
|
* @summary Check User Exists
|
|
6800
6893
|
* @param {string} [email] Filter by email.
|
|
6801
6894
|
* @param {string} [displayName] Filter by displayName.
|
|
6802
|
-
* @param {string} [
|
|
6895
|
+
* @param {string} [username] Filter by Username.
|
|
6803
6896
|
* @param {string} [excludeUserId] Exclude by UserID.
|
|
6804
6897
|
* @param {*} [options] Override http request option.
|
|
6805
6898
|
* @throws {RequiredError}
|
|
6806
6899
|
*/
|
|
6807
|
-
checkUserExists: (email?: string, displayName?: string,
|
|
6900
|
+
checkUserExists: (email?: string, displayName?: string, username?: string, excludeUserId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6808
6901
|
/**
|
|
6809
6902
|
* 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.
|
|
6810
6903
|
* @summary Delete User
|
|
@@ -6869,12 +6962,12 @@ export declare const AuthenticationApiFp: (configuration?: Configuration) => {
|
|
|
6869
6962
|
* @summary Check User Exists
|
|
6870
6963
|
* @param {string} [email] Filter by email.
|
|
6871
6964
|
* @param {string} [displayName] Filter by displayName.
|
|
6872
|
-
* @param {string} [
|
|
6965
|
+
* @param {string} [username] Filter by Username.
|
|
6873
6966
|
* @param {string} [excludeUserId] Exclude by UserID.
|
|
6874
6967
|
* @param {*} [options] Override http request option.
|
|
6875
6968
|
* @throws {RequiredError}
|
|
6876
6969
|
*/
|
|
6877
|
-
checkUserExists(email?: string, displayName?: string,
|
|
6970
|
+
checkUserExists(email?: string, displayName?: string, username?: string, excludeUserId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserExists>>;
|
|
6878
6971
|
/**
|
|
6879
6972
|
* 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.
|
|
6880
6973
|
* @summary Delete User
|
|
@@ -6939,12 +7032,12 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
|
|
|
6939
7032
|
* @summary Check User Exists
|
|
6940
7033
|
* @param {string} [email] Filter by email.
|
|
6941
7034
|
* @param {string} [displayName] Filter by displayName.
|
|
6942
|
-
* @param {string} [
|
|
7035
|
+
* @param {string} [username] Filter by Username.
|
|
6943
7036
|
* @param {string} [excludeUserId] Exclude by UserID.
|
|
6944
7037
|
* @param {*} [options] Override http request option.
|
|
6945
7038
|
* @throws {RequiredError}
|
|
6946
7039
|
*/
|
|
6947
|
-
checkUserExists(email?: string, displayName?: string,
|
|
7040
|
+
checkUserExists(email?: string, displayName?: string, username?: string, excludeUserId?: string, options?: any): AxiosPromise<UserExists>;
|
|
6948
7041
|
/**
|
|
6949
7042
|
* 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.
|
|
6950
7043
|
* @summary Delete User
|
|
@@ -7011,13 +7104,13 @@ export declare class AuthenticationApi extends BaseAPI {
|
|
|
7011
7104
|
* @summary Check User Exists
|
|
7012
7105
|
* @param {string} [email] Filter by email.
|
|
7013
7106
|
* @param {string} [displayName] Filter by displayName.
|
|
7014
|
-
* @param {string} [
|
|
7107
|
+
* @param {string} [username] Filter by Username.
|
|
7015
7108
|
* @param {string} [excludeUserId] Exclude by UserID.
|
|
7016
7109
|
* @param {*} [options] Override http request option.
|
|
7017
7110
|
* @throws {RequiredError}
|
|
7018
7111
|
* @memberof AuthenticationApi
|
|
7019
7112
|
*/
|
|
7020
|
-
checkUserExists(email?: string, displayName?: string,
|
|
7113
|
+
checkUserExists(email?: string, displayName?: string, username?: string, excludeUserId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserExists, any>>;
|
|
7021
7114
|
/**
|
|
7022
7115
|
* 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.
|
|
7023
7116
|
* @summary Delete User
|
|
@@ -8152,7 +8245,7 @@ export declare const FilesApiFp: (configuration?: Configuration) => {
|
|
|
8152
8245
|
* @param {*} [options] Override http request option.
|
|
8153
8246
|
* @throws {RequiredError}
|
|
8154
8247
|
*/
|
|
8155
|
-
deleteFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8248
|
+
deleteFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
8156
8249
|
/**
|
|
8157
8250
|
* Delete a specific version of a file. You can only delete the latest version.
|
|
8158
8251
|
* @summary Delete File Version
|
|
@@ -8252,7 +8345,7 @@ export declare const FilesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8252
8345
|
* @param {*} [options] Override http request option.
|
|
8253
8346
|
* @throws {RequiredError}
|
|
8254
8347
|
*/
|
|
8255
|
-
deleteFile(fileId: string, options?: any): AxiosPromise<
|
|
8348
|
+
deleteFile(fileId: string, options?: any): AxiosPromise<any>;
|
|
8256
8349
|
/**
|
|
8257
8350
|
* Delete a specific version of a file. You can only delete the latest version.
|
|
8258
8351
|
* @summary Delete File Version
|
|
@@ -8357,7 +8450,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
8357
8450
|
* @throws {RequiredError}
|
|
8358
8451
|
* @memberof FilesApi
|
|
8359
8452
|
*/
|
|
8360
|
-
deleteFile(fileId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
8453
|
+
deleteFile(fileId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
8361
8454
|
/**
|
|
8362
8455
|
* Delete a specific version of a file. You can only delete the latest version.
|
|
8363
8456
|
* @summary Delete File Version
|
|
@@ -12048,10 +12141,11 @@ export declare const WorldsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12048
12141
|
* @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
|
|
12049
12142
|
* @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
|
|
12050
12143
|
* @param {string} [platform] The platform the asset supports.
|
|
12144
|
+
* @param {boolean} [fuzzy]
|
|
12051
12145
|
* @param {*} [options] Override http request option.
|
|
12052
12146
|
* @throws {RequiredError}
|
|
12053
12147
|
*/
|
|
12054
|
-
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<RequestArgs>;
|
|
12148
|
+
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<RequestArgs>;
|
|
12055
12149
|
/**
|
|
12056
12150
|
* Unpublish a world.
|
|
12057
12151
|
* @summary Unpublish World
|
|
@@ -12209,10 +12303,11 @@ export declare const WorldsApiFp: (configuration?: Configuration) => {
|
|
|
12209
12303
|
* @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
|
|
12210
12304
|
* @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
|
|
12211
12305
|
* @param {string} [platform] The platform the asset supports.
|
|
12306
|
+
* @param {boolean} [fuzzy]
|
|
12212
12307
|
* @param {*} [options] Override http request option.
|
|
12213
12308
|
* @throws {RequiredError}
|
|
12214
12309
|
*/
|
|
12215
|
-
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>>>;
|
|
12310
|
+
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>>>;
|
|
12216
12311
|
/**
|
|
12217
12312
|
* Unpublish a world.
|
|
12218
12313
|
* @summary Unpublish World
|
|
@@ -12370,10 +12465,11 @@ export declare const WorldsApiFactory: (configuration?: Configuration, basePath?
|
|
|
12370
12465
|
* @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
|
|
12371
12466
|
* @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
|
|
12372
12467
|
* @param {string} [platform] The platform the asset supports.
|
|
12468
|
+
* @param {boolean} [fuzzy]
|
|
12373
12469
|
* @param {*} [options] Override http request option.
|
|
12374
12470
|
* @throws {RequiredError}
|
|
12375
12471
|
*/
|
|
12376
|
-
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>>;
|
|
12472
|
+
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>>;
|
|
12377
12473
|
/**
|
|
12378
12474
|
* Unpublish a world.
|
|
12379
12475
|
* @summary Unpublish World
|
|
@@ -12543,11 +12639,12 @@ export declare class WorldsApi extends BaseAPI {
|
|
|
12543
12639
|
* @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
|
|
12544
12640
|
* @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
|
|
12545
12641
|
* @param {string} [platform] The platform the asset supports.
|
|
12642
|
+
* @param {boolean} [fuzzy]
|
|
12546
12643
|
* @param {*} [options] Override http request option.
|
|
12547
12644
|
* @throws {RequiredError}
|
|
12548
12645
|
* @memberof WorldsApi
|
|
12549
12646
|
*/
|
|
12550
|
-
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<import("axios").AxiosResponse<LimitedWorld[], any>>;
|
|
12647
|
+
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<import("axios").AxiosResponse<LimitedWorld[], any>>;
|
|
12551
12648
|
/**
|
|
12552
12649
|
* Unpublish a world.
|
|
12553
12650
|
* @summary Unpublish World
|