mocksaml/types/index.ts

22 lines
376 B
TypeScript
Raw Normal View History

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