UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

39 lines 1.05 kB
export const pathItems = { parameters: [ { $ref: '#/components/parameters/appId' }, { $ref: '#/components/parameters/appSamlSecretId' }, ], put: { tags: ['main', 'app', 'secret', 'saml'], operationId: 'updateAppSamlSecret', requestBody: { content: { 'application/json': { schema: {}, }, }, }, security: [{ studio: [] }], responses: { 200: { description: 'The updated SAML secret.', content: { 'application/json': { schema: {}, }, }, }, }, }, delete: { tags: ['main', 'app', 'secret', 'saml'], operationId: 'deleteAppSamlSecret', security: [{ studio: [] }], responses: { 204: { description: 'The deleted SAML secret.', }, }, }, }; //# sourceMappingURL=secretId.js.map