@verdocs/js-sdk 3.2.0 → 3.2.1
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 +3 -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,13 @@ 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;
|
|
149
146
|
type: 'attachment' | 'certificate';
|
|
150
147
|
created_at: string;
|
|
151
|
-
|
|
148
|
+
updated_at: string;
|
|
152
149
|
}
|
|
153
150
|
export interface IDocumentFieldOptions {
|
|
154
151
|
/** The unique ID of the field */
|