gopadjs 2.19.0 → 3.0.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/RELEASE CHANGED
@@ -1 +1 @@
1
- Mon Oct 6 08:13:40 UTC 2025
1
+ Mon Nov 3 08:15:36 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,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.0.1](https://github.com/gopad/gopad-js/compare/v3.0.0...v3.0.1) (2025-11-10)
4
+
5
+
6
+ ### Bugfixes
7
+
8
+ * **deps:** update dependency axios to v1.13.2 ([#215](https://github.com/gopad/gopad-js/issues/215)) ([23e565e](https://github.com/gopad/gopad-js/commit/23e565ebb73d79735d4188119bcfa80ba942bab7))
9
+
10
+ ## [3.0.0](https://github.com/gopad/gopad-js/compare/v2.19.0...v3.0.0) (2025-11-03)
11
+
12
+
13
+ ### Features
14
+
15
+ * automated openapi client update ([0f5348b](https://github.com/gopad/gopad-js/commit/0f5348b71c3d4c94378d62f281b2b78a57d60775))
16
+ * **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))
17
+ * **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))
18
+ * **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))
19
+
20
+
21
+ ### Bugfixes
22
+
23
+ * **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))
24
+
3
25
  ## [2.19.0](https://github.com/gopad/gopad-js/compare/v2.18.0...v2.19.0) (2025-10-13)
4
26
 
5
27
 
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.1
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.1
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
@@ -6,7 +6,8 @@
6
6
  "devenv"
7
7
  ],
8
8
  "flake-compat": [
9
- "devenv"
9
+ "devenv",
10
+ "flake-compat"
10
11
  ],
11
12
  "git-hooks": [
12
13
  "devenv",
@@ -18,11 +19,11 @@
18
19
  ]
19
20
  },
20
21
  "locked": {
21
- "lastModified": 1752264895,
22
- "narHash": "sha256-1zBPE/PNAkPNUsOWFET4J0cjlvziH8DOekesDmjND+w=",
22
+ "lastModified": 1760971495,
23
+ "narHash": "sha256-IwnNtbNVrlZIHh7h4Wz6VP0Furxg9Hh0ycighvL5cZc=",
23
24
  "owner": "cachix",
24
25
  "repo": "cachix",
25
- "rev": "47053aef762f452e816e44eb9a23fbc3827b241a",
26
+ "rev": "c5bfd933d1033672f51a863c47303fc0e093c2d2",
26
27
  "type": "github"
27
28
  },
28
29
  "original": {
@@ -42,11 +43,11 @@
42
43
  "nixpkgs": "nixpkgs"
43
44
  },
44
45
  "locked": {
45
- "lastModified": 1759708398,
46
- "narHash": "sha256-3p3nZy2xC0iJckGubQyIPKnwmuZ7tDlgIHH0ssJYg+o=",
46
+ "lastModified": 1761922975,
47
+ "narHash": "sha256-j4EB5ku/gDm7h7W7A+k70RYj5nUiW/l9wQtXMJUD2hg=",
47
48
  "owner": "cachix",
48
49
  "repo": "devenv",
49
- "rev": "f6351d5ca43b5d8de07744574b49ebb98750eb9e",
50
+ "rev": "c9f0b47815a4895fadac87812de8a4de27e0ace1",
50
51
  "type": "github"
51
52
  },
52
53
  "original": {
@@ -58,11 +59,11 @@
58
59
  "flake-compat": {
59
60
  "flake": false,
60
61
  "locked": {
61
- "lastModified": 1747046372,
62
- "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=",
62
+ "lastModified": 1761588595,
63
+ "narHash": "sha256-XKUZz9zewJNUj46b4AJdiRZJAvSZ0Dqj2BNfXvFlJC4=",
63
64
  "owner": "edolstra",
64
65
  "repo": "flake-compat",
65
- "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885",
66
+ "rev": "f387cd2afec9419c8ee37694406ca490c3f34ee5",
66
67
  "type": "github"
67
68
  },
68
69
  "original": {
@@ -95,11 +96,11 @@
95
96
  ]
96
97
  },
97
98
  "locked": {
98
- "lastModified": 1756770412,
99
- "narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=",
99
+ "lastModified": 1760948891,
100
+ "narHash": "sha256-TmWcdiUUaWk8J4lpjzu4gCGxWY6/Ok7mOK4fIFfBuU4=",
100
101
  "owner": "hercules-ci",
101
102
  "repo": "flake-parts",
102
- "rev": "4524271976b625a4a605beefd893f270620fd751",
103
+ "rev": "864599284fc7c0ba6357ed89ed5e2cd5040f0c04",
103
104
  "type": "github"
104
105
  },
105
106
  "original": {
@@ -113,11 +114,11 @@
113
114
  "nixpkgs-lib": "nixpkgs-lib"
114
115
  },
115
116
  "locked": {
116
- "lastModified": 1759362264,
117
- "narHash": "sha256-wfG0S7pltlYyZTM+qqlhJ7GMw2fTF4mLKCIVhLii/4M=",
117
+ "lastModified": 1762040540,
118
+ "narHash": "sha256-z5PlZ47j50VNF3R+IMS9LmzI5fYRGY/Z5O5tol1c9I4=",
118
119
  "owner": "hercules-ci",
119
120
  "repo": "flake-parts",
120
- "rev": "758cf7296bee11f1706a574c77d072b8a7baa881",
121
+ "rev": "0010412d62a25d959151790968765a70c436598b",
121
122
  "type": "github"
122
123
  },
123
124
  "original": {
@@ -139,11 +140,11 @@
139
140
  ]
140
141
  },
