eve-esi-client-ts 1.0.1 → 1.0.3

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.
@@ -19,16 +19,16 @@ jobs:
19
19
  - name: Bump version
20
20
  id: bump
21
21
  run: |
22
- git config --global user.name 'steven-cmy'
23
- git config --global user.email '4248629+steven-cmy@users.noreply.github.com'
22
+ git config --global user.name "github-actions[bot]"
23
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
24
24
  VERSION=$(npm version patch)
25
- echo "version=$VERSION" >> $GITHUB_OUTPUT
25
+ echo "version=$VERSION" >> "$GITHUB_OUTPUT"
26
26
  - name: Generate Client
27
27
  uses: openapi-generators/openapitools-generator-action@v1
28
28
  with:
29
29
  generator: typescript-axios
30
30
  openapi-url: https://esi.evetech.net/latest/swagger.json
31
- command-args: --minimal-update --additional-properties=supportsES6=true,npmName=eve-esi-client-ts,npmVersion=${{ steps.bump.outputs.version }} --git-user-id=${{ github.repository_owner }} --git-repo-id=${{ github.event.repository.name }} --git-host=github.com
31
+ command-args: --minimal-update --additional-properties=supportsES6=true,npmName=eve-esi-client-ts,npmVersion=${{ steps.bump.outputs.version }},licenseName=MIT --git-user-id=${{ github.repository_owner }} --git-repo-id=${{ github.event.repository.name }} --git-host=github.com
32
32
  - name: Process output
33
33
  run: |
34
34
  rsync -a --remove-source-files typescript-axios-client/ .
@@ -52,7 +52,7 @@ jobs:
52
52
  echo "No changes to commit."
53
53
  echo "committed=false" >> $GITHUB_OUTPUT
54
54
  else
55
- git commit -am "Auto generated: v${{ steps.bump.outputs.version }}"
55
+ git commit -am "Auto generated: ${{ steps.bump.outputs.version }}"
56
56
  git push
57
57
  echo "committed=true" >> $GITHUB_OUTPUT
58
58
  fi
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## eve-esi-client-ts@v1.0.1
1
+ ## eve-esi-client-ts@v1.0.3
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install eve-esi-client-ts@v1.0.1 --save
39
+ npm install eve-esi-client-ts@v1.0.3 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eve-esi-client-ts",
3
- "version": "v1.0.1",
3
+ "version": "v1.0.3",
4
4
  "description": "OpenAPI client for eve-esi-client-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -14,7 +14,7 @@
14
14
  "openapi-generator",
15
15
  "eve-esi-client-ts"
16
16
  ],
17
- "license": "Unlicense",
17
+ "license": "MIT",
18
18
  "main": "./dist/index.js",
19
19
  "typings": "./dist/index.d.ts",
20
20
  "module": "./dist/esm/index.js",