gopadjs 2.11.0 → 2.13.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 Jun 16 08:15:00 UTC 2025
1
+ Mon Jun 30 08:15:21 UTC 2025
@@ -17,11 +17,11 @@ docs/DeleteGroupFromUserRequest.md
17
17
  docs/DeleteUserFromGroupRequest.md
18
18
  docs/Group.md
19
19
  docs/GroupApi.md
20
- docs/ListGroupUsers200Response.md
21
- docs/ListGroups200Response.md
22
- docs/ListProviders200Response.md
23
- docs/ListUserGroups200Response.md
24
- docs/ListUsers200Response.md
20
+ docs/InlineObject.md
21
+ docs/InlineObject1.md
22
+ docs/InlineObject2.md
23
+ docs/InlineObject3.md
24
+ docs/InlineObject4.md
25
25
  docs/LoginAuthRequest.md
26
26
  docs/Notification.md
27
27
  docs/PermitGroupUserRequest.md
@@ -46,11 +46,11 @@ model/delete-group-from-user-request.ts
46
46
  model/delete-user-from-group-request.ts
47
47
  model/group.ts
48
48
  model/index.ts
49
- model/list-group-users200-response.ts
50
- model/list-groups200-response.ts
51
- model/list-providers200-response.ts
52
- model/list-user-groups200-response.ts
53
- model/list-users200-response.ts
49
+ model/inline-object.ts
50
+ model/inline-object1.ts
51
+ model/inline-object2.ts
52
+ model/inline-object3.ts
53
+ model/inline-object4.ts
54
54
  model/login-auth-request.ts
55
55
  model/notification.ts
56
56
  model/permit-group-user-request.ts
