@sphereon/did-auth-siop
Version:
Self Issued OpenID V2 (SIOPv2) and OpenID 4 Verifiable Presentations (OID4VP)
14 lines • 662 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PropertyTarget = void 0;
/**
* Determines where a property will end up. Methods that support this argument are optional. If you do not provide any value it will default to all targets.
*/
var PropertyTarget;
(function (PropertyTarget) {
// The property will end up in the oAuth2 authorization request
PropertyTarget["AUTHORIZATION_REQUEST"] = "authorization-request";
// OpenID Request Object (the JWT)
PropertyTarget["REQUEST_OBJECT"] = "request-object";
})(PropertyTarget || (exports.PropertyTarget = PropertyTarget = {}));
//# sourceMappingURL=types.js.map