@postgres.ai/shared 4.0.0-pr-1028.1 → 4.0.0-pr-1028

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@postgres.ai/shared",
3
- "version": "4.0.0-pr-1028.1",
3
+ "version": "4.0.0-pr-1028",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "peerDependencies": {
@@ -11,7 +11,7 @@ export declare type Api = {
11
11
  getBranches: GetBranches;
12
12
  deleteBranch: DeleteBranch;
13
13
  getSnapshotList: GetSnapshotList;
14
- initWS: InitWS;
14
+ initWS?: InitWS;
15
15
  };
16
16
  export declare class MainStore {
17
17
  getBranchError: Error | null;
@@ -13,7 +13,7 @@ export declare type Api = SnapshotsApi & {
13
13
  resetClone: ResetClone;
14
14
  destroyClone: DestroyClone;
15
15
  updateClone: UpdateClone;
16
- initWS: InitWS;
16
+ initWS?: InitWS;
17
17
  };
18
18
  declare type Error = {
19
19
  title?: string;
@@ -11,7 +11,7 @@ export declare type MainStoreApi = {
11
11
  getBranches: GetBranches;
12
12
  createBranch: CreateBranch;
13
13
  getSnapshots: GetSnapshots;
14
- initWS: InitWS;
14
+ initWS?: InitWS;
15
15
  };
16
16
  export declare class MainStore {
17
17
  snapshotsError: Error | null;
@@ -14,7 +14,7 @@ export declare type MainStoreApi = SnapshotsApi & {
14
14
  getClone: GetClone;
15
15
  getBranches?: GetBranches;
16
16
  getSnapshots?: GetSnapshots;
17
- initWS: InitWS;
17
+ initWS?: InitWS;
18
18
  };
19
19
  export declare class MainStore {
20
20
  instance: Instance | null;
@@ -7,7 +7,7 @@ declare type Error = {
7
7
  };
8
8
  export declare type MainStoreApi = InstanceStoreApi & {
9
9
  createSnapshot: CreateSnapshot;
10
- initWS: InitWS;
10
+ initWS?: InitWS;
11
11
  };
12
12
  export declare class MainStore {
13
13
  snapshotError: Error | null;
@@ -11,7 +11,7 @@ declare type Error = {
11
11
  export declare type Api = SnapshotsApi & {
12
12
  destroySnapshot: DestroySnapshot;
13
13
  getBranchSnapshot?: GetBranchSnapshot;
14
- initWS: InitWS;
14
+ initWS?: InitWS;
15
15
  };
16
16
  export declare class MainStore {
17
17
  snapshot: SnapshotDto | null;