Skip to content

Releases: getyoti/yoti-dotnet-sdk-sandbox

v1.6.1

03 Dec 15:38
fb3e191
Compare
Choose a tag to compare

Fixed

  • Error handling improvement when configuring application and session responses

v1.6.0

23 Mar 17:04
Compare
Choose a tag to compare

Added

  • Third Party Identity Check
    Added to SandboxCheckReportsBuilder with:
.WithThirdPartyIdentityCheck(
new SandboxThirdPartyIdentityCheckBuilder()
.WithRecommendation(
	new SandboxRecommendationBuilder()
	.WithValue("APPROVE")
	.Build())
.Build())

v1.5.0

03 Nov 12:27
44cbc8d
Compare
Choose a tag to compare

Added

  • Supplementary Document support

v1.4.0

21 Oct 10:46
4d1fe80
Compare
Choose a tag to compare

Added

  • Document ID Photo, added with:
    • SandboxDocumentTextDataExtractionTaskBuilder().WithDocumentIdPhoto(contentType, imageBytes)
  • SandboxIdDocumentComparisonCheck
  • SandboxDocumentFilter

Fixed

  • Document fields are excluded from JSON when not set

v1.3.0

07 Jul 13:54
Compare
Choose a tag to compare

Added

  • Ability to specify DocumentImages in TokenRequest with .WithDocumentImages(documentImages)

Deprecated

  • Optional property of Yoti attributes

v1.2.0

18 Jun 10:41
a81aa07
Compare
Choose a tag to compare

Added

  • Ability to specify Extra Data in YotiTokenRequest

Example:

DateTime expiryDate = DateTime.UtcNow.AddDays(1);

SandboxExtraData sandboxExtraData =
	new SandboxExtraDataBuilder()
	.WithDataEntry(
		new SandboxAttributeIssuanceDetailsBuilder()
		.WithDefinition("attribute.name")
		.WithExpiryDate(expiryDate)
		.WithIssuanceToken("some-issuance-token")
		.Build())
	.Build();

YotiTokenRequest tokenRequest = new YotiTokenRequestBuilder()
    .WithRememberMeId("some Remember Me ID")
    .WithExtraData(sandboxExtraData)
    .Build();

v1.1.0

11 Jun 08:32
Compare
Choose a tag to compare

Added

  • Doc Scan Sandbox support
  • Validation that anchors object passed to WithAnchors is not an empty collection (pass as null instead, if required)

See Examples/Yoti.Auth.Sandbox.Examples for examples.

v1.0.0

20 Mar 14:29
baa3bbd
Compare
Choose a tag to compare

Added

  • Sandbox Service:
    • SandboxClient.SetupSharingProfile(tokenRequest) to interact with the Sandbox service and create a token for the specified profile