@veloceapps/api 11.0.0-29 → 11.0.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/esm2020/v2/services/cache-api.service.mjs +2 -2
- package/esm2020/v2/services/configuration-processors-api.service.mjs +2 -2
- package/esm2020/v2/services/configuration-settings-api.service.mjs +2 -2
- package/esm2020/v2/services/orchestrations-api.service.mjs +2 -2
- package/esm2020/v2/services/sales-transactions-api.service.mjs +2 -2
- package/esm2020/v2/services/salesforce-api.service.mjs +2 -2
- package/fesm2015/veloceapps-api-v2.mjs +6 -6
- package/fesm2015/veloceapps-api-v2.mjs.map +1 -1
- package/fesm2020/veloceapps-api-v2.mjs +6 -6
- package/fesm2020/veloceapps-api-v2.mjs.map +1 -1
- package/package.json +1 -1
@@ -10,7 +10,7 @@ import * as i2 from 'primeng/api';
|
|
10
10
|
class CacheApiService {
|
11
11
|
constructor(httpService) {
|
12
12
|
this.httpService = httpService;
|
13
|
-
this.SERVICE_URL = '/
|
13
|
+
this.SERVICE_URL = '/v2/cache/evict';
|
14
14
|
}
|
15
15
|
clear$(name, options) {
|
16
16
|
return this.httpService.api({
|
@@ -29,7 +29,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
29
29
|
class ConfigurationProcessorsApiService {
|
30
30
|
constructor(baseHttpService) {
|
31
31
|
this.baseHttpService = baseHttpService;
|
32
|
-
this.serviceUrl = '/
|
32
|
+
this.serviceUrl = '/v2/configuration/processors/owners';
|
33
33
|
this.fetchConfigurationProcessors$ = (ownerId) => {
|
34
34
|
return this.baseHttpService.api({ url: `${this.serviceUrl}/${ownerId}` });
|
35
35
|
};
|
@@ -87,7 +87,7 @@ class ConfigurationSettingsApiService {
|
|
87
87
|
constructor(httpService, messageService) {
|
88
88
|
this.httpService = httpService;
|
89
89
|
this.messageService = messageService;
|
90
|
-
this.SERVICE_URL = '/
|
90
|
+
this.SERVICE_URL = '/v2/settings';
|
91
91
|
}
|
92
92
|
fetchSettings(options) {
|
93
93
|
return this.httpService
|
@@ -554,7 +554,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
554
554
|
class OrchestrationsApiService {
|
555
555
|
constructor(baseHttpService) {
|
556
556
|
this.baseHttpService = baseHttpService;
|
557
|
-
this.SERVICE_URL = '/
|
557
|
+
this.SERVICE_URL = '/v2/orchestrations';
|
558
558
|
}
|
559
559
|
apply$(request, options) {
|
560
560
|
return this.baseHttpService.api({
|
@@ -574,7 +574,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
574
574
|
class SalesforceApiService {
|
575
575
|
constructor(httpService) {
|
576
576
|
this.httpService = httpService;
|
577
|
-
this.SERVICE_URL = '/
|
577
|
+
this.SERVICE_URL = '/v2/proxy';
|
578
578
|
}
|
579
579
|
query(searchRequest, objectName, options) {
|
580
580
|
return this.httpService.api({
|
@@ -800,7 +800,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
800
800
|
class SalesTransactionApiService {
|
801
801
|
constructor(httpService) {
|
802
802
|
this.httpService = httpService;
|
803
|
-
this.SERVICE_URL = '/
|
803
|
+
this.SERVICE_URL = '/v2/transactions';
|
804
804
|
}
|
805
805
|
/**
|
806
806
|
* This endpoint doesn't include orders and assets
|