@ondewo/nlu-client-typescript 4.4.0 → 4.6.0
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.
|
@@ -6329,11 +6329,11 @@ proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader = function(msg, reade
|
|
|
6329
6329
|
msg.setMinEntityTypesConfidenceMax(value);
|
|
6330
6330
|
break;
|
|
6331
6331
|
case 8:
|
|
6332
|
-
var value = /** @type {number} */ (reader.
|
|
6332
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
6333
6333
|
msg.setEarliest(value);
|
|
6334
6334
|
break;
|
|
6335
6335
|
case 9:
|
|
6336
|
-
var value = /** @type {number} */ (reader.
|
|
6336
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
6337
6337
|
msg.setLatest(value);
|
|
6338
6338
|
break;
|
|
6339
6339
|
case 10:
|
|
@@ -6582,14 +6582,14 @@ proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter = function(message, write
|
|
|
6582
6582
|
}
|
|
6583
6583
|
f = message.getEarliest();
|
|
6584
6584
|
if (f !== 0.0) {
|
|
6585
|
-
writer.
|
|
6585
|
+
writer.writeDouble(
|
|
6586
6586
|
8,
|
|
6587
6587
|
f
|
|
6588
6588
|
);
|
|
6589
6589
|
}
|
|
6590
6590
|
f = message.getLatest();
|
|
6591
6591
|
if (f !== 0.0) {
|
|
6592
|
-
writer.
|
|
6592
|
+
writer.writeDouble(
|
|
6593
6593
|
9,
|
|
6594
6594
|
f
|
|
6595
6595
|
);
|
|
@@ -7065,7 +7065,7 @@ proto.ondewo.nlu.SessionFilter.prototype.setMinEntityTypesConfidenceMax = functi
|
|
|
7065
7065
|
|
|
7066
7066
|
|
|
7067
7067
|
/**
|
|
7068
|
-
* optional
|
|
7068
|
+
* optional double earliest = 8;
|
|
7069
7069
|
* @return {number}
|
|
7070
7070
|
*/
|
|
7071
7071
|
proto.ondewo.nlu.SessionFilter.prototype.getEarliest = function() {
|
|
@@ -7083,7 +7083,7 @@ proto.ondewo.nlu.SessionFilter.prototype.setEarliest = function(value) {
|
|
|
7083
7083
|
|
|
7084
7084
|
|
|
7085
7085
|
/**
|
|
7086
|
-
* optional
|
|
7086
|
+
* optional double latest = 9;
|
|
7087
7087
|
* @return {number}
|
|
7088
7088
|
*/
|
|
7089
7089
|
proto.ondewo.nlu.SessionFilter.prototype.getLatest = function() {
|
|
@@ -8184,11 +8184,11 @@ proto.ondewo.nlu.SessionInfo.deserializeBinaryFromReader = function(msg, reader)
|
|
|
8184
8184
|
msg.setMinEntityTypesConfidence(value);
|
|
8185
8185
|
break;
|
|
8186
8186
|
case 6:
|
|
8187
|
-
var value = /** @type {number} */ (reader.
|
|
8187
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
8188
8188
|
msg.setEarliest(value);
|
|
8189
8189
|
break;
|
|
8190
8190
|
case 7:
|
|
8191
|
-
var value = /** @type {number} */ (reader.
|
|
8191
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
8192
8192
|
msg.setLatest(value);
|
|
8193
8193
|
break;
|
|
8194
8194
|
case 8:
|
|
@@ -8363,14 +8363,14 @@ proto.ondewo.nlu.SessionInfo.serializeBinaryToWriter = function(message, writer)
|
|
|
8363
8363
|
}
|
|
8364
8364
|
f = message.getEarliest();
|
|
8365
8365
|
if (f !== 0.0) {
|
|
8366
|
-
writer.
|
|
8366
|
+
writer.writeDouble(
|
|
8367
8367
|
6,
|
|
8368
8368
|
f
|
|
8369
8369
|
);
|
|
8370
8370
|
}
|
|
8371
8371
|
f = message.getLatest();
|
|
8372
8372
|
if (f !== 0.0) {
|
|
8373
|
-
writer.
|
|
8373
|
+
writer.writeDouble(
|
|
8374
8374
|
7,
|
|
8375
8375
|
f
|
|
8376
8376
|
);
|
|
@@ -8865,7 +8865,7 @@ proto.ondewo.nlu.SessionInfo.prototype.setMinEntityTypesConfidence = function(va
|
|
|
8865
8865
|
|
|
8866
8866
|
|
|
8867
8867
|
/**
|
|
8868
|
-
* optional
|
|
8868
|
+
* optional double earliest = 6;
|
|
8869
8869
|
* @return {number}
|
|
8870
8870
|
*/
|
|
8871
8871
|
proto.ondewo.nlu.SessionInfo.prototype.getEarliest = function() {
|
|
@@ -8883,7 +8883,7 @@ proto.ondewo.nlu.SessionInfo.prototype.setEarliest = function(value) {
|
|
|
8883
8883
|
|
|
8884
8884
|
|
|
8885
8885
|
/**
|
|
8886
|
-
* optional
|
|
8886
|
+
* optional double latest = 7;
|
|
8887
8887
|
* @return {number}
|
|
8888
8888
|
*/
|
|
8889
8889
|
proto.ondewo.nlu.SessionInfo.prototype.getLatest = function() {
|
package/package.json
CHANGED