@veloceapps/api 6.0.0-91 → 6.0.0-92
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/veloceapps-api.umd.js +2 -2
- package/bundles/veloceapps-api.umd.js.map +1 -1
- package/esm2015/lib/services/guided-sellings-admin-api.service.js +3 -3
- package/esm2015/lib/services/guided-sellings-api.service.js +1 -1
- package/fesm2015/veloceapps-api.js +2 -2
- package/fesm2015/veloceapps-api.js.map +1 -1
- package/lib/services/guided-sellings-api.service.d.ts +2 -2
- package/package.json +1 -1
@@ -1423,11 +1423,11 @@
|
|
1423
1423
|
this.serviceUrl = '/guided-sellings';
|
1424
1424
|
this.fetchGuidedSellings$ = function (searchParams) {
|
1425
1425
|
var params = new i4.HttpParams({ fromObject: Object.assign({}, searchParams) });
|
1426
|
-
return rxjs.of([{ id: '1', name: 'test', description: 'test' }]);
|
1426
|
+
return rxjs.of([{ id: '1', name: 'test', description: 'test', configurationJson: '[]' }]);
|
1427
1427
|
// return this.baseHttpService.api({ url: `${this.serviceUrl}`, params });
|
1428
1428
|
};
|
1429
1429
|
this.searchGuidedSellings$ = function (searchParams, expression) {
|
1430
|
-
return rxjs.of([{ id: '1', name: 'test', description: 'test' }]);
|
1430
|
+
return rxjs.of([{ id: '1', name: 'test', description: 'test', configurationJson: '[]' }]);
|
1431
1431
|
var params = new i4.HttpParams({ fromObject: Object.assign({}, searchParams) });
|
1432
1432
|
return _this.baseHttpService.api({
|
1433
1433
|
method: 'post',
|