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