-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #147 from mild-blue/regerate-stubs
fixed FE due to BE changes
- Loading branch information
Showing
30 changed files
with
415 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -208,6 +208,7 @@ module.exports = { | |
100, | ||
1000, | ||
401, | ||
404, | ||
2000 | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 0 additions & 17 deletions
17
frontend/src/app/generated/model/captchaVerificationDtoIn.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
export * from './answerDto'; | ||
export * from './bearerTokenDtoOut'; | ||
export * from './captchaVerificationDtoIn'; | ||
export * from './applicationInformationDto'; | ||
export * from './confirmationDtoIn'; | ||
export * from './insuranceCompanyDetailsDtoOut'; | ||
export * from './loginDtoIn'; | ||
export * from './patientDeletedDtoOut'; | ||
export * from './patientDtoOut'; | ||
export * from './patientRegisteredDtoOut'; | ||
export * from './patientRegistrationDtoIn'; | ||
export * from './patientUpdateDtoIn'; | ||
export * from './questionDtoOut'; | ||
export * from './serviceHealthDtoOut'; | ||
export * from './userLoginResponseDtoOut'; | ||
export * from './userRegisteredDtoOut'; | ||
export * from './userRegistrationDtoIn'; | ||
export * from './versionDtoOut'; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 0 additions & 17 deletions
17
frontend/src/app/generated/model/patientRegisteredDtoOut.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/** | ||
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: 0.1.0 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
import { AnswerDto } from './answerDto'; | ||
|
||
|
||
export interface PatientUpdateDtoIn { | ||
answers?: Array<AnswerDto> | null; | ||
email?: string | null; | ||
firstName?: string | null; | ||
insuranceCompany?: PatientUpdateDtoInInsuranceCompanyEnum | null; | ||
lastName?: string | null; | ||
personalNumber?: string | null; | ||
phoneNumber?: string | null; | ||
vaccinatedOn?: string | null; | ||
} | ||
|
||
export enum PatientUpdateDtoInInsuranceCompanyEnum { | ||
Vzp = 'VZP', | ||
Vozp = 'VOZP', | ||
Cpzp = 'CPZP', | ||
Ozp = 'OZP', | ||
Zps = 'ZPS', | ||
Zpmv = 'ZPMV', | ||
Rbp = 'RBP' | ||
}; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
frontend/src/app/generated/model/userLoginResponseDtoOut.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** | ||
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: 0.1.0 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
export interface UserLoginResponseDtoOut { | ||
role: UserLoginResponseDtoOutRoleEnum; | ||
token: string; | ||
} | ||
|
||
export enum UserLoginResponseDtoOutRoleEnum { | ||
Admin = 'ADMIN', | ||
Doctor = 'DOCTOR' | ||
}; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.