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 +5 -0
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/types/schema.d.ts +4 -0
package/CHANGELOG.md
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
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;
|