instasign 1.1.10 → 1.1.11

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/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.1.11] - 2026-03-27
6
+
7
+ ### Added
8
+ - **Envelopes API**: `envelopes.list()` now returns `expirationDate` for sign requests.
9
+
5
10
  ## [1.1.10] - 2026-03-27
6
11
 
7
12
  ### Changed
package/dist/index.d.cts CHANGED
@@ -628,6 +628,8 @@ interface components {
628
628
  [key: string]: unknown;
629
629
  };
630
630
  clientReferenceId?: string;
631
+ /** Format: date-time */
632
+ expirationDate?: string;
631
633
  }[];
632
634
  /** Format: date-time */
633
635
  createdAt: string;
@@ -658,6 +660,8 @@ interface components {
658
660
  [key: string]: unknown;
659
661
  };
660
662
  clientReferenceId?: string;
663
+ /** Format: date-time */
664
+ expirationDate?: string;
661
665
  }[];
662
666
  /** Format: date-time */
663
667
  createdAt: string;
package/dist/index.d.ts CHANGED
@@ -628,6 +628,8 @@ interface components {
628
628
  [key: string]: unknown;
629
629
  };
630
630
  clientReferenceId?: string;
631
+ /** Format: date-time */
632
+ expirationDate?: string;
631
633
  }[];
632
634
  /** Format: date-time */
633
635
  createdAt: string;
@@ -658,6 +660,8 @@ interface components {
658
660
  [key: string]: unknown;
659
661
  };
660
662
  clientReferenceId?: string;
663
+ /** Format: date-time */
664
+ expirationDate?: string;
661
665
  }[];
662
666
  /** Format: date-time */
663
667
  createdAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "instasign",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "Instasign API wrapper",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
package/types/schema.d.ts CHANGED
@@ -626,6 +626,8 @@ export interface components {
626
626
  [key: string]: unknown;
627
627
  };
628
628
  clientReferenceId?: string;
629
+ /** Format: date-time */
630
+ expirationDate?: string;
629
631
  }[];
630
632
  /** Format: date-time */
631
633
  createdAt: string;
@@ -656,6 +658,8 @@ export interface components {
656
658
  [key: string]: unknown;
657
659
  };
658
660
  clientReferenceId?: string;
661
+ /** Format: date-time */
662
+ expirationDate?: string;
659
663
  }[];
660
664
  /** Format: date-time */
661
665
  createdAt: string;