@choiceform/os-client-core 2.1.68 → 2.1.69
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/dist/core.js +1 -1
- package/dist/infer.js +1 -1
- package/dist/modern/core.js +1 -1
- package/dist/modern/web-core.js +2 -2
- package/dist/support/atcp.js +1 -1
- package/dist/web-core.js +2 -2
- package/index.d.ts +39 -6
- package/package.json +1 -1
package/dist/infer.js
CHANGED
|
@@ -222,7 +222,7 @@ const inferCommander = {
|
|
|
222
222
|
this.successCount++;
|
|
223
223
|
this.handleProgress('success');
|
|
224
224
|
const count = data.data.result.answers.length;
|
|
225
|
-
const time = data.data.result.
|
|
225
|
+
const time = data.data.result.time_consuming;
|
|
226
226
|
const avg = Math.round(time / count);
|
|
227
227
|
console.log(time, count, avg); // eslint-disable-line
|
|
228
228
|
const row = document.createElement('tr');
|