@geosanja/geosanja-frontend-api 4.7.0-build-2 → 4.7.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.
- package/api/default.service.d.ts +20 -0
- package/esm2022/api/default.service.mjs +74 -1
- package/esm2022/model/coordenadaDTO.mjs +13 -0
- package/esm2022/model/kVParameterDTO.mjs +13 -0
- package/esm2022/model/layerSpatialRelationDTO.mjs +1 -12
- package/esm2022/model/lineStringDTO.mjs +2 -0
- package/esm2022/model/memorialDescritivoConfigurationDTO.mjs +2 -0
- package/esm2022/model/memorialDescritivoConfrontateDTO.mjs +2 -0
- package/esm2022/model/memorialDescritivoSegmentoDTO.mjs +2 -0
- package/esm2022/model/memorialDescritivoVerticeDTO.mjs +2 -0
- package/esm2022/model/models.mjs +8 -1
- package/fesm2022/geosanja-geosanja-frontend-api.mjs +85 -0
- package/fesm2022/geosanja-geosanja-frontend-api.mjs.map +1 -1
- package/model/coordenadaDTO.d.ts +15 -0
- package/model/kVParameterDTO.d.ts +15 -0
- package/model/layerSpatialRelationDTO.d.ts +2 -0
- package/model/lineStringDTO.d.ts +15 -0
- package/model/memorialDescritivoConfigurationDTO.d.ts +24 -0
- package/model/memorialDescritivoConfrontateDTO.d.ts +17 -0
- package/model/memorialDescritivoSegmentoDTO.d.ts +17 -0
- package/model/memorialDescritivoVerticeDTO.d.ts +17 -0
- package/model/models.d.ts +7 -0
- package/package.json +1 -1
package/api/default.service.d.ts
CHANGED
|
@@ -22,6 +22,9 @@ import { HistoricoSessoesDTO } from '../model/historicoSessoesDTO';
|
|
|
22
22
|
import { IconDTO } from '../model/iconDTO';
|
|
23
23
|
import { LayerSpatialRelationDTO } from '../model/layerSpatialRelationDTO';
|
|
24
24
|
import { LocalizarUnidadeGeoDTO } from '../model/localizarUnidadeGeoDTO';
|
|
25
|
+
import { MemorialDescritivoConfrontateDTO } from '../model/memorialDescritivoConfrontateDTO';
|
|
26
|
+
import { MemorialDescritivoSegmentoDTO } from '../model/memorialDescritivoSegmentoDTO';
|
|
27
|
+
import { MemorialDescritivoVerticeDTO } from '../model/memorialDescritivoVerticeDTO';
|
|
25
28
|
import { PerfilDTO } from '../model/perfilDTO';
|
|
26
29
|
import { ProjectionDTO } from '../model/projectionDTO';
|
|
27
30
|
import { ResultadoUnidadeGeoDTO } from '../model/resultadoUnidadeGeoDTO';
|
|
@@ -145,6 +148,23 @@ export declare class DefaultService {
|
|
|
145
148
|
executeEditionOperations(body?: EditionOperationsDTO, observe?: 'body', reportProgress?: boolean): Observable<EditionOperationsDTO>;
|
|
146
149
|
executeEditionOperations(body?: EditionOperationsDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<EditionOperationsDTO>>;
|
|
147
150
|
executeEditionOperations(body?: EditionOperationsDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<EditionOperationsDTO>>;
|
|
151
|
+
/**
|
|
152
|
+
* Serviço para exportar o memorial descritivo genérico e lotes para PDF.
|
|
153
|
+
*
|
|
154
|
+
* @param isGeneric
|
|
155
|
+
* @param vertices
|
|
156
|
+
* @param segmentos
|
|
157
|
+
* @param confrontantes
|
|
158
|
+
* @param mapImage
|
|
159
|
+
* @param area
|
|
160
|
+
* @param perimetro
|
|
161
|
+
* @param logradouroNome
|
|
162
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
163
|
+
* @param reportProgress flag to report request and response progress.
|
|
164
|
+
*/
|
|
165
|
+
exportMemorialDescritivoForm(isGeneric?: boolean, vertices?: Array<MemorialDescritivoVerticeDTO>, segmentos?: Array<MemorialDescritivoSegmentoDTO>, confrontantes?: Array<MemorialDescritivoConfrontateDTO>, mapImage?: Blob, area?: number, perimetro?: number, logradouroNome?: string, observe?: 'body', reportProgress?: boolean): Observable<Blob>;
|
|
166
|
+
exportMemorialDescritivoForm(isGeneric?: boolean, vertices?: Array<MemorialDescritivoVerticeDTO>, segmentos?: Array<MemorialDescritivoSegmentoDTO>, confrontantes?: Array<MemorialDescritivoConfrontateDTO>, mapImage?: Blob, area?: number, perimetro?: number, logradouroNome?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Blob>>;
|
|
167
|
+
exportMemorialDescritivoForm(isGeneric?: boolean, vertices?: Array<MemorialDescritivoVerticeDTO>, segmentos?: Array<MemorialDescritivoSegmentoDTO>, confrontantes?: Array<MemorialDescritivoConfrontateDTO>, mapImage?: Blob, area?: number, perimetro?: number, logradouroNome?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Blob>>;
|
|
148
168
|
/**
|
|
149
169
|
* Serviço para exportar o mapa e legendas para PDF.
|
|
150
170
|
*
|