struere 0.13.0 → 0.13.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.
- package/dist/bin/struere.js +3 -3
- package/dist/cli/index.js +3 -3
- package/package.json +1 -1
package/dist/bin/struere.js
CHANGED
|
@@ -6788,9 +6788,9 @@ function statusColor2(status) {
|
|
|
6788
6788
|
}
|
|
6789
6789
|
}
|
|
6790
6790
|
var templatesCommand = new Command16("templates").description("Manage WhatsApp message templates");
|
|
6791
|
-
templatesCommand.command("list").description("List all message templates").option("--env <environment>", "Environment to find connection (development|production|eval)").option("--
|
|
6791
|
+
templatesCommand.command("list").description("List all message templates").option("--env <environment>", "Environment to find connection (development|production|eval)").option("--json", "Output raw JSON").action(async (opts) => {
|
|
6792
6792
|
await ensureAuth3();
|
|
6793
|
-
const connectionId = await resolveConnectionId(opts.env ?? "production"
|
|
6793
|
+
const connectionId = await resolveConnectionId(opts.env ?? "production");
|
|
6794
6794
|
const out = createOutput();
|
|
6795
6795
|
out.start("Fetching templates");
|
|
6796
6796
|
const { data, error } = await listTemplates(connectionId);
|
|
@@ -10520,7 +10520,7 @@ var doctorCommand = new Command25("doctor").description("Run diagnostic checks o
|
|
|
10520
10520
|
// package.json
|
|
10521
10521
|
var package_default = {
|
|
10522
10522
|
name: "struere",
|
|
10523
|
-
version: "0.13.
|
|
10523
|
+
version: "0.13.1",
|
|
10524
10524
|
description: "Build, test, and deploy AI agents",
|
|
10525
10525
|
keywords: [
|
|
10526
10526
|
"ai",
|
package/dist/cli/index.js
CHANGED
|
@@ -6788,9 +6788,9 @@ function statusColor2(status) {
|
|
|
6788
6788
|
}
|
|
6789
6789
|
}
|
|
6790
6790
|
var templatesCommand = new Command16("templates").description("Manage WhatsApp message templates");
|
|
6791
|
-
templatesCommand.command("list").description("List all message templates").option("--env <environment>", "Environment to find connection (development|production|eval)").option("--
|
|
6791
|
+
templatesCommand.command("list").description("List all message templates").option("--env <environment>", "Environment to find connection (development|production|eval)").option("--json", "Output raw JSON").action(async (opts) => {
|
|
6792
6792
|
await ensureAuth3();
|
|
6793
|
-
const connectionId = await resolveConnectionId(opts.env ?? "production"
|
|
6793
|
+
const connectionId = await resolveConnectionId(opts.env ?? "production");
|
|
6794
6794
|
const out = createOutput();
|
|
6795
6795
|
out.start("Fetching templates");
|
|
6796
6796
|
const { data, error } = await listTemplates(connectionId);
|
|
@@ -10520,7 +10520,7 @@ var doctorCommand = new Command25("doctor").description("Run diagnostic checks o
|
|
|
10520
10520
|
// package.json
|
|
10521
10521
|
var package_default = {
|
|
10522
10522
|
name: "struere",
|
|
10523
|
-
version: "0.13.
|
|
10523
|
+
version: "0.13.1",
|
|
10524
10524
|
description: "Build, test, and deploy AI agents",
|
|
10525
10525
|
keywords: [
|
|
10526
10526
|
"ai",
|