feat(noc): integrate DocumentStat model and sync with external NOC API
This commit is contained in:
@@ -894,21 +894,30 @@ export interface operations {
|
||||
};
|
||||
content: {
|
||||
"application/json": {
|
||||
success: boolean;
|
||||
message: string;
|
||||
data: {
|
||||
category: string;
|
||||
count: number;
|
||||
label: string;
|
||||
value: number;
|
||||
color: string;
|
||||
}[];
|
||||
};
|
||||
"multipart/form-data": {
|
||||
success: boolean;
|
||||
message: string;
|
||||
data: {
|
||||
category: string;
|
||||
count: number;
|
||||
label: string;
|
||||
value: number;
|
||||
color: string;
|
||||
}[];
|
||||
};
|
||||
"text/plain": {
|
||||
success: boolean;
|
||||
message: string;
|
||||
data: {
|
||||
category: string;
|
||||
count: number;
|
||||
label: string;
|
||||
value: number;
|
||||
color: string;
|
||||
}[];
|
||||
};
|
||||
};
|
||||
|
||||
@@ -802,26 +802,38 @@
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"data": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"category",
|
||||
"count"
|
||||
"label",
|
||||
"value",
|
||||
"color"
|
||||
],
|
||||
"properties": {
|
||||
"category": {
|
||||
"label": {
|
||||
"type": "string"
|
||||
},
|
||||
"count": {
|
||||
"value": {
|
||||
"type": "number"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success",
|
||||
"message",
|
||||
"data"
|
||||
]
|
||||
}
|
||||
@@ -830,26 +842,38 @@
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"data": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"category",
|
||||
"count"
|
||||
"label",
|
||||
"value",
|
||||
"color"
|
||||
],
|
||||
"properties": {
|
||||
"category": {
|
||||
"label": {
|
||||
"type": "string"
|
||||
},
|
||||
"count": {
|
||||
"value": {
|
||||
"type": "number"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success",
|
||||
"message",
|
||||
"data"
|
||||
]
|
||||
}
|
||||
@@ -858,26 +882,38 @@
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"data": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"category",
|
||||
"count"
|
||||
"label",
|
||||
"value",
|
||||
"color"
|
||||
],
|
||||
"properties": {
|
||||
"category": {
|
||||
"label": {
|
||||
"type": "string"
|
||||
},
|
||||
"count": {
|
||||
"value": {
|
||||
"type": "number"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success",
|
||||
"message",
|
||||
"data"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user