@openfilz-sdk/typescript-ee 1.9.3 → 1.9.5

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.
@@ -1 +1 @@
1
- b8414ee1d5623e54523f1ed576b51658466f23631c26b5d44447cff80b30144e
1
+ 2a31082c16be292a2cd25eb4a554302183209f31161fe78b3a6c49b6750bc413
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @openfilz-sdk/typescript-ee@1.9.3
1
+ ## @openfilz-sdk/typescript-ee@1.9.5
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @openfilz-sdk/typescript-ee@1.9.3 --save
39
+ npm install @openfilz-sdk/typescript-ee@1.9.5 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -22,5 +22,6 @@ export interface PdfInfo {
22
22
  'pages'?: Array<PdfPageInfo>;
23
23
  'encrypted'?: boolean;
24
24
  'signed'?: boolean;
25
+ 'activeSignatureEnvelope'?: boolean;
25
26
  'outline'?: Array<PdfOutlineEntry>;
26
27
  }
@@ -22,5 +22,6 @@ export interface PdfInfo {
22
22
  'pages'?: Array<PdfPageInfo>;
23
23
  'encrypted'?: boolean;
24
24
  'signed'?: boolean;
25
+ 'activeSignatureEnvelope'?: boolean;
25
26
  'outline'?: Array<PdfOutlineEntry>;
26
27
  }
package/docs/PdfInfo.md CHANGED
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **pages** | [**Array&lt;PdfPageInfo&gt;**](PdfPageInfo.md) | | [optional] [default to undefined]
14
14
  **encrypted** | **boolean** | | [optional] [default to undefined]
15
15
  **signed** | **boolean** | | [optional] [default to undefined]
16
+ **activeSignatureEnvelope** | **boolean** | | [optional] [default to undefined]
16
17
  **outline** | [**Array&lt;PdfOutlineEntry&gt;**](PdfOutlineEntry.md) | | [optional] [default to undefined]
17
18
 
18
19
  ## Example
@@ -28,6 +29,7 @@ const instance: PdfInfo = {
28
29
  pages,
29
30
  encrypted,
30
31
  signed,
32
+ activeSignatureEnvelope,
31
33
  outline,
32
34
  };
33
35
  ```
@@ -31,6 +31,7 @@ export interface PdfInfo {
31
31
  'pages'?: Array<PdfPageInfo>;
32
32
  'encrypted'?: boolean;
33
33
  'signed'?: boolean;
34
+ 'activeSignatureEnvelope'?: boolean;
34
35
  'outline'?: Array<PdfOutlineEntry>;
35
36
  }
36
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfilz-sdk/typescript-ee",
3
- "version": "1.9.3",
3
+ "version": "1.9.5",
4
4
  "description": "OpenAPI client for @openfilz-sdk/typescript-ee",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {