@openfilz-sdk/typescript 1.2.10 → 1.2.14
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/README.md +2 -2
- package/graphql/document.graphqls +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @openfilz-sdk/typescript@1.2.
|
|
1
|
+
## @openfilz-sdk/typescript@1.2.14
|
|
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.2.
|
|
39
|
+
npm install @openfilz-sdk/typescript@1.2.14 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -55,8 +55,10 @@ input ListFolderRequest {
|
|
|
55
55
|
id : UUID
|
|
56
56
|
"Type (FILE or FOLDER) of the elements to filter"
|
|
57
57
|
type : DocumentType
|
|
58
|
-
"Content-Type of the files to filter"
|
|
58
|
+
"Content-Type of the files to filter (exact match)"
|
|
59
59
|
contentType : String
|
|
60
|
+
"Content-Types of the files to filter: matched as a case-insensitive OR of LIKE patterns (a value without % is an exact match). Used e.g. to filter a folder by a file-type category such as Word or Excel that spans several content-types."
|
|
61
|
+
contentTypes : [String]
|
|
60
62
|
"name of the elements to filter (exact match)"
|
|
61
63
|
name : String
|
|
62
64
|
"name of the elements to filter (like clause)"
|