UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

32 lines 987 B
export const pathItems = { parameters: [{ $ref: '#/components/parameters/groupId' }], post: { tags: ['group'], description: 'Request to resend an invitation.', operationId: 'resendGroupInvite', 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