@verdocs/js-sdk 3.9.1 → 3.9.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/Envelopes.d.ts +18 -3
- package/package.json +1 -1
package/Envelopes/Envelopes.d.ts
CHANGED
|
@@ -199,11 +199,26 @@ export declare const getEnvelopeDocumentPageDisplayUri: (endpoint: VerdocsEndpoi
|
|
|
199
199
|
* to avoid unnecessary repeat server calls.
|
|
200
200
|
*/
|
|
201
201
|
export declare const throttledGetEnvelope: (endpoint: VerdocsEndpoint, envelopeId: string) => IEnvelope | Promise<IEnvelope>;
|
|
202
|
+
export interface ITimeRange {
|
|
203
|
+
start: string;
|
|
204
|
+
end: string;
|
|
205
|
+
}
|
|
202
206
|
export interface IListEnvelopesParams {
|
|
207
|
+
match?: string;
|
|
203
208
|
name?: string;
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
209
|
+
recipient_name?: string;
|
|
210
|
+
field_value?: string;
|
|
211
|
+
visibility?: 'private' | 'shared';
|
|
212
|
+
status?: ('pending' | 'in progress' | 'complete' | 'declined' | 'canceled')[];
|
|
213
|
+
recipient_status?: ('pending' | 'invited' | 'declined' | 'opened' | 'signed' | 'submitted' | 'canceled')[];
|
|
214
|
+
recipient_id?: string;
|
|
215
|
+
updated_at?: ITimeRange;
|
|
216
|
+
canceled_at?: ITimeRange;
|
|
217
|
+
created_at?: ITimeRange;
|
|
218
|
+
is_owner?: boolean;
|
|
219
|
+
is_recipient?: boolean;
|
|
220
|
+
template_id?: string;
|
|
221
|
+
sort?: 'name' | 'created_at' | 'updated_at' | 'canceled_at' | 'status';
|
|
207
222
|
direction?: 'asc' | 'desc';
|
|
208
223
|
page?: number;
|
|
209
224
|
rows?: number;
|