bb-relay 0.0.8 → 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;
@@ -529,7 +529,6 @@ type Plugin = {
529
529
  installs: number;
530
530
  archived?: boolean;
531
531
  deprecated?: boolean;
532
- alpha: Status | null;
533
532
  beta: Status | null;
534
533
  production: Status | null;
535
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;
@@ -529,7 +529,6 @@ type Plugin = {
529
529
  installs: number;
530
530
  archived?: boolean;
531
531
  deprecated?: boolean;
532
- alpha: Status | null;
533
532
  beta: Status | null;
534
533
  production: Status | null;
535
534
  createdAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bb-relay",
3
- "version": "0.0.8",
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;