@verdocs/js-sdk 3.0.33 → 3.0.35
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/Envelopes/Envelopes.d.ts +1 -0
- package/Envelopes/Types.d.ts +3 -2
- package/package.json +1 -1
package/Envelopes/Envelopes.d.ts
CHANGED
package/Envelopes/Types.d.ts
CHANGED
|
@@ -91,20 +91,21 @@ export interface IEnvelopesSummary {
|
|
|
91
91
|
};
|
|
92
92
|
}
|
|
93
93
|
export interface IRecipient {
|
|
94
|
+
envelope_id: string;
|
|
95
|
+
role_name: string;
|
|
94
96
|
agreed: boolean;
|
|
95
97
|
claimed: boolean;
|
|
96
98
|
created_at: string;
|
|
97
99
|
delegated_to: string | null;
|
|
98
100
|
delegator: boolean;
|
|
99
101
|
email: string;
|
|
100
|
-
envelope_id: string;
|
|
101
102
|
full_name: string;
|
|
102
103
|
in_app_access_key?: string;
|
|
103
104
|
key_used_to_conclude?: string;
|
|
104
105
|
message: string | null;
|
|
105
106
|
phone: string | null;
|
|
106
107
|
profile_id: string;
|
|
107
|
-
|
|
108
|
+
environment: string;
|
|
108
109
|
/**
|
|
109
110
|
* The sequence number indicates the order in which Recipients act. Multiple recipients may have the same sequence
|
|
110
111
|
* number, in which case they may act in parallel. (e.g. all Recipients at sequence 2 will receive invites once
|