@neondatabase/env 1.0.0 → 1.0.1

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 (59) hide show
  1. package/README.md +13 -0
  2. package/dist/cli.js +971 -6
  3. package/dist/cli.js.map +1 -1
  4. package/dist/{_shared/env-core/env.js → env.js} +62 -41
  5. package/dist/env.js.map +1 -0
  6. package/dist/index.d.ts +528 -3
  7. package/dist/index.d.ts.map +1 -0
  8. package/dist/index.js +197 -2
  9. package/dist/{lib/parse-env.js.map → index.js.map} +1 -1
  10. package/package.json +8 -6
  11. package/dist/_shared/auth_selection.d.ts +0 -95
  12. package/dist/_shared/auth_selection.d.ts.map +0 -1
  13. package/dist/_shared/auth_selection.js +0 -85
  14. package/dist/_shared/auth_selection.js.map +0 -1
  15. package/dist/_shared/credentials.d.ts +0 -186
  16. package/dist/_shared/credentials.d.ts.map +0 -1
  17. package/dist/_shared/credentials.js +0 -190
  18. package/dist/_shared/credentials.js.map +0 -1
  19. package/dist/_shared/env-core/env.d.ts +0 -424
  20. package/dist/_shared/env-core/env.d.ts.map +0 -1
  21. package/dist/_shared/env-core/env.js.map +0 -1
  22. package/dist/_shared/env-core/reuse-secrets.d.ts +0 -95
  23. package/dist/_shared/env-core/reuse-secrets.d.ts.map +0 -1
  24. package/dist/_shared/env-core/reuse-secrets.js +0 -181
  25. package/dist/_shared/env-core/reuse-secrets.js.map +0 -1
  26. package/dist/_shared/paths.d.ts +0 -116
  27. package/dist/_shared/paths.d.ts.map +0 -1
  28. package/dist/_shared/paths.js +0 -153
  29. package/dist/_shared/paths.js.map +0 -1
  30. package/dist/_shared/profiles.d.ts +0 -145
  31. package/dist/_shared/profiles.d.ts.map +0 -1
  32. package/dist/_shared/profiles.js +0 -228
  33. package/dist/_shared/profiles.js.map +0 -1
  34. package/dist/_shared/secure_file.d.ts +0 -25
  35. package/dist/_shared/secure_file.d.ts.map +0 -1
  36. package/dist/_shared/secure_file.js +0 -43
  37. package/dist/_shared/secure_file.js.map +0 -1
  38. package/dist/config/dist/lib/define-config.d.ts +0 -20
  39. package/dist/config/dist/lib/define-config.d.ts.map +0 -1
  40. package/dist/config/dist/lib/neon-api.d.ts +0 -375
  41. package/dist/config/dist/lib/neon-api.d.ts.map +0 -1
  42. package/dist/config/dist/lib/types.d.ts +0 -603
  43. package/dist/config/dist/lib/types.d.ts.map +0 -1
  44. package/dist/config/dist/v1.d.ts +0 -5
  45. package/dist/lib/cli/commands.d.ts +0 -68
  46. package/dist/lib/cli/commands.d.ts.map +0 -1
  47. package/dist/lib/cli/commands.js +0 -233
  48. package/dist/lib/cli/commands.js.map +0 -1
  49. package/dist/lib/cli/resolve-api-key.d.ts +0 -29
  50. package/dist/lib/cli/resolve-api-key.d.ts.map +0 -1
  51. package/dist/lib/cli/resolve-api-key.js +0 -74
  52. package/dist/lib/cli/resolve-api-key.js.map +0 -1
  53. package/dist/lib/cli/resolve-context.d.ts +0 -34
  54. package/dist/lib/cli/resolve-context.d.ts.map +0 -1
  55. package/dist/lib/cli/resolve-context.js +0 -88
  56. package/dist/lib/cli/resolve-context.js.map +0 -1
  57. package/dist/lib/parse-env.d.ts +0 -95
  58. package/dist/lib/parse-env.d.ts.map +0 -1
  59. package/dist/lib/parse-env.js +0 -198
