@appsemble/utils
Version:
Utility functions used in Appsemble internally
39 lines • 1.12 kB
JavaScript
export const pathItems = {
parameters: [
{ $ref: '#/components/parameters/appId' },
{ $ref: '#/components/parameters/appVariableId' },
],
put: {
tags: ['main', 'app', 'variable'],
operationId: 'updateAppVariable',
requestBody: {
content: {
'application/json': {
schema: { $ref: '#/components/schemas/AppVariable' },
},
},
},
security: [{ studio: [] }],
responses: {
200: {
description: 'The updated app variable.',
content: {
'application/json': {
schema: { $ref: '#/components/schemas/AppVariable' },
},
},
},
},
},
delete: {
tags: ['main', 'app', 'variable'],
operationId: 'deleteAppVariable',
security: [{ studio: [] }],
responses: {
204: {
description: 'The deleted app variable.',
},
},
},
};
//# sourceMappingURL=variableId.js.map