@veloceapps/api 11.0.0-4 → 11.0.0-5
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/lib/services/configuration-api.service.mjs +17 -4
- package/esm2020/lib/services/ui-definitions-api.service.mjs +47 -1
- package/fesm2015/veloceapps-api.mjs +59 -4
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +62 -3
- package/fesm2020/veloceapps-api.mjs.map +1 -1
- package/lib/services/configuration-api.service.d.ts +1 -1
- package/lib/services/ui-definitions-api.service.d.ts +6 -0
- package/package.json +1 -1
@@ -15,7 +15,7 @@ export declare class ConfigurationApiService {
|
|
15
15
|
configurationRequest: ConfigurationRequest;
|
16
16
|
runtimeModel?: RuntimeModel;
|
17
17
|
}): Observable<ConfigurePrice>;
|
18
|
-
getRuntimeDataByProductId(productId: string, offeringId?: string): Observable<RuntimeData>;
|
18
|
+
getRuntimeDataByProductId(productId: string, offeringId?: string, defaultUIDefinitionId?: string, requiredUIDefinitionId?: string): Observable<RuntimeData>;
|
19
19
|
getRuntimeDataByModelId(modelId: string): Observable<RuntimeData>;
|
20
20
|
private updateDomains;
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationApiService, never>;
|
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
|
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class UIDefinitionsApiService {
|
5
5
|
private baseHttpService;
|
6
|
+
private readonly serviceUrl;
|
6
7
|
constructor(baseHttpService: BaseHttpService);
|
7
8
|
fetch$(modelId: string, version?: number): Observable<UIDefinitionContainer[]>;
|
8
9
|
create$(modelId: string, uiDefinitionContainer: NewUIDefinitionContainer): Observable<UIDefinitionContainer>;
|
@@ -10,6 +11,11 @@ export declare class UIDefinitionsApiService {
|
|
10
11
|
update$(uiDefinitionContainer: UIDefinitionContainer): Observable<UIDefinitionContainer>;
|
11
12
|
delete$(uiDefinitionContainer: UIDefinitionContainer): Observable<void>;
|
12
13
|
private getServiceUrl;
|
14
|
+
fetchUIDefinitions$(): Observable<any>;
|
15
|
+
fetchUIDefinition$(id: string): Observable<any>;
|
16
|
+
createUIDefinition$(body: any): Observable<any>;
|
17
|
+
updateUIDefinition$(uiDefinition: any): Observable<any>;
|
18
|
+
deleteUIDefinition$(id: string): Observable<any>;
|
13
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIDefinitionsApiService, never>;
|
14
20
|
static ɵprov: i0.ɵɵInjectableDeclaration<UIDefinitionsApiService>;
|
15
21
|
}
|