@geosanja/geosanja-frontend-api 4.7.0-build-3 → 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.
@@ -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
  *