@medplum/fhirtypes 5.1.29 → 5.1.31
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.
- package/dist/IdentityProvider.d.ts +20 -5
- package/dist/User.d.ts +2 -1
- package/package.json +1 -1
|
@@ -10,15 +10,30 @@
|
|
|
10
10
|
*/
|
|
11
11
|
export interface IdentityProvider {
|
|
12
12
|
|
|
13
|
+
/**
|
|
14
|
+
* Issuer URL for the external Identity Provider.
|
|
15
|
+
*/
|
|
16
|
+
issuer?: string;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Expected audience for tokens issued by the external Identity Provider.
|
|
20
|
+
*/
|
|
21
|
+
audience?: string;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Remote URL for the external Identity Provider JWKS endpoint.
|
|
25
|
+
*/
|
|
26
|
+
jwksUrl?: string;
|
|
27
|
+
|
|
13
28
|
/**
|
|
14
29
|
* Remote URL for the external Identity Provider authorize endpoint.
|
|
15
30
|
*/
|
|
16
|
-
authorizeUrl
|
|
31
|
+
authorizeUrl?: string;
|
|
17
32
|
|
|
18
33
|
/**
|
|
19
34
|
* Remote URL for the external Identity Provider token endpoint.
|
|
20
35
|
*/
|
|
21
|
-
tokenUrl
|
|
36
|
+
tokenUrl?: string;
|
|
22
37
|
|
|
23
38
|
/**
|
|
24
39
|
* Client Authentication method used by Clients to authenticate to the
|
|
@@ -30,7 +45,7 @@ export interface IdentityProvider {
|
|
|
30
45
|
/**
|
|
31
46
|
* Remote URL for the external Identity Provider userinfo endpoint.
|
|
32
47
|
*/
|
|
33
|
-
userInfoUrl
|
|
48
|
+
userInfoUrl?: string;
|
|
34
49
|
|
|
35
50
|
/**
|
|
36
51
|
* Optional userinfo mode. Defaults to standard OIDC userinfo semantics.
|
|
@@ -46,12 +61,12 @@ export interface IdentityProvider {
|
|
|
46
61
|
/**
|
|
47
62
|
* External Identity Provider client ID.
|
|
48
63
|
*/
|
|
49
|
-
clientId
|
|
64
|
+
clientId?: string;
|
|
50
65
|
|
|
51
66
|
/**
|
|
52
67
|
* External Identity Provider client secret.
|
|
53
68
|
*/
|
|
54
|
-
clientSecret
|
|
69
|
+
clientSecret?: string;
|
|
55
70
|
|
|
56
71
|
/**
|
|
57
72
|
* Optional flag to use PKCE in the token request.
|
package/dist/User.d.ts
CHANGED