@geosanja/geosanja-frontend-api 4.2.0-build-7 → 4.2.0-build-9
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 +15 -3
- package/esm2022/api/default.service.mjs +39 -3
- package/esm2022/model/auditoriaCamadaSearchDTO.mjs +13 -0
- package/esm2022/model/historicoCamadaDTO.mjs +13 -0
- package/esm2022/model/models.mjs +3 -1
- package/fesm2022/geosanja-geosanja-frontend-api.mjs +62 -2
- package/fesm2022/geosanja-geosanja-frontend-api.mjs.map +1 -1
- package/model/auditoriaCamadaSearchDTO.d.ts +18 -0
- package/model/historicoCamadaDTO.d.ts +26 -0
- package/model/models.d.ts +2 -0
- package/package.json +1 -1
package/api/default.service.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
|
|
|
3
3
|
import { AdminConfigDTO } from '../model/adminConfigDTO';
|
|
4
4
|
import { AdminPropriedadesCamadaDTO } from '../model/adminPropriedadesCamadaDTO';
|
|
5
5
|
import { AuditoriaCamadaConfigDTO } from '../model/auditoriaCamadaConfigDTO';
|
|
6
|
+
import { AuditoriaCamadaSearchDTO } from '../model/auditoriaCamadaSearchDTO';
|
|
6
7
|
import { AutenticacaoDTO } from '../model/autenticacaoDTO';
|
|
7
8
|
import { CamadaDTO } from '../model/camadaDTO';
|
|
8
9
|
import { CamadaPropriedadeDTO } from '../model/camadaPropriedadeDTO';
|
|
@@ -11,6 +12,7 @@ import { EditAttributesDTO } from '../model/editAttributesDTO';
|
|
|
11
12
|
import { EditionOperationsDTO } from '../model/editionOperationsDTO';
|
|
12
13
|
import { FuncionalidadeDTO } from '../model/funcionalidadeDTO';
|
|
13
14
|
import { GrupoCamadaDTO } from '../model/grupoCamadaDTO';
|
|
15
|
+
import { HistoricoCamadaDTO } from '../model/historicoCamadaDTO';
|
|
14
16
|
import { LocalizarUnidadeGeoDTO } from '../model/localizarUnidadeGeoDTO';
|
|
15
17
|
import { PerfilDTO } from '../model/perfilDTO';
|
|
16
18
|
import { ResultadoUnidadeGeoDTO } from '../model/resultadoUnidadeGeoDTO';
|
|
@@ -68,9 +70,9 @@ export declare class DefaultService {
|
|
|
68
70
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
69
71
|
* @param reportProgress flag to report request and response progress.
|
|
70
72
|
*/
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
73
|
+
deleteGrupoCamada(body: GrupoCamadaDTO, observe?: 'body', reportProgress?: boolean): Observable<boolean>;
|
|
74
|
+
deleteGrupoCamada(body: GrupoCamadaDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<boolean>>;
|
|
75
|
+
deleteGrupoCamada(body: GrupoCamadaDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<boolean>>;
|
|
74
76
|
/**
|
|
75
77
|
* Delete perfil da aplicação
|
|
76
78
|
*
|
|
@@ -308,6 +310,16 @@ export declare class DefaultService {
|
|
|
308
310
|
saveUploadCamadaFile(body: UploadCamadaFileInfoDTO, observe?: 'body', reportProgress?: boolean): Observable<any>;
|
|
309
311
|
saveUploadCamadaFile(body: UploadCamadaFileInfoDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<any>>;
|
|
310
312
|
saveUploadCamadaFile(body: UploadCamadaFileInfoDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<any>>;
|
|
313
|
+
/**
|
|
314
|
+
* Pesquisa de auditorias nas camadas.
|
|
315
|
+
*
|
|
316
|
+
* @param body
|
|
317
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
318
|
+
* @param reportProgress flag to report request and response progress.
|
|
319
|
+
*/
|
|
320
|
+
searchAuditoriaCamadas(body: AuditoriaCamadaSearchDTO, observe?: 'body', reportProgress?: boolean): Observable<Array<HistoricoCamadaDTO>>;
|
|
321
|
+
searchAuditoriaCamadas(body: AuditoriaCamadaSearchDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<HistoricoCamadaDTO>>>;
|
|
322
|
+
searchAuditoriaCamadas(body: AuditoriaCamadaSearchDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<HistoricoCamadaDTO>>>;
|
|
311
323
|
/**
|
|
312
324
|
* Salvar camada na aplicação
|
|
313
325
|
*
|