@@ -1 +1 @@
1
- 7.13.0
1
+ 7.14.0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.13.0](https://github.com/gopad/gopad-js/compare/v2.12.0...v2.13.0) (2025-07-07)
4
+
5
+
6
+ ### Features
7
+
8
+ * **deps:** update dependency @types/node to 12.11.5 - 22.16 ([#190](https://github.com/gopad/gopad-js/issues/190)) ([28f3ccd](https://github.com/gopad/gopad-js/commit/28f3ccd0647f3fe3e5469612466e79a40e61dc07))
9
+
10
+ ## [2.12.0](https://github.com/gopad/gopad-js/compare/v2.11.0...v2.12.0) (2025-06-30)
11
+
12
+
13
+ ### Features
14
+
15
+ * automated openapi client update ([e46df0d](https://github.com/gopad/gopad-js/commit/e46df0dcdbc55756bc957a71a28171b29b77f275))
16
+
17
+
18
+ ### Bugfixes
19
+
20
+ * **deps:** update dependency prettier to v3.6.1 ([#187](https://github.com/gopad/gopad-js/issues/187)) ([7e23c06](https://github.com/gopad/gopad-js/commit/7e23c06c80c1eaf417c0409be3f4d7c1fa3d01cd))
21
+ * **deps:** update dependency prettier to v3.6.2 ([#189](https://github.com/gopad/gopad-js/issues/189)) ([c3320b6](https://github.com/gopad/gopad-js/commit/c3320b656729a90834325c857b3c81b6be7c0e28))
22
+
3
23
  ## [2.11.0](https://github.com/gopad/gopad-js/compare/v2.10.0...v2.11.0) (2025-06-23)
4
24
 
5
25
 
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.11.0
9
+ - Package version: 2.13.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.11.0
42
+ npm install --save gopadjs@2.13.0
43
43
  ```
44
44
 
45
45
  ### Installation with Git
package/api/auth-api.ts CHANGED
@@ -46,7 +46,7 @@ import type { AuthToken } from "../model";
46
46
  // @ts-ignore
47
47
  import type { AuthVerify } from "../model";
48
48
  // @ts-ignore
49
- import type { ListProviders200Response } from "../model";
49
+ import type { InlineObject } from "../model";
50
50
  // @ts-ignore
51
51
  import type { LoginAuthRequest } from "../model";
52
52
  // @ts-ignore
@@ -472,10 +472,7 @@ export const AuthApiFp = function (configuration?: Configuration) {
472
472
  async listProviders(
473
473
  options?: RawAxiosRequestConfig,
474
474
  ): Promise<
475
- (
476
- axios?: AxiosInstance,
477
- basePath?: string,
478
- ) => AxiosPromise<ListProviders200Response>
475
+ (axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>
479
476
  > {
480
477
  const localVarAxiosArgs =
481
478
  await localVarAxiosParamCreator.listProviders(options);
@@ -672,9 +669,7 @@ export const AuthApiFactory = function (
672
669
  * @param {*} [options] Override http request option.
673
670
  * @throws {RequiredError}
674
671
  */
675
- listProviders(
676
- options?: RawAxiosRequestConfig,
677
- ): AxiosPromise<ListProviders200Response> {
672
+ listProviders(options?: RawAxiosRequestConfig): AxiosPromise<InlineObject> {
678
673
  return localVarFp
679
674
  .listProviders(options)
680
675
  .then((request) => request(axios, basePath));
package/api/group-api.ts CHANGED
@@ -48,9 +48,9 @@ import type { DeleteGroupFromUserRequest } from "../model";
48
48
  // @ts-ignore
49
49
  import type { Group } from "../model";
50
50
  // @ts-ignore
51
- import type { ListGroupUsers200Response } from "../model";
51
+ import type { InlineObject1 } from "../model";
52
52
  // @ts-ignore
53
- import type { ListGroups200Response } from "../model";
53
+ import type { InlineObject2 } from "../model";
54
54
  // @ts-ignore
55
55
  import type { Notification } from "../model";
56
56
  // @ts-ignore
@@ -892,10 +892,7 @@ export const GroupApiFp = function (configuration?: Configuration) {
892
892
  offset?: number,
893
893
  options?: RawAxiosRequestConfig,
894
894
  ): Promise<
895
- (
896
- axios?: AxiosInstance,
897
- basePath?: string,
898
- ) => AxiosPromise<ListGroupUsers200Response>
895
+ (axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject2>
899
896
  > {
900
897
  const localVarAxiosArgs = await localVarAxiosParamCreator.listGroupUsers(
901
898
  groupId,
@@ -938,10 +935,7 @@ export const GroupApiFp = function (configuration?: Configuration) {
938
935
  offset?: number,
939
936
  options?: RawAxiosRequestConfig,
940
937
  ): Promise<
941
- (
942
- axios?: AxiosInstance,
943
- basePath?: string,
944
- ) => AxiosPromise<ListGroups200Response>
938
+ (axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject1>
945
939
  > {
946
940
  const localVarAxiosArgs = await localVarAxiosParamCreator.listGroups(
947
941
  search,
@@ -1151,7 +1145,7 @@ export const GroupApiFactory = function (
1151
1145
  listGroupUsers(
1152
1146
  requestParameters: GroupApiListGroupUsersRequest,
1153
1147
  options?: RawAxiosRequestConfig,
1154
- ): AxiosPromise<ListGroupUsers200Response> {
1148
+ ): AxiosPromise<InlineObject2> {
1155
1149
  return localVarFp
1156
1150
  .listGroupUsers(
1157
1151
  requestParameters.groupId,
@@ -1174,7 +1168,7 @@ export const GroupApiFactory = function (
1174
1168
  listGroups(
1175
1169
  requestParameters: GroupApiListGroupsRequest = {},
1176
1170
  options?: RawAxiosRequestConfig,
1177
- ): AxiosPromise<ListGroups200Response> {
1171
+ ): AxiosPromise<InlineObject1> {
1178
1172
  return localVarFp
1179
1173
  .listGroups(
1180
1174
  requestParameters.search,
package/api/user-api.ts CHANGED
@@ -46,9 +46,9 @@ import type { CreateUserRequest } from "../model";
46
46
  // @ts-ignore
47
47
  import type { DeleteUserFromGroupRequest } from "../model";
48
48
  // @ts-ignore
49
- import type { ListUserGroups200Response } from "../model";
49
+ import type { InlineObject3 } from "../model";
50
50
  // @ts-ignore
51
- import type { ListUsers200Response } from "../model";
51
+ import type { InlineObject4 } from "../model";
52
52
  // @ts-ignore
53
53
  import type { Notification } from "../model";
54
54
  // @ts-ignore
@@ -884,10 +884,7 @@ export const UserApiFp = function (configuration?: Configuration) {
884
884
  offset?: number,
885
885
  options?: RawAxiosRequestConfig,
886
886
  ): Promise<
887
- (
888
- axios?: AxiosInstance,
889
- basePath?: string,
890
- ) => AxiosPromise<ListUserGroups200Response>
887
+ (axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject4>
891
888
  > {
892
889
  const localVarAxiosArgs = await localVarAxiosParamCreator.listUserGroups(
893
890
  userId,
@@ -930,10 +927,7 @@ export const UserApiFp = function (configuration?: Configuration) {
930
927
  offset?: number,
931
928
  options?: RawAxiosRequestConfig,
932
929
  ): Promise<
933
- (
934
- axios?: AxiosInstance,
935
- basePath?: string,
936
- ) => AxiosPromise<ListUsers200Response>
930
+ (axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject3>
937
931
  > {
938
932
  const localVarAxiosArgs = await localVarAxiosParamCreator.listUsers(
939
933
  search,
@@ -1141,7 +1135,7 @@ export const UserApiFactory = function (
1141
1135
  listUserGroups(
1142
1136
  requestParameters: UserApiListUserGroupsRequest,
1143
1137
  options?: RawAxiosRequestConfig,
1144
- ): AxiosPromise<ListUserGroups200Response> {
1138
+ ): AxiosPromise<InlineObject4> {
1145
1139
  return localVarFp
1146
1140
  .listUserGroups(
1147
1141
  requestParameters.userId,
@@ -1164,7 +1158,7 @@ export const UserApiFactory = function (
1164
1158
  listUsers(
1165
1159
  requestParameters: UserApiListUsersRequest = {},
1166
1160
  options?: RawAxiosRequestConfig,
1167
- ): AxiosPromise<ListUsers200Response> {
1161
+ ): AxiosPromise<InlineObject3> {
1168
1162
  return localVarFp
1169
1163
  .listUsers(
1170
1164
  requestParameters.search,
package/docs/AuthApi.md CHANGED
@@ -72,7 +72,7 @@ No authorization required
72
72
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
73
73
 
74
74
  # **listProviders**
75
- > ListProviders200Response listProviders()
75
+ > InlineObject listProviders()
76
76
 
77
77
 
78
78
  ### Example
@@ -95,7 +95,7 @@ This endpoint does not have any parameters.
95
95
 
96
96
  ### Return type
97
97
 
98
- **ListProviders200Response**
98
+ **InlineObject**
99
99
 
100
100
  ### Authorization
101
101
 
package/docs/GroupApi.md CHANGED
@@ -243,7 +243,7 @@ const { status, data } = await apiInstance.deleteGroupFromUser(
243
243
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
244
244
 
245
245
  # **listGroupUsers**
246
- > ListGroupUsers200Response listGroupUsers()
246
+ > InlineObject2 listGroupUsers()
247
247
 
248
248
 
249
249
  ### Example
@@ -288,7 +288,7 @@ const { status, data } = await apiInstance.listGroupUsers(
288
288
 
289
289
  ### Return type
290
290
 
291
- **ListGroupUsers200Response**
291
+ **InlineObject2**
292
292
 
293
293
  ### Authorization
294
294
 
@@ -311,7 +311,7 @@ const { status, data } = await apiInstance.listGroupUsers(
311
311
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
312
312
 
313
313
  # **listGroups**
314
- > ListGroups200Response listGroups()
314
+ > InlineObject1 listGroups()
315
315
 
316
316
 
317
317
  ### Example
@@ -353,7 +353,7 @@ const { status, data } = await apiInstance.listGroups(
353
353
 
354
354
  ### Return type
355
355
 
356
- **ListGroups200Response**
356
+ **InlineObject1**
357
357
 
358
358
  ### Authorization
359
359
 
@@ -0,0 +1,22 @@
1
+ # InlineObject
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **total** | **number** | | [default to undefined]
9
+ **providers** | [**Array&lt;Provider&gt;**](Provider.md) | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { InlineObject } from 'gopadjs';
15
+
16
+ const instance: InlineObject = {
17
+ total,
18
+ providers,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # InlineObject1
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **total** | **number** | | [default to undefined]
9
+ **limit** | **number** | | [default to undefined]
10
+ **offset** | **number** | | [default to undefined]
11
+ **groups** | [**Array&lt;Group&gt;**](Group.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { InlineObject1 } from 'gopadjs';
17
+
18
+ const instance: InlineObject1 = {
19
+ total,
20
+ limit,
21
+ offset,
22
+ groups,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,28 @@
1
+ # InlineObject2
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **total** | **number** | | [default to undefined]
9
+ **limit** | **number** | | [default to undefined]
10
+ **offset** | **number** | | [default to undefined]
11
+ **group** | [**Group**](Group.md) | | [optional] [default to undefined]
12
+ **users** | [**Array&lt;UserGroup&gt;**](UserGroup.md) | | [default to undefined]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { InlineObject2 } from 'gopadjs';
18
+
19
+ const instance: InlineObject2 = {
20
+ total,
21
+ limit,
22
+ offset,
23
+ group,
24
+ users,
25
+ };
26
+ ```
27
+
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # InlineObject3
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **total** | **number** | | [default to undefined]
9
+ **limit** | **number** | | [default to undefined]
10
+ **offset** | **number** | | [default to undefined]
11
+ **users** | [**Array&lt;User&gt;**](User.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { InlineObject3 } from 'gopadjs';
17
+
18
+ const instance: InlineObject3 = {
19
+ total,
20
+ limit,
21
+ offset,
22
+ users,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,28 @@
1
+ # InlineObject4
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **total** | **number** | | [default to undefined]
9
+ **limit** | **number** | | [default to undefined]
10
+ **offset** | **number** | | [default to undefined]
11
+ **user** | [**User**](User.md) | | [optional] [default to undefined]
12
+ **groups** | [**Array&lt;UserGroup&gt;**](UserGroup.md) | | [default to undefined]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { InlineObject4 } from 'gopadjs';
18
+
19
+ const instance: InlineObject4 = {
20
+ total,
21
+ limit,
22
+ offset,
23
+ user,
24
+ groups,
25
+ };
26
+ ```
27
+
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/docs/UserApi.md CHANGED
@@ -243,7 +243,7 @@ const { status, data } = await apiInstance.deleteUserFromGroup(
243
243
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
244
244
 
245
245
  # **listUserGroups**
246
- > ListUserGroups200Response listUserGroups()
246
+ > InlineObject4 listUserGroups()
247
247
 
248
248
 
249
249
  ### Example
@@ -288,7 +288,7 @@ const { status, data } = await apiInstance.listUserGroups(
288
288
 
289
289
  ### Return type
290
290
 
291
- **ListUserGroups200Response**
291
+ **InlineObject4**
292
292
 
293
293
  ### Authorization
294
294
 
@@ -311,7 +311,7 @@ const { status, data } = await apiInstance.listUserGroups(
311
311
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
312
312
 
313
313
  # **listUsers**
314
- > ListUsers200Response listUsers()
314
+ > InlineObject3 listUsers()
315
315
 
316
316
 
317
317
  ### Example
@@ -353,7 +353,7 @@ const { status, data } = await apiInstance.listUsers(
353
353
 
354
354
  ### Return type
355
355
 
356
- **ListUsers200Response**
356
+ **InlineObject3**
357
357
 
358
358
  ### Authorization
359
359
 
package/flake.lock CHANGED
@@ -9,16 +9,20 @@
9
9
  "devenv"
10
10
  ],
11
11
  "git-hooks": [
12
- "devenv"
12
+ "devenv",
13
+ "git-hooks"
13
14
  ],
14
- "nixpkgs": "nixpkgs"
15
+ "nixpkgs": [
16
+ "devenv",
17
+ "nixpkgs"
18
+ ]
15
19
  },
16
20
  "locked": {
17
- "lastModified": 1744206633,
18
- "narHash": "sha256-pb5aYkE8FOoa4n123slgHiOf1UbNSnKe5pEZC+xXD5g=",
21
+ "lastModified": 1748883665,
22
+ "narHash": "sha256-R0W7uAg+BLoHjMRMQ8+oiSbTq8nkGz5RDpQ+ZfxxP3A=",
19
23
  "owner": "cachix",
20
24
  "repo": "cachix",
21
- "rev": "8a60090640b96f9df95d1ab99e5763a586be1404",
25
+ "rev": "f707778d902af4d62d8dd92c269f8e70de09acbe",
22
26
  "type": "github"
23
27
  },
24
28
  "original": {
@@ -34,14 +38,14 @@
34
38
  "flake-compat": "flake-compat",
35
39
  "git-hooks": "git-hooks",
36
40
  "nix": "nix",
37
- "nixpkgs": "nixpkgs_3"
41
+ "nixpkgs": "nixpkgs_2"
38
42
  },
39
43
  "locked": {
40
- "lastModified": 1749934215,
41
- "narHash": "sha256-Swrogzm+bzLVNG6tVyOGf1uuTGkatURhQXxly9FlyWY=",
44
+ "lastModified": 1751047748,
45
+ "narHash": "sha256-KaS77WfbcLkLdqzeWP7GMgU5LltjOyjVxSzRhZbxPCc=",
42
46
  "owner": "cachix",
43
47
  "repo": "devenv",
44
- "rev": "0ad2d684f722b41578b34670428161d996382e64",
48
+ "rev": "0350732a6725a550e4d2d69070774480dce86620",
45
49
  "type": "github"
46
50
  },
47
51
  "original": {
@@ -53,11 +57,11 @@
53
57
  "flake-compat": {
54
58
  "flake": false,
55
59
  "locked": {
56
- "lastModified": 1733328505,
57
- "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
60
+ "lastModified": 1747046372,
61
+ "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=",
58
62
  "owner": "edolstra",
59
63
  "repo": "flake-compat",
60
- "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
64
+ "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885",
61
65
  "type": "github"
62
66
  },
63
67
  "original": {
@@ -91,11 +95,11 @@
91
95
  ]
92
96
  },
93
97
  "locked": {
94
- "lastModified": 1712014858,
95
- "narHash": "sha256-sB4SWl2lX95bExY2gMFG5HIzvva5AVMJd4Igm+GpZNw=",
98
+ "lastModified": 1733312601,
99
+ "narHash": "sha256-4pDvzqnegAfRkPwO3wmwBhVi/Sye1mzps0zHWYnP88c=",
96
100
  "owner": "hercules-ci",
97
101
  "repo": "flake-parts",
98
- "rev": "9126214d0a59633752a136528f5f3b9aa8565b7d",
102
+ "rev": "205b12d8b7cd4802fbcb8e8ef6a0f1408781a4f9",
99
103
  "type": "github"
100
104
  },
101
105
  "original": {
@@ -125,7 +129,8 @@
125
129
  "git-hooks": {
126
130
  "inputs": {
127
131
  "flake-compat": [
128
- "devenv"
132
+ "devenv",
133
+ "flake-compat"
129
134
  ],
130
135
  "gitignore": "gitignore",
131
136
  "nixpkgs": [
@@ -134,11 +139,10 @@
134
139
  ]
135
140
  },
136
141
  "locked": {
137
- "lastModified": 1746537231,
138
- "narHash": "sha256-Wb2xeSyOsCoTCTj7LOoD6cdKLEROyFAArnYoS+noCWo=",
142
+ "lastModified": 1749636823,
139
143
  "owner": "cachix",
140
144
  "repo": "git-hooks.nix",
141
- "rev": "fa466640195d38ec97cf0493d6d6882bc4d14969",
145
+ "rev": "623c56286de5a3193aa38891a6991b28f9bab056",
142
146
  "type": "github"
143
147
  },
144
148
  "original": {
@@ -151,14 +155,14 @@
151
155
  "inputs": {
152
156
  "flake-compat": "flake-compat_2",
153
157
  "gitignore": "gitignore_2",
154
- "nixpkgs": "nixpkgs_4"
158
+ "nixpkgs": "nixpkgs_3"
155
159
  },
156
160
  "locked": {
157
- "lastModified": 1749636823,
158
- "narHash": "sha256-WUaIlOlPLyPgz9be7fqWJA5iG6rHcGRtLERSCfUDne4=",
161
+ "lastModified": 1750779888,
162
+ "narHash": "sha256-wibppH3g/E2lxU43ZQHC5yA/7kIKLGxVEnsnVK1BtRg=",
159
163
  "owner": "cachix",
160
164
  "repo": "git-hooks.nix",
161
- "rev": "623c56286de5a3193aa38891a6991b28f9bab056",
165
+ "rev": "16ec914f6fb6f599ce988427d9d94efddf25fe6d",
162
166
  "type": "github"
163
167
  },
164
168
  "original": {
@@ -177,7 +181,6 @@
177
181
  },
178
182
  "locked": {
179
183
  "lastModified": 1709087332,
180
- "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
181
184
  "owner": "hercules-ci",
182
185
  "repo": "gitignore.nix",
183
186
  "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
@@ -210,62 +213,47 @@
210
213
  "type": "github"
211
214
  }
212
215
  },
213
- "libgit2": {
214
- "flake": false,
215
- "locked": {
216
- "lastModified": 1697646580,
217
- "narHash": "sha256-oX4Z3S9WtJlwvj0uH9HlYcWv+x1hqp8mhXl7HsLu2f0=",
218
- "owner": "libgit2",
219
- "repo": "libgit2",
220
- "rev": "45fd9ed7ae1a9b74b957ef4f337bc3c8b3df01b5",
221
- "type": "github"
222
- },
223
- "original": {
224
- "owner": "libgit2",
225
- "repo": "libgit2",
226
- "type": "github"
227
- }
228
- },
229
216
  "nix": {
230
217
  "inputs": {
231
218
  "flake-compat": [
232
- "devenv"
219
+ "devenv",
220
+ "flake-compat"
233
221
  ],
234
222
  "flake-parts": "flake-parts",
235
- "libgit2": "libgit2",
236
- "nixpkgs": "nixpkgs_2",
223
+ "git-hooks-nix": [
224
+ "devenv",
225
+ "git-hooks"
226
+ ],
227
+ "nixpkgs": "nixpkgs",
237
228
  "nixpkgs-23-11": [
238
229
  "devenv"
239
230
  ],
240
231
  "nixpkgs-regression": [
241
232
  "devenv"
242
- ],
243
- "pre-commit-hooks": [
244
- "devenv"
245
233
  ]
246
234
  },
247
235
  "locked": {
248
- "lastModified": 1745930071,
249
- "narHash": "sha256-bYyjarS3qSNqxfgc89IoVz8cAFDkF9yPE63EJr+h50s=",
250
- "owner": "domenkozar",
236
+ "lastModified": 1750955511,
237
+ "narHash": "sha256-IDB/oh/P63ZTdhgSkey2LZHzeNhCdoKk+4j7AaPe1SE=",
238
+ "owner": "cachix",
251
239
  "repo": "nix",
252
- "rev": "b455edf3505f1bf0172b39a735caef94687d0d9c",
240
+ "rev": "afa41b08df4f67b8d77a8034b037ac28c71c77df",
253
241
  "type": "github"
254
242
  },
255
243
  "original": {
256
- "owner": "domenkozar",
257
- "ref": "devenv-2.24",
244
+ "owner": "cachix",
245
+ "ref": "devenv-2.30",
258
246
  "repo": "nix",
259
247
  "type": "github"
260
248
  }
261
249
  },
262
250
  "nixpkgs": {
263
251
  "locked": {
264
- "lastModified": 1733212471,
265
- "narHash": "sha256-M1+uCoV5igihRfcUKrr1riygbe73/dzNnzPsmaLCmpo=",
252
+ "lastModified": 1747179050,
253
+ "narHash": "sha256-qhFMmDkeJX9KJwr5H32f1r7Prs7XbQWtO0h3V0a0rFY=",
266
254
  "owner": "NixOS",
267
255
  "repo": "nixpkgs",
268
- "rev": "55d15ad12a74eb7d4646254e13638ad0c4128776",
256
+ "rev": "adaa24fbf46737f3f1b5497bf64bae750f82942e",
269
257
  "type": "github"
270
258
  },
271
259
  "original": {
@@ -291,22 +279,6 @@
291
279
  }
292
280
  },
293
281
  "nixpkgs_2": {
294
- "locked": {
295
- "lastModified": 1717432640,
296
- "narHash": "sha256-+f9c4/ZX5MWDOuB1rKoWj+lBNm0z0rs4CK47HBLxy1o=",
297
- "owner": "NixOS",
298
- "repo": "nixpkgs",
299
- "rev": "88269ab3044128b7c2f4c7d68448b2fb50456870",
300
- "type": "github"
301
- },
302
- "original": {
303
- "owner": "NixOS",
304
- "ref": "release-24.05",
305
- "repo": "nixpkgs",
306
- "type": "github"
307
- }
308
- },
309
- "nixpkgs_3": {
310
282
  "locked": {
311
283
  "lastModified": 1746807397,
312
284
  "narHash": "sha256-zU2z0jlkJGWLhdNr/8AJSxqK8XD0IlQgHp3VZcP56Aw=",
@@ -322,7 +294,7 @@
322
294
  "type": "github"
323
295
  }
324
296
  },
325
- "nixpkgs_4": {
297
+ "nixpkgs_3": {
326
298
  "locked": {
327
299
  "lastModified": 1730768919,
328
300
  "narHash": "sha256-8AKquNnnSaJRXZxc5YmF/WfmxiHX6MMZZasRP6RRQkE=",
@@ -338,13 +310,13 @@
338
310
  "type": "github"
339
311
  }
340
312
  },
341
- "nixpkgs_5": {
313
+ "nixpkgs_4": {
342
314
  "locked": {
343
- "lastModified": 1749794982,
344
- "narHash": "sha256-Kh9K4taXbVuaLC0IL+9HcfvxsSUx8dPB5s5weJcc9pc=",
315
+ "lastModified": 1751011381,
316
+ "narHash": "sha256-krGXKxvkBhnrSC/kGBmg5MyupUUT5R6IBCLEzx9jhMM=",
345
317
  "owner": "NixOS",
346
318
  "repo": "nixpkgs",
347
- "rev": "ee930f9755f58096ac6e8ca94a1887e0534e2d81",
319
+ "rev": "30e2e2857ba47844aa71991daa6ed1fc678bcbb7",
348
320
  "type": "github"
349
321
  },
350
322
  "original": {
@@ -359,7 +331,7 @@
359
331
  "devenv": "devenv",
360
332
  "flake-parts": "flake-parts_2",
361
333
  "git-hooks": "git-hooks_2",
362
- "nixpkgs": "nixpkgs_5"
334
+ "nixpkgs": "nixpkgs_4"
363
335
  }
364
336
  }
365
337
  },
package/model/index.ts CHANGED
@@ -5,11 +5,11 @@ export * from "./create-user-request";
5
5
  export * from "./delete-group-from-user-request";
6
6
  export * from "./delete-user-from-group-request";
7
7
  export * from "./group";
8
- export * from "./list-group-users200-response";
9
- export * from "./list-groups200-response";
10
- export * from "./list-providers200-response";
11
- export * from "./list-user-groups200-response";
12
- export * from "./list-users200-response";
8
+ export * from "./inline-object";
9
+ export * from "./inline-object1";
10
+ export * from "./inline-object2";
11
+ export * from "./inline-object3";
12
+ export * from "./inline-object4";
13
13
  export * from "./login-auth-request";
14
14
  export * from "./notification";
15
15
  export * from "./permit-group-user-request";
@@ -19,19 +19,19 @@ import type { Provider } from "./provider";
19
19
  /**
20
20
  *
21
21
  * @export
22
- * @interface ListProviders200Response
22
+ * @interface InlineObject
23
23
  */
24
- export interface ListProviders200Response {
24
+ export interface InlineObject {
25
25
  /**
26
26
  *
27
27
  * @type {number}
28
- * @memberof ListProviders200Response
28
+ * @memberof InlineObject
29
29
  */
30
30
  total: number;
31
31
  /**
32
32
  *
33
33
  * @type {Array<Provider>}
34
- * @memberof ListProviders200Response
34
+ * @memberof InlineObject
35
35
  */
36
36
  providers: Array<Provider>;
37
37
  }
@@ -19,31 +19,31 @@ import type { Group } from "./group";
19
19
  /**
20
20
  *
21
21
  * @export
22
- * @interface ListGroups200Response
22
+ * @interface InlineObject1
23
23
  */
24
- export interface ListGroups200Response {
24
+ export interface InlineObject1 {
25
25
  /**
26
26
  *
27
27
  * @type {number}
28
- * @memberof ListGroups200Response
28
+ * @memberof InlineObject1
29
29
  */
30
30
  total: number;
31
31
  /**
32
32
  *
33
33
  * @type {number}
34
- * @memberof ListGroups200Response
34
+ * @memberof InlineObject1
35
35
  */
36
36
  limit: number;
37
37
  /**
38
38
  *
39
39
  * @type {number}
40
- * @memberof ListGroups200Response
40
+ * @memberof InlineObject1
41
41
  */
42
42
  offset: number;
43
43
  /**
44
44
  *
45
45
  * @type {Array<Group>}
46
- * @memberof ListGroups200Response
46
+ * @memberof InlineObject1
47
47
  */
48
48
  groups: Array<Group>;
49
49
  }
@@ -22,37 +22,37 @@ import type { UserGroup } from "./user-group";
22
22
  /**
23
23
  *
24
24
  * @export
25
- * @interface ListGroupUsers200Response
25
+ * @interface InlineObject2
26
26
  */
27
- export interface ListGroupUsers200Response {
27
+ export interface InlineObject2 {
28
28
  /**
29
29
  *
30
30
  * @type {number}
31
- * @memberof ListGroupUsers200Response
31
+ * @memberof InlineObject2
32
32
  */
33
33
  total: number;
34
34
  /**
35
35
  *
36
36
  * @type {number}
37
- * @memberof ListGroupUsers200Response
37
+ * @memberof InlineObject2
38
38
  */
39
39
  limit: number;
40
40
  /**
41
41
  *
42
42
  * @type {number}
43
- * @memberof ListGroupUsers200Response
43
+ * @memberof InlineObject2
44
44
  */
45
45
  offset: number;
46
46
  /**
47
47
  *
48
48
  * @type {Group}
49
- * @memberof ListGroupUsers200Response
49
+ * @memberof InlineObject2
50
50
  */
51
51
  group?: Group;
52
52
  /**
53
53
  *
54
54
  * @type {Array<UserGroup>}
55
- * @memberof ListGroupUsers200Response
55
+ * @memberof InlineObject2
56
56
  */
57
57
  users: Array<UserGroup>;
58
58
  }
@@ -19,31 +19,31 @@ import type { User } from "./user";
19
19
  /**
20
20
  *
21
21
  * @export
22
- * @interface ListUsers200Response
22
+ * @interface InlineObject3
23
23
  */
24
- export interface ListUsers200Response {
24
+ export interface InlineObject3 {
25
25
  /**
26
26
  *
27
27
  * @type {number}
28
- * @memberof ListUsers200Response
28
+ * @memberof InlineObject3
29
29
  */
30
30
  total: number;
31
31
  /**
32
32
  *
33
33
  * @type {number}
34
- * @memberof ListUsers200Response
34
+ * @memberof InlineObject3
35
35
  */
36
36
  limit: number;
37
37
  /**
38
38
  *
39
39
  * @type {number}
40
- * @memberof ListUsers200Response
40
+ * @memberof InlineObject3
41
41
  */
42
42
  offset: number;
43
43
  /**
44
44
  *
45
45
  * @type {Array<User>}
46
- * @memberof ListUsers200Response
46
+ * @memberof InlineObject3
47
47
  */
48
48
  users: Array<User>;
49
49
  }
@@ -22,37 +22,37 @@ import type { UserGroup } from "./user-group";
22
22
  /**
23
23
  *
24
24
  * @export
25
- * @interface ListUserGroups200Response
25
+ * @interface InlineObject4
26
26
  */
27
- export interface ListUserGroups200Response {
27
+ export interface InlineObject4 {
28
28
  /**
29
29
  *
30
30
  * @type {number}
31
- * @memberof ListUserGroups200Response
31
+ * @memberof InlineObject4
32
32
  */
33
33
  total: number;
34
34
  /**
35
35
  *
36
36
  * @type {number}
37
- * @memberof ListUserGroups200Response
37
+ * @memberof InlineObject4
38
38
  */
39
39
  limit: number;
40
40
  /**
41
41
  *
42
42
  * @type {number}
43
- * @memberof ListUserGroups200Response
43
+ * @memberof InlineObject4
44
44
  */
45
45
  offset: number;
46
46
  /**
47
47
  *
48
48
  * @type {User}
49
- * @memberof ListUserGroups200Response
49
+ * @memberof InlineObject4
50
50
  */
51
51
  user?: User;
52
52
  /**
53
53
  *
54
54
  * @type {Array<UserGroup>}
55
- * @memberof ListUserGroups200Response
55
+ * @memberof InlineObject4
56
56
  */
57
57
  groups: Array<UserGroup>;
58
58
  }
package/openapi.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  npmName: gopadjs
3
- npmVersion: 2.11.0
3
+ npmVersion: 2.13.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.11.0",
3
+ "version": "2.13.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.15",
37
+ "@types/node": "12.11.5 - 22.16",
38
38
  "prettier": "^3.2.5",
39
39
  "typescript": "^4.0 || ^5.0"
40
40
  }