gopadjs 1.4.0 → 1.5.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/.codacy.yml +0 -2
- package/.github/RELEASE +1 -1
- package/.github/workflows/flake.yml +1 -1
- package/CHANGELOG.md +19 -0
- package/README.md +2 -2
- package/api/team-api.ts +15 -15
- package/api/user-api.ts +15 -15
- package/flake.lock +13 -13
- package/model/team-user-params.ts +1 -1
- package/model/user-team-params.ts +1 -1
- package/openapi.yml +1 -1
- package/package.json +1 -1
package/.codacy.yml
CHANGED
package/.github/RELEASE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
Mon Jun 10 08:10:40 UTC 2024
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.5.1](https://github.com/gopad/gopad-js/compare/v1.5.0...v1.5.1) (2024-06-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bugfixes
|
|
7
|
+
|
|
8
|
+
* **deps:** update dependency prettier to v3.3.2 ([05704af](https://github.com/gopad/gopad-js/commit/05704af1381e67507e47a19e7f73c5b70164a0cf))
|
|
9
|
+
|
|
10
|
+
## [1.5.0](https://github.com/gopad/gopad-js/compare/v1.4.0...v1.5.0) (2024-06-10)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* automated openapi client update ([c3cb4a3](https://github.com/gopad/gopad-js/commit/c3cb4a3f3d9ee15e121b15bafcbd660c022af0e8))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bugfixes
|
|
19
|
+
|
|
20
|
+
* **deps:** update dependency prettier to v3.3.1 ([0992cda](https://github.com/gopad/gopad-js/commit/0992cdaf863e14d70c2ac5cf267e0d66b3c1b139))
|
|
21
|
+
|
|
3
22
|
## [1.4.0](https://github.com/gopad/gopad-js/compare/v1.3.0...v1.4.0) (2024-06-03)
|
|
4
23
|
|
|
5
24
|
|
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.
|
|
9
|
+
- Package version: 1.5.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@1.
|
|
42
|
+
npm install --save gopadjs@1.5.1
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### Installation with Git
|
package/api/team-api.ts
CHANGED
|
@@ -61,7 +61,7 @@ export const TeamApiAxiosParamCreator = function (
|
|
|
61
61
|
return {
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
|
-
* @summary
|
|
64
|
+
* @summary Attach a user to team
|
|
65
65
|
* @param {string} teamId A team identifier or slug
|
|
66
66
|
* @param {TeamUserParams} teamUserParams The team user data to attach
|
|
67
67
|
* @param {*} [options] Override http request option.
|
|
@@ -268,9 +268,9 @@ export const TeamApiAxiosParamCreator = function (
|
|
|
268
268
|
},
|
|
269
269
|
/**
|
|
270
270
|
*
|
|
271
|
-
* @summary
|
|
271
|
+
* @summary Unlink a user from team
|
|
272
272
|
* @param {string} teamId A team identifier or slug
|
|
273
|
-
* @param {TeamUserParams} teamUserParams The team user data to
|
|
273
|
+
* @param {TeamUserParams} teamUserParams The team user data to unlink
|
|
274
274
|
* @param {*} [options] Override http request option.
|
|
275
275
|
* @throws {RequiredError}
|
|
276
276
|
*/
|
|
@@ -343,7 +343,7 @@ export const TeamApiAxiosParamCreator = function (
|
|
|
343
343
|
},
|
|
344
344
|
/**
|
|
345
345
|
*
|
|
346
|
-
* @summary Fetch all users
|
|
346
|
+
* @summary Fetch all users attached to team
|
|
347
347
|
* @param {string} teamId A team identifier or slug
|
|
348
348
|
* @param {string} [search] Search query
|
|
349
349
|
* @param {ListTeamUsersSortEnum} [sort] Sorting column
|
|
@@ -748,7 +748,7 @@ export const TeamApiFp = function (configuration?: Configuration) {
|
|
|
748
748
|
return {
|
|
749
749
|
/**
|
|
750
750
|
*
|
|
751
|
-
* @summary
|
|
751
|
+
* @summary Attach a user to team
|
|
752
752
|
* @param {string} teamId A team identifier or slug
|
|
753
753
|
* @param {TeamUserParams} teamUserParams The team user data to attach
|
|
754
754
|
* @param {*} [options] Override http request option.
|
|
@@ -840,9 +840,9 @@ export const TeamApiFp = function (configuration?: Configuration) {
|
|
|
840
840
|
},
|
|
841
841
|
/**
|
|
842
842
|
*
|
|
843
|
-
* @summary
|
|
843
|
+
* @summary Unlink a user from team
|
|
844
844
|
* @param {string} teamId A team identifier or slug
|
|
845
|
-
* @param {TeamUserParams} teamUserParams The team user data to
|
|
845
|
+
* @param {TeamUserParams} teamUserParams The team user data to unlink
|
|
846
846
|
* @param {*} [options] Override http request option.
|
|
847
847
|
* @throws {RequiredError}
|
|
848
848
|
*/
|
|
@@ -874,7 +874,7 @@ export const TeamApiFp = function (configuration?: Configuration) {
|
|
|
874
874
|
},
|
|
875
875
|
/**
|
|
876
876
|
*
|
|
877
|
-
* @summary Fetch all users
|
|
877
|
+
* @summary Fetch all users attached to team
|
|
878
878
|
* @param {string} teamId A team identifier or slug
|
|
879
879
|
* @param {string} [search] Search query
|
|
880
880
|
* @param {ListTeamUsersSortEnum} [sort] Sorting column
|
|
@@ -1068,7 +1068,7 @@ export const TeamApiFactory = function (
|
|
|
1068
1068
|
return {
|
|
1069
1069
|
/**
|
|
1070
1070
|
*
|
|
1071
|
-
* @summary
|
|
1071
|
+
* @summary Attach a user to team
|
|
1072
1072
|
* @param {TeamApiAttachTeamToUserRequest} requestParameters Request parameters.
|
|
1073
1073
|
* @param {*} [options] Override http request option.
|
|
1074
1074
|
* @throws {RequiredError}
|
|
@@ -1117,7 +1117,7 @@ export const TeamApiFactory = function (
|
|
|
1117
1117
|
},
|
|
1118
1118
|
/**
|
|
1119
1119
|
*
|
|
1120
|
-
* @summary
|
|
1120
|
+
* @summary Unlink a user from team
|
|
1121
1121
|
* @param {TeamApiDeleteTeamFromUserRequest} requestParameters Request parameters.
|
|
1122
1122
|
* @param {*} [options] Override http request option.
|
|
1123
1123
|
* @throws {RequiredError}
|
|
@@ -1136,7 +1136,7 @@ export const TeamApiFactory = function (
|
|
|
1136
1136
|
},
|
|
1137
1137
|
/**
|
|
1138
1138
|
*
|
|
1139
|
-
* @summary Fetch all users
|
|
1139
|
+
* @summary Fetch all users attached to team
|
|
1140
1140
|
* @param {TeamApiListTeamUsersRequest} requestParameters Request parameters.
|
|
1141
1141
|
* @param {*} [options] Override http request option.
|
|
1142
1142
|
* @throws {RequiredError}
|
|
@@ -1294,7 +1294,7 @@ export interface TeamApiDeleteTeamFromUserRequest {
|
|
|
1294
1294
|
readonly teamId: string;
|
|
1295
1295
|
|
|
1296
1296
|
/**
|
|
1297
|
-
* The team user data to
|
|
1297
|
+
* The team user data to unlink
|
|
1298
1298
|
* @type {TeamUserParams}
|
|
1299
1299
|
* @memberof TeamApiDeleteTeamFromUser
|
|
1300
1300
|
*/
|
|
@@ -1457,7 +1457,7 @@ export interface TeamApiUpdateTeamRequest {
|
|
|
1457
1457
|
export class TeamApi extends BaseAPI {
|
|
1458
1458
|
/**
|
|
1459
1459
|
*
|
|
1460
|
-
* @summary
|
|
1460
|
+
* @summary Attach a user to team
|
|
1461
1461
|
* @param {TeamApiAttachTeamToUserRequest} requestParameters Request parameters.
|
|
1462
1462
|
* @param {*} [options] Override http request option.
|
|
1463
1463
|
* @throws {RequiredError}
|
|
@@ -1512,7 +1512,7 @@ export class TeamApi extends BaseAPI {
|
|
|
1512
1512
|
|
|
1513
1513
|
/**
|
|
1514
1514
|
*
|
|
1515
|
-
* @summary
|
|
1515
|
+
* @summary Unlink a user from team
|
|
1516
1516
|
* @param {TeamApiDeleteTeamFromUserRequest} requestParameters Request parameters.
|
|
1517
1517
|
* @param {*} [options] Override http request option.
|
|
1518
1518
|
* @throws {RequiredError}
|
|
@@ -1533,7 +1533,7 @@ export class TeamApi extends BaseAPI {
|
|
|
1533
1533
|
|
|
1534
1534
|
/**
|
|
1535
1535
|
*
|
|
1536
|
-
* @summary Fetch all users
|
|
1536
|
+
* @summary Fetch all users attached to team
|
|
1537
1537
|
* @param {TeamApiListTeamUsersRequest} requestParameters Request parameters.
|
|
1538
1538
|
* @param {*} [options] Override http request option.
|
|
1539
1539
|
* @throws {RequiredError}
|
package/api/user-api.ts
CHANGED
|
@@ -61,7 +61,7 @@ export const UserApiAxiosParamCreator = function (
|
|
|
61
61
|
return {
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
|
-
* @summary
|
|
64
|
+
* @summary Attach a team to user
|
|
65
65
|
* @param {string} userId A user identifier or slug
|
|
66
66
|
* @param {UserTeamParams} userTeamParams The user team data to attach
|
|
67
67
|
* @param {*} [options] Override http request option.
|
|
@@ -268,9 +268,9 @@ export const UserApiAxiosParamCreator = function (
|
|
|
268
268
|
},
|
|
269
269
|
/**
|
|
270
270
|
*
|
|
271
|
-
* @summary
|
|
271
|
+
* @summary Unlink a team from user
|
|
272
272
|
* @param {string} userId A user identifier or slug
|
|
273
|
-
* @param {UserTeamParams} userTeamParams The user team data to
|
|
273
|
+
* @param {UserTeamParams} userTeamParams The user team data to unlink
|
|
274
274
|
* @param {*} [options] Override http request option.
|
|
275
275
|
* @throws {RequiredError}
|
|
276
276
|
*/
|
|
@@ -343,7 +343,7 @@ export const UserApiAxiosParamCreator = function (
|
|
|
343
343
|
},
|
|
344
344
|
/**
|
|
345
345
|
*
|
|
346
|
-
* @summary Fetch all teams
|
|
346
|
+
* @summary Fetch all teams attached to user
|
|
347
347
|
* @param {string} userId A user identifier or slug
|
|
348
348
|
* @param {string} [search] Search query
|
|
349
349
|
* @param {ListUserTeamsSortEnum} [sort] Sorting column
|
|
@@ -748,7 +748,7 @@ export const UserApiFp = function (configuration?: Configuration) {
|
|
|
748
748
|
return {
|
|
749
749
|
/**
|
|
750
750
|
*
|
|
751
|
-
* @summary
|
|
751
|
+
* @summary Attach a team to user
|
|
752
752
|
* @param {string} userId A user identifier or slug
|
|
753
753
|
* @param {UserTeamParams} userTeamParams The user team data to attach
|
|
754
754
|
* @param {*} [options] Override http request option.
|
|
@@ -840,9 +840,9 @@ export const UserApiFp = function (configuration?: Configuration) {
|
|
|
840
840
|
},
|
|
841
841
|
/**
|
|
842
842
|
*
|
|
843
|
-
* @summary
|
|
843
|
+
* @summary Unlink a team from user
|
|
844
844
|
* @param {string} userId A user identifier or slug
|
|
845
|
-
* @param {UserTeamParams} userTeamParams The user team data to
|
|
845
|
+
* @param {UserTeamParams} userTeamParams The user team data to unlink
|
|
846
846
|
* @param {*} [options] Override http request option.
|
|
847
847
|
* @throws {RequiredError}
|
|
848
848
|
*/
|
|
@@ -874,7 +874,7 @@ export const UserApiFp = function (configuration?: Configuration) {
|
|
|
874
874
|
},
|
|
875
875
|
/**
|
|
876
876
|
*
|
|
877
|
-
* @summary Fetch all teams
|
|
877
|
+
* @summary Fetch all teams attached to user
|
|
878
878
|
* @param {string} userId A user identifier or slug
|
|
879
879
|
* @param {string} [search] Search query
|
|
880
880
|
* @param {ListUserTeamsSortEnum} [sort] Sorting column
|
|
@@ -1068,7 +1068,7 @@ export const UserApiFactory = function (
|
|
|
1068
1068
|
return {
|
|
1069
1069
|
/**
|
|
1070
1070
|
*
|
|
1071
|
-
* @summary
|
|
1071
|
+
* @summary Attach a team to user
|
|
1072
1072
|
* @param {UserApiAttachUserToTeamRequest} requestParameters Request parameters.
|
|
1073
1073
|
* @param {*} [options] Override http request option.
|
|
1074
1074
|
* @throws {RequiredError}
|
|
@@ -1117,7 +1117,7 @@ export const UserApiFactory = function (
|
|
|
1117
1117
|
},
|
|
1118
1118
|
/**
|
|
1119
1119
|
*
|
|
1120
|
-
* @summary
|
|
1120
|
+
* @summary Unlink a team from user
|
|
1121
1121
|
* @param {UserApiDeleteUserFromTeamRequest} requestParameters Request parameters.
|
|
1122
1122
|
* @param {*} [options] Override http request option.
|
|
1123
1123
|
* @throws {RequiredError}
|
|
@@ -1136,7 +1136,7 @@ export const UserApiFactory = function (
|
|
|
1136
1136
|
},
|
|
1137
1137
|
/**
|
|
1138
1138
|
*
|
|
1139
|
-
* @summary Fetch all teams
|
|
1139
|
+
* @summary Fetch all teams attached to user
|
|
1140
1140
|
* @param {UserApiListUserTeamsRequest} requestParameters Request parameters.
|
|
1141
1141
|
* @param {*} [options] Override http request option.
|
|
1142
1142
|
* @throws {RequiredError}
|
|
@@ -1294,7 +1294,7 @@ export interface UserApiDeleteUserFromTeamRequest {
|
|
|
1294
1294
|
readonly userId: string;
|
|
1295
1295
|
|
|
1296
1296
|
/**
|
|
1297
|
-
* The user team data to
|
|
1297
|
+
* The user team data to unlink
|
|
1298
1298
|
* @type {UserTeamParams}
|
|
1299
1299
|
* @memberof UserApiDeleteUserFromTeam
|
|
1300
1300
|
*/
|
|
@@ -1457,7 +1457,7 @@ export interface UserApiUpdateUserRequest {
|
|
|
1457
1457
|
export class UserApi extends BaseAPI {
|
|
1458
1458
|
/**
|
|
1459
1459
|
*
|
|
1460
|
-
* @summary
|
|
1460
|
+
* @summary Attach a team to user
|
|
1461
1461
|
* @param {UserApiAttachUserToTeamRequest} requestParameters Request parameters.
|
|
1462
1462
|
* @param {*} [options] Override http request option.
|
|
1463
1463
|
* @throws {RequiredError}
|
|
@@ -1512,7 +1512,7 @@ export class UserApi extends BaseAPI {
|
|
|
1512
1512
|
|
|
1513
1513
|
/**
|
|
1514
1514
|
*
|
|
1515
|
-
* @summary
|
|
1515
|
+
* @summary Unlink a team from user
|
|
1516
1516
|
* @param {UserApiDeleteUserFromTeamRequest} requestParameters Request parameters.
|
|
1517
1517
|
* @param {*} [options] Override http request option.
|
|
1518
1518
|
* @throws {RequiredError}
|
|
@@ -1533,7 +1533,7 @@ export class UserApi extends BaseAPI {
|
|
|
1533
1533
|
|
|
1534
1534
|
/**
|
|
1535
1535
|
*
|
|
1536
|
-
* @summary Fetch all teams
|
|
1536
|
+
* @summary Fetch all teams attached to user
|
|
1537
1537
|
* @param {UserApiListUserTeamsRequest} requestParameters Request parameters.
|
|
1538
1538
|
* @param {*} [options] Override http request option.
|
|
1539
1539
|
* @throws {RequiredError}
|
package/flake.lock
CHANGED
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"pre-commit-hooks": "pre-commit-hooks"
|
|
40
40
|
},
|
|
41
41
|
"locked": {
|
|
42
|
-
"lastModified":
|
|
43
|
-
"narHash": "sha256-
|
|
42
|
+
"lastModified": 1718001032,
|
|
43
|
+
"narHash": "sha256-kaL1/ruHEEm5+4OCaFfspCyaguUVrbmkad7A3fXaGF0=",
|
|
44
44
|
"owner": "cachix",
|
|
45
45
|
"repo": "devenv",
|
|
46
|
-
"rev": "
|
|
46
|
+
"rev": "50e981f8a08cc06553ac591c658f347f6087d836",
|
|
47
47
|
"type": "github"
|
|
48
48
|
},
|
|
49
49
|
"original": {
|
|
@@ -120,11 +120,11 @@
|
|
|
120
120
|
"nixpkgs-lib": "nixpkgs-lib"
|
|
121
121
|
},
|
|
122
122
|
"locked": {
|
|
123
|
-
"lastModified":
|
|
124
|
-
"narHash": "sha256
|
|
123
|
+
"lastModified": 1717285511,
|
|
124
|
+
"narHash": "sha256-iKzJcpdXih14qYVcZ9QC9XuZYnPc6T8YImb6dX166kw=",
|
|
125
125
|
"owner": "hercules-ci",
|
|
126
126
|
"repo": "flake-parts",
|
|
127
|
-
"rev": "
|
|
127
|
+
"rev": "2a55567fcf15b1b1c7ed712a2c6fadaec7412ea8",
|
|
128
128
|
"type": "github"
|
|
129
129
|
},
|
|
130
130
|
"original": {
|
|
@@ -286,14 +286,14 @@
|
|
|
286
286
|
},
|
|
287
287
|
"nixpkgs-lib": {
|
|
288
288
|
"locked": {
|
|
289
|
-
"lastModified":
|
|
290
|
-
"narHash": "sha256-
|
|
289
|
+
"lastModified": 1717284937,
|
|
290
|
+
"narHash": "sha256-lIbdfCsf8LMFloheeE6N31+BMIeixqyQWbSr2vk79EQ=",
|
|
291
291
|
"type": "tarball",
|
|
292
|
-
"url": "https://github.com/NixOS/nixpkgs/archive/
|
|
292
|
+
"url": "https://github.com/NixOS/nixpkgs/archive/eb9ceca17df2ea50a250b6b27f7bf6ab0186f198.tar.gz"
|
|
293
293
|
},
|
|
294
294
|
"original": {
|
|
295
295
|
"type": "tarball",
|
|
296
|
-
"url": "https://github.com/NixOS/nixpkgs/archive/
|
|
296
|
+
"url": "https://github.com/NixOS/nixpkgs/archive/eb9ceca17df2ea50a250b6b27f7bf6ab0186f198.tar.gz"
|
|
297
297
|
}
|
|
298
298
|
},
|
|
299
299
|
"nixpkgs-regression": {
|
|
@@ -362,11 +362,11 @@
|
|
|
362
362
|
},
|
|
363
363
|
"nixpkgs_3": {
|
|
364
364
|
"locked": {
|
|
365
|
-
"lastModified":
|
|
366
|
-
"narHash": "sha256-
|
|
365
|
+
"lastModified": 1717786204,
|
|
366
|
+
"narHash": "sha256-4q0s6m0GUcN7q+Y2DqD27iLvbcd1G50T2lv08kKxkSI=",
|
|
367
367
|
"owner": "NixOS",
|
|
368
368
|
"repo": "nixpkgs",
|
|
369
|
-
"rev": "
|
|
369
|
+
"rev": "051f920625ab5aabe37c920346e3e69d7d34400e",
|
|
370
370
|
"type": "github"
|
|
371
371
|
},
|
|
372
372
|
"original": {
|
package/openapi.yml
CHANGED