8bd9077f77
* user.ts、page.ts、drive-folder.tsを各EntityServiceの戻り値をもとに最新化 * 再確認 * fix error * note以外の残りのファイルを対応 * fix CHANGELOG.md * fix CHANGELOG.md * fix user.ts * fix user.ts * コメント対応 * fix note.ts --------- Co-authored-by: osamu <46447427+sam-osamu@users.noreply.github.com>
44 lines
852 B
TypeScript
44 lines
852 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export const packedDriveFolderSchema = {
|
|
type: 'object',
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'id',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
createdAt: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'date-time',
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
parentId: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
format: 'id',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
foldersCount: {
|
|
type: 'number',
|
|
optional: true, nullable: false,
|
|
},
|
|
filesCount: {
|
|
type: 'number',
|
|
optional: true, nullable: false,
|
|
},
|
|
parent: {
|
|
type: 'object',
|
|
optional: true, nullable: true,
|
|
ref: 'DriveFolder',
|
|
},
|
|
},
|
|
} as const;
|