Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1import { type OrgSettingsPg } from '../orgSettingsService/index.js';
2import { type UserManagementPg } from '../userManagementService/index.js';
3
4export type SSOServicePg = {
5 users: Pick<UserManagementPg['public.users'], 'email' | 'org_id'>;
6 orgs: { id: string };
7 org_settings: Pick<
8 OrgSettingsPg['public.org_settings'],
9 'saml_enabled' | 'org_id'
10 >;
11};