Skip to content

Commit

Permalink
Updated ts
Browse files Browse the repository at this point in the history
Signed-off-by: muralibasani <[email protected]>
  • Loading branch information
muralibasani committed Jan 9, 2024
1 parent 1ad83c2 commit d588527
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions coral/types/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1161,18 +1161,18 @@ export type components = {
};
RequestEntityStatusCount: {
/** @enum {string} */
requestEntityType?: "TOPIC" | "ACL" | "SCHEMA" | "CONNECTOR" | "OPERATIONAL" | "USER";
requestStatusCountSet?: components["schemas"]["RequestStatusCount"][];
requestsOperationTypeCountSet?: components["schemas"]["RequestsOperationTypeCount"][];
requestEntityType: "TOPIC" | "ACL" | "SCHEMA" | "CONNECTOR" | "OPERATIONAL" | "USER";
requestStatusCountSet: components["schemas"]["RequestStatusCount"][];
requestsOperationTypeCountSet: components["schemas"]["RequestsOperationTypeCount"][];
};
RequestStatusCount: {
/** @enum {string} */
requestStatus?: "CREATED" | "DELETED" | "DECLINED" | "APPROVED" | "ALL";
requestStatus: "CREATED" | "DELETED" | "DECLINED" | "APPROVED" | "ALL";
/** Format: int64 */
count?: number;
count: number;
};
RequestsCountOverview: {
requestEntityStatistics?: components["schemas"]["RequestEntityStatusCount"][];
requestEntityStatistics: components["schemas"]["RequestEntityStatusCount"][];
};
RequestsOperationTypeCount: {
/** @enum {string} */
Expand Down Expand Up @@ -1744,6 +1744,7 @@ export type components = {
adAuthRoleEnabled: string;
supportlink: string;
myteamtopics: string;
myOrgTopics: string;
googleFeedbackFormLink: string;
};
KwPropertiesResponse: {
Expand Down

0 comments on commit d588527

Please sign in to comment.