@geosanja/geosanja-frontend-api 4.0.17 → 4.0.18
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/api/default.service.d.ts +14 -4
- package/esm2022/api/default.service.mjs +42 -10
- package/esm2022/model/perfilCamadaDTO.mjs +1 -1
- package/fesm2022/geosanja-geosanja-frontend-api.mjs +41 -9
- package/fesm2022/geosanja-geosanja-frontend-api.mjs.map +1 -1
- package/model/perfilCamadaDTO.d.ts +2 -0
- package/package.json +1 -1
package/api/default.service.d.ts
CHANGED
|
@@ -165,6 +165,17 @@ export declare class DefaultService {
|
|
|
165
165
|
getIcon(filename: string, observe?: 'body', reportProgress?: boolean): Observable<Blob>;
|
|
166
166
|
getIcon(filename: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Blob>>;
|
|
167
167
|
getIcon(filename: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Blob>>;
|
|
168
|
+
/**
|
|
169
|
+
* Busca feição baseado no id da feição.
|
|
170
|
+
*
|
|
171
|
+
* @param id
|
|
172
|
+
* @param layerId
|
|
173
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
174
|
+
* @param reportProgress flag to report request and response progress.
|
|
175
|
+
*/
|
|
176
|
+
getLayerFeature(id: string, layerId: string, observe?: 'body', reportProgress?: boolean): Observable<string>;
|
|
177
|
+
getLayerFeature(id: string, layerId: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<string>>;
|
|
178
|
+
getLayerFeature(id: string, layerId: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<string>>;
|
|
168
179
|
/**
|
|
169
180
|
* Buscar lista de perfis
|
|
170
181
|
*
|
|
@@ -206,13 +217,12 @@ export declare class DefaultService {
|
|
|
206
217
|
/**
|
|
207
218
|
* Proxy para requisições GET ao GeoServer.
|
|
208
219
|
*
|
|
209
|
-
* @param url
|
|
210
220
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
211
221
|
* @param reportProgress flag to report request and response progress.
|
|
212
222
|
*/
|
|
213
|
-
proxy(
|
|
214
|
-
proxy(
|
|
215
|
-
proxy(
|
|
223
|
+
proxy(observe?: 'body', reportProgress?: boolean): Observable<Blob>;
|
|
224
|
+
proxy(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Blob>>;
|
|
225
|
+
proxy(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Blob>>;
|
|
216
226
|
/**
|
|
217
227
|
* Salvar perfil na aplicação
|
|
218
228
|
*
|