@appsemble/utils
Version:
Utility functions used in Appsemble internally
32 lines • 1.01 kB
JavaScript
export const pathItems = {
parameters: [{ $ref: '#/components/parameters/organizationId' }],
post: {
tags: ['organization'],
description: 'Request to resend an invitation.',
operationId: 'resendOrganizationInvite',
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