@geosanja/geosanja-frontend-api 4.0.18 → 4.0.19

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.
@@ -5,6 +5,7 @@ import { CamadaDTO } from '../model/camadaDTO';
5
5
  import { CamadaPropriedadeDTO } from '../model/camadaPropriedadeDTO';
6
6
  import { ConfigDTO } from '../model/configDTO';
7
7
  import { EditAttributesDTO } from '../model/editAttributesDTO';
8
+ import { EditionOperationsDTO } from '../model/editionOperationsDTO';
8
9
  import { FuncionalidadeDTO } from '../model/funcionalidadeDTO';
9
10
  import { GrupoCamadaDTO } from '../model/grupoCamadaDTO';
10
11
  import { LocalizarUnidadeGeoDTO } from '../model/localizarUnidadeGeoDTO';
@@ -75,6 +76,16 @@ export declare class DefaultService {
75
76
  editAttributes(body?: EditAttributesDTO, observe?: 'body', reportProgress?: boolean): Observable<string>;
76
77
  editAttributes(body?: EditAttributesDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<string>>;
77
78
  editAttributes(body?: EditAttributesDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<string>>;
79
+ /**
80
+ * Operações de edição de feições de camadas.
81
+ *
82
+ * @param body
83
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
84
+ * @param reportProgress flag to report request and response progress.
85
+ */
86
+ executeEditionOperations(body?: EditionOperationsDTO, observe?: 'body', reportProgress?: boolean): Observable<EditionOperationsDTO>;
87
+ executeEditionOperations(body?: EditionOperationsDTO, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<EditionOperationsDTO>>;
88
+ executeEditionOperations(body?: EditionOperationsDTO, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<EditionOperationsDTO>>;
78
89
  /**
79
90
  * Serviço para exportar o mapa e legendas para PDF.
80
91
  *