vrchat 1.4.0 → 1.5.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/.github/workflows/ci.yaml +2 -0
- package/.openapi-generator/VERSION +1 -1
- package/README.md +1 -1
- package/api.ts +1941 -1601
- package/base.ts +3 -3
- package/common.ts +5 -5
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1788 -1624
- package/dist/api.js +727 -348
- package/dist/base.d.ts +3 -3
- package/dist/base.js +1 -1
- package/dist/common.d.ts +3 -3
- 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/generate.sh +1 -1
- package/index.ts +1 -1
- package/openapitools.json +1 -1
- package/package.json +2 -2
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.5.1
|
|
5
5
|
* Contact: me@ruby.js.org
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* Do not edit the class manually.
|
|
10
10
|
*/
|
|
11
11
|
import { Configuration } from "./configuration";
|
|
12
|
-
import { AxiosInstance } from 'axios';
|
|
12
|
+
import { AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
export declare const BASE_PATH: string;
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
@@ -28,7 +28,7 @@ export declare const COLLECTION_FORMATS: {
|
|
|
28
28
|
*/
|
|
29
29
|
export interface RequestArgs {
|
|
30
30
|
url: string;
|
|
31
|
-
options:
|
|
31
|
+
options: AxiosRequestConfig;
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
34
|
*
|
package/dist/base.js
CHANGED
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.5.1
|
|
5
5
|
* Contact: me@ruby.js.org
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
import { Configuration } from "./configuration";
|
|
12
12
|
import { RequestArgs } from "./base";
|
|
13
|
-
import { AxiosInstance } from 'axios';
|
|
13
|
+
import { AxiosInstance, AxiosResponse } from 'axios';
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
16
16
|
* @export
|
|
@@ -61,4 +61,4 @@ export declare const toPathString: (url: URL) => string;
|
|
|
61
61
|
*
|
|
62
62
|
* @export
|
|
63
63
|
*/
|
|
64
|
-
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => (axios?: AxiosInstance, basePath?: string) => Promise<
|
|
64
|
+
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
|
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/generate.sh
CHANGED
|
@@ -10,7 +10,7 @@ rm *.ts -rf
|
|
|
10
10
|
--git-user-id=vrchatapi \
|
|
11
11
|
--git-repo-id=vrchatapi-javascript \
|
|
12
12
|
-o . \
|
|
13
|
-
-i https://
|
|
13
|
+
-i https://raw.githubusercontent.com/vrchatapi/specification/gh-pages/openapi.yaml \
|
|
14
14
|
--http-user-agent="vrchatapi-javascript"
|
|
15
15
|
|
|
16
16
|
# Modify package.json
|
package/index.ts
CHANGED
package/openapitools.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vrchat",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "🟡🔵 VRChat API Library for JavaScript and TypeScript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"tough-cookie": "^4.0.0",
|
|
22
22
|
"axios-cookiejar-support": "^1.0.1",
|
|
23
23
|
"@types/tough-cookie": "^4.0.1",
|
|
24
|
-
"axios": "^0.21.
|
|
24
|
+
"axios": "^0.21.4"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^12.11.5",
|