@verdocs/js-sdk 4.0.9 → 4.0.10
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 +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -302,8 +302,8 @@ interface IEnvelopeField {
|
|
|
302
302
|
/** The type of the field */
|
|
303
303
|
type: TFieldType;
|
|
304
304
|
/** If true, the field will be required */
|
|
305
|
-
required: boolean;
|
|
306
|
-
settings
|
|
305
|
+
required: boolean | null;
|
|
306
|
+
settings: IEnvelopeFieldSettings | null;
|
|
307
307
|
validator: string | null;
|
|
308
308
|
/** If set, the placeholder/label for the field. */
|
|
309
309
|
label: string | null;
|
|
@@ -596,7 +596,7 @@ interface ITemplateField {
|
|
|
596
596
|
document_id: string;
|
|
597
597
|
type: TFieldType;
|
|
598
598
|
required: boolean;
|
|
599
|
-
settings: ITemplateFieldSetting;
|
|
599
|
+
settings: ITemplateFieldSetting | null;
|
|
600
600
|
page: number;
|
|
601
601
|
validator: string | null;
|
|
602
602
|
label: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -302,8 +302,8 @@ interface IEnvelopeField {
|
|
|
302
302
|
/** The type of the field */
|
|
303
303
|
type: TFieldType;
|
|
304
304
|
/** If true, the field will be required */
|
|
305
|
-
required: boolean;
|
|
306
|
-
settings
|
|
305
|
+
required: boolean | null;
|
|
306
|
+
settings: IEnvelopeFieldSettings | null;
|
|
307
307
|
validator: string | null;
|
|
308
308
|
/** If set, the placeholder/label for the field. */
|
|
309
309
|
label: string | null;
|
|
@@ -596,7 +596,7 @@ interface ITemplateField {
|
|
|
596
596
|
document_id: string;
|
|
597
597
|
type: TFieldType;
|
|
598
598
|
required: boolean;
|
|
599
|
-
settings: ITemplateFieldSetting;
|
|
599
|
+
settings: ITemplateFieldSetting | null;
|
|
600
600
|
page: number;
|
|
601
601
|
validator: string | null;
|
|
602
602
|
label: string | null;
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdocs/js-sdk",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.10",
|
|
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.0.
|
|
3
|
+
"version": "4.0.10",
|
|
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",
|