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