@veltdev/sdk 1.0.154 → 1.0.156
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.
|
@@ -10,13 +10,13 @@ export declare class LiveStateSyncElement {
|
|
|
10
10
|
/**
|
|
11
11
|
* Gets live state data based on the provided ID.
|
|
12
12
|
*/
|
|
13
|
-
getLiveStateData: (liveStateDataId?: string) => Observable<any>;
|
|
13
|
+
getLiveStateData: (liveStateDataId?: string, listenToNewChangesOnly?: boolean) => Observable<any>;
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* Gets live state data as an observable based on the provided ID.
|
|
17
17
|
* @deprecated Use `getLiveStateData` instead
|
|
18
18
|
*/
|
|
19
|
-
getLiveStateData$: (liveStateDataId?: string) => Observable<any>;
|
|
19
|
+
getLiveStateData$: (liveStateDataId?: string, listenToNewChangesOnly?: boolean) => Observable<any>;
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
22
|
* Sets live state data for the provided ID and data.
|