@appsemble/utils
Version:
Utility functions used in Appsemble internally
29 lines • 1.01 kB
JavaScript
export const pathItems = {
parameters: [{ $ref: '#/components/parameters/appId' }],
get: {
tags: ['common', 'app', 'demo-group'],
description: 'Get a list of app groups.',
operationId: 'getAppDemoGroups',
responses: {
200: {
description: 'The list of all groups.',
content: {
'application/json': {
schema: {
type: 'array',
items: {
description: 'An app demo group',
type: 'object',
properties: {
id: { type: 'number' },
name: { type: 'string' },
},
},
},
},
},
},
},
},
};
//# sourceMappingURL=demo-groups.js.map