@appsemble/utils
Version:
Utility functions used in Appsemble internally
34 lines • 1.06 kB
JavaScript
export const pathItems = {
delete: {
tags: ['main', 'app-collection', 'app'],
description: 'Remove an app from an app collection',
operationId: 'removeAppFromAppCollection',
parameters: [
{
name: 'appCollectionId',
in: 'path',
description: 'The id of the app collection',
required: true,
schema: {
$ref: '#/components/schemas/AppCollection/properties/id',
},
},
{
name: 'appId',
in: 'path',
description: 'The id of the app',
required: true,
schema: {
$ref: '#/components/schemas/AppCollection/properties/id',
},
},
],
responses: {
204: {
description: 'The app was removed from the app collection',
},
},
security: [{ studio: [] }],
},
};
//# sourceMappingURL=appId.js.map