bb-relay 0.0.14 → 0.0.15
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +5 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
- package/src/constants/DATA_ALIAS.ts +1 -0
- package/src/index.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -579,4 +579,6 @@ declare const WEBSITE: {
|
|
|
579
579
|
docs: string;
|
|
580
580
|
};
|
|
581
581
|
|
|
582
|
-
|
|
582
|
+
declare const DATA_ALIAS = "${userData}";
|
|
583
|
+
|
|
584
|
+
export { type BBEvent, type BBRequest, type Checkpoint, type CopyArg, DATA_ALIAS, type DirInfo, type DirectoryContents, type DirectoryStats, type EventReturn, type FileContent, type FileInfo, type FileNode, 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, SENTINEL_FILE, type Settings, type TutorialHeader, type User, type ValidateManifestProp, WEBSITE, type WatchFSEvent, type Zip, BBRelay as default, enGB, frFR, injectStyles, registerEvent, registerRequest, validateManifest };
|
package/dist/index.d.ts
CHANGED
|
@@ -579,4 +579,6 @@ declare const WEBSITE: {
|
|
|
579
579
|
docs: string;
|
|
580
580
|
};
|
|
581
581
|
|
|
582
|
-
|
|
582
|
+
declare const DATA_ALIAS = "${userData}";
|
|
583
|
+
|
|
584
|
+
export { type BBEvent, type BBRequest, type Checkpoint, type CopyArg, DATA_ALIAS, type DirInfo, type DirectoryContents, type DirectoryStats, type EventReturn, type FileContent, type FileInfo, type FileNode, 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, SENTINEL_FILE, type Settings, type TutorialHeader, type User, type ValidateManifestProp, WEBSITE, type WatchFSEvent, type Zip, BBRelay as default, enGB, frFR, injectStyles, registerEvent, registerRequest, validateManifest };
|
package/dist/index.js
CHANGED
|
@@ -20,6 +20,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/index.ts
|
|
21
21
|
var src_exports = {};
|
|
22
22
|
__export(src_exports, {
|
|
23
|
+
DATA_ALIAS: () => DATA_ALIAS,
|
|
23
24
|
SENTINEL_FILE: () => SENTINEL_FILE_default,
|
|
24
25
|
WEBSITE: () => WEBSITE_default,
|
|
25
26
|
default: () => src_default,
|
|
@@ -440,10 +441,14 @@ var WEBSITE = {
|
|
|
440
441
|
};
|
|
441
442
|
var WEBSITE_default = WEBSITE;
|
|
442
443
|
|
|
444
|
+
// src/constants/DATA_ALIAS.ts
|
|
445
|
+
var DATA_ALIAS = "${userData}";
|
|
446
|
+
|
|
443
447
|
// src/index.ts
|
|
444
448
|
var src_default = BBRelay;
|
|
445
449
|
// Annotate the CommonJS export names for ESM import in node:
|
|
446
450
|
0 && (module.exports = {
|
|
451
|
+
DATA_ALIAS,
|
|
447
452
|
SENTINEL_FILE,
|
|
448
453
|
WEBSITE,
|
|
449
454
|
enGB,
|
package/dist/index.mjs
CHANGED
|
@@ -408,9 +408,13 @@ var WEBSITE = {
|
|
|
408
408
|
};
|
|
409
409
|
var WEBSITE_default = WEBSITE;
|
|
410
410
|
|
|
411
|
+
// src/constants/DATA_ALIAS.ts
|
|
412
|
+
var DATA_ALIAS = "${userData}";
|
|
413
|
+
|
|
411
414
|
// src/index.ts
|
|
412
415
|
var src_default = BBRelay;
|
|
413
416
|
export {
|
|
417
|
+
DATA_ALIAS,
|
|
414
418
|
SENTINEL_FILE_default as SENTINEL_FILE,
|
|
415
419
|
WEBSITE_default as WEBSITE,
|
|
416
420
|
src_default as default,
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const DATA_ALIAS = "${userData}";
|
package/src/index.ts
CHANGED
|
@@ -39,6 +39,7 @@ import validateManifest, {
|
|
|
39
39
|
import { Rating } from "./types/plugins/Rating";
|
|
40
40
|
import SENTINEL_FILE from "./constants/SENTINEL_FILE";
|
|
41
41
|
import WEBSITE from "./constants/WEBSITE";
|
|
42
|
+
import { DATA_ALIAS } from "./constants/DATA_ALIAS";
|
|
42
43
|
|
|
43
44
|
export default BBRelay;
|
|
44
45
|
|
|
@@ -77,5 +78,5 @@ export type {
|
|
|
77
78
|
};
|
|
78
79
|
|
|
79
80
|
export type { Release, Plugin, Zip, ValidateManifestProp, Rating, FileNode };
|
|
80
|
-
export { SENTINEL_FILE, WEBSITE };
|
|
81
|
+
export { SENTINEL_FILE, WEBSITE, DATA_ALIAS };
|
|
81
82
|
export { enGB, frFR };
|