@evergis/api 3.0.115 → 3.0.116
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__/AccountService.d.ts +4 -4
- package/dist/__generated__/LayersService.d.ts +3 -3
- package/dist/__generated__/NamespaceService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +3 -3
- package/dist/__generated__/TablesService.d.ts +4 -4
- package/dist/__generated__/VectorTileService.d.ts +20 -0
- package/dist/__generated__/data-contracts.d.ts +290 -125
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Projects.d.ts +1 -1
- package/dist/services/Tables.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetExtendedUsersParams, GetRolesParams, GetUsersParams, IsEmailExistsParams, IsUsernameExistsParams,
|
|
1
|
+
import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetExtendedUsersParams, GetRolesParams, GetUsersParams, IsEmailExistsParams, IsUsernameExistsParams, LoginDc, PagedListExtendedUserInfoDc, PagedListRoleInfoDc, PagedListUserInfoDc, RegisterUserDc, ResetPasswordCallbackPayload, ResetPasswordParams, SetEmailPayload, UpdateRoleDc, UpdateUserDc, UsedProjectDc, UserInfoDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class AccountService extends Service {
|
|
|
16
16
|
* @request GET:/account/user/list
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getUsers(query: GetUsersParams): Promise<
|
|
19
|
+
getUsers(query: GetUsersParams): Promise<PagedListUserInfoDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -27,7 +27,7 @@ export declare class AccountService extends Service {
|
|
|
27
27
|
* @request GET:/account/user/extendedlist
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
getExtendedUsers(query: GetExtendedUsersParams): Promise<
|
|
30
|
+
getExtendedUsers(query: GetExtendedUsersParams): Promise<PagedListExtendedUserInfoDc>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -302,7 +302,7 @@ export declare class AccountService extends Service {
|
|
|
302
302
|
* @request GET:/account/role/list
|
|
303
303
|
* @response `200` Success
|
|
304
304
|
*/
|
|
305
|
-
getRoles(query: GetRolesParams): Promise<
|
|
305
|
+
getRoles(query: GetRolesParams): Promise<PagedListRoleInfoDc>;
|
|
306
306
|
/**
|
|
307
307
|
* No description
|
|
308
308
|
*
|
|
@@ -16,7 +16,7 @@ export declare class LayersService extends Service {
|
|
|
16
16
|
* @request GET:/layers
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getLayersList(query: GetLayersListParams): Promise<import("./data-contracts").
|
|
19
|
+
getLayersList(query: GetLayersListParams): Promise<import("./data-contracts").PagedListServiceListItemDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -258,7 +258,7 @@ export declare class LayersService extends Service {
|
|
|
258
258
|
* @request GET:/layers/{name}/features
|
|
259
259
|
* @response `200` Success
|
|
260
260
|
*/
|
|
261
|
-
getFeatures({ name, ...query }: GetFeaturesParams): Promise<import("./data-contracts").
|
|
261
|
+
getFeatures({ name, ...query }: GetFeaturesParams): Promise<import("./data-contracts").PagedListFeatureDc>;
|
|
262
262
|
/**
|
|
263
263
|
* No description
|
|
264
264
|
*
|
|
@@ -302,7 +302,7 @@ export declare class LayersService extends Service {
|
|
|
302
302
|
* @request GET:/layers/{name}/features/contains
|
|
303
303
|
* @response `200` Success
|
|
304
304
|
*/
|
|
305
|
-
featuresContains({ name, ...query }: FeaturesContainsParams): Promise<import("./data-contracts").
|
|
305
|
+
featuresContains({ name, ...query }: FeaturesContainsParams): Promise<import("./data-contracts").PagedListFeatureDc>;
|
|
306
306
|
/**
|
|
307
307
|
* No description
|
|
308
308
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateNamespaceParams, GetNamespacesParams,
|
|
1
|
+
import { CreateNamespaceParams, GetNamespacesParams, NamespaceInfoDc, PagedListNamespaceInfoDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class NamespaceService extends Service {
|
|
|
16
16
|
* @request GET:/namespaces
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getNamespaces(query: GetNamespacesParams): Promise<
|
|
19
|
+
getNamespaces(query: GetNamespacesParams): Promise<PagedListNamespaceInfoDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams7, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class ProjectsService extends Service {
|
|
|
16
16
|
* @request GET:/projects
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getProjectsList(query: GetProjectsListParams): Promise<
|
|
19
|
+
getProjectsList(query: GetProjectsListParams): Promise<PagedListProjectInfoDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -49,7 +49,7 @@ export declare class ProjectsService extends Service {
|
|
|
49
49
|
* @request DELETE:/projects
|
|
50
50
|
* @response `200` Success
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams7): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams6, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class TablesService extends Service {
|
|
|
16
16
|
* @request GET:/tables
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getTableList(query: GetTableListParams): Promise<
|
|
19
|
+
getTableList(query: GetTableListParams): Promise<PagedListTableInfoDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -49,7 +49,7 @@ export declare class TablesService extends Service {
|
|
|
49
49
|
* @request DELETE:/tables
|
|
50
50
|
* @response `200` Success
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams6): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -104,7 +104,7 @@ export declare class TablesService extends Service {
|
|
|
104
104
|
* @request GET:/tables/{name}/data
|
|
105
105
|
* @response `200` Success
|
|
106
106
|
*/
|
|
107
|
-
getTableData({ name, ...query }: GetTableDataParams): Promise<
|
|
107
|
+
getTableData({ name, ...query }: GetTableDataParams): Promise<PagedListIEnumerable1>;
|
|
108
108
|
/**
|
|
109
109
|
* No description
|
|
110
110
|
*
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { GetVectorTileParams } from './data-contracts';
|
|
2
|
+
import { Service } from './Service';
|
|
3
|
+
/**
|
|
4
|
+
* @title Spatial Processing Core API
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @baseUrl /sp
|
|
7
|
+
*/
|
|
8
|
+
export declare class VectorTileService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags VectorTileService
|
|
13
|
+
* @name GetVectorTile
|
|
14
|
+
* @operationId VectorTileServiceController_GetVectorTile
|
|
15
|
+
* @summary Get vector tile from visible project layers or single layer.
|
|
16
|
+
* @request GET:/vt/{name}/{z}/{x}/{y}.pbf
|
|
17
|
+
* @response `200` Success
|
|
18
|
+
*/
|
|
19
|
+
getVectorTile({ name, z, x, y, ...query }: GetVectorTileParams): Promise<void>;
|
|
20
|
+
}
|
|
@@ -270,6 +270,8 @@ export interface AttributeConfigurationDc {
|
|
|
270
270
|
expression?: string;
|
|
271
271
|
/** Sets attribute format settings. */
|
|
272
272
|
stringFormat?: AttributeFormatDc;
|
|
273
|
+
/** Name of the table. */
|
|
274
|
+
tableName?: string;
|
|
273
275
|
}
|
|
274
276
|
/**
|
|
275
277
|
* Information about an attribute.
|
|
@@ -2430,123 +2432,6 @@ export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc &
|
|
|
2430
2432
|
featuresLimit?: number;
|
|
2431
2433
|
extentOffset?: number;
|
|
2432
2434
|
};
|
|
2433
|
-
/**
|
|
2434
|
-
* The response that contains a paged list of items.
|
|
2435
|
-
*/
|
|
2436
|
-
export interface ListResponseExtendedUserInfoDc {
|
|
2437
|
-
/** The items of the response. */
|
|
2438
|
-
items?: ExtendedUserInfoDc[];
|
|
2439
|
-
/** @format int64 */
|
|
2440
|
-
totalCount?: number;
|
|
2441
|
-
/** @format int64 */
|
|
2442
|
-
offset?: number;
|
|
2443
|
-
/** @format int64 */
|
|
2444
|
-
limit?: number;
|
|
2445
|
-
}
|
|
2446
|
-
/**
|
|
2447
|
-
* The response that contains a paged list of items.
|
|
2448
|
-
*/
|
|
2449
|
-
export interface ListResponseFeatureDc {
|
|
2450
|
-
/** The items of the response. */
|
|
2451
|
-
items?: FeatureDc[];
|
|
2452
|
-
/** @format int64 */
|
|
2453
|
-
totalCount?: number;
|
|
2454
|
-
/** @format int64 */
|
|
2455
|
-
offset?: number;
|
|
2456
|
-
/** @format int64 */
|
|
2457
|
-
limit?: number;
|
|
2458
|
-
}
|
|
2459
|
-
/**
|
|
2460
|
-
* The response that contains a paged list of items.
|
|
2461
|
-
*/
|
|
2462
|
-
export interface ListResponseIEnumerable1 {
|
|
2463
|
-
/** The items of the response. */
|
|
2464
|
-
items?: Record<string, any>[][];
|
|
2465
|
-
/** @format int64 */
|
|
2466
|
-
totalCount?: number;
|
|
2467
|
-
/** @format int64 */
|
|
2468
|
-
offset?: number;
|
|
2469
|
-
/** @format int64 */
|
|
2470
|
-
limit?: number;
|
|
2471
|
-
}
|
|
2472
|
-
/**
|
|
2473
|
-
* The response that contains a paged list of items.
|
|
2474
|
-
*/
|
|
2475
|
-
export interface ListResponseNamespaceInfoDc {
|
|
2476
|
-
/** The items of the response. */
|
|
2477
|
-
items?: NamespaceInfoDc[];
|
|
2478
|
-
/** @format int64 */
|
|
2479
|
-
totalCount?: number;
|
|
2480
|
-
/** @format int64 */
|
|
2481
|
-
offset?: number;
|
|
2482
|
-
/** @format int64 */
|
|
2483
|
-
limit?: number;
|
|
2484
|
-
}
|
|
2485
|
-
/**
|
|
2486
|
-
* The response that contains a paged list of items.
|
|
2487
|
-
*/
|
|
2488
|
-
export interface ListResponseProjectInfoDc {
|
|
2489
|
-
/** The items of the response. */
|
|
2490
|
-
items?: (ProjectInfoDc | ExtendedProjectInfoDc)[];
|
|
2491
|
-
/** @format int64 */
|
|
2492
|
-
totalCount?: number;
|
|
2493
|
-
/** @format int64 */
|
|
2494
|
-
offset?: number;
|
|
2495
|
-
/** @format int64 */
|
|
2496
|
-
limit?: number;
|
|
2497
|
-
}
|
|
2498
|
-
/**
|
|
2499
|
-
* The response that contains a paged list of items.
|
|
2500
|
-
*/
|
|
2501
|
-
export interface ListResponseRoleInfoDc {
|
|
2502
|
-
/** The items of the response. */
|
|
2503
|
-
items?: RoleInfoDc[];
|
|
2504
|
-
/** @format int64 */
|
|
2505
|
-
totalCount?: number;
|
|
2506
|
-
/** @format int64 */
|
|
2507
|
-
offset?: number;
|
|
2508
|
-
/** @format int64 */
|
|
2509
|
-
limit?: number;
|
|
2510
|
-
}
|
|
2511
|
-
/**
|
|
2512
|
-
* The response that contains a paged list of items.
|
|
2513
|
-
*/
|
|
2514
|
-
export interface ListResponseServiceListItemDc {
|
|
2515
|
-
/** The items of the response. */
|
|
2516
|
-
items?: ServiceListItemDc[];
|
|
2517
|
-
/** @format int64 */
|
|
2518
|
-
totalCount?: number;
|
|
2519
|
-
/** @format int64 */
|
|
2520
|
-
offset?: number;
|
|
2521
|
-
/** @format int64 */
|
|
2522
|
-
limit?: number;
|
|
2523
|
-
}
|
|
2524
|
-
/**
|
|
2525
|
-
* The response that contains a paged list of items.
|
|
2526
|
-
*/
|
|
2527
|
-
export interface ListResponseTableInfoDc {
|
|
2528
|
-
/** The items of the response. */
|
|
2529
|
-
items?: (TableInfoDc | DetailedTableInfoDc | UpdateTableDc)[];
|
|
2530
|
-
/** @format int64 */
|
|
2531
|
-
totalCount?: number;
|
|
2532
|
-
/** @format int64 */
|
|
2533
|
-
offset?: number;
|
|
2534
|
-
/** @format int64 */
|
|
2535
|
-
limit?: number;
|
|
2536
|
-
}
|
|
2537
|
-
/**
|
|
2538
|
-
* The response that contains a paged list of items.
|
|
2539
|
-
*/
|
|
2540
|
-
export interface ListResponseUserInfoDc {
|
|
2541
|
-
/** The items of the response. */
|
|
2542
|
-
items?: UserInfoDc[];
|
|
2543
|
-
/** @format int64 */
|
|
2544
|
-
totalCount?: number;
|
|
2545
|
-
/** @format int64 */
|
|
2546
|
-
offset?: number;
|
|
2547
|
-
/** @format int64 */
|
|
2548
|
-
limit?: number;
|
|
2549
|
-
}
|
|
2550
2435
|
/**
|
|
2551
2436
|
* Configuration for the local tile service.
|
|
2552
2437
|
*/
|
|
@@ -2694,7 +2579,7 @@ export declare type OverlayTaskParametersDc = FeatureTaskParametersDc & {
|
|
|
2694
2579
|
/**
|
|
2695
2580
|
* Features list definition.
|
|
2696
2581
|
*/
|
|
2697
|
-
export declare type PagedFeaturesListDc =
|
|
2582
|
+
export declare type PagedFeaturesListDc = PagedListFeatureDc;
|
|
2698
2583
|
/**
|
|
2699
2584
|
* A list of items that is returned for filtered paged requests.
|
|
2700
2585
|
*/
|
|
@@ -2717,6 +2602,182 @@ export interface PagedListConfigDc {
|
|
|
2717
2602
|
/** The retrieved items in the list. */
|
|
2718
2603
|
items?: ConfigDc[];
|
|
2719
2604
|
}
|
|
2605
|
+
/**
|
|
2606
|
+
* A list of items that is returned for filtered paged requests.
|
|
2607
|
+
*/
|
|
2608
|
+
export interface PagedListExtendedUserInfoDc {
|
|
2609
|
+
/**
|
|
2610
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2611
|
+
* @format int64
|
|
2612
|
+
*/
|
|
2613
|
+
totalCount?: number;
|
|
2614
|
+
/**
|
|
2615
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2616
|
+
* @format int32
|
|
2617
|
+
*/
|
|
2618
|
+
offset?: number;
|
|
2619
|
+
/**
|
|
2620
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2621
|
+
* @format int32
|
|
2622
|
+
*/
|
|
2623
|
+
limit?: number;
|
|
2624
|
+
/** The retrieved items in the list. */
|
|
2625
|
+
items?: ExtendedUserInfoDc[];
|
|
2626
|
+
}
|
|
2627
|
+
/**
|
|
2628
|
+
* A list of items that is returned for filtered paged requests.
|
|
2629
|
+
*/
|
|
2630
|
+
export interface PagedListFeatureDc {
|
|
2631
|
+
/**
|
|
2632
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2633
|
+
* @format int64
|
|
2634
|
+
*/
|
|
2635
|
+
totalCount?: number;
|
|
2636
|
+
/**
|
|
2637
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2638
|
+
* @format int32
|
|
2639
|
+
*/
|
|
2640
|
+
offset?: number;
|
|
2641
|
+
/**
|
|
2642
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2643
|
+
* @format int32
|
|
2644
|
+
*/
|
|
2645
|
+
limit?: number;
|
|
2646
|
+
/** The retrieved items in the list. */
|
|
2647
|
+
items?: FeatureDc[];
|
|
2648
|
+
}
|
|
2649
|
+
/**
|
|
2650
|
+
* A list of items that is returned for filtered paged requests.
|
|
2651
|
+
*/
|
|
2652
|
+
export interface PagedListIEnumerable1 {
|
|
2653
|
+
/**
|
|
2654
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2655
|
+
* @format int64
|
|
2656
|
+
*/
|
|
2657
|
+
totalCount?: number;
|
|
2658
|
+
/**
|
|
2659
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2660
|
+
* @format int32
|
|
2661
|
+
*/
|
|
2662
|
+
offset?: number;
|
|
2663
|
+
/**
|
|
2664
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2665
|
+
* @format int32
|
|
2666
|
+
*/
|
|
2667
|
+
limit?: number;
|
|
2668
|
+
/** The retrieved items in the list. */
|
|
2669
|
+
items?: Record<string, any>[][];
|
|
2670
|
+
}
|
|
2671
|
+
/**
|
|
2672
|
+
* A list of items that is returned for filtered paged requests.
|
|
2673
|
+
*/
|
|
2674
|
+
export interface PagedListNamespaceInfoDc {
|
|
2675
|
+
/**
|
|
2676
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2677
|
+
* @format int64
|
|
2678
|
+
*/
|
|
2679
|
+
totalCount?: number;
|
|
2680
|
+
/**
|
|
2681
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2682
|
+
* @format int32
|
|
2683
|
+
*/
|
|
2684
|
+
offset?: number;
|
|
2685
|
+
/**
|
|
2686
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2687
|
+
* @format int32
|
|
2688
|
+
*/
|
|
2689
|
+
limit?: number;
|
|
2690
|
+
/** The retrieved items in the list. */
|
|
2691
|
+
items?: NamespaceInfoDc[];
|
|
2692
|
+
}
|
|
2693
|
+
/**
|
|
2694
|
+
* A list of items that is returned for filtered paged requests.
|
|
2695
|
+
*/
|
|
2696
|
+
export interface PagedListProjectInfoDc {
|
|
2697
|
+
/**
|
|
2698
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2699
|
+
* @format int64
|
|
2700
|
+
*/
|
|
2701
|
+
totalCount?: number;
|
|
2702
|
+
/**
|
|
2703
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2704
|
+
* @format int32
|
|
2705
|
+
*/
|
|
2706
|
+
offset?: number;
|
|
2707
|
+
/**
|
|
2708
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2709
|
+
* @format int32
|
|
2710
|
+
*/
|
|
2711
|
+
limit?: number;
|
|
2712
|
+
/** The retrieved items in the list. */
|
|
2713
|
+
items?: (ProjectInfoDc | ExtendedProjectInfoDc)[];
|
|
2714
|
+
}
|
|
2715
|
+
/**
|
|
2716
|
+
* A list of items that is returned for filtered paged requests.
|
|
2717
|
+
*/
|
|
2718
|
+
export interface PagedListRoleInfoDc {
|
|
2719
|
+
/**
|
|
2720
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2721
|
+
* @format int64
|
|
2722
|
+
*/
|
|
2723
|
+
totalCount?: number;
|
|
2724
|
+
/**
|
|
2725
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2726
|
+
* @format int32
|
|
2727
|
+
*/
|
|
2728
|
+
offset?: number;
|
|
2729
|
+
/**
|
|
2730
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2731
|
+
* @format int32
|
|
2732
|
+
*/
|
|
2733
|
+
limit?: number;
|
|
2734
|
+
/** The retrieved items in the list. */
|
|
2735
|
+
items?: RoleInfoDc[];
|
|
2736
|
+
}
|
|
2737
|
+
/**
|
|
2738
|
+
* A list of items that is returned for filtered paged requests.
|
|
2739
|
+
*/
|
|
2740
|
+
export interface PagedListServiceListItemDc {
|
|
2741
|
+
/**
|
|
2742
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2743
|
+
* @format int64
|
|
2744
|
+
*/
|
|
2745
|
+
totalCount?: number;
|
|
2746
|
+
/**
|
|
2747
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2748
|
+
* @format int32
|
|
2749
|
+
*/
|
|
2750
|
+
offset?: number;
|
|
2751
|
+
/**
|
|
2752
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2753
|
+
* @format int32
|
|
2754
|
+
*/
|
|
2755
|
+
limit?: number;
|
|
2756
|
+
/** The retrieved items in the list. */
|
|
2757
|
+
items?: ServiceListItemDc[];
|
|
2758
|
+
}
|
|
2759
|
+
/**
|
|
2760
|
+
* A list of items that is returned for filtered paged requests.
|
|
2761
|
+
*/
|
|
2762
|
+
export interface PagedListTableInfoDc {
|
|
2763
|
+
/**
|
|
2764
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2765
|
+
* @format int64
|
|
2766
|
+
*/
|
|
2767
|
+
totalCount?: number;
|
|
2768
|
+
/**
|
|
2769
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2770
|
+
* @format int32
|
|
2771
|
+
*/
|
|
2772
|
+
offset?: number;
|
|
2773
|
+
/**
|
|
2774
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2775
|
+
* @format int32
|
|
2776
|
+
*/
|
|
2777
|
+
limit?: number;
|
|
2778
|
+
/** The retrieved items in the list. */
|
|
2779
|
+
items?: (TableInfoDc | DetailedTableInfoDc | UpdateTableDc)[];
|
|
2780
|
+
}
|
|
2720
2781
|
/**
|
|
2721
2782
|
* A list of items that is returned for filtered paged requests.
|
|
2722
2783
|
*/
|
|
@@ -2739,6 +2800,28 @@ export interface PagedListTagInfoDc {
|
|
|
2739
2800
|
/** The retrieved items in the list. */
|
|
2740
2801
|
items?: TagInfoDc[];
|
|
2741
2802
|
}
|
|
2803
|
+
/**
|
|
2804
|
+
* A list of items that is returned for filtered paged requests.
|
|
2805
|
+
*/
|
|
2806
|
+
export interface PagedListUserInfoDc {
|
|
2807
|
+
/**
|
|
2808
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2809
|
+
* @format int64
|
|
2810
|
+
*/
|
|
2811
|
+
totalCount?: number;
|
|
2812
|
+
/**
|
|
2813
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2814
|
+
* @format int32
|
|
2815
|
+
*/
|
|
2816
|
+
offset?: number;
|
|
2817
|
+
/**
|
|
2818
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2819
|
+
* @format int32
|
|
2820
|
+
*/
|
|
2821
|
+
limit?: number;
|
|
2822
|
+
/** The retrieved items in the list. */
|
|
2823
|
+
items?: UserInfoDc[];
|
|
2824
|
+
}
|
|
2742
2825
|
/**
|
|
2743
2826
|
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2744
2827
|
as an object with a "type" parameter specified.
|
|
@@ -2796,6 +2879,7 @@ export declare enum Permissions {
|
|
|
2796
2879
|
*/
|
|
2797
2880
|
export declare type PipelineTaskParametersDc = TaskParametersDc & {
|
|
2798
2881
|
type?: string;
|
|
2882
|
+
continueOnFail?: boolean;
|
|
2799
2883
|
innerTasks: (AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | UnionTaskParametersDc | UploadRasterTaskParametersDc)[];
|
|
2800
2884
|
};
|
|
2801
2885
|
/**
|
|
@@ -3039,7 +3123,7 @@ export declare type ProjectInfoDc = ResourceInfoDc & {
|
|
|
3039
3123
|
/**
|
|
3040
3124
|
* List of the projects in projects manager service.
|
|
3041
3125
|
*/
|
|
3042
|
-
export declare type ProjectsListDc =
|
|
3126
|
+
export declare type ProjectsListDc = PagedListProjectInfoDc;
|
|
3043
3127
|
/**
|
|
3044
3128
|
* Data contract for inner layer Legend.
|
|
3045
3129
|
*/
|
|
@@ -3661,7 +3745,7 @@ export declare type ServiceInfoDc = ResourceInfoDc & {
|
|
|
3661
3745
|
/**
|
|
3662
3746
|
* List of the services in service manager.
|
|
3663
3747
|
*/
|
|
3664
|
-
export declare type ServiceListDc =
|
|
3748
|
+
export declare type ServiceListDc = PagedListServiceListItemDc;
|
|
3665
3749
|
export interface ServiceListItemDc {
|
|
3666
3750
|
name?: string;
|
|
3667
3751
|
type?: string;
|
|
@@ -3978,7 +4062,7 @@ export declare type TableInfoDc = ResourceInfoDc & {
|
|
|
3978
4062
|
/**
|
|
3979
4063
|
* The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
|
|
3980
4064
|
*/
|
|
3981
|
-
export declare type TableListDc =
|
|
4065
|
+
export declare type TableListDc = PagedListTableInfoDc;
|
|
3982
4066
|
/**
|
|
3983
4067
|
* Configuration of a related table for feature layer.
|
|
3984
4068
|
*/
|
|
@@ -5569,7 +5653,7 @@ export interface GetProjectsListParams {
|
|
|
5569
5653
|
tags?: string[];
|
|
5570
5654
|
}
|
|
5571
5655
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
5572
|
-
export interface
|
|
5656
|
+
export interface DeleteResourcesParams7 {
|
|
5573
5657
|
/** Resource names. */
|
|
5574
5658
|
names?: string[];
|
|
5575
5659
|
}
|
|
@@ -5618,7 +5702,25 @@ export interface CreateStorageParams {
|
|
|
5618
5702
|
storageName?: string;
|
|
5619
5703
|
}
|
|
5620
5704
|
export interface GetTaskListParams {
|
|
5621
|
-
/**
|
|
5705
|
+
/**
|
|
5706
|
+
* Comma separated list of the task statuses. Filters only the tasks with the given statuses.
|
|
5707
|
+
*
|
|
5708
|
+
* None
|
|
5709
|
+
*
|
|
5710
|
+
* Scheduled
|
|
5711
|
+
*
|
|
5712
|
+
* Planning
|
|
5713
|
+
*
|
|
5714
|
+
* Executing
|
|
5715
|
+
*
|
|
5716
|
+
* Completed
|
|
5717
|
+
*
|
|
5718
|
+
* Failed
|
|
5719
|
+
*
|
|
5720
|
+
* Canceled
|
|
5721
|
+
*
|
|
5722
|
+
* Timeout
|
|
5723
|
+
*/
|
|
5622
5724
|
status?: ServerTaskStatus[];
|
|
5623
5725
|
/** Filter the tasks by their ids. */
|
|
5624
5726
|
id?: string[];
|
|
@@ -5742,7 +5844,49 @@ export interface StatisticsDbParams {
|
|
|
5742
5844
|
attribute?: string;
|
|
5743
5845
|
/** Condition. */
|
|
5744
5846
|
condition?: string;
|
|
5745
|
-
/**
|
|
5847
|
+
/**
|
|
5848
|
+
* Type of required statistic function.
|
|
5849
|
+
*
|
|
5850
|
+
* None
|
|
5851
|
+
*
|
|
5852
|
+
* Array
|
|
5853
|
+
*
|
|
5854
|
+
* Min
|
|
5855
|
+
*
|
|
5856
|
+
* Max
|
|
5857
|
+
*
|
|
5858
|
+
* Avg
|
|
5859
|
+
*
|
|
5860
|
+
* Sum
|
|
5861
|
+
*
|
|
5862
|
+
* Extent
|
|
5863
|
+
*
|
|
5864
|
+
* Count
|
|
5865
|
+
*
|
|
5866
|
+
* TotalCount
|
|
5867
|
+
*
|
|
5868
|
+
* DistinctCount
|
|
5869
|
+
*
|
|
5870
|
+
* First
|
|
5871
|
+
*
|
|
5872
|
+
* Last
|
|
5873
|
+
*
|
|
5874
|
+
* Median
|
|
5875
|
+
*
|
|
5876
|
+
* Mod
|
|
5877
|
+
*
|
|
5878
|
+
* StdDeviation
|
|
5879
|
+
*
|
|
5880
|
+
* SumOfProduct
|
|
5881
|
+
*
|
|
5882
|
+
* OnlyValue
|
|
5883
|
+
*
|
|
5884
|
+
* WeightedAvg
|
|
5885
|
+
*
|
|
5886
|
+
* DensityIndicators
|
|
5887
|
+
*
|
|
5888
|
+
* DividedSum
|
|
5889
|
+
*/
|
|
5746
5890
|
types?: AggregationFunction[];
|
|
5747
5891
|
}
|
|
5748
5892
|
export interface ClassifyParams3 {
|
|
@@ -5840,7 +5984,7 @@ export interface GetTableListParams {
|
|
|
5840
5984
|
acl?: string;
|
|
5841
5985
|
}
|
|
5842
5986
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
5843
|
-
export interface
|
|
5987
|
+
export interface DeleteResourcesParams6 {
|
|
5844
5988
|
/** Resource names. */
|
|
5845
5989
|
names?: string[];
|
|
5846
5990
|
}
|
|
@@ -5922,6 +6066,27 @@ export interface GetAllParams {
|
|
|
5922
6066
|
*/
|
|
5923
6067
|
limit?: number;
|
|
5924
6068
|
}
|
|
6069
|
+
export interface GetVectorTileParams {
|
|
6070
|
+
/** True if name is project name, otherwise false. */
|
|
6071
|
+
isProject?: boolean;
|
|
6072
|
+
/** Project or layer name. */
|
|
6073
|
+
name: string;
|
|
6074
|
+
/**
|
|
6075
|
+
* Zoom level.
|
|
6076
|
+
* @format int32
|
|
6077
|
+
*/
|
|
6078
|
+
z: number;
|
|
6079
|
+
/**
|
|
6080
|
+
* X tile coordinate.
|
|
6081
|
+
* @format int32
|
|
6082
|
+
*/
|
|
6083
|
+
x: number;
|
|
6084
|
+
/**
|
|
6085
|
+
* Y tile coordinate.
|
|
6086
|
+
* @format int32
|
|
6087
|
+
*/
|
|
6088
|
+
y: number;
|
|
6089
|
+
}
|
|
5925
6090
|
export interface GetCapabilitiesParams {
|
|
5926
6091
|
/** Name of the service. */
|
|
5927
6092
|
Service?: string;
|