@openfilz-sdk/typescript-ee 1.6.6 → 1.6.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.
@@ -1 +1 @@
1
- e6911096a9808097a5f80538ea42094c6800197fc178374e732c266fd109002f
1
+ c7b50acb04abc267eaff2ba784a7b16453d461600b68acea47ab15d9adc5c2c1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @openfilz-sdk/typescript-ee@1.6.6
1
+ ## @openfilz-sdk/typescript-ee@1.6.7
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.6.6 --save
39
+ npm install @openfilz-sdk/typescript-ee@1.6.7 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -15,4 +15,5 @@ export interface ScanRequestDto {
15
15
  'format'?: string;
16
16
  'targetFolderPath'?: string;
17
17
  'targetFolderId'?: string;
18
+ 'pageSize'?: string;
18
19
  }
@@ -19,4 +19,6 @@ export interface ScannerInfoDto {
19
19
  'supportedFormats'?: Array<string>;
20
20
  'supportedResolutions'?: Array<number>;
21
21
  'supportedColorModes'?: Array<string>;
22
+ 'maxWidth'?: number;
23
+ 'maxHeight'?: number;
22
24
  }
@@ -15,4 +15,5 @@ export interface ScanRequestDto {
15
15
  'format'?: string;
16
16
  'targetFolderPath'?: string;
17
17
  'targetFolderId'?: string;
18
+ 'pageSize'?: string;
18
19
  }
@@ -19,4 +19,6 @@ export interface ScannerInfoDto {
19
19
  'supportedFormats'?: Array<string>;
20
20
  'supportedResolutions'?: Array<number>;
21
21
  'supportedColorModes'?: Array<string>;
22
+ 'maxWidth'?: number;
23
+ 'maxHeight'?: number;
22
24
  }
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **format** | **string** | | [optional] [default to undefined]
11
11
  **targetFolderPath** | **string** | | [optional] [default to undefined]
12
12
  **targetFolderId** | **string** | | [optional] [default to undefined]
13
+ **pageSize** | **string** | | [optional] [default to undefined]
13
14
 
14
15
  ## Example
15
16
 
@@ -22,6 +23,7 @@ const instance: ScanRequestDto = {
22
23
  format,
23
24
  targetFolderPath,
24
25
  targetFolderId,
26
+ pageSize,
25
27
  };
26
28
  ```
27
29
 
@@ -14,6 +14,8 @@ Name | Type | Description | Notes
14
14
  **supportedFormats** | **Array&lt;string&gt;** | | [optional] [default to undefined]
15
15
  **supportedResolutions** | **Array&lt;number&gt;** | | [optional] [default to undefined]
16
16
  **supportedColorModes** | **Array&lt;string&gt;** | | [optional] [default to undefined]
17
+ **maxWidth** | **number** | | [optional] [default to undefined]
18
+ **maxHeight** | **number** | | [optional] [default to undefined]
17
19
 
18
20
  ## Example
19
21
 
@@ -30,6 +32,8 @@ const instance: ScannerInfoDto = {
30
32
  supportedFormats,
31
33
  supportedResolutions,
32
34
  supportedColorModes,
35
+ maxWidth,
36
+ maxHeight,
33
37
  };
34
38
  ```
35
39
 
@@ -20,5 +20,6 @@ export interface ScanRequestDto {
20
20
  'format'?: string;
21
21
  'targetFolderPath'?: string;
22
22
  'targetFolderId'?: string;
23
+ 'pageSize'?: string;
23
24
  }
24
25
 
@@ -24,5 +24,7 @@ export interface ScannerInfoDto {
24
24
  'supportedFormats'?: Array<string>;
25
25
  'supportedResolutions'?: Array<number>;
26
26
  'supportedColorModes'?: Array<string>;
27
+ 'maxWidth'?: number;
28
+ 'maxHeight'?: number;
27
29
  }
28
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfilz-sdk/typescript-ee",
3
- "version": "1.6.6",
3
+ "version": "1.6.7",
4
4
  "description": "OpenAPI client for @openfilz-sdk/typescript-ee",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {