UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

32 lines 981 B
export const pathItems = { parameters: [{ $ref: '#/components/parameters/appId' }], post: { tags: ['app'], description: 'Request to resend an invitation.', operationId: 'resendAppInvite', requestBody: { description: 'The email of the person to resend the invitation to.', required: true, content: { 'application/json': { schema: { type: 'object', required: ['email'], properties: { email: { type: 'string', }, }, }, }, }, }, responses: { 204: { description: 'The invite has been sent.', }, }, security: [{ studio: [] }], }, }; //# sourceMappingURL=resend.js.map