gdc-common-utils-ts 2.7.7 → 2.7.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -34,6 +34,14 @@ export declare const SmartPostDcrActions: Readonly<{
|
|
|
34
34
|
readonly TokenResponse: "token-response";
|
|
35
35
|
readonly LegacyBatchResponse: "_batch-response";
|
|
36
36
|
}>;
|
|
37
|
+
/** Client authentication methods accepted by the SMART token endpoint. */
|
|
38
|
+
export declare const SmartClientAssertionTypes: Readonly<{
|
|
39
|
+
readonly PrivateKeyJwt: "private_key_jwt";
|
|
40
|
+
}>;
|
|
41
|
+
/** OIDC4VP ACR values used by SMART authorization profiles. */
|
|
42
|
+
export declare const SmartOpenIdAcrValues: Readonly<{
|
|
43
|
+
readonly Individual: "urn:antifraud:acr:openid4vp:individual";
|
|
44
|
+
}>;
|
|
37
45
|
/** Wire-level request keys used by identity/auth operations. */
|
|
38
46
|
export declare const IdentityAuthRequestFields: Readonly<{
|
|
39
47
|
readonly SubjectToken: "subject_token";
|
|
@@ -34,6 +34,14 @@ export const SmartPostDcrActions = Object.freeze({
|
|
|
34
34
|
TokenResponse: 'token-response',
|
|
35
35
|
LegacyBatchResponse: '_batch-response',
|
|
36
36
|
});
|
|
37
|
+
/** Client authentication methods accepted by the SMART token endpoint. */
|
|
38
|
+
export const SmartClientAssertionTypes = Object.freeze({
|
|
39
|
+
PrivateKeyJwt: 'private_key_jwt',
|
|
40
|
+
});
|
|
41
|
+
/** OIDC4VP ACR values used by SMART authorization profiles. */
|
|
42
|
+
export const SmartOpenIdAcrValues = Object.freeze({
|
|
43
|
+
Individual: 'urn:antifraud:acr:openid4vp:individual',
|
|
44
|
+
});
|
|
37
45
|
/** Wire-level request keys used by identity/auth operations. */
|
|
38
46
|
export const IdentityAuthRequestFields = Object.freeze({
|
|
39
47
|
SubjectToken: 'subject_token',
|