files.com 1.0.200 → 1.0.201

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.0.200
1
+ 1.0.201
@@ -31,6 +31,8 @@ var _Logger = _interopRequireDefault(require("../Logger"));
31
31
 
32
32
  var _utils = require("../utils");
33
33
 
34
+ var _FileAction = _interopRequireDefault(require("./FileAction"));
35
+
34
36
  var _FileUploadPart = _interopRequireDefault(require("./FileUploadPart"));
35
37
 
36
38
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
@@ -663,7 +665,7 @@ var File = /*#__PURE__*/(0, _createClass2.default)(function File() {
663
665
 
664
666
  case 24:
665
667
  response = _context8.sent;
666
- return _context8.abrupt("return", new FileAction(response === null || response === void 0 ? void 0 : response.data, _this.options));
668
+ return _context8.abrupt("return", new _FileAction.default(response === null || response === void 0 ? void 0 : response.data, _this.options));
667
669
 
668
670
  case 26:
669
671
  case "end":
@@ -757,7 +759,7 @@ var File = /*#__PURE__*/(0, _createClass2.default)(function File() {
757
759
 
758
760
  case 24:
759
761
  response = _context9.sent;
760
- return _context9.abrupt("return", new FileAction(response === null || response === void 0 ? void 0 : response.data, _this.options));
762
+ return _context9.abrupt("return", new _FileAction.default(response === null || response === void 0 ? void 0 : response.data, _this.options));
761
763
 
762
764
  case 26:
763
765
  case "end":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.200",
3
+ "version": "1.0.201",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -5,6 +5,7 @@ import Api from '../Api'
5
5
  import * as errors from '../Errors'
6
6
  import Logger from '../Logger'
7
7
  import { getType, isArray, isBrowser, isInt, isObject, isString } from '../utils'
8
+ import FileAction from './FileAction'
8
9
  import FileUploadPart from './FileUploadPart'
9
10
 
10
11
  /**