@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.
- package/api/default.service.d.ts +12 -0
- package/esm2022/api/default.service.mjs +55 -1
- package/esm2022/model/models.mjs +4 -1
- package/esm2022/model/uploadCamadaFileDTO.mjs +13 -0
- package/esm2022/model/uploadCamadaFileInfoDTO.mjs +2 -0
- package/esm2022/model/uploadCamadaFileInfoDTOFields.mjs +13 -0
- package/fesm2022/geosanja-geosanja-frontend-api.mjs +78 -0
- package/fesm2022/geosanja-geosanja-frontend-api.mjs.map +1 -1
- package/model/models.d.ts +3 -0
- package/model/uploadCamadaFileDTO.d.ts +15 -0
- package/model/uploadCamadaFileInfoDTO.d.ts +29 -0
- package/model/uploadCamadaFileInfoDTOFields.d.ts +15 -0
- package/package.json +1 -1
package/api/default.service.d.ts
CHANGED
|
@@ -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
|
*
|