vrchat 1.6.3 → 1.6.5
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 +4 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +4 -3
- package/dist/api.js +2 -1
- 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.
|
|
6
|
+
* The version of the OpenAPI document: 1.6.5
|
|
7
7
|
* Contact: me@ruby.js.org
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2820,7 +2820,8 @@ export enum Region {
|
|
|
2820
2820
|
Us = 'us',
|
|
2821
2821
|
Use = 'use',
|
|
2822
2822
|
Eu = 'eu',
|
|
2823
|
-
Jp = 'jp'
|
|
2823
|
+
Jp = 'jp',
|
|
2824
|
+
Unknown = 'unknown'
|
|
2824
2825
|
}
|
|
2825
2826
|
|
|
2826
2827
|
/**
|
|
@@ -3944,7 +3945,7 @@ export interface World {
|
|
|
3944
3945
|
* @type {string}
|
|
3945
3946
|
* @memberof World
|
|
3946
3947
|
*/
|
|
3947
|
-
'previewYoutubeId'?: string;
|
|
3948
|
+
'previewYoutubeId'?: string | null;
|
|
3948
3949
|
/**
|
|
3949
3950
|
*
|
|
3950
3951
|
* @type {number}
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
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.6.
|
|
4
|
+
* The version of the OpenAPI document: 1.6.5
|
|
5
5
|
* Contact: me@ruby.js.org
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2781,7 +2781,8 @@ export declare enum Region {
|
|
|
2781
2781
|
Us = "us",
|
|
2782
2782
|
Use = "use",
|
|
2783
2783
|
Eu = "eu",
|
|
2784
|
-
Jp = "jp"
|
|
2784
|
+
Jp = "jp",
|
|
2785
|
+
Unknown = "unknown"
|
|
2785
2786
|
}
|
|
2786
2787
|
/**
|
|
2787
2788
|
*
|
|
@@ -3894,7 +3895,7 @@ export interface World {
|
|
|
3894
3895
|
* @type {string}
|
|
3895
3896
|
* @memberof World
|
|
3896
3897
|
*/
|
|
3897
|
-
'previewYoutubeId'?: string;
|
|
3898
|
+
'previewYoutubeId'?: string | null;
|
|
3898
3899
|
/**
|
|
3899
3900
|
*
|
|
3900
3901
|
* @type {number}
|
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.6.
|
|
7
|
+
* The version of the OpenAPI document: 1.6.5
|
|
8
8
|
* Contact: me@ruby.js.org
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -269,6 +269,7 @@ var Region;
|
|
|
269
269
|
Region["Use"] = "use";
|
|
270
270
|
Region["Eu"] = "eu";
|
|
271
271
|
Region["Jp"] = "jp";
|
|
272
|
+
Region["Unknown"] = "unknown";
|
|
272
273
|
})(Region = exports.Region || (exports.Region = {}));
|
|
273
274
|
/**
|
|
274
275
|
*
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/index.ts
CHANGED