@veloceapps/api 8.0.0-110 → 8.0.0-112
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.
@@ -807,8 +807,8 @@ class SalesforceApiService {
|
|
807
807
|
}
|
808
808
|
apexGetRequest(path, params, options) {
|
809
809
|
// this line is needed because HttpParams instance from Integration behaves wrong in studio instance of Angular
|
810
|
-
|
811
|
-
return this.httpService.api({ url: `${this.SERVICE_URL}/apex${path}`, params, ...options });
|
810
|
+
const httpParams = new HttpParams({ fromString: params.toString() });
|
811
|
+
return this.httpService.api({ url: `${this.SERVICE_URL}/apex${path}`, params: httpParams, ...options });
|
812
812
|
}
|
813
813
|
apexPostRequest(path, body, options) {
|
814
814
|
return this.httpService.api({
|