@squidcloud/client 1.0.26 → 1.0.27
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.
- package/dist/common/src/backend-run.types.d.ts +1 -1
- package/dist/common/src/bundle-api.types.d.ts +0 -2
- package/dist/common/src/bundle-data.types.d.ts +0 -1
- package/dist/common/src/index.d.ts +0 -1
- package/dist/index.js +1 -1
- package/dist/package.json +1 -1
- package/dist/typescript-client/src/data.manager.d.ts +2 -0
- package/package.json +1 -1
- package/dist/common/src/executable.context.d.ts +0 -4
package/dist/package.json
CHANGED
|
@@ -63,6 +63,7 @@ export declare class DataManager {
|
|
|
63
63
|
* in the same batch are appended (and reduced) to the same outgoing mutation object.
|
|
64
64
|
*/
|
|
65
65
|
private readonly pendingOutgoingMutations;
|
|
66
|
+
private readonly pendingOutgoingMutationsChanged;
|
|
66
67
|
/**
|
|
67
68
|
* A subject for whether there are outgoing mutations. If there are outgoing mutations, any incoming update from the
|
|
68
69
|
* server will be delayed until all the outgoing mutations will be acknowledged by the server.
|
|
@@ -161,4 +162,5 @@ export declare class DataManager {
|
|
|
161
162
|
private setExpiration;
|
|
162
163
|
private forgetDocument;
|
|
163
164
|
private migrateDocIds;
|
|
165
|
+
private hasPendingSentMutations;
|
|
164
166
|
}
|
package/package.json
CHANGED