bb-relay 0.0.7 → 0.0.9

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
@@ -502,7 +502,7 @@ type Release = {
502
502
  storageRef: string;
503
503
  changes: string;
504
504
  version: string;
505
- type: "production" | "beta" | "alpha" | "draft";
505
+ type: "production" | "beta" | "draft";
506
506
  slug: string;
507
507
  metadata: {
508
508
  uploadedAt: number;
@@ -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">;
@@ -527,7 +529,6 @@ type Plugin = {
527
529
  installs: number;
528
530
  archived?: boolean;
529
531
  deprecated?: boolean;
530
- alpha: Status | null;
531
532
  beta: Status | null;
532
533
  production: Status | null;
533
534
  createdAt: string;
package/dist/index.d.ts CHANGED
@@ -502,7 +502,7 @@ type Release = {
502
502
  storageRef: string;
503
503
  changes: string;
504
504
  version: string;
505
- type: "production" | "beta" | "alpha" | "draft";
505
+ type: "production" | "beta" | "draft";
506
506
  slug: string;
507
507
  metadata: {
508
508
  uploadedAt: number;
@@ -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">;
@@ -527,7 +529,6 @@ type Plugin = {
527
529
  installs: number;
528
530
  archived?: boolean;
529
531
  deprecated?: boolean;
530
- alpha: Status | null;
531
532
  beta: Status | null;
532
533
  production: Status | null;
533
534
  createdAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bb-relay",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "For managing bb-editor extension",
5
5
  "license": "ISC",
6
6
  "author": "Ade Adeola",
@@ -14,7 +14,6 @@ export type Plugin = {
14
14
  installs: number;
15
15
  archived?: boolean;
16
16
  deprecated?: boolean;
17
- alpha: Status | null;
18
17
  beta: Status | null;
19
18
  production: Status | null;
20
19
  createdAt: string;
@@ -2,7 +2,7 @@ export type Release = {
2
2
  storageRef: string;
3
3
  changes: string;
4
4
  version: string;
5
- type: "production" | "beta" | "alpha" | "draft";
5
+ type: "production" | "beta" | "draft";
6
6
  slug: string;
7
7
  metadata: {
8
8
  uploadedAt: number;
@@ -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
  };