bb-relay 0.0.46 → 0.0.47

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.
@@ -45,6 +45,7 @@ type BaseRelease = {
45
45
  name: string;
46
46
  rating: number;
47
47
  reviews: number;
48
+ tags: string[];
48
49
  };
49
50
  type Release = Wrapper<BaseRelease>;
50
51
 
@@ -45,6 +45,7 @@ type BaseRelease = {
45
45
  name: string;
46
46
  rating: number;
47
47
  reviews: number;
48
+ tags: string[];
48
49
  };
49
50
  type Release = Wrapper<BaseRelease>;
50
51
 
package/dist/index.d.mts CHANGED
@@ -36,6 +36,7 @@ type Manifest = {
36
36
  icons?: string;
37
37
  theme?: string;
38
38
  entry?: string;
39
+ tags?: string[];
39
40
  [key: string]: unknown;
40
41
  };
41
42
 
package/dist/index.d.ts CHANGED
@@ -36,6 +36,7 @@ type Manifest = {
36
36
  icons?: string;
37
37
  theme?: string;
38
38
  entry?: string;
39
+ tags?: string[];
39
40
  [key: string]: unknown;
40
41
  };
41
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bb-relay",
3
- "version": "0.0.46",
3
+ "version": "0.0.47",
4
4
  "description": "For managing bb-editor extension",
5
5
  "license": "ISC",
6
6
  "author": "Ade Adeola",
@@ -23,6 +23,7 @@ type BaseRelease = {
23
23
  name: string;
24
24
  rating: number;
25
25
  reviews: number;
26
+ tags: string[];
26
27
  };
27
28
 
28
29
  export type Release = Wrapper<BaseRelease>;
@@ -26,5 +26,6 @@ export type Manifest = {
26
26
  icons?: string;
27
27
  theme?: string;
28
28
  entry?: string;
29
+ tags?: string[];
29
30
  [key: string]: unknown;
30
31
  };