gopadjs 2.19.0 → 3.0.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 Oct 6 08:13:40 UTC 2025
1
+ Mon Oct 27 08:14:53 UTC 2025
@@ -19,9 +19,9 @@ jobs:
19
19
  uses: actions/checkout@v5
20
20
 
21
21
  - name: Setup nodejs
22
- uses: actions/setup-node@v5
22
+ uses: actions/setup-node@v6
23
23
  with:
24
- node-version: 22.x
24
+ node-version: 24.x
25
25
  cache: 'npm'
26
26
  cache-dependency-path: package-lock.json
27
27
 
@@ -32,9 +32,9 @@ jobs:
32
32
  uses: actions/checkout@v5
33
33
 
34
34
  - name: Setup nodejs
35
- uses: actions/setup-node@v5
35
+ uses: actions/setup-node@v6
36
36
  with:
37
- node-version: 22.x
37
+ node-version: 24.x
38
38
  cache: 'npm'
39
39
  cache-dependency-path: package-lock.json
40
40
 
@@ -22,9 +22,9 @@ jobs:
22
22
  token: ${{ secrets.BOT_ACCESS_TOKEN }}
23
23
 
24
24
  - name: Setup nodejs
25
- uses: actions/setup-node@v5
25
+ uses: actions/setup-node@v6
26
26
  with:
27
- node-version: 22.x
27
+ node-version: 24.x
28
28
 
29
29
  - name: Install releaser
30
30
  run: |
