-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description This PR includes the following proposed change(s): - renamed 'HasPreviousNames' to 'HasPreviousName' to match swl/permit - CRC updates
- Loading branch information
1 parent
a626395
commit 42c88ae
Showing
24 changed files
with
569 additions
and
368 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
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
29 changes: 29 additions & 0 deletions
29
...pd.Presentation.Licensing/ClientApp/src/app/api/fn/applicant-profile/api-applicant-get.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,29 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
import { HttpClient, HttpContext, HttpResponse } from '@angular/common/http'; | ||
import { Observable } from 'rxjs'; | ||
import { filter, map } from 'rxjs/operators'; | ||
import { StrictHttpResponse } from '../../strict-http-response'; | ||
import { RequestBuilder } from '../../request-builder'; | ||
|
||
import { ApplicantProfileResponse } from '../../models/applicant-profile-response'; | ||
|
||
export interface ApiApplicantGet$Params { | ||
} | ||
|
||
export function apiApplicantGet(http: HttpClient, rootUrl: string, params?: ApiApplicantGet$Params, context?: HttpContext): Observable<StrictHttpResponse<ApplicantProfileResponse>> { | ||
const rb = new RequestBuilder(rootUrl, apiApplicantGet.PATH, 'get'); | ||
if (params) { | ||
} | ||
|
||
return http.request( | ||
rb.build({ responseType: 'json', accept: 'application/json', context }) | ||
).pipe( | ||
filter((r: any): r is HttpResponse<any> => r instanceof HttpResponse), | ||
map((r: HttpResponse<any>) => { | ||
return r as StrictHttpResponse<ApplicantProfileResponse>; | ||
}) | ||
); | ||
} | ||
|
||
apiApplicantGet.PATH = '/api/applicant'; |
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
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.