@geosanja/geosanja-frontend-api 4.0.29 → 4.0.30
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 +5 -4
- package/esm2022/api/default.service.mjs +12 -6
- package/esm2022/model/uploadCamadaSLDFileDTO.mjs +12 -1
- package/fesm2022/geosanja-geosanja-frontend-api.mjs +23 -5
- package/fesm2022/geosanja-geosanja-frontend-api.mjs.map +1 -1
- package/model/uploadCamadaSLDFileDTO.d.ts +2 -2
- package/package.json +1 -1
package/api/default.service.d.ts
CHANGED
|
@@ -331,14 +331,15 @@ export declare class DefaultService {
|
|
|
331
331
|
/**
|
|
332
332
|
* Upload do estilo sld na aplicação
|
|
333
333
|
*
|
|
334
|
-
* @param
|
|
334
|
+
* @param filePath
|
|
335
|
+
* @param layerName
|
|
335
336
|
* @param file
|
|
336
337
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
337
338
|
* @param reportProgress flag to report request and response progress.
|
|
338
339
|
*/
|
|
339
|
-
uploadCamadaSLDFileForm(
|
|
340
|
-
uploadCamadaSLDFileForm(
|
|
341
|
-
uploadCamadaSLDFileForm(
|
|
340
|
+
uploadCamadaSLDFileForm(filePath: string, layerName: string, file: Blob, observe?: 'body', reportProgress?: boolean): Observable<UploadCamadaFileInfoDTO>;
|
|
341
|
+
uploadCamadaSLDFileForm(filePath: string, layerName: string, file: Blob, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<UploadCamadaFileInfoDTO>>;
|
|
342
|
+
uploadCamadaSLDFileForm(filePath: string, layerName: string, file: Blob, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<UploadCamadaFileInfoDTO>>;
|
|
342
343
|
/**
|
|
343
344
|
* Verifica se token de autenticação é valido.
|
|
344
345
|
*
|