@verdocs/js-sdk 3.2.0 → 3.2.2
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/Types.d.ts +4 -6
- package/package.json +1 -1
package/Envelopes/Types.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { IProfile } from '../Users/Types';
|
|
2
|
-
import { IPage } from '../Templates/Types';
|
|
3
2
|
export interface ISigningSessionRequest {
|
|
4
3
|
envelopeId: string;
|
|
5
4
|
roleId: string;
|
|
@@ -140,15 +139,14 @@ export interface IRecipient {
|
|
|
140
139
|
export interface IEnvelopeDocument {
|
|
141
140
|
id: string;
|
|
142
141
|
envelope_id: string;
|
|
143
|
-
mime: string;
|
|
144
142
|
name: string;
|
|
145
|
-
page_numbers: number;
|
|
146
|
-
updated_at: string;
|
|
147
143
|
url: string;
|
|
148
|
-
|
|
144
|
+
mime: string;
|
|
145
|
+
page_numbers: number;
|
|
146
|
+
template_document_id: string | null;
|
|
149
147
|
type: 'attachment' | 'certificate';
|
|
150
148
|
created_at: string;
|
|
151
|
-
|
|
149
|
+
updated_at: string;
|
|
152
150
|
}
|
|
153
151
|
export interface IDocumentFieldOptions {
|
|
154
152
|
/** The unique ID of the field */
|