141
142
  "locked": {
142
- "lastModified": 1758108966,
143
- "narHash": "sha256-ytw7ROXaWZ7OfwHrQ9xvjpUWeGVm86pwnEd1QhzawIo=",
143
+ "lastModified": 1760663237,
144
+ "narHash": "sha256-BflA6U4AM1bzuRMR8QqzPXqh8sWVCNDzOdsxXEguJIc=",
144
145
  "owner": "cachix",
145
146
  "repo": "git-hooks.nix",
146
- "rev": "54df955a695a84cd47d4a43e08e1feaf90b1fd9b",
147
+ "rev": "ca5b894d3e3e151ffc1db040b6ce4dcc75d31c37",
147
148
  "type": "github"
148
149
  },
149
150
  "original": {
@@ -159,11 +160,11 @@
159
160
  "nixpkgs": "nixpkgs_2"
160
161
  },
161
162
  "locked": {
162
- "lastModified": 1759523803,
163
- "narHash": "sha256-PTod9NG+i3XbbnBKMl/e5uHDBYpwIWivQ3gOWSEuIEM=",
163
+ "lastModified": 1760663237,
164
+ "narHash": "sha256-BflA6U4AM1bzuRMR8QqzPXqh8sWVCNDzOdsxXEguJIc=",
164
165
  "owner": "cachix",
165
166
  "repo": "git-hooks.nix",
166
- "rev": "cfc9f7bb163ad8542029d303e599c0f7eee09835",
167
+ "rev": "ca5b894d3e3e151ffc1db040b6ce4dcc75d31c37",
167
168
  "type": "github"
168
169
  },
169
170
  "original": {
@@ -241,27 +242,27 @@
241
242
  ]
242
243
  },
243
244
  "locked": {
244
- "lastModified": 1758763079,
245
- "narHash": "sha256-Bx1A+lShhOWwMuy3uDzZQvYiBKBFcKwy6G6NEohhv6A=",
245
+ "lastModified": 1761648602,
246
+ "narHash": "sha256-H97KSB/luq/aGobKRuHahOvT1r7C03BgB6D5HBZsbN8=",
246
247
  "owner": "cachix",
247
248
  "repo": "nix",
248
- "rev": "6f0140527c2b0346df4afad7497baa08decb929f",
249
+ "rev": "3e5644da6830ef65f0a2f7ec22830c46285bfff6",
249
250
  "type": "github"
250
251
  },
251
252
  "original": {
252
253
  "owner": "cachix",
253
- "ref": "devenv-2.30.5",
254
+ "ref": "devenv-2.30.6",
254
255
  "repo": "nix",
255
256
  "type": "github"
256
257
  }
257
258
  },
258
259
  "nixpkgs": {
259
260
  "locked": {
260
- "lastModified": 1758532697,
261
- "narHash": "sha256-bhop0bR3u7DCw9/PtLCwr7GwEWDlBSxHp+eVQhCW9t4=",
261
+ "lastModified": 1761313199,
262
+ "narHash": "sha256-wCIACXbNtXAlwvQUo1Ed++loFALPjYUA3dpcUJiXO44=",
262
263
  "owner": "cachix",
263
264
  "repo": "devenv-nixpkgs",
264
- "rev": "207a4cb0e1253c7658c6736becc6eb9cace1f25f",
265
+ "rev": "d1c30452ebecfc55185ae6d1c983c09da0c274ff",
265
266
  "type": "github"
266
267
  },
267
268
  "original": {
@@ -273,11 +274,11 @@
273
274
  },
274
275
  "nixpkgs-lib": {
275
276
  "locked": {
276
- "lastModified": 1754788789,
277
- "narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=",
277
+ "lastModified": 1761765539,
278
+ "narHash": "sha256-b0yj6kfvO8ApcSE+QmA6mUfu8IYG6/uU28OFn4PaC8M=",
278
279
  "owner": "nix-community",
279
280
  "repo": "nixpkgs.lib",
280
- "rev": "a73b9c743612e4244d865a2fdee11865283c04e6",
281
+ "rev": "719359f4562934ae99f5443f20aa06c2ffff91fc",
281
282
  "type": "github"
282
283
  },
283
284
  "original": {
@@ -304,11 +305,11 @@
304
305
  },
305
306
  "nixpkgs_3": {
306
307
  "locked": {
307
- "lastModified": 1759381078,
308
- "narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=",
308
+ "lastModified": 1761907660,
309
+ "narHash": "sha256-kJ8lIZsiPOmbkJypG+B5sReDXSD1KGu2VEPNqhRa/ew=",
309
310
  "owner": "NixOS",
310
311
  "repo": "nixpkgs",
311
- "rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee",
312
+ "rev": "2fb006b87f04c4d3bdf08cfdbc7fab9c13d94a15",
312
313
  "type": "github"
313
314
  },
314
315
  "original": {
package/openapi.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  npmName: gopadjs
3
- npmVersion: 2.19.0
3
+ npmVersion: 3.0.1
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.1",
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
  }