bc-webclient-mcp
Version:
Model Context Protocol (MCP) server for Microsoft Dynamics 365 Business Central via WebUI protocol. Enables AI assistants to interact with BC through the web client protocol, supporting Card, List, and Document pages with full line item support and server
19 lines • 799 B
JavaScript
/**
* Business Central Domain Types
*
* Type definitions for BC WebSocket protocol, LogicalForm structure,
* and control types discovered from metadata extraction.
*
* @see SUCCESSFUL-METADATA-EXTRACTION.md for control type reference
*/
// ============================================================================
// SystemAction Codes (discovered from testing)
// ============================================================================
export var SystemAction;
(function (SystemAction) {
SystemAction[SystemAction["New"] = 10] = "New";
SystemAction[SystemAction["Delete"] = 20] = "Delete";
SystemAction[SystemAction["Edit"] = 40] = "Edit";
SystemAction[SystemAction["View"] = 60] = "View";
})(SystemAction || (SystemAction = {}));
//# sourceMappingURL=bc-types.js.map