vrchat 1.3.0 → 1.3.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/upload.yaml +18 -0
- package/.openapi-generator/FILES +8 -8
- package/.openapi-generator-ignore +28 -28
- package/LICENSE +20 -20
- package/README.md +53 -53
- package/api.ts +60 -20
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +6566 -6532
- package/dist/api.js +7401 -7389
- package/dist/base.d.ts +54 -54
- package/dist/base.js +79 -79
- package/dist/common.d.ts +64 -64
- package/dist/common.js +233 -233
- package/dist/configuration.d.ts +82 -82
- package/dist/configuration.js +43 -43
- package/dist/index.d.ts +12 -12
- package/dist/index.js +26 -26
- package/example.js +21 -21
- package/generate.sh +29 -29
- package/index.ts +1 -1
- package/openapitools.json +7 -7
- package/package.json +4 -4
- package/.github/ci.yaml +0 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vrchat",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "🟡🔵 VRChat API Library for JavaScript and TypeScript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"prepublishOnly": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"tough-cookie": "^4.0.0",
|
|
22
|
-
"axios-cookiejar-support": "^1.0.1",
|
|
23
|
-
"@types/tough-cookie": "^4.0.1",
|
|
21
|
+
"tough-cookie": "^4.0.0",
|
|
22
|
+
"axios-cookiejar-support": "^1.0.1",
|
|
23
|
+
"@types/tough-cookie": "^4.0.1",
|
|
24
24
|
"axios": "^0.21.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
package/.github/ci.yaml
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
on: [push, pull_request]
|
|
2
|
-
|
|
3
|
-
name: Generate VRChat API SDK
|
|
4
|
-
|
|
5
|
-
jobs:
|
|
6
|
-
generate:
|
|
7
|
-
runs-on: ubuntu-latest
|
|
8
|
-
name: Generate OpenAPI Client
|
|
9
|
-
steps:
|
|
10
|
-
- uses: actions/setup-node@v1
|
|
11
|
-
with:
|
|
12
|
-
node-version: 12
|
|
13
|
-
- uses: actions/checkout@v2
|
|
14
|
-
- name: 'Cache node_modules'
|
|
15
|
-
uses: actions/cache@v2
|
|
16
|
-
with:
|
|
17
|
-
path: node_modules
|
|
18
|
-
key: ${{ runner.os }}-node-v12-${{ hashFiles('**/generate.sh') }}
|
|
19
|
-
restore-keys: |
|
|
20
|
-
${{ runner.os }}-node-v12
|
|
21
|
-
- name: Install OpenAPI Generator CLI
|
|
22
|
-
run: npm install @openapitools/openapi-generator-cli
|
|
23
|
-
- name: Generate SDK Client
|
|
24
|
-
run: bash ./generate.sh
|