files.com 1.2.238 → 1.2.239

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.
@@ -44,6 +44,8 @@
44
44
  "email_entries_sent": 1,
45
45
  "exavault_api_request_send_enabled": true,
46
46
  "exavault_api_request_entries_sent": 1,
47
+ "settings_change_send_enabled": true,
48
+ "settings_change_entries_sent": 1,
47
49
  "last_http_call_target_type": "destination_url",
48
50
  "last_http_call_success": true,
49
51
  "last_http_call_response_code": 1,
@@ -94,6 +96,8 @@
94
96
  * `email_entries_sent` (int64): Number of log entries sent for the lifetime of this destination.
95
97
  * `exavault_api_request_send_enabled` (boolean): Whether or not sending is enabled for exavault_api_request logs.
96
98
  * `exavault_api_request_entries_sent` (int64): Number of log entries sent for the lifetime of this destination.
99
+ * `settings_change_send_enabled` (boolean): Whether or not sending is enabled for settings_change logs.
100
+ * `settings_change_entries_sent` (int64): Number of log entries sent for the lifetime of this destination.
97
101
  * `last_http_call_target_type` (string): Type of URL that was last called. Can be `destination_url` or `azure_oauth_client_credentials_url`
98
102
  * `last_http_call_success` (boolean): Was the last HTTP call made successful?
99
103
  * `last_http_call_response_code` (int64): Last HTTP Call Response Code
@@ -162,6 +166,7 @@ await SiemHttpDestination.create({
162
166
  'public_hosting_request_send_enabled': true,
163
167
  'email_send_enabled': true,
164
168
  'exavault_api_request_send_enabled': true,
169
+ 'settings_change_send_enabled': true,
165
170
  'destination_type': "example",
166
171
  'destination_url': "example",
167
172
  })
@@ -195,6 +200,7 @@ await SiemHttpDestination.create({
195
200
  * `public_hosting_request_send_enabled` (boolean): Whether or not sending is enabled for public_hosting_request logs.
196
201
  * `email_send_enabled` (boolean): Whether or not sending is enabled for email logs.
197
202
  * `exavault_api_request_send_enabled` (boolean): Whether or not sending is enabled for exavault_api_request logs.
203
+ * `settings_change_send_enabled` (boolean): Whether or not sending is enabled for settings_change logs.
198
204
  * `destination_type` (string): Required - Destination Type
199
205
  * `destination_url` (string): Required - Destination Url
200
206
 
@@ -226,6 +232,7 @@ await SiemHttpDestination.sendTestEntry({
226
232
  'public_hosting_request_send_enabled': true,
227
233
  'email_send_enabled': true,
228
234
  'exavault_api_request_send_enabled': true,
235
+ 'settings_change_send_enabled': true,
229
236
  })
230
237
  ```
231
238
 
@@ -260,6 +267,7 @@ await SiemHttpDestination.sendTestEntry({
260
267
  * `public_hosting_request_send_enabled` (boolean): Whether or not sending is enabled for public_hosting_request logs.
261
268
  * `email_send_enabled` (boolean): Whether or not sending is enabled for email logs.
262
269
  * `exavault_api_request_send_enabled` (boolean): Whether or not sending is enabled for exavault_api_request logs.
270
+ * `settings_change_send_enabled` (boolean): Whether or not sending is enabled for settings_change logs.
263
271
 
264
272
  ---
265
273
 
@@ -288,6 +296,7 @@ await siem_http_destination.update({
288
296
  'public_hosting_request_send_enabled': true,
289
297
  'email_send_enabled': true,
290
298
  'exavault_api_request_send_enabled': true,
299
+ 'settings_change_send_enabled': true,
291
300
  'destination_type': "example",
292
301
  'destination_url': "example",
293
302
  })
@@ -321,6 +330,7 @@ await siem_http_destination.update({
321
330
  * `public_hosting_request_send_enabled` (boolean): Whether or not sending is enabled for public_hosting_request logs.
322
331
  * `email_send_enabled` (boolean): Whether or not sending is enabled for email logs.
323
332
  * `exavault_api_request_send_enabled` (boolean): Whether or not sending is enabled for exavault_api_request logs.
333
+ * `settings_change_send_enabled` (boolean): Whether or not sending is enabled for settings_change logs.
324
334
  * `destination_type` (string): Destination Type
325
335
  * `destination_url` (string): Destination Url
326
336
 
@@ -368,6 +378,8 @@ await siem_http_destination.update({
368
378
  "email_entries_sent": 1,
369
379
  "exavault_api_request_send_enabled": true,
370
380
  "exavault_api_request_entries_sent": 1,
381
+ "settings_change_send_enabled": true,
382
+ "settings_change_entries_sent": 1,
371
383
  "last_http_call_target_type": "destination_url",
372
384
  "last_http_call_success": true,
373
385
  "last_http_call_response_code": 1,
package/lib/Files.js CHANGED
@@ -12,7 +12,7 @@ var apiKey;
12
12
  var baseUrl = 'https://app.files.com';
13
13
  var sessionId = null;
14
14
  var language = null;
15
- var version = '1.2.238';
15
+ var version = '1.2.239';
16
16
  var userAgent = "Files.com JavaScript SDK v".concat(version);
17
17
  var logLevel = _Logger.LogLevel.INFO;
18
18
  var debugRequest = false;