Skip to content

Commit

Permalink
Release 6.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
WorldlineConnect committed Jun 25, 2024
1 parent 4dfd9c2 commit bca1a5e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "connect-sdk-client-js",
"version": "6.0.0",
"version": "6.0.1",
"description": "The JavaScript based client SDK that can be used for client to server communication between you and the Worldline Global Collect platform",
"source": "./src/index.ts",
"module": "./dist/connect-sdk-client-js.js",
Expand Down
1 change: 1 addition & 0 deletions src/types/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export type Metadata = {

export type BrowserData = {
readonly javaScriptEnabled: true;
readonly javaEnabled: boolean;
readonly colorDepth: number;
readonly screenHeight: number;
readonly screenWidth: number;
Expand Down
1 change: 1 addition & 0 deletions src/utils/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const client = {
locale: navigator.language,
browserData: {
javaScriptEnabled: true,
javaEnabled: navigator.javaEnabled(),
colorDepth: screen.colorDepth,
screenHeight: screen.height,
screenWidth: screen.width,
Expand Down

0 comments on commit bca1a5e

Please sign in to comment.