@verdocs/js-sdk 5.0.6 → 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;
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;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "5.0.6",
3
+ "version": "5.0.7",
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": "5.0.6",
3
+ "version": "5.0.7",
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",