bb-relay 0.0.10 → 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 {
@@ -563,6 +564,8 @@ type Rating = {
563
564
  comment?: string;
564
565
  createdAt: string;
565
566
  updatedAt?: string;
567
+ username: string;
568
+ avatar?: string;
566
569
  };
567
570
 
568
571
  export { type BBEvent, type BBRequest, type Checkpoint, type CopyArg, type DirInfo, type DirectoryContents, type DirectoryStats, type EventReturn, type FileContent, type FileInfo, type GitFileStatus, type IconArg, type Language, type Load, type Locale, type MenuContent, type Nav, type Plugin, type Project, type Rating, type Release, type RenameType, type RequestReturn, type Result, type Route, type Settings, type TutorialHeader, type User, type ValidateManifestProp, type WatchFSEvent, type Zip, BBRelay as default, enGB, frFR, injectStyles, registerEvent, registerRequest, validateManifest };
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 {
@@ -563,6 +564,8 @@ type Rating = {
563
564
  comment?: string;
564
565
  createdAt: string;
565
566
  updatedAt?: string;
567
+ username: string;
568
+ avatar?: string;
566
569
  };
567
570
 
568
571
  export { type BBEvent, type BBRequest, type Checkpoint, type CopyArg, type DirInfo, type DirectoryContents, type DirectoryStats, type EventReturn, type FileContent, type FileInfo, type GitFileStatus, type IconArg, type Language, type Load, type Locale, type MenuContent, type Nav, type Plugin, type Project, type Rating, type Release, type RenameType, type RequestReturn, type Result, type Route, type Settings, type TutorialHeader, type User, type ValidateManifestProp, type WatchFSEvent, type Zip, BBRelay as default, enGB, frFR, injectStyles, registerEvent, registerRequest, validateManifest };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bb-relay",
3
- "version": "0.0.10",
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
  };
@@ -5,4 +5,6 @@ export type Rating = {
5
5
  comment?: string;
6
6
  createdAt: string;
7
7
  updatedAt?: string;
8
+ username: string;
9
+ avatar?: string;
8
10
  };