Files
oneuptime/MCP/Types/OneUptimeOperation.ts
Nawaz Dhandala 122b0d6be7 Refactor DynamicToolGenerator tests and utility functions for improved readability and consistency
- Enhanced test cases in DynamicToolGenerator.test.ts for better logging and structure.
- Updated OneUptimeOperation.ts to maintain consistent formatting.
- Refactored DynamicToolGenerator.ts for improved code clarity and organization, including consistent use of commas and spacing.
- Improved sanitization and JSON schema generation methods for better handling of OpenAPI metadata.
- Cleaned up description handling in DynamicToolGenerator to ensure proper formatting.
- Adjusted server.test.ts for consistent quotation marks and improved readability.
2025-06-30 23:27:57 +01:00

11 lines
187 B
TypeScript

export enum OneUptimeOperation {
Create = "create",
Read = "read",
List = "list",
Update = "update",
Delete = "delete",
Count = "count",
}
export default OneUptimeOperation;