@geosanja/geosanja-frontend-api 4.7.0-build-13 → 4.8.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 +23 -0
- package/esm2022/api/default.service.mjs +88 -1
- package/esm2022/model/models.mjs +3 -1
- package/esm2022/model/uploadCamadaRasterFileDTO.mjs +13 -0
- package/esm2022/model/uploadCamadaRasterFileInfoDTO.mjs +13 -0
- package/fesm2022/geosanja-geosanja-frontend-api.mjs +111 -0
- package/fesm2022/geosanja-geosanja-frontend-api.mjs.map +1 -1
- package/model/models.d.ts +2 -0
- package/model/uploadCamadaRasterFileDTO.d.ts +15 -0
- package/model/uploadCamadaRasterFileInfoDTO.d.ts +23 -0
- package/package.json +1 -1
package/api/default.service.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ import { ResultadoUnidadeGeoDTO } from '../model/resultadoUnidadeGeoDTO';
|
|
|
29
29
|
import { SaveCamadaDTO } from '../model/saveCamadaDTO';
|
|
30
30
|
import { UploadCamadaCheckCamadaNameStatus } from '../model/uploadCamadaCheckCamadaNameStatus';
|
|
31
31
|
import { UploadCamadaFileInfoDTO } from '../model/uploadCamadaFileInfoDTO';
|
|
32
|
+
import { UploadCamadaRasterFileInfoDTO } from '../model/uploadCamadaRasterFileInfoDTO';
|
|
32
33
|
import { UsuarioDTO } from '../model/usuarioDTO';
|
|
33
34
|
import { Configuration } from '../configuration';
|
|
34
35
|
import * as i0 from "@angular/core";
|
|
@@ -380,6 +381,17 @@ export declare class DefaultService {
|
|
|
380
381
|
getUsuarios(observe?: 'body', reportProgress?: boolean): Observable<Array<UsuarioDTO>>;
|
|
381
382
|
getUsuarios(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<UsuarioDTO>>>;
|
|
382
383
|
getUsuarios(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<UsuarioDTO>>>;
|
|
384
|
+
/**
|
|
385
|
+
* Verifica se as coordenadas estão dentro do limite municipal de São José dos Campos
|
|
386
|
+
*
|
|
387
|
+
* @param x
|
|
388
|
+
* @param y
|
|
389
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
390
|
+
* @param reportProgress flag to report request and response progress.
|
|
391
|
+
*/
|
|
392
|
+
isSJC(x: number, y: number, observe?: 'body', reportProgress?: boolean): Observable<boolean>;
|
|
393
|
+
isSJC(x: number, y: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<boolean>>;
|
|
394
|
+
isSJC(x: number, y: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<boolean>>;
|
|
383
395
|
/**
|
|
384
396
|
* Localização por unidade geográfica.
|
|
385
397
|
*
|
|
@@ -549,6 +561,17 @@ export declare class DefaultService {
|
|
|
549
561
|
uploadCamadaFileForm(filename: string, file: Blob, observe?: 'body', reportProgress?: boolean): Observable<UploadCamadaFileInfoDTO>;
|
|
550
562
|
uploadCamadaFileForm(filename: string, file: Blob, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<UploadCamadaFileInfoDTO>>;
|
|
551
563
|
uploadCamadaFileForm(filename: string, file: Blob, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<UploadCamadaFileInfoDTO>>;
|
|
564
|
+
/**
|
|
565
|
+
* Upload de camada na aplicação
|
|
566
|
+
*
|
|
567
|
+
* @param filename
|
|
568
|
+
* @param file
|
|
569
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
570
|
+
* @param reportProgress flag to report request and response progress.
|
|
571
|
+
*/
|
|
572
|
+
uploadCamadaRasterFileForm(filename: string, file: Blob, observe?: 'body', reportProgress?: boolean): Observable<UploadCamadaRasterFileInfoDTO>;
|
|
573
|
+
uploadCamadaRasterFileForm(filename: string, file: Blob, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<UploadCamadaRasterFileInfoDTO>>;
|
|
574
|
+
uploadCamadaRasterFileForm(filename: string, file: Blob, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<UploadCamadaRasterFileInfoDTO>>;
|
|
552
575
|
/**
|
|
553
576
|
* Upload do estilo sld na aplicação
|
|
554
577
|
*
|