Skip to content

Commit

Permalink
[HolderApp] add ios and android specific fields to HolderApp, add sto…
Browse files Browse the repository at this point in the history
…re urls to PresentationRequestDto
  • Loading branch information
jacobleesinger committed Jun 28, 2021
1 parent f12787c commit 4ba59cb
Show file tree
Hide file tree
Showing 5 changed files with 597 additions and 6 deletions.
10 changes: 9 additions & 1 deletion build/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,14 @@ export interface HolderApp {
isAuthorized: boolean;
customerUuid: string;
deeplinkButtonImg: string;
isIos: boolean;
appleTeamId?: string;
appleBundleId?: string;
appStoreUrl?: string;
isAndroid: boolean;
androidPackageName?: string;
androidSHA256Fingerprints?: string;
playStoreUrl?: string;
}
/**
* Type to encapsulate generic response from SaaS API endpoints which return resources keyed by version.
Expand Down Expand Up @@ -264,7 +272,7 @@ export interface PresentationRequestDto {
presentationRequest: PresentationRequest;
verifier: VerifierInfo;
issuers: IssuerInfoMap;
holderApp?: Pick<HolderApp, 'name' | 'uriScheme' | 'deeplinkButtonImg'>;
holderApp?: Pick<HolderApp, 'name' | 'uriScheme' | 'deeplinkButtonImg' | 'appStoreUrl' | 'playStoreUrl'>;
deeplink?: string;
qrCode?: string;
}
Expand Down
2 changes: 1 addition & 1 deletion build/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4ba59cb

Please sign in to comment.