files.com 1.2.230 → 1.2.231

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.230
1
+ 1.2.231
@@ -12,7 +12,6 @@
12
12
  "http_headers": {
13
13
  "key": "example value"
14
14
  },
15
- "activity_log": "example",
16
15
  "processing_result": "example",
17
16
  "processing_result_description": "example",
18
17
  "mic": "example",
@@ -52,7 +51,6 @@
52
51
  * `uuid` (string): UUID assigned to this message.
53
52
  * `content_type` (string): Content Type header of the incoming message.
54
53
  * `http_headers` (object): HTTP Headers sent with this message.
55
- * `activity_log` (string): JSON Structure of the activity log.
56
54
  * `processing_result` (string): Result of processing.
57
55
  * `processing_result_description` (string): Result of processing description.
58
56
  * `mic` (string): AS2 Message Integrity Check
@@ -11,7 +11,6 @@
11
11
  "http_headers": {
12
12
  "key": "example value"
13
13
  },
14
- "activity_log": "example",
15
14
  "processing_result": "example",
16
15
  "processing_result_description": "example",
17
16
  "mic": "example",
@@ -47,7 +46,6 @@
47
46
  * `as2_station_id` (int64): Id of the AS2 Station associated with this message.
48
47
  * `uuid` (string): UUID assigned to this message.
49
48
  * `http_headers` (object): HTTP Headers sent with this message.
50
- * `activity_log` (string): JSON Structure of the activity log.
51
49
  * `processing_result` (string): Result of processing.
52
50
  * `processing_result_description` (string): Result of processing description.
53
51
  * `mic` (string): AS2 Message Integrity Check SHA1
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.230';
14
+ var version = '1.2.231';
15
15
  var userAgent = "Files.com JavaScript SDK v".concat(version);
16
16
  var logLevel = _Logger.LogLevel.INFO;
17
17
  var debugRequest = false;
@@ -57,10 +57,6 @@ var As2IncomingMessage = /*#__PURE__*/(0, _createClass2.default)(function As2Inc
57
57
  (0, _defineProperty2.default)(this, "getHttpHeaders", function () {
58
58
  return _this.attributes.http_headers;
59
59
  });
60
- // string # JSON Structure of the activity log.
61
- (0, _defineProperty2.default)(this, "getActivityLog", function () {
62
- return _this.attributes.activity_log;
63
- });
64
60
  // string # Result of processing.
65
61
  (0, _defineProperty2.default)(this, "getProcessingResult", function () {
66
62
  return _this.attributes.processing_result;
@@ -53,10 +53,6 @@ var As2OutgoingMessage = /*#__PURE__*/(0, _createClass2.default)(function As2Out
53
53
  (0, _defineProperty2.default)(this, "getHttpHeaders", function () {
54
54
  return _this.attributes.http_headers;
55
55
  });
56
- // string # JSON Structure of the activity log.
57
- (0, _defineProperty2.default)(this, "getActivityLog", function () {
58
- return _this.attributes.activity_log;
59
- });
60
56
  // string # Result of processing.
61
57
  (0, _defineProperty2.default)(this, "getProcessingResult", function () {
62
58
  return _this.attributes.processing_result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.2.230",
3
+ "version": "1.2.231",
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.230'
8
+ const version = '1.2.231'
9
9
  let userAgent = `Files.com JavaScript SDK v${version}`
10
10
 
11
11
  let logLevel = LogLevel.INFO
@@ -46,9 +46,6 @@ class As2IncomingMessage {
46
46
  // object # HTTP Headers sent with this message.
47
47
  getHttpHeaders = () => this.attributes.http_headers
48
48
 
49
- // string # JSON Structure of the activity log.
50
- getActivityLog = () => this.attributes.activity_log
51
-
52
49
  // string # Result of processing.
53
50
  getProcessingResult = () => this.attributes.processing_result
54
51
 
@@ -43,9 +43,6 @@ class As2OutgoingMessage {
43
43
  // object # HTTP Headers sent with this message.
44
44
  getHttpHeaders = () => this.attributes.http_headers
45
45
 
46
- // string # JSON Structure of the activity log.
47
- getActivityLog = () => this.attributes.activity_log
48
-
49
46
  // string # Result of processing.
50
47
  getProcessingResult = () => this.attributes.processing_result
51
48