gopadjs 1.4.0 → 1.5.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/.codacy.yml CHANGED
@@ -1,8 +1,6 @@
1
1
  ---
2
2
  exclude_paths:
3
3
  - .github/**
4
- - changelog/**
5
-
6
4
  - CHANGELOG.md
7
5
 
8
6
  ...
package/.github/RELEASE CHANGED
@@ -1 +1 @@
1
- Sun Jun 2 20:49:28 UTC 2024
1
+ Mon Jun 3 08:10:46 UTC 2024
@@ -36,7 +36,7 @@ jobs:
36
36
 
37
37
  - name: Update flake
38
38
  id: flake
39
- uses: DeterminateSystems/update-flake-lock@v21
39
+ uses: DeterminateSystems/update-flake-lock@v22
40
40
  with:
41
41
  commit-msg: "chore(flake): updated lockfile"
42
42
  pr-title: "chore: automated flake update"
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.0](https://github.com/gopad/gopad-js/compare/v1.4.0...v1.5.0) (2024-06-10)
4
+
5
+
6
+ ### Features
7
+
8
+ * automated openapi client update ([c3cb4a3](https://github.com/gopad/gopad-js/commit/c3cb4a3f3d9ee15e121b15bafcbd660c022af0e8))
9
+
10
+
11
+ ### Bugfixes
12
+
13
+ * **deps:** update dependency prettier to v3.3.1 ([0992cda](https://github.com/gopad/gopad-js/commit/0992cdaf863e14d70c2ac5cf267e0d66b3c1b139))
14
+
3
15
  ## [1.4.0](https://github.com/gopad/gopad-js/compare/v1.3.0...v1.4.0) (2024-06-03)
4
16
 
5
17
 
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.4.0
9
+ - Package version: 1.5.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.4.0
42
+ npm install --save gopadjs@1.5.0
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 Assign a user to team
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 Remove a user from team
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 delete
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 assigned to team
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 Assign a user to team
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 Remove a user from team
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 delete
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 assigned to team
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 Assign a user to team
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 Remove a user from team
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 assigned to team
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 delete
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 Assign a user to team
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 Remove a user from team
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 assigned to team
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 Assign a team to user
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 Remove a team from user
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 delete
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 assigned to user
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 Assign a team to user
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 Remove a team from user
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 delete
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 assigned to user
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 Assign a team to user
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 Remove a team from user
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 assigned to user
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 delete
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 Assign a team to user
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 Remove a team from user
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 assigned to user
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": 1716847473,
43
- "narHash": "sha256-Sn3PpgNAmV9pLr8pefvVAiHzBebq23nFf5QeHqMfVGk=",
42
+ "lastModified": 1717245169,
43
+ "narHash": "sha256-+mW3rTBjGU8p1THJN0lX/Dd/8FbnF+3dB+mJuSaxewE=",
44
44
  "owner": "cachix",
45
45
  "repo": "devenv",
46
- "rev": "60ed3dba92ed027bb886611b53cf9b9d1e7f149e",
46
+ "rev": "c3f9f053c077c6f88a3de5276d9178c62baa3fc3",
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": 1715865404,
124
- "narHash": "sha256-/GJvTdTpuDjNn84j82cU6bXztE0MSkdnTWClUCRub78=",
123
+ "lastModified": 1717285511,
124
+ "narHash": "sha256-iKzJcpdXih14qYVcZ9QC9XuZYnPc6T8YImb6dX166kw=",
125
125
  "owner": "hercules-ci",
126
126
  "repo": "flake-parts",
127
- "rev": "8dc45382d5206bd292f9c2768b8058a8fd8311d9",
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": 1714640452,
290
- "narHash": "sha256-QBx10+k6JWz6u7VsohfSw8g8hjdBZEf8CFzXH1/1Z94=",
289
+ "lastModified": 1717284937,
290
+ "narHash": "sha256-lIbdfCsf8LMFloheeE6N31+BMIeixqyQWbSr2vk79EQ=",
291
291
  "type": "tarball",
292
- "url": "https://github.com/NixOS/nixpkgs/archive/50eb7ecf4cd0a5756d7275c8ba36790e5bd53e33.tar.gz"
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/50eb7ecf4cd0a5756d7275c8ba36790e5bd53e33.tar.gz"
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": 1716509168,
366
- "narHash": "sha256-4zSIhSRRIoEBwjbPm3YiGtbd8HDWzFxJjw5DYSDy1n8=",
365
+ "lastModified": 1717196966,
366
+ "narHash": "sha256-yZKhxVIKd2lsbOqYd5iDoUIwsRZFqE87smE2Vzf6Ck0=",
367
367
  "owner": "NixOS",
368
368
  "repo": "nixpkgs",
369
- "rev": "bfb7a882678e518398ce9a31a881538679f6f092",
369
+ "rev": "57610d2f8f0937f39dbd72251e9614b1561942d8",
370
370
  "type": "github"
371
371
  },
372
372
  "original": {
@@ -13,7 +13,7 @@
13
13
  */
14
14
 
15
15
  /**
16
- * Parameters to attach or remove team user
16
+ * Parameters to attach or unlink team user
17
17
  * @export
18
18
  * @interface TeamUserParams
19
19
  */
@@ -13,7 +13,7 @@
13
13
  */
14
14
 
15
15
  /**
16
- * Parameters to attach or remove user team
16
+ * Parameters to attach or unlink user team
17
17
  * @export
18
18
  * @interface UserTeamParams
19
19
  */
package/openapi.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  npmName: gopadjs
3
- npmVersion: 1.4.0
3
+ npmVersion: 1.5.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.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "OpenAPI client for Gopad",
5
5
  "homepage": "https://github.com/gopad/gopad-js#readme",
6
6
  "license": "Apache-2.0",