gopadjs 1.1.0 → 1.2.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/.github/RELEASE CHANGED
@@ -1 +1 @@
1
- Mon May 27 08:10:17 UTC 2024
1
+ Tue May 28 13:41:58 UTC 2024
@@ -25,9 +25,6 @@ jobs:
25
25
  with:
26
26
  node-version: 20.x
27
27
 
28
- - name: Install generator
29
- run: npm install @openapitools/openapi-generator-cli -g
30
-
31
28
  - name: Install releaser
32
29
  run: |
33
30
  npm install -g \
package/.releaserc CHANGED
@@ -134,7 +134,7 @@
134
134
  "README.md"
135
135
  ],
136
136
  "from": "Package version: .*",
137
- "to": "Package version:${nextRelease.version}",
137
+ "to": "Package version: ${nextRelease.version}",
138
138
  "results": [
139
139
  {
140
140
  "file": "README.md",
@@ -179,7 +179,8 @@
179
179
  "CHANGELOG.md",
180
180
  "package.json",
181
181
  "openapi.yml",
182
- "README.md"
182
+ "README.md",
183
+ "package-lock.json"
183
184
  ]
184
185
  }
185
186
  ],
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.0](https://github.com/gopad/gopad-js/compare/v1.1.0...v1.2.0) (2024-05-28)
4
+
5
+
6
+ ### Features
7
+
8
+ * automated openapi client update ([1e2091c](https://github.com/gopad/gopad-js/commit/1e2091c6080ecc6fd8fc55a742709836447730a4))
9
+
3
10
  ## [1.1.0](https://github.com/gopad/gopad-js/compare/v1.0.1...v1.1.0) (2024-05-28)
4
11
 
5
12
 
package/README.md CHANGED
@@ -6,7 +6,7 @@ This repository provides a client SDK for Typescript/Javascript. This SDK is
6
6
  automatically generated by the [OpenAPI Generator][generator] project:
7
7
 
8
8
  - API version: 1.0.0-alpha1
9
- - Package version:1.1.0
9
+ - Package version: 1.2.0
10
10
  - Build package: org.openapitools.codegen.languages.TypeScriptAxiosClientCodegen
11
11
 
12
12
  For more information, please visit [https://gopad.eu](https://gopad.eu)
@@ -39,7 +39,7 @@ the following command within your project directory, after that you can import
39
39
  it as other libraries:
40
40
 
41
41
  ```console
42
- npm install --save gopadjs@1.1.0
42
+ npm install --save gopadjs@1.2.0
43
43
  ```
44
44
 
45
45
  ### Installation with Git
@@ -20,7 +20,7 @@ pushd "${ROOT}" >/dev/null
20
20
  echo "> deleting apis and models"
21
21
  rm -rf api model
22
22
 
23
- export TS_POST_PROCESS_FILE=" npx prettier -w"
23
+ export TS_POST_PROCESS_FILE="npx prettier -w"
24
24
 
25
25
  openapi-generator-cli \
26
26
  generate \
package/openapi.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  npmName: gopadjs
3
- npmVersion: 1.1.0
3
+ npmVersion: 1.2.0
4
4
  supportsES6: true
5
5
  useSingleRequestParameter: true
6
6
  withNodeImports: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gopadjs",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "OpenAPI client for Gopad",
5
5
  "homepage": "https://github.com/gopad/gopad-js#readme",
6
6
  "license": "Apache-2.0",