UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

32 lines 984 B
export const pathItems = { parameters: [{ $ref: '#/components/parameters/appId' }], post: { tags: ['app', 'member', 'email', 'auth'], operationId: 'requestAppMemberEmailUpdate', description: 'Update the email address of an app member', responses: { 200: { description: 'The updated app member', }, }, requestBody: { description: '', required: true, content: { 'application/json': { schema: { type: 'object', properties: { email: { type: 'string', format: 'email', }, }, }, }, }, }, security: [{ app: ['email'] }], }, }; //# sourceMappingURL=newEmail.js.map