files.com 1.0.175 → 1.0.176
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.
|
1
|
+
1.0.176
|
@@ -101,6 +101,15 @@ var As2IncomingMessage = /*#__PURE__*/(0, _createClass2.default)(function As2Inc
|
|
101
101
|
(0, _defineProperty2.default)(this, "getHttpResponseHeaders", function () {
|
102
102
|
return _this.attributes.http_response_headers;
|
103
103
|
});
|
104
|
+
(0, _defineProperty2.default)(this, "getRecipientSerial", function () {
|
105
|
+
return _this.attributes.recipient_serial;
|
106
|
+
});
|
107
|
+
(0, _defineProperty2.default)(this, "getHexRecipientSerial", function () {
|
108
|
+
return _this.attributes.hex_recipient_serial;
|
109
|
+
});
|
110
|
+
(0, _defineProperty2.default)(this, "getRecipientIssuer", function () {
|
111
|
+
return _this.attributes.recipient_issuer;
|
112
|
+
});
|
104
113
|
(0, _defineProperty2.default)(this, "getMessageReceived", function () {
|
105
114
|
return _this.attributes.message_received;
|
106
115
|
});
|
package/package.json
CHANGED
@@ -82,6 +82,15 @@ class As2IncomingMessage {
|
|
82
82
|
// object # HTTP Headers sent for this message.
|
83
83
|
getHttpResponseHeaders = () => this.attributes.http_response_headers
|
84
84
|
|
85
|
+
// string # Incoming Message Recipient(the Client Cert used to encrypt this message)'s serial
|
86
|
+
getRecipientSerial = () => this.attributes.recipient_serial
|
87
|
+
|
88
|
+
// string # Incoming Message Recipient(the Client Cert used to encrypt this message)'s serial in hex format.
|
89
|
+
getHexRecipientSerial = () => this.attributes.hex_recipient_serial
|
90
|
+
|
91
|
+
// string # Incoming Message Recipient(the Client Cert used to encrypt this message)'s issuer
|
92
|
+
getRecipientIssuer = () => this.attributes.recipient_issuer
|
93
|
+
|
85
94
|
// boolean # Message body received?
|
86
95
|
getMessageReceived = () => this.attributes.message_received
|
87
96
|
|