mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
- 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.
11 lines
187 B
TypeScript
11 lines
187 B
TypeScript
export enum OneUptimeOperation {
|
|
Create = "create",
|
|
Read = "read",
|
|
List = "list",
|
|
Update = "update",
|
|
Delete = "delete",
|
|
Count = "count",
|
|
}
|
|
|
|
export default OneUptimeOperation;
|