@appsemble/utils
Version:
Utility functions used in Appsemble internally
26 lines • 819 B
JavaScript
export const pathItems = {
parameters: [
{ name: 'context', in: 'query', schema: { type: 'string', enum: ['studio', 'app'] } },
],
get: {
tags: ['common', 'translation'],
description: 'Get a list of all languages with messages.',
operationId: 'getAppsembleLanguages',
responses: {
200: {
description: 'The list of supported languages',
content: {
'application/json': {
schema: {
type: 'array',
items: {
type: 'string',
},
},
},
},
},
},
},
};
//# sourceMappingURL=messages.js.map