@veloceapps/api 9.0.0-4 → 9.0.0-6
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/esm2020/lib/services/account-api.service.mjs +2 -5
- package/esm2020/lib/services/quote-api.service.mjs +2 -2
- package/fesm2015/veloceapps-api.mjs +2 -4
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +2 -5
- package/fesm2020/veloceapps-api.mjs.map +1 -1
- package/package.json +1 -1
@@ -41,10 +41,7 @@ class AccountApiService {
|
|
41
41
|
getAssetsState(accountId, options) {
|
42
42
|
return this.httpService.api({
|
43
43
|
method: 'get',
|
44
|
-
url: `/
|
45
|
-
params: {
|
46
|
-
asset: 'true',
|
47
|
-
},
|
44
|
+
url: `/v2${this.SERVICE_URL}/${accountId}/assets`,
|
48
45
|
...options,
|
49
46
|
});
|
50
47
|
}
|
@@ -2372,7 +2369,7 @@ class QuoteApiService {
|
|
2372
2369
|
getQuoteState(objectId, params, options) {
|
2373
2370
|
return this.httpService.api({
|
2374
2371
|
method: 'get',
|
2375
|
-
url:
|
2372
|
+
url: `/v2${this.SERVICE_URL}/${objectId}`,
|
2376
2373
|
params,
|
2377
2374
|
...options,
|
2378
2375
|
});
|