Skip to content

Commit 10f6dd1

Browse files
[Bot] push changes from Files.com
1 parent 83a1b09 commit 10f6dd1

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.622
1+
1.2.623

docs/models/Expectation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ await expectation.trigger_evaluation()
192192

193193
],
194194
"criteria_errors": [
195-
195+
"count expected exactly 2, got 1"
196196
],
197197
"summary": null,
198198
"created_at": "2000-01-01T01:00:00Z",

docs/models/ExpectationEvaluation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
],
2525
"criteria_errors": [
26-
26+
"count expected exactly 2, got 1"
2727
],
2828
"summary": null,
2929
"created_at": "2000-01-01T01:00:00Z",
@@ -45,7 +45,7 @@
4545
* `closed_at` (date-time): When the evaluation row was finalized.
4646
* `matched_files` (array(object)): Captured evidence for files that matched the window.
4747
* `missing_files` (array(object)): Captured evidence for required files that were missing.
48-
* `criteria_errors` (array(object)): Captured criteria failures for the window.
48+
* `criteria_errors` (array(string)): Captured criteria failures for the window.
4949
* `summary` (object): Compact evaluator summary payload.
5050
* `created_at` (date-time): Creation time.
5151
* `updated_at` (date-time): Last update time.

lib/Files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var apiKey;
1212
var baseUrl = 'https://app.files.com';
1313
var sessionId = null;
1414
var language = null;
15-
var version = '1.2.622';
15+
var version = '1.2.623';
1616
var userAgent = "Files.com JavaScript SDK v".concat(version);
1717
var logLevel = _Logger.LogLevel.INFO;
1818
var debugRequest = false;

lib/models/ExpectationEvaluation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ var ExpectationEvaluation = /*#__PURE__*/(0, _createClass2.default)(function Exp
8888
(0, _defineProperty2.default)(this, "getMissingFiles", function () {
8989
return _this.attributes.missing_files;
9090
});
91-
// array(object) # Captured criteria failures for the window.
91+
// array(string) # Captured criteria failures for the window.
9292
(0, _defineProperty2.default)(this, "getCriteriaErrors", function () {
9393
return _this.attributes.criteria_errors;
9494
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "files.com",
3-
"version": "1.2.622",
3+
"version": "1.2.623",
44
"description": "Files.com SDK for JavaScript",
55
"keywords": [
66
"files.com",

src/Files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let apiKey
66
let baseUrl = 'https://app.files.com'
77
let sessionId = null
88
let language = null
9-
const version = '1.2.622'
9+
const version = '1.2.623'
1010
let userAgent = `Files.com JavaScript SDK v${version}`
1111

1212
let logLevel = LogLevel.INFO

src/models/ExpectationEvaluation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class ExpectationEvaluation {
7070
// array(object) # Captured evidence for required files that were missing.
7171
getMissingFiles = () => this.attributes.missing_files
7272

73-
// array(object) # Captured criteria failures for the window.
73+
// array(string) # Captured criteria failures for the window.
7474
getCriteriaErrors = () => this.attributes.criteria_errors
7575

7676
// object # Compact evaluator summary payload.

0 commit comments

Comments
 (0)