@veloceapps/api 8.0.0-112 → 8.0.0-114

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.
@@ -28,12 +28,16 @@ export declare class FlowStateApiService {
28
28
  * Save Quote in the state
29
29
  * @param id State ID
30
30
  */
31
- save(id: string): Observable<void>;
31
+ save(id: string): Observable<{
32
+ quoteId: string;
33
+ }>;
32
34
  /**
33
35
  * Submit Quote in the state
34
36
  * @param id State ID
35
37
  */
36
- submit(id: string): Observable<void>;
38
+ submit(id: string): Observable<{
39
+ quoteId: string;
40
+ }>;
37
41
  /**
38
42
  * Close Flow state
39
43
  * @param id State ID
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloceapps/api",
3
- "version": "8.0.0-112",
3
+ "version": "8.0.0-114",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "~15.2.0",