fix(api): add clone url
Some checks are pending
CI / Rust Lint & Check (push) Waiting to run
CI / Rust Tests (push) Waiting to run
CI / Frontend Lint & Type Check (push) Waiting to run
CI / Frontend Build (push) Blocked by required conditions

This commit is contained in:
ZhenYi 2026-04-16 18:31:05 +08:00
parent df87a65cbb
commit 89deebced6
2 changed files with 16 additions and 6 deletions

View File

@ -36798,7 +36798,9 @@
"branch_count", "branch_count",
"tag_count", "tag_count",
"star_count", "star_count",
"watch_count" "watch_count",
"ssh_clone_url",
"https_clone_url"
], ],
"properties": { "properties": {
"uid": { "uid": {
@ -36849,6 +36851,12 @@
"null" "null"
], ],
"format": "date-time" "format": "date-time"
},
"ssh_clone_url": {
"type": "string"
},
"https_clone_url": {
"type": "string"
} }
} }
}, },
@ -38180,13 +38188,13 @@
"type": "object", "type": "object",
"required": [ "required": [
"room_name", "room_name",
"public" "room_public"
], ],
"properties": { "properties": {
"room_name": { "room_name": {
"type": "string" "type": "string"
}, },
"public": { "room_public": {
"type": "boolean" "type": "boolean"
}, },
"category": { "category": {
@ -38611,7 +38619,7 @@
"null" "null"
] ]
}, },
"public": { "room_public": {
"type": [ "type": [
"boolean", "boolean",
"null" "null"

View File

@ -4022,6 +4022,8 @@ export type ProjectRepositoryItem = {
star_count: number; star_count: number;
watch_count: number; watch_count: number;
last_commit_at?: string | null; last_commit_at?: string | null;
ssh_clone_url: string;
https_clone_url: string;
}; };
export type ProjectRepositoryPagination = { export type ProjectRepositoryPagination = {
@ -4376,7 +4378,7 @@ export type RoomCategoryUpdateRequest = {
export type RoomCreateRequest = { export type RoomCreateRequest = {
room_name: string; room_name: string;
public: boolean; room_public: boolean;
category?: string | null; category?: string | null;
}; };
@ -4477,7 +4479,7 @@ export type RoomThreadResponse = {
export type RoomUpdateRequest = { export type RoomUpdateRequest = {
room_name?: string | null; room_name?: string | null;
public?: boolean | null; room_public?: boolean | null;
category?: string | null; category?: string | null;
}; };