@verdocs/js-sdk 3.10.7 → 3.10.8
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 +2 -1
- package/package.json +1 -1
package/Envelopes/Envelopes.d.ts
CHANGED
|
@@ -214,8 +214,9 @@ export interface ITimeRange {
|
|
|
214
214
|
end: string;
|
|
215
215
|
}
|
|
216
216
|
export interface IListEnvelopesParams {
|
|
217
|
-
|
|
217
|
+
view?: 'inbox' | 'sent' | 'action' | 'waiting' | 'completed';
|
|
218
218
|
q?: string;
|
|
219
|
+
status?: string[];
|
|
219
220
|
created_at?: ITimeRange;
|
|
220
221
|
is_owner?: boolean;
|
|
221
222
|
sort_by?: 'name' | 'created_at' | 'updated_at' | 'canceled_at' | 'status';
|