@finverse/sdk-typescript 0.0.51 → 0.0.54
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/dist/api.d.ts +14 -15
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -305,13 +305,13 @@ export interface AuthChecklistOptions {
|
|
|
305
305
|
* @type {string}
|
|
306
306
|
* @memberof AuthChecklistOptions
|
|
307
307
|
*/
|
|
308
|
-
submitted_at
|
|
308
|
+
submitted_at?: string | null;
|
|
309
309
|
/**
|
|
310
310
|
* Indicates who submitted the authorization factor to Finverse. Possible values are CUSTOMER_APP, FINVERSE_LINK
|
|
311
311
|
* @type {string}
|
|
312
312
|
* @memberof AuthChecklistOptions
|
|
313
313
|
*/
|
|
314
|
-
submitted_by
|
|
314
|
+
submitted_by?: AuthChecklistOptionsSubmittedByEnum;
|
|
315
315
|
}
|
|
316
316
|
export declare const AuthChecklistOptionsNameEnum: {
|
|
317
317
|
readonly CredentialsLogin: "INSTITUTION_CREDENTIALS_LOGIN";
|
|
@@ -754,19 +754,6 @@ export interface CustomizationDetails {
|
|
|
754
754
|
*/
|
|
755
755
|
display_name?: string;
|
|
756
756
|
}
|
|
757
|
-
/**
|
|
758
|
-
*
|
|
759
|
-
* @export
|
|
760
|
-
* @interface DeleteInstitutionResponse
|
|
761
|
-
*/
|
|
762
|
-
export interface DeleteInstitutionResponse {
|
|
763
|
-
/**
|
|
764
|
-
*
|
|
765
|
-
* @type {boolean}
|
|
766
|
-
* @memberof DeleteInstitutionResponse
|
|
767
|
-
*/
|
|
768
|
-
success?: boolean;
|
|
769
|
-
}
|
|
770
757
|
/**
|
|
771
758
|
*
|
|
772
759
|
* @export
|
|
@@ -1484,6 +1471,12 @@ export interface IdentityDateOfBirth {
|
|
|
1484
1471
|
* @memberof IdentityDateOfBirth
|
|
1485
1472
|
*/
|
|
1486
1473
|
date_of_birth?: string;
|
|
1474
|
+
/**
|
|
1475
|
+
*
|
|
1476
|
+
* @type {string}
|
|
1477
|
+
* @memberof IdentityDateOfBirth
|
|
1478
|
+
*/
|
|
1479
|
+
masked_date_of_birth?: string;
|
|
1487
1480
|
/**
|
|
1488
1481
|
*
|
|
1489
1482
|
* @type {string}
|
|
@@ -1852,6 +1845,12 @@ export interface Institution {
|
|
|
1852
1845
|
* @memberof Institution
|
|
1853
1846
|
*/
|
|
1854
1847
|
updated_at?: string;
|
|
1848
|
+
/**
|
|
1849
|
+
*
|
|
1850
|
+
* @type {Array<string>}
|
|
1851
|
+
* @memberof Institution
|
|
1852
|
+
*/
|
|
1853
|
+
payment_rails?: Array<string>;
|
|
1855
1854
|
}
|
|
1856
1855
|
/**
|
|
1857
1856
|
*
|