Skip to main content

Release Notes

V.3.6.0 (Sept 18, 2024)

What's new

  • Updates some translations for the Remote Camera and What to Expect steps in the IDV component.

V.3.5.0 (Aug 26, 2024)

What's new

  • Remote logging is now enabled to help the Autohost team with debugging. We will store console logs and errors that come from the SDK, as well as log user events that can help with triaging bugs and issues.

Bug Fixes

  • We will now correctly report when a user has skipped IDV after two failed attempts.

V.3.4.1 (Aug 8, 2024)

Bug Fixes

  • The IDV component will now better handle a case where our ID scanner is not able to tell which side of their ID document is the front or the back. The user will be shown a preview of the images, asking them to confirm that we are submitting the correct side of their document as the front or the back.
  • If the websocket that handles communication between the desktop and the mobile sides of the Remote Camera UI for the IDV component disconnects, we will now automatically reconnect.

V.3.4.0 (Aug 1, 2024)

What's new

  • The IDV Component now has an optional What to Expect step, which presents the user with a high-level summary of the IDV process, including some FAQs. See the updated IDV doc page for details.

Bug Fixes

  • The IDV component will now correctly handle cases where our image processing web worker throws an error.

V.3.3.0 (July 18, 2024)

What's new

V.3.2.0 (July 11, 2024)

What's new

  • The root element of common UI components, like buttons, dropdowns, etc, now have data-ahtag attributes applied to them, with a unique instance name.

V.3.1.0 (June 24, 2024)

What's new

  • Adds the Sex Offenders Admin Component.
  • Adds the Selfie step, used when requiring a user to re-submit their selfie for IDV.
  • Adds additional hard-coded class names to the IDV component, to allow for easier styling customization.

v.3.0.0 (June 14, 2024)

What's new

  • BREAKING CHANGE: For Client Components, Reservation ID must now be passed to the init method. This allows us to pre-fetch the reservation object, making it available for multiple components. As a result, the init method is now asynchronous.
  • Adds the save method, for sending Verification data when building a custom UI implementation.
  • Adds the ability to get the reservation object once the SDK has been initialized.

Bug Fixes

  • IDV component will show an error to the user when we receive a failure from the save progress method

v2.0.4 (April 9, 2024)

Bug Fixes

  • ID Scanner will load the correct iframe URL for the environment

v2.0.3 (March 21, 2024)

What's new

  • BREAKING CHANGE: Admin Components now require the short-lived secure API token to be passed in the component options, not when you initialize the SDK.
const client = AutohostSDK.init({
reservationId: RESERVATION_ID,
sandbox: true,
});

client.mount("ReservationResults", {
reservationID: RESERVATION_ID,
apiToken: API_TOKEN,
});

Bug fixes

  • callbacks is now and optional property when mounting the IDV component

v2.0.2 (March 13, 2024)

Bug fixes

  • Remote camera loads the correct session.

v2.0.1 (March 8, 2024)

What's new

  • Added new embeddable Public UI components, enabling the integration of the Autohost Guest Portal or specific features into your application. This release includes the ID Verification product. For more details, visit this link.

v1.1.0 (December 11, 2023)

What's new

  • Introduced Fraud Telemetry components to enhance security and fraud detection capabilities.
  • Launched new embeddable Admin UI Components, facilitating the creation of custom dashboards for accessing reservation information in Autohost. This initial release features the Result Dashboard component from the Autohost Dashboard.
  • Implemented an authentication mechanism for rendering admin components, accessible via a specific API key, ensuring secure access and integration.