28 lines
998 B
JavaScript
28 lines
998 B
JavaScript
export const capabilities = {
|
|
get_health: { type: 'read' },
|
|
get_build_status: { type: 'read' },
|
|
get_state: { type: 'read' },
|
|
get_telemetry: { type: 'read' },
|
|
list_commits: { type: 'read' },
|
|
get_file: { type: 'read' },
|
|
list_customers: { type: 'read' },
|
|
get_billing_summary: { type: 'read' },
|
|
get_billing_forecast: { type: 'read' },
|
|
get_billing_anomalies: { type: 'read' },
|
|
get_billing_budget: { type: 'read' },
|
|
list_workspace_users: { type: 'read' },
|
|
list_user_aliases: { type: 'read' },
|
|
list_calendar_events: { type: 'read' },
|
|
run_emma: { type: 'read' },
|
|
trigger_build: { type: 'proposal' },
|
|
commit_and_push_files: { type: 'proposal' },
|
|
create_a2h2a_ticket: { type: 'proposal' },
|
|
send_email: { type: 'proposal' },
|
|
send_sms: { type: 'proposal' },
|
|
send_webhook: { type: 'proposal' },
|
|
create_invite: { type: 'proposal' },
|
|
create_email_alias: { type: 'proposal' },
|
|
delete_email_alias: { type: 'proposal' },
|
|
set_billing_budget: { type: 'proposal' },
|
|
};
|