UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

35 lines 1.05 kB
export const pathItems = { parameters: [ { $ref: '#/components/parameters/appId' }, { $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