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 = {
|
export type SamlSpMetadata = {
|
||||||
entityID: string;
|
entityId: string;
|
||||||
acsURL: {
|
acsUrl: {
|
||||||
binding: BindingType;
|
binding: BindingType;
|
||||||
url: string;
|
url: string;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export const samlSpMetadataGuard = z.object({
|
export const samlSpMetadataGuard = z.object({
|
||||||
entityID: z.string(),
|
entityId: z.string(),
|
||||||
acsURL: z.object({
|
acsUrl: z.object({
|
||||||
binding: z.nativeEnum(BindingType),
|
binding: z.nativeEnum(BindingType),
|
||||||
url: z.string(),
|
url: z.string(),
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in a new issue