Skip to content

Commit

Permalink
chore: OIDF schema updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderPostma committed Nov 14, 2024
1 parent 36b978c commit ed74633
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1093,6 +1093,10 @@ export const AuthorizationRequestPayloadVD12OID4VPD20SchemaObj = {
"type": "string",
"const": "x509_san_uri"
},
{
"type": "string",
"const": "entity_id"
},
{
"type": "string",
"const": "verifier_attestation"
Expand All @@ -1109,4 +1113,4 @@ export const AuthorizationRequestPayloadVD12OID4VPD20SchemaObj = {
]
}
}
};
};
2 changes: 1 addition & 1 deletion packages/siop-oid4vp/lib/types/SIOP.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export interface AuthorizationRequestPayloadVD12OID4VPD20
}

export type ClientIdSchemeOID4VPD18 = 'pre-registered' | 'redirect_uri' | 'entity_id' | 'did'
export type ClientIdSchemeOID4VPD20 = ClientIdSchemeOID4VPD18 | 'x509_san_dns' | 'x509_san_uri' | 'verifier_attestation'
export type ClientIdSchemeOID4VPD20 = ClientIdSchemeOID4VPD18 | 'x509_san_dns' | 'x509_san_uri' | 'entity_id' | 'verifier_attestation'
export type ClientIdScheme = ClientIdSchemeOID4VPD18 | ClientIdSchemeOID4VPD20

// https://openid.bitbucket.io/connect/openid-connect-self-issued-v2-1_0.html#section-10
Expand Down

0 comments on commit ed74633

Please sign in to comment.