@veloceapps/api 4.0.5 → 4.0.7
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/bundles/veloce-api.umd.js +1 -1
- package/bundles/veloce-api.umd.js.map +1 -1
- package/esm2015/lib/services/salesforce-api.service.js +3 -3
- package/esm2015/lib/types/dto/configuration-dto.types.js +1 -1
- package/fesm2015/veloce-api.js +2 -2
- package/fesm2015/veloce-api.js.map +1 -1
- package/lib/types/dto/configuration-dto.types.d.ts +4 -4
- package/package.json +1 -1
@@ -1306,7 +1306,7 @@
|
|
1306
1306
|
SalesforceApiService.prototype.queryObjects = function (search, options) {
|
1307
1307
|
var params = new i5.HttpParams();
|
1308
1308
|
if (search) {
|
1309
|
-
params.append('search', search);
|
1309
|
+
params = params.append('search', search);
|
1310
1310
|
}
|
1311
1311
|
return this.httpService.api(Object.assign({ url: this.SERVICE_URL + "/query", params: params }, options));
|
1312
1312
|
};
|