Skip to content

Commit

Permalink
Swl Authenticated flows (#886)
Browse files Browse the repository at this point in the history
# Description

This PR includes the following proposed change(s):

- clicking on renew/update/replace and having profile in the correct
state then navigate to correct wizard.
  • Loading branch information
carolcarpenter authored Mar 21, 2024
1 parent 5cf0736 commit 971ed13
Show file tree
Hide file tree
Showing 29 changed files with 2,541 additions and 2,870 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
/* tslint:disable */
/* eslint-disable */
import { LicenceTermCode } from './licence-term-code';
import { WorkerLicenceTypeCode } from './worker-licence-type-code';
export interface LicenceResponse {
expiryDate?: string;
licenceAppId?: null | string;
licenceHolderFirstName?: null | string;
licenceHolderLastName?: null | string;
licenceId?: null | string;
licenceNumber?: null | string;
licenceTermCode?: LicenceTermCode;
nameOnCard?: null | string;
workerLicenceTypeCode?: WorkerLicenceTypeCode;
}
/* tslint:disable */
/* eslint-disable */
import { LicenceTermCode } from './licence-term-code';
import { WorkerLicenceTypeCode } from './worker-licence-type-code';
export interface LicenceResponse {
expiryDate?: string;
licenceAppId?: null | string;
licenceHolderName?: null | string;
licenceId?: null | string;
licenceNumber?: null | string;
licenceTermCode?: LicenceTermCode;
nameOnCard?: null | string;
workerLicenceTypeCode?: WorkerLicenceTypeCode;
}
Loading

0 comments on commit 971ed13

Please sign in to comment.