@appsemble/utils
Version:
Utility functions used in Appsemble internally
32 lines • 944 B
JavaScript
export const pathItems = {
post: {
tags: ['main', 'auth', 'oauth2', 'authorization'],
operationId: 'registerOAuth2Authorization',
description: 'asd',
requestBody: {
required: true,
content: {
'application/json': {
schema: {
type: 'object',
required: ['authorizationUrl', 'code'],
properties: {
authorizationUrl: {
type: 'string',
},
code: {
type: 'string',
},
},
},
},
},
},
responses: {
200: {
description: '',
},
},
},
};
//# sourceMappingURL=register.js.map