@appsemble/utils
Version:
Utility functions used in Appsemble internally
24 lines • 648 B
JavaScript
export const pathItems = {
parameters: [
{ $ref: '#/components/parameters/appId' },
{
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