bb-relay 0.0.7 → 0.0.8

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/index.d.mts CHANGED
@@ -511,6 +511,8 @@ type Release = {
511
511
  };
512
512
  createdAt: string;
513
513
  id?: string;
514
+ updatedAt: string;
515
+ userId: string;
514
516
  };
515
517
 
516
518
  type Status = Omit<Release, "type">;
package/dist/index.d.ts CHANGED
@@ -511,6 +511,8 @@ type Release = {
511
511
  };
512
512
  createdAt: string;
513
513
  id?: string;
514
+ updatedAt: string;
515
+ userId: string;
514
516
  };
515
517
 
516
518
  type Status = Omit<Release, "type">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bb-relay",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "For managing bb-editor extension",
5
5
  "license": "ISC",
6
6
  "author": "Ade Adeola",
@@ -10,5 +10,7 @@ export type Release = {
10
10
  totalSize: number;
11
11
  };
12
12
  createdAt: string;
13
- id?: string
13
+ id?: string;
14
+ updatedAt: string;
15
+ userId: string;
14
16
  };