@geosanja/geosanja-frontend-api 4.3.2-build-2 → 4.4.0-build-2
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 +38 -0
- package/esm2022/api/default.service.mjs +123 -1
- package/esm2022/model/camadaMetadadoDTO.mjs +1 -1
- package/esm2022/model/perfilCamadaDTO.mjs +1 -1
- package/fesm2022/geosanja-geosanja-frontend-api.mjs +122 -0
- package/fesm2022/geosanja-geosanja-frontend-api.mjs.map +1 -1
- package/model/camadaMetadadoDTO.d.ts +1 -0
- package/model/perfilCamadaDTO.d.ts +3 -0
- package/package.json +1 -1
package/api/default.service.d.ts
CHANGED
|
@@ -323,6 +323,25 @@ export declare class DefaultService {
|
|
|
323
323
|
localizarUnidadeGeo(body: LocalizarUnidadeGeoDTO, observe?: 'body', reportProgress?: boolean): Observable<Array<ResultadoUnidadeGeoDTO>>;
|
|
324
324
|
localizarUnidadeGeo(body: LocalizarUnidadeGeoDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<ResultadoUnidadeGeoDTO>>>;
|
|
325
325
|
localizarUnidadeGeo(body: LocalizarUnidadeGeoDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<ResultadoUnidadeGeoDTO>>>;
|
|
326
|
+
/**
|
|
327
|
+
* Serviços OWS para requisições ao GeoServer.
|
|
328
|
+
*
|
|
329
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
330
|
+
* @param reportProgress flag to report request and response progress.
|
|
331
|
+
*/
|
|
332
|
+
owsGet(observe?: 'body', reportProgress?: boolean): Observable<Blob>;
|
|
333
|
+
owsGet(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Blob>>;
|
|
334
|
+
owsGet(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Blob>>;
|
|
335
|
+
/**
|
|
336
|
+
* Serviços OWS para requisições ao GeoServer.
|
|
337
|
+
*
|
|
338
|
+
* @param body
|
|
339
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
340
|
+
* @param reportProgress flag to report request and response progress.
|
|
341
|
+
*/
|
|
342
|
+
owsPost(body?: string, observe?: 'body', reportProgress?: boolean): Observable<Blob>;
|
|
343
|
+
owsPost(body?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Blob>>;
|
|
344
|
+
owsPost(body?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Blob>>;
|
|
326
345
|
/**
|
|
327
346
|
* Proxy para requisições GET ao GeoServer.
|
|
328
347
|
*
|
|
@@ -443,6 +462,25 @@ export declare class DefaultService {
|
|
|
443
462
|
verificaToken(observe?: 'body', reportProgress?: boolean): Observable<boolean>;
|
|
444
463
|
verificaToken(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<boolean>>;
|
|
445
464
|
verificaToken(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<boolean>>;
|
|
465
|
+
/**
|
|
466
|
+
* Serviços OWS para requisições ao GeoServer.
|
|
467
|
+
*
|
|
468
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
469
|
+
* @param reportProgress flag to report request and response progress.
|
|
470
|
+
*/
|
|
471
|
+
wfsGet(observe?: 'body', reportProgress?: boolean): Observable<Blob>;
|
|
472
|
+
wfsGet(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Blob>>;
|
|
473
|
+
wfsGet(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Blob>>;
|
|
474
|
+
/**
|
|
475
|
+
* Serviços OWS para requisições ao GeoServer.
|
|
476
|
+
*
|
|
477
|
+
* @param body
|
|
478
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
479
|
+
* @param reportProgress flag to report request and response progress.
|
|
480
|
+
*/
|
|
481
|
+
wfsPost(body?: string, observe?: 'body', reportProgress?: boolean): Observable<Blob>;
|
|
482
|
+
wfsPost(body?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Blob>>;
|
|
483
|
+
wfsPost(body?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Blob>>;
|
|
446
484
|
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultService, [null, { optional: true; }, { optional: true; }]>;
|
|
447
485
|
static ɵprov: i0.ɵɵInjectableDeclaration<DefaultService>;
|
|
448
486
|
}
|