We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bb952e commit 818920fCopy full SHA for 818920f
1 file changed
types/Tools.d.ts
@@ -117,4 +117,29 @@ export interface Tool {
117
// Format to media type mapping
118
export interface FormatMediaMapping {
119
[format: string]: MediaType;
120
-}
+}
121
+
122
+// Operation definition
123
+export interface OperationDefinition {
124
+ name: string;
125
+ description: string;
126
+ color: string;
127
128
129
+// Operation definitions type
130
+export type OperationDefinitions = {
131
+ [K in OperationType]: OperationDefinition;
132
+};
133
134
+// Media type definition
135
+export interface MediaTypeDefinition {
136
137
+ pluralName: string;
138
139
140
141
142
+// Media type definitions type
143
+export type MediaTypeDefinitions = {
144
+ [K in MediaType]: MediaTypeDefinition;
145
0 commit comments