@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.
@@ -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
- sharing?: 'all' | 'personal' | 'shared' | 'public';
205
- starred?: 'all' | 'starred' | 'unstarred';
206
- sort?: 'name' | 'created_at' | 'updated_at' | 'last_used_at' | 'counter' | 'star_counter';
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "3.9.1",
3
+ "version": "3.9.2",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Verdocs JS SDK",