@workbuddy/cli-edge 1.0.6 → 1.0.7
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/index.js +31 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8090,6 +8090,34 @@ function registerAuthCommands(program2) {
|
|
|
8090
8090
|
console.log("Active profile set to " + options.profile);
|
|
8091
8091
|
});
|
|
8092
8092
|
}
|
|
8093
|
+
var GROUP_DESCRIPTIONS = {
|
|
8094
|
+
jobs: "Manage jobs — create, update, search, and track work",
|
|
8095
|
+
stages: "Manage stages (work orders) within jobs",
|
|
8096
|
+
settings: "Read tenant configuration — job types, priorities, zones, tags, statuses",
|
|
8097
|
+
attachments: "Upload and manage file attachments",
|
|
8098
|
+
crm: "CRM — customers, employees, contractors, suppliers, contacts, sites",
|
|
8099
|
+
webhooks: "Register and manage webhook subscriptions",
|
|
8100
|
+
exports: "Bulk export entity data",
|
|
8101
|
+
agents: "AI agent bridge — progress, actions, lifecycle callbacks",
|
|
8102
|
+
mcp: "Model Context Protocol tools for AI agents",
|
|
8103
|
+
activities: "Activity log — notes, emails, SMS, phone calls, integrations",
|
|
8104
|
+
files: "Files attached to jobs or stages",
|
|
8105
|
+
tasks: "Tasks and to-dos linked to jobs or stages",
|
|
8106
|
+
contacts: "Contacts linked to jobs",
|
|
8107
|
+
customers: "Customer records",
|
|
8108
|
+
employees: "Employee records",
|
|
8109
|
+
contractors: "Contractor records",
|
|
8110
|
+
suppliers: "Supplier records",
|
|
8111
|
+
companies: "Company records",
|
|
8112
|
+
sites: "Site/location records",
|
|
8113
|
+
invites: "User invitations",
|
|
8114
|
+
email: "Email activities",
|
|
8115
|
+
sms: "SMS activities",
|
|
8116
|
+
note: "Note activities",
|
|
8117
|
+
phone: "Phone call activities",
|
|
8118
|
+
integration: "Integration activities",
|
|
8119
|
+
resources: "Technicians and contractors assigned to stages"
|
|
8120
|
+
};
|
|
8093
8121
|
function registerGeneratedCommands(program2) {
|
|
8094
8122
|
const commandCache = new Map;
|
|
8095
8123
|
commandCache.set("", program2);
|
|
@@ -8102,6 +8130,9 @@ function registerGeneratedCommands(program2) {
|
|
|
8102
8130
|
let command = commandCache.get(key);
|
|
8103
8131
|
if (!command) {
|
|
8104
8132
|
command = parent.command(segment);
|
|
8133
|
+
if (GROUP_DESCRIPTIONS[segment]) {
|
|
8134
|
+
command.description(GROUP_DESCRIPTIONS[segment]);
|
|
8135
|
+
}
|
|
8105
8136
|
commandCache.set(key, command);
|
|
8106
8137
|
}
|
|
8107
8138
|
parent = command;
|