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 +1 -1
- package/.github/workflows/general.yml +2 -2
- package/.github/workflows/openapi.yml +2 -2
- package/.github/workflows/release.yml +2 -2
- package/.openapi-generator/VERSION +1 -1
- package/CHANGELOG.md +15 -0
- package/README.md +2 -2
- package/configuration.ts +25 -1
- package/flake.lock +12 -12
- package/openapi.yml +1 -1
- package/package.json +2 -2
package/.github/RELEASE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Mon Oct
|
|
1
|
+
Mon Oct 27 08:14:53 UTC 2025
|
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
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:
|
|
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@
|
|
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":
|
|
46
|
-
"narHash": "sha256-
|
|
45
|
+
"lastModified": 1761427990,
|
|
46
|
+
"narHash": "sha256-MnrJFwdkwt0FHvRj6vbVfCBWoAPW9O9+HOldMM1yeR8=",
|
|
47
47
|
"owner": "cachix",
|
|
48
48
|
"repo": "devenv",
|
|
49
|
-
"rev": "
|
|
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":
|
|
117
|
-
"narHash": "sha256-
|
|
116
|
+
"lastModified": 1760948891,
|
|
117
|
+
"narHash": "sha256-TmWcdiUUaWk8J4lpjzu4gCGxWY6/Ok7mOK4fIFfBuU4=",
|
|
118
118
|
"owner": "hercules-ci",
|
|
119
119
|
"repo": "flake-parts",
|
|
120
|
-
"rev": "
|
|
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":
|
|
163
|
-
"narHash": "sha256-
|
|
162
|
+
"lastModified": 1760663237,
|
|
163
|
+
"narHash": "sha256-BflA6U4AM1bzuRMR8QqzPXqh8sWVCNDzOdsxXEguJIc=",
|
|
164
164
|
"owner": "cachix",
|
|
165
165
|
"repo": "git-hooks.nix",
|
|
166
|
-
"rev": "
|
|
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":
|
|
308
|
-
"narHash": "sha256-
|
|
307
|
+
"lastModified": 1761373498,
|
|
308
|
+
"narHash": "sha256-Q/uhWNvd7V7k1H1ZPMy/vkx3F8C13ZcdrKjO7Jv7v0c=",
|
|
309
309
|
"owner": "NixOS",
|
|
310
310
|
"repo": "nixpkgs",
|
|
311
|
-
"rev": "
|
|
311
|
+
"rev": "6a08e6bb4e46ff7fcbb53d409b253f6bad8a28ce",
|
|
312
312
|
"type": "github"
|
|
313
313
|
},
|
|
314
314
|
"original": {
|
package/openapi.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gopadjs",
|
|
3
|
-
"version": "
|
|
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 -
|
|
37
|
+
"@types/node": "12.11.5 - 24.10",
|
|
38
38
|
"prettier": "^3.2.5",
|
|
39
39
|
"typescript": "^4.0 || ^5.0"
|
|
40
40
|
}
|