rebilly-js-sdk 56.37.0 → 56.38.0
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 +2 -2
- package/dist/rebilly-js-sdk.d.ts +24 -36
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [56.
|
|
1
|
+
## [56.38.0](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v56.37.0...rebilly-js-sdk-v56.38.0) (2024-06-25)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#
|
|
6
|
+
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#6156](https://github.com/Rebilly/rebilly/issues/6156)) ([2942a24](https://github.com/Rebilly/rebilly/commit/2942a2465b784cc222b9468d7cb983ad8e5502e1))
|
package/dist/rebilly-js-sdk.d.ts
CHANGED
|
@@ -9158,6 +9158,8 @@ export interface coreComponents {
|
|
|
9158
9158
|
*/
|
|
9159
9159
|
faceLivenessRequired?: boolean;
|
|
9160
9160
|
};
|
|
9161
|
+
/** Document verification level. */
|
|
9162
|
+
KycDocumentMatchLevels: 1 | 2 | 3;
|
|
9161
9163
|
/** KYC request information. */
|
|
9162
9164
|
KycRequest: {
|
|
9163
9165
|
/** ID of the KYC request. */
|
|
@@ -9193,8 +9195,7 @@ export interface coreComponents {
|
|
|
9193
9195
|
redirectUrl?: string | null;
|
|
9194
9196
|
/** Reason for uploading. */
|
|
9195
9197
|
reason?: string | null;
|
|
9196
|
-
|
|
9197
|
-
matchLevel?: 1 | 2 | 3;
|
|
9198
|
+
matchLevel?: coreComponents["schemas"]["KycDocumentMatchLevels"];
|
|
9198
9199
|
/**
|
|
9199
9200
|
* Number of times the KYC request data has been modified.
|
|
9200
9201
|
*
|
|
@@ -9400,8 +9401,7 @@ export interface coreComponents {
|
|
|
9400
9401
|
tags?: coreComponents["schemas"]["Tag"][];
|
|
9401
9402
|
/** Reason for uploading. */
|
|
9402
9403
|
reason?: string | null;
|
|
9403
|
-
|
|
9404
|
-
matchLevel?: number;
|
|
9404
|
+
matchLevel?: coreComponents["schemas"]["KycDocumentMatchLevels"];
|
|
9405
9405
|
/**
|
|
9406
9406
|
* Number of times the KYC document data has been modified.
|
|
9407
9407
|
*
|
|
@@ -9565,8 +9565,7 @@ export interface coreComponents {
|
|
|
9565
9565
|
tags?: coreComponents["schemas"]["Tag"][];
|
|
9566
9566
|
/** Reason for uploading. */
|
|
9567
9567
|
reason?: string | null;
|
|
9568
|
-
|
|
9569
|
-
matchLevel?: number;
|
|
9568
|
+
matchLevel?: coreComponents["schemas"]["KycDocumentMatchLevels"];
|
|
9570
9569
|
/**
|
|
9571
9570
|
* Number of times the KYC document data has been modified.
|
|
9572
9571
|
*
|
|
@@ -9654,8 +9653,7 @@ export interface coreComponents {
|
|
|
9654
9653
|
tags?: coreComponents["schemas"]["Tag"][];
|
|
9655
9654
|
/** Reason for uploading. */
|
|
9656
9655
|
reason?: string | null;
|
|
9657
|
-
|
|
9658
|
-
matchLevel?: number;
|
|
9656
|
+
matchLevel?: coreComponents["schemas"]["KycDocumentMatchLevels"];
|
|
9659
9657
|
/** Settings used to score the document. */
|
|
9660
9658
|
settings?: { [key: string]: any } | null;
|
|
9661
9659
|
/**
|
|
@@ -9745,8 +9743,7 @@ export interface coreComponents {
|
|
|
9745
9743
|
tags?: coreComponents["schemas"]["Tag"][];
|
|
9746
9744
|
/** Reason for uploading. */
|
|
9747
9745
|
reason?: string | null;
|
|
9748
|
-
|
|
9749
|
-
matchLevel?: number;
|
|
9746
|
+
matchLevel?: coreComponents["schemas"]["KycDocumentMatchLevels"];
|
|
9750
9747
|
/** Settings used to score the document. */
|
|
9751
9748
|
settings?: { [key: string]: any } | null;
|
|
9752
9749
|
/**
|
|
@@ -9882,8 +9879,7 @@ export interface coreComponents {
|
|
|
9882
9879
|
tags?: coreComponents["schemas"]["Tag"][];
|
|
9883
9880
|
/** Reason for uploading. */
|
|
9884
9881
|
reason?: string | null;
|
|
9885
|
-
|
|
9886
|
-
matchLevel?: number;
|
|
9882
|
+
matchLevel?: coreComponents["schemas"]["KycDocumentMatchLevels"];
|
|
9887
9883
|
/** Settings used to score the document. */
|
|
9888
9884
|
settings?: { [key: string]: any } | null;
|
|
9889
9885
|
/**
|
|
@@ -42862,6 +42858,8 @@ export interface storefrontComponents {
|
|
|
42862
42858
|
*/
|
|
42863
42859
|
faceLivenessRequired?: boolean;
|
|
42864
42860
|
};
|
|
42861
|
+
/** Document verification level. */
|
|
42862
|
+
KycDocumentMatchLevels: 1 | 2 | 3;
|
|
42865
42863
|
/** KYC request information. */
|
|
42866
42864
|
KycRequest: {
|
|
42867
42865
|
/** ID of the KYC request. */
|
|
@@ -42897,8 +42895,7 @@ export interface storefrontComponents {
|
|
|
42897
42895
|
redirectUrl?: string | null;
|
|
42898
42896
|
/** Reason for uploading. */
|
|
42899
42897
|
reason?: string | null;
|
|
42900
|
-
|
|
42901
|
-
matchLevel?: 1 | 2 | 3;
|
|
42898
|
+
matchLevel?: storefrontComponents["schemas"]["KycDocumentMatchLevels"];
|
|
42902
42899
|
/**
|
|
42903
42900
|
* Number of times the KYC request data has been modified.
|
|
42904
42901
|
*
|
|
@@ -43104,8 +43101,7 @@ export interface storefrontComponents {
|
|
|
43104
43101
|
tags?: storefrontComponents["schemas"]["Tag"][];
|
|
43105
43102
|
/** Reason for uploading. */
|
|
43106
43103
|
reason?: string | null;
|
|
43107
|
-
|
|
43108
|
-
matchLevel?: number;
|
|
43104
|
+
matchLevel?: storefrontComponents["schemas"]["KycDocumentMatchLevels"];
|
|
43109
43105
|
/**
|
|
43110
43106
|
* Number of times the KYC document data has been modified.
|
|
43111
43107
|
*
|
|
@@ -43269,8 +43265,7 @@ export interface storefrontComponents {
|
|
|
43269
43265
|
tags?: storefrontComponents["schemas"]["Tag"][];
|
|
43270
43266
|
/** Reason for uploading. */
|
|
43271
43267
|
reason?: string | null;
|
|
43272
|
-
|
|
43273
|
-
matchLevel?: number;
|
|
43268
|
+
matchLevel?: storefrontComponents["schemas"]["KycDocumentMatchLevels"];
|
|
43274
43269
|
/**
|
|
43275
43270
|
* Number of times the KYC document data has been modified.
|
|
43276
43271
|
*
|
|
@@ -43358,8 +43353,7 @@ export interface storefrontComponents {
|
|
|
43358
43353
|
tags?: storefrontComponents["schemas"]["Tag"][];
|
|
43359
43354
|
/** Reason for uploading. */
|
|
43360
43355
|
reason?: string | null;
|
|
43361
|
-
|
|
43362
|
-
matchLevel?: number;
|
|
43356
|
+
matchLevel?: storefrontComponents["schemas"]["KycDocumentMatchLevels"];
|
|
43363
43357
|
/** Settings used to score the document. */
|
|
43364
43358
|
settings?: { [key: string]: any } | null;
|
|
43365
43359
|
/**
|
|
@@ -43449,8 +43443,7 @@ export interface storefrontComponents {
|
|
|
43449
43443
|
tags?: storefrontComponents["schemas"]["Tag"][];
|
|
43450
43444
|
/** Reason for uploading. */
|
|
43451
43445
|
reason?: string | null;
|
|
43452
|
-
|
|
43453
|
-
matchLevel?: number;
|
|
43446
|
+
matchLevel?: storefrontComponents["schemas"]["KycDocumentMatchLevels"];
|
|
43454
43447
|
/** Settings used to score the document. */
|
|
43455
43448
|
settings?: { [key: string]: any } | null;
|
|
43456
43449
|
/**
|
|
@@ -43586,8 +43579,7 @@ export interface storefrontComponents {
|
|
|
43586
43579
|
tags?: storefrontComponents["schemas"]["Tag"][];
|
|
43587
43580
|
/** Reason for uploading. */
|
|
43588
43581
|
reason?: string | null;
|
|
43589
|
-
|
|
43590
|
-
matchLevel?: number;
|
|
43582
|
+
matchLevel?: storefrontComponents["schemas"]["KycDocumentMatchLevels"];
|
|
43591
43583
|
/** Settings used to score the document. */
|
|
43592
43584
|
settings?: { [key: string]: any } | null;
|
|
43593
43585
|
/**
|
|
@@ -65473,6 +65465,8 @@ export interface reportsComponents {
|
|
|
65473
65465
|
*/
|
|
65474
65466
|
faceLivenessRequired?: boolean;
|
|
65475
65467
|
};
|
|
65468
|
+
/** Document verification level. */
|
|
65469
|
+
KycDocumentMatchLevels: 1 | 2 | 3;
|
|
65476
65470
|
/** KYC request information. */
|
|
65477
65471
|
KycRequest: {
|
|
65478
65472
|
/** ID of the KYC request. */
|
|
@@ -65508,8 +65502,7 @@ export interface reportsComponents {
|
|
|
65508
65502
|
redirectUrl?: string | null;
|
|
65509
65503
|
/** Reason for uploading. */
|
|
65510
65504
|
reason?: string | null;
|
|
65511
|
-
|
|
65512
|
-
matchLevel?: 1 | 2 | 3;
|
|
65505
|
+
matchLevel?: reportsComponents["schemas"]["KycDocumentMatchLevels"];
|
|
65513
65506
|
/**
|
|
65514
65507
|
* Number of times the KYC request data has been modified.
|
|
65515
65508
|
*
|
|
@@ -65715,8 +65708,7 @@ export interface reportsComponents {
|
|
|
65715
65708
|
tags?: reportsComponents["schemas"]["Tag"][];
|
|
65716
65709
|
/** Reason for uploading. */
|
|
65717
65710
|
reason?: string | null;
|
|
65718
|
-
|
|
65719
|
-
matchLevel?: number;
|
|
65711
|
+
matchLevel?: reportsComponents["schemas"]["KycDocumentMatchLevels"];
|
|
65720
65712
|
/**
|
|
65721
65713
|
* Number of times the KYC document data has been modified.
|
|
65722
65714
|
*
|
|
@@ -65880,8 +65872,7 @@ export interface reportsComponents {
|
|
|
65880
65872
|
tags?: reportsComponents["schemas"]["Tag"][];
|
|
65881
65873
|
/** Reason for uploading. */
|
|
65882
65874
|
reason?: string | null;
|
|
65883
|
-
|
|
65884
|
-
matchLevel?: number;
|
|
65875
|
+
matchLevel?: reportsComponents["schemas"]["KycDocumentMatchLevels"];
|
|
65885
65876
|
/**
|
|
65886
65877
|
* Number of times the KYC document data has been modified.
|
|
65887
65878
|
*
|
|
@@ -65969,8 +65960,7 @@ export interface reportsComponents {
|
|
|
65969
65960
|
tags?: reportsComponents["schemas"]["Tag"][];
|
|
65970
65961
|
/** Reason for uploading. */
|
|
65971
65962
|
reason?: string | null;
|
|
65972
|
-
|
|
65973
|
-
matchLevel?: number;
|
|
65963
|
+
matchLevel?: reportsComponents["schemas"]["KycDocumentMatchLevels"];
|
|
65974
65964
|
/** Settings used to score the document. */
|
|
65975
65965
|
settings?: { [key: string]: any } | null;
|
|
65976
65966
|
/**
|
|
@@ -66060,8 +66050,7 @@ export interface reportsComponents {
|
|
|
66060
66050
|
tags?: reportsComponents["schemas"]["Tag"][];
|
|
66061
66051
|
/** Reason for uploading. */
|
|
66062
66052
|
reason?: string | null;
|
|
66063
|
-
|
|
66064
|
-
matchLevel?: number;
|
|
66053
|
+
matchLevel?: reportsComponents["schemas"]["KycDocumentMatchLevels"];
|
|
66065
66054
|
/** Settings used to score the document. */
|
|
66066
66055
|
settings?: { [key: string]: any } | null;
|
|
66067
66056
|
/**
|
|
@@ -66197,8 +66186,7 @@ export interface reportsComponents {
|
|
|
66197
66186
|
tags?: reportsComponents["schemas"]["Tag"][];
|
|
66198
66187
|
/** Reason for uploading. */
|
|
66199
66188
|
reason?: string | null;
|
|
66200
|
-
|
|
66201
|
-
matchLevel?: number;
|
|
66189
|
+
matchLevel?: reportsComponents["schemas"]["KycDocumentMatchLevels"];
|
|
66202
66190
|
/** Settings used to score the document. */
|
|
66203
66191
|
settings?: { [key: string]: any } | null;
|
|
66204
66192
|
/**
|