@onfido/api 2.9.0 → 3.1.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/LICENSE +1 -1
- package/README.md +138 -132
- package/dist/api.d.ts +12036 -0
- package/dist/api.js +5284 -0
- package/dist/base.d.ts +66 -0
- package/dist/base.js +65 -0
- package/dist/common.d.ts +66 -0
- package/dist/common.js +162 -0
- package/dist/configuration.d.ts +93 -0
- package/dist/configuration.js +53 -0
- package/dist/esm/api.d.ts +12036 -0
- package/dist/esm/api.js +5277 -0
- package/dist/esm/base.d.ts +66 -0
- package/dist/esm/base.js +60 -0
- package/dist/esm/common.d.ts +66 -0
- package/dist/esm/common.js +150 -0
- package/dist/esm/configuration.d.ts +93 -0
- package/dist/esm/configuration.js +49 -0
- package/dist/esm/file-transfer.d.ts +10 -0
- package/dist/esm/file-transfer.js +13 -0
- package/dist/esm/index.d.ts +15 -0
- package/dist/esm/index.js +17 -0
- package/dist/esm/webhook-event-verifier.d.ts +9 -0
- package/dist/esm/webhook-event-verifier.js +31 -0
- package/dist/file-transfer.d.ts +10 -0
- package/dist/file-transfer.js +17 -0
- package/dist/index.d.ts +15 -19
- package/dist/index.js +32 -553
- package/dist/webhook-event-verifier.d.ts +9 -0
- package/dist/webhook-event-verifier.js +36 -0
- package/package.json +30 -31
- package/CHANGELOG.md +0 -121
- package/dist/Onfido.d.ts +0 -40
- package/dist/OnfidoDownload.d.ts +0 -9
- package/dist/Resource.d.ts +0 -22
- package/dist/WebhookEventVerifier.d.ts +0 -17
- package/dist/errors/OnfidoApiError.d.ts +0 -10
- package/dist/errors/OnfidoError.d.ts +0 -3
- package/dist/formatting.d.ts +0 -16
- package/dist/index.es.js +0 -544
- package/dist/index.es.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/resources/Addresses.d.ts +0 -27
- package/dist/resources/Applicants.d.ts +0 -44
- package/dist/resources/Autofill.d.ts +0 -37
- package/dist/resources/Checks.d.ts +0 -42
- package/dist/resources/ConsentsRequest.d.ts +0 -4
- package/dist/resources/Documents.d.ts +0 -34
- package/dist/resources/IdNumbers.d.ts +0 -10
- package/dist/resources/LivePhotos.d.ts +0 -25
- package/dist/resources/LiveVideos.d.ts +0 -19
- package/dist/resources/Location.d.ts +0 -8
- package/dist/resources/MotionCaptures.d.ts +0 -19
- package/dist/resources/Reports.d.ts +0 -24
- package/dist/resources/SdkTokens.d.ts +0 -12
- package/dist/resources/Webhooks.d.ts +0 -26
- package/dist/resources/WorkflowRuns.d.ts +0 -48
- package/dist/types/formData.d.ts +0 -27
package/package.json
CHANGED
|
@@ -1,39 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onfido/api",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Node.js library for the Onfido API",
|
|
5
|
+
"author": "OpenAPI-Generator Contributors",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/onfido/onfido-node.git"
|
|
9
|
+
},
|
|
5
10
|
"keywords": [
|
|
11
|
+
"axios",
|
|
12
|
+
"typescript",
|
|
13
|
+
"openapi-client",
|
|
14
|
+
"openapi-generator",
|
|
15
|
+
"@onfido/api",
|
|
6
16
|
"onfido",
|
|
7
17
|
"identity",
|
|
8
18
|
"verification",
|
|
9
19
|
"api"
|
|
10
20
|
],
|
|
11
|
-
"homepage": "https://github.com/onfido/onfido-node#readme",
|
|
12
21
|
"license": "MIT",
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"module": "dist/index.es.js",
|
|
17
|
-
"types": "dist/index.d.ts",
|
|
22
|
+
"main": "./dist/index.js",
|
|
23
|
+
"typings": "./dist/index.d.ts",
|
|
24
|
+
"module": "./dist/esm/index.js",
|
|
18
25
|
"sideEffects": false,
|
|
19
|
-
"files": [
|
|
20
|
-
"dist"
|
|
21
|
-
],
|
|
22
|
-
"publishConfig": {
|
|
23
|
-
"access": "public"
|
|
24
|
-
},
|
|
25
26
|
"scripts": {
|
|
26
|
-
"build": "rollup -c rollup.config.ts",
|
|
27
27
|
"test": "jest",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"format": "tslint 'src/**/*.ts' 'test/**/*.ts' --fix && prettier --write README.md"
|
|
28
|
+
"build": "tsc && tsc -p tsconfig.esm.json",
|
|
29
|
+
"prepare": "npm run build"
|
|
31
30
|
},
|
|
31
|
+
"files": [
|
|
32
|
+
"/dist"
|
|
33
|
+
],
|
|
32
34
|
"jest": {
|
|
33
35
|
"preset": "ts-jest",
|
|
34
36
|
"testEnvironment": "node",
|
|
35
37
|
"moduleNameMapper": {
|
|
36
|
-
"onfido-node": "<rootDir>/
|
|
38
|
+
"onfido-node": "<rootDir>/index",
|
|
37
39
|
"axios": "axios/dist/node/axios.cjs"
|
|
38
40
|
},
|
|
39
41
|
"globals": {
|
|
@@ -42,23 +44,20 @@
|
|
|
42
44
|
}
|
|
43
45
|
}
|
|
44
46
|
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"axios": "^1.6.1"
|
|
49
|
+
},
|
|
45
50
|
"devDependencies": {
|
|
46
|
-
"@
|
|
51
|
+
"@faker-js/faker": "^8.4.1",
|
|
47
52
|
"@types/jest": "^26.0.15",
|
|
48
53
|
"jest": "^26.6.3",
|
|
49
|
-
"nock": "^11.7.0",
|
|
50
54
|
"prettier": "^1.18.2",
|
|
51
|
-
"rollup": "^1.24.0",
|
|
52
|
-
"rollup-plugin-typescript2": "^0.25.3",
|
|
53
|
-
"snakecase-keys": "^5.4.4",
|
|
54
55
|
"ts-jest": "^26.4.4",
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"typescript": "^4.0.5"
|
|
56
|
+
"dotenv": "^16.4.5",
|
|
57
|
+
"@types/node": "12.11.5 - 12.20.42",
|
|
58
|
+
"typescript": "^4.0 || ^5.0"
|
|
59
59
|
},
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"form-data": "^3.0.0"
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public"
|
|
63
62
|
}
|
|
64
|
-
}
|
|
63
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## v2.9.0 24 November 2023
|
|
4
|
-
|
|
5
|
-
- Add `resource` to `WebhookEvent`
|
|
6
|
-
|
|
7
|
-
## v2.8.0 24 November 2023
|
|
8
|
-
|
|
9
|
-
- Added `signed_evidence_file` method for WorkflowRuns
|
|
10
|
-
|
|
11
|
-
## v2.7.2, 14 June 2023
|
|
12
|
-
|
|
13
|
-
- Added `sandbox` field to Check.
|
|
14
|
-
|
|
15
|
-
## v2.7.1, 30 May 2023
|
|
16
|
-
|
|
17
|
-
- Fix bug when uploading documents with `validateImageQuality`.
|
|
18
|
-
|
|
19
|
-
## v2.7.0, 24 January 2023
|
|
20
|
-
|
|
21
|
-
- Updated to use API v3.6. For more details please see our [release notes](https://developers.onfido.com/release-notes#api-v36)
|
|
22
|
-
|
|
23
|
-
## v2.6.0, 7 December 2022
|
|
24
|
-
|
|
25
|
-
- Added WorkflowRuns support
|
|
26
|
-
|
|
27
|
-
## v2.5.0, 22 November 2022
|
|
28
|
-
|
|
29
|
-
- Added Motion capture support
|
|
30
|
-
|
|
31
|
-
## v2.4.0, 06 October 2022
|
|
32
|
-
|
|
33
|
-
- Updated to use API v3.5. For more details please see our [release notes](https://developers.onfido.com/release-notes#api-v35)
|
|
34
|
-
|
|
35
|
-
## v2.3.1, 24 May 2022
|
|
36
|
-
|
|
37
|
-
- Reinstated `privacyNoticesReadConsentGiven` parameter
|
|
38
|
-
|
|
39
|
-
## v2.3.0, 10 May 2022
|
|
40
|
-
|
|
41
|
-
- Updated to use API v3.4. For more details please see our [release notes](https://developers.onfido.com/release-notes#api-v34)
|
|
42
|
-
- Added `location` to applicant request, applicant response and documents request. `location` is a mandatory parameter for all applicants in order to create a check using API v3.4
|
|
43
|
-
- Added `consents` to applicant request. `consents` is a mandatory parameter for any applicant located in the United States in order to create a check using API v3.4
|
|
44
|
-
- Added `phoneNumber` to applicant request and response
|
|
45
|
-
|
|
46
|
-
## v2.2.0, 02 March 2022
|
|
47
|
-
|
|
48
|
-
- Updated to use API v3.3
|
|
49
|
-
|
|
50
|
-
## v2.1.2, 17 Feb 2022
|
|
51
|
-
|
|
52
|
-
- Fixed `advancedValidation` flag when uploading live photo
|
|
53
|
-
|
|
54
|
-
## v2.1.1, 6 Jan 2022
|
|
55
|
-
|
|
56
|
-
- Added `validate_image_quality` to document upload request
|
|
57
|
-
|
|
58
|
-
## v2.1.0, 24 June 2021
|
|
59
|
-
|
|
60
|
-
- Updated to use API v3.2
|
|
61
|
-
|
|
62
|
-
## v2.0.2, 25 May 2021
|
|
63
|
-
|
|
64
|
-
- Added `environments` to Webhook object
|
|
65
|
-
|
|
66
|
-
## v2.0.1, 17 May 2021
|
|
67
|
-
|
|
68
|
-
- Added `sub_result` to trigger sandbox pre-determined responses for Document report sub-results
|
|
69
|
-
- Added `consider` array functionality for sandbox pre-determined responses
|
|
70
|
-
|
|
71
|
-
## v2.0.0, 9 April 2021
|
|
72
|
-
|
|
73
|
-
- Updated to use API v3.1
|
|
74
|
-
- Region is now a required argument when constructing an `Onfido` instance. The region previously defaulted to `Region.EU`
|
|
75
|
-
- Add support for downloading a check
|
|
76
|
-
|
|
77
|
-
## v1.6.0, 8 March 2021
|
|
78
|
-
|
|
79
|
-
- Add `privacy_notices_read_consent_given` to the type for creating a chec
|
|
80
|
-
|
|
81
|
-
## v1.5.4, 12 January 2021
|
|
82
|
-
|
|
83
|
-
- Updated dependencies.
|
|
84
|
-
|
|
85
|
-
## v1.5.3, 3 December 2020
|
|
86
|
-
|
|
87
|
-
- Library should work now with `esModuleInterop: false`
|
|
88
|
-
|
|
89
|
-
## v1.5.2, 3 September 2020
|
|
90
|
-
|
|
91
|
-
- Fix type declaration location for TypeScript users
|
|
92
|
-
|
|
93
|
-
## v1.5.1, 20 August 2020
|
|
94
|
-
|
|
95
|
-
- Ensure consistent version in User-Agent
|
|
96
|
-
|
|
97
|
-
## v1.5.0, 14 August 2020
|
|
98
|
-
|
|
99
|
-
- Add User Agent header
|
|
100
|
-
|
|
101
|
-
## v1.4.0, 15 July 2020
|
|
102
|
-
|
|
103
|
-
- Add support for [Autofill endpoint](https://documentation.onfido.com/#autofill-beta)
|
|
104
|
-
|
|
105
|
-
## v1.3.0, 30 June 2020
|
|
106
|
-
|
|
107
|
-
- Add support for `cross_device_url` when generating an SDK token
|
|
108
|
-
|
|
109
|
-
## v1.2.0, 23 June 2020
|
|
110
|
-
|
|
111
|
-
- Allow specifying the filepath and content type explicitly for file upload
|
|
112
|
-
- Add support for the Canada region (api.ca.onfido.com)
|
|
113
|
-
- Add missing `document_ids` field to `CheckRequest` type
|
|
114
|
-
|
|
115
|
-
## v1.1.0, 2 April 2020
|
|
116
|
-
|
|
117
|
-
- Improved typing of check and report objects.
|
|
118
|
-
|
|
119
|
-
## v1.0.0, 23 January 2020
|
|
120
|
-
|
|
121
|
-
- The initial release of this library, which uses v3 of the Onfido API
|
package/dist/Onfido.d.ts
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { AxiosInstance } from "axios";
|
|
2
|
-
import { Addresses } from "./resources/Addresses";
|
|
3
|
-
import { Applicants } from "./resources/Applicants";
|
|
4
|
-
import { Autofill } from "./resources/Autofill";
|
|
5
|
-
import { Checks } from "./resources/Checks";
|
|
6
|
-
import { Documents } from "./resources/Documents";
|
|
7
|
-
import { LivePhotos } from "./resources/LivePhotos";
|
|
8
|
-
import { LiveVideos } from "./resources/LiveVideos";
|
|
9
|
-
import { MotionCaptures } from "./resources/MotionCaptures";
|
|
10
|
-
import { Reports } from "./resources/Reports";
|
|
11
|
-
import { SdkTokens } from "./resources/SdkTokens";
|
|
12
|
-
import { Webhooks } from "./resources/Webhooks";
|
|
13
|
-
import { WorkflowRuns } from "./resources/WorkflowRuns";
|
|
14
|
-
export declare enum Region {
|
|
15
|
-
EU = "EU",
|
|
16
|
-
US = "US",
|
|
17
|
-
CA = "CA"
|
|
18
|
-
}
|
|
19
|
-
export declare type OnfidoOptions = {
|
|
20
|
-
apiToken: string;
|
|
21
|
-
region: Region;
|
|
22
|
-
timeout?: number;
|
|
23
|
-
unknownApiUrl?: string;
|
|
24
|
-
};
|
|
25
|
-
export declare class Onfido {
|
|
26
|
-
readonly axiosInstance: AxiosInstance;
|
|
27
|
-
readonly applicant: Applicants;
|
|
28
|
-
readonly document: Documents;
|
|
29
|
-
readonly livePhoto: LivePhotos;
|
|
30
|
-
readonly liveVideo: LiveVideos;
|
|
31
|
-
readonly motionCapture: MotionCaptures;
|
|
32
|
-
readonly check: Checks;
|
|
33
|
-
readonly report: Reports;
|
|
34
|
-
readonly workflowRun: WorkflowRuns;
|
|
35
|
-
readonly address: Addresses;
|
|
36
|
-
readonly webhook: Webhooks;
|
|
37
|
-
readonly sdkToken: SdkTokens;
|
|
38
|
-
readonly autofill: Autofill;
|
|
39
|
-
constructor({ apiToken, region, timeout, unknownApiUrl }: OnfidoOptions);
|
|
40
|
-
}
|
package/dist/OnfidoDownload.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
import { IncomingMessage } from "http";
|
|
3
|
-
import { Readable } from "stream";
|
|
4
|
-
export declare class OnfidoDownload {
|
|
5
|
-
private readonly incomingMessage;
|
|
6
|
-
constructor(incomingMessage: IncomingMessage);
|
|
7
|
-
asStream(): Readable;
|
|
8
|
-
get contentType(): string;
|
|
9
|
-
}
|
package/dist/Resource.d.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { AxiosInstance } from "axios";
|
|
2
|
-
import { SimpleObject } from "./formatting";
|
|
3
|
-
import { OnfidoDownload } from "./OnfidoDownload";
|
|
4
|
-
export declare enum Method {
|
|
5
|
-
GET = "get",
|
|
6
|
-
POST = "post",
|
|
7
|
-
PUT = "put",
|
|
8
|
-
DELETE = "delete"
|
|
9
|
-
}
|
|
10
|
-
export declare class Resource<T extends SimpleObject> {
|
|
11
|
-
private readonly name;
|
|
12
|
-
private readonly axiosInstance;
|
|
13
|
-
protected constructor(name: string, axiosInstance: AxiosInstance);
|
|
14
|
-
protected request({ method, path, body, query }: {
|
|
15
|
-
method: Method;
|
|
16
|
-
path?: string;
|
|
17
|
-
body?: T;
|
|
18
|
-
query?: SimpleObject;
|
|
19
|
-
}): Promise<any>;
|
|
20
|
-
protected upload(body: T): Promise<any>;
|
|
21
|
-
protected download(path: string): Promise<OnfidoDownload>;
|
|
22
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
export declare type WebhookEvent = {
|
|
3
|
-
resourceType: string;
|
|
4
|
-
action: string;
|
|
5
|
-
object: {
|
|
6
|
-
id: string;
|
|
7
|
-
status: string;
|
|
8
|
-
href: string;
|
|
9
|
-
completedAtIso8601: string;
|
|
10
|
-
};
|
|
11
|
-
resource?: object;
|
|
12
|
-
};
|
|
13
|
-
export declare class WebhookEventVerifier {
|
|
14
|
-
private readonly webhookToken;
|
|
15
|
-
constructor(webhookToken: string);
|
|
16
|
-
readPayload(rawEventBody: string | Buffer, hexSignature: string): WebhookEvent;
|
|
17
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { OnfidoError } from "./OnfidoError";
|
|
2
|
-
export declare class OnfidoApiError extends OnfidoError {
|
|
3
|
-
readonly responseBody: unknown;
|
|
4
|
-
readonly statusCode: number;
|
|
5
|
-
readonly type: string;
|
|
6
|
-
readonly fields: unknown;
|
|
7
|
-
private constructor();
|
|
8
|
-
static fromResponse(responseBody: unknown, statusCode: number): OnfidoApiError;
|
|
9
|
-
isClientError(): boolean;
|
|
10
|
-
}
|
package/dist/formatting.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
import { Readable } from "stream";
|
|
3
|
-
import { IFormData } from "./types/formData";
|
|
4
|
-
export declare type SimpleObject = {
|
|
5
|
-
[key: string]: unknown;
|
|
6
|
-
};
|
|
7
|
-
declare type ContentsAndOptions = {
|
|
8
|
-
contents: Readable;
|
|
9
|
-
filepath: string;
|
|
10
|
-
contentType?: string;
|
|
11
|
-
};
|
|
12
|
-
export declare type FileLike = Readable | ContentsAndOptions;
|
|
13
|
-
export declare const convertObjectToSnakeCase: (requestBody: unknown) => unknown;
|
|
14
|
-
export declare const convertObjectToCamelCase: (responseBody: SimpleObject) => SimpleObject;
|
|
15
|
-
export declare const toFormData: (object: SimpleObject) => IFormData;
|
|
16
|
-
export {};
|