bb-relay 0.0.10 → 0.0.11

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
@@ -563,6 +563,8 @@ type Rating = {
563
563
  comment?: string;
564
564
  createdAt: string;
565
565
  updatedAt?: string;
566
+ username: string;
567
+ avatar?: string;
566
568
  };
567
569
 
568
570
  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
@@ -563,6 +563,8 @@ type Rating = {
563
563
  comment?: string;
564
564
  createdAt: string;
565
565
  updatedAt?: string;
566
+ username: string;
567
+ avatar?: string;
566
568
  };
567
569
 
568
570
  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.11",
4
4
  "description": "For managing bb-editor extension",
5
5
  "license": "ISC",
6
6
  "author": "Ade Adeola",
@@ -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
  };