@verdocs/js-sdk 4.2.4 → 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 +4 -5
- package/dist/index.d.ts +4 -5
- 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
|
@@ -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
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -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
|
/**
|