mocksaml/types/index.ts

24 lines
421 B
TypeScript
Raw Normal View History

2022-01-13 17:07:44 +00:00
export type ServiceProvider = {
sp_acs_url: string;
sp_entity_id: string;
};
export type IdentityProvider = {
sso_url: string;
entity_id: string;
};
export type App = {
id: string;
name: string;
description?: string | null;
certificate: string;
} & ServiceProvider;
// export type IdPMetadata = {
// sso_url: string;
// entity_id: string;
// certificate: string;
// fingerprint?: string;
// };