@ondewo/nlu-client-typescript 6.1.0 → 6.3.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_grpc_web_pb.js +1 -1
- 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 +3 -1
- 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_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/ccai_project_pb.d.ts +47 -0
- package/api/ondewo/nlu/ccai_project_pb.js +219 -7
- package/api/ondewo/nlu/context_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/entity_type_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/intent_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/operations_grpc_web_pb.js +3 -1
- 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_grpc_web_pb.js +1 -1
- 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/project_statistics_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/rag_grpc_web_pb.d.ts +697 -0
- package/api/ondewo/nlu/rag_grpc_web_pb.js +3571 -0
- package/api/ondewo/nlu/rag_pb.d.ts +4781 -0
- package/api/ondewo/nlu/rag_pb.js +37763 -0
- package/api/ondewo/nlu/server_statistics_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/session_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/session_pb.d.ts +198 -0
- package/api/ondewo/nlu/session_pb.js +953 -35
- package/api/ondewo/nlu/user_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/user_pb.d.ts +77 -0
- package/api/ondewo/nlu/user_pb.js +364 -7
- package/api/ondewo/nlu/utility_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/webhook_grpc_web_pb.js +1 -1
- package/api/ondewo/qa/qa_grpc_web_pb.js +1 -1
- package/package.json +3 -3
- package/public-api.d.ts +2 -0
- package/public-api.js +2 -0
|
@@ -14405,7 +14405,8 @@ proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest.prototype.toObject = func
|
|
|
14405
14405
|
proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
14406
14406
|
var f, obj = {
|
|
14407
14407
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
14408
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
14408
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
14409
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
14409
14410
|
};
|
|
14410
14411
|
|
|
14411
14412
|
if (includeInstance) {
|
|
@@ -14451,6 +14452,11 @@ proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest.deserializeBinaryFromRead
|
|
|
14451
14452
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
14452
14453
|
msg.setSessionFilter(value);
|
|
14453
14454
|
break;
|
|
14455
|
+
case 3:
|
|
14456
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
14457
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
14458
|
+
msg.setFieldMask(value);
|
|
14459
|
+
break;
|
|
14454
14460
|
default:
|
|
14455
14461
|
reader.skipField();
|
|
14456
14462
|
break;
|
|
@@ -14495,6 +14501,14 @@ proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest.serializeBinaryToWriter =
|
|
|
14495
14501
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
14496
14502
|
);
|
|
14497
14503
|
}
|
|
14504
|
+
f = message.getFieldMask();
|
|
14505
|
+
if (f != null) {
|
|
14506
|
+
writer.writeMessage(
|
|
14507
|
+
3,
|
|
14508
|
+
f,
|
|
14509
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
14510
|
+
);
|
|
14511
|
+
}
|
|
14498
14512
|
};
|
|
14499
14513
|
|
|
14500
14514
|
|
|
@@ -14553,6 +14567,43 @@ proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest.prototype.hasSessionFilte
|
|
|
14553
14567
|
};
|
|
14554
14568
|
|
|
14555
14569
|
|
|
14570
|
+
/**
|
|
14571
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
14572
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
14573
|
+
*/
|
|
14574
|
+
proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
14575
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
14576
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
14577
|
+
};
|
|
14578
|
+
|
|
14579
|
+
|
|
14580
|
+
/**
|
|
14581
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
14582
|
+
* @return {!proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest} returns this
|
|
14583
|
+
*/
|
|
14584
|
+
proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
14585
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
14586
|
+
};
|
|
14587
|
+
|
|
14588
|
+
|
|
14589
|
+
/**
|
|
14590
|
+
* Clears the message field making it undefined.
|
|
14591
|
+
* @return {!proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest} returns this
|
|
14592
|
+
*/
|
|
14593
|
+
proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
14594
|
+
return this.setFieldMask(undefined);
|
|
14595
|
+
};
|
|
14596
|
+
|
|
14597
|
+
|
|
14598
|
+
/**
|
|
14599
|
+
* Returns whether this field is set.
|
|
14600
|
+
* @return {boolean}
|
|
14601
|
+
*/
|
|
14602
|
+
proto.ondewo.nlu.ListSessionLabelsOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
14603
|
+
return jspb.Message.getField(this, 3) != null;
|
|
14604
|
+
};
|
|
14605
|
+
|
|
14606
|
+
|
|
14556
14607
|
|
|
14557
14608
|
/**
|
|
14558
14609
|
* List of repeated fields within this message type.
|
|
@@ -14742,7 +14793,8 @@ proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest.prototype.toObject = func
|
|
|
14742
14793
|
proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
14743
14794
|
var f, obj = {
|
|
14744
14795
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
14745
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
14796
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
14797
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
14746
14798
|
};
|
|
14747
14799
|
|
|
14748
14800
|
if (includeInstance) {
|
|
@@ -14788,6 +14840,11 @@ proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest.deserializeBinaryFromRead
|
|
|
14788
14840
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
14789
14841
|
msg.setSessionFilter(value);
|
|
14790
14842
|
break;
|
|
14843
|
+
case 3:
|
|
14844
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
14845
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
14846
|
+
msg.setFieldMask(value);
|
|
14847
|
+
break;
|
|
14791
14848
|
default:
|
|
14792
14849
|
reader.skipField();
|
|
14793
14850
|
break;
|
|
@@ -14832,6 +14889,14 @@ proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest.serializeBinaryToWriter =
|
|
|
14832
14889
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
14833
14890
|
);
|
|
14834
14891
|
}
|
|
14892
|
+
f = message.getFieldMask();
|
|
14893
|
+
if (f != null) {
|
|
14894
|
+
writer.writeMessage(
|
|
14895
|
+
3,
|
|
14896
|
+
f,
|
|
14897
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
14898
|
+
);
|
|
14899
|
+
}
|
|
14835
14900
|
};
|
|
14836
14901
|
|
|
14837
14902
|
|
|
@@ -14890,6 +14955,43 @@ proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest.prototype.hasSessionFilte
|
|
|
14890
14955
|
};
|
|
14891
14956
|
|
|
14892
14957
|
|
|
14958
|
+
/**
|
|
14959
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
14960
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
14961
|
+
*/
|
|
14962
|
+
proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
14963
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
14964
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
14965
|
+
};
|
|
14966
|
+
|
|
14967
|
+
|
|
14968
|
+
/**
|
|
14969
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
14970
|
+
* @return {!proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest} returns this
|
|
14971
|
+
*/
|
|
14972
|
+
proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
14973
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
14974
|
+
};
|
|
14975
|
+
|
|
14976
|
+
|
|
14977
|
+
/**
|
|
14978
|
+
* Clears the message field making it undefined.
|
|
14979
|
+
* @return {!proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest} returns this
|
|
14980
|
+
*/
|
|
14981
|
+
proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
14982
|
+
return this.setFieldMask(undefined);
|
|
14983
|
+
};
|
|
14984
|
+
|
|
14985
|
+
|
|
14986
|
+
/**
|
|
14987
|
+
* Returns whether this field is set.
|
|
14988
|
+
* @return {boolean}
|
|
14989
|
+
*/
|
|
14990
|
+
proto.ondewo.nlu.ListLanguageCodesOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
14991
|
+
return jspb.Message.getField(this, 3) != null;
|
|
14992
|
+
};
|
|
14993
|
+
|
|
14994
|
+
|
|
14893
14995
|
|
|
14894
14996
|
/**
|
|
14895
14997
|
* List of repeated fields within this message type.
|
|
@@ -15079,7 +15181,8 @@ proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest.prototype.toObject = fun
|
|
|
15079
15181
|
proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
15080
15182
|
var f, obj = {
|
|
15081
15183
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
15082
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
15184
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
15185
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
15083
15186
|
};
|
|
15084
15187
|
|
|
15085
15188
|
if (includeInstance) {
|
|
@@ -15125,6 +15228,11 @@ proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest.deserializeBinaryFromRea
|
|
|
15125
15228
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
15126
15229
|
msg.setSessionFilter(value);
|
|
15127
15230
|
break;
|
|
15231
|
+
case 3:
|
|
15232
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
15233
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
15234
|
+
msg.setFieldMask(value);
|
|
15235
|
+
break;
|
|
15128
15236
|
default:
|
|
15129
15237
|
reader.skipField();
|
|
15130
15238
|
break;
|
|
@@ -15169,6 +15277,14 @@ proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest.serializeBinaryToWriter
|
|
|
15169
15277
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
15170
15278
|
);
|
|
15171
15279
|
}
|
|
15280
|
+
f = message.getFieldMask();
|
|
15281
|
+
if (f != null) {
|
|
15282
|
+
writer.writeMessage(
|
|
15283
|
+
3,
|
|
15284
|
+
f,
|
|
15285
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
15286
|
+
);
|
|
15287
|
+
}
|
|
15172
15288
|
};
|
|
15173
15289
|
|
|
15174
15290
|
|
|
@@ -15227,6 +15343,43 @@ proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest.prototype.hasSessionFilt
|
|
|
15227
15343
|
};
|
|
15228
15344
|
|
|
15229
15345
|
|
|
15346
|
+
/**
|
|
15347
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
15348
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
15349
|
+
*/
|
|
15350
|
+
proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
15351
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
15352
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
15353
|
+
};
|
|
15354
|
+
|
|
15355
|
+
|
|
15356
|
+
/**
|
|
15357
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
15358
|
+
* @return {!proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest} returns this
|
|
15359
|
+
*/
|
|
15360
|
+
proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
15361
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
15362
|
+
};
|
|
15363
|
+
|
|
15364
|
+
|
|
15365
|
+
/**
|
|
15366
|
+
* Clears the message field making it undefined.
|
|
15367
|
+
* @return {!proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest} returns this
|
|
15368
|
+
*/
|
|
15369
|
+
proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
15370
|
+
return this.setFieldMask(undefined);
|
|
15371
|
+
};
|
|
15372
|
+
|
|
15373
|
+
|
|
15374
|
+
/**
|
|
15375
|
+
* Returns whether this field is set.
|
|
15376
|
+
* @return {boolean}
|
|
15377
|
+
*/
|
|
15378
|
+
proto.ondewo.nlu.ListMatchedIntentsOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
15379
|
+
return jspb.Message.getField(this, 3) != null;
|
|
15380
|
+
};
|
|
15381
|
+
|
|
15382
|
+
|
|
15230
15383
|
|
|
15231
15384
|
/**
|
|
15232
15385
|
* List of repeated fields within this message type.
|
|
@@ -15416,7 +15569,8 @@ proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest.prototype.toObject =
|
|
|
15416
15569
|
proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
15417
15570
|
var f, obj = {
|
|
15418
15571
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
15419
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
15572
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
15573
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
15420
15574
|
};
|
|
15421
15575
|
|
|
15422
15576
|
if (includeInstance) {
|
|
@@ -15462,6 +15616,11 @@ proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest.deserializeBinaryFro
|
|
|
15462
15616
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
15463
15617
|
msg.setSessionFilter(value);
|
|
15464
15618
|
break;
|
|
15619
|
+
case 3:
|
|
15620
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
15621
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
15622
|
+
msg.setFieldMask(value);
|
|
15623
|
+
break;
|
|
15465
15624
|
default:
|
|
15466
15625
|
reader.skipField();
|
|
15467
15626
|
break;
|
|
@@ -15506,6 +15665,14 @@ proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest.serializeBinaryToWri
|
|
|
15506
15665
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
15507
15666
|
);
|
|
15508
15667
|
}
|
|
15668
|
+
f = message.getFieldMask();
|
|
15669
|
+
if (f != null) {
|
|
15670
|
+
writer.writeMessage(
|
|
15671
|
+
3,
|
|
15672
|
+
f,
|
|
15673
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
15674
|
+
);
|
|
15675
|
+
}
|
|
15509
15676
|
};
|
|
15510
15677
|
|
|
15511
15678
|
|
|
@@ -15564,6 +15731,43 @@ proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest.prototype.hasSession
|
|
|
15564
15731
|
};
|
|
15565
15732
|
|
|
15566
15733
|
|
|
15734
|
+
/**
|
|
15735
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
15736
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
15737
|
+
*/
|
|
15738
|
+
proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
15739
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
15740
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
15741
|
+
};
|
|
15742
|
+
|
|
15743
|
+
|
|
15744
|
+
/**
|
|
15745
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
15746
|
+
* @return {!proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest} returns this
|
|
15747
|
+
*/
|
|
15748
|
+
proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
15749
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
15750
|
+
};
|
|
15751
|
+
|
|
15752
|
+
|
|
15753
|
+
/**
|
|
15754
|
+
* Clears the message field making it undefined.
|
|
15755
|
+
* @return {!proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest} returns this
|
|
15756
|
+
*/
|
|
15757
|
+
proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
15758
|
+
return this.setFieldMask(undefined);
|
|
15759
|
+
};
|
|
15760
|
+
|
|
15761
|
+
|
|
15762
|
+
/**
|
|
15763
|
+
* Returns whether this field is set.
|
|
15764
|
+
* @return {boolean}
|
|
15765
|
+
*/
|
|
15766
|
+
proto.ondewo.nlu.ListMatchedEntityTypesOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
15767
|
+
return jspb.Message.getField(this, 3) != null;
|
|
15768
|
+
};
|
|
15769
|
+
|
|
15770
|
+
|
|
15567
15771
|
|
|
15568
15772
|
/**
|
|
15569
15773
|
* List of repeated fields within this message type.
|
|
@@ -15753,7 +15957,8 @@ proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest.prototype.toObject = function(o
|
|
|
15753
15957
|
proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
15754
15958
|
var f, obj = {
|
|
15755
15959
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
15756
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
15960
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
15961
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
15757
15962
|
};
|
|
15758
15963
|
|
|
15759
15964
|
if (includeInstance) {
|
|
@@ -15799,6 +16004,11 @@ proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest.deserializeBinaryFromReader = f
|
|
|
15799
16004
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
15800
16005
|
msg.setSessionFilter(value);
|
|
15801
16006
|
break;
|
|
16007
|
+
case 3:
|
|
16008
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
16009
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
16010
|
+
msg.setFieldMask(value);
|
|
16011
|
+
break;
|
|
15802
16012
|
default:
|
|
15803
16013
|
reader.skipField();
|
|
15804
16014
|
break;
|
|
@@ -15843,6 +16053,14 @@ proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest.serializeBinaryToWriter = funct
|
|
|
15843
16053
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
15844
16054
|
);
|
|
15845
16055
|
}
|
|
16056
|
+
f = message.getFieldMask();
|
|
16057
|
+
if (f != null) {
|
|
16058
|
+
writer.writeMessage(
|
|
16059
|
+
3,
|
|
16060
|
+
f,
|
|
16061
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
16062
|
+
);
|
|
16063
|
+
}
|
|
15846
16064
|
};
|
|
15847
16065
|
|
|
15848
16066
|
|
|
@@ -15901,6 +16119,43 @@ proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest.prototype.hasSessionFilter = fu
|
|
|
15901
16119
|
};
|
|
15902
16120
|
|
|
15903
16121
|
|
|
16122
|
+
/**
|
|
16123
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
16124
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
16125
|
+
*/
|
|
16126
|
+
proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
16127
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
16128
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
16129
|
+
};
|
|
16130
|
+
|
|
16131
|
+
|
|
16132
|
+
/**
|
|
16133
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
16134
|
+
* @return {!proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest} returns this
|
|
16135
|
+
*/
|
|
16136
|
+
proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
16137
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
16138
|
+
};
|
|
16139
|
+
|
|
16140
|
+
|
|
16141
|
+
/**
|
|
16142
|
+
* Clears the message field making it undefined.
|
|
16143
|
+
* @return {!proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest} returns this
|
|
16144
|
+
*/
|
|
16145
|
+
proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
16146
|
+
return this.setFieldMask(undefined);
|
|
16147
|
+
};
|
|
16148
|
+
|
|
16149
|
+
|
|
16150
|
+
/**
|
|
16151
|
+
* Returns whether this field is set.
|
|
16152
|
+
* @return {boolean}
|
|
16153
|
+
*/
|
|
16154
|
+
proto.ondewo.nlu.ListUserIdsOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
16155
|
+
return jspb.Message.getField(this, 3) != null;
|
|
16156
|
+
};
|
|
16157
|
+
|
|
16158
|
+
|
|
15904
16159
|
|
|
15905
16160
|
/**
|
|
15906
16161
|
* List of repeated fields within this message type.
|
|
@@ -16090,7 +16345,8 @@ proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest.prototype.toObject =
|
|
|
16090
16345
|
proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
16091
16346
|
var f, obj = {
|
|
16092
16347
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
16093
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
16348
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
16349
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
16094
16350
|
};
|
|
16095
16351
|
|
|
16096
16352
|
if (includeInstance) {
|
|
@@ -16136,6 +16392,11 @@ proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest.deserializeBinaryFrom
|
|
|
16136
16392
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
16137
16393
|
msg.setSessionFilter(value);
|
|
16138
16394
|
break;
|
|
16395
|
+
case 3:
|
|
16396
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
16397
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
16398
|
+
msg.setFieldMask(value);
|
|
16399
|
+
break;
|
|
16139
16400
|
default:
|
|
16140
16401
|
reader.skipField();
|
|
16141
16402
|
break;
|
|
@@ -16180,6 +16441,14 @@ proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest.serializeBinaryToWrit
|
|
|
16180
16441
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
16181
16442
|
);
|
|
16182
16443
|
}
|
|
16444
|
+
f = message.getFieldMask();
|
|
16445
|
+
if (f != null) {
|
|
16446
|
+
writer.writeMessage(
|
|
16447
|
+
3,
|
|
16448
|
+
f,
|
|
16449
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
16450
|
+
);
|
|
16451
|
+
}
|
|
16183
16452
|
};
|
|
16184
16453
|
|
|
16185
16454
|
|
|
@@ -16238,6 +16507,43 @@ proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest.prototype.hasSessionF
|
|
|
16238
16507
|
};
|
|
16239
16508
|
|
|
16240
16509
|
|
|
16510
|
+
/**
|
|
16511
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
16512
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
16513
|
+
*/
|
|
16514
|
+
proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
16515
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
16516
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
16517
|
+
};
|
|
16518
|
+
|
|
16519
|
+
|
|
16520
|
+
/**
|
|
16521
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
16522
|
+
* @return {!proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest} returns this
|
|
16523
|
+
*/
|
|
16524
|
+
proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
16525
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
16526
|
+
};
|
|
16527
|
+
|
|
16528
|
+
|
|
16529
|
+
/**
|
|
16530
|
+
* Clears the message field making it undefined.
|
|
16531
|
+
* @return {!proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest} returns this
|
|
16532
|
+
*/
|
|
16533
|
+
proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
16534
|
+
return this.setFieldMask(undefined);
|
|
16535
|
+
};
|
|
16536
|
+
|
|
16537
|
+
|
|
16538
|
+
/**
|
|
16539
|
+
* Returns whether this field is set.
|
|
16540
|
+
* @return {boolean}
|
|
16541
|
+
*/
|
|
16542
|
+
proto.ondewo.nlu.ListIdentifiedUserIdsOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
16543
|
+
return jspb.Message.getField(this, 3) != null;
|
|
16544
|
+
};
|
|
16545
|
+
|
|
16546
|
+
|
|
16241
16547
|
|
|
16242
16548
|
/**
|
|
16243
16549
|
* List of repeated fields within this message type.
|
|
@@ -16427,7 +16733,8 @@ proto.ondewo.nlu.ListTagsOfAllSessionsRequest.prototype.toObject = function(opt_
|
|
|
16427
16733
|
proto.ondewo.nlu.ListTagsOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
16428
16734
|
var f, obj = {
|
|
16429
16735
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
16430
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
16736
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
16737
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
16431
16738
|
};
|
|
16432
16739
|
|
|
16433
16740
|
if (includeInstance) {
|
|
@@ -16473,6 +16780,11 @@ proto.ondewo.nlu.ListTagsOfAllSessionsRequest.deserializeBinaryFromReader = func
|
|
|
16473
16780
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
16474
16781
|
msg.setSessionFilter(value);
|
|
16475
16782
|
break;
|
|
16783
|
+
case 3:
|
|
16784
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
16785
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
16786
|
+
msg.setFieldMask(value);
|
|
16787
|
+
break;
|
|
16476
16788
|
default:
|
|
16477
16789
|
reader.skipField();
|
|
16478
16790
|
break;
|
|
@@ -16517,6 +16829,14 @@ proto.ondewo.nlu.ListTagsOfAllSessionsRequest.serializeBinaryToWriter = function
|
|
|
16517
16829
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
16518
16830
|
);
|
|
16519
16831
|
}
|
|
16832
|
+
f = message.getFieldMask();
|
|
16833
|
+
if (f != null) {
|
|
16834
|
+
writer.writeMessage(
|
|
16835
|
+
3,
|
|
16836
|
+
f,
|
|
16837
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
16838
|
+
);
|
|
16839
|
+
}
|
|
16520
16840
|
};
|
|
16521
16841
|
|
|
16522
16842
|
|
|
@@ -16575,6 +16895,43 @@ proto.ondewo.nlu.ListTagsOfAllSessionsRequest.prototype.hasSessionFilter = funct
|
|
|
16575
16895
|
};
|
|
16576
16896
|
|
|
16577
16897
|
|
|
16898
|
+
/**
|
|
16899
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
16900
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
16901
|
+
*/
|
|
16902
|
+
proto.ondewo.nlu.ListTagsOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
16903
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
16904
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
16905
|
+
};
|
|
16906
|
+
|
|
16907
|
+
|
|
16908
|
+
/**
|
|
16909
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
16910
|
+
* @return {!proto.ondewo.nlu.ListTagsOfAllSessionsRequest} returns this
|
|
16911
|
+
*/
|
|
16912
|
+
proto.ondewo.nlu.ListTagsOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
16913
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
16914
|
+
};
|
|
16915
|
+
|
|
16916
|
+
|
|
16917
|
+
/**
|
|
16918
|
+
* Clears the message field making it undefined.
|
|
16919
|
+
* @return {!proto.ondewo.nlu.ListTagsOfAllSessionsRequest} returns this
|
|
16920
|
+
*/
|
|
16921
|
+
proto.ondewo.nlu.ListTagsOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
16922
|
+
return this.setFieldMask(undefined);
|
|
16923
|
+
};
|
|
16924
|
+
|
|
16925
|
+
|
|
16926
|
+
/**
|
|
16927
|
+
* Returns whether this field is set.
|
|
16928
|
+
* @return {boolean}
|
|
16929
|
+
*/
|
|
16930
|
+
proto.ondewo.nlu.ListTagsOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
16931
|
+
return jspb.Message.getField(this, 3) != null;
|
|
16932
|
+
};
|
|
16933
|
+
|
|
16934
|
+
|
|
16578
16935
|
|
|
16579
16936
|
/**
|
|
16580
16937
|
* List of repeated fields within this message type.
|
|
@@ -16764,7 +17121,8 @@ proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.toObject = func
|
|
|
16764
17121
|
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
16765
17122
|
var f, obj = {
|
|
16766
17123
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
16767
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
17124
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
17125
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
16768
17126
|
};
|
|
16769
17127
|
|
|
16770
17128
|
if (includeInstance) {
|
|
@@ -16810,6 +17168,11 @@ proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.deserializeBinaryFromRead
|
|
|
16810
17168
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
16811
17169
|
msg.setSessionFilter(value);
|
|
16812
17170
|
break;
|
|
17171
|
+
case 3:
|
|
17172
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
17173
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
17174
|
+
msg.setFieldMask(value);
|
|
17175
|
+
break;
|
|
16813
17176
|
default:
|
|
16814
17177
|
reader.skipField();
|
|
16815
17178
|
break;
|
|
@@ -16854,6 +17217,14 @@ proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.serializeBinaryToWriter =
|
|
|
16854
17217
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
16855
17218
|
);
|
|
16856
17219
|
}
|
|
17220
|
+
f = message.getFieldMask();
|
|
17221
|
+
if (f != null) {
|
|
17222
|
+
writer.writeMessage(
|
|
17223
|
+
3,
|
|
17224
|
+
f,
|
|
17225
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
17226
|
+
);
|
|
17227
|
+
}
|
|
16857
17228
|
};
|
|
16858
17229
|
|
|
16859
17230
|
|
|
@@ -16889,8 +17260,45 @@ proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.getSessionFilte
|
|
|
16889
17260
|
* @param {?proto.ondewo.nlu.SessionFilter|undefined} value
|
|
16890
17261
|
* @return {!proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest} returns this
|
|
16891
17262
|
*/
|
|
16892
|
-
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.setSessionFilter = function(value) {
|
|
16893
|
-
return jspb.Message.setWrapperField(this, 2, value);
|
|
17263
|
+
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.setSessionFilter = function(value) {
|
|
17264
|
+
return jspb.Message.setWrapperField(this, 2, value);
|
|
17265
|
+
};
|
|
17266
|
+
|
|
17267
|
+
|
|
17268
|
+
/**
|
|
17269
|
+
* Clears the message field making it undefined.
|
|
17270
|
+
* @return {!proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest} returns this
|
|
17271
|
+
*/
|
|
17272
|
+
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.clearSessionFilter = function() {
|
|
17273
|
+
return this.setSessionFilter(undefined);
|
|
17274
|
+
};
|
|
17275
|
+
|
|
17276
|
+
|
|
17277
|
+
/**
|
|
17278
|
+
* Returns whether this field is set.
|
|
17279
|
+
* @return {boolean}
|
|
17280
|
+
*/
|
|
17281
|
+
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.hasSessionFilter = function() {
|
|
17282
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17283
|
+
};
|
|
17284
|
+
|
|
17285
|
+
|
|
17286
|
+
/**
|
|
17287
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
17288
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
17289
|
+
*/
|
|
17290
|
+
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
17291
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
17292
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
17293
|
+
};
|
|
17294
|
+
|
|
17295
|
+
|
|
17296
|
+
/**
|
|
17297
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
17298
|
+
* @return {!proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest} returns this
|
|
17299
|
+
*/
|
|
17300
|
+
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
17301
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
16894
17302
|
};
|
|
16895
17303
|
|
|
16896
17304
|
|
|
@@ -16898,8 +17306,8 @@ proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.setSessionFilte
|
|
|
16898
17306
|
* Clears the message field making it undefined.
|
|
16899
17307
|
* @return {!proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest} returns this
|
|
16900
17308
|
*/
|
|
16901
|
-
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.
|
|
16902
|
-
return this.
|
|
17309
|
+
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
17310
|
+
return this.setFieldMask(undefined);
|
|
16903
17311
|
};
|
|
16904
17312
|
|
|
16905
17313
|
|
|
@@ -16907,8 +17315,8 @@ proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.clearSessionFil
|
|
|
16907
17315
|
* Returns whether this field is set.
|
|
16908
17316
|
* @return {boolean}
|
|
16909
17317
|
*/
|
|
16910
|
-
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.
|
|
16911
|
-
return jspb.Message.getField(this,
|
|
17318
|
+
proto.ondewo.nlu.ListInputContextsOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
17319
|
+
return jspb.Message.getField(this, 3) != null;
|
|
16912
17320
|
};
|
|
16913
17321
|
|
|
16914
17322
|
|
|
@@ -17101,7 +17509,8 @@ proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest.prototype.toObject = fun
|
|
|
17101
17509
|
proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
17102
17510
|
var f, obj = {
|
|
17103
17511
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
17104
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
17512
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
17513
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
17105
17514
|
};
|
|
17106
17515
|
|
|
17107
17516
|
if (includeInstance) {
|
|
@@ -17147,6 +17556,11 @@ proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest.deserializeBinaryFromRea
|
|
|
17147
17556
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
17148
17557
|
msg.setSessionFilter(value);
|
|
17149
17558
|
break;
|
|
17559
|
+
case 3:
|
|
17560
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
17561
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
17562
|
+
msg.setFieldMask(value);
|
|
17563
|
+
break;
|
|
17150
17564
|
default:
|
|
17151
17565
|
reader.skipField();
|
|
17152
17566
|
break;
|
|
@@ -17191,6 +17605,14 @@ proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest.serializeBinaryToWriter
|
|
|
17191
17605
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
17192
17606
|
);
|
|
17193
17607
|
}
|
|
17608
|
+
f = message.getFieldMask();
|
|
17609
|
+
if (f != null) {
|
|
17610
|
+
writer.writeMessage(
|
|
17611
|
+
3,
|
|
17612
|
+
f,
|
|
17613
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
17614
|
+
);
|
|
17615
|
+
}
|
|
17194
17616
|
};
|
|
17195
17617
|
|
|
17196
17618
|
|
|
@@ -17249,6 +17671,43 @@ proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest.prototype.hasSessionFilt
|
|
|
17249
17671
|
};
|
|
17250
17672
|
|
|
17251
17673
|
|
|
17674
|
+
/**
|
|
17675
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
17676
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
17677
|
+
*/
|
|
17678
|
+
proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
17679
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
17680
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
17681
|
+
};
|
|
17682
|
+
|
|
17683
|
+
|
|
17684
|
+
/**
|
|
17685
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
17686
|
+
* @return {!proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest} returns this
|
|
17687
|
+
*/
|
|
17688
|
+
proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
17689
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
17690
|
+
};
|
|
17691
|
+
|
|
17692
|
+
|
|
17693
|
+
/**
|
|
17694
|
+
* Clears the message field making it undefined.
|
|
17695
|
+
* @return {!proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest} returns this
|
|
17696
|
+
*/
|
|
17697
|
+
proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
17698
|
+
return this.setFieldMask(undefined);
|
|
17699
|
+
};
|
|
17700
|
+
|
|
17701
|
+
|
|
17702
|
+
/**
|
|
17703
|
+
* Returns whether this field is set.
|
|
17704
|
+
* @return {boolean}
|
|
17705
|
+
*/
|
|
17706
|
+
proto.ondewo.nlu.ListOutputContextsOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
17707
|
+
return jspb.Message.getField(this, 3) != null;
|
|
17708
|
+
};
|
|
17709
|
+
|
|
17710
|
+
|
|
17252
17711
|
|
|
17253
17712
|
/**
|
|
17254
17713
|
* List of repeated fields within this message type.
|
|
@@ -17438,7 +17897,8 @@ proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest.prototype.toObject = function
|
|
|
17438
17897
|
proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
17439
17898
|
var f, obj = {
|
|
17440
17899
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
17441
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
17900
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
17901
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
17442
17902
|
};
|
|
17443
17903
|
|
|
17444
17904
|
if (includeInstance) {
|
|
@@ -17484,6 +17944,11 @@ proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest.deserializeBinaryFromReader =
|
|
|
17484
17944
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
17485
17945
|
msg.setSessionFilter(value);
|
|
17486
17946
|
break;
|
|
17947
|
+
case 3:
|
|
17948
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
17949
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
17950
|
+
msg.setFieldMask(value);
|
|
17951
|
+
break;
|
|
17487
17952
|
default:
|
|
17488
17953
|
reader.skipField();
|
|
17489
17954
|
break;
|
|
@@ -17528,6 +17993,14 @@ proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest.serializeBinaryToWriter = fun
|
|
|
17528
17993
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
17529
17994
|
);
|
|
17530
17995
|
}
|
|
17996
|
+
f = message.getFieldMask();
|
|
17997
|
+
if (f != null) {
|
|
17998
|
+
writer.writeMessage(
|
|
17999
|
+
3,
|
|
18000
|
+
f,
|
|
18001
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
18002
|
+
);
|
|
18003
|
+
}
|
|
17531
18004
|
};
|
|
17532
18005
|
|
|
17533
18006
|
|
|
@@ -17586,6 +18059,43 @@ proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest.prototype.hasSessionFilter =
|
|
|
17586
18059
|
};
|
|
17587
18060
|
|
|
17588
18061
|
|
|
18062
|
+
/**
|
|
18063
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
18064
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
18065
|
+
*/
|
|
18066
|
+
proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
18067
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
18068
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
18069
|
+
};
|
|
18070
|
+
|
|
18071
|
+
|
|
18072
|
+
/**
|
|
18073
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
18074
|
+
* @return {!proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest} returns this
|
|
18075
|
+
*/
|
|
18076
|
+
proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
18077
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
18078
|
+
};
|
|
18079
|
+
|
|
18080
|
+
|
|
18081
|
+
/**
|
|
18082
|
+
* Clears the message field making it undefined.
|
|
18083
|
+
* @return {!proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest} returns this
|
|
18084
|
+
*/
|
|
18085
|
+
proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
18086
|
+
return this.setFieldMask(undefined);
|
|
18087
|
+
};
|
|
18088
|
+
|
|
18089
|
+
|
|
18090
|
+
/**
|
|
18091
|
+
* Returns whether this field is set.
|
|
18092
|
+
* @return {boolean}
|
|
18093
|
+
*/
|
|
18094
|
+
proto.ondewo.nlu.ListPlatformsOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
18095
|
+
return jspb.Message.getField(this, 3) != null;
|
|
18096
|
+
};
|
|
18097
|
+
|
|
18098
|
+
|
|
17589
18099
|
|
|
17590
18100
|
/**
|
|
17591
18101
|
* List of repeated fields within this message type.
|
|
@@ -17775,7 +18285,8 @@ proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest.prototype.toObject = functio
|
|
|
17775
18285
|
proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
17776
18286
|
var f, obj = {
|
|
17777
18287
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
17778
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
18288
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
18289
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
17779
18290
|
};
|
|
17780
18291
|
|
|
17781
18292
|
if (includeInstance) {
|
|
@@ -17821,6 +18332,11 @@ proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest.deserializeBinaryFromReader
|
|
|
17821
18332
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
17822
18333
|
msg.setSessionFilter(value);
|
|
17823
18334
|
break;
|
|
18335
|
+
case 3:
|
|
18336
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
18337
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
18338
|
+
msg.setFieldMask(value);
|
|
18339
|
+
break;
|
|
17824
18340
|
default:
|
|
17825
18341
|
reader.skipField();
|
|
17826
18342
|
break;
|
|
@@ -17865,6 +18381,14 @@ proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest.serializeBinaryToWriter = fu
|
|
|
17865
18381
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
17866
18382
|
);
|
|
17867
18383
|
}
|
|
18384
|
+
f = message.getFieldMask();
|
|
18385
|
+
if (f != null) {
|
|
18386
|
+
writer.writeMessage(
|
|
18387
|
+
3,
|
|
18388
|
+
f,
|
|
18389
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
18390
|
+
);
|
|
18391
|
+
}
|
|
17868
18392
|
};
|
|
17869
18393
|
|
|
17870
18394
|
|
|
@@ -17923,6 +18447,43 @@ proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest.prototype.hasSessionFilter =
|
|
|
17923
18447
|
};
|
|
17924
18448
|
|
|
17925
18449
|
|
|
18450
|
+
/**
|
|
18451
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
18452
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
18453
|
+
*/
|
|
18454
|
+
proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
18455
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
18456
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
18457
|
+
};
|
|
18458
|
+
|
|
18459
|
+
|
|
18460
|
+
/**
|
|
18461
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
18462
|
+
* @return {!proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest} returns this
|
|
18463
|
+
*/
|
|
18464
|
+
proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
18465
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
18466
|
+
};
|
|
18467
|
+
|
|
18468
|
+
|
|
18469
|
+
/**
|
|
18470
|
+
* Clears the message field making it undefined.
|
|
18471
|
+
* @return {!proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest} returns this
|
|
18472
|
+
*/
|
|
18473
|
+
proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
18474
|
+
return this.setFieldMask(undefined);
|
|
18475
|
+
};
|
|
18476
|
+
|
|
18477
|
+
|
|
18478
|
+
/**
|
|
18479
|
+
* Returns whether this field is set.
|
|
18480
|
+
* @return {boolean}
|
|
18481
|
+
*/
|
|
18482
|
+
proto.ondewo.nlu.ListAccountIdsOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
18483
|
+
return jspb.Message.getField(this, 3) != null;
|
|
18484
|
+
};
|
|
18485
|
+
|
|
18486
|
+
|
|
17926
18487
|
|
|
17927
18488
|
/**
|
|
17928
18489
|
* List of repeated fields within this message type.
|
|
@@ -18786,7 +19347,8 @@ proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest.prototype.toObject = function
|
|
|
18786
19347
|
proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest.toObject = function(includeInstance, msg) {
|
|
18787
19348
|
var f, obj = {
|
|
18788
19349
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
18789
|
-
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f)
|
|
19350
|
+
sessionFilter: (f = msg.getSessionFilter()) && proto.ondewo.nlu.SessionFilter.toObject(includeInstance, f),
|
|
19351
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
18790
19352
|
};
|
|
18791
19353
|
|
|
18792
19354
|
if (includeInstance) {
|
|
@@ -18832,6 +19394,11 @@ proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest.deserializeBinaryFromReader =
|
|
|
18832
19394
|
reader.readMessage(value,proto.ondewo.nlu.SessionFilter.deserializeBinaryFromReader);
|
|
18833
19395
|
msg.setSessionFilter(value);
|
|
18834
19396
|
break;
|
|
19397
|
+
case 3:
|
|
19398
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
19399
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
19400
|
+
msg.setFieldMask(value);
|
|
19401
|
+
break;
|
|
18835
19402
|
default:
|
|
18836
19403
|
reader.skipField();
|
|
18837
19404
|
break;
|
|
@@ -18876,6 +19443,14 @@ proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest.serializeBinaryToWriter = fun
|
|
|
18876
19443
|
proto.ondewo.nlu.SessionFilter.serializeBinaryToWriter
|
|
18877
19444
|
);
|
|
18878
19445
|
}
|
|
19446
|
+
f = message.getFieldMask();
|
|
19447
|
+
if (f != null) {
|
|
19448
|
+
writer.writeMessage(
|
|
19449
|
+
3,
|
|
19450
|
+
f,
|
|
19451
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
19452
|
+
);
|
|
19453
|
+
}
|
|
18879
19454
|
};
|
|
18880
19455
|
|
|
18881
19456
|
|
|
@@ -18934,6 +19509,43 @@ proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest.prototype.hasSessionFilter =
|
|
|
18934
19509
|
};
|
|
18935
19510
|
|
|
18936
19511
|
|
|
19512
|
+
/**
|
|
19513
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
19514
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
19515
|
+
*/
|
|
19516
|
+
proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest.prototype.getFieldMask = function() {
|
|
19517
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
19518
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
19519
|
+
};
|
|
19520
|
+
|
|
19521
|
+
|
|
19522
|
+
/**
|
|
19523
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
19524
|
+
* @return {!proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest} returns this
|
|
19525
|
+
*/
|
|
19526
|
+
proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest.prototype.setFieldMask = function(value) {
|
|
19527
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
19528
|
+
};
|
|
19529
|
+
|
|
19530
|
+
|
|
19531
|
+
/**
|
|
19532
|
+
* Clears the message field making it undefined.
|
|
19533
|
+
* @return {!proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest} returns this
|
|
19534
|
+
*/
|
|
19535
|
+
proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest.prototype.clearFieldMask = function() {
|
|
19536
|
+
return this.setFieldMask(undefined);
|
|
19537
|
+
};
|
|
19538
|
+
|
|
19539
|
+
|
|
19540
|
+
/**
|
|
19541
|
+
* Returns whether this field is set.
|
|
19542
|
+
* @return {boolean}
|
|
19543
|
+
*/
|
|
19544
|
+
proto.ondewo.nlu.ListOriginIdsOfAllSessionsRequest.prototype.hasFieldMask = function() {
|
|
19545
|
+
return jspb.Message.getField(this, 3) != null;
|
|
19546
|
+
};
|
|
19547
|
+
|
|
19548
|
+
|
|
18937
19549
|
|
|
18938
19550
|
/**
|
|
18939
19551
|
* List of repeated fields within this message type.
|
|
@@ -20043,7 +20655,8 @@ proto.ondewo.nlu.ListSessionCommentsRequest.prototype.toObject = function(opt_in
|
|
|
20043
20655
|
proto.ondewo.nlu.ListSessionCommentsRequest.toObject = function(includeInstance, msg) {
|
|
20044
20656
|
var f, obj = {
|
|
20045
20657
|
sessionId: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
20046
|
-
pageToken: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
20658
|
+
pageToken: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
20659
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
20047
20660
|
};
|
|
20048
20661
|
|
|
20049
20662
|
if (includeInstance) {
|
|
@@ -20088,6 +20701,11 @@ proto.ondewo.nlu.ListSessionCommentsRequest.deserializeBinaryFromReader = functi
|
|
|
20088
20701
|
var value = /** @type {string} */ (reader.readString());
|
|
20089
20702
|
msg.setPageToken(value);
|
|
20090
20703
|
break;
|
|
20704
|
+
case 3:
|
|
20705
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
20706
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
20707
|
+
msg.setFieldMask(value);
|
|
20708
|
+
break;
|
|
20091
20709
|
default:
|
|
20092
20710
|
reader.skipField();
|
|
20093
20711
|
break;
|
|
@@ -20131,6 +20749,14 @@ proto.ondewo.nlu.ListSessionCommentsRequest.serializeBinaryToWriter = function(m
|
|
|
20131
20749
|
f
|
|
20132
20750
|
);
|
|
20133
20751
|
}
|
|
20752
|
+
f = message.getFieldMask();
|
|
20753
|
+
if (f != null) {
|
|
20754
|
+
writer.writeMessage(
|
|
20755
|
+
3,
|
|
20756
|
+
f,
|
|
20757
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
20758
|
+
);
|
|
20759
|
+
}
|
|
20134
20760
|
};
|
|
20135
20761
|
|
|
20136
20762
|
|
|
@@ -20146,27 +20772,64 @@ proto.ondewo.nlu.ListSessionCommentsRequest.prototype.getSessionId = function()
|
|
|
20146
20772
|
/**
|
|
20147
20773
|
* @param {string} value
|
|
20148
20774
|
* @return {!proto.ondewo.nlu.ListSessionCommentsRequest} returns this
|
|
20149
|
-
*/
|
|
20150
|
-
proto.ondewo.nlu.ListSessionCommentsRequest.prototype.setSessionId = function(value) {
|
|
20151
|
-
return jspb.Message.setProto3StringField(this, 1, value);
|
|
20775
|
+
*/
|
|
20776
|
+
proto.ondewo.nlu.ListSessionCommentsRequest.prototype.setSessionId = function(value) {
|
|
20777
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
20778
|
+
};
|
|
20779
|
+
|
|
20780
|
+
|
|
20781
|
+
/**
|
|
20782
|
+
* optional string page_token = 2;
|
|
20783
|
+
* @return {string}
|
|
20784
|
+
*/
|
|
20785
|
+
proto.ondewo.nlu.ListSessionCommentsRequest.prototype.getPageToken = function() {
|
|
20786
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
20787
|
+
};
|
|
20788
|
+
|
|
20789
|
+
|
|
20790
|
+
/**
|
|
20791
|
+
* @param {string} value
|
|
20792
|
+
* @return {!proto.ondewo.nlu.ListSessionCommentsRequest} returns this
|
|
20793
|
+
*/
|
|
20794
|
+
proto.ondewo.nlu.ListSessionCommentsRequest.prototype.setPageToken = function(value) {
|
|
20795
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
20796
|
+
};
|
|
20797
|
+
|
|
20798
|
+
|
|
20799
|
+
/**
|
|
20800
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
20801
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
20802
|
+
*/
|
|
20803
|
+
proto.ondewo.nlu.ListSessionCommentsRequest.prototype.getFieldMask = function() {
|
|
20804
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
20805
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
20806
|
+
};
|
|
20807
|
+
|
|
20808
|
+
|
|
20809
|
+
/**
|
|
20810
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
20811
|
+
* @return {!proto.ondewo.nlu.ListSessionCommentsRequest} returns this
|
|
20812
|
+
*/
|
|
20813
|
+
proto.ondewo.nlu.ListSessionCommentsRequest.prototype.setFieldMask = function(value) {
|
|
20814
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
20152
20815
|
};
|
|
20153
20816
|
|
|
20154
20817
|
|
|
20155
20818
|
/**
|
|
20156
|
-
*
|
|
20157
|
-
* @return {
|
|
20819
|
+
* Clears the message field making it undefined.
|
|
20820
|
+
* @return {!proto.ondewo.nlu.ListSessionCommentsRequest} returns this
|
|
20158
20821
|
*/
|
|
20159
|
-
proto.ondewo.nlu.ListSessionCommentsRequest.prototype.
|
|
20160
|
-
return
|
|
20822
|
+
proto.ondewo.nlu.ListSessionCommentsRequest.prototype.clearFieldMask = function() {
|
|
20823
|
+
return this.setFieldMask(undefined);
|
|
20161
20824
|
};
|
|
20162
20825
|
|
|
20163
20826
|
|
|
20164
20827
|
/**
|
|
20165
|
-
*
|
|
20166
|
-
* @return {
|
|
20828
|
+
* Returns whether this field is set.
|
|
20829
|
+
* @return {boolean}
|
|
20167
20830
|
*/
|
|
20168
|
-
proto.ondewo.nlu.ListSessionCommentsRequest.prototype.
|
|
20169
|
-
return jspb.Message.
|
|
20831
|
+
proto.ondewo.nlu.ListSessionCommentsRequest.prototype.hasFieldMask = function() {
|
|
20832
|
+
return jspb.Message.getField(this, 3) != null;
|
|
20170
20833
|
};
|
|
20171
20834
|
|
|
20172
20835
|
|
|
@@ -20773,7 +21436,8 @@ proto.ondewo.nlu.GetSessionReviewRequest.prototype.toObject = function(opt_inclu
|
|
|
20773
21436
|
proto.ondewo.nlu.GetSessionReviewRequest.toObject = function(includeInstance, msg) {
|
|
20774
21437
|
var f, obj = {
|
|
20775
21438
|
sessionReviewId: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
20776
|
-
sessionReviewView: jspb.Message.getFieldWithDefault(msg, 2, 0)
|
|
21439
|
+
sessionReviewView: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
21440
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
20777
21441
|
};
|
|
20778
21442
|
|
|
20779
21443
|
if (includeInstance) {
|
|
@@ -20818,6 +21482,11 @@ proto.ondewo.nlu.GetSessionReviewRequest.deserializeBinaryFromReader = function(
|
|
|
20818
21482
|
var value = /** @type {!proto.ondewo.nlu.SessionReview.View} */ (reader.readEnum());
|
|
20819
21483
|
msg.setSessionReviewView(value);
|
|
20820
21484
|
break;
|
|
21485
|
+
case 3:
|
|
21486
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
21487
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
21488
|
+
msg.setFieldMask(value);
|
|
21489
|
+
break;
|
|
20821
21490
|
default:
|
|
20822
21491
|
reader.skipField();
|
|
20823
21492
|
break;
|
|
@@ -20861,6 +21530,14 @@ proto.ondewo.nlu.GetSessionReviewRequest.serializeBinaryToWriter = function(mess
|
|
|
20861
21530
|
f
|
|
20862
21531
|
);
|
|
20863
21532
|
}
|
|
21533
|
+
f = message.getFieldMask();
|
|
21534
|
+
if (f != null) {
|
|
21535
|
+
writer.writeMessage(
|
|
21536
|
+
3,
|
|
21537
|
+
f,
|
|
21538
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
21539
|
+
);
|
|
21540
|
+
}
|
|
20864
21541
|
};
|
|
20865
21542
|
|
|
20866
21543
|
|
|
@@ -20900,6 +21577,43 @@ proto.ondewo.nlu.GetSessionReviewRequest.prototype.setSessionReviewView = functi
|
|
|
20900
21577
|
};
|
|
20901
21578
|
|
|
20902
21579
|
|
|
21580
|
+
/**
|
|
21581
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
21582
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
21583
|
+
*/
|
|
21584
|
+
proto.ondewo.nlu.GetSessionReviewRequest.prototype.getFieldMask = function() {
|
|
21585
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
21586
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
21587
|
+
};
|
|
21588
|
+
|
|
21589
|
+
|
|
21590
|
+
/**
|
|
21591
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
21592
|
+
* @return {!proto.ondewo.nlu.GetSessionReviewRequest} returns this
|
|
21593
|
+
*/
|
|
21594
|
+
proto.ondewo.nlu.GetSessionReviewRequest.prototype.setFieldMask = function(value) {
|
|
21595
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
21596
|
+
};
|
|
21597
|
+
|
|
21598
|
+
|
|
21599
|
+
/**
|
|
21600
|
+
* Clears the message field making it undefined.
|
|
21601
|
+
* @return {!proto.ondewo.nlu.GetSessionReviewRequest} returns this
|
|
21602
|
+
*/
|
|
21603
|
+
proto.ondewo.nlu.GetSessionReviewRequest.prototype.clearFieldMask = function() {
|
|
21604
|
+
return this.setFieldMask(undefined);
|
|
21605
|
+
};
|
|
21606
|
+
|
|
21607
|
+
|
|
21608
|
+
/**
|
|
21609
|
+
* Returns whether this field is set.
|
|
21610
|
+
* @return {boolean}
|
|
21611
|
+
*/
|
|
21612
|
+
proto.ondewo.nlu.GetSessionReviewRequest.prototype.hasFieldMask = function() {
|
|
21613
|
+
return jspb.Message.getField(this, 3) != null;
|
|
21614
|
+
};
|
|
21615
|
+
|
|
21616
|
+
|
|
20903
21617
|
|
|
20904
21618
|
|
|
20905
21619
|
|
|
@@ -20933,7 +21647,8 @@ proto.ondewo.nlu.GetLatestSessionReviewRequest.prototype.toObject = function(opt
|
|
|
20933
21647
|
proto.ondewo.nlu.GetLatestSessionReviewRequest.toObject = function(includeInstance, msg) {
|
|
20934
21648
|
var f, obj = {
|
|
20935
21649
|
sessionId: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
20936
|
-
sessionReviewView: jspb.Message.getFieldWithDefault(msg, 2, 0)
|
|
21650
|
+
sessionReviewView: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
21651
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
20937
21652
|
};
|
|
20938
21653
|
|
|
20939
21654
|
if (includeInstance) {
|
|
@@ -20978,6 +21693,11 @@ proto.ondewo.nlu.GetLatestSessionReviewRequest.deserializeBinaryFromReader = fun
|
|
|
20978
21693
|
var value = /** @type {!proto.ondewo.nlu.SessionReview.View} */ (reader.readEnum());
|
|
20979
21694
|
msg.setSessionReviewView(value);
|
|
20980
21695
|
break;
|
|
21696
|
+
case 3:
|
|
21697
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
21698
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
21699
|
+
msg.setFieldMask(value);
|
|
21700
|
+
break;
|
|
20981
21701
|
default:
|
|
20982
21702
|
reader.skipField();
|
|
20983
21703
|
break;
|
|
@@ -21021,6 +21741,14 @@ proto.ondewo.nlu.GetLatestSessionReviewRequest.serializeBinaryToWriter = functio
|
|
|
21021
21741
|
f
|
|
21022
21742
|
);
|
|
21023
21743
|
}
|
|
21744
|
+
f = message.getFieldMask();
|
|
21745
|
+
if (f != null) {
|
|
21746
|
+
writer.writeMessage(
|
|
21747
|
+
3,
|
|
21748
|
+
f,
|
|
21749
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
21750
|
+
);
|
|
21751
|
+
}
|
|
21024
21752
|
};
|
|
21025
21753
|
|
|
21026
21754
|
|
|
@@ -21060,6 +21788,43 @@ proto.ondewo.nlu.GetLatestSessionReviewRequest.prototype.setSessionReviewView =
|
|
|
21060
21788
|
};
|
|
21061
21789
|
|
|
21062
21790
|
|
|
21791
|
+
/**
|
|
21792
|
+
* optional google.protobuf.FieldMask field_mask = 3;
|
|
21793
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
21794
|
+
*/
|
|
21795
|
+
proto.ondewo.nlu.GetLatestSessionReviewRequest.prototype.getFieldMask = function() {
|
|
21796
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
21797
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 3));
|
|
21798
|
+
};
|
|
21799
|
+
|
|
21800
|
+
|
|
21801
|
+
/**
|
|
21802
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
21803
|
+
* @return {!proto.ondewo.nlu.GetLatestSessionReviewRequest} returns this
|
|
21804
|
+
*/
|
|
21805
|
+
proto.ondewo.nlu.GetLatestSessionReviewRequest.prototype.setFieldMask = function(value) {
|
|
21806
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
21807
|
+
};
|
|
21808
|
+
|
|
21809
|
+
|
|
21810
|
+
/**
|
|
21811
|
+
* Clears the message field making it undefined.
|
|
21812
|
+
* @return {!proto.ondewo.nlu.GetLatestSessionReviewRequest} returns this
|
|
21813
|
+
*/
|
|
21814
|
+
proto.ondewo.nlu.GetLatestSessionReviewRequest.prototype.clearFieldMask = function() {
|
|
21815
|
+
return this.setFieldMask(undefined);
|
|
21816
|
+
};
|
|
21817
|
+
|
|
21818
|
+
|
|
21819
|
+
/**
|
|
21820
|
+
* Returns whether this field is set.
|
|
21821
|
+
* @return {boolean}
|
|
21822
|
+
*/
|
|
21823
|
+
proto.ondewo.nlu.GetLatestSessionReviewRequest.prototype.hasFieldMask = function() {
|
|
21824
|
+
return jspb.Message.getField(this, 3) != null;
|
|
21825
|
+
};
|
|
21826
|
+
|
|
21827
|
+
|
|
21063
21828
|
|
|
21064
21829
|
/**
|
|
21065
21830
|
* Oneof group definitions for this message. Each group defines the field
|
|
@@ -23209,7 +23974,8 @@ parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
|
23209
23974
|
namesList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
23210
23975
|
resourceView: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
23211
23976
|
pageToken: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
23212
|
-
sortingMode: jspb.Message.getFieldWithDefault(msg, 5, 0)
|
|
23977
|
+
sortingMode: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
23978
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
23213
23979
|
};
|
|
23214
23980
|
|
|
23215
23981
|
if (includeInstance) {
|
|
@@ -23266,6 +24032,11 @@ proto.ondewo.nlu.GetAudioFilesRequest.deserializeBinaryFromReader = function(msg
|
|
|
23266
24032
|
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
23267
24033
|
msg.setSortingMode(value);
|
|
23268
24034
|
break;
|
|
24035
|
+
case 6:
|
|
24036
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
24037
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
24038
|
+
msg.setFieldMask(value);
|
|
24039
|
+
break;
|
|
23269
24040
|
default:
|
|
23270
24041
|
reader.skipField();
|
|
23271
24042
|
break;
|
|
@@ -23330,6 +24101,14 @@ proto.ondewo.nlu.GetAudioFilesRequest.serializeBinaryToWriter = function(message
|
|
|
23330
24101
|
f
|
|
23331
24102
|
);
|
|
23332
24103
|
}
|
|
24104
|
+
f = message.getFieldMask();
|
|
24105
|
+
if (f != null) {
|
|
24106
|
+
writer.writeMessage(
|
|
24107
|
+
6,
|
|
24108
|
+
f,
|
|
24109
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
24110
|
+
);
|
|
24111
|
+
}
|
|
23333
24112
|
};
|
|
23334
24113
|
|
|
23335
24114
|
|
|
@@ -23442,6 +24221,43 @@ proto.ondewo.nlu.GetAudioFilesRequest.prototype.setSortingMode = function(value)
|
|
|
23442
24221
|
};
|
|
23443
24222
|
|
|
23444
24223
|
|
|
24224
|
+
/**
|
|
24225
|
+
* optional google.protobuf.FieldMask field_mask = 6;
|
|
24226
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
24227
|
+
*/
|
|
24228
|
+
proto.ondewo.nlu.GetAudioFilesRequest.prototype.getFieldMask = function() {
|
|
24229
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
24230
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 6));
|
|
24231
|
+
};
|
|
24232
|
+
|
|
24233
|
+
|
|
24234
|
+
/**
|
|
24235
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
24236
|
+
* @return {!proto.ondewo.nlu.GetAudioFilesRequest} returns this
|
|
24237
|
+
*/
|
|
24238
|
+
proto.ondewo.nlu.GetAudioFilesRequest.prototype.setFieldMask = function(value) {
|
|
24239
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
24240
|
+
};
|
|
24241
|
+
|
|
24242
|
+
|
|
24243
|
+
/**
|
|
24244
|
+
* Clears the message field making it undefined.
|
|
24245
|
+
* @return {!proto.ondewo.nlu.GetAudioFilesRequest} returns this
|
|
24246
|
+
*/
|
|
24247
|
+
proto.ondewo.nlu.GetAudioFilesRequest.prototype.clearFieldMask = function() {
|
|
24248
|
+
return this.setFieldMask(undefined);
|
|
24249
|
+
};
|
|
24250
|
+
|
|
24251
|
+
|
|
24252
|
+
/**
|
|
24253
|
+
* Returns whether this field is set.
|
|
24254
|
+
* @return {boolean}
|
|
24255
|
+
*/
|
|
24256
|
+
proto.ondewo.nlu.GetAudioFilesRequest.prototype.hasFieldMask = function() {
|
|
24257
|
+
return jspb.Message.getField(this, 6) != null;
|
|
24258
|
+
};
|
|
24259
|
+
|
|
24260
|
+
|
|
23445
24261
|
|
|
23446
24262
|
/**
|
|
23447
24263
|
* List of repeated fields within this message type.
|
|
@@ -24510,7 +25326,8 @@ parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
|
24510
25326
|
sessionId: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
24511
25327
|
resourceView: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
24512
25328
|
pageToken: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
24513
|
-
sortingMode: jspb.Message.getFieldWithDefault(msg, 5, 0)
|
|
25329
|
+
sortingMode: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
25330
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
24514
25331
|
};
|
|
24515
25332
|
|
|
24516
25333
|
if (includeInstance) {
|
|
@@ -24567,6 +25384,11 @@ proto.ondewo.nlu.ListAudioFilesRequest.deserializeBinaryFromReader = function(ms
|
|
|
24567
25384
|
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
24568
25385
|
msg.setSortingMode(value);
|
|
24569
25386
|
break;
|
|
25387
|
+
case 6:
|
|
25388
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
25389
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
25390
|
+
msg.setFieldMask(value);
|
|
25391
|
+
break;
|
|
24570
25392
|
default:
|
|
24571
25393
|
reader.skipField();
|
|
24572
25394
|
break;
|
|
@@ -24631,6 +25453,14 @@ proto.ondewo.nlu.ListAudioFilesRequest.serializeBinaryToWriter = function(messag
|
|
|
24631
25453
|
f
|
|
24632
25454
|
);
|
|
24633
25455
|
}
|
|
25456
|
+
f = message.getFieldMask();
|
|
25457
|
+
if (f != null) {
|
|
25458
|
+
writer.writeMessage(
|
|
25459
|
+
6,
|
|
25460
|
+
f,
|
|
25461
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
25462
|
+
);
|
|
25463
|
+
}
|
|
24634
25464
|
};
|
|
24635
25465
|
|
|
24636
25466
|
|
|
@@ -24724,6 +25554,43 @@ proto.ondewo.nlu.ListAudioFilesRequest.prototype.setSortingMode = function(value
|
|
|
24724
25554
|
};
|
|
24725
25555
|
|
|
24726
25556
|
|
|
25557
|
+
/**
|
|
25558
|
+
* optional google.protobuf.FieldMask field_mask = 6;
|
|
25559
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
25560
|
+
*/
|
|
25561
|
+
proto.ondewo.nlu.ListAudioFilesRequest.prototype.getFieldMask = function() {
|
|
25562
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
25563
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 6));
|
|
25564
|
+
};
|
|
25565
|
+
|
|
25566
|
+
|
|
25567
|
+
/**
|
|
25568
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
25569
|
+
* @return {!proto.ondewo.nlu.ListAudioFilesRequest} returns this
|
|
25570
|
+
*/
|
|
25571
|
+
proto.ondewo.nlu.ListAudioFilesRequest.prototype.setFieldMask = function(value) {
|
|
25572
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
25573
|
+
};
|
|
25574
|
+
|
|
25575
|
+
|
|
25576
|
+
/**
|
|
25577
|
+
* Clears the message field making it undefined.
|
|
25578
|
+
* @return {!proto.ondewo.nlu.ListAudioFilesRequest} returns this
|
|
25579
|
+
*/
|
|
25580
|
+
proto.ondewo.nlu.ListAudioFilesRequest.prototype.clearFieldMask = function() {
|
|
25581
|
+
return this.setFieldMask(undefined);
|
|
25582
|
+
};
|
|
25583
|
+
|
|
25584
|
+
|
|
25585
|
+
/**
|
|
25586
|
+
* Returns whether this field is set.
|
|
25587
|
+
* @return {boolean}
|
|
25588
|
+
*/
|
|
25589
|
+
proto.ondewo.nlu.ListAudioFilesRequest.prototype.hasFieldMask = function() {
|
|
25590
|
+
return jspb.Message.getField(this, 6) != null;
|
|
25591
|
+
};
|
|
25592
|
+
|
|
25593
|
+
|
|
24727
25594
|
|
|
24728
25595
|
/**
|
|
24729
25596
|
* List of repeated fields within this message type.
|
|
@@ -24978,7 +25845,8 @@ proto.ondewo.nlu.GetAudioFileOfSessionRequest.toObject = function(includeInstanc
|
|
|
24978
25845
|
var f, obj = {
|
|
24979
25846
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
24980
25847
|
sessionId: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
24981
|
-
resourceView: jspb.Message.getFieldWithDefault(msg, 3, 0)
|
|
25848
|
+
resourceView: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
25849
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
24982
25850
|
};
|
|
24983
25851
|
|
|
24984
25852
|
if (includeInstance) {
|
|
@@ -25027,6 +25895,11 @@ proto.ondewo.nlu.GetAudioFileOfSessionRequest.deserializeBinaryFromReader = func
|
|
|
25027
25895
|
var value = /** @type {!proto.ondewo.nlu.ResourceView} */ (reader.readEnum());
|
|
25028
25896
|
msg.setResourceView(value);
|
|
25029
25897
|
break;
|
|
25898
|
+
case 4:
|
|
25899
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
25900
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
25901
|
+
msg.setFieldMask(value);
|
|
25902
|
+
break;
|
|
25030
25903
|
default:
|
|
25031
25904
|
reader.skipField();
|
|
25032
25905
|
break;
|
|
@@ -25077,6 +25950,14 @@ proto.ondewo.nlu.GetAudioFileOfSessionRequest.serializeBinaryToWriter = function
|
|
|
25077
25950
|
f
|
|
25078
25951
|
);
|
|
25079
25952
|
}
|
|
25953
|
+
f = message.getFieldMask();
|
|
25954
|
+
if (f != null) {
|
|
25955
|
+
writer.writeMessage(
|
|
25956
|
+
4,
|
|
25957
|
+
f,
|
|
25958
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
25959
|
+
);
|
|
25960
|
+
}
|
|
25080
25961
|
};
|
|
25081
25962
|
|
|
25082
25963
|
|
|
@@ -25134,6 +26015,43 @@ proto.ondewo.nlu.GetAudioFileOfSessionRequest.prototype.setResourceView = functi
|
|
|
25134
26015
|
};
|
|
25135
26016
|
|
|
25136
26017
|
|
|
26018
|
+
/**
|
|
26019
|
+
* optional google.protobuf.FieldMask field_mask = 4;
|
|
26020
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
26021
|
+
*/
|
|
26022
|
+
proto.ondewo.nlu.GetAudioFileOfSessionRequest.prototype.getFieldMask = function() {
|
|
26023
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
26024
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 4));
|
|
26025
|
+
};
|
|
26026
|
+
|
|
26027
|
+
|
|
26028
|
+
/**
|
|
26029
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
26030
|
+
* @return {!proto.ondewo.nlu.GetAudioFileOfSessionRequest} returns this
|
|
26031
|
+
*/
|
|
26032
|
+
proto.ondewo.nlu.GetAudioFileOfSessionRequest.prototype.setFieldMask = function(value) {
|
|
26033
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
26034
|
+
};
|
|
26035
|
+
|
|
26036
|
+
|
|
26037
|
+
/**
|
|
26038
|
+
* Clears the message field making it undefined.
|
|
26039
|
+
* @return {!proto.ondewo.nlu.GetAudioFileOfSessionRequest} returns this
|
|
26040
|
+
*/
|
|
26041
|
+
proto.ondewo.nlu.GetAudioFileOfSessionRequest.prototype.clearFieldMask = function() {
|
|
26042
|
+
return this.setFieldMask(undefined);
|
|
26043
|
+
};
|
|
26044
|
+
|
|
26045
|
+
|
|
26046
|
+
/**
|
|
26047
|
+
* Returns whether this field is set.
|
|
26048
|
+
* @return {boolean}
|
|
26049
|
+
*/
|
|
26050
|
+
proto.ondewo.nlu.GetAudioFileOfSessionRequest.prototype.hasFieldMask = function() {
|
|
26051
|
+
return jspb.Message.getField(this, 4) != null;
|
|
26052
|
+
};
|
|
26053
|
+
|
|
26054
|
+
|
|
25137
26055
|
/**
|
|
25138
26056
|
* @enum {number}
|
|
25139
26057
|
*/
|