files.com 1.0.263 → 1.0.264

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 415f60c947b24e213dcab7b7f18bd802868b723e6d2399f40263079f47e5fbf7
4
- data.tar.gz: b8420a20451e8e08dab0381acbc72180620b768638f95f0dc86f1efcad6a1c32
3
+ metadata.gz: dfea549d6dcd6c67bd7b39730e1b1b92f35423828ad92aa90d872a63ddbf45e4
4
+ data.tar.gz: b5d95c6f6ed89be5dc931d8460b27622ae8c7675f8e2d07d997864cec70bd55b
5
5
  SHA512:
6
- metadata.gz: 0ce056ebf1594d115ae3f1eac0f53ccbc3148423ffbfaeb8bfe17216eefc5be03d6608d43d0d5e0da389e7fe9beadf3fe294423374be28d45904c2506cc7b3d0
7
- data.tar.gz: c5e10ff72b9614ad58b6f3385f47e530230dbd209a1538061ca6ac62a31db0000f731560b5d7141588a51b5c6622c02cdb82646c5b9eb6396ad7c236a76905e9
6
+ metadata.gz: dfbd8233812d671644ccc0f5232eb4fe7fc4680c2d2a863600b6bdba7de05f5ade525dd06e022f6990cd6910d2aaec892d9885d77c5f345ca93edf86b744e6ac
7
+ data.tar.gz: 66328f3c3e22a3132030d53c794a53384c56d769e25b2d2f6cb3e3dc7112ac5086c26fe78a47f9d18a48378cf53d6e614a8743624e593303af12de7495fc64a9
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.263
1
+ 1.0.264
@@ -12,6 +12,7 @@
12
12
  "http_headers": "",
13
13
  "activity_log": "",
14
14
  "processing_result": "",
15
+ "processing_result_description": "",
15
16
  "mic": "",
16
17
  "mic_algo": "",
17
18
  "as2_to": "",
@@ -49,6 +50,7 @@
49
50
  * `http_headers` (object): HTTP Headers sent with this message.
50
51
  * `activity_log` (string): JSON Structure of the activity log.
51
52
  * `processing_result` (string): Result of processing.
53
+ * `processing_result_description` (string): Result of processing description.
52
54
  * `mic` (string): AS2 Message Integrity Check
53
55
  * `mic_algo` (string): AS2 Message Integrity Check Algorithm Used
54
56
  * `as2_to` (string): AS2 TO header of message
@@ -11,6 +11,7 @@
11
11
  "http_headers": "",
12
12
  "activity_log": "",
13
13
  "processing_result": "",
14
+ "processing_result_description": "",
14
15
  "mic": "",
15
16
  "mic_sha_256": "",
16
17
  "as2_to": "",
@@ -22,6 +23,7 @@
22
23
  "created_at": "2000-01-01T01:00:00Z",
23
24
  "http_response_code": "",
24
25
  "http_response_headers": "",
26
+ "http_transmission_duration": 1.0,
25
27
  "mdn_received": true,
26
28
  "mdn_valid": true,
27
29
  "mdn_signature_verified": true,
@@ -43,6 +45,7 @@
43
45
  * `http_headers` (object): HTTP Headers sent with this message.
44
46
  * `activity_log` (string): JSON Structure of the activity log.
45
47
  * `processing_result` (string): Result of processing.
48
+ * `processing_result_description` (string): Result of processing description.
46
49
  * `mic` (string): AS2 Message Integrity Check SHA1
47
50
  * `mic_sha_256` (string): AS2 Message Integrity Check SHA256
48
51
  * `as2_to` (string): AS2 TO
@@ -54,6 +57,7 @@
54
57
  * `created_at` (date-time): Message creation date/time
55
58
  * `http_response_code` (string): HTTP Response Code received for this message
56
59
  * `http_response_headers` (object): HTTP Headers received for this message.
60
+ * `http_transmission_duration` (double): HTTP transmission duration in seceonds
57
61
  * `mdn_received` (boolean): Did the partner give a response body?
58
62
  * `mdn_valid` (boolean): Is the response in MDN format?
59
63
  * `mdn_signature_verified` (boolean): MDN signature verified?
data/docs/as2_partner.md CHANGED
@@ -11,7 +11,7 @@
11
11
  "server_certificate": "require_match",
12
12
  "hex_public_certificate_serial": "A5:EB:C1:95:DC:D8:2B:E7",
13
13
  "public_certificate_md5": "",
14
- "public_certificate_subject": "",
14
+ "public_certificate_subjec": "",
15
15
  "public_certificate_issuer": "",
16
16
  "public_certificate_serial": "",
17
17
  "public_certificate_not_before": "",
@@ -26,7 +26,7 @@
26
26
  * `server_certificate` (string): Remote server certificate security setting
27
27
  * `hex_public_certificate_serial` (string): Serial of public certificate used for message security in hex format.
28
28
  * `public_certificate_md5` (string): MD5 hash of public certificate used for message security.
29
- * `public_certificate_subject` (string): Subject of public certificate used for message security.
29
+ * `public_certificate_subjec` (string): Subject of public certificate used for message security.
30
30
  * `public_certificate_issuer` (string): Issuer of public certificate used for message security.
31
31
  * `public_certificate_serial` (string): Serial of public certificate used for message security.
32
32
  * `public_certificate_not_before` (string): Not before value of public certificate used for message security.
@@ -49,6 +49,11 @@ module Files
49
49
  @attributes[:processing_result]
50
50
  end
51
51
 
52
+ # string - Result of processing description.
53
+ def processing_result_description
54
+ @attributes[:processing_result_description]
55
+ end
56
+
52
57
  # string - AS2 Message Integrity Check
53
58
  def mic
54
59
  @attributes[:mic]
@@ -44,6 +44,11 @@ module Files
44
44
  @attributes[:processing_result]
45
45
  end
46
46
 
47
+ # string - Result of processing description.
48
+ def processing_result_description
49
+ @attributes[:processing_result_description]
50
+ end
51
+
47
52
  # string - AS2 Message Integrity Check SHA1
48
53
  def mic
49
54
  @attributes[:mic]
@@ -99,6 +104,11 @@ module Files
99
104
  @attributes[:http_response_headers]
100
105
  end
101
106
 
107
+ # double - HTTP transmission duration in seceonds
108
+ def http_transmission_duration
109
+ @attributes[:http_transmission_duration]
110
+ end
111
+
102
112
  # boolean - Did the partner give a response body?
103
113
  def mdn_received
104
114
  @attributes[:mdn_received]
@@ -73,12 +73,12 @@ module Files
73
73
  end
74
74
 
75
75
  # string - Subject of public certificate used for message security.
76
- def public_certificate_subject
77
- @attributes[:public_certificate_subject]
76
+ def public_certificate_subjec
77
+ @attributes[:public_certificate_subjec]
78
78
  end
79
79
 
80
- def public_certificate_subject=(value)
81
- @attributes[:public_certificate_subject] = value
80
+ def public_certificate_subjec=(value)
81
+ @attributes[:public_certificate_subjec] = value
82
82
  end
83
83
 
84
84
  # string - Issuer of public certificate used for message security.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.263
4
+ version: 1.0.264
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-27 00:00:00.000000000 Z
11
+ date: 2022-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable