mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
23 lines
519 B
TypeScript
23 lines
519 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
|
|
|
|
export const passwordSchema = {
|
|
$id: '#/components/schemas/passwordSchema',
|
|
type: 'object',
|
|
additionalProperties: false,
|
|
required: ['password'],
|
|
properties: {
|
|
password: {
|
|
type: 'string',
|
|
},
|
|
oldPassword: {
|
|
type: 'string',
|
|
},
|
|
confirmPassword: {
|
|
type: 'string',
|
|
},
|
|
},
|
|
components: {},
|
|
} as const;
|
|
|
|
export type PasswordSchema = FromSchema<typeof passwordSchema>;
|