@alepha/bucket-s3 0.14.3 → 0.14.4
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.ts +16 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -936,6 +936,7 @@ declare class Alepha {
|
|
|
936
936
|
as?: string[];
|
|
937
937
|
module?: string;
|
|
938
938
|
}>;
|
|
939
|
+
dump(): AlephaDump;
|
|
939
940
|
services<T extends object>(base: Service<T>): Array<T>;
|
|
940
941
|
/**
|
|
941
942
|
* Get all primitives of the specified type.
|
|
@@ -951,6 +952,20 @@ interface Hook<T extends keyof Hooks = any> {
|
|
|
951
952
|
priority?: "first" | "last";
|
|
952
953
|
callback: (payload: Hooks[T]) => Async<void>;
|
|
953
954
|
}
|
|
955
|
+
interface AlephaDump {
|
|
956
|
+
env: Record<string, AlephaDumpEnvVariable>;
|
|
957
|
+
providers: Record<string, {
|
|
958
|
+
from: string[];
|
|
959
|
+
as?: string[];
|
|
960
|
+
module?: string;
|
|
961
|
+
}>;
|
|
962
|
+
}
|
|
963
|
+
interface AlephaDumpEnvVariable {
|
|
964
|
+
description: string;
|
|
965
|
+
default?: string;
|
|
966
|
+
required?: boolean;
|
|
967
|
+
enum?: Array<string>;
|
|
968
|
+
}
|
|
954
969
|
/**
|
|
955
970
|
* This is how we store services in the Alepha container.
|
|
956
971
|
*/
|
|
@@ -1310,7 +1325,7 @@ declare const envSchema$1: TObject$1<{
|
|
|
1310
1325
|
* Built-in log formats.
|
|
1311
1326
|
* - "json" - JSON format, useful for structured logging and log aggregation. {@link JsonFormatterProvider}
|
|
1312
1327
|
* - "pretty" - Simple text format, human-readable, with colors. {@link PrettyFormatterProvider}
|
|
1313
|
-
* - "raw" - Raw format, no formatting, just the message.
|
|
1328
|
+
* - "raw" - Raw format, no formatting, just the message. {@link RawFormatterProvider}
|
|
1314
1329
|
*/
|
|
1315
1330
|
LOG_FORMAT: TOptional<TUnsafe<"json" | "pretty" | "raw">>;
|
|
1316
1331
|
}>;
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"minio"
|
|
14
14
|
],
|
|
15
15
|
"author": "Nicolas Foures",
|
|
16
|
-
"version": "0.14.
|
|
16
|
+
"version": "0.14.4",
|
|
17
17
|
"type": "module",
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": ">=22.0.0"
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@biomejs/biome": "^2.3.11",
|
|
33
|
-
"alepha": "0.14.
|
|
33
|
+
"alepha": "0.14.4",
|
|
34
34
|
"tsdown": "^0.19.0-beta.5",
|
|
35
35
|
"typescript": "^5.9.3",
|
|
36
36
|
"vitest": "^4.0.16"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"alepha": "0.14.
|
|
39
|
+
"alepha": "0.14.4"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"lint": "alepha lint",
|