@verdocs/js-sdk 5.0.5 → 5.0.7

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
@@ -537,6 +537,8 @@ interface IEnvelopeField {
537
537
  type: TFieldType;
538
538
  /** If true, the field will be required */
539
539
  required: boolean | null;
540
+ /** If true, the field will be not be editable by the participant(s). NOTE: Fields may not be both required and readonly. */
541
+ readonly: boolean | null;
540
542
  /** @deprecated. Use top-level fields instead. */
541
543
  settings: IEnvelopeFieldSettings | null;
542
544
  validator: string | null;
@@ -860,6 +862,8 @@ interface ITemplateField {
860
862
  document_id: string;
861
863
  type: TFieldType;
862
864
  required: boolean;
865
+ /** If true, the field will be not be editable by the participant(s). NOTE: Fields may not be both required and readonly. */
866
+ readonly: boolean | null;
863
867
  /** @deprecated. Use top-level fields instead. */
864
868
  settings: ITemplateFieldSetting | null;
865
869
  page: number;
@@ -1645,6 +1649,7 @@ interface IKbaIdentity {
1645
1649
  state?: string;
1646
1650
  zip?: string;
1647
1651
  ssnLast4?: string;
1652
+ email?: string;
1648
1653
  }
1649
1654
  /**
1650
1655
  * Submit an identity response to a KBA challenge.
package/dist/index.d.ts CHANGED
@@ -537,6 +537,8 @@ interface IEnvelopeField {
537
537
  type: TFieldType;
538
538
  /** If true, the field will be required */
539
539
  required: boolean | null;
540
+ /** If true, the field will be not be editable by the participant(s). NOTE: Fields may not be both required and readonly. */
541
+ readonly: boolean | null;
540
542
  /** @deprecated. Use top-level fields instead. */
541
543
  settings: IEnvelopeFieldSettings | null;
542
544
  validator: string | null;
@@ -860,6 +862,8 @@ interface ITemplateField {
860
862
  document_id: string;
861
863
  type: TFieldType;
862
864
  required: boolean;
865
+ /** If true, the field will be not be editable by the participant(s). NOTE: Fields may not be both required and readonly. */
866
+ readonly: boolean | null;
863
867
  /** @deprecated. Use top-level fields instead. */
864
868
  settings: ITemplateFieldSetting | null;
865
869
  page: number;
@@ -1645,6 +1649,7 @@ interface IKbaIdentity {
1645
1649
  state?: string;
1646
1650
  zip?: string;
1647
1651
  ssnLast4?: string;
1652
+ email?: string;
1648
1653
  }
1649
1654
  /**
1650
1655
  * Submit an identity response to a KBA challenge.