uqudosdk-web 3.2.0 → 3.2.2
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.
- package/CHANGELOG.md +11 -0
- package/index.d.ts +5 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## 3.2.2
|
|
2
|
+
|
|
3
|
+
- Added new document type PHL_DL for Philippines driving license
|
|
4
|
+
- Added new document type BHR_DL for Bahrain driving license
|
|
5
|
+
- Added new document type QAT_DL for Qatar driving license
|
|
6
|
+
- Added new document type RSL_ID for Republic of Somaliland National ID Card
|
|
7
|
+
|
|
8
|
+
## 3.2.1
|
|
9
|
+
|
|
10
|
+
- Added new document type USA_DL (USA Driving license)
|
|
11
|
+
|
|
1
12
|
## 3.2.0
|
|
2
13
|
|
|
3
14
|
- Added new document type COD_VOTER_ID for Democratic Republic of the Congo driving license
|
package/index.d.ts
CHANGED
|
@@ -103,6 +103,11 @@ export enum DocumentType {
|
|
|
103
103
|
COD_VOTER_ID = "COD_VOTER_ID",
|
|
104
104
|
OMN_VL = "OMN_VL",
|
|
105
105
|
OMN_DL = "OMN_DL",
|
|
106
|
+
USA_DL = "USA_DL",
|
|
107
|
+
QAT_DL = "QAT_DL",
|
|
108
|
+
BHR_DL = "BHR_DL",
|
|
109
|
+
PHL_DL = "PHL_DL",
|
|
110
|
+
RSL_ID = "RSL_ID",
|
|
106
111
|
}
|
|
107
112
|
|
|
108
113
|
export enum BackgroundCheckType {
|