Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ import useI18n from '../hooks/use-i18n';
* @prop {number} sharpness Detected image sharpness.
* @prop {number} dpi Detected image resolution.
*
* @see https://github.com/Acuant/JavascriptWebSDKV11/tree/11.4.1/SimpleHTMLApp#acuantcameraui
* @see https://github.com/Acuant/JavascriptWebSDKV11/tree/11.4.3/SimpleHTMLApp#acuantcamera
*/

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const AcuantContext = createContext({
* @param {AcuantContextProviderProps} props Props object.
*/
function AcuantContextProvider({
sdkSrc = '/acuant/11.4.1/AcuantJavascriptWebSdk.min.js',
sdkSrc = '/acuant/11.4.3/AcuantJavascriptWebSdk.min.js',
credentials = null,
endpoint = null,
children,
Expand Down
2 changes: 1 addition & 1 deletion config/application.yml.default
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ acuant_attempt_window_in_minutes: '360'
acuant_facial_match_license_key: ''
# These are dummy creds used to initialize the acuant SDK
acuant_sdk_initialization_creds: 'aWRzY2FuZ293ZWJAYWN1YW50Y29ycC5jb206NVZLcm81Z0JEc1hrdFh2NA=='
acuant_sdk_initialization_endpoint: 'https://services.assureid.net'
acuant_sdk_initialization_endpoint: 'https://us.acas.acuant.net'
acuant_timeout: '45'
add_email_link_valid_for_hours: '24'
allow_piv_cac_required: 'true'
Expand Down
Binary file not shown.
1 change: 0 additions & 1 deletion public/acuant/11.4.1/AcuantImageProcessingWorker.min.js

This file was deleted.

Binary file not shown.
1 change: 0 additions & 1 deletion public/acuant/11.4.1/AcuantJavascriptWebSdk.min.js

This file was deleted.

Binary file not shown.
1 change: 1 addition & 0 deletions public/acuant/11.4.3/AcuantImageProcessingWorker.min.js

Large diffs are not rendered by default.

Binary file not shown.
1 change: 1 addition & 0 deletions public/acuant/11.4.3/AcuantJavascriptWebSdk.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/verify/capture-doc
2 changes: 1 addition & 1 deletion public/verify/capture_doc
2 changes: 1 addition & 1 deletion public/verify/doc_auth
4 changes: 2 additions & 2 deletions spec/requests/acuant_sdk_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
expect(response.status).to eq(200)
expect(response.headers['Content-Type']).to eq('application/javascript')
expect(response.body).to eq(
File.read('public/acuant/11.4.1/AcuantImageProcessingWorker.min.js'),
File.read('public/acuant/11.4.3/AcuantImageProcessingWorker.min.js'),
)
end

Expand All @@ -38,7 +38,7 @@
expect(response.status).to eq(200)
expect(response.headers['Content-Type']).to eq('application/wasm')
expect(response.body.length).to eq(
File.size('public/acuant/11.4.1/AcuantImageProcessingWorker.wasm'),
File.size('public/acuant/11.4.3/AcuantImageProcessingWorker.wasm'),
)
end

Expand Down