@verdocs/js-sdk 3.6.5 → 3.6.6

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.
@@ -69,6 +69,8 @@ export interface IEnvelopeSearchParams {
69
69
  recipient_name?: string;
70
70
  /** At least one of the envelope's recipients must match the specified email address. */
71
71
  recipient_email?: string;
72
+ /** Match against envelope_name, recipient_name, or recipient_email all at once. */
73
+ name?: string;
72
74
  /** At least one of the envelope's recipients must match the specified ID. */
73
75
  recipient_id?: string;
74
76
  /** The date-range in which the envelope was created. Values should be specified in ISO8601 "UTC" format. */
@@ -142,6 +142,7 @@ export interface ISearchTimeRange {
142
142
  start_time: string;
143
143
  end_time: string;
144
144
  }
145
+ export type IGetTemplateSummarySortBy = 'created_at' | 'updated_at' | 'name' | 'last_used_at' | 'counter' | 'star_counter';
145
146
  export interface IGetTemplateSummaryParams {
146
147
  id?: string;
147
148
  name?: string;
@@ -154,7 +155,7 @@ export interface IGetTemplateSummaryParams {
154
155
  last_used_at?: ISearchTimeRange;
155
156
  is_personal?: boolean;
156
157
  is_public?: boolean;
157
- sort_by?: 'created_at' | 'updated_at' | 'name' | 'last_used_at' | 'counter' | 'star_counter';
158
+ sort_by?: IGetTemplateSummarySortBy;
158
159
  ascending?: boolean;
159
160
  row?: number;
160
161
  page?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "3.6.5",
3
+ "version": "3.6.6",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Verdocs JS SDK",