@appsemble/utils
Version:
Utility functions used in Appsemble internally
24 lines • 753 B
JavaScript
export const pathItems = {
get: {
tags: ['main', 'app-collection'],
description: 'Get a list of app collections',
operationId: 'queryAppCollections',
responses: {
200: {
description: 'A list of app collections',
content: {
'application/json': {
schema: {
type: 'array',
items: {
$ref: '#/components/schemas/AppCollection',
},
},
},
},
},
},
security: [{ studio: [] }, {}],
},
};
//# sourceMappingURL=appCollections.js.map