files.com 1.2.109 → 1.2.111
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 +0 -4
- package/_VERSION +1 -1
- package/docs/models/App.md +2 -0
- package/lib/Files.js +1 -1
- package/lib/models/App.js +4 -0
- package/package.json +1 -1
- package/src/Files.js +1 -1
- package/src/models/App.js +3 -0
package/README.md
CHANGED
@@ -48,9 +48,7 @@ const User = require("files.com/lib/models/User.js").default;
|
|
48
48
|
const { LogLevel } = require("files.com/lib/Logger.js").default;
|
49
49
|
```
|
50
50
|
|
51
|
-
<Note title="Repository">
|
52
51
|
Explore the [files-sdk-javascript](https://github.com/Files-com/files-sdk-javascript) code on GitHub.
|
53
|
-
</Note>
|
54
52
|
|
55
53
|
### Getting Support
|
56
54
|
|
@@ -84,9 +82,7 @@ const user = new User(params, { apiKey: 'YOUR_API_KEY' })
|
|
84
82
|
await User.find(id, params, { apiKey: 'YOUR_API_KEY' })
|
85
83
|
```
|
86
84
|
|
87
|
-
<Note>
|
88
85
|
Don't forget to replace the placeholder, `YOUR_API_KEY`, with your actual API key.
|
89
|
-
</Note>
|
90
86
|
|
91
87
|
### Authenticate with a Session
|
92
88
|
|
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.111
|
package/docs/models/App.md
CHANGED
@@ -27,6 +27,7 @@
|
|
27
27
|
"sdk_installation_instructions_link": "example",
|
28
28
|
"short_description": "example",
|
29
29
|
"sso_strategy_type": "example",
|
30
|
+
"siem_type": "example",
|
30
31
|
"tutorial_youtube_url": "example"
|
31
32
|
}
|
32
33
|
```
|
@@ -50,6 +51,7 @@
|
|
50
51
|
* `sdk_installation_instructions_link` (string): Link to SDK installation instructions
|
51
52
|
* `short_description` (string): Short description of the App
|
52
53
|
* `sso_strategy_type` (string): Associated SSO Strategy type, if any
|
54
|
+
* `siem_type` (string): Associated SIEM type, if any
|
53
55
|
* `tutorial_youtube_url` (string): Tutorial video page
|
54
56
|
|
55
57
|
---
|
package/lib/Files.js
CHANGED
@@ -11,7 +11,7 @@ var endpointPrefix = '/api/rest/v1';
|
|
11
11
|
var apiKey;
|
12
12
|
var baseUrl = 'https://app.files.com';
|
13
13
|
var sessionId = null;
|
14
|
-
var version = '1.2.
|
14
|
+
var version = '1.2.111';
|
15
15
|
var userAgent = "Files.com JavaScript SDK v".concat(version);
|
16
16
|
var logLevel = _Logger.LogLevel.INFO;
|
17
17
|
var debugRequest = false;
|
package/lib/models/App.js
CHANGED
@@ -109,6 +109,10 @@ var App = /*#__PURE__*/(0, _createClass2.default)(function App() {
|
|
109
109
|
(0, _defineProperty2.default)(this, "getSsoStrategyType", function () {
|
110
110
|
return _this.attributes.sso_strategy_type;
|
111
111
|
});
|
112
|
+
// string # Associated SIEM type, if any
|
113
|
+
(0, _defineProperty2.default)(this, "getSiemType", function () {
|
114
|
+
return _this.attributes.siem_type;
|
115
|
+
});
|
112
116
|
// string # Tutorial video page
|
113
117
|
(0, _defineProperty2.default)(this, "getTutorialYoutubeUrl", function () {
|
114
118
|
return _this.attributes.tutorial_youtube_url;
|
package/package.json
CHANGED
package/src/Files.js
CHANGED
package/src/models/App.js
CHANGED
@@ -85,6 +85,9 @@ class App {
|
|
85
85
|
// string # Associated SSO Strategy type, if any
|
86
86
|
getSsoStrategyType = () => this.attributes.sso_strategy_type
|
87
87
|
|
88
|
+
// string # Associated SIEM type, if any
|
89
|
+
getSiemType = () => this.attributes.siem_type
|
90
|
+
|
88
91
|
// string # Tutorial video page
|
89
92
|
getTutorialYoutubeUrl = () => this.attributes.tutorial_youtube_url
|
90
93
|
|