mirror of
https://github.com/logto-io/logto.git
synced 2024-12-30 20:33:54 -05:00
chore: update type field name
This commit is contained in:
parent
4fc4b0b6c5
commit
ce288354c7
1 changed files with 4 additions and 4 deletions
|
@ -13,16 +13,16 @@ export enum BindingType {
|
|||
}
|
||||
|
||||
export type SamlSpMetadata = {
|
||||
entityID: string;
|
||||
acsURL: {
|
||||
entityId: string;
|
||||
acsUrl: {
|
||||
binding: BindingType;
|
||||
url: string;
|
||||
};
|
||||
};
|
||||
|
||||
export const samlSpMetadataGuard = z.object({
|
||||
entityID: z.string(),
|
||||
acsURL: z.object({
|
||||
entityId: z.string(),
|
||||
acsUrl: z.object({
|
||||
binding: z.nativeEnum(BindingType),
|
||||
url: z.string(),
|
||||
}),
|
||||
|
|
Loading…
Reference in a new issue