@geosanja/geosanja-frontend-api 4.0.26 → 4.0.27

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.
@@ -14,6 +14,7 @@ import { LocalizarUnidadeGeoDTO } from '../model/localizarUnidadeGeoDTO';
14
14
  import { PerfilDTO } from '../model/perfilDTO';
15
15
  import { ResultadoUnidadeGeoDTO } from '../model/resultadoUnidadeGeoDTO';
16
16
  import { SaveCamadaDTO } from '../model/saveCamadaDTO';
17
+ import { UploadCamadaFileInfoDTO } from '../model/uploadCamadaFileInfoDTO';
17
18
  import { UsuarioDTO } from '../model/usuarioDTO';
18
19
  import { Configuration } from '../configuration';
19
20
  import * as i0 from "@angular/core";
@@ -316,6 +317,17 @@ export declare class DefaultService {
316
317
  setUsuario(body: UsuarioDTO, observe?: 'body', reportProgress?: boolean): Observable<boolean>;
317
318
  setUsuario(body: UsuarioDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<boolean>>;
318
319
  setUsuario(body: UsuarioDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<boolean>>;
320
+ /**
321
+ * Upload de camada na aplicação
322
+ *
323
+ * @param filename
324
+ * @param file
325
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
326
+ * @param reportProgress flag to report request and response progress.
327
+ */
328
+ uploadCamadaFileForm(filename: string, file: Blob, observe?: 'body', reportProgress?: boolean): Observable<UploadCamadaFileInfoDTO>;
329
+ uploadCamadaFileForm(filename: string, file: Blob, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<UploadCamadaFileInfoDTO>>;
330
+ uploadCamadaFileForm(filename: string, file: Blob, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<UploadCamadaFileInfoDTO>>;
319
331
  /**
320
332
  * Verifica se token de autenticação é valido.
321
333
  *