ardent-cli 0.0.23 → 0.0.25

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.js +204 -87
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,19 +1,80 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  // src/index.ts
4
- import { readFileSync as readFileSync5 } from "fs";
5
4
  import { Command as Command8 } from "commander";
6
5
 
7
6
  // src/commands/branch/index.ts
8
7
  import { Command } from "commander";
9
8
 
10
- // src/lib/api.ts
11
- import { readFileSync as readFileSync2 } from "fs";
12
-
13
9
  // src/lib/config.ts
14
- import { existsSync, mkdirSync, readFileSync, writeFileSync, unlinkSync } from "fs";
10
+ import { existsSync, mkdirSync, readFileSync as readFileSync2, writeFileSync, unlinkSync } from "fs";
15
11
  import { homedir } from "os";
16
12
  import { join } from "path";
13
+
14
+ // src/lib/api_errors.ts
15
+ function formatErrorDetail(detail) {
16
+ if (typeof detail === "string") return detail;
17
+ if (Array.isArray(detail)) {
18
+ return detail.map((entry) => {
19
+ const location = Array.isArray(entry.loc) ? entry.loc.join(" \u2192 ") : "";
20
+ const message = entry.msg ?? "unknown error";
21
+ return location ? `${location}: ${message}` : String(message);
22
+ }).join("; ");
23
+ }
24
+ return JSON.stringify(detail);
25
+ }
26
+ function formatUpgradeRequiredMessage(text) {
27
+ try {
28
+ const json = JSON.parse(text);
29
+ if (json.detail) {
30
+ return `${formatErrorDetail(json.detail)}
31
+
32
+ npm install -g ardent-cli@latest`;
33
+ }
34
+ } catch {
35
+ }
36
+ return "Your CLI is outdated. Please update:\n\n npm install -g ardent-cli@latest";
37
+ }
38
+ function parseApiError(status, text) {
39
+ if (status === 426) {
40
+ return formatUpgradeRequiredMessage(text);
41
+ }
42
+ try {
43
+ const json = JSON.parse(text);
44
+ if (json.detail) return `API error ${status}: ${formatErrorDetail(json.detail)}`;
45
+ } catch {
46
+ }
47
+ return `API error ${status}: ${text}`;
48
+ }
49
+ function exitWithUpgradeRequiredMessage(text) {
50
+ console.error(`
51
+ \u2717 ${formatUpgradeRequiredMessage(text)}
52
+ `);
53
+ process.exit(1);
54
+ }
55
+ async function exitIfUpgradeRequired(response) {
56
+ if (response.status !== 426) {
57
+ return;
58
+ }
59
+ const text = await response.text();
60
+ exitWithUpgradeRequiredMessage(text);
61
+ }
62
+
63
+ // src/lib/cli_version.ts
64
+ import { readFileSync } from "fs";
65
+ function getCliVersion() {
66
+ try {
67
+ const packageUrl = new URL("../package.json", import.meta.url);
68
+ const raw = readFileSync(packageUrl, "utf-8");
69
+ const parsed = JSON.parse(raw);
70
+ return parsed.version ?? "unknown";
71
+ } catch {
72
+ return "unknown";
73
+ }
74
+ }
75
+ var CLI_VERSION = getCliVersion();
76
+
77
+ // src/lib/config.ts
17
78
  var CONFIG_DIR = join(homedir(), ".ardent");
18
79
  var CONFIG_FILE = join(CONFIG_DIR, "config.json");
