@bgord/bun 0.3.5 → 0.4.0
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/auth-shield.d.ts +2 -2
- package/dist/bgord-bun.cjs +1 -1
- package/dist/bgord-bun.cjs.map +1 -1
- package/dist/bgord-bun.modern.js +1 -1
- package/dist/bgord-bun.modern.js.map +1 -1
- package/dist/bgord-bun.module.js +1 -1
- package/dist/bgord-bun.module.js.map +1 -1
- package/dist/bgord-bun.umd.js +1 -1
- package/dist/bgord-bun.umd.js.map +1 -1
- package/dist/download-file.d.ts +1 -1
- package/dist/healthcheck.d.ts +3 -3
- package/dist/i18n.d.ts +2 -2
- package/dist/setup.d.ts +1 -1
- package/package.json +6 -6
package/dist/download-file.d.ts
CHANGED
package/dist/healthcheck.d.ts
CHANGED
|
@@ -2,19 +2,19 @@ import * as bg from "@bgord/node";
|
|
|
2
2
|
export declare class Healthcheck {
|
|
3
3
|
static build: (prerequisites: bg.AbstractPrerequisite<bg.BasePrerequisiteConfig>[]) => [import("hono/types").H<any, any, {}, Promise<Response & import("hono").TypedResponse<{
|
|
4
4
|
ok: bg.PrerequisiteStatusEnum;
|
|
5
|
-
version:
|
|
5
|
+
version: any;
|
|
6
6
|
details: {
|
|
7
7
|
label: string;
|
|
8
8
|
status: bg.PrerequisiteStatusEnum;
|
|
9
9
|
}[];
|
|
10
10
|
uptime: {
|
|
11
|
-
seconds:
|
|
11
|
+
seconds: any;
|
|
12
12
|
formatted: string;
|
|
13
13
|
};
|
|
14
14
|
memory: {
|
|
15
15
|
bytes: any;
|
|
16
16
|
formatted: string;
|
|
17
17
|
};
|
|
18
|
-
durationMs:
|
|
18
|
+
durationMs: any;
|
|
19
19
|
}, 200 | 424, "json">>>];
|
|
20
20
|
}
|
package/dist/i18n.d.ts
CHANGED
|
@@ -17,10 +17,10 @@ export declare type I18nVariablesType = {
|
|
|
17
17
|
};
|
|
18
18
|
export declare class I18n {
|
|
19
19
|
static LANGUAGE_COOKIE_NAME: string;
|
|
20
|
-
static DEFAULT_TRANSLATIONS_PATH:
|
|
20
|
+
static DEFAULT_TRANSLATIONS_PATH: any;
|
|
21
21
|
static FALLBACK_LANGUAGE: string;
|
|
22
22
|
static applyTo(config: I18nConfigType): import("hono").MiddlewareHandler<any, string, {}>;
|
|
23
23
|
static getTranslations(language: bgn.Schema.LanguageType, translationsPath: bgn.Schema.PathType): Promise<TranslationsType>;
|
|
24
24
|
static useTranslations(translations: TranslationsType): (key: TranslationsKeyType, variables?: TranslationVariableType) => string;
|
|
25
|
-
static getTranslationPathForLanguage(language: bgn.Schema.LanguageType, translationsPath?:
|
|
25
|
+
static getTranslationPathForLanguage(language: bgn.Schema.LanguageType, translationsPath?: any): bgn.Schema.PathType;
|
|
26
26
|
}
|
package/dist/setup.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as bgn from "@bgord/node";
|
|
2
|
-
export declare const BODY_LIMIT_MAX_SIZE:
|
|
2
|
+
export declare const BODY_LIMIT_MAX_SIZE: z.infer<z.core.$ZodBranded<z.ZodNumber, "size-in-bytes">>;
|
|
3
3
|
export declare class Setup {
|
|
4
4
|
static essentials(logger: bgn.Logger): (import("hono").MiddlewareHandler<any, string, {}> | import("hono").MiddlewareHandler<{
|
|
5
5
|
Variables: import("./etag-extractor").EtagVariables;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.4.0",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"name": "@bgord/bun",
|
|
5
5
|
"type": "module",
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"files": ["dist", "src"],
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@biomejs/biome": "1.9.4",
|
|
23
|
-
"@commitlint/cli": "19.
|
|
24
|
-
"@commitlint/config-conventional": "19.
|
|
23
|
+
"@commitlint/cli": "19.6.0",
|
|
24
|
+
"@commitlint/config-conventional": "19.6.0",
|
|
25
25
|
"@types/bun": "1.1.13",
|
|
26
26
|
"@types/lodash": "4.17.13",
|
|
27
27
|
"cspell": "8.16.0",
|
|
28
|
-
"knip": "5.
|
|
29
|
-
"lefthook": "1.8.
|
|
28
|
+
"knip": "5.37.2",
|
|
29
|
+
"lefthook": "1.8.4",
|
|
30
30
|
"microbundle": "0.15.1",
|
|
31
31
|
"only-allow": "1.2.1",
|
|
32
32
|
"shellcheck": "3.0.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"typescript": "5.6.3"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@bgord/node": "0.
|
|
37
|
+
"@bgord/node": "0.84.0",
|
|
38
38
|
"hono": "4.6.9",
|
|
39
39
|
"lodash": "4.17.21",
|
|
40
40
|
"sharp": "0.33.5"
|