conduyt 1.35.0 → 1.36.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/README.md CHANGED
@@ -40,6 +40,7 @@ conduyt insights summary # run an AI insight query
40
40
  conduyt insights saved_report --report "Lead Activity" --period last_7_days # run any saved report as a tool
41
41
  conduyt insights dashboard --dashboard Floor --period today # run every tile of a board
42
42
  conduyt insights report_catalog # what this key can run
43
+ conduyt messages transports # what a workflow Send SMS step can speak through today (Twilio numbers, Project Blue lines)
43
44
  conduyt privacy export <id> # GDPR data-portability export (owner/admin)
44
45
  conduyt privacy forget <id> --confirm FORGET # GDPR erasure — IRREVERSIBLE, owner only
45
46
  conduyt reply-capture status # inbound reply capture: state, DNS records, provider health
package/dist/index.js CHANGED
@@ -802,6 +802,10 @@ messages
802
802
  Object.assign(body, jsonArg(opts.json, "--json"));
803
803
  return client.post("/api/v1/messages", body);
804
804
  }));
805
+ messages
806
+ .command("transports")
807
+ .description("What a workflow Send SMS step can speak through today (GET /sms/transports): Twilio {connected, numbers = account number + active reps' lines, valid send_sms fromNumber values}, Project Blue {connected, lines held by active reps, valid projectBlueLineId values for smsMode project_blue}, webhook provider count, FromK.ai coming soon (automations scope)")
808
+ .action(run(async (client) => client.get("/api/v1/sms/transports")));
805
809
  messages
806
810
  .command("send-sms")
807
811
  .description("Send an outbound SMS (POST /messages/sms/send) — via Twilio, or from your own Project Blue iPhone line with --transport project_blue")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conduyt",
3
- "version": "1.35.0",
3
+ "version": "1.36.0",
4
4
  "description": "Command-line interface for Conduyt CRM — manage contacts, deals, pipelines, and run insight queries from your terminal.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",