@verdocs/js-sdk 4.2.3 → 4.2.5
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/index.d.mts +6 -7
- package/dist/index.d.ts +6 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1414,7 +1414,7 @@ interface IRecipientKbaStepChallenge {
|
|
|
1414
1414
|
questions: {
|
|
1415
1415
|
type: string;
|
|
1416
1416
|
message: string;
|
|
1417
|
-
options: string[];
|
|
1417
|
+
options: (string | number)[];
|
|
1418
1418
|
}[];
|
|
1419
1419
|
}
|
|
1420
1420
|
/**
|
|
@@ -1441,13 +1441,12 @@ declare const getKbaStep: (endpoint: VerdocsEndpoint, envelopeId: string, roleNa
|
|
|
1441
1441
|
*/
|
|
1442
1442
|
declare const submitKbaPin: (endpoint: VerdocsEndpoint, envelopeId: string, roleName: string, pin: string) => Promise<IRecipientKbaStepNone | IRecipientKbaStepComplete | IRecipientKbaStepPin | IRecipientKbaStepIdentity | IRecipientKbaStepChallenge | IRecipientKbaStepFailed>;
|
|
1443
1443
|
interface IKbaIdentity {
|
|
1444
|
-
|
|
1445
|
-
|
|
1444
|
+
firstName: string;
|
|
1445
|
+
lastName: string;
|
|
1446
|
+
address: string;
|
|
1446
1447
|
city?: string;
|
|
1447
1448
|
state?: string;
|
|
1448
|
-
|
|
1449
|
-
country?: string;
|
|
1450
|
-
ssn?: string;
|
|
1449
|
+
zip?: string;
|
|
1451
1450
|
ssnLast4?: string;
|
|
1452
1451
|
}
|
|
1453
1452
|
/**
|
|
@@ -1457,7 +1456,7 @@ declare const submitKbaIdentity: (endpoint: VerdocsEndpoint, envelopeId: string,
|
|
|
1457
1456
|
interface IKbaChallengeResponse {
|
|
1458
1457
|
responses: {
|
|
1459
1458
|
type: string;
|
|
1460
|
-
answer: string;
|
|
1459
|
+
answer: string | number;
|
|
1461
1460
|
}[];
|
|
1462
1461
|
}
|
|
1463
1462
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1414,7 +1414,7 @@ interface IRecipientKbaStepChallenge {
|
|
|
1414
1414
|
questions: {
|
|
1415
1415
|
type: string;
|
|
1416
1416
|
message: string;
|
|
1417
|
-
options: string[];
|
|
1417
|
+
options: (string | number)[];
|
|
1418
1418
|
}[];
|
|
1419
1419
|
}
|
|
1420
1420
|
/**
|
|
@@ -1441,13 +1441,12 @@ declare const getKbaStep: (endpoint: VerdocsEndpoint, envelopeId: string, roleNa
|
|
|
1441
1441
|
*/
|
|
1442
1442
|
declare const submitKbaPin: (endpoint: VerdocsEndpoint, envelopeId: string, roleName: string, pin: string) => Promise<IRecipientKbaStepNone | IRecipientKbaStepComplete | IRecipientKbaStepPin | IRecipientKbaStepIdentity | IRecipientKbaStepChallenge | IRecipientKbaStepFailed>;
|
|
1443
1443
|
interface IKbaIdentity {
|
|
1444
|
-
|
|
1445
|
-
|
|
1444
|
+
firstName: string;
|
|
1445
|
+
lastName: string;
|
|
1446
|
+
address: string;
|
|
1446
1447
|
city?: string;
|
|
1447
1448
|
state?: string;
|
|
1448
|
-
|
|
1449
|
-
country?: string;
|
|
1450
|
-
ssn?: string;
|
|
1449
|
+
zip?: string;
|
|
1451
1450
|
ssnLast4?: string;
|
|
1452
1451
|
}
|
|
1453
1452
|
/**
|
|
@@ -1457,7 +1456,7 @@ declare const submitKbaIdentity: (endpoint: VerdocsEndpoint, envelopeId: string,
|
|
|
1457
1456
|
interface IKbaChallengeResponse {
|
|
1458
1457
|
responses: {
|
|
1459
1458
|
type: string;
|
|
1460
|
-
answer: string;
|
|
1459
|
+
answer: string | number;
|
|
1461
1460
|
}[];
|
|
1462
1461
|
}
|
|
1463
1462
|
/**
|