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