@evergis/api 3.0.39 → 3.0.43
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/dist/__generated__/AccountPreviewService.d.ts +1 -1
- package/dist/__generated__/AccountService.d.ts +14 -3
- package/dist/__generated__/AutosharedListService.d.ts +1 -1
- package/dist/__generated__/ClientSettingsService.d.ts +1 -1
- package/dist/__generated__/ExternalProvidersService.d.ts +5 -5
- package/dist/__generated__/FavoritesService.d.ts +1 -1
- package/dist/__generated__/FeedbackService.d.ts +1 -1
- package/dist/__generated__/GeneralService.d.ts +1 -1
- package/dist/__generated__/GeocodeService.d.ts +1 -1
- package/dist/__generated__/ImportService.d.ts +1 -1
- package/dist/__generated__/LayersService.d.ts +1 -1
- package/dist/__generated__/NamespaceService.d.ts +1 -1
- package/dist/__generated__/NotificationService.d.ts +1 -1
- package/dist/__generated__/PrintService.d.ts +1 -1
- package/dist/__generated__/ProjectsService.d.ts +1 -1
- package/dist/__generated__/ResourceCatalogService.d.ts +1 -1
- package/dist/__generated__/SchedulerService.d.ts +1 -1
- package/dist/__generated__/ScriptsService.d.ts +1 -1
- package/dist/__generated__/SecurityService.d.ts +3 -3
- package/dist/__generated__/StaticContentService.d.ts +1 -1
- package/dist/__generated__/StyleService.d.ts +1 -1
- package/dist/__generated__/TablesService.d.ts +1 -1
- package/dist/__generated__/ToolsService.d.ts +1 -1
- package/dist/__generated__/data-contracts.d.ts +80 -6
- package/dist/api.cjs.development.js +55 -27
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +55 -27
- package/dist/api.esm.js.map +1 -1
- package/dist/services/External.d.ts +1 -1
- package/package.json +2 -2
|
@@ -2,7 +2,7 @@ import { FileUploadResponse, UploadPreviewPayload } from './data-contracts';
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class AccountPreviewService extends Service {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetRolesParams, GetUsersParams, IsEmailExistsParams, IsUsernameExistsParams,
|
|
1
|
+
import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetExtendedUsersParams, GetRolesParams, GetUsersParams, IsEmailExistsParams, IsUsernameExistsParams, ListResponseExtendedUserInfoDc, ListResponseRoleInfoDc, ListResponseUserInfoDc, LoginDc, RegisterUserDc, ResetPasswordCallbackPayload, ResetPasswordParams, SetEmailPayload, SetUserPasswordPayload, UpdateRoleDc, UpdateUserDc, UsedProjectDc, UserInfoDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class AccountService extends Service {
|
|
@@ -17,6 +17,17 @@ export declare class AccountService extends Service {
|
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
19
|
getUsers(query: GetUsersParams): Promise<ListResponseUserInfoDc>;
|
|
20
|
+
/**
|
|
21
|
+
* No description
|
|
22
|
+
*
|
|
23
|
+
* @tags Account
|
|
24
|
+
* @name GetExtendedUsers
|
|
25
|
+
* @operationId AccountController_GetExtendedUsers
|
|
26
|
+
* @summary Returns the list of extended users informations that correspond to the given conditions.
|
|
27
|
+
* @request GET:/account/user/extendedlist
|
|
28
|
+
* @response `200` Success
|
|
29
|
+
*/
|
|
30
|
+
getExtendedUsers(query: GetExtendedUsersParams): Promise<ListResponseExtendedUserInfoDc>;
|
|
20
31
|
/**
|
|
21
32
|
* No description
|
|
22
33
|
*
|
|
@@ -280,7 +291,7 @@ export declare class AccountService extends Service {
|
|
|
280
291
|
* @request GET:/account/role/list
|
|
281
292
|
* @response `200` Success
|
|
282
293
|
*/
|
|
283
|
-
getRoles(query: GetRolesParams): Promise<
|
|
294
|
+
getRoles(query: GetRolesParams): Promise<ListResponseRoleInfoDc>;
|
|
284
295
|
/**
|
|
285
296
|
* No description
|
|
286
297
|
*
|
|
@@ -2,7 +2,7 @@ import { AutoshareListDc, IsAutoshareListExistsParams, RemoveAutosharedListParam
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class AutosharedListService extends Service {
|
|
@@ -2,7 +2,7 @@ import { ConfigInfo, CreateConfigDc, CreateValueDc, CreateVariableDc, GetConfig1
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class ClientSettingsService extends Service {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Service } from './Service';
|
|
2
2
|
/**
|
|
3
3
|
* @title Spatial Processing Core API
|
|
4
|
-
* @version v0.
|
|
4
|
+
* @version v0.6.0
|
|
5
5
|
* @baseUrl /sp
|
|
6
6
|
*/
|
|
7
7
|
export declare class ExternalProvidersService extends Service {
|
|
@@ -48,7 +48,7 @@ export declare class ExternalProvidersService extends Service {
|
|
|
48
48
|
* @request GET:/account/external/login/callback
|
|
49
49
|
* @response `200` Success
|
|
50
50
|
*/
|
|
51
|
-
loginCallback(): Promise<
|
|
51
|
+
loginCallback(): Promise<void>;
|
|
52
52
|
/**
|
|
53
53
|
* No description
|
|
54
54
|
*
|
|
@@ -92,7 +92,7 @@ export declare class ExternalProvidersService extends Service {
|
|
|
92
92
|
* @request GET:/account/external/bind/vk
|
|
93
93
|
* @response `200` Success
|
|
94
94
|
*/
|
|
95
|
-
bindVk():
|
|
95
|
+
bindVk(): string;
|
|
96
96
|
/**
|
|
97
97
|
* No description
|
|
98
98
|
*
|
|
@@ -103,7 +103,7 @@ export declare class ExternalProvidersService extends Service {
|
|
|
103
103
|
* @request GET:/account/external/bind/google
|
|
104
104
|
* @response `200` Success
|
|
105
105
|
*/
|
|
106
|
-
bindGoogle():
|
|
106
|
+
bindGoogle(): string;
|
|
107
107
|
/**
|
|
108
108
|
* No description
|
|
109
109
|
*
|
|
@@ -114,7 +114,7 @@ export declare class ExternalProvidersService extends Service {
|
|
|
114
114
|
* @request GET:/account/external/bind/facebook
|
|
115
115
|
* @response `200` Success
|
|
116
116
|
*/
|
|
117
|
-
bindFacebook():
|
|
117
|
+
bindFacebook(): string;
|
|
118
118
|
/**
|
|
119
119
|
* No description
|
|
120
120
|
*
|
|
@@ -2,7 +2,7 @@ import { AddFavoritesPayload, RemoveFavoritesParams, ResourceTypeLink } from './
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class FavoritesService extends Service {
|
|
@@ -2,7 +2,7 @@ import { IncreaseResourcesLimitParams, MoreSymbolsParams } from './data-contract
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class FeedbackService extends Service {
|
|
@@ -2,7 +2,7 @@ import { FunctionInfoDc, ServerInfoDc } from './data-contracts';
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class GeneralService extends Service {
|
|
@@ -2,7 +2,7 @@ import { GeocodeByPointParams, GeocodeParams, GeocodeResultDc, GeocodeSuggestRes
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class GeocodeService extends Service {
|
|
@@ -2,7 +2,7 @@ import { GetCsvDataSchemaParams, GetDataSchemaParams, GetExcelDataSchemaParams,
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class ImportService extends Service {
|
|
@@ -2,7 +2,7 @@ import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc,
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class LayersService extends Service {
|
|
@@ -2,7 +2,7 @@ import { CreateNamespaceParams, GetNamespacesParams, ListResponseNamespaceInfoDc
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class NamespaceService extends Service {
|
|
@@ -2,7 +2,7 @@ import { SubscribeListOperationPayload, SubscribeOperationParams, UnsubscribeLis
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class NotificationService extends Service {
|
|
@@ -2,7 +2,7 @@ import { PrintPayload, PrintToHtmlPayload, UploadTemplateParams, UploadTemplateP
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class PrintService extends Service {
|
|
@@ -2,7 +2,7 @@ import { AccessControlListDc, ExtendedProjectInfoDc, ExtendedProjectLayersInfo,
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class ProjectsService extends Service {
|
|
@@ -2,7 +2,7 @@ import { AddResourcesParams, AddResourcesPayload, CatalogDataDc, CopyResourceRes
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class ResourceCatalogService extends Service {
|
|
@@ -2,7 +2,7 @@ import { AggregateTaskParametersDc, AvailabilityAreaTaskDc, BufferTaskParameters
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class SchedulerService extends Service {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { FindUserByNameParams, GetPolicyListParams, PolicyDc, RemovePolicyParams } from './data-contracts';
|
|
1
|
+
import { FindUserByNameParams, GetPolicyListParams, PolicyDc, RemovePolicyParams, SearchedUserDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class SecurityService extends Service {
|
|
@@ -16,7 +16,7 @@ export declare class SecurityService extends Service {
|
|
|
16
16
|
* @request GET:/security/users
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
findUserByName(query: FindUserByNameParams): Promise<
|
|
19
|
+
findUserByName(query: FindUserByNameParams): Promise<SearchedUserDc[]>;
|
|
20
20
|
/**
|
|
21
21
|
* @description This method requires superuser permission.
|
|
22
22
|
*
|
|
@@ -2,7 +2,7 @@ import { DownloadFileParams, FileUploadResponse, UploadFilePayload } from './dat
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class StaticContentService extends Service {
|
|
@@ -2,7 +2,7 @@ import { StyleCreationResponseDc, StyleDc } from './data-contracts';
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class StyleService extends Service {
|
|
@@ -2,7 +2,7 @@ import { AccessControlListDc, DeleteTableDataParams, DetailedTableInfoDc, FileUp
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class TablesService extends Service {
|
|
@@ -2,7 +2,7 @@ import { AccessControlListDc, CreateToolGroupDc, EditToolGroupDc, EditToolGroups
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version v0.
|
|
5
|
+
* @version v0.6.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class ToolsService extends Service {
|
|
@@ -2301,6 +2301,19 @@ export declare enum LineEndingType {
|
|
|
2301
2301
|
Circle = "circle",
|
|
2302
2302
|
FilledCircle = "filledCircle"
|
|
2303
2303
|
}
|
|
2304
|
+
/**
|
|
2305
|
+
* The response that contains a paged list of items.
|
|
2306
|
+
*/
|
|
2307
|
+
export interface ListResponseExtendedUserInfoDc {
|
|
2308
|
+
/** The items of the response. */
|
|
2309
|
+
items?: ExtendedUserInfoDc[];
|
|
2310
|
+
/** @format int64 */
|
|
2311
|
+
totalCount?: number;
|
|
2312
|
+
/** @format int64 */
|
|
2313
|
+
offset?: number;
|
|
2314
|
+
/** @format int64 */
|
|
2315
|
+
limit?: number;
|
|
2316
|
+
}
|
|
2304
2317
|
/**
|
|
2305
2318
|
* The response that contains a paged list of items.
|
|
2306
2319
|
*/
|
|
@@ -2343,9 +2356,9 @@ export interface ListResponseProjectInfoPubDc {
|
|
|
2343
2356
|
/**
|
|
2344
2357
|
* The response that contains a paged list of items.
|
|
2345
2358
|
*/
|
|
2346
|
-
export interface
|
|
2359
|
+
export interface ListResponseRoleInfoDc {
|
|
2347
2360
|
/** The items of the response. */
|
|
2348
|
-
items?:
|
|
2361
|
+
items?: RoleInfoDc[];
|
|
2349
2362
|
/** @format int64 */
|
|
2350
2363
|
totalCount?: number;
|
|
2351
2364
|
/** @format int64 */
|
|
@@ -2356,9 +2369,9 @@ export interface ListResponseServiceInfoPubDc {
|
|
|
2356
2369
|
/**
|
|
2357
2370
|
* The response that contains a paged list of items.
|
|
2358
2371
|
*/
|
|
2359
|
-
export interface
|
|
2372
|
+
export interface ListResponseServiceInfoPubDc {
|
|
2360
2373
|
/** The items of the response. */
|
|
2361
|
-
items?:
|
|
2374
|
+
items?: ServiceInfoPubDc[];
|
|
2362
2375
|
/** @format int64 */
|
|
2363
2376
|
totalCount?: number;
|
|
2364
2377
|
/** @format int64 */
|
|
@@ -2369,9 +2382,9 @@ export interface ListResponseServiceListItemDc {
|
|
|
2369
2382
|
/**
|
|
2370
2383
|
* The response that contains a paged list of items.
|
|
2371
2384
|
*/
|
|
2372
|
-
export interface
|
|
2385
|
+
export interface ListResponseServiceListItemDc {
|
|
2373
2386
|
/** The items of the response. */
|
|
2374
|
-
items?:
|
|
2387
|
+
items?: ServiceListItemDc[];
|
|
2375
2388
|
/** @format int64 */
|
|
2376
2389
|
totalCount?: number;
|
|
2377
2390
|
/** @format int64 */
|
|
@@ -3267,6 +3280,18 @@ export declare enum ResourceTypeLink {
|
|
|
3267
3280
|
Layer = "layers",
|
|
3268
3281
|
Project = "projects"
|
|
3269
3282
|
}
|
|
3283
|
+
/**
|
|
3284
|
+
* Short role information.
|
|
3285
|
+
*/
|
|
3286
|
+
export interface RoleInfoDc {
|
|
3287
|
+
/** Username. */
|
|
3288
|
+
name?: string;
|
|
3289
|
+
/**
|
|
3290
|
+
* The number of users in the role.
|
|
3291
|
+
* @format int32
|
|
3292
|
+
*/
|
|
3293
|
+
usersInRole?: number;
|
|
3294
|
+
}
|
|
3270
3295
|
/**
|
|
3271
3296
|
* Roles permission.
|
|
3272
3297
|
*/
|
|
@@ -3314,6 +3339,15 @@ export declare type ScaleBarElementDc = ModelElementDc & {
|
|
|
3314
3339
|
font?: string;
|
|
3315
3340
|
fontSize?: number;
|
|
3316
3341
|
};
|
|
3342
|
+
/**
|
|
3343
|
+
* Suggest user information.
|
|
3344
|
+
*/
|
|
3345
|
+
export interface SearchedUserDc {
|
|
3346
|
+
/** Username. */
|
|
3347
|
+
username?: string;
|
|
3348
|
+
/** Photo. */
|
|
3349
|
+
photo?: string;
|
|
3350
|
+
}
|
|
3317
3351
|
/**
|
|
3318
3352
|
* General information about the server.
|
|
3319
3353
|
*/
|
|
@@ -3377,6 +3411,13 @@ export interface ServiceConfigurationBaseDc {
|
|
|
3377
3411
|
acl?: AccessControlListDc;
|
|
3378
3412
|
/** Base64 encoded image - icon of the resource. */
|
|
3379
3413
|
icon?: string;
|
|
3414
|
+
/**
|
|
3415
|
+
* <br>
|
|
3416
|
+
* If the owner user is set, a configuration will be created for that user.
|
|
3417
|
+
* Administrator permissions are required to perform this operation.
|
|
3418
|
+
*
|
|
3419
|
+
*/
|
|
3420
|
+
owner?: string;
|
|
3380
3421
|
}
|
|
3381
3422
|
/**
|
|
3382
3423
|
* Description of a service in the Spatial Processor.
|
|
@@ -3668,6 +3709,13 @@ export interface SharedProjectConfigurationDc {
|
|
|
3668
3709
|
acl?: AccessControlListDc;
|
|
3669
3710
|
/** Base64 encoded image - icon of the resource. */
|
|
3670
3711
|
icon?: string;
|
|
3712
|
+
/**
|
|
3713
|
+
* <br>
|
|
3714
|
+
* If the owner user is set, a configuration will be created for that user.
|
|
3715
|
+
* Administrator permissions are required to perform this operation.
|
|
3716
|
+
*
|
|
3717
|
+
*/
|
|
3718
|
+
owner?: string;
|
|
3671
3719
|
}
|
|
3672
3720
|
/**
|
|
3673
3721
|
* The {SharedProjectInfoDc} describes shared project info data contract.
|
|
@@ -4974,6 +5022,30 @@ export interface WorkspaceLimitsDc {
|
|
|
4974
5022
|
export interface GetUsersParams {
|
|
4975
5023
|
/** String filter for the user name (uses % and _ wild cards like SQL). */
|
|
4976
5024
|
filter?: string;
|
|
5025
|
+
/** Ordering property name. */
|
|
5026
|
+
orderBy?: string;
|
|
5027
|
+
/**
|
|
5028
|
+
* First index in the list to get.
|
|
5029
|
+
* @format int32
|
|
5030
|
+
*/
|
|
5031
|
+
offset?: number;
|
|
5032
|
+
/**
|
|
5033
|
+
* Max number of entries in the returned list.
|
|
5034
|
+
* @format int32
|
|
5035
|
+
*/
|
|
5036
|
+
limit?: number;
|
|
5037
|
+
/** If given, will retrieve only users that belong to one of the given username. */
|
|
5038
|
+
users?: string[];
|
|
5039
|
+
/** If given, will retrieve only users that belong to one of the given groups. */
|
|
5040
|
+
groups?: string[];
|
|
5041
|
+
/** If given, will retrieve only users that have one of the given roles. */
|
|
5042
|
+
roles?: string[];
|
|
5043
|
+
}
|
|
5044
|
+
export interface GetExtendedUsersParams {
|
|
5045
|
+
/** String filter for the user name (uses % and _ wild cards like SQL). */
|
|
5046
|
+
filter?: string;
|
|
5047
|
+
/** Ordering property name. */
|
|
5048
|
+
orderBy?: string;
|
|
4977
5049
|
/**
|
|
4978
5050
|
* First index in the list to get.
|
|
4979
5051
|
* @format int32
|
|
@@ -5044,6 +5116,8 @@ export interface ResetPasswordCallbackPayload {
|
|
|
5044
5116
|
export interface GetRolesParams {
|
|
5045
5117
|
/** String filter for the role name (uses % and _ wild cards like SQL). */
|
|
5046
5118
|
filter?: string;
|
|
5119
|
+
/** Ordering property name. */
|
|
5120
|
+
orderBy?: string;
|
|
5047
5121
|
/** Include system roles (starts from '__'). */
|
|
5048
5122
|
withSystem?: boolean;
|
|
5049
5123
|
/**
|