gopadjs 2.11.0 → 2.12.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/.openapi-generator/FILES +10 -10
- package/.openapi-generator/VERSION +1 -1
- package/CHANGELOG.md +13 -0
- package/README.md +2 -2
- package/api/auth-api.ts +3 -8
- package/api/group-api.ts +6 -12
- package/api/user-api.ts +6 -12
- package/docs/AuthApi.md +2 -2
- package/docs/GroupApi.md +4 -4
- package/docs/InlineObject.md +22 -0
- package/docs/InlineObject1.md +26 -0
- package/docs/InlineObject2.md +28 -0
- package/docs/InlineObject3.md +26 -0
- package/docs/InlineObject4.md +28 -0
- package/docs/UserApi.md +4 -4
- package/flake.lock +46 -74
- package/model/index.ts +5 -5
- package/model/{list-providers200-response.ts → inline-object.ts} +4 -4
- package/model/{list-groups200-response.ts → inline-object1.ts} +6 -6
- package/model/{list-group-users200-response.ts → inline-object2.ts} +7 -7
- package/model/{list-users200-response.ts → inline-object3.ts} +6 -6
- package/model/{list-user-groups200-response.ts → inline-object4.ts} +7 -7
- package/openapi.yml +1 -1
- package/package.json +1 -1
package/.github/RELEASE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Mon Jun
|
|
1
|
+
Mon Jun 23 08:15:16 UTC 2025
|
package/.openapi-generator/FILES
CHANGED
|
@@ -17,11 +17,11 @@ docs/DeleteGroupFromUserRequest.md
|
|
|
17
17
|
docs/DeleteUserFromGroupRequest.md
|
|
18
18
|
docs/Group.md
|
|
19
19
|
docs/GroupApi.md
|
|
20
|
-
docs/
|
|
21
|
-
docs/
|
|
22
|
-
docs/
|
|
23
|
-
docs/
|
|
24
|
-
docs/
|
|
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/
|
|
50
|
-
model/
|
|
51
|
-
model/
|
|
52
|
-
model/
|
|
53
|
-
model/
|
|
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.
|
|
1
|
+
7.14.0
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.12.0](https://github.com/gopad/gopad-js/compare/v2.11.0...v2.12.0) (2025-06-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* automated openapi client update ([e46df0d](https://github.com/gopad/gopad-js/commit/e46df0dcdbc55756bc957a71a28171b29b77f275))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bugfixes
|
|
12
|
+
|
|
13
|
+
* **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))
|
|
14
|
+
* **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))
|
|
15
|
+
|
|
3
16
|
## [2.11.0](https://github.com/gopad/gopad-js/compare/v2.10.0...v2.11.0) (2025-06-23)
|
|
4
17
|
|
|
5
18
|
|
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.
|
|
9
|
+
- Package version: 2.12.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.
|
|
42
|
+
npm install --save gopadjs@2.12.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 {
|
|
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 {
|
|
51
|
+
import type { InlineObject1 } from "../model";
|
|
52
52
|
// @ts-ignore
|
|
53
|
-
import type {
|
|
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<
|
|
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<
|
|
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 {
|
|
49
|
+
import type { InlineObject3 } from "../model";
|
|
50
50
|
// @ts-ignore
|
|
51
|
-
import type {
|
|
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<
|
|
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<
|
|
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
|
-
>
|
|
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
|
-
**
|
|
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
|
-
>
|
|
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
|
-
**
|
|
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
|
-
>
|
|
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
|
-
**
|
|
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<Provider>**](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<Group>**](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<UserGroup>**](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<User>**](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<UserGroup>**](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
|
-
>
|
|
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
|
-
**
|
|
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
|
-
>
|
|
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
|
-
**
|
|
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":
|
|
15
|
+
"nixpkgs": [
|
|
16
|
+
"devenv",
|
|
17
|
+
"nixpkgs"
|
|
18
|
+
]
|
|
15
19
|
},
|
|
16
20
|
"locked": {
|
|
17
|
-
"lastModified":
|
|
18
|
-
"narHash": "sha256-
|
|
21
|
+
"lastModified": 1748883665,
|
|
22
|
+
"narHash": "sha256-R0W7uAg+BLoHjMRMQ8+oiSbTq8nkGz5RDpQ+ZfxxP3A=",
|
|
19
23
|
"owner": "cachix",
|
|
20
24
|
"repo": "cachix",
|
|
21
|
-
"rev": "
|
|
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": "
|
|
41
|
+
"nixpkgs": "nixpkgs_2"
|
|
38
42
|
},
|
|
39
43
|
"locked": {
|
|
40
|
-
"lastModified":
|
|
41
|
-
"narHash": "sha256-
|
|
44
|
+
"lastModified": 1750615580,
|
|
45
|
+
"narHash": "sha256-8ucRXBCG5vA1nHCH1agRDBZaiuPKuqb/RsPxQEsHeVk=",
|
|
42
46
|
"owner": "cachix",
|
|
43
47
|
"repo": "devenv",
|
|
44
|
-
"rev": "
|
|
48
|
+
"rev": "e5dfaa34eed24f1ec79e99624666b15f51c4be97",
|
|
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":
|
|
57
|
-
"narHash": "sha256-
|
|
60
|
+
"lastModified": 1747046372,
|
|
61
|
+
"narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=",
|
|
58
62
|
"owner": "edolstra",
|
|
59
63
|
"repo": "flake-compat",
|
|
60
|
-
"rev": "
|
|
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":
|
|
95
|
-
"narHash": "sha256-
|
|
98
|
+
"lastModified": 1733312601,
|
|
99
|
+
"narHash": "sha256-4pDvzqnegAfRkPwO3wmwBhVi/Sye1mzps0zHWYnP88c=",
|
|
96
100
|
"owner": "hercules-ci",
|
|
97
101
|
"repo": "flake-parts",
|
|
98
|
-
"rev": "
|
|
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":
|
|
138
|
-
"narHash": "sha256-Wb2xeSyOsCoTCTj7LOoD6cdKLEROyFAArnYoS+noCWo=",
|
|
142
|
+
"lastModified": 1749636823,
|
|
139
143
|
"owner": "cachix",
|
|
140
144
|
"repo": "git-hooks.nix",
|
|
141
|
-
"rev": "
|
|
145
|
+
"rev": "623c56286de5a3193aa38891a6991b28f9bab056",
|
|
142
146
|
"type": "github"
|
|
143
147
|
},
|
|
144
148
|
"original": {
|
|
@@ -151,7 +155,7 @@
|
|
|
151
155
|
"inputs": {
|
|
152
156
|
"flake-compat": "flake-compat_2",
|
|
153
157
|
"gitignore": "gitignore_2",
|
|
154
|
-
"nixpkgs": "
|
|
158
|
+
"nixpkgs": "nixpkgs_3"
|
|
155
159
|
},
|
|
156
160
|
"locked": {
|
|
157
161
|
"lastModified": 1749636823,
|
|
@@ -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
|
-
"
|
|
236
|
-
|
|
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":
|
|
249
|
-
"narHash": "sha256-
|
|
250
|
-
"owner": "
|
|
236
|
+
"lastModified": 1750117611,
|
|
237
|
+
"narHash": "sha256-LTwASICtyN3AjzlF9l2ZNAIVZqclio3yRcwwZy3QSJA=",
|
|
238
|
+
"owner": "cachix",
|
|
251
239
|
"repo": "nix",
|
|
252
|
-
"rev": "
|
|
240
|
+
"rev": "9e4fc95c388e2223d47da865503dee20d179776a",
|
|
253
241
|
"type": "github"
|
|
254
242
|
},
|
|
255
243
|
"original": {
|
|
256
|
-
"owner": "
|
|
257
|
-
"ref": "devenv-2.
|
|
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":
|
|
265
|
-
"narHash": "sha256-
|
|
252
|
+
"lastModified": 1747179050,
|
|
253
|
+
"narHash": "sha256-qhFMmDkeJX9KJwr5H32f1r7Prs7XbQWtO0h3V0a0rFY=",
|
|
266
254
|
"owner": "NixOS",
|
|
267
255
|
"repo": "nixpkgs",
|
|
268
|
-
"rev": "
|
|
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
|
-
"
|
|
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
|
-
"
|
|
313
|
+
"nixpkgs_4": {
|
|
342
314
|
"locked": {
|
|
343
|
-
"lastModified":
|
|
344
|
-
"narHash": "sha256-
|
|
315
|
+
"lastModified": 1750506804,
|
|
316
|
+
"narHash": "sha256-VLFNc4egNjovYVxDGyBYTrvVCgDYgENp5bVi9fPTDYc=",
|
|
345
317
|
"owner": "NixOS",
|
|
346
318
|
"repo": "nixpkgs",
|
|
347
|
-
"rev": "
|
|
319
|
+
"rev": "4206c4cb56751df534751b058295ea61357bbbaa",
|
|
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": "
|
|
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 "./
|
|
9
|
-
export * from "./
|
|
10
|
-
export * from "./
|
|
11
|
-
export * from "./
|
|
12
|
-
export * from "./
|
|
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
|
|
22
|
+
* @interface InlineObject
|
|
23
23
|
*/
|
|
24
|
-
export interface
|
|
24
|
+
export interface InlineObject {
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* @type {number}
|
|
28
|
-
* @memberof
|
|
28
|
+
* @memberof InlineObject
|
|
29
29
|
*/
|
|
30
30
|
total: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {Array<Provider>}
|
|
34
|
-
* @memberof
|
|
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
|
|
22
|
+
* @interface InlineObject1
|
|
23
23
|
*/
|
|
24
|
-
export interface
|
|
24
|
+
export interface InlineObject1 {
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* @type {number}
|
|
28
|
-
* @memberof
|
|
28
|
+
* @memberof InlineObject1
|
|
29
29
|
*/
|
|
30
30
|
total: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {number}
|
|
34
|
-
* @memberof
|
|
34
|
+
* @memberof InlineObject1
|
|
35
35
|
*/
|
|
36
36
|
limit: number;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {number}
|
|
40
|
-
* @memberof
|
|
40
|
+
* @memberof InlineObject1
|
|
41
41
|
*/
|
|
42
42
|
offset: number;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {Array<Group>}
|
|
46
|
-
* @memberof
|
|
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
|
|
25
|
+
* @interface InlineObject2
|
|
26
26
|
*/
|
|
27
|
-
export interface
|
|
27
|
+
export interface InlineObject2 {
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {number}
|
|
31
|
-
* @memberof
|
|
31
|
+
* @memberof InlineObject2
|
|
32
32
|
*/
|
|
33
33
|
total: number;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {number}
|
|
37
|
-
* @memberof
|
|
37
|
+
* @memberof InlineObject2
|
|
38
38
|
*/
|
|
39
39
|
limit: number;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @type {number}
|
|
43
|
-
* @memberof
|
|
43
|
+
* @memberof InlineObject2
|
|
44
44
|
*/
|
|
45
45
|
offset: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
48
|
* @type {Group}
|
|
49
|
-
* @memberof
|
|
49
|
+
* @memberof InlineObject2
|
|
50
50
|
*/
|
|
51
51
|
group?: Group;
|
|
52
52
|
/**
|
|
53
53
|
*
|
|
54
54
|
* @type {Array<UserGroup>}
|
|
55
|
-
* @memberof
|
|
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
|
|
22
|
+
* @interface InlineObject3
|
|
23
23
|
*/
|
|
24
|
-
export interface
|
|
24
|
+
export interface InlineObject3 {
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* @type {number}
|
|
28
|
-
* @memberof
|
|
28
|
+
* @memberof InlineObject3
|
|
29
29
|
*/
|
|
30
30
|
total: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {number}
|
|
34
|
-
* @memberof
|
|
34
|
+
* @memberof InlineObject3
|
|
35
35
|
*/
|
|
36
36
|
limit: number;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {number}
|
|
40
|
-
* @memberof
|
|
40
|
+
* @memberof InlineObject3
|
|
41
41
|
*/
|
|
42
42
|
offset: number;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {Array<User>}
|
|
46
|
-
* @memberof
|
|
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
|
|
25
|
+
* @interface InlineObject4
|
|
26
26
|
*/
|
|
27
|
-
export interface
|
|
27
|
+
export interface InlineObject4 {
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {number}
|
|
31
|
-
* @memberof
|
|
31
|
+
* @memberof InlineObject4
|
|
32
32
|
*/
|
|
33
33
|
total: number;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {number}
|
|
37
|
-
* @memberof
|
|
37
|
+
* @memberof InlineObject4
|
|
38
38
|
*/
|
|
39
39
|
limit: number;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @type {number}
|
|
43
|
-
* @memberof
|
|
43
|
+
* @memberof InlineObject4
|
|
44
44
|
*/
|
|
45
45
|
offset: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
48
|
* @type {User}
|
|
49
|
-
* @memberof
|
|
49
|
+
* @memberof InlineObject4
|
|
50
50
|
*/
|
|
51
51
|
user?: User;
|
|
52
52
|
/**
|
|
53
53
|
*
|
|
54
54
|
* @type {Array<UserGroup>}
|
|
55
|
-
* @memberof
|
|
55
|
+
* @memberof InlineObject4
|
|
56
56
|
*/
|
|
57
57
|
groups: Array<UserGroup>;
|
|
58
58
|
}
|
package/openapi.yml
CHANGED