@geosanja/geosanja-frontend-api 4.5.0-build1 → 4.6.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.
@@ -19,6 +19,7 @@ import { HistoricoCamadaDTO } from '../model/historicoCamadaDTO';
19
19
  import { HistoricoSessoesDTO } from '../model/historicoSessoesDTO';
20
20
  import { LocalizarUnidadeGeoDTO } from '../model/localizarUnidadeGeoDTO';
21
21
  import { PerfilDTO } from '../model/perfilDTO';
22
+ import { ProjectionDTO } from '../model/projectionDTO';
22
23
  import { ResultadoUnidadeGeoDTO } from '../model/resultadoUnidadeGeoDTO';
23
24
  import { SaveCamadaDTO } from '../model/saveCamadaDTO';
24
25
  import { UploadCamadaCheckCamadaNameStatus } from '../model/uploadCamadaCheckCamadaNameStatus';
@@ -61,13 +62,14 @@ export declare class DefaultService {
61
62
  * Upload e conversão de arquivos temporários para GeoJSON
62
63
  *
63
64
  * @param fileName
65
+ * @param epsgCode
64
66
  * @param file
65
67
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
66
68
  * @param reportProgress flag to report request and response progress.
67
69
  */
68
- convertTempGeoFileForm(fileName: string, file: Blob, observe?: 'body', reportProgress?: boolean): Observable<ConvertedTempGeoFileDTO>;
69
- convertTempGeoFileForm(fileName: string, file: Blob, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ConvertedTempGeoFileDTO>>;
70
- convertTempGeoFileForm(fileName: string, file: Blob, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ConvertedTempGeoFileDTO>>;
70
+ convertTempGeoFileForm(fileName: string, epsgCode: string, file: Blob, observe?: 'body', reportProgress?: boolean): Observable<ConvertedTempGeoFileDTO>;
71
+ convertTempGeoFileForm(fileName: string, epsgCode: string, file: Blob, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ConvertedTempGeoFileDTO>>;
72
+ convertTempGeoFileForm(fileName: string, epsgCode: string, file: Blob, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ConvertedTempGeoFileDTO>>;
71
73
  /**
72
74
  * Delete camada da aplicação
73
75
  *
@@ -296,6 +298,16 @@ export declare class DefaultService {
296
298
  getPerfisPorCamadaAdmin(camadaId?: number, observe?: 'body', reportProgress?: boolean): Observable<Array<PerfilDTO>>;
297
299
  getPerfisPorCamadaAdmin(camadaId?: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<PerfilDTO>>>;
298
300
  getPerfisPorCamadaAdmin(camadaId?: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<PerfilDTO>>>;
301
+ /**
302
+ * Buscar projeções disponiveis.
303
+ *
304
+ * @param epsgCode
305
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
306
+ * @param reportProgress flag to report request and response progress.
307
+ */
308
+ getProjection(epsgCode?: string, observe?: 'body', reportProgress?: boolean): Observable<Array<ProjectionDTO>>;
309
+ getProjection(epsgCode?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<ProjectionDTO>>>;
310
+ getProjection(epsgCode?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<ProjectionDTO>>>;
299
311
  /**
300
312
  * Buscar lista de proprieades das camadas e suas configurações.
301
313
  *
@@ -412,6 +424,17 @@ export declare class DefaultService {
412
424
  setCamada(body: SaveCamadaDTO, observe?: 'body', reportProgress?: boolean): Observable<boolean>;
413
425
  setCamada(body: SaveCamadaDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<boolean>>;
414
426
  setCamada(body: SaveCamadaDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<boolean>>;
427
+ /**
428
+ * Configura camada favorita.
429
+ *
430
+ * @param id
431
+ * @param favorita
432
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
433
+ * @param reportProgress flag to report request and response progress.
434
+ */
435
+ setCamadaFavorita(id: number, favorita: boolean, observe?: 'body', reportProgress?: boolean): Observable<boolean>;
436
+ setCamadaFavorita(id: number, favorita: boolean, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<boolean>>;
437
+ setCamadaFavorita(id: number, favorita: boolean, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<boolean>>;
415
438
  /**
416
439
  * Salvar grupo camada na aplicação
417
440
  *