@geosanja/geosanja-frontend-api 4.0.24 → 4.0.26
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 +35 -1
- package/esm2022/model/adminPropriedadesCamadaDTO.mjs +2 -0
- package/esm2022/model/camadaPropriedadeDTO.mjs +1 -1
- package/esm2022/model/models.mjs +3 -1
- package/esm2022/model/saveCamadaDTO.mjs +2 -0
- package/fesm2022/geosanja-geosanja-frontend-api.mjs +34 -0
- package/fesm2022/geosanja-geosanja-frontend-api.mjs.map +1 -1
- package/model/adminPropriedadesCamadaDTO.d.ts +16 -0
- package/model/camadaPropriedadeDTO.d.ts +1 -0
- package/model/models.d.ts +2 -0
- package/model/saveCamadaDTO.d.ts +17 -0
- package/package.json +1 -1
package/api/default.service.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { AdminConfigDTO } from '../model/adminConfigDTO';
|
|
4
|
+
import { AdminPropriedadesCamadaDTO } from '../model/adminPropriedadesCamadaDTO';
|
|
4
5
|
import { AutenticacaoDTO } from '../model/autenticacaoDTO';
|
|
5
6
|
import { CamadaDTO } from '../model/camadaDTO';
|
|
6
7
|
import { CamadaPropriedadeDTO } from '../model/camadaPropriedadeDTO';
|
|
@@ -12,6 +13,7 @@ import { GrupoCamadaDTO } from '../model/grupoCamadaDTO';
|
|
|
12
13
|
import { LocalizarUnidadeGeoDTO } from '../model/localizarUnidadeGeoDTO';
|
|
13
14
|
import { PerfilDTO } from '../model/perfilDTO';
|
|
14
15
|
import { ResultadoUnidadeGeoDTO } from '../model/resultadoUnidadeGeoDTO';
|
|
16
|
+
import { SaveCamadaDTO } from '../model/saveCamadaDTO';
|
|
15
17
|
import { UsuarioDTO } from '../model/usuarioDTO';
|
|
16
18
|
import { Configuration } from '../configuration';
|
|
17
19
|
import * as i0 from "@angular/core";
|
|
@@ -236,6 +238,16 @@ export declare class DefaultService {
|
|
|
236
238
|
getPropriedadesCamada(id: string, observe?: 'body', reportProgress?: boolean): Observable<Array<CamadaPropriedadeDTO>>;
|
|
237
239
|
getPropriedadesCamada(id: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<CamadaPropriedadeDTO>>>;
|
|
238
240
|
getPropriedadesCamada(id: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<CamadaPropriedadeDTO>>>;
|
|
241
|
+
/**
|
|
242
|
+
* Buscar lista de propriedades para a camada ou grupo de camadas para administração.
|
|
243
|
+
*
|
|
244
|
+
* @param id
|
|
245
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
246
|
+
* @param reportProgress flag to report request and response progress.
|
|
247
|
+
*/
|
|
248
|
+
getPropriedadesCamadaAdmin(id: number, observe?: 'body', reportProgress?: boolean): Observable<Array<AdminPropriedadesCamadaDTO>>;
|
|
249
|
+
getPropriedadesCamadaAdmin(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<AdminPropriedadesCamadaDTO>>>;
|
|
250
|
+
getPropriedadesCamadaAdmin(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<AdminPropriedadesCamadaDTO>>>;
|
|
239
251
|
/**
|
|
240
252
|
* Buscar lista de usuários da aplicação
|
|
241
253
|
*
|
|
@@ -271,9 +283,9 @@ export declare class DefaultService {
|
|
|
271
283
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
272
284
|
* @param reportProgress flag to report request and response progress.
|
|
273
285
|
*/
|
|
274
|
-
setCamada(body:
|
|
275
|
-
setCamada(body:
|
|
276
|
-
setCamada(body:
|
|
286
|
+
setCamada(body: SaveCamadaDTO, observe?: 'body', reportProgress?: boolean): Observable<boolean>;
|
|
287
|
+
setCamada(body: SaveCamadaDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<boolean>>;
|
|
288
|
+
setCamada(body: SaveCamadaDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<boolean>>;
|
|
277
289
|
/**
|
|
278
290
|
* Salvar grupo camada na aplicação
|
|
279
291
|
*
|