19
80
  function ensureConfigDir() {
@@ -24,7 +85,7 @@ function ensureConfigDir() {
24
85
  function loadConfig() {
25
86
  try {
26
87
  if (existsSync(CONFIG_FILE)) {
27
- return JSON.parse(readFileSync(CONFIG_FILE, "utf-8"));
88
+ return JSON.parse(readFileSync2(CONFIG_FILE, "utf-8"));
28
89
  }
29
90
  } catch {
30
91
  }
@@ -144,9 +205,11 @@ async function bootstrapCache() {
144
205
  const apiUrl = getApiUrl();
145
206
  const headers = {
146
207
  "Content-Type": "application/json",
147
- "Authorization": `Bearer ${token}`
208
+ "Authorization": `Bearer ${token}`,
209
+ "X-CLI-Version": CLI_VERSION
148
210
  };
149
211
  const userInfoResponse = await fetch(`${apiUrl}/v1/cli/me`, { headers });
212
+ await exitIfUpgradeRequired(userInfoResponse);
150
213
  if (!userInfoResponse.ok) {
151
214
  throw new Error("Failed to fetch user info");
152
215
  }
@@ -157,6 +220,7 @@ async function bootstrapCache() {
157
220
  return bootstrap;
158
221
  }
159
222
  const projectsResponse = await fetch(`${apiUrl}/v1/projects?org_id=${user.org_id}`, { headers });
223
+ await exitIfUpgradeRequired(projectsResponse);
160
224
  if (projectsResponse.ok) {
161
225
  const projectsPayload = await projectsResponse.json();
162
226
  if (!Array.isArray(projectsPayload.projects)) {
@@ -176,6 +240,7 @@ async function bootstrapCache() {
176
240
  `${apiUrl}/v1/cli/connectors?project_id=${currentProjectId}`,
177
241
  { headers }
178
242
  );
243
+ await exitIfUpgradeRequired(connectorsResponse);
179
244
  if (connectorsResponse.ok) {
180
245
  const connectorsPayload = await connectorsResponse.json();
181
246
  if (!Array.isArray(connectorsPayload.connectors)) {
@@ -196,6 +261,7 @@ async function bootstrapCache() {
196
261
  `${apiUrl}/v1/cli/branches?connector_id=${currentConnectorId}`,
197
262
  { headers }
198
263
  );
264
+ await exitIfUpgradeRequired(branchesResponse);
199
265
  if (branchesResponse.ok) {
200
266
  const branchesPayload = await branchesResponse.json();
201
267
  if (!Array.isArray(branchesPayload.branches)) {
@@ -209,49 +275,8 @@ async function bootstrapCache() {
209
275
  }
210
276
 
211
277
  // src/lib/api.ts
212
- function getCliVersion() {
213
- try {
214
- const packageUrl = new URL("../package.json", import.meta.url);
215
- const raw = readFileSync2(packageUrl, "utf-8");
216
- const parsed = JSON.parse(raw);
217
- return parsed.version ?? "unknown";
218
- } catch {
219
- return "unknown";
220
- }
221
- }
222
- var CLI_VERSION = getCliVersion();
223
- function formatErrorDetail(detail) {
224
- if (typeof detail === "string") return detail;
225
- if (Array.isArray(detail)) {
226
- return detail.map((entry) => {
227
- const location = Array.isArray(entry.loc) ? entry.loc.join(" \u2192 ") : "";
228
- const message = entry.msg ?? "unknown error";
229
- return location ? `${location}: ${message}` : String(message);
230
- }).join("; ");
231
- }
232
- return JSON.stringify(detail);
233
- }
234
- function parseApiError(status, text) {
235
- try {
236
- const json = JSON.parse(text);
237
- if (json.detail) return `API error ${status}: ${formatErrorDetail(json.detail)}`;
238
- } catch {
239
- }
240
- return `API error ${status}: ${text}`;
241
- }
242
278
  function handleUpgradeRequired(text) {
243
- try {
244
- const json = JSON.parse(text);
245
- if (json.detail) {
246
- console.error(`
247
- \u2717 ${json.detail}
248
- `);
249
- }
250
- } catch {
251
- console.error("\n\u2717 Your CLI is outdated. Please update:\n");
252
- }
253
- console.error(" npm install -g ardent-cli@latest\n");
254
- process.exit(1);
279
+ exitWithUpgradeRequiredMessage(text);
255
280
  }
256
281
  var ApiClient = class {
257
282
  getHeaders() {
@@ -347,6 +372,69 @@ function isGatewayTimeoutError(err) {
347
372
  return isNetworkError(err);
348
373
  }
349
374
 
375
+ // src/lib/connector_selection.ts
376
+ function clearSelectedConnector() {
377
+ setConfig("currentConnectorId", void 0);
378
+ setConfig("currentConnectorName", void 0);
379
+ clearCurrentBranch();
380
+ }
381
+ function findConnectorById(connectors, connectorId) {
382
+ for (const connector of connectors) {
383
+ if (connector.id === connectorId) {
384
+ return connector;
385
+ }
386
+ }
387
+ return void 0;
388
+ }
389
+ function reconcileSelectedConnector(connectors) {
390
+ const currentConnectorId = getConfig("currentConnectorId");
391
+ if (currentConnectorId) {
392
+ const selectedConnector = findConnectorById(connectors, currentConnectorId);
393
+ if (selectedConnector) {
394
+ setConfig("currentConnectorName", selectedConnector.name);
395
+ return selectedConnector;
396
+ }
397
+ }
398
+ clearSelectedConnector();
399
+ if (connectors.length === 1) {
400
+ const onlyConnector = connectors[0];
401
+ setConfig("currentConnectorId", onlyConnector.id);
402
+ setConfig("currentConnectorName", onlyConnector.name);
403
+ return onlyConnector;
404
+ }
405
+ return void 0;
406
+ }
407
+ async function requireCurrentConnectorId() {
408
+ const currentProjectId = getConfig("currentProjectId");
409
+ if (!currentProjectId) {
410
+ console.error("\u2717 No current project set. Switch to a project first:");
411
+ console.error(" ardent project list");
412
+ console.error(" ardent project switch <name>");
413
+ process.exit(1);
414
+ }
415
+ const result = await api.get(
416
+ `/v1/cli/connectors?project_id=${currentProjectId}`
417
+ );
418
+ if (!result.connectors) {
419
+ throw new Error("API returned invalid response: missing connectors array");
420
+ }
421
+ setCacheEntry("connectors", result.connectors);
422
+ const selectedConnector = reconcileSelectedConnector(result.connectors);
423
+ if (selectedConnector) {
424
+ return selectedConnector.id;
425
+ }
426
+ if (result.connectors.length === 0) {
427
+ console.error("\u2717 No connectors found.");
428
+ console.error(" Create one with: ardent connector create postgresql <url>");
429
+ } else {
430
+ console.error("\u2717 Previously selected connector is no longer available.");
431
+ console.error(" Select one of your current connectors:");
432
+ console.error(" ardent connector list");
433
+ console.error(" ardent connector switch <name>");
434
+ }
435
+ process.exit(1);
436
+ }
437
+
350
438
  // src/lib/telemetry.ts
351
439
  import { randomUUID } from "crypto";
352
440
  function getAnonymousId() {
@@ -400,11 +488,7 @@ function identifyUser(userId, personProperties = {}) {
400
488
  async function createAction(name, options) {
401
489
  try {
402
490
  const startTime = performance.now();
403
- const connectorId = getConfig("currentConnectorId");
404
- if (!connectorId) {
405
- console.error("\u2717 No connector selected. Run 'ardent connector switch' first.");
406
- process.exit(1);
407
- }
491
+ const connectorId = await requireCurrentConnectorId();
408
492
  await api.post("/v1/branch/create", {
409
493
  connector_id: connectorId,
410
494
  service_type: options.service,
@@ -665,6 +749,35 @@ branchCommand.command("diff [name]", { hidden: true }).description("(removed) Sh
665
749
  // src/commands/connector/index.ts
666
750
  import { Command as Command2 } from "commander";
667
751
 
752
+ // src/lib/engine_setup_result.ts
753
+ var SUCCESS_ENGINE_STATUSES = /* @__PURE__ */ new Set(["healthy", "degraded"]);
754
+ var RETRYABLE_ENGINE_STATUSES = /* @__PURE__ */ new Set(["configuration_verified"]);
755
+ var FAILED_ENGINE_STATUSES = /* @__PURE__ */ new Set(["configuration_failed", "failed_validation"]);
756
+ function assertEngineSetupCompleted(operation) {
757
+ const result = operation.result;
758
+ if (!result) {
759
+ throw new Error("Engine setup completed without a result payload.");
760
+ }
761
+ const engineStatus = result.branching_engine_status;
762
+ if (typeof engineStatus !== "string" || engineStatus.length === 0) {
763
+ throw new Error("Engine setup completed without branching_engine_status in the result.");
764
+ }
765
+ if (SUCCESS_ENGINE_STATUSES.has(engineStatus)) {
766
+ return;
767
+ }
768
+ if (RETRYABLE_ENGINE_STATUSES.has(engineStatus)) {
769
+ throw new Error(
770
+ `Engine setup needs retry (status: ${engineStatus}). Run \`ardent connector list\` to inspect connector state, then retry engine setup.`
771
+ );
772
+ }
773
+ if (FAILED_ENGINE_STATUSES.has(engineStatus)) {
774
+ throw new Error(
775
+ `Engine setup failed (status: ${engineStatus}). Run \`ardent connector list\` to inspect connector state.`
776
+ );
777
+ }
778
+ throw new Error(`Engine setup completed with unexpected status: ${engineStatus}.`);
779
+ }
780
+
668
781
  // src/lib/onboarding.ts
669
782
  var BANNER = `
670
783
  \u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510
@@ -782,43 +895,54 @@ var EngineSetupTimeoutError = class extends Error {
782
895
  }
783
896
  };
784
897
  async function runEngineSetupWithPolling(connectorId) {
898
+ let dispatch;
785
899
  try {
786
- await api.post(`/v1/connectors/${connectorId}/engine-setup`, {});
787
- return;
900
+ dispatch = await api.post(
901
+ `/v1/connectors/${connectorId}/engine-setup`,
902
+ {}
903
+ );
788
904
  } catch (err) {
789
- if (!isGatewayTimeoutError(err)) {
790
- throw err;
905
+ if (isGatewayTimeoutError(err)) {
906
+ throw new Error(
907
+ "Backend dispatch timed out. The engine-setup endpoint is now async and should respond in under a second; this may indicate a backend incident. Try again, or check `ardent connector list` to see if an operation was created anyway."
908
+ );
791
909
  }
792
- console.log(
793
- " Backend engine setup is long-running; the gateway dropped the request but the work continues server-side. Polling for completion..."
794
- );
910
+ throw err;
911
+ }
912
+ const operationId = dispatch?.operation_id;
913
+ if (!operationId) {
914
+ return;
795
915
  }
796
916
  const startedAt = Date.now();
797
917
  const maxWaitMs = 20 * 60 * 1e3;
798
- const pollIntervalMs = 30 * 1e3;
918
+ const pollIntervalMs = 5 * 1e3;
919
+ let lastStage = null;
799
920
  while (Date.now() - startedAt < maxWaitMs) {
800
921
  await new Promise((resolve) => setTimeout(resolve, pollIntervalMs));
801
- let status;
922
+ let op;
802
923
  try {
803
- status = await api.get(`/v1/connectors/${connectorId}`);
924
+ op = await api.get(`/v1/operations/${operationId}`);
804
925
  } catch (pollErr) {
805
926
  if (isGatewayTimeoutError(pollErr)) continue;
806
927
  throw pollErr;
807
928
  }
808
- const engineStatus = status.branching_engine_status;
809
- if (engineStatus === "healthy" || engineStatus === "degraded") {
929
+ if (op.stage && op.stage !== lastStage) {
930
+ const progressLabel = op.progress != null ? ` (${op.progress}%)` : "";
931
+ console.log(` ${op.stage}${progressLabel}`);
932
+ lastStage = op.stage;
933
+ }
934
+ if (op.status === "completed") {
935
+ assertEngineSetupCompleted({ status: op.status, result: op.result });
810
936
  return;
811
937
  }
812
- if (engineStatus === "configuration_failed" || engineStatus === "failed_validation") {
938
+ if (op.status === "failed") {
813
939
  throw new Error(
814
- `Engine setup failed (status: ${engineStatus}). Check connector status: ardent connector list`
940
+ `Engine setup failed: ${op.error ?? "unknown error"}. Run \`ardent connector list\` to inspect connector state, or re-trigger setup once the underlying issue is resolved.`
815
941
  );
816
942
  }
817
- const elapsedSec = Math.round((Date.now() - startedAt) / 1e3);
818
- console.log(` Still setting up... (${elapsedSec}s elapsed, status=${engineStatus ?? "unknown"})`);
819
943
  }
820
944
  throw new EngineSetupTimeoutError(
821
- `Engine setup did not complete within ${maxWaitMs / 6e4} minutes. Setup may still be running server-side \u2014 do NOT delete the connector. Check status with: ardent connector list`
945
+ `Engine setup did not complete within ${maxWaitMs / 6e4} minutes. Setup may still be running server-side \u2014 do NOT delete the connector. Check status with: ardent connector list (operation ${operationId})`
822
946
  );
823
947
  }
824
948
  function parsePostgresUrl(url) {
@@ -1065,7 +1189,8 @@ async function listAction2() {
1065
1189
  console.log(`${green3} Create one with: ardent connector create postgresql <url>${reset3}`);
1066
1190
  return;
1067
1191
  }
1068
- const currentConnectorId = getConfig("currentConnectorId");
1192
+ const selectedConnector = fromCache ? void 0 : reconcileSelectedConnector(connectors);
1193
+ const currentConnectorId = selectedConnector?.id ?? getConfig("currentConnectorId");
1069
1194
  const green2 = "\x1B[32m";
1070
1195
  const dim2 = "\x1B[2m";
1071
1196
  const yellow = "\x1B[33m";
@@ -1956,8 +2081,9 @@ async function loginAction(options) {
1956
2081
  try {
1957
2082
  const initResponse = await fetch(`${getApiUrl()}/v1/cli/auth/init`, {
1958
2083
  method: "POST",
1959
- headers: { "Content-Type": "application/json" }
2084
+ headers: { "Content-Type": "application/json", "X-CLI-Version": CLI_VERSION }
1960
2085
  });
2086
+ await exitIfUpgradeRequired(initResponse);
1961
2087
  if (!initResponse.ok) {
1962
2088
  const error = await initResponse.text();
1963
2089
  trackEvent("CLI: login failed", { method: "browser", reason: "init_failed" });
@@ -1974,8 +2100,10 @@ async function loginAction(options) {
1974
2100
  for (let attempt = 0; attempt < maxAttempts; attempt++) {
1975
2101
  await new Promise((resolve) => setTimeout(resolve, pollInterval));
1976
2102
  const pollResponse = await fetch(
1977
- `${getApiUrl()}/v1/cli/auth/poll?session=${session_id}`
2103
+ `${getApiUrl()}/v1/cli/auth/poll?session=${session_id}`,
2104
+ { headers: { "X-CLI-Version": CLI_VERSION } }
1978
2105
  );
2106
+ await exitIfUpgradeRequired(pollResponse);
1979
2107
  if (!pollResponse.ok) {
1980
2108
  trackEvent("CLI: login failed", { method: "browser", reason: "poll_failed" });
1981
2109
  console.error("\u2717 Poll failed");
@@ -2184,19 +2312,8 @@ EXAMPLES
2184
2312
  ardent branch switch my-feature
2185
2313
  ardent org members
2186
2314
  `;
2187
- var CLI_VERSION2 = getCliVersion2();
2188
2315
  var program = new Command8();
2189
- function getCliVersion2() {
2190
- try {
2191
- const packageUrl = new URL("../package.json", import.meta.url);
2192
- const raw = readFileSync5(packageUrl, "utf-8");
2193
- const parsed = JSON.parse(raw);
2194
- return parsed.version ?? "unknown";
2195
- } catch {
2196
- return "unknown";
2197
- }
2198
- }
2199
- program.name("ardent").description("CLI for Ardent database branching").version(CLI_VERSION2).configureHelp({
2316
+ program.name("ardent").description("CLI for Ardent database branching").version(CLI_VERSION).configureHelp({
2200
2317
  formatHelp: () => BANNER + HELP_TEXT
2201
2318
  });
2202
2319
  program.addCommand(loginCommand);
@@ -2228,5 +2345,5 @@ if (args.length === 0) {
2228
2345
  program.help();
2229
2346
  }
2230
2347
  getAnonymousId();
2231
- checkForUpdate(CLI_VERSION2);
2348
+ checkForUpdate(CLI_VERSION);
2232
2349
  program.parse();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ardent-cli",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "description": "Git for Data infrastructure",
5
5
  "type": "module",
6
6
  "bin": {