UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

30 lines 947 B
export const pathItems = { post: { tags: ['main', 'auth', 'email'], description: 'Request a reset token for resetting passwords.', operationId: 'requestUserPasswordReset', requestBody: { required: true, content: { 'application/json': { schema: { type: 'object', required: ['email'], properties: { email: { type: 'string', format: 'email', }, }, }, }, }, }, responses: { 204: { description: 'The request has been received and an email was sent if it exists.', }, }, }, }; //# sourceMappingURL=requestResetPassword.js.map