@verdocs/js-sdk 3.1.1 → 3.1.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.
@@ -66,7 +66,7 @@ export interface IEnvelopeSearchParams {
66
66
  /** At least one of the envelope's recipients must match the specified ID. */
67
67
  recipient_id?: string;
68
68
  /** The date-range in which the envelope was created. Values should be specified in ISO8601 "UTC" format. */
69
- created_at: {
69
+ created_at?: {
70
70
  start_time: string;
71
71
  end_time: string;
72
72
  };
@@ -75,12 +75,12 @@ export interface IEnvelopeSearchParams {
75
75
  * Note that any operations that alter the envelope are considered "updates", including status changes (cancellation),
76
76
  * recipient actions (opening/signing), etc.
77
77
  */
78
- updated_at: {
78
+ updated_at?: {
79
79
  start_time: string;
80
80
  end_time: string;
81
81
  };
82
82
  /** The date-range in which the envelope was canceled. Values should be specified in ISO8601 "UTC" format. */
83
- canceled_at: {
83
+ canceled_at?: {
84
84
  start_time: string;
85
85
  end_time: string;
86
86
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Verdocs JS SDK",