@appsemble/utils
Version:
Utility functions used in Appsemble internally
21 lines • 708 B
JavaScript
export const AppAccount = {
type: 'object',
description: 'An object representing a member of an app',
additionalProperties: false,
properties: {
app: {
$ref: '#/components/schemas/App',
description: 'The app this account is for.',
},
appMemberInfo: {
$ref: '#/components/schemas/AppMemberInfo',
description: 'The app member info.',
},
sso: {
type: 'array',
description: 'The single sign on configurations which link the user to an external account.',
items: { $ref: '#/components/schemas/SSOConfiguration' },
},
},
};
//# sourceMappingURL=AppAccount.js.map