@appsemble/utils
Version:
Utility functions used in Appsemble internally
43 lines • 1.39 kB
JavaScript
export const pathItems = {
parameters: [{ $ref: '#/components/parameters/appId' }],
get: {
tags: ['main', 'app', 'secret', 'scim'],
operationId: 'getAppScimSecret',
description: 'Get app SCIM secret configuration',
security: [{ studio: [] }],
responses: {
200: {
description: 'The app SCIM configuration',
content: {
'application/json': {
schema: { $ref: '#/components/schemas/ScimSecret' },
},
},
},
},
},
patch: {
tags: ['main', 'app', 'secret', 'scim'],
operationId: 'updateAppScimSecret',
description: 'Update app SCIM secret configuration',
requestBody: {
content: {
'application/json': {
schema: { $ref: '#/components/schemas/ScimSecret' },
},
},
},
security: [{ studio: [] }, { cli: ['apps:write'] }],
responses: {
200: {
description: 'The app SCIM configuration',
content: {
'application/json': {
schema: { $ref: '#/components/schemas/ScimSecret' },
},
},
},
},
},
};
//# sourceMappingURL=scim.js.map