@appsemble/utils
Version:
Utility functions used in Appsemble internally
22 lines • 731 B
JavaScript
export const pathItems = {
parameters: [{ $ref: '#/components/parameters/appId' }],
get: {
tags: ['common', 'app', 'asset'],
description: 'Get the number of assets in the app.',
operationId: 'countAppAssets',
responses: {
200: {
description: 'The number of assets in the app.',
content: {
'application/json': {
schema: {
type: 'number',
},
},
},
},
},
security: [{ studio: [] }, { app: ['resources:manage'] }, { cli: ['resources:read'] }, {}],
},
};
//# sourceMappingURL=count.js.map