vrchat 1.17.5 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +34 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +33 -2
- package/dist/api.js +3 -2
- 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.
|
|
6
|
+
* The version of the OpenAPI document: 1.18.0
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1644,6 +1644,12 @@ export interface CurrentUser {
|
|
|
1644
1644
|
* @memberof CurrentUser
|
|
1645
1645
|
*/
|
|
1646
1646
|
'id': string;
|
|
1647
|
+
/**
|
|
1648
|
+
*
|
|
1649
|
+
* @type {boolean}
|
|
1650
|
+
* @memberof CurrentUser
|
|
1651
|
+
*/
|
|
1652
|
+
'isBoopingEnabled'?: boolean;
|
|
1647
1653
|
/**
|
|
1648
1654
|
*
|
|
1649
1655
|
* @type {boolean}
|
|
@@ -1746,6 +1752,12 @@ export interface CurrentUser {
|
|
|
1746
1752
|
* @memberof CurrentUser
|
|
1747
1753
|
*/
|
|
1748
1754
|
'profilePicOverride': string;
|
|
1755
|
+
/**
|
|
1756
|
+
*
|
|
1757
|
+
* @type {string}
|
|
1758
|
+
* @memberof CurrentUser
|
|
1759
|
+
*/
|
|
1760
|
+
'profilePicOverrideThumbnail': string;
|
|
1749
1761
|
/**
|
|
1750
1762
|
*
|
|
1751
1763
|
* @type {string}
|
|
@@ -2893,7 +2905,7 @@ export interface GroupLimitedMember {
|
|
|
2893
2905
|
* @type {string}
|
|
2894
2906
|
* @memberof GroupLimitedMember
|
|
2895
2907
|
*/
|
|
2896
|
-
'joinedAt'?: string;
|
|
2908
|
+
'joinedAt'?: string | null;
|
|
2897
2909
|
/**
|
|
2898
2910
|
*
|
|
2899
2911
|
* @type {GroupMemberStatus}
|
|
@@ -3106,7 +3118,8 @@ export const GroupMemberStatus = {
|
|
|
3106
3118
|
Member: 'member',
|
|
3107
3119
|
Requested: 'requested',
|
|
3108
3120
|
Invited: 'invited',
|
|
3109
|
-
Banned: 'banned'
|
|
3121
|
+
Banned: 'banned',
|
|
3122
|
+
Userblocked: 'userblocked'
|
|
3110
3123
|
} as const;
|
|
3111
3124
|
|
|
3112
3125
|
export type GroupMemberStatus = typeof GroupMemberStatus[keyof typeof GroupMemberStatus];
|
|
@@ -6196,6 +6209,12 @@ export interface UpdateUserRequest {
|
|
|
6196
6209
|
* @memberof UpdateUserRequest
|
|
6197
6210
|
*/
|
|
6198
6211
|
'pronouns'?: string;
|
|
6212
|
+
/**
|
|
6213
|
+
*
|
|
6214
|
+
* @type {boolean}
|
|
6215
|
+
* @memberof UpdateUserRequest
|
|
6216
|
+
*/
|
|
6217
|
+
'isBoopingEnabled'?: boolean;
|
|
6199
6218
|
/**
|
|
6200
6219
|
* MUST be a valid VRChat /file/ url.
|
|
6201
6220
|
* @type {string}
|
|
@@ -6414,12 +6433,24 @@ export interface User {
|
|
|
6414
6433
|
* @memberof User
|
|
6415
6434
|
*/
|
|
6416
6435
|
'note'?: string;
|
|
6436
|
+
/**
|
|
6437
|
+
*
|
|
6438
|
+
* @type {string}
|
|
6439
|
+
* @memberof User
|
|
6440
|
+
*/
|
|
6441
|
+
'platform': string;
|
|
6417
6442
|
/**
|
|
6418
6443
|
*
|
|
6419
6444
|
* @type {string}
|
|
6420
6445
|
* @memberof User
|
|
6421
6446
|
*/
|
|
6422
6447
|
'profilePicOverride': string;
|
|
6448
|
+
/**
|
|
6449
|
+
*
|
|
6450
|
+
* @type {string}
|
|
6451
|
+
* @memberof User
|
|
6452
|
+
*/
|
|
6453
|
+
'profilePicOverrideThumbnail': string;
|
|
6423
6454
|
/**
|
|
6424
6455
|
*
|
|
6425
6456
|
* @type {string}
|
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.
|
|
6
|
+
* The version of the OpenAPI document: 1.18.0
|
|
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.
|
|
6
|
+
* The version of the OpenAPI document: 1.18.0
|
|
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.
|
|
6
|
+
* The version of the OpenAPI document: 1.18.0
|
|
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/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.
|
|
4
|
+
* The version of the OpenAPI document: 1.18.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1634,6 +1634,12 @@ export interface CurrentUser {
|
|
|
1634
1634
|
* @memberof CurrentUser
|
|
1635
1635
|
*/
|
|
1636
1636
|
'id': string;
|
|
1637
|
+
/**
|
|
1638
|
+
*
|
|
1639
|
+
* @type {boolean}
|
|
1640
|
+
* @memberof CurrentUser
|
|
1641
|
+
*/
|
|
1642
|
+
'isBoopingEnabled'?: boolean;
|
|
1637
1643
|
/**
|
|
1638
1644
|
*
|
|
1639
1645
|
* @type {boolean}
|
|
@@ -1736,6 +1742,12 @@ export interface CurrentUser {
|
|
|
1736
1742
|
* @memberof CurrentUser
|
|
1737
1743
|
*/
|
|
1738
1744
|
'profilePicOverride': string;
|
|
1745
|
+
/**
|
|
1746
|
+
*
|
|
1747
|
+
* @type {string}
|
|
1748
|
+
* @memberof CurrentUser
|
|
1749
|
+
*/
|
|
1750
|
+
'profilePicOverrideThumbnail': string;
|
|
1739
1751
|
/**
|
|
1740
1752
|
*
|
|
1741
1753
|
* @type {string}
|
|
@@ -2848,7 +2860,7 @@ export interface GroupLimitedMember {
|
|
|
2848
2860
|
* @type {string}
|
|
2849
2861
|
* @memberof GroupLimitedMember
|
|
2850
2862
|
*/
|
|
2851
|
-
'joinedAt'?: string;
|
|
2863
|
+
'joinedAt'?: string | null;
|
|
2852
2864
|
/**
|
|
2853
2865
|
*
|
|
2854
2866
|
* @type {GroupMemberStatus}
|
|
@@ -3061,6 +3073,7 @@ export declare const GroupMemberStatus: {
|
|
|
3061
3073
|
readonly Requested: "requested";
|
|
3062
3074
|
readonly Invited: "invited";
|
|
3063
3075
|
readonly Banned: "banned";
|
|
3076
|
+
readonly Userblocked: "userblocked";
|
|
3064
3077
|
};
|
|
3065
3078
|
export type GroupMemberStatus = typeof GroupMemberStatus[keyof typeof GroupMemberStatus];
|
|
3066
3079
|
/**
|
|
@@ -6068,6 +6081,12 @@ export interface UpdateUserRequest {
|
|
|
6068
6081
|
* @memberof UpdateUserRequest
|
|
6069
6082
|
*/
|
|
6070
6083
|
'pronouns'?: string;
|
|
6084
|
+
/**
|
|
6085
|
+
*
|
|
6086
|
+
* @type {boolean}
|
|
6087
|
+
* @memberof UpdateUserRequest
|
|
6088
|
+
*/
|
|
6089
|
+
'isBoopingEnabled'?: boolean;
|
|
6071
6090
|
/**
|
|
6072
6091
|
* MUST be a valid VRChat /file/ url.
|
|
6073
6092
|
* @type {string}
|
|
@@ -6286,12 +6305,24 @@ export interface User {
|
|
|
6286
6305
|
* @memberof User
|
|
6287
6306
|
*/
|
|
6288
6307
|
'note'?: string;
|
|
6308
|
+
/**
|
|
6309
|
+
*
|
|
6310
|
+
* @type {string}
|
|
6311
|
+
* @memberof User
|
|
6312
|
+
*/
|
|
6313
|
+
'platform': string;
|
|
6289
6314
|
/**
|
|
6290
6315
|
*
|
|
6291
6316
|
* @type {string}
|
|
6292
6317
|
* @memberof User
|
|
6293
6318
|
*/
|
|
6294
6319
|
'profilePicOverride': string;
|
|
6320
|
+
/**
|
|
6321
|
+
*
|
|
6322
|
+
* @type {string}
|
|
6323
|
+
* @memberof User
|
|
6324
|
+
*/
|
|
6325
|
+
'profilePicOverrideThumbnail': string;
|
|
6295
6326
|
/**
|
|
6296
6327
|
*
|
|
6297
6328
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.18.0
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -185,7 +185,8 @@ exports.GroupMemberStatus = {
|
|
|
185
185
|
Member: 'member',
|
|
186
186
|
Requested: 'requested',
|
|
187
187
|
Invited: 'invited',
|
|
188
|
-
Banned: 'banned'
|
|
188
|
+
Banned: 'banned',
|
|
189
|
+
Userblocked: 'userblocked'
|
|
189
190
|
};
|
|
190
191
|
/**
|
|
191
192
|
*
|
package/dist/base.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.18.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.18.0
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.18.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.18.0
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.18.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.18.0
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.18.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.18.0
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.18.0
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|