@medplum/core 0.9.29 → 0.9.30

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.
@@ -145,6 +145,8 @@ export interface LoginRequest {
145
145
  readonly nonce?: string;
146
146
  }
147
147
  export interface NewUserRequest {
148
+ readonly firstName: string;
149
+ readonly lastName: string;
148
150
  readonly email: string;
149
151
  readonly password: string;
150
152
  readonly recaptchaToken: string;
@@ -153,13 +155,9 @@ export interface NewUserRequest {
153
155
  }
154
156
  export interface NewProjectRequest {
155
157
  readonly projectName: string;
156
- readonly firstName: string;
157
- readonly lastName: string;
158
158
  }
159
159
  export interface NewPatientRequest {
160
160
  readonly projectId: string;
161
- readonly firstName: string;
162
- readonly lastName: string;
163
161
  }
164
162
  export interface GoogleCredentialResponse {
165
163
  readonly clientId: string;
@@ -168,6 +166,7 @@ export interface GoogleCredentialResponse {
168
166
  export interface GoogleLoginRequest {
169
167
  readonly googleClientId: string;
170
168
  readonly googleCredential: string;
169
+ readonly projectId?: string;
171
170
  readonly clientId?: string;
172
171
  readonly scope?: string;
173
172
  readonly nonce?: string;