@openfilz-sdk/typescript 1.1.18 → 1.1.19

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
- 54cc57540aea213e5768d9f17ffaf630bcac4aa98c0c692108b5b241d09b4905
1
+ 85bc4b67ef2e1e15a94b6d7c2d0f13b5b3109a5b7580795fb3628de648ad879f
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @openfilz-sdk/typescript@1.1.18
1
+ ## @openfilz-sdk/typescript@1.1.19
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@1.1.18 --save
39
+ npm install @openfilz-sdk/typescript@1.1.19 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -15,4 +15,5 @@ export interface Settings {
15
15
  'userQuotaMB'?: number;
16
16
  'language'?: string;
17
17
  'theme'?: string;
18
+ 'thumbnailsActive'?: boolean;
18
19
  }
@@ -13,4 +13,5 @@ export interface Suggest {
13
13
  'id'?: string;
14
14
  's'?: string;
15
15
  'ext'?: string;
16
+ 'contentSnippet'?: string;
16
17
  }
@@ -15,4 +15,5 @@ export interface Settings {
15
15
  'userQuotaMB'?: number;
16
16
  'language'?: string;
17
17
  'theme'?: string;
18
+ 'thumbnailsActive'?: boolean;
18
19
  }
@@ -13,4 +13,5 @@ export interface Suggest {
13
13
  'id'?: string;
14
14
  's'?: string;
15
15
  'ext'?: string;
16
+ 'contentSnippet'?: string;
16
17
  }
package/docs/Settings.md CHANGED
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **userQuotaMB** | **number** | | [optional] [default to undefined]
11
11
  **language** | **string** | | [optional] [default to undefined]
12
12
  **theme** | **string** | | [optional] [default to undefined]
13
+ **thumbnailsActive** | **boolean** | | [optional] [default to undefined]
13
14
 
14
15
  ## Example
15
16
 
@@ -22,6 +23,7 @@ const instance: Settings = {
22
23
  userQuotaMB,
23
24
  language,
24
25
  theme,
26
+ thumbnailsActive,
25
27
  };
26
28
  ```
27
29
 
package/docs/Suggest.md CHANGED
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **id** | **string** | | [optional] [default to undefined]
9
9
  **s** | **string** | | [optional] [default to undefined]
10
10
  **ext** | **string** | | [optional] [default to undefined]
11
+ **contentSnippet** | **string** | | [optional] [default to undefined]
11
12
 
12
13
  ## Example
13
14
 
@@ -18,6 +19,7 @@ const instance: Suggest = {
18
19
  id,
19
20
  s,
20
21
  ext,
22
+ contentSnippet,
21
23
  };
22
24
  ```
23
25
 
@@ -20,5 +20,6 @@ export interface Settings {
20
20
  'userQuotaMB'?: number;
21
21
  'language'?: string;
22
22
  'theme'?: string;
23
+ 'thumbnailsActive'?: boolean;
23
24
  }
24
25
 
package/models/suggest.ts CHANGED
@@ -18,5 +18,6 @@ export interface Suggest {
18
18
  'id'?: string;
19
19
  's'?: string;
20
20
  'ext'?: string;
21
+ 'contentSnippet'?: string;
21
22
  }
22
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfilz-sdk/typescript",
3
- "version": "1.1.18",
3
+ "version": "1.1.19",
4
4
  "description": "OpenAPI client for @openfilz-sdk/typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {