@medplum/core 0.9.32 → 0.9.33
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/cjs/client.d.ts +4 -0
- package/dist/cjs/index.js +679 -678
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/index.min.js +1 -1
- package/dist/cjs/index.min.js.map +1 -1
- package/dist/cjs/types.d.ts +2 -1
- package/dist/cjs/utils.d.ts +1 -1
- package/dist/esm/client.d.ts +4 -0
- package/dist/esm/client.js +8 -4
- package/dist/esm/client.js.map +1 -1
- package/dist/esm/fhirpath/atoms.js +2 -1
- package/dist/esm/fhirpath/atoms.js.map +1 -1
- package/dist/esm/fhirpath/functions.js +3 -1
- package/dist/esm/fhirpath/functions.js.map +1 -1
- package/dist/esm/fhirpath/utils.js +2 -3
- package/dist/esm/fhirpath/utils.js.map +1 -1
- package/dist/esm/format.js +2 -2
- package/dist/esm/format.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.min.js +1 -1
- package/dist/esm/index.min.js.map +1 -1
- package/dist/esm/types.d.ts +2 -1
- package/dist/esm/types.js +24 -27
- package/dist/esm/types.js.map +1 -1
- package/dist/esm/utils.d.ts +1 -1
- package/dist/esm/utils.js +1 -1
- package/dist/esm/utils.js.map +1 -1
- package/package.json +3 -3
- package/stats.html +4034 -0
package/dist/cjs/client.d.ts
CHANGED
|
@@ -143,6 +143,8 @@ export interface LoginRequest {
|
|
|
143
143
|
readonly clientId?: string;
|
|
144
144
|
readonly scope?: string;
|
|
145
145
|
readonly nonce?: string;
|
|
146
|
+
readonly codeChallenge?: string;
|
|
147
|
+
readonly codeChallengeMethod?: string;
|
|
146
148
|
}
|
|
147
149
|
export interface NewUserRequest {
|
|
148
150
|
readonly firstName: string;
|
|
@@ -173,6 +175,8 @@ export interface GoogleLoginRequest {
|
|
|
173
175
|
readonly clientId?: string;
|
|
174
176
|
readonly scope?: string;
|
|
175
177
|
readonly nonce?: string;
|
|
178
|
+
readonly codeChallenge?: string;
|
|
179
|
+
readonly codeChallengeMethod?: string;
|
|
176
180
|
readonly createUser?: boolean;
|
|
177
181
|
}
|
|
178
182
|
export interface LoginAuthenticationResponse {
|