fix(api): add clone url
This commit is contained in:
parent
df87a65cbb
commit
89deebced6
16
openapi.json
16
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"
|
||||
|
||||
@ -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;
|
||||
};
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user