@appsemble/utils
Version:
Utility functions used in Appsemble internally
23 lines • 626 B
JavaScript
export const pathItems = {
parameters: [
{
name: 'token',
in: 'path',
description: 'The token of the invite.',
required: true,
schema: { type: 'string' },
},
],
get: {
tags: ['main', 'organization', 'invite'],
description: 'Fetch information about an invite.',
operationId: 'getOrganizationInvite',
responses: {
200: {
description: 'An invite response',
$ref: '#/components/responses/invite',
},
},
},
};
//# sourceMappingURL=token.js.map