UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

39 lines 1.17 kB
export const pathItems = { parameters: [ { $ref: '#/components/parameters/appId' }, { $ref: '#/components/parameters/serviceSecretId' }, ], put: { tags: ['main', 'app', 'secret', 'service'], operationId: 'updateAppServiceSecret', requestBody: { content: { 'application/json': { schema: { $ref: '#/components/schemas/AppServiceSecret' }, }, }, }, security: [{ studio: [] }], responses: { 200: { description: 'The updated app service secret.', content: { 'application/json': { schema: { $ref: '#/components/schemas/AppServiceSecret' }, }, }, }, }, }, delete: { tags: ['main', 'app', 'secret', 'service'], operationId: 'deleteAppServiceSecret', security: [{ studio: [] }], responses: { 204: { description: 'The deleted app service secret.', }, }, }, }; //# sourceMappingURL=secretId.js.map