@appsemble/utils
Version:
Utility functions used in Appsemble internally
31 lines • 1.01 kB
JavaScript
export const pathItems = {
parameters: [{ $ref: '#/components/parameters/appId' }],
post: {
tags: ['app', 'auth', 'email'],
description: 'Request a reset token for resetting passwords.',
operationId: 'requestAppMemberPasswordReset',
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