@geosanja/geosanja-frontend-api 4.4.0-build-2 → 4.5.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 +86 -1
- package/esm2022/model/convertedTempGeoFileDTO.mjs +13 -0
- package/esm2022/model/models.mjs +4 -1
- package/esm2022/model/projectionDTO.mjs +13 -0
- package/esm2022/model/tempGeoFileDTO.mjs +13 -0
- package/fesm2022/geosanja-geosanja-frontend-api.mjs +121 -0
- package/fesm2022/geosanja-geosanja-frontend-api.mjs.map +1 -1
- package/model/convertedTempGeoFileDTO.d.ts +22 -0
- package/model/models.d.ts +3 -0
- package/model/projectionDTO.d.ts +15 -0
- package/model/tempGeoFileDTO.d.ts +15 -0
- package/package.json +1 -1
package/api/default.service.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { AutenticacaoDTO } from '../model/autenticacaoDTO';
|
|
|
8
8
|
import { CamadaDTO } from '../model/camadaDTO';
|
|
9
9
|
import { CamadaPropriedadeDTO } from '../model/camadaPropriedadeDTO';
|
|
10
10
|
import { ConfigDTO } from '../model/configDTO';
|
|
11
|
+
import { ConvertedTempGeoFileDTO } from '../model/convertedTempGeoFileDTO';
|
|
11
12
|
import { EditAttributesDTO } from '../model/editAttributesDTO';
|
|
12
13
|
import { EditionOperationsDTO } from '../model/editionOperationsDTO';
|
|
13
14
|
import { EstatisticasConfigDTO } from '../model/estatisticasConfigDTO';
|
|
@@ -18,6 +19,7 @@ import { HistoricoCamadaDTO } from '../model/historicoCamadaDTO';
|
|
|
18
19
|
import { HistoricoSessoesDTO } from '../model/historicoSessoesDTO';
|
|
19
20
|
import { LocalizarUnidadeGeoDTO } from '../model/localizarUnidadeGeoDTO';
|
|
20
21
|
import { PerfilDTO } from '../model/perfilDTO';
|
|
22
|
+
import { ProjectionDTO } from '../model/projectionDTO';
|
|
21
23
|
import { ResultadoUnidadeGeoDTO } from '../model/resultadoUnidadeGeoDTO';
|
|
22
24
|
import { SaveCamadaDTO } from '../model/saveCamadaDTO';
|
|
23
25
|
import { UploadCamadaCheckCamadaNameStatus } from '../model/uploadCamadaCheckCamadaNameStatus';
|
|
@@ -56,6 +58,17 @@ export declare class DefaultService {
|
|
|
56
58
|
checkCamadaNameStatus(name: string, observe?: 'body', reportProgress?: boolean): Observable<Array<UploadCamadaCheckCamadaNameStatus>>;
|
|
57
59
|
checkCamadaNameStatus(name: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<UploadCamadaCheckCamadaNameStatus>>>;
|
|
58
60
|
checkCamadaNameStatus(name: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<UploadCamadaCheckCamadaNameStatus>>>;
|
|
61
|
+
/**
|
|
62
|
+
* Upload e conversão de arquivos temporários para GeoJSON
|
|
63
|
+
*
|
|
64
|
+
* @param fileName
|
|
65
|
+
* @param file
|
|
66
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
67
|
+
* @param reportProgress flag to report request and response progress.
|
|
68
|
+
*/
|
|
69
|
+
convertTempGeoFileForm(fileName: string, file: Blob, observe?: 'body', reportProgress?: boolean): Observable<ConvertedTempGeoFileDTO>;
|
|
70
|
+
convertTempGeoFileForm(fileName: string, file: Blob, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ConvertedTempGeoFileDTO>>;
|
|
71
|
+
convertTempGeoFileForm(fileName: string, file: Blob, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ConvertedTempGeoFileDTO>>;
|
|
59
72
|
/**
|
|
60
73
|
* Delete camada da aplicação
|
|
61
74
|
*
|
|
@@ -284,6 +297,16 @@ export declare class DefaultService {
|
|
|
284
297
|
getPerfisPorCamadaAdmin(camadaId?: number, observe?: 'body', reportProgress?: boolean): Observable<Array<PerfilDTO>>;
|
|
285
298
|
getPerfisPorCamadaAdmin(camadaId?: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<PerfilDTO>>>;
|
|
286
299
|
getPerfisPorCamadaAdmin(camadaId?: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<PerfilDTO>>>;
|
|
300
|
+
/**
|
|
301
|
+
* Buscar projeções disponiveis.
|
|
302
|
+
*
|
|
303
|
+
* @param epsgCode
|
|
304
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
305
|
+
* @param reportProgress flag to report request and response progress.
|
|
306
|
+
*/
|
|
307
|
+
getProjection(epsgCode?: string, observe?: 'body', reportProgress?: boolean): Observable<Array<ProjectionDTO>>;
|
|
308
|
+
getProjection(epsgCode?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<ProjectionDTO>>>;
|
|
309
|
+
getProjection(epsgCode?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<ProjectionDTO>>>;
|
|
287
310
|
/**
|
|
288
311
|
* Buscar lista de proprieades das camadas e suas configurações.
|
|
289
312
|
*
|