feat: ユーザースキーマの改善 (#12568)
* chore: notifyにenumを設定 * feat: securityKeysListの型を明確に * feat: notificationRecieveConfigにpropertiesを定義 * chore: misskey.jsのmodelを更新 * fix: as constをつけ忘れている
This commit is contained in:
		| @@ -3,6 +3,18 @@ | ||||
|  * SPDX-License-Identifier: AGPL-3.0-only | ||||
|  */ | ||||
|  | ||||
| const notificationRecieveConfig = { | ||||
| 	type: 'object', | ||||
| 	nullable: false, optional: true, | ||||
| 	properties: { | ||||
| 		type: { | ||||
| 			type: 'string', | ||||
| 			nullable: false, optional: false, | ||||
| 			enum: ['all', 'following', 'follower', 'mutualFollow', 'list', 'never'], | ||||
| 		}, | ||||
| 	}, | ||||
| } as const; | ||||
|  | ||||
| export const packedUserLiteSchema = { | ||||
| 	type: 'object', | ||||
| 	properties: { | ||||
| @@ -398,6 +410,7 @@ export const packedUserDetailedNotMeOnlySchema = { | ||||
| 		notify: { | ||||
| 			type: 'string', | ||||
| 			nullable: false, optional: true, | ||||
| 			enum: ['normal', 'none'], | ||||
| 		}, | ||||
| 		withReplies: { | ||||
| 			type: 'boolean', | ||||
| @@ -553,6 +566,19 @@ export const packedMeDetailedOnlySchema = { | ||||
| 		notificationRecieveConfig: { | ||||
| 			type: 'object', | ||||
| 			nullable: false, optional: false, | ||||
| 			properties: { | ||||
| 				app: notificationRecieveConfig, | ||||
| 				quote: notificationRecieveConfig, | ||||
| 				reply: notificationRecieveConfig, | ||||
| 				follow: notificationRecieveConfig, | ||||
| 				renote: notificationRecieveConfig, | ||||
| 				mention: notificationRecieveConfig, | ||||
| 				reaction: notificationRecieveConfig, | ||||
| 				pollEnded: notificationRecieveConfig, | ||||
| 				achievementEarned: notificationRecieveConfig, | ||||
| 				receiveFollowRequest: notificationRecieveConfig, | ||||
| 				followRequestAccepted: notificationRecieveConfig, | ||||
| 			}, | ||||
| 		}, | ||||
| 		emailNotificationTypes: { | ||||
| 			type: 'array', | ||||
| @@ -697,6 +723,23 @@ export const packedMeDetailedOnlySchema = { | ||||
| 			items: { | ||||
| 				type: 'object', | ||||
| 				nullable: false, optional: false, | ||||
| 				properties: { | ||||
| 					id: { | ||||
| 						type: 'string', | ||||
| 						nullable: false, optional: false, | ||||
| 						format: 'id', | ||||
| 						example: 'xxxxxxxxxx', | ||||
| 					}, | ||||
| 					name: { | ||||
| 						type: 'string', | ||||
| 						nullable: false, optional: false, | ||||
| 					}, | ||||
| 					lastUsed: { | ||||
| 						type: 'string', | ||||
| 						nullable: false, optional: false, | ||||
| 						format: 'date-time', | ||||
| 					}, | ||||
| 				}, | ||||
| 			}, | ||||
| 		}, | ||||
| 		//#endregion | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 yupix
					yupix