Skip to content

Commit 1a03b95

Browse files
authored
Fixes TinVerificationParameters type and bumps version (#251)
1 parent f4a0e87 commit 1a03b95

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@withabound/node-sdk",
3-
"version": "5.1.6",
3+
"version": "5.1.7",
44
"description": "The Abound Node library provides convenient access to the Abound API from applications written in server-side JavaScript.",
55
"author": "Abound <[email protected]>",
66
"license": "MIT",

src/resources/tin-verifications.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ export type TinVerificationRequest = {
2323

2424
// Query params
2525
export type TinVerificationParameters = Pagination & {
26-
email?: string;
27-
foreignId?: string;
26+
tinFingerprint?: string;
27+
status?: TinVerificationStatus;
28+
userId?: string;
2829
};
2930

3031
const resource = "tin-verifications";

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated by genversion.
2-
export const version = "5.1.6";
2+
export const version = "5.1.7";

0 commit comments

Comments
 (0)