diff --git a/openapi.json b/openapi.json index 772ddd8..468f91a 100644 --- a/openapi.json +++ b/openapi.json @@ -36798,7 +36798,9 @@ "branch_count", "tag_count", "star_count", - "watch_count" + "watch_count", + "ssh_clone_url", + "https_clone_url" ], "properties": { "uid": { @@ -36849,6 +36851,12 @@ "null" ], "format": "date-time" + }, + "ssh_clone_url": { + "type": "string" + }, + "https_clone_url": { + "type": "string" } } }, @@ -38180,13 +38188,13 @@ "type": "object", "required": [ "room_name", - "public" + "room_public" ], "properties": { "room_name": { "type": "string" }, - "public": { + "room_public": { "type": "boolean" }, "category": { @@ -38611,7 +38619,7 @@ "null" ] }, - "public": { + "room_public": { "type": [ "boolean", "null" diff --git a/src/client/types.gen.ts b/src/client/types.gen.ts index 7721780..699b394 100644 --- a/src/client/types.gen.ts +++ b/src/client/types.gen.ts @@ -4022,6 +4022,8 @@ export type ProjectRepositoryItem = { star_count: number; watch_count: number; last_commit_at?: string | null; + ssh_clone_url: string; + https_clone_url: string; }; export type ProjectRepositoryPagination = { @@ -4376,7 +4378,7 @@ export type RoomCategoryUpdateRequest = { export type RoomCreateRequest = { room_name: string; - public: boolean; + room_public: boolean; category?: string | null; }; @@ -4477,7 +4479,7 @@ export type RoomThreadResponse = { export type RoomUpdateRequest = { room_name?: string | null; - public?: boolean | null; + room_public?: boolean | null; category?: string | null; };