@alepha/bucket-vercel 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.
Files changed (2) hide show
  1. package/dist/index.d.ts +16 -1
  2. 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. {@link RawFormatterProvider}
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
@@ -10,7 +10,7 @@
10
10
  "blob"
11
11
  ],
12
12
  "author": "Nicolas Foures",
13
- "version": "0.14.3",
13
+ "version": "0.14.4",
14
14
  "type": "module",
15
15
  "engines": {
16
16
  "node": ">=22.0.0"
@@ -27,12 +27,12 @@
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^25.0.3",
30
- "alepha": "0.14.3",
30
+ "alepha": "0.14.4",
31
31
  "tsdown": "^0.19.0-beta.5",
32
32
  "vitest": "^4.0.16"
33
33
  },
34
34
  "peerDependencies": {
35
- "alepha": "0.14.3"
35
+ "alepha": "0.14.4"
36
36
  },
37
37
  "scripts": {
38
38
  "lint": "alepha lint",