files.com 1.2.160 → 1.2.161

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/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.160
1
+ 1.2.161
@@ -23,7 +23,6 @@
23
23
  "created_at": "2000-01-01T01:00:00Z"
24
24
  },
25
25
  "created_at": "2000-01-01T01:00:00Z",
26
- "when": "2000-01-01T01:00:00Z",
27
26
  "destination": "/to_path",
28
27
  "path": "",
29
28
  "source": "/from_path"
@@ -33,7 +32,6 @@
33
32
  * `action` (string): Type of action
34
33
  * `bundle_registration` (BundleRegistration): Object that contains bundle registration information
35
34
  * `created_at` (date-time): Action occurrence date/time
36
- * `when` (date-time): Action occurrence date/time
37
35
  * `destination` (string): The destination path for this bundle action, if applicable
38
36
  * `path` (string): Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
39
37
  * `source` (string): The source path for this bundle action, if applicable
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.160';
14
+ var version = '1.2.161';
15
15
  var userAgent = "Files.com JavaScript SDK v".concat(version);
16
16
  var logLevel = _Logger.LogLevel.INFO;
17
17
  var debugRequest = false;
@@ -45,10 +45,6 @@ var BundleAction = /*#__PURE__*/(0, _createClass2.default)(function BundleAction
45
45
  (0, _defineProperty2.default)(this, "getCreatedAt", function () {
46
46
  return _this.attributes.created_at;
47
47
  });
48
- // date-time # Action occurrence date/time
49
- (0, _defineProperty2.default)(this, "getWhen", function () {
50
- return _this.attributes.when;
51
- });
52
48
  // string # The destination path for this bundle action, if applicable
53
49
  (0, _defineProperty2.default)(this, "getDestination", function () {
54
50
  return _this.attributes.destination;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.2.160",
3
+ "version": "1.2.161",
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.160'
8
+ const version = '1.2.161'
9
9
  let userAgent = `Files.com JavaScript SDK v${version}`
10
10
 
11
11
  let logLevel = LogLevel.INFO
@@ -37,9 +37,6 @@ class BundleAction {
37
37
  // date-time # Action occurrence date/time
38
38
  getCreatedAt = () => this.attributes.created_at
39
39
 
40
- // date-time # Action occurrence date/time
41
- getWhen = () => this.attributes.when
42
-
43
40
  // string # The destination path for this bundle action, if applicable
44
41
  getDestination = () => this.attributes.destination
45
42