bb-relay 0.0.1 → 0.0.2
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +20 -20
- package/src/load-virtual-editor/events/handle-dir-update.ts +1 -1
- package/src/load-virtual-editor/events/handle-file-update.ts +1 -1
- package/src/load-virtual-editor/events/handle-load.ts +1 -1
- package/src/load-virtual-editor/events/handle-selected.ts +1 -1
- package/src/load-virtual-editor/postResponse.ts +1 -1
- package/src/locales/fr-FR.ts +1 -1
- package/src/relay/index.ts +1 -1
- package/src/types/{EventParam.ts → editor/EventParam.ts} +1 -1
- package/src/types/{EventReturn.ts → editor/EventReturn.ts} +1 -1
- package/src/types/{RenameType.ts → editor/RenameType.ts} +1 -1
- /package/src/types/{Checkpoint.ts → editor/Checkpoint.ts} +0 -0
- /package/src/types/{CopyArg.ts → editor/CopyArg.ts} +0 -0
- /package/src/types/{DirectoryContents.ts → editor/DirectoryContents.ts} +0 -0
- /package/src/types/{DirectoryStats.ts → editor/DirectoryStats.ts} +0 -0
- /package/src/types/{FileContent.ts → editor/FileContent.ts} +0 -0
- /package/src/types/{GitFileStatus.ts → editor/GitFileStatus.ts} +0 -0
- /package/src/types/{IconArg.ts → editor/IconArg.ts} +0 -0
- /package/src/types/{Language.ts → editor/Language.ts} +0 -0
- /package/src/types/{Locale.ts → editor/Locale.ts} +0 -0
- /package/src/types/{MenuContent.ts → editor/MenuContent.ts} +0 -0
- /package/src/types/{Nav.ts → editor/Nav.ts} +0 -0
- /package/src/types/{PluginItem.ts → editor/PluginItem.ts} +0 -0
- /package/src/types/{Result.ts → editor/Result.ts} +0 -0
- /package/src/types/{Route.ts → editor/Route.ts} +0 -0
- /package/src/types/{Settings.ts → editor/Settings.ts} +0 -0
- /package/src/types/{TutorialHeader.ts → editor/TutorialHeader.ts} +0 -0
- /package/src/types/{User.ts → editor/User.ts} +0 -0
- /package/src/types/{WatchFSEvent.ts → editor/WatchFSEvent.ts} +0 -0
- /package/src/types/{database.types.ts → editor/database.types.ts} +0 -0
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import BBRelay from "./relay";
|
|
2
2
|
import DirInfo from "./types/dir/DirInfo";
|
|
3
3
|
import BBEvent from "./types/BBEvent";
|
|
4
|
-
import EventReturn from "./types/EventReturn";
|
|
4
|
+
import EventReturn from "./types/editor/EventReturn";
|
|
5
5
|
import FileInfo from "./types/files/FileInfo";
|
|
6
6
|
import Load from "./types/status/Load";
|
|
7
7
|
import registerEvent from "./relay/registerEvent";
|
|
@@ -9,26 +9,26 @@ import registerRequest from "./relay/registerRequest";
|
|
|
9
9
|
import BBRequest from "./types/BBRequest";
|
|
10
10
|
import RequestReturn from "./types/RequestReturn";
|
|
11
11
|
import injectStyles from "./utils/inject-styles";
|
|
12
|
-
import Checkpoint from "./types/Checkpoint";
|
|
13
|
-
import CopyArg from "./types/CopyArg";
|
|
14
|
-
import { WatchFSEvent } from "./types/WatchFSEvent";
|
|
15
|
-
import { User } from "./types/User";
|
|
16
|
-
import DirectoryContents from "./types/DirectoryContents";
|
|
17
|
-
import { DirectoryStats } from "./types/DirectoryStats";
|
|
18
|
-
import FileContent from "./types/FileContent";
|
|
19
|
-
import GitFileStatus from "./types/GitFileStatus";
|
|
20
|
-
import IconArg from "./types/IconArg";
|
|
21
|
-
import Language from "./types/Language";
|
|
22
|
-
import Locale from "./types/Locale";
|
|
23
|
-
import { MenuContent } from "./types/MenuContent";
|
|
24
|
-
import Nav from "./types/Nav";
|
|
25
|
-
import { PluginItem } from "./types/PluginItem";
|
|
12
|
+
import Checkpoint from "./types/editor/Checkpoint";
|
|
13
|
+
import CopyArg from "./types/editor/CopyArg";
|
|
14
|
+
import { WatchFSEvent } from "./types/editor/WatchFSEvent";
|
|
15
|
+
import { User } from "./types/editor/User";
|
|
16
|
+
import DirectoryContents from "./types/editor/DirectoryContents";
|
|
17
|
+
import { DirectoryStats } from "./types/editor/DirectoryStats";
|
|
18
|
+
import FileContent from "./types/editor/FileContent";
|
|
19
|
+
import GitFileStatus from "./types/editor/GitFileStatus";
|
|
20
|
+
import IconArg from "./types/editor/IconArg";
|
|
21
|
+
import Language from "./types/editor/Language";
|
|
22
|
+
import Locale from "./types/editor/Locale";
|
|
23
|
+
import { MenuContent } from "./types/editor/MenuContent";
|
|
24
|
+
import Nav from "./types/editor/Nav";
|
|
25
|
+
import { PluginItem } from "./types/editor/PluginItem";
|
|
26
26
|
import Project from "./types/project/Project";
|
|
27
|
-
import { RenameType } from "./types/RenameType";
|
|
28
|
-
import Result from "./types/Result";
|
|
29
|
-
import { Route } from "./types/Route";
|
|
30
|
-
import { Settings } from "./types/Settings";
|
|
31
|
-
import { TutorialHeader } from "./types/TutorialHeader";
|
|
27
|
+
import { RenameType } from "./types/editor/RenameType";
|
|
28
|
+
import Result from "./types/editor/Result";
|
|
29
|
+
import { Route } from "./types/editor/Route";
|
|
30
|
+
import { Settings } from "./types/editor/Settings";
|
|
31
|
+
import { TutorialHeader } from "./types/editor/TutorialHeader";
|
|
32
32
|
import enGB from "./locales/en-GB";
|
|
33
33
|
import frFR from "./locales/fr-FR";
|
|
34
34
|
|
package/src/locales/fr-FR.ts
CHANGED
package/src/relay/index.ts
CHANGED
|
@@ -3,7 +3,7 @@ import BBRequest from "../types/BBRequest";
|
|
|
3
3
|
import storageBridge from "./storage-bridge";
|
|
4
4
|
import RequestReturn from "../types/RequestReturn";
|
|
5
5
|
import BBEvent from "../types/BBEvent";
|
|
6
|
-
import EventReturn from "../types/EventReturn";
|
|
6
|
+
import EventReturn from "../types/editor/EventReturn";
|
|
7
7
|
import registerEvent from "./registerEvent";
|
|
8
8
|
|
|
9
9
|
export default class BBRelay {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|