@verdocs/js-sdk 4.2.43 → 4.2.44

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
@@ -463,18 +463,18 @@ interface IEnvelope {
463
463
  organization_id: string;
464
464
  reminder_id: string | null;
465
465
  name: string;
466
- no_contact: boolean;
466
+ no_contact?: boolean;
467
467
  created_at: string;
468
468
  updated_at: string;
469
469
  canceled_at: string;
470
470
  /** Defaults to 'private'. If set to 'shared', this envelope will be visible to other users in the same organization. Ignored for personal profiles. */
471
471
  visibility: "private" | "shared";
472
- search_key: string | null;
472
+ search_key?: string | null;
473
473
  /**
474
474
  * Storage for arbitrary data that may be used e.g. to track source database/record IDs to relate Envelopes back to
475
475
  * internal systems/applications.
476
476
  */
477
- data: Record<string, any> | null;
477
+ data?: Record<string, any> | null;
478
478
  profile?: IProfile;
479
479
  template?: ITemplate | null;
480
480
  organization?: IOrganization;
@@ -607,6 +607,8 @@ interface IKbaPINRequired {
607
607
  type: "pin";
608
608
  }
609
609
  interface IRecipient {
610
+ /** Used only by the Web SDK during builder processes. Not stored in the backend. */
611
+ id?: string | null;
610
612
  envelope_id: string;
611
613
  role_name: string;
612
614
  profile_id: string;
@@ -686,6 +688,8 @@ interface IReminder {
686
688
  * "Unknown" roles are dynamic, and will be filled in later when the envelope is created.
687
689
  */
688
690
  interface IRole {
691
+ /** Used only by the Web SDK during builder processes. Not stored in the backend. */
692
+ id?: string | null;
689
693
  template_id: string;
690
694
  // The name of the recipient. Note that recipients do not have a separate ID - they are uniquely identified by name.
691
695
  name: string;
package/dist/index.d.ts CHANGED
@@ -463,18 +463,18 @@ interface IEnvelope {
463
463
  organization_id: string;
464
464
  reminder_id: string | null;
465
465
  name: string;
466
- no_contact: boolean;
466
+ no_contact?: boolean;
467
467
  created_at: string;
468
468
  updated_at: string;
469
469
  canceled_at: string;
470
470
  /** Defaults to 'private'. If set to 'shared', this envelope will be visible to other users in the same organization. Ignored for personal profiles. */
471
471
  visibility: "private" | "shared";
472
- search_key: string | null;
472
+ search_key?: string | null;
473
473
  /**
474
474
  * Storage for arbitrary data that may be used e.g. to track source database/record IDs to relate Envelopes back to
475
475
  * internal systems/applications.
476
476
  */
477
- data: Record<string, any> | null;
477
+ data?: Record<string, any> | null;
478
478
  profile?: IProfile;
479
479
  template?: ITemplate | null;
480
480
  organization?: IOrganization;
@@ -607,6 +607,8 @@ interface IKbaPINRequired {
607
607
  type: "pin";
608
608
  }
609
609
  interface IRecipient {
610
+ /** Used only by the Web SDK during builder processes. Not stored in the backend. */
611
+ id?: string | null;
610
612
  envelope_id: string;
611
613
  role_name: string;
612
614
  profile_id: string;
@@ -686,6 +688,8 @@ interface IReminder {
686
688
  * "Unknown" roles are dynamic, and will be filled in later when the envelope is created.
687
689
  */
688
690
  interface IRole {
691
+ /** Used only by the Web SDK during builder processes. Not stored in the backend. */
692
+ id?: string | null;
689
693
  template_id: string;
690
694
  // The name of the recipient. Note that recipients do not have a separate ID - they are uniquely identified by name.
691
695
  name: string;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "4.2.43",
3
+ "version": "4.2.44",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Isomorphic JS 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": "4.2.43",
3
+ "version": "4.2.44",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Isomorphic JS SDK providing types and API wrappers for the Verdocs platform for Node and Browser clients",