files.com 1.2.109 → 1.2.111

Sign up to get free protection for your applications and to get access to all the features.
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.109
1
+ 1.2.111
@@ -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.109';
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.2.109",
3
+ "version": "1.2.111",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
package/src/Files.js CHANGED
@@ -5,7 +5,7 @@ const endpointPrefix = '/api/rest/v1'
5
5
  let apiKey
6
6
  let baseUrl = 'https://app.files.com'
7
7
  let sessionId = null
8
- const version = '1.2.109'
8
+ const version = '1.2.111'
9
9
  let userAgent = `Files.com JavaScript SDK v${version}`
10
10
 
11
11
  let logLevel = LogLevel.INFO
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