Merge pull request #32 from xihan123/main

fix: set_group_add_request reason 字段错误
This commit is contained in:
手瓜一十雪 2024-05-23 16:48:43 +08:00 committed by GitHub
commit 0d1fe99f53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@ const SchemaData = {
approve: { type: 'boolean' },
reason: { type: 'string' }
},
required: ['flag', 'approve', 'reson']
required: ['flag', 'approve', 'reason']
} as const satisfies JSONSchema;
type Payload = FromSchema<typeof SchemaData>;