Skip to content

Commit

Permalink
Update openapi file and TS types.
Browse files Browse the repository at this point in the history
Signed-off-by: Mirjam Aulbach <[email protected]>
  • Loading branch information
programmiri committed Feb 27, 2024
1 parent 9fcd961 commit bbe3ad3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coral/types/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4013,7 +4013,7 @@ export type operations = {
getClustersPaginated: {
parameters: {
query: {
clusterType: string;
clusterType: "ALL" | "KAFKA" | "SCHEMA_REGISTRY" | "KAFKA_CONNECT";
pageNo: string;
clusterId?: string;
searchClusterParam?: string;
Expand Down
3 changes: 2 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4827,7 +4827,8 @@
"in" : "query",
"required" : true,
"schema" : {
"type" : "string"
"type" : "string",
"enum" : [ "ALL", "KAFKA", "SCHEMA_REGISTRY", "KAFKA_CONNECT" ]
}
}, {
"name" : "pageNo",
Expand Down

0 comments on commit bbe3ad3

Please sign in to comment.