@geosanja/geosanja-frontend-api 4.0.32 → 4.0.34

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 { UploadCamadaCheckCamadaNameStatus } from '../model/uploadCamadaCheckCamadaNameStatus';
17
18
  import { UploadCamadaFileInfoDTO } from '../model/uploadCamadaFileInfoDTO';
18
19
  import { UsuarioDTO } from '../model/usuarioDTO';
19
20
  import { Configuration } from '../configuration';
@@ -39,6 +40,16 @@ export declare class DefaultService {
39
40
  autenticar(token: string, observe?: 'body', reportProgress?: boolean): Observable<AutenticacaoDTO>;
40
41
  autenticar(token: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<AutenticacaoDTO>>;
41
42
  autenticar(token: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<AutenticacaoDTO>>;
43
+ /**
44
+ * Verifica se o nome da camada/tabela pode ser usado.
45
+ *
46
+ * @param name
47
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
48
+ * @param reportProgress flag to report request and response progress.
49
+ */
50
+ checkCamadaNameStatus(name: string, observe?: 'body', reportProgress?: boolean): Observable<Array<UploadCamadaCheckCamadaNameStatus>>;
51
+ checkCamadaNameStatus(name: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<UploadCamadaCheckCamadaNameStatus>>>;
52
+ checkCamadaNameStatus(name: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<UploadCamadaCheckCamadaNameStatus>>>;
42
53
  /**
43
54
  * Delete camada da aplicação
44
55
  *