gdc-common-utils-ts 2.7.6 → 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.
@@ -18,6 +18,30 @@ export declare const IdentityAuthRouteSegments: Readonly<{
18
18
  readonly Section: "identity";
19
19
  readonly Format: "auth";
20
20
  }>;
21
+ /** Resource discriminators used by identity/auth routes after DCR. */
22
+ export declare const IdentityAuthResourceTypes: Readonly<{
23
+ readonly Smart: "smart";
24
+ }>;
25
+ /**
26
+ * SMART post-DCR actions.
27
+ *
28
+ * `TokenResponse` is the canonical polling action. `LegacyBatchResponse` is
29
+ * accepted temporarily for installed clients; `_token` is intentionally not
30
+ * part of the contract.
31
+ */
32
+ export declare const SmartPostDcrActions: Readonly<{
33
+ readonly Token: "token";
34
+ readonly TokenResponse: "token-response";
35
+ readonly LegacyBatchResponse: "_batch-response";
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
+ }>;
21
45
  /** Wire-level request keys used by identity/auth operations. */
22
46
  export declare const IdentityAuthRequestFields: Readonly<{
23
47
  readonly SubjectToken: "subject_token";
@@ -18,6 +18,30 @@ export const IdentityAuthRouteSegments = Object.freeze({
18
18
  Section: 'identity',
19
19
  Format: 'auth',
20
20
  });
21
+ /** Resource discriminators used by identity/auth routes after DCR. */
22
+ export const IdentityAuthResourceTypes = Object.freeze({
23
+ Smart: 'smart',
24
+ });
25
+ /**
26
+ * SMART post-DCR actions.
27
+ *
28
+ * `TokenResponse` is the canonical polling action. `LegacyBatchResponse` is
29
+ * accepted temporarily for installed clients; `_token` is intentionally not
30
+ * part of the contract.
31
+ */
32
+ export const SmartPostDcrActions = Object.freeze({
33
+ Token: 'token',
34
+ TokenResponse: 'token-response',
35
+ LegacyBatchResponse: '_batch-response',
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
+ });
21
45
  /** Wire-level request keys used by identity/auth operations. */
22
46
  export const IdentityAuthRequestFields = Object.freeze({
23
47
  SubjectToken: 'subject_token',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gdc-common-utils-ts",
3
- "version": "2.7.6",
3
+ "version": "2.7.8",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },