neon 2.1.2 → 2.29.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/LICENSE.md +178 -0
- package/README.md +601 -0
- package/dist/analytics.js +156 -0
- package/dist/api.js +665 -0
- package/dist/auth.js +127 -0
- package/dist/callback.html +51 -0
- package/dist/cli.js +9 -0
- package/dist/commands/auth.js +214 -0
- package/dist/commands/bootstrap.js +481 -0
- package/dist/commands/branches.js +481 -0
- package/dist/commands/bucket.js +543 -0
- package/dist/commands/checkout.js +289 -0
- package/dist/commands/config.js +544 -0
- package/dist/commands/connection_string.js +172 -0
- package/dist/commands/data_api.js +285 -0
- package/dist/commands/databases.js +82 -0
- package/dist/commands/deploy.js +26 -0
- package/dist/commands/dev.js +698 -0
- package/dist/commands/env.js +166 -0
- package/dist/commands/functions.js +373 -0
- package/dist/commands/index.js +54 -0
- package/dist/commands/init.js +73 -0
- package/dist/commands/ip_allow.js +137 -0
- package/dist/commands/link.js +1121 -0
- package/dist/commands/neon_auth.js +1028 -0
- package/dist/commands/operations.js +28 -0
- package/dist/commands/orgs.js +24 -0
- package/dist/commands/projects.js +372 -0
- package/dist/commands/psql.js +62 -0
- package/dist/commands/roles.js +65 -0
- package/dist/commands/schema_diff.js +151 -0
- package/dist/commands/set_context.js +29 -0
- package/dist/commands/status.js +40 -0
- package/dist/commands/user.js +15 -0
- package/dist/commands/vpc_endpoints.js +134 -0
- package/dist/config.js +11 -0
- package/dist/config_format.js +72 -0
- package/dist/context.js +177 -0
- package/dist/current_branch_fast_path.js +55 -0
- package/dist/dev/env.js +240 -0
- package/dist/dev/functions.js +70 -0
- package/dist/dev/inputs.js +63 -0
- package/dist/dev/runtime.js +146 -0
- package/dist/env.js +36 -0
- package/dist/env_file.js +159 -0
- package/dist/errors.js +80 -0
- package/dist/functions_api.js +44 -0
- package/dist/help.js +146 -0
- package/dist/index.js +234 -0
- package/dist/log.js +18 -0
- package/dist/parameters.gen.js +480 -0
- package/dist/pkg.js +25 -0
- package/dist/psql/cli.js +53 -0
- package/dist/psql/command/cmd_cond.js +437 -0
- package/dist/psql/command/cmd_connect.js +820 -0
- package/dist/psql/command/cmd_copy.js +1035 -0
- package/dist/psql/command/cmd_describe.js +1815 -0
- package/dist/psql/command/cmd_format.js +922 -0
- package/dist/psql/command/cmd_io.js +2193 -0
- package/dist/psql/command/cmd_lo.js +393 -0
- package/dist/psql/command/cmd_meta.js +970 -0
- package/dist/psql/command/cmd_misc.js +187 -0
- package/dist/psql/command/cmd_pipeline.js +1148 -0
- package/dist/psql/command/cmd_restrict.js +171 -0
- package/dist/psql/command/cmd_show.js +766 -0
- package/dist/psql/command/dispatch.js +343 -0
- package/dist/psql/command/inputQueue.js +42 -0
- package/dist/psql/command/shared.js +71 -0
- package/dist/psql/complete/filenames.js +139 -0
- package/dist/psql/complete/index.js +104 -0
- package/dist/psql/complete/matcher.js +315 -0
- package/dist/psql/complete/psqlVars.js +247 -0
- package/dist/psql/complete/queries.js +493 -0
- package/dist/psql/complete/rules.js +2424 -0
- package/dist/psql/core/common.js +1253 -0
- package/dist/psql/core/help.js +576 -0
- package/dist/psql/core/mainloop.js +1360 -0
- package/dist/psql/core/prompt.js +440 -0
- package/dist/psql/core/settings.js +684 -0
- package/dist/psql/core/sqlHelp.js +1066 -0
- package/dist/psql/core/startup.js +846 -0
- package/dist/psql/core/syncVars.js +116 -0
- package/dist/psql/core/variables.js +287 -0
- package/dist/psql/describe/formatters.js +1290 -0
- package/dist/psql/describe/processNamePattern.js +270 -0
- package/dist/psql/describe/queries.js +2378 -0
- package/dist/psql/describe/versionGate.js +43 -0
- package/dist/psql/index.js +2030 -0
- package/dist/psql/io/history.js +299 -0
- package/dist/psql/io/input.js +120 -0
- package/dist/psql/io/lineEditor/buffer.js +325 -0
- package/dist/psql/io/lineEditor/complete.js +227 -0
- package/dist/psql/io/lineEditor/filename.js +159 -0
- package/dist/psql/io/lineEditor/index.js +894 -0
- package/dist/psql/io/lineEditor/keymap.js +745 -0
- package/dist/psql/io/lineEditor/vt100.js +363 -0
- package/dist/psql/io/pgpass.js +202 -0
- package/dist/psql/io/pgservice.js +194 -0
- package/dist/psql/io/psqlrc.js +422 -0
- package/dist/psql/print/aligned.js +1765 -0
- package/dist/psql/print/asciidoc.js +248 -0
- package/dist/psql/print/crosstab.js +463 -0
- package/dist/psql/print/csv.js +95 -0
- package/dist/psql/print/html.js +258 -0
- package/dist/psql/print/json.js +96 -0
- package/dist/psql/print/latex.js +396 -0
- package/dist/psql/print/pager.js +267 -0
- package/dist/psql/print/troff.js +258 -0
- package/dist/psql/print/unaligned.js +119 -0
- package/dist/psql/print/units.js +135 -0
- package/dist/psql/scanner/slash.js +515 -0
- package/dist/psql/scanner/sql.js +914 -0
- package/dist/psql/scanner/stringutils.js +394 -0
- package/dist/psql/types/backslash.js +1 -0
- package/dist/psql/types/connection.js +1 -0
- package/dist/psql/types/index.js +7 -0
- package/dist/psql/types/printer.js +1 -0
- package/dist/psql/types/repl.js +1 -0
- package/dist/psql/types/scanner.js +24 -0
- package/dist/psql/types/settings.js +1 -0
- package/dist/psql/types/variables.js +1 -0
- package/dist/psql/wire/connection.js +2858 -0
- package/dist/psql/wire/copy.js +108 -0
- package/dist/psql/wire/notify.js +59 -0
- package/dist/psql/wire/pipeline.js +521 -0
- package/dist/psql/wire/protocol.js +466 -0
- package/dist/psql/wire/sasl.js +296 -0
- package/dist/psql/wire/tls.js +602 -0
- package/dist/storage_api.js +147 -0
- package/dist/test_utils/fixtures.js +122 -0
- package/dist/test_utils/oauth_server.js +9 -0
- package/dist/types.js +1 -0
- package/dist/utils/api_enums.js +33 -0
- package/dist/utils/auth.js +5 -0
- package/dist/utils/branch_notice.js +22 -0
- package/dist/utils/branch_picker.js +103 -0
- package/dist/utils/compute_units.js +28 -0
- package/dist/utils/enrichers.js +161 -0
- package/dist/utils/esbuild.js +158 -0
- package/dist/utils/formats.js +18 -0
- package/dist/utils/middlewares.js +20 -0
- package/dist/utils/package_manager.js +68 -0
- package/dist/utils/point_in_time.js +56 -0
- package/dist/utils/psql.js +120 -0
- package/dist/utils/string.js +5 -0
- package/dist/utils/ui.js +59 -0
- package/dist/utils/zip.js +4 -0
- package/dist/writer.js +97 -0
- package/package.json +117 -14
- package/.jshintrc +0 -3
- package/CHANGELOG.markdown +0 -22
- package/LICENSE +0 -21
- package/README.markdown +0 -76
- package/bower.json +0 -23
- package/license.txt +0 -9
- package/neon.js +0 -234
- package/stdlib/bubbling_support.js +0 -32
- package/stdlib/custom_event.js +0 -54
- package/stdlib/custom_event_support.js +0 -195
- package/stdlib/index.js +0 -7
- package/stdlib/node_support.js +0 -123
- package/stdlib/widget.js +0 -340
- package/test/neon_browser.html +0 -11
- package/test/neon_stdlib_browser.html +0 -15
- package/test/neon_stdlib_test.js +0 -84
- package/test/neon_test.js +0 -64
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
import chalk from "chalk";
|
|
2
|
+
import prompts from "prompts";
|
|
3
|
+
import { isNeonApiError } from "../api.js";
|
|
4
|
+
import { applyContext, contextBranch, readContextFile } from "../context.js";
|
|
5
|
+
import { isCi } from "../env.js";
|
|
6
|
+
import { log } from "../log.js";
|
|
7
|
+
import { createBranch, pickBranchInteractively, } from "../utils/branch_picker.js";
|
|
8
|
+
import { fillSingleProject } from "../utils/enrichers.js";
|
|
9
|
+
import { looksLikeBranchId } from "../utils/formats.js";
|
|
10
|
+
import { applyPolicyOnCreate, createBranchFromPolicyOnCheckout, } from "./config.js";
|
|
11
|
+
import { autoPullEnvAfterPin } from "./env.js";
|
|
12
|
+
import { handler as linkHandler } from "./link.js";
|
|
13
|
+
// The positional is optional: omitting it in an interactive terminal opens a
|
|
14
|
+
// branch picker. In non-interactive contexts a missing branch is an error.
|
|
15
|
+
export const command = "checkout [id|name]";
|
|
16
|
+
export const describe = "Pin a branch in the local context (.neon) so subsequent commands target it";
|
|
17
|
+
export const builder = (argv) => argv
|
|
18
|
+
.usage("$0 checkout [id|name] [options]")
|
|
19
|
+
.positional("id", {
|
|
20
|
+
describe: "Branch name or id to check out. Omit to pick interactively from the list of branches.",
|
|
21
|
+
type: "string",
|
|
22
|
+
})
|
|
23
|
+
.options({
|
|
24
|
+
"project-id": {
|
|
25
|
+
describe: "Project ID",
|
|
26
|
+
type: "string",
|
|
27
|
+
},
|
|
28
|
+
"env-pull": {
|
|
29
|
+
describe: "Pull the branch's Neon env vars (DATABASE_URL, …) into a local .env after " +
|
|
30
|
+
"checkout. On by default; use --no-env-pull to skip (e.g. when injecting env at " +
|
|
31
|
+
"runtime with `neon-env run` / `neon dev`).",
|
|
32
|
+
type: "boolean",
|
|
33
|
+
default: true,
|
|
34
|
+
},
|
|
35
|
+
})
|
|
36
|
+
.example([
|
|
37
|
+
[
|
|
38
|
+
"$0 checkout",
|
|
39
|
+
"Pick a branch interactively from the project in the closest .neon file",
|
|
40
|
+
],
|
|
41
|
+
[
|
|
42
|
+
"$0 checkout main",
|
|
43
|
+
'Pin the branch named "main" in the closest .neon file',
|
|
44
|
+
],
|
|
45
|
+
[
|
|
46
|
+
"$0 checkout br-cool-snow-12345678 --project-id project-id-123",
|
|
47
|
+
"Pin a branch by id for an explicit project",
|
|
48
|
+
],
|
|
49
|
+
]);
|
|
50
|
+
export const handler = async (props) => {
|
|
51
|
+
// Show where the context is pinned *before* we switch it, so the user sees the move
|
|
52
|
+
// ("currently on X" → "checked out Y") and can catch a checkout they didn't mean to make.
|
|
53
|
+
// Read straight from `.neon` (a name, no API call); silent when nothing is pinned yet.
|
|
54
|
+
const previousBranch = contextBranch(readContextFile(props.contextFile));
|
|
55
|
+
if (previousBranch) {
|
|
56
|
+
log.info("%s Currently on branch %s", chalk.dim("→"), chalk.cyan.bold(previousBranch));
|
|
57
|
+
}
|
|
58
|
+
// Branch listing is project-scoped, so `projectId` is the only thing
|
|
59
|
+
// `checkout` actually needs. Resolve it through the standard chain
|
|
60
|
+
// (--project-id flag > .neon file > single-project auto-detect); when
|
|
61
|
+
// nothing resolves, fall back to an interactive `neonctl link`.
|
|
62
|
+
const projectId = await resolveProjectId(props);
|
|
63
|
+
const { branchId, branchName, created, policyApplied } = await resolveBranchId(props, projectId);
|
|
64
|
+
const orgId = await resolveOrgId(props, projectId);
|
|
65
|
+
// `checkout` is a thin helper over `link`. It fully "heals" the context file:
|
|
66
|
+
// it always (re)writes `projectId`, `branch`, and `orgId` (when the project
|
|
67
|
+
// has one) so a `.neon` that drifted or was missing fields ends up complete
|
|
68
|
+
// and consistent after checkout. The branch is stored as its name when known
|
|
69
|
+
// (see `link`'s `branch` field), matching what `link` writes.
|
|
70
|
+
applyContext(props.contextFile, {
|
|
71
|
+
projectId,
|
|
72
|
+
...(orgId ? { orgId } : {}),
|
|
73
|
+
branch: branchName,
|
|
74
|
+
});
|
|
75
|
+
log.info("Checked out branch %s on project %s%s. Updated %s.", branchId, projectId, orgId ? ` (org ${orgId})` : "", props.contextFile);
|
|
76
|
+
// When checkout *created* the branch and a neon.ts exists, the branch was created straight
|
|
77
|
+
// from the policy (evaluated as a new branch) so its settings/infra are already applied —
|
|
78
|
+
// see `policyApplied`. The fallback below covers the case where the branch was created bare
|
|
79
|
+
// (e.g. a policy-driven create wasn't possible); `applyPolicyOnCreate` is a no-op when there
|
|
80
|
+
// is no neon.ts on disk. Checking out an existing branch never reconciles it.
|
|
81
|
+
if (created && !policyApplied) {
|
|
82
|
+
await applyPolicyOnCreate({
|
|
83
|
+
projectId,
|
|
84
|
+
branchId,
|
|
85
|
+
...(props.apiKey ? { apiKey: props.apiKey } : {}),
|
|
86
|
+
...(props.apiHost ? { apiHost: props.apiHost } : {}),
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
// Bundle `env pull` so the branch-first loop is just link + checkout: the branch you
|
|
90
|
+
// checked out is immediately usable for local dev. `--no-env-pull` opts out.
|
|
91
|
+
await autoPullEnvAfterPin({
|
|
92
|
+
...props,
|
|
93
|
+
projectId,
|
|
94
|
+
branch: branchId,
|
|
95
|
+
envPull: props.envPull,
|
|
96
|
+
});
|
|
97
|
+
};
|
|
98
|
+
const resolveBranchId = async (props, projectId) => {
|
|
99
|
+
const branches = (await props.apiClient.listProjectBranches({ projectId }))
|
|
100
|
+
.data.branches;
|
|
101
|
+
if (!props.id) {
|
|
102
|
+
const picked = await pickBranchInteractively(branches, {
|
|
103
|
+
message: "Which branch would you like to check out?",
|
|
104
|
+
nonInteractiveMessage: "No branch specified. Pass a branch name or id (e.g. `neonctl checkout main`), " +
|
|
105
|
+
"or run interactively to pick one from a list.",
|
|
106
|
+
});
|
|
107
|
+
if (picked.kind === "existing") {
|
|
108
|
+
const existing = branches.find((b) => b.id === picked.branchId);
|
|
109
|
+
return {
|
|
110
|
+
branchId: picked.branchId,
|
|
111
|
+
branchName: existing?.name ?? picked.branchId,
|
|
112
|
+
created: false,
|
|
113
|
+
policyApplied: false,
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
// The user chose "create a new branch" from the picker.
|
|
117
|
+
return createCheckoutBranch(props, projectId, picked.name, branches);
|
|
118
|
+
}
|
|
119
|
+
const ref = props.id;
|
|
120
|
+
// A `br-…` value is an id; match strictly by id and never offer to create.
|
|
121
|
+
if (looksLikeBranchId(ref)) {
|
|
122
|
+
const byId = branches.find((b) => b.id === ref);
|
|
123
|
+
if (byId) {
|
|
124
|
+
return {
|
|
125
|
+
branchId: byId.id,
|
|
126
|
+
branchName: byId.name ?? byId.id,
|
|
127
|
+
created: false,
|
|
128
|
+
policyApplied: false,
|
|
129
|
+
};
|
|
130
|
+
}
|
|
131
|
+
throw new Error(notFoundMessage(ref, branches));
|
|
132
|
+
}
|
|
133
|
+
const byName = branches.find((b) => b.name === ref);
|
|
134
|
+
if (byName) {
|
|
135
|
+
return {
|
|
136
|
+
branchId: byName.id,
|
|
137
|
+
branchName: byName.name ?? byName.id,
|
|
138
|
+
created: false,
|
|
139
|
+
policyApplied: false,
|
|
140
|
+
};
|
|
141
|
+
}
|
|
142
|
+
// Name not found: offer to create it interactively, mirroring `branch create`.
|
|
143
|
+
if (isCi() || !process.stdout.isTTY) {
|
|
144
|
+
throw new Error(notFoundMessage(ref, branches));
|
|
145
|
+
}
|
|
146
|
+
log.error(notFoundMessage(ref, branches));
|
|
147
|
+
const { create } = await prompts({
|
|
148
|
+
type: "confirm",
|
|
149
|
+
name: "create",
|
|
150
|
+
message: `Branch "${ref}" does not exist. Create it now?`,
|
|
151
|
+
initial: true,
|
|
152
|
+
});
|
|
153
|
+
if (!create) {
|
|
154
|
+
throw new Error(`Aborted: branch "${ref}" was not found and not created.`);
|
|
155
|
+
}
|
|
156
|
+
return createCheckoutBranch(props, projectId, ref, branches);
|
|
157
|
+
};
|
|
158
|
+
/**
|
|
159
|
+
* Create the branch to check out. When a `neon.ts` exists, route through the policy-driven
|
|
160
|
+
* create so the new branch comes up branched from the policy's `parent` and configured with
|
|
161
|
+
* its declared TTL / compute / services (evaluated as a *new* branch). Otherwise fall back to
|
|
162
|
+
* a bare branch off the default — the handler then applies the policy (a no-op with no
|
|
163
|
+
* `neon.ts`).
|
|
164
|
+
*/
|
|
165
|
+
const createCheckoutBranch = async (props, projectId, name, branches) => {
|
|
166
|
+
const fromPolicy = await createBranchFromPolicyOnCheckout({
|
|
167
|
+
projectId,
|
|
168
|
+
branchName: name,
|
|
169
|
+
...(props.apiKey ? { apiKey: props.apiKey } : {}),
|
|
170
|
+
...(props.apiHost ? { apiHost: props.apiHost } : {}),
|
|
171
|
+
});
|
|
172
|
+
if (fromPolicy) {
|
|
173
|
+
return {
|
|
174
|
+
branchId: fromPolicy.branchId,
|
|
175
|
+
branchName: name,
|
|
176
|
+
created: true,
|
|
177
|
+
policyApplied: true,
|
|
178
|
+
};
|
|
179
|
+
}
|
|
180
|
+
return {
|
|
181
|
+
branchId: await createBranch(props.apiClient, projectId, name, branches),
|
|
182
|
+
branchName: name,
|
|
183
|
+
created: true,
|
|
184
|
+
policyApplied: false,
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
const notFoundMessage = (ref, branches) => `Branch ${ref} not found.\nAvailable branches: ${branches
|
|
188
|
+
.map((b) => b.name)
|
|
189
|
+
.join(", ")}`;
|
|
190
|
+
/**
|
|
191
|
+
* Resolve the org id to heal into the context file.
|
|
192
|
+
*
|
|
193
|
+
* Prefer an org id we already know (from `--org-id`, the `.neon` file, or a
|
|
194
|
+
* freshly-run `link`). Otherwise look it up from the project itself so the
|
|
195
|
+
* `.neon` file ends up with an accurate `orgId` even when it was previously
|
|
196
|
+
* missing. Projects on a personal account have no org; in that case (or if the
|
|
197
|
+
* lookup fails for a non-auth reason) we return `undefined` and simply omit the
|
|
198
|
+
* field rather than failing the checkout.
|
|
199
|
+
*/
|
|
200
|
+
const resolveOrgId = async (props, projectId) => {
|
|
201
|
+
if (props.orgId) {
|
|
202
|
+
return props.orgId;
|
|
203
|
+
}
|
|
204
|
+
try {
|
|
205
|
+
const { data } = await props.apiClient.getProject(projectId);
|
|
206
|
+
return data.project.org_id ?? undefined;
|
|
207
|
+
}
|
|
208
|
+
catch (err) {
|
|
209
|
+
if (isNeonApiError(err) && err.status === 401) {
|
|
210
|
+
throw err;
|
|
211
|
+
}
|
|
212
|
+
log.debug("checkout: could not resolve org id for project %s: %s", projectId, err instanceof Error ? err.message : String(err));
|
|
213
|
+
return undefined;
|
|
214
|
+
}
|
|
215
|
+
};
|
|
216
|
+
/**
|
|
217
|
+
* Resolve the project id `checkout` should target.
|
|
218
|
+
*
|
|
219
|
+
* `props.projectId` is already populated from the `--project-id` flag or the
|
|
220
|
+
* closest `.neon` file (via the global `enrichFromContext` middleware). When
|
|
221
|
+
* it's still missing we try to auto-detect a single project (same behaviour as
|
|
222
|
+
* `branches` / `connection-string`). If that fails we surface a telling error
|
|
223
|
+
* and, in an interactive terminal, offer to run `neonctl link` in the current
|
|
224
|
+
* folder so the user can pick a project/branch without having to re-run the
|
|
225
|
+
* command by hand.
|
|
226
|
+
*/
|
|
227
|
+
const resolveProjectId = async (props) => {
|
|
228
|
+
if (props.projectId) {
|
|
229
|
+
return props.projectId;
|
|
230
|
+
}
|
|
231
|
+
const autoDetected = await tryAutoDetectProject(props);
|
|
232
|
+
if (autoDetected) {
|
|
233
|
+
return autoDetected;
|
|
234
|
+
}
|
|
235
|
+
const missingProjectMessage = "Could not determine which Neon project to check out a branch from. " +
|
|
236
|
+
"Provide one via the --project-id flag " +
|
|
237
|
+
"or a .neon file (created by `neonctl link` / `neonctl set-context`).";
|
|
238
|
+
if (isCi() || !process.stdout.isTTY) {
|
|
239
|
+
throw new Error(missingProjectMessage);
|
|
240
|
+
}
|
|
241
|
+
log.error(missingProjectMessage);
|
|
242
|
+
const { runLink } = await prompts({
|
|
243
|
+
type: "confirm",
|
|
244
|
+
name: "runLink",
|
|
245
|
+
message: "Run `neonctl link` in the current folder to pick a project now?",
|
|
246
|
+
initial: true,
|
|
247
|
+
});
|
|
248
|
+
if (!runLink) {
|
|
249
|
+
throw new Error("Aborted: no project selected. Re-run with --project-id or link a project first.");
|
|
250
|
+
}
|
|
251
|
+
await linkHandler({
|
|
252
|
+
...props,
|
|
253
|
+
agent: false,
|
|
254
|
+
yes: false,
|
|
255
|
+
clear: false,
|
|
256
|
+
checks: true,
|
|
257
|
+
});
|
|
258
|
+
const linked = readContextFile(props.contextFile);
|
|
259
|
+
if (!linked.projectId) {
|
|
260
|
+
throw new Error("Linking did not produce a project id. Re-run `neonctl checkout` once the directory is linked.");
|
|
261
|
+
}
|
|
262
|
+
// Carry the freshly-linked org id forward so the merge below keeps it.
|
|
263
|
+
if (linked.orgId) {
|
|
264
|
+
props.orgId = linked.orgId;
|
|
265
|
+
}
|
|
266
|
+
return linked.projectId;
|
|
267
|
+
};
|
|
268
|
+
/**
|
|
269
|
+
* Best-effort single-project auto-detection. Returns the project id when the
|
|
270
|
+
* API key maps to exactly one project, or `undefined` when the project can't be
|
|
271
|
+
* determined unambiguously (zero or multiple projects) so the caller can fall
|
|
272
|
+
* back to the interactive `link` flow.
|
|
273
|
+
*/
|
|
274
|
+
const tryAutoDetectProject = async (props) => {
|
|
275
|
+
try {
|
|
276
|
+
const filled = await fillSingleProject(props);
|
|
277
|
+
return filled.projectId;
|
|
278
|
+
}
|
|
279
|
+
catch (err) {
|
|
280
|
+
// `fillSingleProject` throws on "No projects found" / "Multiple projects
|
|
281
|
+
// found" — both mean we can't pick a project automatically. Network/auth
|
|
282
|
+
// errors are real and should surface to the user.
|
|
283
|
+
if (isNeonApiError(err)) {
|
|
284
|
+
throw err;
|
|
285
|
+
}
|
|
286
|
+
log.debug("checkout: could not auto-detect a single project: %s", err instanceof Error ? err.message : String(err));
|
|
287
|
+
return undefined;
|
|
288
|
+
}
|
|
289
|
+
};
|