1
0

Refactor API (#4770)

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Update description.ts

* wip
This commit is contained in:
syuilo
2019-04-23 22:35:26 +09:00
committed by GitHub
parent f31f986d66
commit 0463c6bb0f
105 changed files with 1622 additions and 808 deletions
@@ -1,11 +1,15 @@
import { types, bool } from '../../../../misc/schema';
export const schema = {
type: 'object' as 'object',
type: types.object,
optional: bool.false, nullable: bool.false,
properties: {
/**
* 集計期間時点での、全ドライブファイル数
*/
totalCount: {
type: 'number' as 'number',
type: types.number,
optional: bool.false, nullable: bool.false,
description: '集計期間時点での、全ドライブファイル数'
},
@@ -13,7 +17,8 @@ export const schema = {
* 集計期間時点での、全ドライブファイルの合計サイズ
*/
totalSize: {
type: 'number' as 'number',
type: types.number,
optional: bool.false, nullable: bool.false,
description: '集計期間時点での、全ドライブファイルの合計サイズ'
},
@@ -21,7 +26,8 @@ export const schema = {
* 増加したドライブファイル数
*/
incCount: {
type: 'number' as 'number',
type: types.number,
optional: bool.false, nullable: bool.false,
description: '増加したドライブファイル数'
},
@@ -29,7 +35,8 @@ export const schema = {
* 増加したドライブ使用量
*/
incSize: {
type: 'number' as 'number',
type: types.number,
optional: bool.false, nullable: bool.false,
description: '増加したドライブ使用量'
},
@@ -37,7 +44,8 @@ export const schema = {
* 減少したドライブファイル数
*/
decCount: {
type: 'number' as 'number',
type: types.number,
optional: bool.false, nullable: bool.false,
description: '減少したドライブファイル数'
},
@@ -45,7 +53,8 @@ export const schema = {
* 減少したドライブ使用量
*/
decSize: {
type: 'number' as 'number',
type: types.number,
optional: bool.false, nullable: bool.false,
description: '減少したドライブ使用量'
},
}