@@ -1 +1 @@
1
- 7.16.0
1
+ 7.17.0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.0.0](https://github.com/gopad/gopad-js/compare/v2.19.0...v3.0.0) (2025-11-03)
4
+
5
+
6
+ ### Features
7
+
8
+ * automated openapi client update ([0f5348b](https://github.com/gopad/gopad-js/commit/0f5348b71c3d4c94378d62f281b2b78a57d60775))
9
+ * **deps:** update dependency @types/node to 12.11.5 - 24.10 ([#214](https://github.com/gopad/gopad-js/issues/214)) ([da9a0c3](https://github.com/gopad/gopad-js/commit/da9a0c3f02923a5d9008bdfa16f17044190fd6af))
10
+ * **deps:** update dependency @types/node to v24 ([#211](https://github.com/gopad/gopad-js/issues/211)) ([9c108a0](https://github.com/gopad/gopad-js/commit/9c108a0679bcf236262a41308c10dd361ca88aa3))
11
+ * **deps:** update dependency axios to v1.13.0 ([#209](https://github.com/gopad/gopad-js/issues/209)) ([b29db4b](https://github.com/gopad/gopad-js/commit/b29db4b96f07227e4623abf0bb3095d92bca921f))
12
+
13
+
14
+ ### Bugfixes
15
+
16
+ * **deps:** update dependency axios to v1.13.1 ([#212](https://github.com/gopad/gopad-js/issues/212)) ([22e154b](https://github.com/gopad/gopad-js/commit/22e154b38faca39403d46e5ea459cb0212e634f4))
17
+
3
18
  ## [2.19.0](https://github.com/gopad/gopad-js/compare/v2.18.0...v2.19.0) (2025-10-13)
4
19
 
5
20
 
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: 2.19.0
9
+ - Package version: 3.0.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@2.19.0
42
+ npm install --save gopadjs@3.0.0
43
43
  ```
44
44
 
45
45
  ### Installation with Git
package/configuration.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  /* tslint:disable */
2
- /* eslint-disable */
3
2
  /**
4
3
  * Gopad OpenAPI
5
4
  * API definition for Gopad, Etherpad for markdown with Go
@@ -12,6 +11,18 @@
12
11
  * Do not edit the class manually.
13
12
  */
14
13
 
14
+ interface AWSv4Configuration {
15
+ options?: {
16
+ region?: string;
17
+ service?: string;
18
+ };
19
+ credentials?: {
20
+ accessKeyId?: string;
21
+ secretAccessKey?: string;
22
+ sessionToken?: string;
23
+ };
24
+ }
25
+
15
26
  export interface ConfigurationParameters {
16
27
  apiKey?:
17
28
  | string
@@ -25,6 +36,7 @@ export interface ConfigurationParameters {
25
36
  | Promise<string>
26
37
  | ((name?: string, scopes?: string[]) => string)
27
38
  | ((name?: string, scopes?: string[]) => Promise<string>);
39
+ awsv4?: AWSv4Configuration;
28
40
  basePath?: string;
29
41
  serverIndex?: number;
30
42
  baseOptions?: any;
@@ -59,6 +71,17 @@ export class Configuration {
59
71
  | Promise<string>
60
72
  | ((name?: string, scopes?: string[]) => string)
61
73
  | ((name?: string, scopes?: string[]) => Promise<string>);
74
+ /**
75
+ * parameter for aws4 signature security
76
+ * @param {Object} AWS4Signature - AWS4 Signature security
77
+ * @param {string} options.region - aws region
78
+ * @param {string} options.service - name of the service.
79
+ * @param {string} credentials.accessKeyId - aws access key id
80
+ * @param {string} credentials.secretAccessKey - aws access key
81
+ * @param {string} credentials.sessionToken - aws session token
82
+ * @memberof Configuration
83
+ */
84
+ awsv4?: AWSv4Configuration;
62
85
  /**
63
86
  * override base path
64
87
  */
@@ -85,6 +108,7 @@ export class Configuration {
85
108
  this.username = param.username;
86
109
  this.password = param.password;
87
110
  this.accessToken = param.accessToken;
111
+ this.awsv4 = param.awsv4;
88
112
  this.basePath = param.basePath;
89
113
  this.serverIndex = param.serverIndex;
90
114
  this.baseOptions = {
package/flake.lock CHANGED
@@ -42,11 +42,11 @@
42
42
  "nixpkgs": "nixpkgs"
43
43
  },
44
44
  "locked": {
45
- "lastModified": 1759708398,
46
- "narHash": "sha256-3p3nZy2xC0iJckGubQyIPKnwmuZ7tDlgIHH0ssJYg+o=",
45
+ "lastModified": 1761427990,
46
+ "narHash": "sha256-MnrJFwdkwt0FHvRj6vbVfCBWoAPW9O9+HOldMM1yeR8=",
47
47
  "owner": "cachix",
48
48
  "repo": "devenv",
49
- "rev": "f6351d5ca43b5d8de07744574b49ebb98750eb9e",
49
+ "rev": "7419c04fc798d5d5918413d4cb6c8629f9d4e8a3",
50
50
  "type": "github"
51
51
  },
52
52
  "original": {
@@ -113,11 +113,11 @@
113
113
  "nixpkgs-lib": "nixpkgs-lib"
114
114
  },
115
115
  "locked": {
116
- "lastModified": 1759362264,
117
- "narHash": "sha256-wfG0S7pltlYyZTM+qqlhJ7GMw2fTF4mLKCIVhLii/4M=",
116
+ "lastModified": 1760948891,
117
+ "narHash": "sha256-TmWcdiUUaWk8J4lpjzu4gCGxWY6/Ok7mOK4fIFfBuU4=",
118
118
  "owner": "hercules-ci",
119
119
  "repo": "flake-parts",
120
- "rev": "758cf7296bee11f1706a574c77d072b8a7baa881",
120
+ "rev": "864599284fc7c0ba6357ed89ed5e2cd5040f0c04",
121
121
  "type": "github"
122
122
  },
123
123
  "original": {
@@ -159,11 +159,11 @@
159
159
  "nixpkgs": "nixpkgs_2"
160
160
  },
161
161
  "locked": {
162
- "lastModified": 1759523803,
163
- "narHash": "sha256-PTod9NG+i3XbbnBKMl/e5uHDBYpwIWivQ3gOWSEuIEM=",
162
+ "lastModified": 1760663237,
163
+ "narHash": "sha256-BflA6U4AM1bzuRMR8QqzPXqh8sWVCNDzOdsxXEguJIc=",
164
164
  "owner": "cachix",
165
165
  "repo": "git-hooks.nix",
166
- "rev": "cfc9f7bb163ad8542029d303e599c0f7eee09835",
166
+ "rev": "ca5b894d3e3e151ffc1db040b6ce4dcc75d31c37",
167
167
  "type": "github"
168
168
  },
169
169
  "original": {
@@ -304,11 +304,11 @@
304
304
  },
305
305
  "nixpkgs_3": {
306
306
  "locked": {
307
- "lastModified": 1759381078,
308
- "narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=",
307
+ "lastModified": 1761373498,
308
+ "narHash": "sha256-Q/uhWNvd7V7k1H1ZPMy/vkx3F8C13ZcdrKjO7Jv7v0c=",
309
309
  "owner": "NixOS",
310
310
  "repo": "nixpkgs",
311
- "rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee",
311
+ "rev": "6a08e6bb4e46ff7fcbb53d409b253f6bad8a28ce",
312
312
  "type": "github"
313
313
  },
314
314
  "original": {
package/openapi.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  npmName: gopadjs
3
- npmVersion: 2.19.0
3
+ npmVersion: 3.0.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": "2.19.0",
3
+ "version": "3.0.0",
4
4
  "description": "OpenAPI client for Gopad",
5
5
  "homepage": "https://github.com/gopad/gopad-js#readme",
6
6
  "license": "Apache-2.0",
@@ -34,7 +34,7 @@
34
34
  "axios": "^1.6.1"
35
35
  },
36
36
  "devDependencies": {
37
- "@types/node": "12.11.5 - 22.18",
37
+ "@types/node": "12.11.5 - 24.10",
38
38
  "prettier": "^3.2.5",
39
39
  "typescript": "^4.0 || ^5.0"
40
40
  }