@finverse/sdk-typescript 0.0.53 → 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 +2 -2
- 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";
|