bb-relay 0.0.11 → 0.0.12

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
@@ -533,6 +533,7 @@ type Plugin = {
533
533
  production: Status | null;
534
534
  createdAt: string;
535
535
  updatedAt: string;
536
+ tags: string[];
536
537
  };
537
538
 
538
539
  interface FileNode {
package/dist/index.d.ts CHANGED
@@ -533,6 +533,7 @@ type Plugin = {
533
533
  production: Status | null;
534
534
  createdAt: string;
535
535
  updatedAt: string;
536
+ tags: string[];
536
537
  };
537
538
 
538
539
  interface FileNode {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bb-relay",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "For managing bb-editor extension",
5
5
  "license": "ISC",
6
6
  "author": "Ade Adeola",
@@ -17,4 +17,5 @@ export type Plugin = {
17
17
  production: Status | null;
18
18
  createdAt: string;
19
19
  updatedAt: string;
20
+ tags: string[];
20
21
  };