files.com 1.0.181 → 1.0.182

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.181
1
+ 1.0.182
@@ -65,6 +65,9 @@ var As2IncomingMessage = /*#__PURE__*/(0, _createClass2.default)(function As2Inc
65
65
  (0, _defineProperty2.default)(this, "getProcessingResult", function () {
66
66
  return _this.attributes.processing_result;
67
67
  });
68
+ (0, _defineProperty2.default)(this, "getProcessingResultDescription", function () {
69
+ return _this.attributes.processing_result_description;
70
+ });
68
71
  (0, _defineProperty2.default)(this, "getMic", function () {
69
72
  return _this.attributes.mic;
70
73
  });
@@ -62,6 +62,9 @@ var As2OutgoingMessage = /*#__PURE__*/(0, _createClass2.default)(function As2Out
62
62
  (0, _defineProperty2.default)(this, "getProcessingResult", function () {
63
63
  return _this.attributes.processing_result;
64
64
  });
65
+ (0, _defineProperty2.default)(this, "getProcessingResultDescription", function () {
66
+ return _this.attributes.processing_result_description;
67
+ });
65
68
  (0, _defineProperty2.default)(this, "getMic", function () {
66
69
  return _this.attributes.mic;
67
70
  });
@@ -95,6 +98,9 @@ var As2OutgoingMessage = /*#__PURE__*/(0, _createClass2.default)(function As2Out
95
98
  (0, _defineProperty2.default)(this, "getHttpResponseHeaders", function () {
96
99
  return _this.attributes.http_response_headers;
97
100
  });
101
+ (0, _defineProperty2.default)(this, "getHttpTransmissionDuration", function () {
102
+ return _this.attributes.http_transmission_duration;
103
+ });
98
104
  (0, _defineProperty2.default)(this, "getMdnReceived", function () {
99
105
  return _this.attributes.mdn_received;
100
106
  });
@@ -83,11 +83,11 @@ var As2Partner = /*#__PURE__*/(0, _createClass2.default)(function As2Partner() {
83
83
  (0, _defineProperty2.default)(this, "setPublicCertificateMd5", function (value) {
84
84
  _this.attributes.public_certificate_md5 = value;
85
85
  });
86
- (0, _defineProperty2.default)(this, "getPublicCertificateSubject", function () {
87
- return _this.attributes.public_certificate_subject;
86
+ (0, _defineProperty2.default)(this, "getPublicCertificateSubjec", function () {
87
+ return _this.attributes.public_certificate_subjec;
88
88
  });
89
- (0, _defineProperty2.default)(this, "setPublicCertificateSubject", function (value) {
90
- _this.attributes.public_certificate_subject = value;
89
+ (0, _defineProperty2.default)(this, "setPublicCertificateSubjec", function (value) {
90
+ _this.attributes.public_certificate_subjec = value;
91
91
  });
92
92
  (0, _defineProperty2.default)(this, "getPublicCertificateIssuer", function () {
93
93
  return _this.attributes.public_certificate_issuer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.181",
3
+ "version": "1.0.182",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -46,6 +46,9 @@ class As2IncomingMessage {
46
46
  // string # Result of processing.
47
47
  getProcessingResult = () => this.attributes.processing_result
48
48
 
49
+ // string # Result of processing description.
50
+ getProcessingResultDescription = () => this.attributes.processing_result_description
51
+
49
52
  // string # AS2 Message Integrity Check
50
53
  getMic = () => this.attributes.mic
51
54
 
@@ -43,6 +43,9 @@ class As2OutgoingMessage {
43
43
  // string # Result of processing.
44
44
  getProcessingResult = () => this.attributes.processing_result
45
45
 
46
+ // string # Result of processing description.
47
+ getProcessingResultDescription = () => this.attributes.processing_result_description
48
+
46
49
  // string # AS2 Message Integrity Check SHA1
47
50
  getMic = () => this.attributes.mic
48
51
 
@@ -76,6 +79,9 @@ class As2OutgoingMessage {
76
79
  // object # HTTP Headers received for this message.
77
80
  getHttpResponseHeaders = () => this.attributes.http_response_headers
78
81
 
82
+ // double # HTTP transmission duration in seceonds
83
+ getHttpTransmissionDuration = () => this.attributes.http_transmission_duration
84
+
79
85
  // boolean # Did the partner give a response body?
80
86
  getMdnReceived = () => this.attributes.mdn_received
81
87
 
@@ -72,10 +72,10 @@ class As2Partner {
72
72
  }
73
73
 
74
74
  // string # Subject of public certificate used for message security.
75
- getPublicCertificateSubject = () => this.attributes.public_certificate_subject
75
+ getPublicCertificateSubjec = () => this.attributes.public_certificate_subjec
76
76
 
77
- setPublicCertificateSubject = value => {
78
- this.attributes.public_certificate_subject = value
77
+ setPublicCertificateSubjec = value => {
78
+ this.attributes.public_certificate_subjec = value
79
79
  }
80
80
 
81
81
  // string # Issuer of public certificate used for message security.