UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

28 lines 847 B
export const pathItems = { parameters: [ { $ref: '#/components/parameters/appId' }, { $ref: '#/components/parameters/screenshotId' }, ], get: { tags: ['main', 'app', 'screenshot'], description: 'Get a screenshot of an app.', operationId: 'getAppScreenshot', responses: { 200: { description: 'The app screenshot', }, }, }, delete: { tags: ['main', 'app', 'screenshot'], description: 'Delete an existing screenshot.', operationId: 'deleteAppScreenshot', responses: { 200: { description: 'The screenshot has been successfully deleted.', }, }, security: [{ studio: [] }, { cli: ['apps:write'] }], }, }; //# sourceMappingURL=screenshotId.js.map