fix: update octobase and fix type mismatching

This commit is contained in:
linonetwo
2023-01-09 15:09:49 +08:00
parent 5513cbf724
commit 51a427496c
9 changed files with 31 additions and 20 deletions

View File

@@ -39,8 +39,7 @@
"required": ["id"],
"properties": {
"id": {
"type": "integer",
"format": "int64"
"type": "string"
}
}
},
@@ -63,8 +62,7 @@
"required": ["id", "update"],
"properties": {
"id": {
"type": "integer",
"format": "int64"
"type": "string"
},
"update": {
"type": "array",

View File

@@ -17,12 +17,12 @@ export type IDocumentParameters =
};
export interface YDocumentUpdate {
id: number;
id: string;
update: number[];
[k: string]: unknown;
}
export interface GetDocumentParameter {
id: number;
id: string;
[k: string]: unknown;
}
export interface GetDocumentResponse {