stow-cli 2.2.0 → 2.2.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.
@@ -0,0 +1,206 @@
1
+ import {
2
+ parseJsonInput
3
+ } from "./chunk-3BLL5SQJ.js";
4
+ import {
5
+ validateBucketName,
6
+ validateFileKey
7
+ } from "./chunk-PLZFHPLC.js";
8
+ import {
9
+ isJsonOutput,
10
+ output
11
+ } from "./chunk-5BVMPHKH.js";
12
+ import {
13
+ formatBytes,
14
+ formatTable
15
+ } from "./chunk-FZGOTXTE.js";
16
+ import {
17
+ createStow
18
+ } from "./chunk-5LU25QZK.js";
19
+ import {
20
+ getApiKey,
21
+ getBaseUrl
22
+ } from "./chunk-TOADDO2F.js";
23
+
24
+ // src/commands/files.ts
25
+ async function listFiles(bucket, options) {
26
+ const stow = createStow();
27
+ const parsedLimit = options.limit ? Number.parseInt(options.limit, 10) : null;
28
+ const data = await stow.listFiles({
29
+ bucket,
30
+ ...options.search ? { prefix: options.search } : {},
31
+ ...parsedLimit && Number.isFinite(parsedLimit) && parsedLimit > 0 ? { limit: parsedLimit } : {}
32
+ });
33
+ if (data.files.length === 0) {
34
+ if (isJsonOutput() || options.json) {
35
+ output(data);
36
+ } else {
37
+ console.log(`No files in bucket '${bucket}'.`);
38
+ }
39
+ return;
40
+ }
41
+ if (options.json || isJsonOutput()) {
42
+ output(data);
43
+ return;
44
+ }
45
+ const rows = data.files.map((f) => [
46
+ f.key,
47
+ formatBytes(f.size),
48
+ f.lastModified.split("T")[0] ?? f.lastModified
49
+ ]);
50
+ console.log(formatTable(["Key", "Size", "Modified"], rows));
51
+ if (data.nextCursor) {
52
+ console.log("\n(more files available \u2014 use --limit to see more)");
53
+ }
54
+ }
55
+ async function getFile(bucket, key, _options) {
56
+ const stow = createStow();
57
+ const file = await stow.getFile(key, { bucket });
58
+ output(file, () => {
59
+ const lines = [
60
+ formatTable(
61
+ ["Field", "Value"],
62
+ [
63
+ ["Key", file.key],
64
+ ["Size", formatBytes(file.size)],
65
+ ["Type", file.contentType],
66
+ ["Created", file.createdAt],
67
+ ["URL", file.url ?? "(private)"],
68
+ [
69
+ "Dimensions",
70
+ file.width && file.height ? `${file.width}\xD7${file.height}` : "\u2014"
71
+ ],
72
+ ["Duration", file.duration ? `${file.duration}s` : "\u2014"],
73
+ ["Embedding", file.embeddingStatus ?? "\u2014"]
74
+ ]
75
+ )
76
+ ];
77
+ if (file.metadata && Object.keys(file.metadata).length > 0) {
78
+ lines.push("\nMetadata:");
79
+ for (const [k, v] of Object.entries(file.metadata)) {
80
+ lines.push(` ${k}: ${v}`);
81
+ }
82
+ }
83
+ return lines.join("\n");
84
+ });
85
+ }
86
+ async function updateFile(bucket, key, options) {
87
+ validateBucketName(bucket);
88
+ validateFileKey(key);
89
+ const flagMetadata = {};
90
+ if (options.metadata && options.metadata.length > 0) {
91
+ for (const pair of options.metadata) {
92
+ const idx = pair.indexOf("=");
93
+ if (idx === -1) {
94
+ console.error(
95
+ `Error: Invalid metadata format '${pair}'. Use key=value.`
96
+ );
97
+ process.exit(1);
98
+ }
99
+ flagMetadata[pair.slice(0, idx)] = pair.slice(idx + 1);
100
+ }
101
+ }
102
+ const jsonInput = parseJsonInput(
103
+ options.inputJson,
104
+ {}
105
+ );
106
+ const hasFlagMetadata = Object.keys(flagMetadata).length > 0;
107
+ const metadata = hasFlagMetadata ? { ...jsonInput.metadata ?? {}, ...flagMetadata } : jsonInput.metadata;
108
+ if (!metadata || Object.keys(metadata).length === 0) {
109
+ console.error(
110
+ "Error: At least one -m key=value pair or --input-json with metadata is required."
111
+ );
112
+ process.exit(1);
113
+ }
114
+ if (options.dryRun) {
115
+ console.log(
116
+ JSON.stringify(
117
+ {
118
+ dryRun: true,
119
+ action: "updateFile",
120
+ details: { bucket, key, metadata }
121
+ },
122
+ null,
123
+ 2
124
+ )
125
+ );
126
+ return;
127
+ }
128
+ const stow = createStow();
129
+ const file = await stow.updateFileMetadata(key, metadata, { bucket });
130
+ output(file, () => `Updated ${key}`);
131
+ }
132
+ async function enrichFile(bucket, key) {
133
+ const stow = createStow();
134
+ const results = await Promise.allSettled([
135
+ stow.generateTitle(key, { bucket }),
136
+ stow.generateDescription(key, { bucket }),
137
+ stow.generateAltText(key, { bucket })
138
+ ]);
139
+ const labels = ["Title", "Description", "Alt text"];
140
+ for (let i = 0; i < results.length; i++) {
141
+ const result = results[i];
142
+ const label = labels[i];
143
+ if (result.status === "fulfilled") {
144
+ console.log(` ${label}: triggered`);
145
+ } else {
146
+ console.error(` ${label}: failed \u2014 ${result.reason}`);
147
+ }
148
+ }
149
+ const succeeded = results.filter((r) => r.status === "fulfilled").length;
150
+ console.log(
151
+ `
152
+ Enriched ${key}: ${succeeded}/${results.length} tasks dispatched`
153
+ );
154
+ }
155
+ async function listMissing(bucket, type, options) {
156
+ const validTypes = ["dimensions", "embeddings", "colors"];
157
+ if (!validTypes.includes(type)) {
158
+ console.error(
159
+ `Error: Invalid type '${type}'. Must be one of: ${validTypes.join(", ")}`
160
+ );
161
+ process.exit(1);
162
+ }
163
+ const parsedLimit = options.limit ? Number.parseInt(options.limit, 10) : null;
164
+ const baseUrl = getBaseUrl();
165
+ const apiKey = getApiKey();
166
+ const params = new URLSearchParams({
167
+ bucket,
168
+ missing: type,
169
+ ...parsedLimit && Number.isFinite(parsedLimit) && parsedLimit > 0 ? { limit: String(parsedLimit) } : {}
170
+ });
171
+ const res = await fetch(`${baseUrl}/files?${params}`, {
172
+ headers: { "x-api-key": apiKey }
173
+ });
174
+ if (!res.ok) {
175
+ const body = await res.json().catch(() => ({}));
176
+ throw new Error(body.error ?? `HTTP ${res.status}`);
177
+ }
178
+ const data = await res.json();
179
+ if (data.files.length === 0) {
180
+ if (isJsonOutput() || options.json) {
181
+ output(data);
182
+ } else {
183
+ console.log(`No files missing ${type} in bucket '${bucket}'.`);
184
+ }
185
+ return;
186
+ }
187
+ if (options.json || isJsonOutput()) {
188
+ output(data);
189
+ return;
190
+ }
191
+ const rows = data.files.map((f) => [
192
+ f.key,
193
+ formatBytes(f.size),
194
+ f.lastModified.split("T")[0] ?? f.lastModified
195
+ ]);
196
+ console.log(formatTable(["Key", "Size", "Modified"], rows));
197
+ console.log(`
198
+ ${data.files.length} files missing ${type}`);
199
+ }
200
+ export {
201
+ enrichFile,
202
+ getFile,
203
+ listFiles,
204
+ listMissing,
205
+ updateFile
206
+ };
@@ -0,0 +1,206 @@
1
+ import {
2
+ parseJsonInput
3
+ } from "./chunk-3BLL5SQJ.js";
4
+ import {
5
+ validateBucketName,
6
+ validateFileKey
7
+ } from "./chunk-PLZFHPLC.js";
8
+ import {
9
+ isJsonOutput,
10
+ output
11
+ } from "./chunk-5IX3ASXH.js";
12
+ import {
13
+ formatBytes,
14
+ formatTable
15
+ } from "./chunk-FZGOTXTE.js";
16
+ import {
17
+ createStow
18
+ } from "./chunk-5LU25QZK.js";
19
+ import {
20
+ getApiKey,
21
+ getBaseUrl
22
+ } from "./chunk-TOADDO2F.js";
23
+
24
+ // src/commands/files.ts
25
+ async function listFiles(bucket, options) {
26
+ const stow = createStow();
27
+ const parsedLimit = options.limit ? Number.parseInt(options.limit, 10) : null;
28
+ const data = await stow.listFiles({
29
+ bucket,
30
+ ...options.search ? { prefix: options.search } : {},
31
+ ...parsedLimit && Number.isFinite(parsedLimit) && parsedLimit > 0 ? { limit: parsedLimit } : {}
32
+ });
33
+ if (data.files.length === 0) {
34
+ if (isJsonOutput() || options.json) {
35
+ output(data);
36
+ } else {
37
+ console.log(`No files in bucket '${bucket}'.`);
38
+ }
39
+ return;
40
+ }
41
+ if (options.json || isJsonOutput()) {
42
+ output(data);
43
+ return;
44
+ }
45
+ const rows = data.files.map((f) => [
46
+ f.key,
47
+ formatBytes(f.size),
48
+ f.lastModified.split("T")[0] ?? f.lastModified
49
+ ]);
50
+ console.log(formatTable(["Key", "Size", "Modified"], rows));
51
+ if (data.nextCursor) {
52
+ console.log("\n(more files available \u2014 use --limit to see more)");
53
+ }
54
+ }
55
+ async function getFile(bucket, key, _options) {
56
+ const stow = createStow();
57
+ const file = await stow.getFile(key, { bucket });
58
+ output(file, () => {
59
+ const lines = [
60
+ formatTable(
61
+ ["Field", "Value"],
62
+ [
63
+ ["Key", file.key],
64
+ ["Size", formatBytes(file.size)],
65
+ ["Type", file.contentType],
66
+ ["Created", file.createdAt],
67
+ ["URL", file.url ?? "(private)"],
68
+ [
69
+ "Dimensions",
70
+ file.width && file.height ? `${file.width}\xD7${file.height}` : "\u2014"
71
+ ],
72
+ ["Duration", file.duration ? `${file.duration}s` : "\u2014"],
73
+ ["Embedding", file.embeddingStatus ?? "\u2014"]
74
+ ]
75
+ )
76
+ ];
77
+ if (file.metadata && Object.keys(file.metadata).length > 0) {
78
+ lines.push("\nMetadata:");
79
+ for (const [k, v] of Object.entries(file.metadata)) {
80
+ lines.push(` ${k}: ${v}`);
81
+ }
82
+ }
83
+ return lines.join("\n");
84
+ });
85
+ }
86
+ async function updateFile(bucket, key, options) {
87
+ validateBucketName(bucket);
88
+ validateFileKey(key);
89
+ const flagMetadata = {};
90
+ if (options.metadata && options.metadata.length > 0) {
91
+ for (const pair of options.metadata) {
92
+ const idx = pair.indexOf("=");
93
+ if (idx === -1) {
94
+ console.error(
95
+ `Error: Invalid metadata format '${pair}'. Use key=value.`
96
+ );
97
+ process.exit(1);
98
+ }
99
+ flagMetadata[pair.slice(0, idx)] = pair.slice(idx + 1);
100
+ }
101
+ }
102
+ const jsonInput = parseJsonInput(
103
+ options.inputJson,
104
+ {}
105
+ );
106
+ const hasFlagMetadata = Object.keys(flagMetadata).length > 0;
107
+ const metadata = hasFlagMetadata ? { ...jsonInput.metadata ?? {}, ...flagMetadata } : jsonInput.metadata;
108
+ if (!metadata || Object.keys(metadata).length === 0) {
109
+ console.error(
110
+ "Error: At least one -m key=value pair or --input-json with metadata is required."
111
+ );
112
+ process.exit(1);
113
+ }
114
+ if (options.dryRun) {
115
+ console.log(
116
+ JSON.stringify(
117
+ {
118
+ dryRun: true,
119
+ action: "updateFile",
120
+ details: { bucket, key, metadata }
121
+ },
122
+ null,
123
+ 2
124
+ )
125
+ );
126
+ return;
127
+ }
128
+ const stow = createStow();
129
+ const file = await stow.updateFileMetadata(key, metadata, { bucket });
130
+ output(file, () => `Updated ${key}`);
131
+ }
132
+ async function enrichFile(bucket, key) {
133
+ const stow = createStow();
134
+ const results = await Promise.allSettled([
135
+ stow.generateTitle(key, { bucket }),
136
+ stow.generateDescription(key, { bucket }),
137
+ stow.generateAltText(key, { bucket })
138
+ ]);
139
+ const labels = ["Title", "Description", "Alt text"];
140
+ for (let i = 0; i < results.length; i++) {
141
+ const result = results[i];
142
+ const label = labels[i];
143
+ if (result.status === "fulfilled") {
144
+ console.log(` ${label}: triggered`);
145
+ } else {
146
+ console.error(` ${label}: failed \u2014 ${result.reason}`);
147
+ }
148
+ }
149
+ const succeeded = results.filter((r) => r.status === "fulfilled").length;
150
+ console.log(
151
+ `
152
+ Enriched ${key}: ${succeeded}/${results.length} tasks dispatched`
153
+ );
154
+ }
155
+ async function listMissing(bucket, type, options) {
156
+ const validTypes = ["dimensions", "embeddings", "colors"];
157
+ if (!validTypes.includes(type)) {
158
+ console.error(
159
+ `Error: Invalid type '${type}'. Must be one of: ${validTypes.join(", ")}`
160
+ );
161
+ process.exit(1);
162
+ }
163
+ const parsedLimit = options.limit ? Number.parseInt(options.limit, 10) : null;
164
+ const baseUrl = getBaseUrl();
165
+ const apiKey = getApiKey();
166
+ const params = new URLSearchParams({
167
+ bucket,
168
+ missing: type,
169
+ ...parsedLimit && Number.isFinite(parsedLimit) && parsedLimit > 0 ? { limit: String(parsedLimit) } : {}
170
+ });
171
+ const res = await fetch(`${baseUrl}/files?${params}`, {
172
+ headers: { "x-api-key": apiKey }
173
+ });
174
+ if (!res.ok) {
175
+ const body = await res.json().catch(() => ({}));
176
+ throw new Error(body.error ?? `HTTP ${res.status}`);
177
+ }
178
+ const data = await res.json();
179
+ if (data.files.length === 0) {
180
+ if (isJsonOutput() || options.json) {
181
+ output(data);
182
+ } else {
183
+ console.log(`No files missing ${type} in bucket '${bucket}'.`);
184
+ }
185
+ return;
186
+ }
187
+ if (options.json || isJsonOutput()) {
188
+ output(data);
189
+ return;
190
+ }
191
+ const rows = data.files.map((f) => [
192
+ f.key,
193
+ formatBytes(f.size),
194
+ f.lastModified.split("T")[0] ?? f.lastModified
195
+ ]);
196
+ console.log(formatTable(["Key", "Size", "Modified"], rows));
197
+ console.log(`
198
+ ${data.files.length} files missing ${type}`);
199
+ }
200
+ export {
201
+ enrichFile,
202
+ getFile,
203
+ listFiles,
204
+ listMissing,
205
+ updateFile
206
+ };
@@ -0,0 +1,61 @@
1
+ import {
2
+ adminRequest
3
+ } from "./chunk-QF7PVPWQ.js";
4
+ import {
5
+ output
6
+ } from "./chunk-5IX3ASXH.js";
7
+ import {
8
+ formatTable
9
+ } from "./chunk-FZGOTXTE.js";
10
+ import "./chunk-TOADDO2F.js";
11
+
12
+ // src/commands/admin/health.ts
13
+ async function health(options) {
14
+ const result = await adminRequest({
15
+ method: "GET",
16
+ path: "/health"
17
+ });
18
+ output(
19
+ result,
20
+ () => {
21
+ const lines = [];
22
+ const statusIcon = result.status === "ok" ? "+" : "x";
23
+ lines.push(`${statusIcon} ${result.status} (${result.version})`);
24
+ lines.push(` ${result.timestamp}`);
25
+ lines.push("\nChecks:");
26
+ for (const [name, status] of Object.entries(result.checks)) {
27
+ const icon = status === "ok" ? "+" : "x";
28
+ lines.push(` ${icon} ${name}`);
29
+ }
30
+ if (result.queues) {
31
+ lines.push("\nQueues:");
32
+ const rows = [];
33
+ for (const [name, counts] of Object.entries(result.queues)) {
34
+ if (counts === "unavailable") {
35
+ rows.push([name, "--", "--", "--", "--"]);
36
+ } else {
37
+ const c = counts;
38
+ rows.push([
39
+ name,
40
+ String(c.waiting ?? 0),
41
+ String(c.active ?? 0),
42
+ String(c.completed ?? 0),
43
+ String(c.failed ?? 0)
44
+ ]);
45
+ }
46
+ }
47
+ lines.push(
48
+ formatTable(
49
+ ["Queue", "Waiting", "Active", "Completed", "Failed"],
50
+ rows
51
+ )
52
+ );
53
+ }
54
+ return lines.join("\n");
55
+ },
56
+ { json: options.json }
57
+ );
58
+ }
59
+ export {
60
+ health
61
+ };
@@ -0,0 +1,61 @@
1
+ import {
2
+ adminRequest
3
+ } from "./chunk-QF7PVPWQ.js";
4
+ import {
5
+ output
6
+ } from "./chunk-5BVMPHKH.js";
7
+ import {
8
+ formatTable
9
+ } from "./chunk-FZGOTXTE.js";
10
+ import "./chunk-TOADDO2F.js";
11
+
12
+ // src/commands/admin/health.ts
13
+ async function health(options) {
14
+ const result = await adminRequest({
15
+ method: "GET",
16
+ path: "/health"
17
+ });
18
+ output(
19
+ result,
20
+ () => {
21
+ const lines = [];
22
+ const statusIcon = result.status === "ok" ? "+" : "x";
23
+ lines.push(`${statusIcon} ${result.status} (${result.version})`);
24
+ lines.push(` ${result.timestamp}`);
25
+ lines.push("\nChecks:");
26
+ for (const [name, status] of Object.entries(result.checks)) {
27
+ const icon = status === "ok" ? "+" : "x";
28
+ lines.push(` ${icon} ${name}`);
29
+ }
30
+ if (result.queues) {
31
+ lines.push("\nQueues:");
32
+ const rows = [];
33
+ for (const [name, counts] of Object.entries(result.queues)) {
34
+ if (counts === "unavailable") {
35
+ rows.push([name, "--", "--", "--", "--"]);
36
+ } else {
37
+ const c = counts;
38
+ rows.push([
39
+ name,
40
+ String(c.waiting ?? 0),
41
+ String(c.active ?? 0),
42
+ String(c.completed ?? 0),
43
+ String(c.failed ?? 0)
44
+ ]);
45
+ }
46
+ }
47
+ lines.push(
48
+ formatTable(
49
+ ["Queue", "Waiting", "Active", "Completed", "Failed"],
50
+ rows
51
+ )
52
+ );
53
+ }
54
+ return lines.join("\n");
55
+ },
56
+ { json: options.json }
57
+ );
58
+ }
59
+ export {
60
+ health
61
+ };
@@ -0,0 +1,90 @@
1
+ import {
2
+ adminRequest
3
+ } from "./chunk-QF7PVPWQ.js";
4
+ import {
5
+ isJsonOutput,
6
+ output
7
+ } from "./chunk-5BVMPHKH.js";
8
+ import {
9
+ formatTable
10
+ } from "./chunk-FZGOTXTE.js";
11
+ import "./chunk-TOADDO2F.js";
12
+
13
+ // src/commands/admin/jobs.ts
14
+ function formatTimestamp(ts) {
15
+ return new Date(ts).toISOString().replace("T", " ").slice(0, 19);
16
+ }
17
+ async function listAdminJobs(options) {
18
+ const params = new URLSearchParams();
19
+ if (options.org) {
20
+ params.set("orgId", options.org);
21
+ }
22
+ if (options.bucket) {
23
+ params.set("bucketId", options.bucket);
24
+ }
25
+ if (options.status) {
26
+ params.set("status", options.status);
27
+ }
28
+ if (options.queue) {
29
+ params.set("queue", options.queue);
30
+ }
31
+ if (options.limit) {
32
+ params.set("limit", options.limit);
33
+ }
34
+ const qs = params.toString();
35
+ const result = await adminRequest({
36
+ method: "GET",
37
+ path: `/admin/jobs${qs ? `?${qs}` : ""}`
38
+ });
39
+ if (result.jobs.length === 0) {
40
+ if (isJsonOutput() || options.json) {
41
+ output(result.jobs, void 0, { json: options.json });
42
+ } else {
43
+ console.log("No jobs found.");
44
+ }
45
+ return;
46
+ }
47
+ output(
48
+ result.jobs,
49
+ () => {
50
+ const rows = result.jobs.map((job) => [
51
+ job.jobId,
52
+ job.queueName,
53
+ job.status,
54
+ `${job.data.fileId.slice(0, 8)}...`,
55
+ `${job.data.orgId.slice(0, 8)}...`,
56
+ formatTimestamp(job.timestamp),
57
+ job.failedReason ? job.failedReason.slice(0, 40) : ""
58
+ ]);
59
+ return formatTable(
60
+ ["ID", "Queue", "Status", "File", "Org", "Created", "Error"],
61
+ rows
62
+ );
63
+ },
64
+ { json: options.json }
65
+ );
66
+ }
67
+ async function retryAdminJob(jobId, options) {
68
+ const result = await adminRequest({
69
+ method: "POST",
70
+ path: `/admin/jobs/${jobId}/retry`,
71
+ body: { queue: options.queue }
72
+ });
73
+ if (result.retried) {
74
+ console.log(`Job ${jobId} retried.`);
75
+ }
76
+ }
77
+ async function deleteAdminJob(jobId, options) {
78
+ const result = await adminRequest({
79
+ method: "DELETE",
80
+ path: `/admin/jobs/${jobId}?queue=${encodeURIComponent(options.queue)}`
81
+ });
82
+ if (result.deleted) {
83
+ console.log(`Job ${jobId} removed.`);
84
+ }
85
+ }
86
+ export {
87
+ deleteAdminJob,
88
+ listAdminJobs,
89
+ retryAdminJob
90
+ };
@@ -0,0 +1,90 @@
1
+ import {
2
+ adminRequest
3
+ } from "./chunk-QF7PVPWQ.js";
4
+ import {
5
+ isJsonOutput,
6
+ output
7
+ } from "./chunk-5IX3ASXH.js";
8
+ import {
9
+ formatTable
10
+ } from "./chunk-FZGOTXTE.js";
11
+ import "./chunk-TOADDO2F.js";
12
+
13
+ // src/commands/admin/jobs.ts
14
+ function formatTimestamp(ts) {
15
+ return new Date(ts).toISOString().replace("T", " ").slice(0, 19);
16
+ }
17
+ async function listAdminJobs(options) {
18
+ const params = new URLSearchParams();
19
+ if (options.org) {
20
+ params.set("orgId", options.org);
21
+ }
22
+ if (options.bucket) {
23
+ params.set("bucketId", options.bucket);
24
+ }
25
+ if (options.status) {
26
+ params.set("status", options.status);
27
+ }
28
+ if (options.queue) {
29
+ params.set("queue", options.queue);
30
+ }
31
+ if (options.limit) {
32
+ params.set("limit", options.limit);
33
+ }
34
+ const qs = params.toString();
35
+ const result = await adminRequest({
36
+ method: "GET",
37
+ path: `/admin/jobs${qs ? `?${qs}` : ""}`
38
+ });
39
+ if (result.jobs.length === 0) {
40
+ if (isJsonOutput() || options.json) {
41
+ output(result.jobs, void 0, { json: options.json });
42
+ } else {
43
+ console.log("No jobs found.");
44
+ }
45
+ return;
46
+ }
47
+ output(
48
+ result.jobs,
49
+ () => {
50
+ const rows = result.jobs.map((job) => [
51
+ job.jobId,
52
+ job.queueName,
53
+ job.status,
54
+ `${job.data.fileId.slice(0, 8)}...`,
55
+ `${job.data.orgId.slice(0, 8)}...`,
56
+ formatTimestamp(job.timestamp),
57
+ job.failedReason ? job.failedReason.slice(0, 40) : ""
58
+ ]);
59
+ return formatTable(
60
+ ["ID", "Queue", "Status", "File", "Org", "Created", "Error"],
61
+ rows
62
+ );
63
+ },
64
+ { json: options.json }
65
+ );
66
+ }
67
+ async function retryAdminJob(jobId, options) {
68
+ const result = await adminRequest({
69
+ method: "POST",
70
+ path: `/admin/jobs/${jobId}/retry`,
71
+ body: { queue: options.queue }
72
+ });
73
+ if (result.retried) {
74
+ console.log(`Job ${jobId} retried.`);
75
+ }
76
+ }
77
+ async function deleteAdminJob(jobId, options) {
78
+ const result = await adminRequest({
79
+ method: "DELETE",
80
+ path: `/admin/jobs/${jobId}?queue=${encodeURIComponent(options.queue)}`
81
+ });
82
+ if (result.deleted) {
83
+ console.log(`Job ${jobId} removed.`);
84
+ }
85
+ }
86
+ export {
87
+ deleteAdminJob,
88
+ listAdminJobs,
89
+ retryAdminJob
90
+ };