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 +1 -1
- package/lib/models/As2IncomingMessage.js +3 -0
- package/lib/models/As2OutgoingMessage.js +6 -0
- package/lib/models/As2Partner.js +4 -4
- package/package.json +1 -1
- package/src/models/As2IncomingMessage.js +3 -0
- package/src/models/As2OutgoingMessage.js +6 -0
- package/src/models/As2Partner.js +3 -3
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
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
|
});
|
package/lib/models/As2Partner.js
CHANGED
@@ -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, "
|
87
|
-
return _this.attributes.
|
86
|
+
(0, _defineProperty2.default)(this, "getPublicCertificateSubjec", function () {
|
87
|
+
return _this.attributes.public_certificate_subjec;
|
88
88
|
});
|
89
|
-
(0, _defineProperty2.default)(this, "
|
90
|
-
_this.attributes.
|
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
@@ -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
|
|
package/src/models/As2Partner.js
CHANGED
@@ -72,10 +72,10 @@ class As2Partner {
|
|
72
72
|
}
|
73
73
|
|
74
74
|
// string # Subject of public certificate used for message security.
|
75
|
-
|
75
|
+
getPublicCertificateSubjec = () => this.attributes.public_certificate_subjec
|
76
76
|
|
77
|
-
|
78
|
-
this.attributes.
|
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.
|