@veloceapps/api 11.0.0-4 → 11.0.0-5

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.
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloceapps/api",
3
- "version": "11.0.0-4",
3
+ "version": "11.0.0-5",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "~15.2.0",