@appsemble/utils
Version:
Utility functions used in Appsemble internally
23 lines • 759 B
JavaScript
export const pathItems = {
parameters: [
{
name: 'clientId',
in: 'path',
description: 'The client id of the OAuth2 client credentials on which to perform an operation',
required: true,
schema: { type: 'string' },
},
],
delete: {
description: 'Revoke the client credentials',
tags: ['main', 'user', 'current-user', 'auth', 'oauth2', 'client-credentials'],
operationId: 'deleteCurrentUserOAuth2ClientCredentials',
responses: {
204: {
description: 'The client credentials have been revoked successfully.',
},
},
security: [{ studio: [] }],
},
};
//# sourceMappingURL=clientId.js.map