@geosanja/geosanja-frontend-api 4.6.0-build-2 → 4.6.0-build-4

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.
@@ -2,6 +2,7 @@ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/commo
2
2
  import { Observable } from 'rxjs';
3
3
  import { AdminConfigDTO } from '../model/adminConfigDTO';
4
4
  import { AdminPropriedadesCamadaDTO } from '../model/adminPropriedadesCamadaDTO';
5
+ import { AppConfigDTO } from '../model/appConfigDTO';
5
6
  import { AuditoriaCamadaConfigDTO } from '../model/auditoriaCamadaConfigDTO';
6
7
  import { AuditoriaCamadaSearchDTO } from '../model/auditoriaCamadaSearchDTO';
7
8
  import { AutenticacaoDTO } from '../model/autenticacaoDTO';
@@ -164,6 +165,15 @@ export declare class DefaultService {
164
165
  getAdminConfig(observe?: 'body', reportProgress?: boolean): Observable<AdminConfigDTO>;
165
166
  getAdminConfig(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<AdminConfigDTO>>;
166
167
  getAdminConfig(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<AdminConfigDTO>>;
168
+ /**
169
+ * Busca lista de configurações de ambiente da aplicação para funcionalidade de administração
170
+ *
171
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
172
+ * @param reportProgress flag to report request and response progress.
173
+ */
174
+ getAdminEnvConfig(observe?: 'body', reportProgress?: boolean): Observable<Array<AppConfigDTO>>;
175
+ getAdminEnvConfig(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<AppConfigDTO>>>;
176
+ getAdminEnvConfig(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<AppConfigDTO>>>;
167
177
  /**
168
178
  * Buscar configurações de dominio para pesquisa de auditoria na camada.
169
179
  *
@@ -414,6 +424,16 @@ export declare class DefaultService {
414
424
  searchEstatisticas(body: EstatisticasSearchDTO, observe?: 'body', reportProgress?: boolean): Observable<HistoricoSessoesDTO>;
415
425
  searchEstatisticas(body: EstatisticasSearchDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<HistoricoSessoesDTO>>;
416
426
  searchEstatisticas(body: EstatisticasSearchDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<HistoricoSessoesDTO>>;
427
+ /**
428
+ * Define configurações de ambiente da aplicação
429
+ *
430
+ * @param body
431
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
432
+ * @param reportProgress flag to report request and response progress.
433
+ */
434
+ setAdminEnvConfig(body: Array<AppConfigDTO>, observe?: 'body', reportProgress?: boolean): Observable<boolean>;
435
+ setAdminEnvConfig(body: Array<AppConfigDTO>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<boolean>>;
436
+ setAdminEnvConfig(body: Array<AppConfigDTO>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<boolean>>;
417
437
  /**
418
438
  * Salvar camada na aplicação
419
439
  *
@@ -435,6 +455,16 @@ export declare class DefaultService {
435
455
  setCamadaFavorita(id: number, favorita: boolean, observe?: 'body', reportProgress?: boolean): Observable<boolean>;
436
456
  setCamadaFavorita(id: number, favorita: boolean, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<boolean>>;
437
457
  setCamadaFavorita(id: number, favorita: boolean, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<boolean>>;
458
+ /**
459
+ * Buscar lista de funcionalidades para administração
460
+ *
461
+ * @param body
462
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
463
+ * @param reportProgress flag to report request and response progress.
464
+ */
465
+ setFuncionalidadesAdmin(body: Array<FuncionalidadeDTO>, observe?: 'body', reportProgress?: boolean): Observable<boolean>;
466
+ setFuncionalidadesAdmin(body: Array<FuncionalidadeDTO>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<boolean>>;
467
+ setFuncionalidadesAdmin(body: Array<FuncionalidadeDTO>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<boolean>>;
438
468
  /**
439
469
  * Salvar grupo camada na aplicação
440
470
  *