@veloceapps/api 8.0.0-113 → 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<
|
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<
|
38
|
+
submit(id: string): Observable<{
|
39
|
+
quoteId: string;
|
40
|
+
}>;
|
37
41
|
/**
|
38
42
|
* Close Flow state
|
39
43
|
* @param id State ID
|