Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .release.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"source": {
"repo_url": "https://github.com/onfido/onfido-openapi-spec",
"short_sha": "22e3bd3",
"long_sha": "22e3bd3bc410d379ded0cdd592f71059fc0aee1d",
"version": "v5.4.0"
"short_sha": "c80d3b5",
"long_sha": "c80d3b513a15bb67ec316709884b890ab2f47121",
"version": "v5.5.0"
},
"release": "v5.4.0"
"release": "v5.5.0"
}
92 changes: 90 additions & 2 deletions api.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* Onfido API v3.6
* The Onfido API (v3.6)
* Onfido Public API v3.6
* The Onfido Public API (v3.6)
*
* The version of the OpenAPI document: v3.6
*
Expand Down Expand Up @@ -6436,6 +6436,18 @@ export interface IdentityEnhancedBreakdown {
* @memberof IdentityEnhancedBreakdown
*/
'mortality'?: IdentityEnhancedBreakdownMortality;
/**
*
* @type {IdrSsnBreakdown}
* @memberof IdentityEnhancedBreakdown
*/
'ssn'?: IdrSsnBreakdown;
/**
*
* @type {IdrSsnBreakdown}
* @memberof IdentityEnhancedBreakdown
*/
'ssn1'?: IdrSsnBreakdown;
}
/**
* Asserts if the applicant\'s address matches any sources.
Expand Down Expand Up @@ -6811,6 +6823,82 @@ export interface IdentityEnhancedReport {
}


/**
*
* @export
* @interface IdrSsnBreakdown
*/
export interface IdrSsnBreakdown {
/**
*
* @type {string}
* @memberof IdrSsnBreakdown
*/
'result'?: string;
/**
*
* @type {IdrSsnBreakdownBreakdown}
* @memberof IdrSsnBreakdown
*/
'breakdown'?: IdrSsnBreakdownBreakdown;
}
/**
*
* @export
* @interface IdrSsnBreakdownBreakdown
*/
export interface IdrSsnBreakdownBreakdown {
/**
*
* @type {IdrSsnBreakdownBreakdownLast4DigitsMatch}
* @memberof IdrSsnBreakdownBreakdown
*/
'last_4_digits_match'?: IdrSsnBreakdownBreakdownLast4DigitsMatch;
/**
*
* @type {IdrSsnBreakdownBreakdownFullMatch}
* @memberof IdrSsnBreakdownBreakdown
*/
'full_match'?: IdrSsnBreakdownBreakdownFullMatch;
}
/**
* Social security number fully matches
* @export
* @interface IdrSsnBreakdownBreakdownFullMatch
*/
export interface IdrSsnBreakdownBreakdownFullMatch {
/**
*
* @type {string}
* @memberof IdrSsnBreakdownBreakdownFullMatch
*/
'result'?: string;
/**
*
* @type {object}
* @memberof IdrSsnBreakdownBreakdownFullMatch
*/
'properties'?: object;
}
/**
* Last 4 digits of social security number match
* @export
* @interface IdrSsnBreakdownBreakdownLast4DigitsMatch
*/
export interface IdrSsnBreakdownBreakdownLast4DigitsMatch {
/**
*
* @type {string}
* @memberof IdrSsnBreakdownBreakdownLast4DigitsMatch
*/
'result'?: string;
/**
*
* @type {object}
* @memberof IdrSsnBreakdownBreakdownLast4DigitsMatch
*/
'properties'?: object;
}
/**
*
* @export
Expand Down
4 changes: 2 additions & 2 deletions base.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* Onfido API v3.6
* The Onfido API (v3.6)
* Onfido Public API v3.6
* The Onfido Public API (v3.6)
*
* The version of the OpenAPI document: v3.6
*
Expand Down
4 changes: 2 additions & 2 deletions common.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* Onfido API v3.6
* The Onfido API (v3.6)
* Onfido Public API v3.6
* The Onfido Public API (v3.6)
*
* The version of the OpenAPI document: v3.6
*
Expand Down
6 changes: 3 additions & 3 deletions configuration.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* Onfido API v3.6
* The Onfido API (v3.6)
* Onfido Public API v3.6
* The Onfido Public API (v3.6)
*
* The version of the OpenAPI document: v3.6
*
Expand Down Expand Up @@ -101,7 +101,7 @@ export class Configuration {
this.baseOptions = {...{ timeout: 30_000 },
...param.baseOptions,
headers: {...param.baseOptions?.headers,
'User-Agent': "onfido-node/5.4.0"
'User-Agent': "onfido-node/5.5.0"
},
};
this.formDataCtor = param.formDataCtor || require('form-data'); // Injiect form data constructor (if needed)
Expand Down
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* Onfido API v3.6
* The Onfido API (v3.6)
* Onfido Public API v3.6
* The Onfido Public API (v3.6)
*
* The version of the OpenAPI document: v3.6
*
Expand Down
Loading