skyflow-js 2.3.0 → 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "skyflow-js",
3
3
  "preferGlobal": true,
4
4
  "analyze": false,
5
- "version": "2.3.0",
5
+ "version": "2.3.1",
6
6
  "author": "Skyflow",
7
7
  "description": "Skyflow JavaScript SDK",
8
8
  "homepage": "https://github.com/skyflowapi/skyflow-js",
@@ -10,6 +10,7 @@ export interface ThreeDSBrowserDetails {
10
10
  challenge_window_size?: string;
11
11
  browser_java_enabled?: boolean;
12
12
  browser_javascript_enabled?: boolean;
13
+ accept_language: string[];
13
14
  }
14
15
  declare class ThreeDS {
15
16
  #private;
@@ -719,5 +719,17 @@ declare const SKYFLOW_ERROR_CODE: {
719
719
  code: number;
720
720
  description: string;
721
721
  };
722
+ NO_ELEMENTS_IN_COLLECT: {
723
+ code: number;
724
+ description: string;
725
+ };
726
+ NO_ELEMENTS_IN_COMPOSABLE: {
727
+ code: number;
728
+ description: string;
729
+ };
730
+ NO_ELEMENTS_IN_REVEAL: {
731
+ code: number;
732
+ description: string;
733
+ };
722
734
  };
723
735
  export default SKYFLOW_ERROR_CODE;
@@ -74,6 +74,9 @@ declare const logs: {
74
74
  VALIDATE_GET_BY_ID_INPUT: string;
75
75
  };
76
76
  errorLogs: {
77
+ NO_ELEMENTS_IN_COLLECT: string;
78
+ NO_ELEMENTS_IN_COMPOSABLE: string;
79
+ NO_ELEMENTS_IN_REVEAL: string;
77
80
  INVALID_FILE_NAMES: string;
78
81
  INVALID_FILE_NAME: string;
79
82
  CLIENT_CONNECTION: string;