@evergis/api 4.1.5 → 4.1.7
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/LICENSE +2 -2
- package/README.md +5 -15
- package/dist/Api.d.ts +78 -78
- package/dist/ApiEvent.d.ts +5 -5
- package/dist/EventEmitter.d.ts +11 -11
- package/dist/ExtendedHttpClient.d.ts +5 -0
- package/dist/__generated__/AccountPreviewService.d.ts +81 -81
- package/dist/__generated__/AccountService.d.ts +513 -513
- package/dist/__generated__/BulkOperationsService.d.ts +21 -21
- package/dist/__generated__/CamerasService.d.ts +105 -105
- package/dist/__generated__/CatalogService.d.ts +213 -213
- package/dist/__generated__/ClientSettingsService.d.ts +57 -57
- package/dist/__generated__/DataSourceService.d.ts +201 -201
- package/dist/__generated__/EqlService.d.ts +105 -105
- package/dist/__generated__/FeedbackService.d.ts +33 -33
- package/dist/__generated__/FiltersService.d.ts +45 -45
- package/dist/__generated__/GeocodeService.d.ts +45 -45
- package/dist/__generated__/HttpClient.d.ts +27 -27
- package/dist/__generated__/ImportService.d.ts +129 -129
- package/dist/__generated__/LayersService.d.ts +573 -573
- package/dist/__generated__/NotificationService.d.ts +69 -69
- package/dist/__generated__/ProjectsService.d.ts +249 -249
- package/dist/__generated__/QueryTokenAccessService.d.ts +64 -64
- package/dist/__generated__/RemoteTaskManagerService.d.ts +213 -213
- package/dist/__generated__/SecurityService.d.ts +165 -165
- package/dist/__generated__/Service.d.ts +5 -5
- package/dist/__generated__/SpatialReferencesService.d.ts +45 -45
- package/dist/__generated__/StatisticService.d.ts +45 -45
- package/dist/__generated__/TablesService.d.ts +237 -237
- package/dist/__generated__/ToolsService.d.ts +8 -8
- package/dist/__generated__/VectorTileService.d.ts +21 -21
- package/dist/__generated__/data-contracts.d.ts +7677 -6907
- package/dist/api.esm.js +5228 -7637
- package/dist/api.esm.js.map +1 -1
- package/dist/config.d.ts +4 -0
- package/dist/constants.d.ts +3 -3
- package/dist/index.d.ts +7 -7
- package/dist/index.js +5804 -5
- package/dist/index.js.map +1 -0
- package/dist/interfaces/ResourceService.d.ts +7 -7
- package/dist/services/Account.d.ts +36 -36
- package/dist/services/AccountPreview.d.ts +3 -3
- package/dist/services/BulkOperations.d.ts +3 -3
- package/dist/services/Cameras.d.ts +3 -3
- package/dist/services/ClientSettings.d.ts +62 -62
- package/dist/services/Eql.d.ts +3 -3
- package/dist/services/Feedback.d.ts +3 -3
- package/dist/services/FileUpload.d.ts +6 -6
- package/dist/services/Filters.d.ts +3 -3
- package/dist/services/Geocode.d.ts +9 -9
- package/dist/services/Import.d.ts +3 -3
- package/dist/services/Layers.d.ts +28 -28
- package/dist/services/Names.d.ts +32 -32
- package/dist/services/Notification.d.ts +48 -48
- package/dist/services/PortalSettings.d.ts +33 -33
- package/dist/services/Projects.d.ts +20 -20
- package/dist/services/RemoteTaskManager.d.ts +3 -3
- package/dist/services/Resources.d.ts +18 -18
- package/dist/services/Security.d.ts +9 -9
- package/dist/services/Statistic.d.ts +3 -3
- package/dist/services/Tables.d.ts +11 -11
- package/dist/services/Tools.d.ts +3 -3
- package/dist/services/VectorTiles.d.ts +3 -3
- package/dist/services/index.d.ts +23 -23
- package/dist/utils/errorHandler.d.ts +26 -26
- package/dist/utils/formDataFromFile.d.ts +1 -1
- package/dist/utils/generateId.d.ts +2 -2
- package/dist/utils/index.d.ts +9 -9
- package/dist/utils/isString.d.ts +1 -1
- package/dist/utils/location.d.ts +2 -2
- package/dist/utils/parseJwt.d.ts +1 -1
- package/dist/utils/promiseAllIgnoreErrors.d.ts +1 -1
- package/dist/utils/stripUselessSlashes.d.ts +1 -1
- package/dist/utils/unique.d.ts +1 -1
- package/dist/utils/user.d.ts +3 -3
- package/package.json +15 -27
- package/dist/__generated__/PythonService.d.ts +0 -33
- package/dist/__generated__/SymbolStorageService.d.ts +0 -225
- package/dist/__generated__/WfsServerService.d.ts +0 -45
- package/dist/__generated__/WmtsService.d.ts +0 -21
- package/dist/api.cjs.development.js +0 -7636
- package/dist/api.cjs.development.js.map +0 -1
- package/dist/api.cjs.production.min.js +0 -2
- package/dist/api.cjs.production.min.js.map +0 -1
|
@@ -1,165 +1,165 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
/**
|
|
4
|
-
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1.0
|
|
6
|
-
* @baseUrl /sp
|
|
7
|
-
*/
|
|
8
|
-
export declare class SecurityService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* @description This method requires superuser permission.
|
|
11
|
-
*
|
|
12
|
-
* @tags SecurityService
|
|
13
|
-
* @name SetPolicies
|
|
14
|
-
* @operationId SecurityServiceController_SetPolicies
|
|
15
|
-
* @summary Adds the given policies to the server policy list. If a policy with the same type and user role already exists, it replaces the existing policy with the new one.
|
|
16
|
-
* @request POST:/bulk/security/policies
|
|
17
|
-
* @secure
|
|
18
|
-
* @response `200` OK
|
|
19
|
-
*/
|
|
20
|
-
setPolicies(data: SetPoliciesPayload): Promise<void>;
|
|
21
|
-
/**
|
|
22
|
-
* No description
|
|
23
|
-
*
|
|
24
|
-
* @tags SecurityService
|
|
25
|
-
* @name FindUserByNameByRoles
|
|
26
|
-
* @operationId SecurityServiceController_FindUserByNameByRoles
|
|
27
|
-
* @summary Get users list with given roles list.
|
|
28
|
-
* @request GET:/security/findUsersWithRoles
|
|
29
|
-
* @secure
|
|
30
|
-
* @response `200` OK
|
|
31
|
-
*/
|
|
32
|
-
findUserByNameByRoles(query: FindUserByNameByRolesParams): Promise<SearchedUserDc[]>;
|
|
33
|
-
/**
|
|
34
|
-
* No description
|
|
35
|
-
*
|
|
36
|
-
* @tags SecurityService
|
|
37
|
-
* @name GetUsersAndRoles
|
|
38
|
-
* @operationId SecurityServiceController_GetUsersAndRoles
|
|
39
|
-
* @summary Get users and roles list by filter.
|
|
40
|
-
* @request GET:/security/usersandroles
|
|
41
|
-
* @secure
|
|
42
|
-
* @response `200` OK
|
|
43
|
-
*/
|
|
44
|
-
getUsersAndRoles(query: GetUsersAndRolesParams): Promise<UserOrRoleDc[]>;
|
|
45
|
-
/**
|
|
46
|
-
* No description
|
|
47
|
-
*
|
|
48
|
-
* @tags SecurityService
|
|
49
|
-
* @name FindUserByName
|
|
50
|
-
* @operationId SecurityServiceController_FindUserByName
|
|
51
|
-
* @summary Returns the list of users found by username.
|
|
52
|
-
* @request GET:/security/users
|
|
53
|
-
* @secure
|
|
54
|
-
* @response `200` OK
|
|
55
|
-
*/
|
|
56
|
-
findUserByName(query: FindUserByNameParams): Promise<SearchedUserDc[]>;
|
|
57
|
-
/**
|
|
58
|
-
* @description This method requires superuser permission.
|
|
59
|
-
*
|
|
60
|
-
* @tags SecurityService
|
|
61
|
-
* @name GetPolicyList
|
|
62
|
-
* @operationId SecurityServiceController_GetPolicyList
|
|
63
|
-
* @summary Returns the list of server authorization policies of the given type.
|
|
64
|
-
* @request GET:/security/policies
|
|
65
|
-
* @secure
|
|
66
|
-
* @response `200` OK
|
|
67
|
-
*/
|
|
68
|
-
getPolicyList(query: GetPolicyListParams): Promise<PolicyDc[]>;
|
|
69
|
-
/**
|
|
70
|
-
* @description This method requires superuser permission.
|
|
71
|
-
*
|
|
72
|
-
* @tags SecurityService
|
|
73
|
-
* @name RemovePolicy
|
|
74
|
-
* @operationId SecurityServiceController_RemovePolicy
|
|
75
|
-
* @summary Removes the policy of the given type with the given role. If no such policy is found, nothing is done, and OK response is returned.
|
|
76
|
-
* @request DELETE:/security/policies
|
|
77
|
-
* @secure
|
|
78
|
-
* @response `200` OK
|
|
79
|
-
*/
|
|
80
|
-
removePolicy(query: RemovePolicyParams): Promise<void>;
|
|
81
|
-
/**
|
|
82
|
-
* @description This method requires superuser permission.
|
|
83
|
-
*
|
|
84
|
-
* @tags SecurityService
|
|
85
|
-
* @name SetPolicy
|
|
86
|
-
* @operationId SecurityServiceController_SetPolicy
|
|
87
|
-
* @summary Adds the given policy to the server policy list. If a policy with the same type and user role already exists, it replaces the existing policy with the new one.
|
|
88
|
-
* @request POST:/security/policies
|
|
89
|
-
* @secure
|
|
90
|
-
* @response `200` OK
|
|
91
|
-
*/
|
|
92
|
-
setPolicy(data: PolicyDc): Promise<void>;
|
|
93
|
-
/**
|
|
94
|
-
* No description
|
|
95
|
-
*
|
|
96
|
-
* @tags SecurityService
|
|
97
|
-
* @name OldCheckLimits
|
|
98
|
-
* @operationId SecurityServiceController_OldCheckLimits
|
|
99
|
-
* @summary Get limits of workspace.
|
|
100
|
-
* @request GET:/resources/checkLimits
|
|
101
|
-
* @secure
|
|
102
|
-
* @response `200` OK
|
|
103
|
-
*/
|
|
104
|
-
oldCheckLimits(): Promise<WorkspaceLimitsDc>;
|
|
105
|
-
/**
|
|
106
|
-
* No description
|
|
107
|
-
*
|
|
108
|
-
* @tags SecurityService
|
|
109
|
-
* @name OldCheckLimits1
|
|
110
|
-
* @operationId SecurityServiceController_OldCheckLimits_1
|
|
111
|
-
* @summary Get limits of workspace.
|
|
112
|
-
* @request GET:/resources/checkLimits/{userName}
|
|
113
|
-
* @secure
|
|
114
|
-
* @response `200` OK
|
|
115
|
-
*/
|
|
116
|
-
oldCheckLimits1(userName: string): Promise<WorkspaceLimitsDc>;
|
|
117
|
-
/**
|
|
118
|
-
* No description
|
|
119
|
-
*
|
|
120
|
-
* @tags SecurityService
|
|
121
|
-
* @name CheckLimitsForUser
|
|
122
|
-
* @operationId SecurityServiceController_CheckLimitsForUser
|
|
123
|
-
* @summary Get limits of workspace.
|
|
124
|
-
* @request GET:/security/limits/user
|
|
125
|
-
* @secure
|
|
126
|
-
* @response `200` OK
|
|
127
|
-
*/
|
|
128
|
-
checkLimitsForUser(): Promise<WorkspaceLimitsDc>;
|
|
129
|
-
/**
|
|
130
|
-
* No description
|
|
131
|
-
*
|
|
132
|
-
* @tags SecurityService
|
|
133
|
-
* @name CheckLimitsForUser1
|
|
134
|
-
* @operationId SecurityServiceController_CheckLimitsForUser_1
|
|
135
|
-
* @summary Get limits of workspace.
|
|
136
|
-
* @request GET:/security/limits/user/{userName}
|
|
137
|
-
* @secure
|
|
138
|
-
* @response `200` OK
|
|
139
|
-
*/
|
|
140
|
-
checkLimitsForUser1(userName: string): Promise<WorkspaceLimitsDc>;
|
|
141
|
-
/**
|
|
142
|
-
* No description
|
|
143
|
-
*
|
|
144
|
-
* @tags SecurityService
|
|
145
|
-
* @name CheckLimitsForRole
|
|
146
|
-
* @operationId SecurityServiceController_CheckLimitsForRole
|
|
147
|
-
* @summary Get limits of workspace.
|
|
148
|
-
* @request GET:/security/limits/role/{roleName}
|
|
149
|
-
* @secure
|
|
150
|
-
* @response `200` OK
|
|
151
|
-
*/
|
|
152
|
-
checkLimitsForRole(roleName: string | null): Promise<WorkspaceLimitsDc>;
|
|
153
|
-
/**
|
|
154
|
-
* No description
|
|
155
|
-
*
|
|
156
|
-
* @tags SecurityService
|
|
157
|
-
* @name GetDefaultLimits
|
|
158
|
-
* @operationId SecurityServiceController_GetDefaultLimits
|
|
159
|
-
* @summary Get default limits of workspace.
|
|
160
|
-
* @request GET:/security/limits/default
|
|
161
|
-
* @secure
|
|
162
|
-
* @response `200` OK
|
|
163
|
-
*/
|
|
164
|
-
getDefaultLimits(): Promise<WorkspaceLimitsDc>;
|
|
165
|
-
}
|
|
1
|
+
import { Service } from './Service';
|
|
2
|
+
import { FindUserByNameByRolesParams, FindUserByNameParams, GetPolicyListParams, GetUsersAndRolesParams, PolicyDc, RemovePolicyParams, SearchedUserDc, SetPoliciesPayload, UserOrRoleDc, WorkspaceLimitsDc } from './data-contracts';
|
|
3
|
+
/**
|
|
4
|
+
* @title Spatial Processing Core API
|
|
5
|
+
* @version 1.5.1.0
|
|
6
|
+
* @baseUrl /sp
|
|
7
|
+
*/
|
|
8
|
+
export declare class SecurityService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* @description This method requires superuser permission.
|
|
11
|
+
*
|
|
12
|
+
* @tags SecurityService
|
|
13
|
+
* @name SetPolicies
|
|
14
|
+
* @operationId SecurityServiceController_SetPolicies
|
|
15
|
+
* @summary Adds the given policies to the server policy list. If a policy with the same type and user role already exists, it replaces the existing policy with the new one.
|
|
16
|
+
* @request POST:/bulk/security/policies
|
|
17
|
+
* @secure
|
|
18
|
+
* @response `200` OK
|
|
19
|
+
*/
|
|
20
|
+
setPolicies(data: SetPoliciesPayload): Promise<void>;
|
|
21
|
+
/**
|
|
22
|
+
* No description
|
|
23
|
+
*
|
|
24
|
+
* @tags SecurityService
|
|
25
|
+
* @name FindUserByNameByRoles
|
|
26
|
+
* @operationId SecurityServiceController_FindUserByNameByRoles
|
|
27
|
+
* @summary Get users list with given roles list.
|
|
28
|
+
* @request GET:/security/findUsersWithRoles
|
|
29
|
+
* @secure
|
|
30
|
+
* @response `200` OK
|
|
31
|
+
*/
|
|
32
|
+
findUserByNameByRoles(query: FindUserByNameByRolesParams): Promise<SearchedUserDc[]>;
|
|
33
|
+
/**
|
|
34
|
+
* No description
|
|
35
|
+
*
|
|
36
|
+
* @tags SecurityService
|
|
37
|
+
* @name GetUsersAndRoles
|
|
38
|
+
* @operationId SecurityServiceController_GetUsersAndRoles
|
|
39
|
+
* @summary Get users and roles list by filter.
|
|
40
|
+
* @request GET:/security/usersandroles
|
|
41
|
+
* @secure
|
|
42
|
+
* @response `200` OK
|
|
43
|
+
*/
|
|
44
|
+
getUsersAndRoles(query: GetUsersAndRolesParams): Promise<UserOrRoleDc[]>;
|
|
45
|
+
/**
|
|
46
|
+
* No description
|
|
47
|
+
*
|
|
48
|
+
* @tags SecurityService
|
|
49
|
+
* @name FindUserByName
|
|
50
|
+
* @operationId SecurityServiceController_FindUserByName
|
|
51
|
+
* @summary Returns the list of users found by username.
|
|
52
|
+
* @request GET:/security/users
|
|
53
|
+
* @secure
|
|
54
|
+
* @response `200` OK
|
|
55
|
+
*/
|
|
56
|
+
findUserByName(query: FindUserByNameParams): Promise<SearchedUserDc[]>;
|
|
57
|
+
/**
|
|
58
|
+
* @description This method requires superuser permission.
|
|
59
|
+
*
|
|
60
|
+
* @tags SecurityService
|
|
61
|
+
* @name GetPolicyList
|
|
62
|
+
* @operationId SecurityServiceController_GetPolicyList
|
|
63
|
+
* @summary Returns the list of server authorization policies of the given type.
|
|
64
|
+
* @request GET:/security/policies
|
|
65
|
+
* @secure
|
|
66
|
+
* @response `200` OK
|
|
67
|
+
*/
|
|
68
|
+
getPolicyList(query: GetPolicyListParams): Promise<PolicyDc[]>;
|
|
69
|
+
/**
|
|
70
|
+
* @description This method requires superuser permission.
|
|
71
|
+
*
|
|
72
|
+
* @tags SecurityService
|
|
73
|
+
* @name RemovePolicy
|
|
74
|
+
* @operationId SecurityServiceController_RemovePolicy
|
|
75
|
+
* @summary Removes the policy of the given type with the given role. If no such policy is found, nothing is done, and OK response is returned.
|
|
76
|
+
* @request DELETE:/security/policies
|
|
77
|
+
* @secure
|
|
78
|
+
* @response `200` OK
|
|
79
|
+
*/
|
|
80
|
+
removePolicy(query: RemovePolicyParams): Promise<void>;
|
|
81
|
+
/**
|
|
82
|
+
* @description This method requires superuser permission.
|
|
83
|
+
*
|
|
84
|
+
* @tags SecurityService
|
|
85
|
+
* @name SetPolicy
|
|
86
|
+
* @operationId SecurityServiceController_SetPolicy
|
|
87
|
+
* @summary Adds the given policy to the server policy list. If a policy with the same type and user role already exists, it replaces the existing policy with the new one.
|
|
88
|
+
* @request POST:/security/policies
|
|
89
|
+
* @secure
|
|
90
|
+
* @response `200` OK
|
|
91
|
+
*/
|
|
92
|
+
setPolicy(data: PolicyDc): Promise<void>;
|
|
93
|
+
/**
|
|
94
|
+
* No description
|
|
95
|
+
*
|
|
96
|
+
* @tags SecurityService
|
|
97
|
+
* @name OldCheckLimits
|
|
98
|
+
* @operationId SecurityServiceController_OldCheckLimits
|
|
99
|
+
* @summary Get limits of workspace.
|
|
100
|
+
* @request GET:/resources/checkLimits
|
|
101
|
+
* @secure
|
|
102
|
+
* @response `200` OK
|
|
103
|
+
*/
|
|
104
|
+
oldCheckLimits(): Promise<WorkspaceLimitsDc>;
|
|
105
|
+
/**
|
|
106
|
+
* No description
|
|
107
|
+
*
|
|
108
|
+
* @tags SecurityService
|
|
109
|
+
* @name OldCheckLimits1
|
|
110
|
+
* @operationId SecurityServiceController_OldCheckLimits_1
|
|
111
|
+
* @summary Get limits of workspace.
|
|
112
|
+
* @request GET:/resources/checkLimits/{userName}
|
|
113
|
+
* @secure
|
|
114
|
+
* @response `200` OK
|
|
115
|
+
*/
|
|
116
|
+
oldCheckLimits1(userName: string): Promise<WorkspaceLimitsDc>;
|
|
117
|
+
/**
|
|
118
|
+
* No description
|
|
119
|
+
*
|
|
120
|
+
* @tags SecurityService
|
|
121
|
+
* @name CheckLimitsForUser
|
|
122
|
+
* @operationId SecurityServiceController_CheckLimitsForUser
|
|
123
|
+
* @summary Get limits of workspace.
|
|
124
|
+
* @request GET:/security/limits/user
|
|
125
|
+
* @secure
|
|
126
|
+
* @response `200` OK
|
|
127
|
+
*/
|
|
128
|
+
checkLimitsForUser(): Promise<WorkspaceLimitsDc>;
|
|
129
|
+
/**
|
|
130
|
+
* No description
|
|
131
|
+
*
|
|
132
|
+
* @tags SecurityService
|
|
133
|
+
* @name CheckLimitsForUser1
|
|
134
|
+
* @operationId SecurityServiceController_CheckLimitsForUser_1
|
|
135
|
+
* @summary Get limits of workspace.
|
|
136
|
+
* @request GET:/security/limits/user/{userName}
|
|
137
|
+
* @secure
|
|
138
|
+
* @response `200` OK
|
|
139
|
+
*/
|
|
140
|
+
checkLimitsForUser1(userName: string): Promise<WorkspaceLimitsDc>;
|
|
141
|
+
/**
|
|
142
|
+
* No description
|
|
143
|
+
*
|
|
144
|
+
* @tags SecurityService
|
|
145
|
+
* @name CheckLimitsForRole
|
|
146
|
+
* @operationId SecurityServiceController_CheckLimitsForRole
|
|
147
|
+
* @summary Get limits of workspace.
|
|
148
|
+
* @request GET:/security/limits/role/{roleName}
|
|
149
|
+
* @secure
|
|
150
|
+
* @response `200` OK
|
|
151
|
+
*/
|
|
152
|
+
checkLimitsForRole(roleName: string | null): Promise<WorkspaceLimitsDc>;
|
|
153
|
+
/**
|
|
154
|
+
* No description
|
|
155
|
+
*
|
|
156
|
+
* @tags SecurityService
|
|
157
|
+
* @name GetDefaultLimits
|
|
158
|
+
* @operationId SecurityServiceController_GetDefaultLimits
|
|
159
|
+
* @summary Get default limits of workspace.
|
|
160
|
+
* @request GET:/security/limits/default
|
|
161
|
+
* @secure
|
|
162
|
+
* @response `200` OK
|
|
163
|
+
*/
|
|
164
|
+
getDefaultLimits(): Promise<WorkspaceLimitsDc>;
|
|
165
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IHttpClient } from './HttpClient';
|
|
2
|
-
export declare class Service {
|
|
3
|
-
protected http: IHttpClient;
|
|
4
|
-
constructor(http: IHttpClient);
|
|
5
|
-
}
|
|
1
|
+
import { IHttpClient } from './HttpClient';
|
|
2
|
+
export declare class Service {
|
|
3
|
+
protected http: IHttpClient;
|
|
4
|
+
constructor(http: IHttpClient);
|
|
5
|
+
}
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
/**
|
|
4
|
-
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1.0
|
|
6
|
-
* @baseUrl /sp
|
|
7
|
-
*/
|
|
8
|
-
export declare class SpatialReferencesService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags SpatialReferences
|
|
13
|
-
* @name GetAvailiableCs
|
|
14
|
-
* @operationId SpatialReferencesController_GetAvailiableCsAsync
|
|
15
|
-
* @summary Returns list of available spatial references.
|
|
16
|
-
* @request GET:/srs/list
|
|
17
|
-
* @secure
|
|
18
|
-
* @response `200` OK
|
|
19
|
-
*/
|
|
20
|
-
getAvailiableCs(): Promise<SrInfo[]>;
|
|
21
|
-
/**
|
|
22
|
-
* No description
|
|
23
|
-
*
|
|
24
|
-
* @tags SpatialReferences
|
|
25
|
-
* @name GetProj4Representation
|
|
26
|
-
* @operationId SpatialReferencesController_GetProj4RepresentationAsync
|
|
27
|
-
* @summary Returns a WKT representation of spatial reference.
|
|
28
|
-
* @request GET:/srs/{name}/proj4
|
|
29
|
-
* @secure
|
|
30
|
-
* @response `200` OK
|
|
31
|
-
*/
|
|
32
|
-
getProj4Representation(name: string): Promise<string>;
|
|
33
|
-
/**
|
|
34
|
-
* No description
|
|
35
|
-
*
|
|
36
|
-
* @tags SpatialReferences
|
|
37
|
-
* @name GetWktRepresentation
|
|
38
|
-
* @operationId SpatialReferencesController_GetWktRepresentationAsync
|
|
39
|
-
* @summary Returns a WKT representation of spatial reference.
|
|
40
|
-
* @request GET:/srs/{name}/wkt
|
|
41
|
-
* @secure
|
|
42
|
-
* @response `200` OK
|
|
43
|
-
*/
|
|
44
|
-
getWktRepresentation(name: string): Promise<string>;
|
|
45
|
-
}
|
|
1
|
+
import { Service } from './Service';
|
|
2
|
+
import { SrInfo } from './data-contracts';
|
|
3
|
+
/**
|
|
4
|
+
* @title Spatial Processing Core API
|
|
5
|
+
* @version 1.5.1.0
|
|
6
|
+
* @baseUrl /sp
|
|
7
|
+
*/
|
|
8
|
+
export declare class SpatialReferencesService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags SpatialReferences
|
|
13
|
+
* @name GetAvailiableCs
|
|
14
|
+
* @operationId SpatialReferencesController_GetAvailiableCsAsync
|
|
15
|
+
* @summary Returns list of available spatial references.
|
|
16
|
+
* @request GET:/srs/list
|
|
17
|
+
* @secure
|
|
18
|
+
* @response `200` OK
|
|
19
|
+
*/
|
|
20
|
+
getAvailiableCs(): Promise<SrInfo[]>;
|
|
21
|
+
/**
|
|
22
|
+
* No description
|
|
23
|
+
*
|
|
24
|
+
* @tags SpatialReferences
|
|
25
|
+
* @name GetProj4Representation
|
|
26
|
+
* @operationId SpatialReferencesController_GetProj4RepresentationAsync
|
|
27
|
+
* @summary Returns a WKT representation of spatial reference.
|
|
28
|
+
* @request GET:/srs/{name}/proj4
|
|
29
|
+
* @secure
|
|
30
|
+
* @response `200` OK
|
|
31
|
+
*/
|
|
32
|
+
getProj4Representation(name: string): Promise<string>;
|
|
33
|
+
/**
|
|
34
|
+
* No description
|
|
35
|
+
*
|
|
36
|
+
* @tags SpatialReferences
|
|
37
|
+
* @name GetWktRepresentation
|
|
38
|
+
* @operationId SpatialReferencesController_GetWktRepresentationAsync
|
|
39
|
+
* @summary Returns a WKT representation of spatial reference.
|
|
40
|
+
* @request GET:/srs/{name}/wkt
|
|
41
|
+
* @secure
|
|
42
|
+
* @response `200` OK
|
|
43
|
+
*/
|
|
44
|
+
getWktRepresentation(name: string): Promise<string>;
|
|
45
|
+
}
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
/**
|
|
4
|
-
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1.0
|
|
6
|
-
* @baseUrl /sp
|
|
7
|
-
*/
|
|
8
|
-
export declare class StatisticService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags Statistic
|
|
13
|
-
* @name StatisticsDb
|
|
14
|
-
* @operationId StatisticController_StatisticsDb
|
|
15
|
-
* @summary Calculates statistics for layer attribute.
|
|
16
|
-
* @request POST:/statistics
|
|
17
|
-
* @secure
|
|
18
|
-
* @response `200` OK
|
|
19
|
-
*/
|
|
20
|
-
statisticsDb(data: GetStatisticsDc): Promise<StatisticsDc>;
|
|
21
|
-
/**
|
|
22
|
-
* No description
|
|
23
|
-
*
|
|
24
|
-
* @tags Statistic
|
|
25
|
-
* @name Classify
|
|
26
|
-
* @operationId StatisticController_Classify
|
|
27
|
-
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
28
|
-
* @request POST:/statistics/classify
|
|
29
|
-
* @secure
|
|
30
|
-
* @response `200` OK
|
|
31
|
-
*/
|
|
32
|
-
classify(data: GetClassifyDc): Promise<ClassifyDc>;
|
|
33
|
-
/**
|
|
34
|
-
* No description
|
|
35
|
-
*
|
|
36
|
-
* @tags Statistic
|
|
37
|
-
* @name SumOfProduct
|
|
38
|
-
* @operationId StatisticController_SumOfProduct
|
|
39
|
-
* @summary Sum of product.
|
|
40
|
-
* @request POST:/statistics/sumOfProduct
|
|
41
|
-
* @secure
|
|
42
|
-
* @response `200` OK
|
|
43
|
-
*/
|
|
44
|
-
sumOfProduct(data: GetSumOfProductDc): Promise<StatisticsDc>;
|
|
45
|
-
}
|
|
1
|
+
import { Service } from './Service';
|
|
2
|
+
import { ClassifyDc, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDc } from './data-contracts';
|
|
3
|
+
/**
|
|
4
|
+
* @title Spatial Processing Core API
|
|
5
|
+
* @version 1.5.1.0
|
|
6
|
+
* @baseUrl /sp
|
|
7
|
+
*/
|
|
8
|
+
export declare class StatisticService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags Statistic
|
|
13
|
+
* @name StatisticsDb
|
|
14
|
+
* @operationId StatisticController_StatisticsDb
|
|
15
|
+
* @summary Calculates statistics for layer attribute.
|
|
16
|
+
* @request POST:/statistics
|
|
17
|
+
* @secure
|
|
18
|
+
* @response `200` OK
|
|
19
|
+
*/
|
|
20
|
+
statisticsDb(data: GetStatisticsDc): Promise<StatisticsDc>;
|
|
21
|
+
/**
|
|
22
|
+
* No description
|
|
23
|
+
*
|
|
24
|
+
* @tags Statistic
|
|
25
|
+
* @name Classify
|
|
26
|
+
* @operationId StatisticController_Classify
|
|
27
|
+
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
28
|
+
* @request POST:/statistics/classify
|
|
29
|
+
* @secure
|
|
30
|
+
* @response `200` OK
|
|
31
|
+
*/
|
|
32
|
+
classify(data: GetClassifyDc): Promise<ClassifyDc>;
|
|
33
|
+
/**
|
|
34
|
+
* No description
|
|
35
|
+
*
|
|
36
|
+
* @tags Statistic
|
|
37
|
+
* @name SumOfProduct
|
|
38
|
+
* @operationId StatisticController_SumOfProduct
|
|
39
|
+
* @summary Sum of product.
|
|
40
|
+
* @request POST:/statistics/sumOfProduct
|
|
41
|
+
* @secure
|
|
42
|
+
* @response `200` OK
|
|
43
|
+
*/
|
|
44
|
+
sumOfProduct(data: GetSumOfProductDc): Promise<StatisticsDc>;
|
|
45
|
+
}
|