package/dist/index.d.ts CHANGED
@@ -1,3 +1,528 @@
1
- import { FetchEnvOptions, FilteredNeonEnv, NEON_ENV_VAR_KEYS, NeonAiGatewayEnv, NeonAuthEnv, NeonBranchEnv, NeonDataApiEnv, NeonEnv, NeonPostgresEnv, NeonStorageEnv, ResolvedNeonEnv, SelectableEnvKey, fetchEnv, toEntries } from "./_shared/env-core/env.js";
2
- import { FunctionSlugOf, NeonFunctionEnv, parseEnv } from "./lib/parse-env.js";
3
- export { type FetchEnvOptions, type FilteredNeonEnv, type FunctionSlugOf, NEON_ENV_VAR_KEYS, type NeonAiGatewayEnv, type NeonAuthEnv, type NeonBranchEnv, type NeonDataApiEnv, type NeonEnv, type NeonFunctionEnv, type NeonPostgresEnv, type NeonStorageEnv, type ResolvedNeonEnv, type SelectableEnvKey, fetchEnv, parseEnv, toEntries };
1
+ import { Config, NeonApi, resolveConfig } from "@neon/config/v1";
2
+
3
+ //#region ../../internals/env-core/dist/env.d.ts
4
+
5
+ //#region src/env.d.ts
6
+ declare const NEON_ENV_VAR_KEYS: {
7
+ /**
8
+ * Branch identity. `NEON_BRANCH` carries the branch **name** and is injected into the
9
+ * Neon Functions runtime on every branch (including the default) by default. `env pull` /
10
+ * `neon dev` / `neon-env run` emit it too so local dev mirrors the deployed runtime.
11
+ */
12
+ readonly branch: {
13
+ readonly name: "NEON_BRANCH";
14
+ };
15
+ readonly postgres: {
16
+ readonly databaseUrl: "DATABASE_URL";
17
+ readonly databaseUrlUnpooled: "DATABASE_URL_UNPOOLED";
18
+ };
19
+ readonly auth: {
20
+ readonly baseUrl: "NEON_AUTH_BASE_URL";
21
+ readonly jwksUrl: "NEON_AUTH_JWKS_URL";
22
+ };
23
+ readonly dataApi: {
24
+ readonly url: "NEON_DATA_API_URL";
25
+ };
26
+ /**
27
+ * Object storage (Preview). The S3 SDKs read `AWS_*` from their standard config chain, so
28
+ * a branch credential + `neon dev` / `env pull` makes object storage work from env alone.
29
+ * `region` is injected under the SDK-standard `AWS_REGION`.
30
+ */
31
+ readonly storage: {
32
+ readonly accessKeyId: "AWS_ACCESS_KEY_ID";
33
+ readonly secretAccessKey: "AWS_SECRET_ACCESS_KEY";
34
+ readonly endpoint: "AWS_ENDPOINT_URL_S3";
35
+ readonly region: "AWS_REGION";
36
+ };
37
+ /**
38
+ * AI Gateway (Preview). Exposed under the Neon-branded env vars the deployed Functions
39
+ * runtime injects: `apiKey` is the minted credential's bearer (`NEON_AI_GATEWAY_TOKEN`)
40
+ * and `baseUrl` is the bare branch gateway host (`NEON_AI_GATEWAY_BASE_URL`,
41
+ * `scheme://host`, no path). Clients like `@neon/ai-sdk-provider` read these and append the
42
+ * dialect route (`/v1`, `/openai/v1`, `/anthropic/v1`) themselves (https://github.com/vercel/ai/pull/15997).
43
+ */
44
+ readonly aiGateway: {
45
+ readonly apiKey: "NEON_AI_GATEWAY_TOKEN";
46
+ readonly baseUrl: "NEON_AI_GATEWAY_BASE_URL";
47
+ };
48
+ };
49
+ /**
50
+ * Branch identity for the resolved branch. Always present on a `fetchEnv` result (the branch
51
+ * name is always known); on a `parseEnv` result it's present only when `NEON_BRANCH` was
52
+ * injected into `process.env` (the Functions runtime injects it by default, as do `neon dev` /
53
+ * `neon-env run` / `env pull`). `name` is the branch **name** (e.g. `main`, `preview/foo`).
54
+ */
55
+ interface NeonBranchEnv {
56
+ name: string;
57
+ }
58
+ /** Per-namespace inner shapes. Exposed so consumers can name the parts independently. */
59
+ interface NeonPostgresEnv {
60
+ /**
61
+ * Pooled connection string (via Neon's PgBouncer pooler). The right default for
62
+ * serverless drivers (`@neondatabase/serverless`, edge runtimes, Postgres.js, …).
63
+ */
64
+ databaseUrl: string;
65
+ /**
66
+ * Direct (unpooled) connection string. Use this when you need session-level
67
+ * features (`LISTEN`/`NOTIFY`, prepared statements across calls, transactions
68
+ * spanning round-trips) that PgBouncer's transaction-mode pooling drops.
69
+ */
70
+ databaseUrlUnpooled: string;
71
+ }
72
+ /**
73
+ * Bits of a Neon Auth integration for the resolved branch. Only present on `NeonEnv`
74
+ * when the branch policy enables `auth`.
75
+ *
76
+ * Neon Auth exposes the `baseUrl` (which doubles as the publishable client identifier) and
77
+ * the `jwksUrl` used to verify tokens it issues. `fetchEnv` reads both from the live
78
+ * integration; `parseEnv` reads them from `process.env` (`NEON_AUTH_BASE_URL` /
79
+ * `NEON_AUTH_JWKS_URL`).
80
+ */
81
+ interface NeonAuthEnv {
82
+ baseUrl: string;
83
+ /** JWKS URL for verifying tokens issued by Neon Auth (`NEON_AUTH_JWKS_URL`). */
84
+ jwksUrl: string;
85
+ }
86
+ /** Bits of a Neon Data API integration. Only present when the branch policy enables it. */
87
+ interface NeonDataApiEnv {
88
+ url: string;
89
+ }
90
+ /**
91
+ * S3-compatible object-storage access for the branch (Preview). Present on `NeonEnv` only
92
+ * when the policy declares `preview.buckets`. Combines a minted branch credential's access
93
+ * keys (`accessKeyId` = the credential's full token id, e.g. `nak_live_…`, which is what the
94
+ * storage gateway authenticates against; `secretAccessKey` = its
95
+ * `s3_secret_access_key`) with the branch's non-secret connection details
96
+ * (`endpoint`/`region`, from `GET .../storage`). Projects to the AWS SDK's
97
+ * standard config env (`AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_ENDPOINT_URL_S3`,
98
+ * `AWS_REGION`) so the S3 client works from env alone. Neon's storage gateway always
99
+ * requires path-style addressing, so set `forcePathStyle: true` on your S3 client.
100
+ */
101
+ interface NeonStorageEnv {
102
+ accessKeyId: string;
103
+ secretAccessKey: string;
104
+ /** S3-compatible endpoint URL for the branch. */
105
+ endpoint: string;
106
+ /** AWS region string (e.g. `us-east-2`). Injected as `AWS_REGION`. */
107
+ region: string;
108
+ }
109
+ /**
110
+ * AI Gateway access for the branch (Preview). Present on `NeonEnv` only when the policy
111
+ * enables `preview.aiGateway`. `apiKey` is the minted credential's bearer (`api_token`);
112
+ * `baseUrl` is the bare branch-scoped gateway host
113
+ * (`https://<branchId>-api.ai.<region>.…`, no path). Projects to the Neon-branded env
114
+ * (`NEON_AI_GATEWAY_TOKEN`, `NEON_AI_GATEWAY_BASE_URL`); clients like `@neon/ai-sdk-provider`
115
+ * append the dialect route (`/v1`, `/openai/v1`, `/anthropic/v1`) themselves.
116
+ */
117
+ interface NeonAiGatewayEnv {
118
+ apiKey: string;
119
+ baseUrl: string;
120
+ }
121
+ /**
122
+ * Empty record alias used as the "false" branch of the conditional namespace adds below.
123
+ * `Record<never, never>` is the no-op for intersection — the cleaner alternative to `{}`,
124
+ * which biome rejects (it means "any non-null", not "empty object").
125
+ */
126
+ type NoNamespace = Record<never, never>;
127
+ /**
128
+ * Resolve a **static** service toggle (the value of `config.auth` / `config.dataApi`) to a
129
+ * type-level boolean. The whole-thing wrapping (`[T] extends […]`) turns off distribution
130
+ * so a union/`undefined` is checked as one unit:
131
+ *
132
+ * - `false` / `{ enabled: false }` / `undefined` → `false`
133
+ * - `true` / `{ enabled: true }` / any other object (`{}`, `{ enabled?: boolean }`) → `true`
134
+ * (a present toggle defaults to enabled)
135
+ * - the bare `boolean | ServiceToggle | undefined` (the default `Config` param, no literal
136
+ * info) → `false`, so an untyped policy yields just `{ postgres }`.
137
+ */
138
+ type ServiceOn<T> = [T] extends [false] ? false : [T] extends [{
139
+ enabled: false;
140
+ }] ? false : [T] extends [undefined] ? false : [T] extends [true] ? true : [T] extends [{
141
+ enabled: true;
142
+ }] ? true : [T] extends [object] ? true : false;
143
+ /** True when `T` has at least one known key; `false` for `{}` / `never`. */
144
+ type HasKeys<T> = [keyof T] extends [never] ? false : true;
145
+ /**
146
+ * Whether the policy's **static** `preview` block declares at least one object-storage bucket
147
+ * (`preview.buckets`). Drives whether {@link NeonEnv} carries the `storage` namespace.
148
+ *
149
+ * The leading `[never]` guard is load-bearing: when a policy has no `preview` at all,
150
+ * `NonNullable<C["preview"]>` is `never`, and without the guard the `extends { … }` probe
151
+ * below would vacuously match (everything extends `never`-derived shapes) and `HasKeys<never>`
152
+ * would resolve `true`, wrongly adding the namespace. The guard short-circuits to `false`.
153
+ */
154
+ type HasBuckets<C extends Config> = [NonNullable<C["preview"]>] extends [never] ? false : NonNullable<C["preview"]> extends {
155
+ buckets: infer B;
156
+ } ? HasKeys<NonNullable<B>> : false;
157
+ /**
158
+ * Whether the policy's **static** `preview` block enables the AI Gateway
159
+ * (`preview.aiGateway`). Drives whether {@link NeonEnv} carries the `aiGateway` namespace.
160
+ *
161
+ * The leading `[never]` guard is load-bearing for the same reason as {@link HasBuckets}: when
162
+ * a policy has no `preview`, `NonNullable<C["preview"]>` is `never`, and a naked `never` in the
163
+ * `extends` below would *distribute* (collapsing the result — and the whole `NeonEnv`
164
+ * intersection — to `never`). The tuple-wrapped guard short-circuits that to `false`.
165
+ */
166
+ type AiGatewayOn<C extends Config> = [NonNullable<C["preview"]>] extends [never] ? false : NonNullable<C["preview"]> extends {
167
+ aiGateway: infer A;
168
+ } ? ServiceOn<NonNullable<A>> : false;
169
+ /**
170
+ * Static, namespaced shape of `fetchEnv` / `parseEnv`'s return value. Generic over the
171
+ * {@link Config} so the type system knows which optional namespaces are present.
172
+ *
173
+ * Because the secret-bearing toggles now live in the **static** top-level `config.auth` /
174
+ * `config.dataApi` (not inside a per-branch closure), the namespace presence is a direct
175
+ * read of those fields — no union-across-branches, no default-config escape hatch:
176
+ *
177
+ * - `postgres` is always present.
178
+ * - `auth` is added iff `config.auth` is statically enabled.
179
+ * - `dataApi` is added iff `config.dataApi` is statically enabled.
180
+ * - `storage` is added iff `config.preview.buckets` declares at least one bucket.
181
+ * - `aiGateway` is added iff `config.preview.aiGateway` is statically enabled.
182
+ */
183
+ type NeonEnv<C extends Config = Config> = {
184
+ postgres: NeonPostgresEnv;
185
+ /**
186
+ * Branch identity (`NEON_BRANCH`). Optional because `parseEnv` only surfaces it when the
187
+ * var was injected; `fetchEnv` always populates it.
188
+ */
189
+ branch?: NeonBranchEnv;
190
+ } & (ServiceOn<NonNullable<C["auth"]>> extends true ? {
191
+ auth: NeonAuthEnv;
192
+ } : NoNamespace) & (ServiceOn<NonNullable<C["dataApi"]>> extends true ? {
193
+ dataApi: NeonDataApiEnv;
194
+ } : NoNamespace) & (HasBuckets<C> extends true ? {
195
+ storage: NeonStorageEnv;
196
+ } : NoNamespace) & (AiGatewayOn<C> extends true ? {
197
+ aiGateway: NeonAiGatewayEnv;
198
+ } : NoNamespace);
199
+ /**
200
+ * OS-level env-var keys grouped by the {@link NeonEnv} namespace they populate. Only the
201
+ * **input** vars `parseEnv` validates are listed — the output-only aliases in
202
+ * {@link NEON_ENV_VAR_KEYS} (`NEON_AI_GATEWAY_TOKEN`, …) are intentionally absent, so they
203
+ * are not selectable in a `parseEnv(config, keys)` filter. Keep in sync with
204
+ * {@link EnvKeyToProp}.
205
+ */
206
+ interface EnvKeysByNamespace {
207
+ postgres: "DATABASE_URL" | "DATABASE_URL_UNPOOLED";
208
+ branch: "NEON_BRANCH";
209
+ auth: "NEON_AUTH_BASE_URL" | "NEON_AUTH_JWKS_URL";
210
+ dataApi: "NEON_DATA_API_URL";
211
+ storage: "AWS_ACCESS_KEY_ID" | "AWS_SECRET_ACCESS_KEY" | "AWS_ENDPOINT_URL_S3" | "AWS_REGION";
212
+ aiGateway: "NEON_AI_GATEWAY_TOKEN" | "NEON_AI_GATEWAY_BASE_URL";
213
+ }
214
+ /** The {@link NeonEnv} namespace interface backing each namespace key. */
215
+ interface NamespaceEnv {
216
+ postgres: NeonPostgresEnv;
217
+ branch: NeonBranchEnv;
218
+ auth: NeonAuthEnv;
219
+ dataApi: NeonDataApiEnv;
220
+ storage: NeonStorageEnv;
221
+ aiGateway: NeonAiGatewayEnv;
222
+ }
223
+ /** OS-level env-var key → the camelCase property it sets on its namespace object. */
224
+ interface EnvKeyToProp {
225
+ DATABASE_URL: "databaseUrl";
226
+ DATABASE_URL_UNPOOLED: "databaseUrlUnpooled";
227
+ NEON_BRANCH: "name";
228
+ NEON_AUTH_BASE_URL: "baseUrl";
229
+ NEON_AUTH_JWKS_URL: "jwksUrl";
230
+ NEON_DATA_API_URL: "url";
231
+ AWS_ACCESS_KEY_ID: "accessKeyId";
232
+ AWS_SECRET_ACCESS_KEY: "secretAccessKey";
233
+ AWS_ENDPOINT_URL_S3: "endpoint";
234
+ AWS_REGION: "region";
235
+ NEON_AI_GATEWAY_TOKEN: "apiKey";
236
+ NEON_AI_GATEWAY_BASE_URL: "baseUrl";
237
+ }
238
+ /**
239
+ * The OS-level env-var keys selectable for a given policy: the union of input vars across
240
+ * exactly the namespaces {@link NeonEnv}<C> carries. Drives the typesafe autocomplete of the
241
+ * `keys` filter — selecting a var from a namespace the policy does not enable is a type error
242
+ * (e.g. `NEON_AUTH_BASE_URL` is only offered once the policy turns on `auth`).
243
+ */
244
+ type SelectableEnvKey<C extends Config> = EnvKeysByNamespace[keyof NeonEnv<C> & keyof EnvKeysByNamespace];
245
+ /**
246
+ * The result shape of a **filtered** `parseEnv(config, keys)` call: the namespaced
247
+ * {@link NeonEnv} restricted to exactly the selected OS-level keys `K`. Namespaces with no
248
+ * selected key are dropped, and within a kept namespace only the selected properties survive
249
+ * — selecting just `["DATABASE_URL"]` yields `{ postgres: { databaseUrl: string } }`, with no
250
+ * `databaseUrlUnpooled`.
251
+ *
252
+ * The policy gating lives on the `parseEnv` overload (which binds `K` to
253
+ * {@link SelectableEnvKey}); this type only needs the selection, so it takes a bare
254
+ * `K extends string` and filters with `Extract`. The outer mapped type's `as` clause drops
255
+ * any namespace whose intersection with the selection is empty (`[…] extends [never]`,
256
+ * tuple-wrapped to switch off distribution); the inner one re-keys each selected OS var to its
257
+ * camelCase property and looks the value type up on the canonical namespace interface, so it
258
+ * stays correct if a field ever stops being a plain `string`.
259
+ */
260
+ type FilteredNeonEnv<K extends string> = { [N in keyof EnvKeysByNamespace as [Extract<K, EnvKeysByNamespace[N]>] extends [never] ? never : N]: { [P in Extract<K, EnvKeysByNamespace[N]> as EnvKeyToProp[P & keyof EnvKeyToProp]]: NamespaceEnv[N][EnvKeyToProp[P & keyof EnvKeyToProp] & keyof NamespaceEnv[N]] } };
261
+ /**
262
+ * A filtered result when the exact runtime contents of a key array are unknown. Both the
263
+ * namespace and its selected properties are optional because the array may omit any member of
264
+ * its element union, or be empty.
265
+ */
266
+ type OptionalFilteredNeonEnv<K extends string> = { [N in keyof EnvKeysByNamespace as [Extract<K, EnvKeysByNamespace[N]>] extends [never] ? never : N]?: { [P in Extract<K, EnvKeysByNamespace[N]> as EnvKeyToProp[P & keyof EnvKeyToProp]]?: NamespaceEnv[N][EnvKeyToProp[P & keyof EnvKeyToProp] & keyof NamespaceEnv[N]] } };
267
+ /** Whether `T` is a union rather than one concrete type. */
268
+ type IsUnion<T, Whole = T> = T extends Whole ? [Whole] extends [T] ? false : true : never;
269
+ /** Whether any fixed tuple position can hold more than one key at runtime. */
270
+ type TupleHasUnion<T extends readonly unknown[]> = T extends readonly [] ? false : T extends readonly [infer Head, ...infer Tail extends readonly unknown[]] ? true extends IsUnion<Head> ? true : TupleHasUnion<Tail> : true;
271
+ /**
272
+ * The sound result of selecting an array of OS-level env-var keys.
273
+ *
274
+ * Inline literal tuples remain exact. Widened arrays, rest tuples, and tuple positions whose
275
+ * value is a union are conservative because their runtime contents may be any subset of the
276
+ * element type. The leading conditional distributes unions of whole literal tuples, preserving
277
+ * each exact alternative.
278
+ */
279
+ type SelectedNeonEnv<Keys extends readonly string[]> = Keys extends readonly string[] ? number extends Keys["length"] ? OptionalFilteredNeonEnv<Keys[number]> : TupleHasUnion<Keys> extends true ? OptionalFilteredNeonEnv<Keys[number]> : FilteredNeonEnv<Keys[number]> : never;
280
+ type StorageCredentialEnvKey = "AWS_ACCESS_KEY_ID" | "AWS_SECRET_ACCESS_KEY";
281
+ type StorageKeyPairError = {
282
+ readonly "fetchEnv keys must include AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY together": never;
283
+ };
284
+ type TupleDefinitelyContains<Keys extends readonly string[], Key extends string> = Keys extends readonly [infer Head extends string, ...infer Tail extends readonly string[]] ? [Head] extends [Key] ? true : TupleDefinitelyContains<Tail, Key> : false;
285
+ type TupleDefinitelyContainsStoragePair<Keys extends readonly string[]> = TupleDefinitelyContains<Keys, "AWS_ACCESS_KEY_ID"> extends true ? TupleDefinitelyContains<Keys, "AWS_SECRET_ACCESS_KEY"> extends true ? true : false : false;
286
+ /**
287
+ * Reject a fixed key tuple that contains only one half of the storage credential. Dynamic
288
+ * arrays are checked at runtime because their contents are not known to TypeScript.
289
+ */
290
+ type InvalidStorageKeyTuple<Keys extends readonly string[]> = Keys extends unknown ? number extends Keys["length"] ? never : [Extract<Keys[number], StorageCredentialEnvKey>] extends [never] ? never : TupleDefinitelyContainsStoragePair<Keys> extends true ? never : Keys : never;
291
+ type StorageKeyPairConstraint<Keys extends readonly string[]> = [InvalidStorageKeyTuple<Keys>] extends [never] ? unknown : StorageKeyPairError;
292
+ type FetchEnvKeysFromArgs<Args extends readonly unknown[]> = Args[0] extends {
293
+ keys: infer Keys extends readonly string[];
294
+ } ? Keys : never;
295
+ type StorageKeyPairArgsConstraint<Args extends readonly unknown[]> = StorageKeyPairConstraint<FetchEnvKeysFromArgs<Args>>;
296
+ /** Preserve the same pair rule for callers that explicitly provide the legacy `K` generic. */
297
+ type StorageKeyUnionConstraint<K extends string> = [Extract<K, StorageCredentialEnvKey>] extends [never] ? unknown : StorageCredentialEnvKey extends K ? unknown : StorageKeyPairError;
298
+ interface FetchEnvOptions {
299
+ /**
300
+ * Neon project id. **Required** — the management API addresses branches through their
301
+ * project. Resolve it in your CLI (e.g. neonctl) and pass it in.
302
+ */
303
+ projectId: string;
304
+ /**
305
+ * Neon branch — its **name** (e.g. `main`) or its id (`br-…`). **Required** (or pass the
306
+ * legacy {@link FetchEnvOptions.branchId}). Resolved against the project's branches by
307
+ * id first, then by name, so either form works.
308
+ */
309
+ branch?: string;
310
+ /**
311
+ * @deprecated Legacy id-only field. Prefer {@link FetchEnvOptions.branch}, which accepts
312
+ * a branch name or id. Still honored for backward compatibility; ignored when `branch`
313
+ * is set.
314
+ */
315
+ branchId?: string;
316
+ /**
317
+ * Neon API key. Resolved via the standard chain (option → `NEON_API_KEY` →
318
+ * `~/.config/neonctl/credentials.json`) when omitted. Ignored when a custom `api`
319
+ * is supplied.
320
+ */
321
+ apiKey?: string;
322
+ /**
323
+ * Neon **management** API base URL (not the Auth base URL). Falls back to
324
+ * `NEON_API_HOST`, then production. Ignored when a custom `api` is supplied.
325
+ */
326
+ apiHost?: string;
327
+ /**
328
+ * Inject a custom NeonApi adapter. Primarily used by tests; production callers can rely
329
+ * on the default real adapter built from `apiKey`.
330
+ */
331
+ api?: NeonApi;
332
+ /**
333
+ * Role name to fetch credentials for. When omitted, the connection role is auto-picked:
334
+ * the only role on the branch, else Neon's default owner (`neondb_owner`), else the
335
+ * single role left after dropping the managed Auth/Data API roles
336
+ * (`authenticator`/`anonymous`/`authenticated`). Throws {@link PlatformError} with
337
+ * `PLATFORM_AMBIGUOUS_BRANCH_AUTH` only when more than one app role remains.
338
+ */
339
+ roleName?: string;
340
+ /**
341
+ * Database name. When omitted, it is auto-picked: Neon's default `neondb` if present,
342
+ * else the only database on the branch. Throws {@link PlatformError} with
343
+ * `PLATFORM_AMBIGUOUS_BRANCH_AUTH` when the branch has several databases and none is
344
+ * `neondb` (pass `databaseName` to disambiguate), and `PLATFORM_BRANCH_NOT_FOUND` when
345
+ * the branch has no databases or the requested `databaseName` does not exist.
346
+ */
347
+ databaseName?: string;
348
+ }
349
+ /**
350
+ * Resolve the project + branch this process should target, then fetch live Neon
351
+ * connection strings for that branch over the network. Async — calls the Neon API.
352
+ *
353
+ * Use this from build scripts and the `neon-env run` command, where top-level await is
354
+ * fine. For application code that needs a synchronous bootstrap (most frameworks: Drizzle
355
+ * config, Next.js, Vite, etc.), inject env vars via `neon-env run -- <cmd>` and use
356
+ * {@link parseEnv} instead — same {@link NeonEnv} shape, but a sync call against
357
+ * `process.env`.
358
+ *
359
+ * Filesystem- and env-agnostic: pass `projectId` and the target `branch` (name or id)
360
+ * explicitly (resolve them in your CLI, e.g. neonctl).
361
+ *
362
+ * ```ts
363
+ * import config from "../neon";
364
+ * import { fetchEnv } from "@neon/env";
365
+ *
366
+ * const env = await fetchEnv(config, { projectId: "patient-art-12345", branch: "main" });
367
+ * const db = drizzle(neon(env.postgres.databaseUrl), { schema });
368
+ * ```
369
+ *
370
+ * Pass `keys` to fetch only some of them — see the overload below.
371
+ *
372
+ * The package does **not** read `process.env`, mutate it, or touch the filesystem. Everything
373
+ * it returns comes from the Neon API, so a value the API cannot produce (a one-time secret
374
+ * issued to a previous call) is minted afresh rather than recovered. Callers that hold
375
+ * persisted secrets and want to keep them use {@link fetchEnvReusingSecrets}, which decides
376
+ * what is still valid and narrows this call's `keys` accordingly.
377
+ */
378
+ declare function fetchEnv<const C extends Config, const Args extends readonly [options: FetchEnvOptions & {
379
+ /**
380
+ * Fetch only these OS-level env vars, instead of everything the policy enables. The
381
+ * keys autocomplete from the policy ({@link SelectableEnvKey}), and the result is
382
+ * narrowed to match ({@link SelectedNeonEnv}). Inline literal arrays produce an exact
383
+ * result; runtime-built arrays make their possible namespaces and properties optional.
384
+ * `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` must be selected together.
385
+ *
386
+ * The point is not just a smaller result: **work is skipped too.** Leave out
387
+ * `AWS_ACCESS_KEY_ID` / `AWS_SECRET_ACCESS_KEY` / `NEON_AI_GATEWAY_TOKEN` and no branch
388
+ * credential is minted at all, so a caller that already holds valid secrets can refresh
389
+ * everything else without issuing a new one. The non-secret vars of the same features
390
+ * (`AWS_ENDPOINT_URL_S3`, `AWS_REGION`, `NEON_AI_GATEWAY_BASE_URL`) are not
391
+ * credential-backed and stay available on their own.
392
+ *
393
+ * The selection **intersects** with the policy rather than overriding it: naming a var
394
+ * the branch policy does not enable is not an error, it simply yields nothing.
395
+ */
396
+ keys: readonly SelectableEnvKey<C>[];
397
+ }]>(config: C, ...args: Args & StorageKeyPairArgsConstraint<NoInfer<Args>>): Promise<SelectedNeonEnv<FetchEnvKeysFromArgs<NoInfer<Args>>>>;
398
+ declare function fetchEnv<const C extends Config, const K extends SelectableEnvKey<C> = never>(config: C, options: [NoInfer<K>] extends [never] ? never : FetchEnvOptions & {
399
+ keys: readonly NoInfer<K>[];
400
+ } & StorageKeyUnionConstraint<NoInfer<K>>): Promise<FilteredNeonEnv<NoInfer<K>>>;
401
+ declare function fetchEnv<const C extends Config>(config: C, options: FetchEnvOptions & {
402
+ keys?: never;
403
+ }): Promise<NeonEnv<C>>;
404
+ /** Diagnostic-only fallback: valid keyed calls resolve through the exact overload above. */
405
+ declare function fetchEnv<const C extends Config, const Keys extends readonly SelectableEnvKey<C>[]>(config: C, options: FetchEnvOptions & {
406
+ keys: Keys;
407
+ } & StorageKeyPairError): Promise<never>;
408
+ /**
409
+ * The {@link fetchEnv} body, with the key selection as a plain argument and no generic
410
+ * narrowing. Exists for callers that compute the selection at runtime — notably
411
+ * {@link fetchEnvReusingSecrets}, which decides which keys it still needs by checking the
412
+ * branch — since the public overload's `keys` is bound to a literal union those callers cannot
413
+ * produce without asserting.
414
+ *
415
+ * `keys === null` selects everything the policy enables.
416
+ */
417
+
418
+ /**
419
+ * Project a fully-resolved {@link NeonEnv} into the OS-level `{ KEY: value }` pairs used
420
+ * for cross-process transport. Named after the web-platform `.entries()` convention
421
+ * (`URLSearchParams` / `Headers` / `FormData`); returns a `Record` rather than an
422
+ * iterator of tuples since that's the shape env injection needs (wrap with
423
+ * `Object.entries(...)` if you want literal `[key, value]` pairs). Used by `neon-env run`
424
+ * to inject the vars into a subprocess's `process.env`.
425
+ *
426
+ * Walks the value at runtime so it works for any `NeonEnv<C>` regardless of which
427
+ * conditional namespaces are present.
428
+ */
429
+ declare function toEntries(env: ResolvedNeonEnv): Record<string, string>;
430
+ /**
431
+ * Any resolved env {@link toEntries} can project: a full {@link NeonEnv}, or the narrowed
432
+ * result of a `keys`-filtered {@link fetchEnv} / {@link parseEnv} call. Every namespace and
433
+ * property is optional so a filtered result — which legitimately carries only what was asked
434
+ * for — projects to exactly the vars it holds instead of failing to type-check.
435
+ */
436
+ type ResolvedNeonEnv = { [N in keyof NamespaceEnv]?: Partial<NamespaceEnv[N]> };
437
+ //#endregion
438
+ //#endregion
439
+ //#region src/lib/parse-env.d.ts
440
+ /** The static `preview.functions` record of a config, or an empty record when absent. */
441
+ type PreviewFunctionsOf<C extends Config> = NonNullable<C["preview"]> extends {
442
+ functions: infer F;
443
+ } ? F : Record<never, never>;
444
+ /** The declared function slugs of a config (record keys), as a string union. */
445
+ type FunctionSlugOf<C extends Config> = Extract<keyof PreviewFunctionsOf<C>, string>;
446
+ /**
447
+ * Human-readable hint surfaced as the **expected type** of `parseEnv`'s `scope` argument when
448
+ * the policy declares no functions at all. Without it the argument's expected type is the bare
449
+ * `never` {@link FunctionSlugOf} yields, and TypeScript reports the opaque `Type '"x"' is not
450
+ * assignable to type 'never'`; the literal turns that into a sentence naming the fix (and the
451
+ * editor offers it as the single completion, so the empty completion list is explained rather
452
+ * than just empty). Mirrors `NeonAuthRequiredHint` in `@neon/config`.
453
+ */
454
+ type NoFunctionScopeHint = "this policy declares no `preview.functions`, so there is no function scope to read. Declare the function in `neon.ts` first, or omit the scope to read the branch env";
455
+ /**
456
+ * The expected type of `parseEnv`'s function-slug `scope` argument: the caller's inferred slug
457
+ * `S` normally, and the {@link NoFunctionScopeHint} message when the policy declares no
458
+ * functions. Keeping `S` (rather than `FunctionSlugOf<C>`) in the enabled branch is what makes
459
+ * the returned `function` namespace exact — it stays the one function's env keys instead of
460
+ * widening to every declared function's.
461
+ */
462
+ type FunctionScopeField<C extends Config, S extends string> = [FunctionSlugOf<C>] extends [never] ? NoFunctionScopeHint : S;
463
+ /** The declared env-var keys of one function `S`, as a string union. */
464
+ type FunctionEnvKeysOf<C extends Config, S extends string> = S extends keyof PreviewFunctionsOf<C> ? NonNullable<PreviewFunctionsOf<C>[S]> extends {
465
+ env: infer E;
466
+ } ? Extract<keyof E, string> : never : never;
467
+ /**
468
+ * The extra `function` namespace added to `parseEnv`'s result when called with a function
469
+ * slug scope: the declared env-var keys for that function, each resolved to a `string`.
470
+ */
471
+ type NeonFunctionEnv<C extends Config, S extends string> = {
472
+ function: Record<FunctionEnvKeysOf<C, S>, string>;
473
+ };
474
+ /**
475
+ * Synchronous, network-free counterpart to {@link fetchEnv}. Reads `process.env`, validates
476
+ * the required Neon env vars with zod, and returns the same {@link NeonEnv} shape — so the
477
+ * rest of your app touches `env.postgres.databaseUrl` instead of stringly-typed
478
+ * `process.env.DATABASE_URL` lookups.
479
+ *
480
+ * Designed for the **"env-vars-already-injected"** path:
481
+ * - You wrapped your dev command with `neon-env run -- <cmd>` or `neon dev`.
482
+ * - Your platform (Vercel, Fly, Railway, …) injected the vars via its own integration.
483
+ * - You are **inside a deployed Neon Function**, whose env was uploaded at `config apply`.
484
+ *
485
+ * Unlike the old API, `parseEnv` does **not** take a branch name: the secret set is now
486
+ * static (top-level `config.auth` / `config.dataApi`), so it reads those directly without
487
+ * evaluating the per-branch closure.
488
+ *
489
+ * The second argument is a **scope** or a **key filter**:
490
+ * - omitted — *external* scope (app bootstrap, build scripts, your dev machine). Returns the
491
+ * full `{ postgres, auth?, dataApi?, … }` the policy enables.
492
+ * - a **function slug** (a key of `config.preview.functions`) — *function* scope: you are
493
+ * running inside that function. Returns the same branch secrets **plus** a typed
494
+ * `function` namespace with the function's declared env-var keys. The slug autocompletes
495
+ * from the policy ({@link FunctionSlugOf}) and an undeclared one is a type error.
496
+ * - an **array of OS-level env-var keys** (e.g. `["DATABASE_URL", "NEON_AUTH_BASE_URL"]`) —
497
+ * *filtered* mode: only those vars are required and returned, as a narrowed namespaced
498
+ * shape. The keys autocomplete from the policy ({@link SelectableEnvKey}), so you can only
499
+ * pick vars the policy actually enables. Use this when a process needs just a subset (a
500
+ * Next.js app that reads `DATABASE_URL` but not `DATABASE_URL_UNPOOLED`, say) and you don't
501
+ * want `parseEnv` to throw over vars you never use.
502
+ *
503
+ * Throws `PlatformError(EnvNotInjected)` listing every missing/invalid var when the env
504
+ * isn't fully populated, with a fix hint pointing back at `neon dev` / `neon-env run`.
505
+ *
506
+ * ```ts
507
+ * import config from "../neon";
508
+ * import { parseEnv } from "@neon/env";
509
+ *
510
+ * // External (app / build):
511
+ * const env = parseEnv(config);
512
+ * const db = drizzle(neon(env.postgres.databaseUrl), { schema });
513
+ *
514
+ * // Inside the "hello" function:
515
+ * const env = parseEnv(config, "hello");
516
+ * env.function.resendApiKey; // typed from hello's declared env keys
517
+ *
518
+ * // Filtered: only enforce + return the pooled URL.
519
+ * const { postgres } = parseEnv(config, ["DATABASE_URL"]);
520
+ * postgres.databaseUrl; // string — `databaseUrlUnpooled` is absent
521
+ * ```
522
+ */
523
+ declare function parseEnv<const C extends Config>(config: C): NeonEnv<C>;
524
+ declare function parseEnv<const C extends Config, const S extends FunctionSlugOf<C>>(config: C, scope: FunctionScopeField<C, S>): NeonEnv<C> & NeonFunctionEnv<C, S>;
525
+ declare function parseEnv<const C extends Config, const K extends SelectableEnvKey<C>>(config: C, keys: readonly K[]): FilteredNeonEnv<K>;
526
+ //#endregion
527
+ export { type FetchEnvOptions, type FilteredNeonEnv, type FunctionSlugOf, NEON_ENV_VAR_KEYS, type NeonAiGatewayEnv, type NeonAuthEnv, type NeonBranchEnv, type NeonDataApiEnv, type NeonEnv, type NeonFunctionEnv, type NeonPostgresEnv, type NeonStorageEnv, type ResolvedNeonEnv, type SelectableEnvKey, type SelectedNeonEnv, fetchEnv, parseEnv, toEntries };
528
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","names":["Config","CredentialScope","NeonApi","NeonBranchSnapshot","ResolvedPreviewConfig","resolveConfig","NEON_ENV_VAR_KEYS","NeonBranchEnv","NeonPostgresEnv","NeonAuthEnv","NeonDataApiEnv","NeonStorageEnv","NeonAiGatewayEnv","NoNamespace","Record","ServiceOn","T","HasKeys","HasBuckets","C","NonNullable","B","AiGatewayOn","A","NeonEnv","EnvKeysByNamespace","NamespaceEnv","EnvKeyToProp","SelectableEnvKey","FilteredNeonEnv","K","N","Extract","P","OptionalFilteredNeonEnv","IsUnion","Whole","TupleHasUnion","Head","Tail","SelectedNeonEnv","Keys","StorageCredentialEnvKey","StorageKeyPairError","TupleDefinitelyContains","Key","TupleDefinitelyContainsStoragePair","InvalidStorageKeyTuple","StorageKeyPairConstraint","FetchEnvKeysFromArgs","Args","StorageKeyPairArgsConstraint","StorageKeyUnionConstraint","FetchEnvOptions","fetchEnv","NoInfer","Promise","fetchEnvKeys","ResolvedNeonEnv","resolveBranchPolicy","Pick","ReturnType","previewCredentialScopes","credentialName","credentialEnvKeys","policyEnvKeys","createApiFromOptions","toEntries","Partial"],"sources":["../../../internals/env-core/dist/env.d.ts","../src/lib/parse-env.ts"],"sourcesContent":["import { Config, CredentialScope, NeonApi, NeonBranchSnapshot, ResolvedPreviewConfig, resolveConfig } from \"@neon/config/v1\";\n\n//#region src/env.d.ts\n\ndeclare const NEON_ENV_VAR_KEYS: {\n /**\n * Branch identity. `NEON_BRANCH` carries the branch **name** and is injected into the\n * Neon Functions runtime on every branch (including the default) by default. `env pull` /\n * `neon dev` / `neon-env run` emit it too so local dev mirrors the deployed runtime.\n */\n readonly branch: {\n readonly name: \"NEON_BRANCH\";\n };\n readonly postgres: {\n readonly databaseUrl: \"DATABASE_URL\";\n readonly databaseUrlUnpooled: \"DATABASE_URL_UNPOOLED\";\n };\n readonly auth: {\n readonly baseUrl: \"NEON_AUTH_BASE_URL\";\n readonly jwksUrl: \"NEON_AUTH_JWKS_URL\";\n };\n readonly dataApi: {\n readonly url: \"NEON_DATA_API_URL\";\n };\n /**\n * Object storage (Preview). The S3 SDKs read `AWS_*` from their standard config chain, so\n * a branch credential + `neon dev` / `env pull` makes object storage work from env alone.\n * `region` is injected under the SDK-standard `AWS_REGION`.\n */\n readonly storage: {\n readonly accessKeyId: \"AWS_ACCESS_KEY_ID\";\n readonly secretAccessKey: \"AWS_SECRET_ACCESS_KEY\";\n readonly endpoint: \"AWS_ENDPOINT_URL_S3\";\n readonly region: \"AWS_REGION\";\n };\n /**\n * AI Gateway (Preview). Exposed under the Neon-branded env vars the deployed Functions\n * runtime injects: `apiKey` is the minted credential's bearer (`NEON_AI_GATEWAY_TOKEN`)\n * and `baseUrl` is the bare branch gateway host (`NEON_AI_GATEWAY_BASE_URL`,\n * `scheme://host`, no path). Clients like `@neon/ai-sdk-provider` read these and append the\n * dialect route (`/v1`, `/openai/v1`, `/anthropic/v1`) themselves (https://github.com/vercel/ai/pull/15997).\n */\n readonly aiGateway: {\n readonly apiKey: \"NEON_AI_GATEWAY_TOKEN\";\n readonly baseUrl: \"NEON_AI_GATEWAY_BASE_URL\";\n };\n};\n/**\n * Branch identity for the resolved branch. Always present on a `fetchEnv` result (the branch\n * name is always known); on a `parseEnv` result it's present only when `NEON_BRANCH` was\n * injected into `process.env` (the Functions runtime injects it by default, as do `neon dev` /\n * `neon-env run` / `env pull`). `name` is the branch **name** (e.g. `main`, `preview/foo`).\n */\ninterface NeonBranchEnv {\n name: string;\n}\n/** Per-namespace inner shapes. Exposed so consumers can name the parts independently. */\ninterface NeonPostgresEnv {\n /**\n * Pooled connection string (via Neon's PgBouncer pooler). The right default for\n * serverless drivers (`@neondatabase/serverless`, edge runtimes, Postgres.js, …).\n */\n databaseUrl: string;\n /**\n * Direct (unpooled) connection string. Use this when you need session-level\n * features (`LISTEN`/`NOTIFY`, prepared statements across calls, transactions\n * spanning round-trips) that PgBouncer's transaction-mode pooling drops.\n */\n databaseUrlUnpooled: string;\n}\n/**\n * Bits of a Neon Auth integration for the resolved branch. Only present on `NeonEnv`\n * when the branch policy enables `auth`.\n *\n * Neon Auth exposes the `baseUrl` (which doubles as the publishable client identifier) and\n * the `jwksUrl` used to verify tokens it issues. `fetchEnv` reads both from the live\n * integration; `parseEnv` reads them from `process.env` (`NEON_AUTH_BASE_URL` /\n * `NEON_AUTH_JWKS_URL`).\n */\ninterface NeonAuthEnv {\n baseUrl: string;\n /** JWKS URL for verifying tokens issued by Neon Auth (`NEON_AUTH_JWKS_URL`). */\n jwksUrl: string;\n}\n/** Bits of a Neon Data API integration. Only present when the branch policy enables it. */\ninterface NeonDataApiEnv {\n url: string;\n}\n/**\n * S3-compatible object-storage access for the branch (Preview). Present on `NeonEnv` only\n * when the policy declares `preview.buckets`. Combines a minted branch credential's access\n * keys (`accessKeyId` = the credential's full token id, e.g. `nak_live_…`, which is what the\n * storage gateway authenticates against; `secretAccessKey` = its\n * `s3_secret_access_key`) with the branch's non-secret connection details\n * (`endpoint`/`region`, from `GET .../storage`). Projects to the AWS SDK's\n * standard config env (`AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_ENDPOINT_URL_S3`,\n * `AWS_REGION`) so the S3 client works from env alone. Neon's storage gateway always\n * requires path-style addressing, so set `forcePathStyle: true` on your S3 client.\n */\ninterface NeonStorageEnv {\n accessKeyId: string;\n secretAccessKey: string;\n /** S3-compatible endpoint URL for the branch. */\n endpoint: string;\n /** AWS region string (e.g. `us-east-2`). Injected as `AWS_REGION`. */\n region: string;\n}\n/**\n * AI Gateway access for the branch (Preview). Present on `NeonEnv` only when the policy\n * enables `preview.aiGateway`. `apiKey` is the minted credential's bearer (`api_token`);\n * `baseUrl` is the bare branch-scoped gateway host\n * (`https://<branchId>-api.ai.<region>.…`, no path). Projects to the Neon-branded env\n * (`NEON_AI_GATEWAY_TOKEN`, `NEON_AI_GATEWAY_BASE_URL`); clients like `@neon/ai-sdk-provider`\n * append the dialect route (`/v1`, `/openai/v1`, `/anthropic/v1`) themselves.\n */\ninterface NeonAiGatewayEnv {\n apiKey: string;\n baseUrl: string;\n}\n/**\n * Empty record alias used as the \"false\" branch of the conditional namespace adds below.\n * `Record<never, never>` is the no-op for intersection — the cleaner alternative to `{}`,\n * which biome rejects (it means \"any non-null\", not \"empty object\").\n */\ntype NoNamespace = Record<never, never>;\n/**\n * Resolve a **static** service toggle (the value of `config.auth` / `config.dataApi`) to a\n * type-level boolean. The whole-thing wrapping (`[T] extends […]`) turns off distribution\n * so a union/`undefined` is checked as one unit:\n *\n * - `false` / `{ enabled: false }` / `undefined` → `false`\n * - `true` / `{ enabled: true }` / any other object (`{}`, `{ enabled?: boolean }`) → `true`\n * (a present toggle defaults to enabled)\n * - the bare `boolean | ServiceToggle | undefined` (the default `Config` param, no literal\n * info) → `false`, so an untyped policy yields just `{ postgres }`.\n */\ntype ServiceOn<T> = [T] extends [false] ? false : [T] extends [{\n enabled: false;\n}] ? false : [T] extends [undefined] ? false : [T] extends [true] ? true : [T] extends [{\n enabled: true;\n}] ? true : [T] extends [object] ? true : false;\n/** True when `T` has at least one known key; `false` for `{}` / `never`. */\ntype HasKeys<T> = [keyof T] extends [never] ? false : true;\n/**\n * Whether the policy's **static** `preview` block declares at least one object-storage bucket\n * (`preview.buckets`). Drives whether {@link NeonEnv} carries the `storage` namespace.\n *\n * The leading `[never]` guard is load-bearing: when a policy has no `preview` at all,\n * `NonNullable<C[\"preview\"]>` is `never`, and without the guard the `extends { … }` probe\n * below would vacuously match (everything extends `never`-derived shapes) and `HasKeys<never>`\n * would resolve `true`, wrongly adding the namespace. The guard short-circuits to `false`.\n */\ntype HasBuckets<C extends Config> = [NonNullable<C[\"preview\"]>] extends [never] ? false : NonNullable<C[\"preview\"]> extends {\n buckets: infer B;\n} ? HasKeys<NonNullable<B>> : false;\n/**\n * Whether the policy's **static** `preview` block enables the AI Gateway\n * (`preview.aiGateway`). Drives whether {@link NeonEnv} carries the `aiGateway` namespace.\n *\n * The leading `[never]` guard is load-bearing for the same reason as {@link HasBuckets}: when\n * a policy has no `preview`, `NonNullable<C[\"preview\"]>` is `never`, and a naked `never` in the\n * `extends` below would *distribute* (collapsing the result — and the whole `NeonEnv`\n * intersection — to `never`). The tuple-wrapped guard short-circuits that to `false`.\n */\ntype AiGatewayOn<C extends Config> = [NonNullable<C[\"preview\"]>] extends [never] ? false : NonNullable<C[\"preview\"]> extends {\n aiGateway: infer A;\n} ? ServiceOn<NonNullable<A>> : false;\n/**\n * Static, namespaced shape of `fetchEnv` / `parseEnv`'s return value. Generic over the\n * {@link Config} so the type system knows which optional namespaces are present.\n *\n * Because the secret-bearing toggles now live in the **static** top-level `config.auth` /\n * `config.dataApi` (not inside a per-branch closure), the namespace presence is a direct\n * read of those fields — no union-across-branches, no default-config escape hatch:\n *\n * - `postgres` is always present.\n * - `auth` is added iff `config.auth` is statically enabled.\n * - `dataApi` is added iff `config.dataApi` is statically enabled.\n * - `storage` is added iff `config.preview.buckets` declares at least one bucket.\n * - `aiGateway` is added iff `config.preview.aiGateway` is statically enabled.\n */\ntype NeonEnv<C extends Config = Config> = {\n postgres: NeonPostgresEnv;\n /**\n * Branch identity (`NEON_BRANCH`). Optional because `parseEnv` only surfaces it when the\n * var was injected; `fetchEnv` always populates it.\n */\n branch?: NeonBranchEnv;\n} & (ServiceOn<NonNullable<C[\"auth\"]>> extends true ? {\n auth: NeonAuthEnv;\n} : NoNamespace) & (ServiceOn<NonNullable<C[\"dataApi\"]>> extends true ? {\n dataApi: NeonDataApiEnv;\n} : NoNamespace) & (HasBuckets<C> extends true ? {\n storage: NeonStorageEnv;\n} : NoNamespace) & (AiGatewayOn<C> extends true ? {\n aiGateway: NeonAiGatewayEnv;\n} : NoNamespace);\n/**\n * OS-level env-var keys grouped by the {@link NeonEnv} namespace they populate. Only the\n * **input** vars `parseEnv` validates are listed — the output-only aliases in\n * {@link NEON_ENV_VAR_KEYS} (`NEON_AI_GATEWAY_TOKEN`, …) are intentionally absent, so they\n * are not selectable in a `parseEnv(config, keys)` filter. Keep in sync with\n * {@link EnvKeyToProp}.\n */\ninterface EnvKeysByNamespace {\n postgres: \"DATABASE_URL\" | \"DATABASE_URL_UNPOOLED\";\n branch: \"NEON_BRANCH\";\n auth: \"NEON_AUTH_BASE_URL\" | \"NEON_AUTH_JWKS_URL\";\n dataApi: \"NEON_DATA_API_URL\";\n storage: \"AWS_ACCESS_KEY_ID\" | \"AWS_SECRET_ACCESS_KEY\" | \"AWS_ENDPOINT_URL_S3\" | \"AWS_REGION\";\n aiGateway: \"NEON_AI_GATEWAY_TOKEN\" | \"NEON_AI_GATEWAY_BASE_URL\";\n}\n/** The {@link NeonEnv} namespace interface backing each namespace key. */\ninterface NamespaceEnv {\n postgres: NeonPostgresEnv;\n branch: NeonBranchEnv;\n auth: NeonAuthEnv;\n dataApi: NeonDataApiEnv;\n storage: NeonStorageEnv;\n aiGateway: NeonAiGatewayEnv;\n}\n/** OS-level env-var key → the camelCase property it sets on its namespace object. */\ninterface EnvKeyToProp {\n DATABASE_URL: \"databaseUrl\";\n DATABASE_URL_UNPOOLED: \"databaseUrlUnpooled\";\n NEON_BRANCH: \"name\";\n NEON_AUTH_BASE_URL: \"baseUrl\";\n NEON_AUTH_JWKS_URL: \"jwksUrl\";\n NEON_DATA_API_URL: \"url\";\n AWS_ACCESS_KEY_ID: \"accessKeyId\";\n AWS_SECRET_ACCESS_KEY: \"secretAccessKey\";\n AWS_ENDPOINT_URL_S3: \"endpoint\";\n AWS_REGION: \"region\";\n NEON_AI_GATEWAY_TOKEN: \"apiKey\";\n NEON_AI_GATEWAY_BASE_URL: \"baseUrl\";\n}\n/**\n * The OS-level env-var keys selectable for a given policy: the union of input vars across\n * exactly the namespaces {@link NeonEnv}<C> carries. Drives the typesafe autocomplete of the\n * `keys` filter — selecting a var from a namespace the policy does not enable is a type error\n * (e.g. `NEON_AUTH_BASE_URL` is only offered once the policy turns on `auth`).\n */\ntype SelectableEnvKey<C extends Config> = EnvKeysByNamespace[keyof NeonEnv<C> & keyof EnvKeysByNamespace];\n/**\n * The result shape of a **filtered** `parseEnv(config, keys)` call: the namespaced\n * {@link NeonEnv} restricted to exactly the selected OS-level keys `K`. Namespaces with no\n * selected key are dropped, and within a kept namespace only the selected properties survive\n * — selecting just `[\"DATABASE_URL\"]` yields `{ postgres: { databaseUrl: string } }`, with no\n * `databaseUrlUnpooled`.\n *\n * The policy gating lives on the `parseEnv` overload (which binds `K` to\n * {@link SelectableEnvKey}); this type only needs the selection, so it takes a bare\n * `K extends string` and filters with `Extract`. The outer mapped type's `as` clause drops\n * any namespace whose intersection with the selection is empty (`[…] extends [never]`,\n * tuple-wrapped to switch off distribution); the inner one re-keys each selected OS var to its\n * camelCase property and looks the value type up on the canonical namespace interface, so it\n * stays correct if a field ever stops being a plain `string`.\n */\ntype FilteredNeonEnv<K extends string> = { [N in keyof EnvKeysByNamespace as [Extract<K, EnvKeysByNamespace[N]>] extends [never] ? never : N]: { [P in Extract<K, EnvKeysByNamespace[N]> as EnvKeyToProp[P & keyof EnvKeyToProp]]: NamespaceEnv[N][EnvKeyToProp[P & keyof EnvKeyToProp] & keyof NamespaceEnv[N]] } };\n/**\n * A filtered result when the exact runtime contents of a key array are unknown. Both the\n * namespace and its selected properties are optional because the array may omit any member of\n * its element union, or be empty.\n */\ntype OptionalFilteredNeonEnv<K extends string> = { [N in keyof EnvKeysByNamespace as [Extract<K, EnvKeysByNamespace[N]>] extends [never] ? never : N]?: { [P in Extract<K, EnvKeysByNamespace[N]> as EnvKeyToProp[P & keyof EnvKeyToProp]]?: NamespaceEnv[N][EnvKeyToProp[P & keyof EnvKeyToProp] & keyof NamespaceEnv[N]] } };\n/** Whether `T` is a union rather than one concrete type. */\ntype IsUnion<T, Whole = T> = T extends Whole ? [Whole] extends [T] ? false : true : never;\n/** Whether any fixed tuple position can hold more than one key at runtime. */\ntype TupleHasUnion<T extends readonly unknown[]> = T extends readonly [] ? false : T extends readonly [infer Head, ...infer Tail extends readonly unknown[]] ? true extends IsUnion<Head> ? true : TupleHasUnion<Tail> : true;\n/**\n * The sound result of selecting an array of OS-level env-var keys.\n *\n * Inline literal tuples remain exact. Widened arrays, rest tuples, and tuple positions whose\n * value is a union are conservative because their runtime contents may be any subset of the\n * element type. The leading conditional distributes unions of whole literal tuples, preserving\n * each exact alternative.\n */\ntype SelectedNeonEnv<Keys extends readonly string[]> = Keys extends readonly string[] ? number extends Keys[\"length\"] ? OptionalFilteredNeonEnv<Keys[number]> : TupleHasUnion<Keys> extends true ? OptionalFilteredNeonEnv<Keys[number]> : FilteredNeonEnv<Keys[number]> : never;\ntype StorageCredentialEnvKey = \"AWS_ACCESS_KEY_ID\" | \"AWS_SECRET_ACCESS_KEY\";\ntype StorageKeyPairError = {\n readonly \"fetchEnv keys must include AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY together\": never;\n};\ntype TupleDefinitelyContains<Keys extends readonly string[], Key extends string> = Keys extends readonly [infer Head extends string, ...infer Tail extends readonly string[]] ? [Head] extends [Key] ? true : TupleDefinitelyContains<Tail, Key> : false;\ntype TupleDefinitelyContainsStoragePair<Keys extends readonly string[]> = TupleDefinitelyContains<Keys, \"AWS_ACCESS_KEY_ID\"> extends true ? TupleDefinitelyContains<Keys, \"AWS_SECRET_ACCESS_KEY\"> extends true ? true : false : false;\n/**\n * Reject a fixed key tuple that contains only one half of the storage credential. Dynamic\n * arrays are checked at runtime because their contents are not known to TypeScript.\n */\ntype InvalidStorageKeyTuple<Keys extends readonly string[]> = Keys extends unknown ? number extends Keys[\"length\"] ? never : [Extract<Keys[number], StorageCredentialEnvKey>] extends [never] ? never : TupleDefinitelyContainsStoragePair<Keys> extends true ? never : Keys : never;\ntype StorageKeyPairConstraint<Keys extends readonly string[]> = [InvalidStorageKeyTuple<Keys>] extends [never] ? unknown : StorageKeyPairError;\ntype FetchEnvKeysFromArgs<Args extends readonly unknown[]> = Args[0] extends {\n keys: infer Keys extends readonly string[];\n} ? Keys : never;\ntype StorageKeyPairArgsConstraint<Args extends readonly unknown[]> = StorageKeyPairConstraint<FetchEnvKeysFromArgs<Args>>;\n/** Preserve the same pair rule for callers that explicitly provide the legacy `K` generic. */\ntype StorageKeyUnionConstraint<K extends string> = [Extract<K, StorageCredentialEnvKey>] extends [never] ? unknown : StorageCredentialEnvKey extends K ? unknown : StorageKeyPairError;\ninterface FetchEnvOptions {\n /**\n * Neon project id. **Required** — the management API addresses branches through their\n * project. Resolve it in your CLI (e.g. neonctl) and pass it in.\n */\n projectId: string;\n /**\n * Neon branch — its **name** (e.g. `main`) or its id (`br-…`). **Required** (or pass the\n * legacy {@link FetchEnvOptions.branchId}). Resolved against the project's branches by\n * id first, then by name, so either form works.\n */\n branch?: string;\n /**\n * @deprecated Legacy id-only field. Prefer {@link FetchEnvOptions.branch}, which accepts\n * a branch name or id. Still honored for backward compatibility; ignored when `branch`\n * is set.\n */\n branchId?: string;\n /**\n * Neon API key. Resolved via the standard chain (option → `NEON_API_KEY` →\n * `~/.config/neonctl/credentials.json`) when omitted. Ignored when a custom `api`\n * is supplied.\n */\n apiKey?: string;\n /**\n * Neon **management** API base URL (not the Auth base URL). Falls back to\n * `NEON_API_HOST`, then production. Ignored when a custom `api` is supplied.\n */\n apiHost?: string;\n /**\n * Inject a custom NeonApi adapter. Primarily used by tests; production callers can rely\n * on the default real adapter built from `apiKey`.\n */\n api?: NeonApi;\n /**\n * Role name to fetch credentials for. When omitted, the connection role is auto-picked:\n * the only role on the branch, else Neon's default owner (`neondb_owner`), else the\n * single role left after dropping the managed Auth/Data API roles\n * (`authenticator`/`anonymous`/`authenticated`). Throws {@link PlatformError} with\n * `PLATFORM_AMBIGUOUS_BRANCH_AUTH` only when more than one app role remains.\n */\n roleName?: string;\n /**\n * Database name. When omitted, it is auto-picked: Neon's default `neondb` if present,\n * else the only database on the branch. Throws {@link PlatformError} with\n * `PLATFORM_AMBIGUOUS_BRANCH_AUTH` when the branch has several databases and none is\n * `neondb` (pass `databaseName` to disambiguate), and `PLATFORM_BRANCH_NOT_FOUND` when\n * the branch has no databases or the requested `databaseName` does not exist.\n */\n databaseName?: string;\n}\n/**\n * Resolve the project + branch this process should target, then fetch live Neon\n * connection strings for that branch over the network. Async — calls the Neon API.\n *\n * Use this from build scripts and the `neon-env run` command, where top-level await is\n * fine. For application code that needs a synchronous bootstrap (most frameworks: Drizzle\n * config, Next.js, Vite, etc.), inject env vars via `neon-env run -- <cmd>` and use\n * {@link parseEnv} instead — same {@link NeonEnv} shape, but a sync call against\n * `process.env`.\n *\n * Filesystem- and env-agnostic: pass `projectId` and the target `branch` (name or id)\n * explicitly (resolve them in your CLI, e.g. neonctl).\n *\n * ```ts\n * import config from \"../neon\";\n * import { fetchEnv } from \"@neon/env\";\n *\n * const env = await fetchEnv(config, { projectId: \"patient-art-12345\", branch: \"main\" });\n * const db = drizzle(neon(env.postgres.databaseUrl), { schema });\n * ```\n *\n * Pass `keys` to fetch only some of them — see the overload below.\n *\n * The package does **not** read `process.env`, mutate it, or touch the filesystem. Everything\n * it returns comes from the Neon API, so a value the API cannot produce (a one-time secret\n * issued to a previous call) is minted afresh rather than recovered. Callers that hold\n * persisted secrets and want to keep them use {@link fetchEnvReusingSecrets}, which decides\n * what is still valid and narrows this call's `keys` accordingly.\n */\ndeclare function fetchEnv<const C extends Config, const Args extends readonly [options: FetchEnvOptions & {\n /**\n * Fetch only these OS-level env vars, instead of everything the policy enables. The\n * keys autocomplete from the policy ({@link SelectableEnvKey}), and the result is\n * narrowed to match ({@link SelectedNeonEnv}). Inline literal arrays produce an exact\n * result; runtime-built arrays make their possible namespaces and properties optional.\n * `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` must be selected together.\n *\n * The point is not just a smaller result: **work is skipped too.** Leave out\n * `AWS_ACCESS_KEY_ID` / `AWS_SECRET_ACCESS_KEY` / `NEON_AI_GATEWAY_TOKEN` and no branch\n * credential is minted at all, so a caller that already holds valid secrets can refresh\n * everything else without issuing a new one. The non-secret vars of the same features\n * (`AWS_ENDPOINT_URL_S3`, `AWS_REGION`, `NEON_AI_GATEWAY_BASE_URL`) are not\n * credential-backed and stay available on their own.\n *\n * The selection **intersects** with the policy rather than overriding it: naming a var\n * the branch policy does not enable is not an error, it simply yields nothing.\n */\n keys: readonly SelectableEnvKey<C>[];\n}]>(config: C, ...args: Args & StorageKeyPairArgsConstraint<NoInfer<Args>>): Promise<SelectedNeonEnv<FetchEnvKeysFromArgs<NoInfer<Args>>>>;\ndeclare function fetchEnv<const C extends Config, const K extends SelectableEnvKey<C> = never>(config: C, options: [NoInfer<K>] extends [never] ? never : FetchEnvOptions & {\n keys: readonly NoInfer<K>[];\n} & StorageKeyUnionConstraint<NoInfer<K>>): Promise<FilteredNeonEnv<NoInfer<K>>>;\ndeclare function fetchEnv<const C extends Config>(config: C, options: FetchEnvOptions & {\n keys?: never;\n}): Promise<NeonEnv<C>>;\n/** Diagnostic-only fallback: valid keyed calls resolve through the exact overload above. */\ndeclare function fetchEnv<const C extends Config, const Keys extends readonly SelectableEnvKey<C>[]>(config: C, options: FetchEnvOptions & {\n keys: Keys;\n} & StorageKeyPairError): Promise<never>;\n/**\n * The {@link fetchEnv} body, with the key selection as a plain argument and no generic\n * narrowing. Exists for callers that compute the selection at runtime — notably\n * {@link fetchEnvReusingSecrets}, which decides which keys it still needs by checking the\n * branch — since the public overload's `keys` is bound to a literal union those callers cannot\n * produce without asserting.\n *\n * `keys === null` selects everything the policy enables.\n */\ndeclare function fetchEnvKeys(config: Config, options: FetchEnvOptions, keys: readonly string[] | null): Promise<ResolvedNeonEnv>;\n/**\n * Resolve the target branch and evaluate the policy against it — the first thing any\n * branch-scoped operation needs. Shared by {@link fetchEnv} and {@link fetchEnvReusingSecrets}\n * so the two agree on which branch they're talking about and what it has enabled.\n */\ndeclare function resolveBranchPolicy(config: Config, options: Pick<FetchEnvOptions, \"projectId\" | \"branch\" | \"branchId\">, api: NeonApi): Promise<{\n branch: NeonBranchSnapshot;\n desired: ReturnType<typeof resolveConfig>;\n}>;\n/**\n * Scopes the branch credential should carry for a resolved branch policy and optional key\n * selection. Only object storage and the AI Gateway *require* a credential; functions never\n * force one, but `functions:invoke` rides along when another selected feature mints one.\n */\ndeclare function previewCredentialScopes(preview: ResolvedPreviewConfig | undefined, selected?: {\n storage: boolean;\n aiGateway: boolean;\n}): CredentialScope[];\n/** The `name` this tool stamps on every credential it mints, so it can recognize its own. */\ndeclare function credentialName(branchName: string): string;\n/** The env-var keys a branch credential's secrets surface under, in emit order. */\ndeclare function credentialEnvKeys(flags: {\n storage: boolean;\n aiGateway: boolean;\n}): string[];\n/**\n * Every OS-level env var a resolved branch policy produces, in emit order. Lets a caller\n * subtract the ones it already holds and pass the rest as {@link fetchEnv}'s `keys`, without\n * re-deriving which vars a policy implies.\n */\ndeclare function policyEnvKeys(desired: ReturnType<typeof resolveConfig>): string[];\ndeclare function createApiFromOptions(options: FetchEnvOptions): NeonApi;\n/**\n * Project a fully-resolved {@link NeonEnv} into the OS-level `{ KEY: value }` pairs used\n * for cross-process transport. Named after the web-platform `.entries()` convention\n * (`URLSearchParams` / `Headers` / `FormData`); returns a `Record` rather than an\n * iterator of tuples since that's the shape env injection needs (wrap with\n * `Object.entries(...)` if you want literal `[key, value]` pairs). Used by `neon-env run`\n * to inject the vars into a subprocess's `process.env`.\n *\n * Walks the value at runtime so it works for any `NeonEnv<C>` regardless of which\n * conditional namespaces are present.\n */\ndeclare function toEntries(env: ResolvedNeonEnv): Record<string, string>;\n/**\n * Any resolved env {@link toEntries} can project: a full {@link NeonEnv}, or the narrowed\n * result of a `keys`-filtered {@link fetchEnv} / {@link parseEnv} call. Every namespace and\n * property is optional so a filtered result — which legitimately carries only what was asked\n * for — projects to exactly the vars it holds instead of failing to type-check.\n */\ntype ResolvedNeonEnv = { [N in keyof NamespaceEnv]?: Partial<NamespaceEnv[N]> };\n//#endregion\nexport { FetchEnvOptions, FilteredNeonEnv, NEON_ENV_VAR_KEYS, NeonAiGatewayEnv, NeonAuthEnv, NeonBranchEnv, NeonDataApiEnv, NeonEnv, NeonPostgresEnv, NeonStorageEnv, ResolvedNeonEnv, SelectableEnvKey, SelectedNeonEnv, createApiFromOptions, credentialEnvKeys, credentialName, fetchEnv, fetchEnvKeys, policyEnvKeys, previewCredentialScopes, resolveBranchPolicy, toEntries };\n//# sourceMappingURL=env.d.ts.map",null],"mappings":"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"}