@verdocs/js-sdk 4.2.52 → 4.2.53
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 +11 -11
- package/dist/index.d.ts +11 -11
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -612,15 +612,15 @@ interface IRecipient {
|
|
|
612
612
|
profile_id: string;
|
|
613
613
|
status: TRecipientStatus;
|
|
614
614
|
email: string;
|
|
615
|
-
phone
|
|
615
|
+
phone?: string | null;
|
|
616
616
|
full_name?: string | null;
|
|
617
617
|
first_name: string;
|
|
618
618
|
last_name: string;
|
|
619
|
-
address
|
|
620
|
-
city
|
|
621
|
-
state
|
|
622
|
-
zip
|
|
623
|
-
ssn_last_4
|
|
619
|
+
address?: string | null;
|
|
620
|
+
city?: string | null;
|
|
621
|
+
state?: string | null;
|
|
622
|
+
zip?: string | null;
|
|
623
|
+
ssn_last_4?: string | null;
|
|
624
624
|
/**
|
|
625
625
|
* The sequence number indicates the order in which Recipients act. Multiple recipients may have the same sequence
|
|
626
626
|
* number, in which case they may act in parallel. (e.g. all Recipients at sequence 2 will receive invites once
|
|
@@ -640,16 +640,16 @@ interface IRecipient {
|
|
|
640
640
|
claimed: boolean;
|
|
641
641
|
agreed: boolean;
|
|
642
642
|
key_used_to_conclude?: string;
|
|
643
|
-
environment
|
|
643
|
+
environment?: string;
|
|
644
644
|
created_at: string;
|
|
645
645
|
updated_at: string;
|
|
646
|
-
last_attempt_at
|
|
646
|
+
last_attempt_at?: string;
|
|
647
647
|
/**
|
|
648
648
|
* If set, "KBA required" will carry through to automatically enable the same setting in Envelopes
|
|
649
649
|
* created from this template. For privacy reasons, this field will only be visible to the creator
|
|
650
650
|
* of the envelope and the recipient referenced.
|
|
651
651
|
*/
|
|
652
|
-
kba_method
|
|
652
|
+
kba_method?: "pin" | "identity" | null;
|
|
653
653
|
/**
|
|
654
654
|
* If KBA is set to "PIN" this will be set to the PIN code required. For security reasons, this
|
|
655
655
|
* field will only be visible to the creator of the envelope.
|
|
@@ -659,13 +659,13 @@ interface IRecipient {
|
|
|
659
659
|
* If KBA has been completed successfully, this will be set to true. For privacy reasons, this
|
|
660
660
|
* field will only be visible to the creator of the envelope and the recipient referenced.
|
|
661
661
|
*/
|
|
662
|
-
kba_completed
|
|
662
|
+
kba_completed?: boolean;
|
|
663
663
|
/**
|
|
664
664
|
* If KBA has been completed (or partially successfully, this will contain metadata related to
|
|
665
665
|
* the questions and answers from the process. For privacy reasons, this field will only be visible
|
|
666
666
|
* to the recipient referenced.
|
|
667
667
|
*/
|
|
668
|
-
kba_details
|
|
668
|
+
kba_details?: Record<string, any>;
|
|
669
669
|
envelope?: IEnvelope;
|
|
670
670
|
profile?: IProfile;
|
|
671
671
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -612,15 +612,15 @@ interface IRecipient {
|
|
|
612
612
|
profile_id: string;
|
|
613
613
|
status: TRecipientStatus;
|
|
614
614
|
email: string;
|
|
615
|
-
phone
|
|
615
|
+
phone?: string | null;
|
|
616
616
|
full_name?: string | null;
|
|
617
617
|
first_name: string;
|
|
618
618
|
last_name: string;
|
|
619
|
-
address
|
|
620
|
-
city
|
|
621
|
-
state
|
|
622
|
-
zip
|
|
623
|
-
ssn_last_4
|
|
619
|
+
address?: string | null;
|
|
620
|
+
city?: string | null;
|
|
621
|
+
state?: string | null;
|
|
622
|
+
zip?: string | null;
|
|
623
|
+
ssn_last_4?: string | null;
|
|
624
624
|
/**
|
|
625
625
|
* The sequence number indicates the order in which Recipients act. Multiple recipients may have the same sequence
|
|
626
626
|
* number, in which case they may act in parallel. (e.g. all Recipients at sequence 2 will receive invites once
|
|
@@ -640,16 +640,16 @@ interface IRecipient {
|
|
|
640
640
|
claimed: boolean;
|
|
641
641
|
agreed: boolean;
|
|
642
642
|
key_used_to_conclude?: string;
|
|
643
|
-
environment
|
|
643
|
+
environment?: string;
|
|
644
644
|
created_at: string;
|
|
645
645
|
updated_at: string;
|
|
646
|
-
last_attempt_at
|
|
646
|
+
last_attempt_at?: string;
|
|
647
647
|
/**
|
|
648
648
|
* If set, "KBA required" will carry through to automatically enable the same setting in Envelopes
|
|
649
649
|
* created from this template. For privacy reasons, this field will only be visible to the creator
|
|
650
650
|
* of the envelope and the recipient referenced.
|
|
651
651
|
*/
|
|
652
|
-
kba_method
|
|
652
|
+
kba_method?: "pin" | "identity" | null;
|
|
653
653
|
/**
|
|
654
654
|
* If KBA is set to "PIN" this will be set to the PIN code required. For security reasons, this
|
|
655
655
|
* field will only be visible to the creator of the envelope.
|
|
@@ -659,13 +659,13 @@ interface IRecipient {
|
|
|
659
659
|
* If KBA has been completed successfully, this will be set to true. For privacy reasons, this
|
|
660
660
|
* field will only be visible to the creator of the envelope and the recipient referenced.
|
|
661
661
|
*/
|
|
662
|
-
kba_completed
|
|
662
|
+
kba_completed?: boolean;
|
|
663
663
|
/**
|
|
664
664
|
* If KBA has been completed (or partially successfully, this will contain metadata related to
|
|
665
665
|
* the questions and answers from the process. For privacy reasons, this field will only be visible
|
|
666
666
|
* to the recipient referenced.
|
|
667
667
|
*/
|
|
668
|
-
kba_details
|
|
668
|
+
kba_details?: Record<string, any>;
|
|
669
669
|
envelope?: IEnvelope;
|
|
670
670
|
profile?: IProfile;
|
|
671
671
|
}
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdocs/js-sdk",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.53",
|
|
4
4
|
"private": false,
|
|
5
5
|
"homepage": "https://github.com/Verdocs/js-sdk",
|
|
6
6
|
"description": "Isomorphic JS SDK providing types and API wrappers for the Verdocs platform for Node and Browser clients",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdocs/js-sdk",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.53",
|
|
4
4
|
"private": false,
|
|
5
5
|
"homepage": "https://github.com/Verdocs/js-sdk",
|
|
6
6
|
"description": "Isomorphic JS SDK providing types and API wrappers for the Verdocs platform for Node and Browser clients",
|