-
Notifications
You must be signed in to change notification settings - Fork 7
Release/3.15.0 #450
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Release/3.15.0 #450
Changes from 9 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
eff418b
Sdk 2368 net add support for advanced identity profiles to share v 1 …
mehmet-yoti 7dc3b7d
SDK-2342: added support for enabling expanded document fields
mehmet-yoti 1b9aece
SDK-2341: added support to retrieve expanded doc fields and media, ad…
mehmet-yoti fd1e4a8
SDK-2342: updated test fw version for security and azure pipelines
mehmet-yoti 7e19be1
Merge pull request #449 from getyoti/SDK-2342-added-support-for-enabl…
mehmet-yoti c42f926
SDK:2341 updated expanded document caption
mehmet-yoti 26e35d0
SDK-2341 Removed CameraAndUpload on dbs example page
mehmet-yoti c93c007
SDK:2341 updated expanded object type
mehmet-yoti 523ae85
SDK:2341 updated expanded object type
mehmet-yoti ab8a78c
Sdk 2368: updated example code
mehmet-yoti d477b4a
Sdk 2368: updated example code
mehmet-yoti 92b349f
Sdk 2368: Generated Advanced Identity Profile Example Page
mehmet-yoti d5514a9
Sdk 2368: Updated typo errors, duplicate checks, uncommented commente…
mehmet-yoti 3a1ab09
Sdk 2368: Removed necessary WithManualCheckAlways usage in tests. Ren…
mehmet-yoti 6f58ea8
Sdk 2368: Updated test results to match update tests about fallback
mehmet-yoti 664b3db
Create new issue template workflow
nikhilPank 7a9c6d0
Delete .github/ISSUE_TEMPLATE.md
nikhilPank c19b562
Merge pull request #451 from getyoti/SDK-2425-update-issue-template
mehmet-yoti File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
24 changes: 24 additions & 0 deletions
24
src/Yoti.Auth/DocScan/Session/Create/MulitpleIdentyProfile.cs
saurabh-yoti marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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,24 @@ | ||
| using System; | ||
| using System.Collections.Generic; | ||
|
|
||
| namespace Yoti.Auth.DocScan.Session.Create | ||
| { | ||
| public class Scheme | ||
| { | ||
| public string label { get; set; } | ||
| public string type { get; set; } | ||
| public string objective { get; set; } | ||
| } | ||
|
|
||
| public class Profile | ||
| { | ||
| public string trust_framework { get; set; } | ||
| public List<Scheme> schemes { get; set; } | ||
| } | ||
|
|
||
| public class AdvancedIdentityProfile | ||
| { | ||
| public List<Profile> profiles { get; set; } | ||
| } | ||
| } | ||
|
|
2 changes: 1 addition & 1 deletion
2
src/Yoti.Auth/DocScan/Session/Create/NotificationConfigBuilder.cs
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
12 changes: 12 additions & 0 deletions
12
...ocScan/Session/Retrieve/AdvancedIdentityProfile/AdvancedIdentityProfilePreviewResponse.cs
This file contains hidden or 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,12 @@ | ||
| using Newtonsoft.Json; | ||
| using Newtonsoft.Json.Linq; | ||
| using System.Collections.Generic; | ||
|
|
||
| namespace Yoti.Auth.DocScan.Session.Retrieve.AdvancedIdentityProfilePreview | ||
| { | ||
| public class AdvancedIdentityProfilePreviewResponse | ||
| { | ||
| [JsonProperty(PropertyName = "media")] | ||
| public MediaResponse Media { get; private set; } | ||
| } | ||
| } |
19 changes: 19 additions & 0 deletions
19
....Auth/DocScan/Session/Retrieve/AdvancedIdentityProfile/AdvancedIdentityProfileResponse.cs
This file contains hidden or 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,19 @@ | ||
| using Newtonsoft.Json; | ||
| using Newtonsoft.Json.Linq; | ||
| using System.Collections.Generic; | ||
|
|
||
| namespace Yoti.Auth.DocScan.Session.Retrieve.AdvancedIdentityProfile | ||
| { | ||
| public class AdvancedIdentityProfileResponse | ||
| { | ||
| [JsonProperty(PropertyName = "subject_id")] | ||
| public string SubjectId { get; private set; } | ||
| [JsonProperty(PropertyName = "result")] | ||
| public string Result { get; private set; } | ||
| [JsonProperty(PropertyName = "failure_reason")] | ||
| public FailureReasonResponse FailureReason { get; private set; } | ||
| [JsonProperty(PropertyName = "identity_profile_report")] | ||
| public Dictionary<string, JToken> Report { get; private set; } | ||
|
|
||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.