Skip to content

Commit 14b656d

Browse files
[Bot] push changes from Files.com
1 parent a3513ef commit 14b656d

10 files changed

+4
-22
lines changed

Diff for: _VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.230
1+
1.2.231

Diff for: docs/models/As2IncomingMessage.md

-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"http_headers": {
1313
"key": "example value"
1414
},
15-
"activity_log": "example",
1615
"processing_result": "example",
1716
"processing_result_description": "example",
1817
"mic": "example",
@@ -52,7 +51,6 @@
5251
* `uuid` (string): UUID assigned to this message.
5352
* `content_type` (string): Content Type header of the incoming message.
5453
* `http_headers` (object): HTTP Headers sent with this message.
55-
* `activity_log` (string): JSON Structure of the activity log.
5654
* `processing_result` (string): Result of processing.
5755
* `processing_result_description` (string): Result of processing description.
5856
* `mic` (string): AS2 Message Integrity Check

Diff for: docs/models/As2OutgoingMessage.md

-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"http_headers": {
1212
"key": "example value"
1313
},
14-
"activity_log": "example",
1514
"processing_result": "example",
1615
"processing_result_description": "example",
1716
"mic": "example",
@@ -47,7 +46,6 @@
4746
* `as2_station_id` (int64): Id of the AS2 Station associated with this message.
4847
* `uuid` (string): UUID assigned to this message.
4948
* `http_headers` (object): HTTP Headers sent with this message.
50-
* `activity_log` (string): JSON Structure of the activity log.
5149
* `processing_result` (string): Result of processing.
5250
* `processing_result_description` (string): Result of processing description.
5351
* `mic` (string): AS2 Message Integrity Check SHA1

Diff for: lib/Files.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var endpointPrefix = '/api/rest/v1';
1111
var apiKey;
1212
var baseUrl = 'https://app.files.com';
1313
var sessionId = null;
14-
var version = '1.2.230';
14+
var version = '1.2.231';
1515
var userAgent = "Files.com JavaScript SDK v".concat(version);
1616
var logLevel = _Logger.LogLevel.INFO;
1717
var debugRequest = false;

Diff for: lib/models/As2IncomingMessage.js

-4
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ var As2IncomingMessage = /*#__PURE__*/(0, _createClass2.default)(function As2Inc
5757
(0, _defineProperty2.default)(this, "getHttpHeaders", function () {
5858
return _this.attributes.http_headers;
5959
});
60-
// string # JSON Structure of the activity log.
61-
(0, _defineProperty2.default)(this, "getActivityLog", function () {
62-
return _this.attributes.activity_log;
63-
});
6460
// string # Result of processing.
6561
(0, _defineProperty2.default)(this, "getProcessingResult", function () {
6662
return _this.attributes.processing_result;

Diff for: lib/models/As2OutgoingMessage.js

-4
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,6 @@ var As2OutgoingMessage = /*#__PURE__*/(0, _createClass2.default)(function As2Out
5353
(0, _defineProperty2.default)(this, "getHttpHeaders", function () {
5454
return _this.attributes.http_headers;
5555
});
56-
// string # JSON Structure of the activity log.
57-
(0, _defineProperty2.default)(this, "getActivityLog", function () {
58-
return _this.attributes.activity_log;
59-
});
6056
// string # Result of processing.
6157
(0, _defineProperty2.default)(this, "getProcessingResult", function () {
6258
return _this.attributes.processing_result;

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "files.com",
3-
"version": "1.2.230",
3+
"version": "1.2.231",
44
"description": "Files.com SDK for JavaScript",
55
"keywords": [
66
"files.com",

Diff for: src/Files.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const endpointPrefix = '/api/rest/v1'
55
let apiKey
66
let baseUrl = 'https://app.files.com'
77
let sessionId = null
8-
const version = '1.2.230'
8+
const version = '1.2.231'
99
let userAgent = `Files.com JavaScript SDK v${version}`
1010

1111
let logLevel = LogLevel.INFO

Diff for: src/models/As2IncomingMessage.js

-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ class As2IncomingMessage {
4646
// object # HTTP Headers sent with this message.
4747
getHttpHeaders = () => this.attributes.http_headers
4848

49-
// string # JSON Structure of the activity log.
50-
getActivityLog = () => this.attributes.activity_log
51-
5249
// string # Result of processing.
5350
getProcessingResult = () => this.attributes.processing_result
5451

Diff for: src/models/As2OutgoingMessage.js

-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ class As2OutgoingMessage {
4343
// object # HTTP Headers sent with this message.
4444
getHttpHeaders = () => this.attributes.http_headers
4545

46-
// string # JSON Structure of the activity log.
47-
getActivityLog = () => this.attributes.activity_log
48-
4946
// string # Result of processing.
5047
getProcessingResult = () => this.attributes.processing_result
5148

0 commit comments

Comments
 (0)