@appsemble/utils
Version:
Utility functions used in Appsemble internally
27 lines • 851 B
JavaScript
export const pathItems = {
parameters: [
{ $ref: '#/components/parameters/organizationId' },
{ $ref: '#/components/parameters/blockId' },
],
get: {
tags: ['main', 'block', 'version'],
description: 'Retrieve a string list of all versions of a block.',
operationId: 'getBlockVersionsList',
responses: {
200: {
description: 'String list of all versions of a block.',
content: {
'application/json': {
schema: {
type: 'array',
items: {
type: 'string',
},
},
},
},
},
},
},
};
//# sourceMappingURL=list.js.map