@appsemble/utils
Version:
Utility functions used in Appsemble internally
34 lines • 1.09 kB
JavaScript
export const pathItems = {
parameters: [{ $ref: '#/components/parameters/appId' }],
post: {
tags: ['app', 'auth', 'email'],
description: 'Reset a password using a password reset token.',
operationId: 'resetAppMemberPassword',
requestBody: {
required: true,
content: {
'application/json': {
schema: {
type: 'object',
required: ['password', 'token'],
properties: {
password: {
type: 'string',
minLength: 8,
},
token: {
type: 'string',
},
},
},
},
},
},
responses: {
204: {
description: 'The password has been reset.',
},
},
},
};
//# sourceMappingURL=resetPassword.js.map