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",
"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"

View File

@ -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;
};