instasign 1.1.8 → 1.1.9
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 +6 -1
- package/dist/index.d.cts +8 -6
- package/dist/index.d.ts +8 -6
- package/package.json +1 -1
- package/types/schema.d.ts +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.1.9] - 2026-03-27
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- **Sign Requests API**: `envelopes.addAll()` now accepts an optional `expirationDate` parameter.
|
|
9
|
+
|
|
5
10
|
## [1.1.8] - 2026-03-27
|
|
6
11
|
|
|
7
12
|
### Added
|
|
8
13
|
- **Type Exports**: `VALID_SIGN_REQUEST_STATUSES` now exports type `expired`
|
|
9
|
-
- **Sign Requests API**: `signRequests.create()`
|
|
14
|
+
- **Sign Requests API**: `signRequests.create()` now accepts an optional `expirationDate` parameter.
|
|
10
15
|
|
|
11
16
|
## [1.1.7] - 2026-03-26
|
|
12
17
|
|
package/dist/index.d.cts
CHANGED
|
@@ -37,6 +37,8 @@ interface paths {
|
|
|
37
37
|
clientReferenceId?: string;
|
|
38
38
|
/** @enum {string} */
|
|
39
39
|
signatureType?: "otp" | "advanced" | "qualified";
|
|
40
|
+
/** Format: date-time */
|
|
41
|
+
expirationDate?: string;
|
|
40
42
|
}[];
|
|
41
43
|
};
|
|
42
44
|
};
|
|
@@ -267,7 +269,7 @@ interface paths {
|
|
|
267
269
|
"application/json": {
|
|
268
270
|
name?: string;
|
|
269
271
|
/** @enum {string} */
|
|
270
|
-
status?: "pending" | "in-progress" | "completed" | "
|
|
272
|
+
status?: "pending" | "in-progress" | "completed" | "canceled";
|
|
271
273
|
clientReferenceId?: string;
|
|
272
274
|
signRequests?: string[];
|
|
273
275
|
/** @enum {string} */
|
|
@@ -610,13 +612,13 @@ interface components {
|
|
|
610
612
|
name: string;
|
|
611
613
|
description?: string;
|
|
612
614
|
/** @enum {string} */
|
|
613
|
-
status: "pending" | "in-progress" | "completed" | "
|
|
615
|
+
status: "pending" | "in-progress" | "completed" | "canceled";
|
|
614
616
|
clientReferenceId?: string;
|
|
615
617
|
signRequestsCount: number;
|
|
616
618
|
signRequests: {
|
|
617
619
|
requestId: string;
|
|
618
620
|
/** @enum {string} */
|
|
619
|
-
status: "pending" | "completed" | "canceled" | "queued";
|
|
621
|
+
status: "pending" | "completed" | "canceled" | "queued" | "expired";
|
|
620
622
|
/** @enum {string} */
|
|
621
623
|
signatureType: "otp" | "advanced" | "qualified";
|
|
622
624
|
fileName: string;
|
|
@@ -640,13 +642,13 @@ interface components {
|
|
|
640
642
|
name: string;
|
|
641
643
|
description?: string;
|
|
642
644
|
/** @enum {string} */
|
|
643
|
-
status: "pending" | "in-progress" | "completed" | "
|
|
645
|
+
status: "pending" | "in-progress" | "completed" | "canceled";
|
|
644
646
|
clientReferenceId?: string;
|
|
645
647
|
signRequestsCount: number;
|
|
646
648
|
signRequests: {
|
|
647
649
|
requestId: string;
|
|
648
650
|
/** @enum {string} */
|
|
649
|
-
status: "pending" | "completed" | "canceled" | "queued";
|
|
651
|
+
status: "pending" | "completed" | "canceled" | "queued" | "expired";
|
|
650
652
|
/** @enum {string} */
|
|
651
653
|
signatureType: "otp" | "advanced" | "qualified";
|
|
652
654
|
fileName: string;
|
|
@@ -685,7 +687,7 @@ interface components {
|
|
|
685
687
|
SignRequestGetResult: {
|
|
686
688
|
requestId: string;
|
|
687
689
|
/** @enum {string} */
|
|
688
|
-
status: "pending" | "completed" | "canceled" | "queued";
|
|
690
|
+
status: "pending" | "completed" | "canceled" | "queued" | "expired";
|
|
689
691
|
/** @enum {string} */
|
|
690
692
|
signatureType?: "otp" | "advanced" | "qualified";
|
|
691
693
|
fileName: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -37,6 +37,8 @@ interface paths {
|
|
|
37
37
|
clientReferenceId?: string;
|
|
38
38
|
/** @enum {string} */
|
|
39
39
|
signatureType?: "otp" | "advanced" | "qualified";
|
|
40
|
+
/** Format: date-time */
|
|
41
|
+
expirationDate?: string;
|
|
40
42
|
}[];
|
|
41
43
|
};
|
|
42
44
|
};
|
|
@@ -267,7 +269,7 @@ interface paths {
|
|
|
267
269
|
"application/json": {
|
|
268
270
|
name?: string;
|
|
269
271
|
/** @enum {string} */
|
|
270
|
-
status?: "pending" | "in-progress" | "completed" | "
|
|
272
|
+
status?: "pending" | "in-progress" | "completed" | "canceled";
|
|
271
273
|
clientReferenceId?: string;
|
|
272
274
|
signRequests?: string[];
|
|
273
275
|
/** @enum {string} */
|
|
@@ -610,13 +612,13 @@ interface components {
|
|
|
610
612
|
name: string;
|
|
611
613
|
description?: string;
|
|
612
614
|
/** @enum {string} */
|
|
613
|
-
status: "pending" | "in-progress" | "completed" | "
|
|
615
|
+
status: "pending" | "in-progress" | "completed" | "canceled";
|
|
614
616
|
clientReferenceId?: string;
|
|
615
617
|
signRequestsCount: number;
|
|
616
618
|
signRequests: {
|
|
617
619
|
requestId: string;
|
|
618
620
|
/** @enum {string} */
|
|
619
|
-
status: "pending" | "completed" | "canceled" | "queued";
|
|
621
|
+
status: "pending" | "completed" | "canceled" | "queued" | "expired";
|
|
620
622
|
/** @enum {string} */
|
|
621
623
|
signatureType: "otp" | "advanced" | "qualified";
|
|
622
624
|
fileName: string;
|
|
@@ -640,13 +642,13 @@ interface components {
|
|
|
640
642
|
name: string;
|
|
641
643
|
description?: string;
|
|
642
644
|
/** @enum {string} */
|
|
643
|
-
status: "pending" | "in-progress" | "completed" | "
|
|
645
|
+
status: "pending" | "in-progress" | "completed" | "canceled";
|
|
644
646
|
clientReferenceId?: string;
|
|
645
647
|
signRequestsCount: number;
|
|
646
648
|
signRequests: {
|
|
647
649
|
requestId: string;
|
|
648
650
|
/** @enum {string} */
|
|
649
|
-
status: "pending" | "completed" | "canceled" | "queued";
|
|
651
|
+
status: "pending" | "completed" | "canceled" | "queued" | "expired";
|
|
650
652
|
/** @enum {string} */
|
|
651
653
|
signatureType: "otp" | "advanced" | "qualified";
|
|
652
654
|
fileName: string;
|
|
@@ -685,7 +687,7 @@ interface components {
|
|
|
685
687
|
SignRequestGetResult: {
|
|
686
688
|
requestId: string;
|
|
687
689
|
/** @enum {string} */
|
|
688
|
-
status: "pending" | "completed" | "canceled" | "queued";
|
|
690
|
+
status: "pending" | "completed" | "canceled" | "queued" | "expired";
|
|
689
691
|
/** @enum {string} */
|
|
690
692
|
signatureType?: "otp" | "advanced" | "qualified";
|
|
691
693
|
fileName: string;
|
package/package.json
CHANGED
package/types/schema.d.ts
CHANGED
|
@@ -35,6 +35,8 @@ export interface paths {
|
|
|
35
35
|
clientReferenceId?: string;
|
|
36
36
|
/** @enum {string} */
|
|
37
37
|
signatureType?: "otp" | "advanced" | "qualified";
|
|
38
|
+
/** Format: date-time */
|
|
39
|
+
expirationDate?: string;
|
|
38
40
|
}[];
|
|
39
41
|
};
|
|
40
42
|
};
|
|
@@ -265,7 +267,7 @@ export interface paths {
|
|
|
265
267
|
"application/json": {
|
|
266
268
|
name?: string;
|
|
267
269
|
/** @enum {string} */
|
|
268
|
-
status?: "pending" | "in-progress" | "completed" | "
|
|
270
|
+
status?: "pending" | "in-progress" | "completed" | "canceled";
|
|
269
271
|
clientReferenceId?: string;
|
|
270
272
|
signRequests?: string[];
|
|
271
273
|
/** @enum {string} */
|
|
@@ -608,13 +610,13 @@ export interface components {
|
|
|
608
610
|
name: string;
|
|
609
611
|
description?: string;
|
|
610
612
|
/** @enum {string} */
|
|
611
|
-
status: "pending" | "in-progress" | "completed" | "
|
|
613
|
+
status: "pending" | "in-progress" | "completed" | "canceled";
|
|
612
614
|
clientReferenceId?: string;
|
|
613
615
|
signRequestsCount: number;
|
|
614
616
|
signRequests: {
|
|
615
617
|
requestId: string;
|
|
616
618
|
/** @enum {string} */
|
|
617
|
-
status: "pending" | "completed" | "canceled" | "queued";
|
|
619
|
+
status: "pending" | "completed" | "canceled" | "queued" | "expired";
|
|
618
620
|
/** @enum {string} */
|
|
619
621
|
signatureType: "otp" | "advanced" | "qualified";
|
|
620
622
|
fileName: string;
|
|
@@ -638,13 +640,13 @@ export interface components {
|
|
|
638
640
|
name: string;
|
|
639
641
|
description?: string;
|
|
640
642
|
/** @enum {string} */
|
|
641
|
-
status: "pending" | "in-progress" | "completed" | "
|
|
643
|
+
status: "pending" | "in-progress" | "completed" | "canceled";
|
|
642
644
|
clientReferenceId?: string;
|
|
643
645
|
signRequestsCount: number;
|
|
644
646
|
signRequests: {
|
|
645
647
|
requestId: string;
|
|
646
648
|
/** @enum {string} */
|
|
647
|
-
status: "pending" | "completed" | "canceled" | "queued";
|
|
649
|
+
status: "pending" | "completed" | "canceled" | "queued" | "expired";
|
|
648
650
|
/** @enum {string} */
|
|
649
651
|
signatureType: "otp" | "advanced" | "qualified";
|
|
650
652
|
fileName: string;
|
|
@@ -683,7 +685,7 @@ export interface components {
|
|
|
683
685
|
SignRequestGetResult: {
|
|
684
686
|
requestId: string;
|
|
685
687
|
/** @enum {string} */
|
|
686
|
-
status: "pending" | "completed" | "canceled" | "queued";
|
|
688
|
+
status: "pending" | "completed" | "canceled" | "queued" | "expired";
|
|
687
689
|
/** @enum {string} */
|
|
688
690
|
signatureType?: "otp" | "advanced" | "qualified";
|
|
689
691
|
fileName: string;
|