@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.
package/Envelopes/Envelopes.d.ts
CHANGED
|
@@ -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. */
|
package/Templates/Templates.d.ts
CHANGED
|
@@ -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?:
|
|
158
|
+
sort_by?: IGetTemplateSummarySortBy;
|
|
158
159
|
ascending?: boolean;
|
|
159
160
|
row?: number;
|
|
160
161
|
page?: number;
|