@verdocs/js-sdk 6.6.2 → 6.6.3

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/dist/index.d.mts CHANGED
@@ -508,7 +508,7 @@ type TAccessKey = IInPersonAccessKey | IInAppAccessKey | IEmailAccessKey | ISMSA
508
508
  interface IEnvelope {
509
509
  /** Unique identifier for the envelope (UUID) */
510
510
  id: string;
511
- /** Current status of the envelope. Note that 'complete', 'declined', and 'canceled' are immutable/permanent end states. */
511
+ /** Current status of the envelope. Note that 'complete', 'declined', and 'canceled' are immutable/permanent end states. Also, 'complete' does NOT mean "fully signed in all aspects" (see "signed" for that). 'complete' means complete from a user's perspective: all required data has been submitted and workflow steps completed. */
512
512
  status: TEnvelopeStatus;
513
513
  /** ID of the envelope's creator. */
514
514
  profile_id: string;
@@ -540,7 +540,7 @@ interface IEnvelope {
540
540
  expires_at?: string;
541
541
  /** Defaults to 'private'. If set to 'shared', this envelope will be visible to other users in the same organization. Ignored for personal profiles. */
542
542
  visibility: "private" | "shared";
543
- /** If true, the attachments have been signed with the Verdocs AATL signing certificate. */
543
+ /** If true, the envelope is fully submitted, processed, certificate-generated, and all documents have been stamped and signed. */
544
544
  signed: boolean;
545
545
  /**
546
546
  * Storage for arbitrary data that may be used e.g. to track source database/record IDs to relate Envelopes back to
@@ -581,6 +581,8 @@ interface IEnvelopeDocument {
581
581
  mime: string;
582
582
  /** File size (bytes) */
583
583
  size: number;
584
+ /** Whether the file has been signed. Note that document.signed is different from envelope.signed. Documents are signed first, then the certificate is created and signed, then the envelope is finally marked signed. */
585
+ signed: boolean;
584
586
  /** Collection of width/height dimensions for each page */
585
587
  page_sizes: {
586
588
  width: number;
package/dist/index.d.ts CHANGED
@@ -508,7 +508,7 @@ type TAccessKey = IInPersonAccessKey | IInAppAccessKey | IEmailAccessKey | ISMSA
508
508
  interface IEnvelope {
509
509
  /** Unique identifier for the envelope (UUID) */
510
510
  id: string;
511
- /** Current status of the envelope. Note that 'complete', 'declined', and 'canceled' are immutable/permanent end states. */
511
+ /** Current status of the envelope. Note that 'complete', 'declined', and 'canceled' are immutable/permanent end states. Also, 'complete' does NOT mean "fully signed in all aspects" (see "signed" for that). 'complete' means complete from a user's perspective: all required data has been submitted and workflow steps completed. */
512
512
  status: TEnvelopeStatus;
513
513
  /** ID of the envelope's creator. */
514
514
  profile_id: string;
@@ -540,7 +540,7 @@ interface IEnvelope {
540
540
  expires_at?: string;
541
541
  /** Defaults to 'private'. If set to 'shared', this envelope will be visible to other users in the same organization. Ignored for personal profiles. */
542
542
  visibility: "private" | "shared";
543
- /** If true, the attachments have been signed with the Verdocs AATL signing certificate. */
543
+ /** If true, the envelope is fully submitted, processed, certificate-generated, and all documents have been stamped and signed. */
544
544
  signed: boolean;
545
545
  /**
546
546
  * Storage for arbitrary data that may be used e.g. to track source database/record IDs to relate Envelopes back to
@@ -581,6 +581,8 @@ interface IEnvelopeDocument {
581
581
  mime: string;
582
582
  /** File size (bytes) */
583
583
  size: number;
584
+ /** Whether the file has been signed. Note that document.signed is different from envelope.signed. Documents are signed first, then the certificate is created and signed, then the envelope is finally marked signed. */
585
+ signed: boolean;
584
586
  /** Collection of width/height dimensions for each page */
585
587
  page_sizes: {
586
588
  width: number;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "6.6.2",
3
+ "version": "6.6.3",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Isomorphic JS/TS SDK providing types and API wrappers for the Verdocs platform for Node and browser clients",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "6.6.2",
3
+ "version": "6.6.3",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Isomorphic JS/TS SDK providing types and API wrappers for the Verdocs platform for Node and browser clients",