@ondewo/nlu-client-typescript 6.1.0 → 6.2.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.
- package/api/ondewo/nlu/agent_pb.d.ts +39 -0
- package/api/ondewo/nlu/agent_pb.js +208 -4
- package/api/ondewo/nlu/aiservices_grpc_web_pb.js +2 -0
- package/api/ondewo/nlu/aiservices_pb.d.ts +111 -0
- package/api/ondewo/nlu/aiservices_pb.js +522 -10
- package/api/ondewo/nlu/ccai_project_pb.d.ts +45 -0
- package/api/ondewo/nlu/ccai_project_pb.js +217 -7
- package/api/ondewo/nlu/operations_grpc_web_pb.js +2 -0
- package/api/ondewo/nlu/operations_pb.d.ts +23 -0
- package/api/ondewo/nlu/operations_pb.js +106 -2
- package/api/ondewo/nlu/project_role_pb.d.ts +22 -0
- package/api/ondewo/nlu/project_role_pb.js +104 -2
- package/api/ondewo/nlu/session_pb.d.ts +198 -0
- package/api/ondewo/nlu/session_pb.js +953 -35
- package/api/ondewo/nlu/user_pb.d.ts +77 -0
- package/api/ondewo/nlu/user_pb.js +364 -7
- package/package.json +3 -3
|
@@ -23,6 +23,8 @@ var global =
|
|
|
23
23
|
|
|
24
24
|
var google_api_annotations_pb = require('../../google/api/annotations_pb.js');
|
|
25
25
|
goog.object.extend(proto, google_api_annotations_pb);
|
|
26
|
+
var google_protobuf_field_mask_pb = require('google-protobuf/google/protobuf/field_mask_pb.js');
|
|
27
|
+
goog.object.extend(proto, google_protobuf_field_mask_pb);
|
|
26
28
|
var google_protobuf_struct_pb = require('google-protobuf/google/protobuf/struct_pb.js');
|
|
27
29
|
goog.object.extend(proto, google_protobuf_struct_pb);
|
|
28
30
|
var ondewo_nlu_ccai_project_pb = require('../../ondewo/nlu/ccai_project_pb.js');
|
|
@@ -882,7 +884,8 @@ proto.ondewo.nlu.ListLlmModelsRequest.prototype.toObject = function(opt_includeI
|
|
|
882
884
|
*/
|
|
883
885
|
proto.ondewo.nlu.ListLlmModelsRequest.toObject = function(includeInstance, msg) {
|
|
884
886
|
var f, obj = {
|
|
885
|
-
ccaiServiceName: jspb.Message.getFieldWithDefault(msg, 1, "")
|
|
887
|
+
ccaiServiceName: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
888
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
886
889
|
};
|
|
887
890
|
|
|
888
891
|
if (includeInstance) {
|
|
@@ -923,6 +926,11 @@ proto.ondewo.nlu.ListLlmModelsRequest.deserializeBinaryFromReader = function(msg
|
|
|
923
926
|
var value = /** @type {string} */ (reader.readString());
|
|
924
927
|
msg.setCcaiServiceName(value);
|
|
925
928
|
break;
|
|
929
|
+
case 2:
|
|
930
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
931
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
932
|
+
msg.setFieldMask(value);
|
|
933
|
+
break;
|
|
926
934
|
default:
|
|
927
935
|
reader.skipField();
|
|
928
936
|
break;
|
|
@@ -959,6 +967,14 @@ proto.ondewo.nlu.ListLlmModelsRequest.serializeBinaryToWriter = function(message
|
|
|
959
967
|
f
|
|
960
968
|
);
|
|
961
969
|
}
|
|
970
|
+
f = message.getFieldMask();
|
|
971
|
+
if (f != null) {
|
|
972
|
+
writer.writeMessage(
|
|
973
|
+
2,
|
|
974
|
+
f,
|
|
975
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
976
|
+
);
|
|
977
|
+
}
|
|
962
978
|
};
|
|
963
979
|
|
|
964
980
|
|
|
@@ -980,6 +996,43 @@ proto.ondewo.nlu.ListLlmModelsRequest.prototype.setCcaiServiceName = function(va
|
|
|
980
996
|
};
|
|
981
997
|
|
|
982
998
|
|
|
999
|
+
/**
|
|
1000
|
+
* optional google.protobuf.FieldMask field_mask = 2;
|
|
1001
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
1002
|
+
*/
|
|
1003
|
+
proto.ondewo.nlu.ListLlmModelsRequest.prototype.getFieldMask = function() {
|
|
1004
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
1005
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 2));
|
|
1006
|
+
};
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
/**
|
|
1010
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
1011
|
+
* @return {!proto.ondewo.nlu.ListLlmModelsRequest} returns this
|
|
1012
|
+
*/
|
|
1013
|
+
proto.ondewo.nlu.ListLlmModelsRequest.prototype.setFieldMask = function(value) {
|
|
1014
|
+
return jspb.Message.setWrapperField(this, 2, value);
|
|
1015
|
+
};
|
|
1016
|
+
|
|
1017
|
+
|
|
1018
|
+
/**
|
|
1019
|
+
* Clears the message field making it undefined.
|
|
1020
|
+
* @return {!proto.ondewo.nlu.ListLlmModelsRequest} returns this
|
|
1021
|
+
*/
|
|
1022
|
+
proto.ondewo.nlu.ListLlmModelsRequest.prototype.clearFieldMask = function() {
|
|
1023
|
+
return this.setFieldMask(undefined);
|
|
1024
|
+
};
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
/**
|
|
1028
|
+
* Returns whether this field is set.
|
|
1029
|
+
* @return {boolean}
|
|
1030
|
+
*/
|
|
1031
|
+
proto.ondewo.nlu.ListLlmModelsRequest.prototype.hasFieldMask = function() {
|
|
1032
|
+
return jspb.Message.getField(this, 2) != null;
|
|
1033
|
+
};
|
|
1034
|
+
|
|
1035
|
+
|
|
983
1036
|
|
|
984
1037
|
/**
|
|
985
1038
|
* List of repeated fields within this message type.
|
|
@@ -1432,7 +1485,8 @@ proto.ondewo.nlu.LlmGenerateRequest.toObject = function(includeInstance, msg) {
|
|
|
1432
1485
|
llmGenerationRequest: (f = msg.getLlmGenerationRequest()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
1433
1486
|
ccaiServiceName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
1434
1487
|
fileResourcesList: jspb.Message.toObjectList(msg.getFileResourcesList(),
|
|
1435
|
-
ondewo_nlu_session_pb.FileResource.toObject, includeInstance)
|
|
1488
|
+
ondewo_nlu_session_pb.FileResource.toObject, includeInstance),
|
|
1489
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
1436
1490
|
};
|
|
1437
1491
|
|
|
1438
1492
|
if (includeInstance) {
|
|
@@ -1483,6 +1537,11 @@ proto.ondewo.nlu.LlmGenerateRequest.deserializeBinaryFromReader = function(msg,
|
|
|
1483
1537
|
reader.readMessage(value,ondewo_nlu_session_pb.FileResource.deserializeBinaryFromReader);
|
|
1484
1538
|
msg.addFileResources(value);
|
|
1485
1539
|
break;
|
|
1540
|
+
case 4:
|
|
1541
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
1542
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
1543
|
+
msg.setFieldMask(value);
|
|
1544
|
+
break;
|
|
1486
1545
|
default:
|
|
1487
1546
|
reader.skipField();
|
|
1488
1547
|
break;
|
|
@@ -1535,6 +1594,14 @@ proto.ondewo.nlu.LlmGenerateRequest.serializeBinaryToWriter = function(message,
|
|
|
1535
1594
|
ondewo_nlu_session_pb.FileResource.serializeBinaryToWriter
|
|
1536
1595
|
);
|
|
1537
1596
|
}
|
|
1597
|
+
f = message.getFieldMask();
|
|
1598
|
+
if (f != null) {
|
|
1599
|
+
writer.writeMessage(
|
|
1600
|
+
4,
|
|
1601
|
+
f,
|
|
1602
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
1603
|
+
);
|
|
1604
|
+
}
|
|
1538
1605
|
};
|
|
1539
1606
|
|
|
1540
1607
|
|
|
@@ -1631,6 +1698,43 @@ proto.ondewo.nlu.LlmGenerateRequest.prototype.clearFileResourcesList = function(
|
|
|
1631
1698
|
};
|
|
1632
1699
|
|
|
1633
1700
|
|
|
1701
|
+
/**
|
|
1702
|
+
* optional google.protobuf.FieldMask field_mask = 4;
|
|
1703
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
1704
|
+
*/
|
|
1705
|
+
proto.ondewo.nlu.LlmGenerateRequest.prototype.getFieldMask = function() {
|
|
1706
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
1707
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 4));
|
|
1708
|
+
};
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
/**
|
|
1712
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
1713
|
+
* @return {!proto.ondewo.nlu.LlmGenerateRequest} returns this
|
|
1714
|
+
*/
|
|
1715
|
+
proto.ondewo.nlu.LlmGenerateRequest.prototype.setFieldMask = function(value) {
|
|
1716
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
1717
|
+
};
|
|
1718
|
+
|
|
1719
|
+
|
|
1720
|
+
/**
|
|
1721
|
+
* Clears the message field making it undefined.
|
|
1722
|
+
* @return {!proto.ondewo.nlu.LlmGenerateRequest} returns this
|
|
1723
|
+
*/
|
|
1724
|
+
proto.ondewo.nlu.LlmGenerateRequest.prototype.clearFieldMask = function() {
|
|
1725
|
+
return this.setFieldMask(undefined);
|
|
1726
|
+
};
|
|
1727
|
+
|
|
1728
|
+
|
|
1729
|
+
/**
|
|
1730
|
+
* Returns whether this field is set.
|
|
1731
|
+
* @return {boolean}
|
|
1732
|
+
*/
|
|
1733
|
+
proto.ondewo.nlu.LlmGenerateRequest.prototype.hasFieldMask = function() {
|
|
1734
|
+
return jspb.Message.getField(this, 4) != null;
|
|
1735
|
+
};
|
|
1736
|
+
|
|
1737
|
+
|
|
1634
1738
|
|
|
1635
1739
|
/**
|
|
1636
1740
|
* List of repeated fields within this message type.
|
|
@@ -2028,7 +2132,8 @@ proto.ondewo.nlu.ExtractEntitiesRequest.toObject = function(includeInstance, msg
|
|
|
2028
2132
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
2029
2133
|
text: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
2030
2134
|
languageCode: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
2031
|
-
intentName: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
2135
|
+
intentName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
2136
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
2032
2137
|
};
|
|
2033
2138
|
|
|
2034
2139
|
if (includeInstance) {
|
|
@@ -2081,6 +2186,11 @@ proto.ondewo.nlu.ExtractEntitiesRequest.deserializeBinaryFromReader = function(m
|
|
|
2081
2186
|
var value = /** @type {string} */ (reader.readString());
|
|
2082
2187
|
msg.setIntentName(value);
|
|
2083
2188
|
break;
|
|
2189
|
+
case 5:
|
|
2190
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
2191
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
2192
|
+
msg.setFieldMask(value);
|
|
2193
|
+
break;
|
|
2084
2194
|
default:
|
|
2085
2195
|
reader.skipField();
|
|
2086
2196
|
break;
|
|
@@ -2138,6 +2248,14 @@ proto.ondewo.nlu.ExtractEntitiesRequest.serializeBinaryToWriter = function(messa
|
|
|
2138
2248
|
f
|
|
2139
2249
|
);
|
|
2140
2250
|
}
|
|
2251
|
+
f = message.getFieldMask();
|
|
2252
|
+
if (f != null) {
|
|
2253
|
+
writer.writeMessage(
|
|
2254
|
+
5,
|
|
2255
|
+
f,
|
|
2256
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
2257
|
+
);
|
|
2258
|
+
}
|
|
2141
2259
|
};
|
|
2142
2260
|
|
|
2143
2261
|
|
|
@@ -2213,6 +2331,43 @@ proto.ondewo.nlu.ExtractEntitiesRequest.prototype.setIntentName = function(value
|
|
|
2213
2331
|
};
|
|
2214
2332
|
|
|
2215
2333
|
|
|
2334
|
+
/**
|
|
2335
|
+
* optional google.protobuf.FieldMask field_mask = 5;
|
|
2336
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
2337
|
+
*/
|
|
2338
|
+
proto.ondewo.nlu.ExtractEntitiesRequest.prototype.getFieldMask = function() {
|
|
2339
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
2340
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 5));
|
|
2341
|
+
};
|
|
2342
|
+
|
|
2343
|
+
|
|
2344
|
+
/**
|
|
2345
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
2346
|
+
* @return {!proto.ondewo.nlu.ExtractEntitiesRequest} returns this
|
|
2347
|
+
*/
|
|
2348
|
+
proto.ondewo.nlu.ExtractEntitiesRequest.prototype.setFieldMask = function(value) {
|
|
2349
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
|
2350
|
+
};
|
|
2351
|
+
|
|
2352
|
+
|
|
2353
|
+
/**
|
|
2354
|
+
* Clears the message field making it undefined.
|
|
2355
|
+
* @return {!proto.ondewo.nlu.ExtractEntitiesRequest} returns this
|
|
2356
|
+
*/
|
|
2357
|
+
proto.ondewo.nlu.ExtractEntitiesRequest.prototype.clearFieldMask = function() {
|
|
2358
|
+
return this.setFieldMask(undefined);
|
|
2359
|
+
};
|
|
2360
|
+
|
|
2361
|
+
|
|
2362
|
+
/**
|
|
2363
|
+
* Returns whether this field is set.
|
|
2364
|
+
* @return {boolean}
|
|
2365
|
+
*/
|
|
2366
|
+
proto.ondewo.nlu.ExtractEntitiesRequest.prototype.hasFieldMask = function() {
|
|
2367
|
+
return jspb.Message.getField(this, 5) != null;
|
|
2368
|
+
};
|
|
2369
|
+
|
|
2370
|
+
|
|
2216
2371
|
|
|
2217
2372
|
/**
|
|
2218
2373
|
* List of repeated fields within this message type.
|
|
@@ -2257,7 +2412,8 @@ text: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
|
2257
2412
|
potentialEntitiesList: jspb.Message.toObjectList(msg.getPotentialEntitiesList(),
|
|
2258
2413
|
proto.ondewo.nlu.EntityTypeFuzzyNerConfig.toObject, includeInstance),
|
|
2259
2414
|
minimalScore: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0),
|
|
2260
|
-
allowOverlaps: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
2415
|
+
allowOverlaps: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
2416
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
2261
2417
|
};
|
|
2262
2418
|
|
|
2263
2419
|
if (includeInstance) {
|
|
@@ -2315,6 +2471,11 @@ proto.ondewo.nlu.ExtractEntitiesFuzzyRequest.deserializeBinaryFromReader = funct
|
|
|
2315
2471
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
2316
2472
|
msg.setAllowOverlaps(value);
|
|
2317
2473
|
break;
|
|
2474
|
+
case 6:
|
|
2475
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
2476
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
2477
|
+
msg.setFieldMask(value);
|
|
2478
|
+
break;
|
|
2318
2479
|
default:
|
|
2319
2480
|
reader.skipField();
|
|
2320
2481
|
break;
|
|
@@ -2380,6 +2541,14 @@ proto.ondewo.nlu.ExtractEntitiesFuzzyRequest.serializeBinaryToWriter = function(
|
|
|
2380
2541
|
f
|
|
2381
2542
|
);
|
|
2382
2543
|
}
|
|
2544
|
+
f = message.getFieldMask();
|
|
2545
|
+
if (f != null) {
|
|
2546
|
+
writer.writeMessage(
|
|
2547
|
+
6,
|
|
2548
|
+
f,
|
|
2549
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
2550
|
+
);
|
|
2551
|
+
}
|
|
2383
2552
|
};
|
|
2384
2553
|
|
|
2385
2554
|
|
|
@@ -2493,6 +2662,43 @@ proto.ondewo.nlu.ExtractEntitiesFuzzyRequest.prototype.setAllowOverlaps = functi
|
|
|
2493
2662
|
};
|
|
2494
2663
|
|
|
2495
2664
|
|
|
2665
|
+
/**
|
|
2666
|
+
* optional google.protobuf.FieldMask field_mask = 6;
|
|
2667
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
2668
|
+
*/
|
|
2669
|
+
proto.ondewo.nlu.ExtractEntitiesFuzzyRequest.prototype.getFieldMask = function() {
|
|
2670
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
2671
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 6));
|
|
2672
|
+
};
|
|
2673
|
+
|
|
2674
|
+
|
|
2675
|
+
/**
|
|
2676
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
2677
|
+
* @return {!proto.ondewo.nlu.ExtractEntitiesFuzzyRequest} returns this
|
|
2678
|
+
*/
|
|
2679
|
+
proto.ondewo.nlu.ExtractEntitiesFuzzyRequest.prototype.setFieldMask = function(value) {
|
|
2680
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
2681
|
+
};
|
|
2682
|
+
|
|
2683
|
+
|
|
2684
|
+
/**
|
|
2685
|
+
* Clears the message field making it undefined.
|
|
2686
|
+
* @return {!proto.ondewo.nlu.ExtractEntitiesFuzzyRequest} returns this
|
|
2687
|
+
*/
|
|
2688
|
+
proto.ondewo.nlu.ExtractEntitiesFuzzyRequest.prototype.clearFieldMask = function() {
|
|
2689
|
+
return this.setFieldMask(undefined);
|
|
2690
|
+
};
|
|
2691
|
+
|
|
2692
|
+
|
|
2693
|
+
/**
|
|
2694
|
+
* Returns whether this field is set.
|
|
2695
|
+
* @return {boolean}
|
|
2696
|
+
*/
|
|
2697
|
+
proto.ondewo.nlu.ExtractEntitiesFuzzyRequest.prototype.hasFieldMask = function() {
|
|
2698
|
+
return jspb.Message.getField(this, 6) != null;
|
|
2699
|
+
};
|
|
2700
|
+
|
|
2701
|
+
|
|
2496
2702
|
|
|
2497
2703
|
/**
|
|
2498
2704
|
* List of repeated fields within this message type.
|
|
@@ -3243,7 +3449,8 @@ sentence: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
|
3243
3449
|
languageCode: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
3244
3450
|
parent: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
3245
3451
|
protectedWordsList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
3246
|
-
wordsToChangeList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f
|
|
3452
|
+
wordsToChangeList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
|
|
3453
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
3247
3454
|
};
|
|
3248
3455
|
|
|
3249
3456
|
if (includeInstance) {
|
|
@@ -3305,6 +3512,11 @@ proto.ondewo.nlu.GetAlternativeSentencesRequest.deserializeBinaryFromReader = fu
|
|
|
3305
3512
|
var value = /** @type {string} */ (reader.readString());
|
|
3306
3513
|
msg.addWordsToChange(value);
|
|
3307
3514
|
break;
|
|
3515
|
+
case 8:
|
|
3516
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
3517
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
3518
|
+
msg.setFieldMask(value);
|
|
3519
|
+
break;
|
|
3308
3520
|
default:
|
|
3309
3521
|
reader.skipField();
|
|
3310
3522
|
break;
|
|
@@ -3377,6 +3589,14 @@ proto.ondewo.nlu.GetAlternativeSentencesRequest.serializeBinaryToWriter = functi
|
|
|
3377
3589
|
f
|
|
3378
3590
|
);
|
|
3379
3591
|
}
|
|
3592
|
+
f = message.getFieldMask();
|
|
3593
|
+
if (f != null) {
|
|
3594
|
+
writer.writeMessage(
|
|
3595
|
+
8,
|
|
3596
|
+
f,
|
|
3597
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
3598
|
+
);
|
|
3599
|
+
}
|
|
3380
3600
|
};
|
|
3381
3601
|
|
|
3382
3602
|
|
|
@@ -3545,6 +3765,43 @@ proto.ondewo.nlu.GetAlternativeSentencesRequest.prototype.clearWordsToChangeList
|
|
|
3545
3765
|
};
|
|
3546
3766
|
|
|
3547
3767
|
|
|
3768
|
+
/**
|
|
3769
|
+
* optional google.protobuf.FieldMask field_mask = 8;
|
|
3770
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
3771
|
+
*/
|
|
3772
|
+
proto.ondewo.nlu.GetAlternativeSentencesRequest.prototype.getFieldMask = function() {
|
|
3773
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
3774
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 8));
|
|
3775
|
+
};
|
|
3776
|
+
|
|
3777
|
+
|
|
3778
|
+
/**
|
|
3779
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
3780
|
+
* @return {!proto.ondewo.nlu.GetAlternativeSentencesRequest} returns this
|
|
3781
|
+
*/
|
|
3782
|
+
proto.ondewo.nlu.GetAlternativeSentencesRequest.prototype.setFieldMask = function(value) {
|
|
3783
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
3784
|
+
};
|
|
3785
|
+
|
|
3786
|
+
|
|
3787
|
+
/**
|
|
3788
|
+
* Clears the message field making it undefined.
|
|
3789
|
+
* @return {!proto.ondewo.nlu.GetAlternativeSentencesRequest} returns this
|
|
3790
|
+
*/
|
|
3791
|
+
proto.ondewo.nlu.GetAlternativeSentencesRequest.prototype.clearFieldMask = function() {
|
|
3792
|
+
return this.setFieldMask(undefined);
|
|
3793
|
+
};
|
|
3794
|
+
|
|
3795
|
+
|
|
3796
|
+
/**
|
|
3797
|
+
* Returns whether this field is set.
|
|
3798
|
+
* @return {boolean}
|
|
3799
|
+
*/
|
|
3800
|
+
proto.ondewo.nlu.GetAlternativeSentencesRequest.prototype.hasFieldMask = function() {
|
|
3801
|
+
return jspb.Message.getField(this, 8) != null;
|
|
3802
|
+
};
|
|
3803
|
+
|
|
3804
|
+
|
|
3548
3805
|
|
|
3549
3806
|
|
|
3550
3807
|
|
|
@@ -3580,7 +3837,8 @@ proto.ondewo.nlu.GenerateUserSaysRequest.toObject = function(includeInstance, ms
|
|
|
3580
3837
|
languageCode: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
3581
3838
|
parent: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
3582
3839
|
nRepeatSynonym: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
3583
|
-
branch: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
3840
|
+
branch: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
3841
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
3584
3842
|
};
|
|
3585
3843
|
|
|
3586
3844
|
if (includeInstance) {
|
|
@@ -3633,6 +3891,11 @@ proto.ondewo.nlu.GenerateUserSaysRequest.deserializeBinaryFromReader = function(
|
|
|
3633
3891
|
var value = /** @type {string} */ (reader.readString());
|
|
3634
3892
|
msg.setBranch(value);
|
|
3635
3893
|
break;
|
|
3894
|
+
case 9:
|
|
3895
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
3896
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
3897
|
+
msg.setFieldMask(value);
|
|
3898
|
+
break;
|
|
3636
3899
|
default:
|
|
3637
3900
|
reader.skipField();
|
|
3638
3901
|
break;
|
|
@@ -3690,6 +3953,14 @@ proto.ondewo.nlu.GenerateUserSaysRequest.serializeBinaryToWriter = function(mess
|
|
|
3690
3953
|
f
|
|
3691
3954
|
);
|
|
3692
3955
|
}
|
|
3956
|
+
f = message.getFieldMask();
|
|
3957
|
+
if (f != null) {
|
|
3958
|
+
writer.writeMessage(
|
|
3959
|
+
9,
|
|
3960
|
+
f,
|
|
3961
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
3962
|
+
);
|
|
3963
|
+
}
|
|
3693
3964
|
};
|
|
3694
3965
|
|
|
3695
3966
|
|
|
@@ -3765,6 +4036,43 @@ proto.ondewo.nlu.GenerateUserSaysRequest.prototype.setBranch = function(value) {
|
|
|
3765
4036
|
};
|
|
3766
4037
|
|
|
3767
4038
|
|
|
4039
|
+
/**
|
|
4040
|
+
* optional google.protobuf.FieldMask field_mask = 9;
|
|
4041
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
4042
|
+
*/
|
|
4043
|
+
proto.ondewo.nlu.GenerateUserSaysRequest.prototype.getFieldMask = function() {
|
|
4044
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
4045
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 9));
|
|
4046
|
+
};
|
|
4047
|
+
|
|
4048
|
+
|
|
4049
|
+
/**
|
|
4050
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
4051
|
+
* @return {!proto.ondewo.nlu.GenerateUserSaysRequest} returns this
|
|
4052
|
+
*/
|
|
4053
|
+
proto.ondewo.nlu.GenerateUserSaysRequest.prototype.setFieldMask = function(value) {
|
|
4054
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
4055
|
+
};
|
|
4056
|
+
|
|
4057
|
+
|
|
4058
|
+
/**
|
|
4059
|
+
* Clears the message field making it undefined.
|
|
4060
|
+
* @return {!proto.ondewo.nlu.GenerateUserSaysRequest} returns this
|
|
4061
|
+
*/
|
|
4062
|
+
proto.ondewo.nlu.GenerateUserSaysRequest.prototype.clearFieldMask = function() {
|
|
4063
|
+
return this.setFieldMask(undefined);
|
|
4064
|
+
};
|
|
4065
|
+
|
|
4066
|
+
|
|
4067
|
+
/**
|
|
4068
|
+
* Returns whether this field is set.
|
|
4069
|
+
* @return {boolean}
|
|
4070
|
+
*/
|
|
4071
|
+
proto.ondewo.nlu.GenerateUserSaysRequest.prototype.hasFieldMask = function() {
|
|
4072
|
+
return jspb.Message.getField(this, 9) != null;
|
|
4073
|
+
};
|
|
4074
|
+
|
|
4075
|
+
|
|
3768
4076
|
|
|
3769
4077
|
|
|
3770
4078
|
|
|
@@ -3801,7 +4109,8 @@ languageCode: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
|
3801
4109
|
parent: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
3802
4110
|
nRepeatSynonym: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
3803
4111
|
branch: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
3804
|
-
dropUnknownParameters: jspb.Message.getBooleanFieldWithDefault(msg, 9, false)
|
|
4112
|
+
dropUnknownParameters: jspb.Message.getBooleanFieldWithDefault(msg, 9, false),
|
|
4113
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
3805
4114
|
};
|
|
3806
4115
|
|
|
3807
4116
|
if (includeInstance) {
|
|
@@ -3858,6 +4167,11 @@ proto.ondewo.nlu.GenerateResponsesRequest.deserializeBinaryFromReader = function
|
|
|
3858
4167
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
3859
4168
|
msg.setDropUnknownParameters(value);
|
|
3860
4169
|
break;
|
|
4170
|
+
case 10:
|
|
4171
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
4172
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
4173
|
+
msg.setFieldMask(value);
|
|
4174
|
+
break;
|
|
3861
4175
|
default:
|
|
3862
4176
|
reader.skipField();
|
|
3863
4177
|
break;
|
|
@@ -3922,6 +4236,14 @@ proto.ondewo.nlu.GenerateResponsesRequest.serializeBinaryToWriter = function(mes
|
|
|
3922
4236
|
f
|
|
3923
4237
|
);
|
|
3924
4238
|
}
|
|
4239
|
+
f = message.getFieldMask();
|
|
4240
|
+
if (f != null) {
|
|
4241
|
+
writer.writeMessage(
|
|
4242
|
+
10,
|
|
4243
|
+
f,
|
|
4244
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
4245
|
+
);
|
|
4246
|
+
}
|
|
3925
4247
|
};
|
|
3926
4248
|
|
|
3927
4249
|
|
|
@@ -4015,6 +4337,43 @@ proto.ondewo.nlu.GenerateResponsesRequest.prototype.setDropUnknownParameters = f
|
|
|
4015
4337
|
};
|
|
4016
4338
|
|
|
4017
4339
|
|
|
4340
|
+
/**
|
|
4341
|
+
* optional google.protobuf.FieldMask field_mask = 10;
|
|
4342
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
4343
|
+
*/
|
|
4344
|
+
proto.ondewo.nlu.GenerateResponsesRequest.prototype.getFieldMask = function() {
|
|
4345
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
4346
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 10));
|
|
4347
|
+
};
|
|
4348
|
+
|
|
4349
|
+
|
|
4350
|
+
/**
|
|
4351
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
4352
|
+
* @return {!proto.ondewo.nlu.GenerateResponsesRequest} returns this
|
|
4353
|
+
*/
|
|
4354
|
+
proto.ondewo.nlu.GenerateResponsesRequest.prototype.setFieldMask = function(value) {
|
|
4355
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
4356
|
+
};
|
|
4357
|
+
|
|
4358
|
+
|
|
4359
|
+
/**
|
|
4360
|
+
* Clears the message field making it undefined.
|
|
4361
|
+
* @return {!proto.ondewo.nlu.GenerateResponsesRequest} returns this
|
|
4362
|
+
*/
|
|
4363
|
+
proto.ondewo.nlu.GenerateResponsesRequest.prototype.clearFieldMask = function() {
|
|
4364
|
+
return this.setFieldMask(undefined);
|
|
4365
|
+
};
|
|
4366
|
+
|
|
4367
|
+
|
|
4368
|
+
/**
|
|
4369
|
+
* Returns whether this field is set.
|
|
4370
|
+
* @return {boolean}
|
|
4371
|
+
*/
|
|
4372
|
+
proto.ondewo.nlu.GenerateResponsesRequest.prototype.hasFieldMask = function() {
|
|
4373
|
+
return jspb.Message.getField(this, 10) != null;
|
|
4374
|
+
};
|
|
4375
|
+
|
|
4376
|
+
|
|
4018
4377
|
|
|
4019
4378
|
/**
|
|
4020
4379
|
* List of repeated fields within this message type.
|
|
@@ -4063,7 +4422,8 @@ detectEntities: jspb.Message.getBooleanFieldWithDefault(msg, 6, false),
|
|
|
4063
4422
|
similarityThreshold: jspb.Message.getFloatingPointFieldWithDefault(msg, 7, 0.0),
|
|
4064
4423
|
protectedWordsList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
|
|
4065
4424
|
wordsToChangeList: (f = jspb.Message.getRepeatedField(msg, 9)) == null ? undefined : f,
|
|
4066
|
-
branch: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
4425
|
+
branch: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
4426
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
4067
4427
|
};
|
|
4068
4428
|
|
|
4069
4429
|
if (includeInstance) {
|
|
@@ -4142,6 +4502,11 @@ proto.ondewo.nlu.GetAlternativeTrainingPhrasesRequest.deserializeBinaryFromReade
|
|
|
4142
4502
|
var value = /** @type {string} */ (reader.readString());
|
|
4143
4503
|
msg.setBranch(value);
|
|
4144
4504
|
break;
|
|
4505
|
+
case 11:
|
|
4506
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
4507
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
4508
|
+
msg.setFieldMask(value);
|
|
4509
|
+
break;
|
|
4145
4510
|
default:
|
|
4146
4511
|
reader.skipField();
|
|
4147
4512
|
break;
|
|
@@ -4243,6 +4608,14 @@ proto.ondewo.nlu.GetAlternativeTrainingPhrasesRequest.serializeBinaryToWriter =
|
|
|
4243
4608
|
f
|
|
4244
4609
|
);
|
|
4245
4610
|
}
|
|
4611
|
+
f = message.getFieldMask();
|
|
4612
|
+
if (f != null) {
|
|
4613
|
+
writer.writeMessage(
|
|
4614
|
+
11,
|
|
4615
|
+
f,
|
|
4616
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
4617
|
+
);
|
|
4618
|
+
}
|
|
4246
4619
|
};
|
|
4247
4620
|
|
|
4248
4621
|
|
|
@@ -4502,6 +4875,43 @@ proto.ondewo.nlu.GetAlternativeTrainingPhrasesRequest.prototype.setBranch = func
|
|
|
4502
4875
|
};
|
|
4503
4876
|
|
|
4504
4877
|
|
|
4878
|
+
/**
|
|
4879
|
+
* optional google.protobuf.FieldMask field_mask = 11;
|
|
4880
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
4881
|
+
*/
|
|
4882
|
+
proto.ondewo.nlu.GetAlternativeTrainingPhrasesRequest.prototype.getFieldMask = function() {
|
|
4883
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
4884
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 11));
|
|
4885
|
+
};
|
|
4886
|
+
|
|
4887
|
+
|
|
4888
|
+
/**
|
|
4889
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
4890
|
+
* @return {!proto.ondewo.nlu.GetAlternativeTrainingPhrasesRequest} returns this
|
|
4891
|
+
*/
|
|
4892
|
+
proto.ondewo.nlu.GetAlternativeTrainingPhrasesRequest.prototype.setFieldMask = function(value) {
|
|
4893
|
+
return jspb.Message.setWrapperField(this, 11, value);
|
|
4894
|
+
};
|
|
4895
|
+
|
|
4896
|
+
|
|
4897
|
+
/**
|
|
4898
|
+
* Clears the message field making it undefined.
|
|
4899
|
+
* @return {!proto.ondewo.nlu.GetAlternativeTrainingPhrasesRequest} returns this
|
|
4900
|
+
*/
|
|
4901
|
+
proto.ondewo.nlu.GetAlternativeTrainingPhrasesRequest.prototype.clearFieldMask = function() {
|
|
4902
|
+
return this.setFieldMask(undefined);
|
|
4903
|
+
};
|
|
4904
|
+
|
|
4905
|
+
|
|
4906
|
+
/**
|
|
4907
|
+
* Returns whether this field is set.
|
|
4908
|
+
* @return {boolean}
|
|
4909
|
+
*/
|
|
4910
|
+
proto.ondewo.nlu.GetAlternativeTrainingPhrasesRequest.prototype.hasFieldMask = function() {
|
|
4911
|
+
return jspb.Message.getField(this, 11) != null;
|
|
4912
|
+
};
|
|
4913
|
+
|
|
4914
|
+
|
|
4505
4915
|
|
|
4506
4916
|
|
|
4507
4917
|
|
|
@@ -4537,7 +4947,8 @@ proto.ondewo.nlu.GetSynonymsRequest.toObject = function(includeInstance, msg) {
|
|
|
4537
4947
|
config: (f = msg.getConfig()) && proto.ondewo.nlu.DataEnrichmentConfig.toObject(includeInstance, f),
|
|
4538
4948
|
word: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
4539
4949
|
languageCode: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
4540
|
-
parent: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
4950
|
+
parent: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
4951
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
4541
4952
|
};
|
|
4542
4953
|
|
|
4543
4954
|
if (includeInstance) {
|
|
@@ -4591,6 +5002,11 @@ proto.ondewo.nlu.GetSynonymsRequest.deserializeBinaryFromReader = function(msg,
|
|
|
4591
5002
|
var value = /** @type {string} */ (reader.readString());
|
|
4592
5003
|
msg.setParent(value);
|
|
4593
5004
|
break;
|
|
5005
|
+
case 6:
|
|
5006
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
5007
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
5008
|
+
msg.setFieldMask(value);
|
|
5009
|
+
break;
|
|
4594
5010
|
default:
|
|
4595
5011
|
reader.skipField();
|
|
4596
5012
|
break;
|
|
@@ -4649,6 +5065,14 @@ proto.ondewo.nlu.GetSynonymsRequest.serializeBinaryToWriter = function(message,
|
|
|
4649
5065
|
f
|
|
4650
5066
|
);
|
|
4651
5067
|
}
|
|
5068
|
+
f = message.getFieldMask();
|
|
5069
|
+
if (f != null) {
|
|
5070
|
+
writer.writeMessage(
|
|
5071
|
+
6,
|
|
5072
|
+
f,
|
|
5073
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
5074
|
+
);
|
|
5075
|
+
}
|
|
4652
5076
|
};
|
|
4653
5077
|
|
|
4654
5078
|
|
|
@@ -4743,6 +5167,43 @@ proto.ondewo.nlu.GetSynonymsRequest.prototype.setParent = function(value) {
|
|
|
4743
5167
|
};
|
|
4744
5168
|
|
|
4745
5169
|
|
|
5170
|
+
/**
|
|
5171
|
+
* optional google.protobuf.FieldMask field_mask = 6;
|
|
5172
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
5173
|
+
*/
|
|
5174
|
+
proto.ondewo.nlu.GetSynonymsRequest.prototype.getFieldMask = function() {
|
|
5175
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
5176
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 6));
|
|
5177
|
+
};
|
|
5178
|
+
|
|
5179
|
+
|
|
5180
|
+
/**
|
|
5181
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
5182
|
+
* @return {!proto.ondewo.nlu.GetSynonymsRequest} returns this
|
|
5183
|
+
*/
|
|
5184
|
+
proto.ondewo.nlu.GetSynonymsRequest.prototype.setFieldMask = function(value) {
|
|
5185
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
5186
|
+
};
|
|
5187
|
+
|
|
5188
|
+
|
|
5189
|
+
/**
|
|
5190
|
+
* Clears the message field making it undefined.
|
|
5191
|
+
* @return {!proto.ondewo.nlu.GetSynonymsRequest} returns this
|
|
5192
|
+
*/
|
|
5193
|
+
proto.ondewo.nlu.GetSynonymsRequest.prototype.clearFieldMask = function() {
|
|
5194
|
+
return this.setFieldMask(undefined);
|
|
5195
|
+
};
|
|
5196
|
+
|
|
5197
|
+
|
|
5198
|
+
/**
|
|
5199
|
+
* Returns whether this field is set.
|
|
5200
|
+
* @return {boolean}
|
|
5201
|
+
*/
|
|
5202
|
+
proto.ondewo.nlu.GetSynonymsRequest.prototype.hasFieldMask = function() {
|
|
5203
|
+
return jspb.Message.getField(this, 6) != null;
|
|
5204
|
+
};
|
|
5205
|
+
|
|
5206
|
+
|
|
4746
5207
|
|
|
4747
5208
|
/**
|
|
4748
5209
|
* List of repeated fields within this message type.
|
|
@@ -8380,7 +8841,8 @@ languageCode: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
|
8380
8841
|
activeContexts: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
8381
8842
|
contextNamesList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
8382
8843
|
mode: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
8383
|
-
algorithmsList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f
|
|
8844
|
+
algorithmsList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
|
|
8845
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
8384
8846
|
};
|
|
8385
8847
|
|
|
8386
8848
|
if (includeInstance) {
|
|
@@ -8447,6 +8909,11 @@ proto.ondewo.nlu.ClassifyIntentsRequest.deserializeBinaryFromReader = function(m
|
|
|
8447
8909
|
msg.addAlgorithms(values[i]);
|
|
8448
8910
|
}
|
|
8449
8911
|
break;
|
|
8912
|
+
case 8:
|
|
8913
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
8914
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
8915
|
+
msg.setFieldMask(value);
|
|
8916
|
+
break;
|
|
8450
8917
|
default:
|
|
8451
8918
|
reader.skipField();
|
|
8452
8919
|
break;
|
|
@@ -8525,6 +8992,14 @@ proto.ondewo.nlu.ClassifyIntentsRequest.serializeBinaryToWriter = function(messa
|
|
|
8525
8992
|
f
|
|
8526
8993
|
);
|
|
8527
8994
|
}
|
|
8995
|
+
f = message.getFieldMask();
|
|
8996
|
+
if (f != null) {
|
|
8997
|
+
writer.writeMessage(
|
|
8998
|
+
8,
|
|
8999
|
+
f,
|
|
9000
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
9001
|
+
);
|
|
9002
|
+
}
|
|
8528
9003
|
};
|
|
8529
9004
|
|
|
8530
9005
|
|
|
@@ -8692,6 +9167,43 @@ proto.ondewo.nlu.ClassifyIntentsRequest.prototype.clearAlgorithmsList = function
|
|
|
8692
9167
|
};
|
|
8693
9168
|
|
|
8694
9169
|
|
|
9170
|
+
/**
|
|
9171
|
+
* optional google.protobuf.FieldMask field_mask = 8;
|
|
9172
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
9173
|
+
*/
|
|
9174
|
+
proto.ondewo.nlu.ClassifyIntentsRequest.prototype.getFieldMask = function() {
|
|
9175
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
9176
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 8));
|
|
9177
|
+
};
|
|
9178
|
+
|
|
9179
|
+
|
|
9180
|
+
/**
|
|
9181
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
9182
|
+
* @return {!proto.ondewo.nlu.ClassifyIntentsRequest} returns this
|
|
9183
|
+
*/
|
|
9184
|
+
proto.ondewo.nlu.ClassifyIntentsRequest.prototype.setFieldMask = function(value) {
|
|
9185
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
9186
|
+
};
|
|
9187
|
+
|
|
9188
|
+
|
|
9189
|
+
/**
|
|
9190
|
+
* Clears the message field making it undefined.
|
|
9191
|
+
* @return {!proto.ondewo.nlu.ClassifyIntentsRequest} returns this
|
|
9192
|
+
*/
|
|
9193
|
+
proto.ondewo.nlu.ClassifyIntentsRequest.prototype.clearFieldMask = function() {
|
|
9194
|
+
return this.setFieldMask(undefined);
|
|
9195
|
+
};
|
|
9196
|
+
|
|
9197
|
+
|
|
9198
|
+
/**
|
|
9199
|
+
* Returns whether this field is set.
|
|
9200
|
+
* @return {boolean}
|
|
9201
|
+
*/
|
|
9202
|
+
proto.ondewo.nlu.ClassifyIntentsRequest.prototype.hasFieldMask = function() {
|
|
9203
|
+
return jspb.Message.getField(this, 8) != null;
|
|
9204
|
+
};
|
|
9205
|
+
|
|
9206
|
+
|
|
8695
9207
|
|
|
8696
9208
|
|
|
8697
9209
|
|