@ondewo/nlu-client-typescript 6.7.0 → 6.8.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/rag_pb.d.ts +691 -44
- package/api/ondewo/nlu/rag_pb.js +2079 -264
- package/package.json +1 -1
- package/public-api.d.ts +29 -29
- package/public-api.js +26 -26
package/api/ondewo/nlu/rag_pb.js
CHANGED
|
@@ -4532,7 +4532,9 @@ description: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
|
4532
4532
|
avatar: (f = jspb.Message.getField(msg, 6)) == null ? undefined : f,
|
|
4533
4533
|
chunkMethod: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
4534
4534
|
parserConfig: (f = msg.getParserConfig()) && proto.ondewo.nlu.RagParserConfig.toObject(includeInstance, f),
|
|
4535
|
-
pagerank: (f = jspb.Message.getField(msg, 9)) == null ? undefined : f
|
|
4535
|
+
pagerank: (f = jspb.Message.getField(msg, 9)) == null ? undefined : f,
|
|
4536
|
+
updateMask: (f = msg.getUpdateMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
|
|
4537
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
4536
4538
|
};
|
|
4537
4539
|
|
|
4538
4540
|
if (includeInstance) {
|
|
@@ -4606,6 +4608,16 @@ proto.ondewo.nlu.RagUpdateDatasetRequest.deserializeBinaryFromReader = function(
|
|
|
4606
4608
|
var value = /** @type {number} */ (reader.readInt32());
|
|
4607
4609
|
msg.setPagerank(value);
|
|
4608
4610
|
break;
|
|
4611
|
+
case 10:
|
|
4612
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
4613
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
4614
|
+
msg.setUpdateMask(value);
|
|
4615
|
+
break;
|
|
4616
|
+
case 11:
|
|
4617
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
4618
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
4619
|
+
msg.setFieldMask(value);
|
|
4620
|
+
break;
|
|
4609
4621
|
default:
|
|
4610
4622
|
reader.skipField();
|
|
4611
4623
|
break;
|
|
@@ -4699,6 +4711,22 @@ proto.ondewo.nlu.RagUpdateDatasetRequest.serializeBinaryToWriter = function(mess
|
|
|
4699
4711
|
f
|
|
4700
4712
|
);
|
|
4701
4713
|
}
|
|
4714
|
+
f = message.getUpdateMask();
|
|
4715
|
+
if (f != null) {
|
|
4716
|
+
writer.writeMessage(
|
|
4717
|
+
10,
|
|
4718
|
+
f,
|
|
4719
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
4720
|
+
);
|
|
4721
|
+
}
|
|
4722
|
+
f = message.getFieldMask();
|
|
4723
|
+
if (f != null) {
|
|
4724
|
+
writer.writeMessage(
|
|
4725
|
+
11,
|
|
4726
|
+
f,
|
|
4727
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
4728
|
+
);
|
|
4729
|
+
}
|
|
4702
4730
|
};
|
|
4703
4731
|
|
|
4704
4732
|
|
|
@@ -4937,6 +4965,80 @@ proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.hasPagerank = function() {
|
|
|
4937
4965
|
};
|
|
4938
4966
|
|
|
4939
4967
|
|
|
4968
|
+
/**
|
|
4969
|
+
* optional google.protobuf.FieldMask update_mask = 10;
|
|
4970
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
4971
|
+
*/
|
|
4972
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.getUpdateMask = function() {
|
|
4973
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
4974
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 10));
|
|
4975
|
+
};
|
|
4976
|
+
|
|
4977
|
+
|
|
4978
|
+
/**
|
|
4979
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
4980
|
+
* @return {!proto.ondewo.nlu.RagUpdateDatasetRequest} returns this
|
|
4981
|
+
*/
|
|
4982
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.setUpdateMask = function(value) {
|
|
4983
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
4984
|
+
};
|
|
4985
|
+
|
|
4986
|
+
|
|
4987
|
+
/**
|
|
4988
|
+
* Clears the message field making it undefined.
|
|
4989
|
+
* @return {!proto.ondewo.nlu.RagUpdateDatasetRequest} returns this
|
|
4990
|
+
*/
|
|
4991
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.clearUpdateMask = function() {
|
|
4992
|
+
return this.setUpdateMask(undefined);
|
|
4993
|
+
};
|
|
4994
|
+
|
|
4995
|
+
|
|
4996
|
+
/**
|
|
4997
|
+
* Returns whether this field is set.
|
|
4998
|
+
* @return {boolean}
|
|
4999
|
+
*/
|
|
5000
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.hasUpdateMask = function() {
|
|
5001
|
+
return jspb.Message.getField(this, 10) != null;
|
|
5002
|
+
};
|
|
5003
|
+
|
|
5004
|
+
|
|
5005
|
+
/**
|
|
5006
|
+
* optional google.protobuf.FieldMask field_mask = 11;
|
|
5007
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
5008
|
+
*/
|
|
5009
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.getFieldMask = function() {
|
|
5010
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
5011
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 11));
|
|
5012
|
+
};
|
|
5013
|
+
|
|
5014
|
+
|
|
5015
|
+
/**
|
|
5016
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
5017
|
+
* @return {!proto.ondewo.nlu.RagUpdateDatasetRequest} returns this
|
|
5018
|
+
*/
|
|
5019
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.setFieldMask = function(value) {
|
|
5020
|
+
return jspb.Message.setWrapperField(this, 11, value);
|
|
5021
|
+
};
|
|
5022
|
+
|
|
5023
|
+
|
|
5024
|
+
/**
|
|
5025
|
+
* Clears the message field making it undefined.
|
|
5026
|
+
* @return {!proto.ondewo.nlu.RagUpdateDatasetRequest} returns this
|
|
5027
|
+
*/
|
|
5028
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.clearFieldMask = function() {
|
|
5029
|
+
return this.setFieldMask(undefined);
|
|
5030
|
+
};
|
|
5031
|
+
|
|
5032
|
+
|
|
5033
|
+
/**
|
|
5034
|
+
* Returns whether this field is set.
|
|
5035
|
+
* @return {boolean}
|
|
5036
|
+
*/
|
|
5037
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.hasFieldMask = function() {
|
|
5038
|
+
return jspb.Message.getField(this, 11) != null;
|
|
5039
|
+
};
|
|
5040
|
+
|
|
5041
|
+
|
|
4940
5042
|
|
|
4941
5043
|
/**
|
|
4942
5044
|
* List of repeated fields within this message type.
|
|
@@ -5221,7 +5323,9 @@ pageToken: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
|
5221
5323
|
id: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
5222
5324
|
name: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
5223
5325
|
orderby: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
5224
|
-
desc: (f = jspb.Message.getBooleanField(msg, 7)) == null ? undefined : f
|
|
5326
|
+
desc: (f = jspb.Message.getBooleanField(msg, 7)) == null ? undefined : f,
|
|
5327
|
+
sortingMode: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f,
|
|
5328
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
5225
5329
|
};
|
|
5226
5330
|
|
|
5227
5331
|
if (includeInstance) {
|
|
@@ -5286,6 +5390,15 @@ proto.ondewo.nlu.RagListDatasetsRequest.deserializeBinaryFromReader = function(m
|
|
|
5286
5390
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
5287
5391
|
msg.setDesc(value);
|
|
5288
5392
|
break;
|
|
5393
|
+
case 8:
|
|
5394
|
+
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
5395
|
+
msg.setSortingMode(value);
|
|
5396
|
+
break;
|
|
5397
|
+
case 9:
|
|
5398
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
5399
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
5400
|
+
msg.setFieldMask(value);
|
|
5401
|
+
break;
|
|
5289
5402
|
default:
|
|
5290
5403
|
reader.skipField();
|
|
5291
5404
|
break;
|
|
@@ -5364,6 +5477,21 @@ proto.ondewo.nlu.RagListDatasetsRequest.serializeBinaryToWriter = function(messa
|
|
|
5364
5477
|
f
|
|
5365
5478
|
);
|
|
5366
5479
|
}
|
|
5480
|
+
f = /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getField(message, 8));
|
|
5481
|
+
if (f != null) {
|
|
5482
|
+
writer.writeEnum(
|
|
5483
|
+
8,
|
|
5484
|
+
f
|
|
5485
|
+
);
|
|
5486
|
+
}
|
|
5487
|
+
f = message.getFieldMask();
|
|
5488
|
+
if (f != null) {
|
|
5489
|
+
writer.writeMessage(
|
|
5490
|
+
9,
|
|
5491
|
+
f,
|
|
5492
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
5493
|
+
);
|
|
5494
|
+
}
|
|
5367
5495
|
};
|
|
5368
5496
|
|
|
5369
5497
|
|
|
@@ -5511,6 +5639,79 @@ proto.ondewo.nlu.RagListDatasetsRequest.prototype.hasDesc = function() {
|
|
|
5511
5639
|
};
|
|
5512
5640
|
|
|
5513
5641
|
|
|
5642
|
+
/**
|
|
5643
|
+
* optional SortingMode sorting_mode = 8;
|
|
5644
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
5645
|
+
*/
|
|
5646
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.getSortingMode = function() {
|
|
5647
|
+
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
|
|
5648
|
+
};
|
|
5649
|
+
|
|
5650
|
+
|
|
5651
|
+
/**
|
|
5652
|
+
* @param {!proto.ondewo.nlu.SortingMode} value
|
|
5653
|
+
* @return {!proto.ondewo.nlu.RagListDatasetsRequest} returns this
|
|
5654
|
+
*/
|
|
5655
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.setSortingMode = function(value) {
|
|
5656
|
+
return jspb.Message.setField(this, 8, value);
|
|
5657
|
+
};
|
|
5658
|
+
|
|
5659
|
+
|
|
5660
|
+
/**
|
|
5661
|
+
* Clears the field making it undefined.
|
|
5662
|
+
* @return {!proto.ondewo.nlu.RagListDatasetsRequest} returns this
|
|
5663
|
+
*/
|
|
5664
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.clearSortingMode = function() {
|
|
5665
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
5666
|
+
};
|
|
5667
|
+
|
|
5668
|
+
|
|
5669
|
+
/**
|
|
5670
|
+
* Returns whether this field is set.
|
|
5671
|
+
* @return {boolean}
|
|
5672
|
+
*/
|
|
5673
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.hasSortingMode = function() {
|
|
5674
|
+
return jspb.Message.getField(this, 8) != null;
|
|
5675
|
+
};
|
|
5676
|
+
|
|
5677
|
+
|
|
5678
|
+
/**
|
|
5679
|
+
* optional google.protobuf.FieldMask field_mask = 9;
|
|
5680
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
5681
|
+
*/
|
|
5682
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.getFieldMask = function() {
|
|
5683
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
5684
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 9));
|
|
5685
|
+
};
|
|
5686
|
+
|
|
5687
|
+
|
|
5688
|
+
/**
|
|
5689
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
5690
|
+
* @return {!proto.ondewo.nlu.RagListDatasetsRequest} returns this
|
|
5691
|
+
*/
|
|
5692
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.setFieldMask = function(value) {
|
|
5693
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
5694
|
+
};
|
|
5695
|
+
|
|
5696
|
+
|
|
5697
|
+
/**
|
|
5698
|
+
* Clears the message field making it undefined.
|
|
5699
|
+
* @return {!proto.ondewo.nlu.RagListDatasetsRequest} returns this
|
|
5700
|
+
*/
|
|
5701
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.clearFieldMask = function() {
|
|
5702
|
+
return this.setFieldMask(undefined);
|
|
5703
|
+
};
|
|
5704
|
+
|
|
5705
|
+
|
|
5706
|
+
/**
|
|
5707
|
+
* Returns whether this field is set.
|
|
5708
|
+
* @return {boolean}
|
|
5709
|
+
*/
|
|
5710
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.hasFieldMask = function() {
|
|
5711
|
+
return jspb.Message.getField(this, 9) != null;
|
|
5712
|
+
};
|
|
5713
|
+
|
|
5714
|
+
|
|
5514
5715
|
|
|
5515
5716
|
/**
|
|
5516
5717
|
* List of repeated fields within this message type.
|
|
@@ -6931,7 +7132,9 @@ name: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
|
6931
7132
|
chunkMethod: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
6932
7133
|
parserConfig: (f = msg.getParserConfig()) && proto.ondewo.nlu.RagParserConfig.toObject(includeInstance, f),
|
|
6933
7134
|
enabled: (f = jspb.Message.getBooleanField(msg, 8)) == null ? undefined : f,
|
|
6934
|
-
metaFields: (f = msg.getMetaFields()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
|
|
7135
|
+
metaFields: (f = msg.getMetaFields()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
7136
|
+
updateMask: (f = msg.getUpdateMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
|
|
7137
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
6935
7138
|
};
|
|
6936
7139
|
|
|
6937
7140
|
if (includeInstance) {
|
|
@@ -7006,6 +7209,16 @@ proto.ondewo.nlu.RagUpdateDocumentRequest.deserializeBinaryFromReader = function
|
|
|
7006
7209
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
7007
7210
|
msg.setMetaFields(value);
|
|
7008
7211
|
break;
|
|
7212
|
+
case 10:
|
|
7213
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
7214
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
7215
|
+
msg.setUpdateMask(value);
|
|
7216
|
+
break;
|
|
7217
|
+
case 11:
|
|
7218
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
7219
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
7220
|
+
msg.setFieldMask(value);
|
|
7221
|
+
break;
|
|
7009
7222
|
default:
|
|
7010
7223
|
reader.skipField();
|
|
7011
7224
|
break;
|
|
@@ -7100,6 +7313,22 @@ proto.ondewo.nlu.RagUpdateDocumentRequest.serializeBinaryToWriter = function(mes
|
|
|
7100
7313
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
7101
7314
|
);
|
|
7102
7315
|
}
|
|
7316
|
+
f = message.getUpdateMask();
|
|
7317
|
+
if (f != null) {
|
|
7318
|
+
writer.writeMessage(
|
|
7319
|
+
10,
|
|
7320
|
+
f,
|
|
7321
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
7322
|
+
);
|
|
7323
|
+
}
|
|
7324
|
+
f = message.getFieldMask();
|
|
7325
|
+
if (f != null) {
|
|
7326
|
+
writer.writeMessage(
|
|
7327
|
+
11,
|
|
7328
|
+
f,
|
|
7329
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
7330
|
+
);
|
|
7331
|
+
}
|
|
7103
7332
|
};
|
|
7104
7333
|
|
|
7105
7334
|
|
|
@@ -7321,54 +7550,128 @@ proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.hasMetaFields = function() {
|
|
|
7321
7550
|
};
|
|
7322
7551
|
|
|
7323
7552
|
|
|
7553
|
+
/**
|
|
7554
|
+
* optional google.protobuf.FieldMask update_mask = 10;
|
|
7555
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
7556
|
+
*/
|
|
7557
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.getUpdateMask = function() {
|
|
7558
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
7559
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 10));
|
|
7560
|
+
};
|
|
7561
|
+
|
|
7324
7562
|
|
|
7563
|
+
/**
|
|
7564
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
7565
|
+
* @return {!proto.ondewo.nlu.RagUpdateDocumentRequest} returns this
|
|
7566
|
+
*/
|
|
7567
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.setUpdateMask = function(value) {
|
|
7568
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
7569
|
+
};
|
|
7325
7570
|
|
|
7326
7571
|
|
|
7327
|
-
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
7328
7572
|
/**
|
|
7329
|
-
*
|
|
7330
|
-
*
|
|
7331
|
-
* Optional fields that are not set will be set to undefined.
|
|
7332
|
-
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
7333
|
-
* For the list of reserved names please see:
|
|
7334
|
-
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
7335
|
-
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
7336
|
-
* JSPB instance for transitional soy proto support:
|
|
7337
|
-
* http://goto/soy-param-migration
|
|
7338
|
-
* @return {!Object}
|
|
7573
|
+
* Clears the message field making it undefined.
|
|
7574
|
+
* @return {!proto.ondewo.nlu.RagUpdateDocumentRequest} returns this
|
|
7339
7575
|
*/
|
|
7340
|
-
proto.ondewo.nlu.
|
|
7341
|
-
return
|
|
7576
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.clearUpdateMask = function() {
|
|
7577
|
+
return this.setUpdateMask(undefined);
|
|
7342
7578
|
};
|
|
7343
7579
|
|
|
7344
7580
|
|
|
7345
7581
|
/**
|
|
7346
|
-
*
|
|
7347
|
-
* @
|
|
7348
|
-
* the JSPB instance for transitional soy proto support:
|
|
7349
|
-
* http://goto/soy-param-migration
|
|
7350
|
-
* @param {!proto.ondewo.nlu.RagDownloadDocumentRequest} msg The msg instance to transform.
|
|
7351
|
-
* @return {!Object}
|
|
7352
|
-
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
7582
|
+
* Returns whether this field is set.
|
|
7583
|
+
* @return {boolean}
|
|
7353
7584
|
*/
|
|
7354
|
-
proto.ondewo.nlu.
|
|
7355
|
-
|
|
7356
|
-
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
7357
|
-
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
7358
|
-
datasetId: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
7359
|
-
documentId: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
7360
|
-
};
|
|
7361
|
-
|
|
7362
|
-
if (includeInstance) {
|
|
7363
|
-
obj.$jspbMessageInstance = msg;
|
|
7364
|
-
}
|
|
7365
|
-
return obj;
|
|
7585
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.hasUpdateMask = function() {
|
|
7586
|
+
return jspb.Message.getField(this, 10) != null;
|
|
7366
7587
|
};
|
|
7367
|
-
}
|
|
7368
7588
|
|
|
7369
7589
|
|
|
7370
7590
|
/**
|
|
7371
|
-
*
|
|
7591
|
+
* optional google.protobuf.FieldMask field_mask = 11;
|
|
7592
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
7593
|
+
*/
|
|
7594
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.getFieldMask = function() {
|
|
7595
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
7596
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 11));
|
|
7597
|
+
};
|
|
7598
|
+
|
|
7599
|
+
|
|
7600
|
+
/**
|
|
7601
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
7602
|
+
* @return {!proto.ondewo.nlu.RagUpdateDocumentRequest} returns this
|
|
7603
|
+
*/
|
|
7604
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.setFieldMask = function(value) {
|
|
7605
|
+
return jspb.Message.setWrapperField(this, 11, value);
|
|
7606
|
+
};
|
|
7607
|
+
|
|
7608
|
+
|
|
7609
|
+
/**
|
|
7610
|
+
* Clears the message field making it undefined.
|
|
7611
|
+
* @return {!proto.ondewo.nlu.RagUpdateDocumentRequest} returns this
|
|
7612
|
+
*/
|
|
7613
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.clearFieldMask = function() {
|
|
7614
|
+
return this.setFieldMask(undefined);
|
|
7615
|
+
};
|
|
7616
|
+
|
|
7617
|
+
|
|
7618
|
+
/**
|
|
7619
|
+
* Returns whether this field is set.
|
|
7620
|
+
* @return {boolean}
|
|
7621
|
+
*/
|
|
7622
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.hasFieldMask = function() {
|
|
7623
|
+
return jspb.Message.getField(this, 11) != null;
|
|
7624
|
+
};
|
|
7625
|
+
|
|
7626
|
+
|
|
7627
|
+
|
|
7628
|
+
|
|
7629
|
+
|
|
7630
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
7631
|
+
/**
|
|
7632
|
+
* Creates an object representation of this proto.
|
|
7633
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
7634
|
+
* Optional fields that are not set will be set to undefined.
|
|
7635
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
7636
|
+
* For the list of reserved names please see:
|
|
7637
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
7638
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
7639
|
+
* JSPB instance for transitional soy proto support:
|
|
7640
|
+
* http://goto/soy-param-migration
|
|
7641
|
+
* @return {!Object}
|
|
7642
|
+
*/
|
|
7643
|
+
proto.ondewo.nlu.RagDownloadDocumentRequest.prototype.toObject = function(opt_includeInstance) {
|
|
7644
|
+
return proto.ondewo.nlu.RagDownloadDocumentRequest.toObject(opt_includeInstance, this);
|
|
7645
|
+
};
|
|
7646
|
+
|
|
7647
|
+
|
|
7648
|
+
/**
|
|
7649
|
+
* Static version of the {@see toObject} method.
|
|
7650
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
7651
|
+
* the JSPB instance for transitional soy proto support:
|
|
7652
|
+
* http://goto/soy-param-migration
|
|
7653
|
+
* @param {!proto.ondewo.nlu.RagDownloadDocumentRequest} msg The msg instance to transform.
|
|
7654
|
+
* @return {!Object}
|
|
7655
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
7656
|
+
*/
|
|
7657
|
+
proto.ondewo.nlu.RagDownloadDocumentRequest.toObject = function(includeInstance, msg) {
|
|
7658
|
+
var f, obj = {
|
|
7659
|
+
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
7660
|
+
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
7661
|
+
datasetId: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
7662
|
+
documentId: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
7663
|
+
};
|
|
7664
|
+
|
|
7665
|
+
if (includeInstance) {
|
|
7666
|
+
obj.$jspbMessageInstance = msg;
|
|
7667
|
+
}
|
|
7668
|
+
return obj;
|
|
7669
|
+
};
|
|
7670
|
+
}
|
|
7671
|
+
|
|
7672
|
+
|
|
7673
|
+
/**
|
|
7674
|
+
* Deserializes binary data (in protobuf wire format).
|
|
7372
7675
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
7373
7676
|
* @return {!proto.ondewo.nlu.RagDownloadDocumentRequest}
|
|
7374
7677
|
*/
|
|
@@ -7798,7 +8101,9 @@ suffixList: (f = jspb.Message.getRepeatedField(msg, 10)) == null ? undefined : f
|
|
|
7798
8101
|
runStatusList: (f = jspb.Message.getRepeatedField(msg, 11)) == null ? undefined : f,
|
|
7799
8102
|
createTimeFrom: (f = msg.getCreateTimeFrom()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
7800
8103
|
createTimeTo: (f = msg.getCreateTimeTo()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
7801
|
-
metadataCondition: (f = msg.getMetadataCondition()) && proto.ondewo.nlu.RagMetadataConditions.toObject(includeInstance, f)
|
|
8104
|
+
metadataCondition: (f = msg.getMetadataCondition()) && proto.ondewo.nlu.RagMetadataConditions.toObject(includeInstance, f),
|
|
8105
|
+
sortingMode: (f = jspb.Message.getField(msg, 15)) == null ? undefined : f,
|
|
8106
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
7802
8107
|
};
|
|
7803
8108
|
|
|
7804
8109
|
if (includeInstance) {
|
|
@@ -7896,6 +8201,15 @@ proto.ondewo.nlu.RagListDocumentsRequest.deserializeBinaryFromReader = function(
|
|
|
7896
8201
|
reader.readMessage(value,proto.ondewo.nlu.RagMetadataConditions.deserializeBinaryFromReader);
|
|
7897
8202
|
msg.setMetadataCondition(value);
|
|
7898
8203
|
break;
|
|
8204
|
+
case 15:
|
|
8205
|
+
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
8206
|
+
msg.setSortingMode(value);
|
|
8207
|
+
break;
|
|
8208
|
+
case 16:
|
|
8209
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
8210
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
8211
|
+
msg.setFieldMask(value);
|
|
8212
|
+
break;
|
|
7899
8213
|
default:
|
|
7900
8214
|
reader.skipField();
|
|
7901
8215
|
break;
|
|
@@ -8026,6 +8340,21 @@ proto.ondewo.nlu.RagListDocumentsRequest.serializeBinaryToWriter = function(mess
|
|
|
8026
8340
|
proto.ondewo.nlu.RagMetadataConditions.serializeBinaryToWriter
|
|
8027
8341
|
);
|
|
8028
8342
|
}
|
|
8343
|
+
f = /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getField(message, 15));
|
|
8344
|
+
if (f != null) {
|
|
8345
|
+
writer.writeEnum(
|
|
8346
|
+
15,
|
|
8347
|
+
f
|
|
8348
|
+
);
|
|
8349
|
+
}
|
|
8350
|
+
f = message.getFieldMask();
|
|
8351
|
+
if (f != null) {
|
|
8352
|
+
writer.writeMessage(
|
|
8353
|
+
16,
|
|
8354
|
+
f,
|
|
8355
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
8356
|
+
);
|
|
8357
|
+
}
|
|
8029
8358
|
};
|
|
8030
8359
|
|
|
8031
8360
|
|
|
@@ -8394,6 +8723,79 @@ proto.ondewo.nlu.RagListDocumentsRequest.prototype.hasMetadataCondition = functi
|
|
|
8394
8723
|
};
|
|
8395
8724
|
|
|
8396
8725
|
|
|
8726
|
+
/**
|
|
8727
|
+
* optional SortingMode sorting_mode = 15;
|
|
8728
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
8729
|
+
*/
|
|
8730
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.getSortingMode = function() {
|
|
8731
|
+
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 15, 0));
|
|
8732
|
+
};
|
|
8733
|
+
|
|
8734
|
+
|
|
8735
|
+
/**
|
|
8736
|
+
* @param {!proto.ondewo.nlu.SortingMode} value
|
|
8737
|
+
* @return {!proto.ondewo.nlu.RagListDocumentsRequest} returns this
|
|
8738
|
+
*/
|
|
8739
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.setSortingMode = function(value) {
|
|
8740
|
+
return jspb.Message.setField(this, 15, value);
|
|
8741
|
+
};
|
|
8742
|
+
|
|
8743
|
+
|
|
8744
|
+
/**
|
|
8745
|
+
* Clears the field making it undefined.
|
|
8746
|
+
* @return {!proto.ondewo.nlu.RagListDocumentsRequest} returns this
|
|
8747
|
+
*/
|
|
8748
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.clearSortingMode = function() {
|
|
8749
|
+
return jspb.Message.setField(this, 15, undefined);
|
|
8750
|
+
};
|
|
8751
|
+
|
|
8752
|
+
|
|
8753
|
+
/**
|
|
8754
|
+
* Returns whether this field is set.
|
|
8755
|
+
* @return {boolean}
|
|
8756
|
+
*/
|
|
8757
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.hasSortingMode = function() {
|
|
8758
|
+
return jspb.Message.getField(this, 15) != null;
|
|
8759
|
+
};
|
|
8760
|
+
|
|
8761
|
+
|
|
8762
|
+
/**
|
|
8763
|
+
* optional google.protobuf.FieldMask field_mask = 16;
|
|
8764
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
8765
|
+
*/
|
|
8766
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.getFieldMask = function() {
|
|
8767
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
8768
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 16));
|
|
8769
|
+
};
|
|
8770
|
+
|
|
8771
|
+
|
|
8772
|
+
/**
|
|
8773
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
8774
|
+
* @return {!proto.ondewo.nlu.RagListDocumentsRequest} returns this
|
|
8775
|
+
*/
|
|
8776
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.setFieldMask = function(value) {
|
|
8777
|
+
return jspb.Message.setWrapperField(this, 16, value);
|
|
8778
|
+
};
|
|
8779
|
+
|
|
8780
|
+
|
|
8781
|
+
/**
|
|
8782
|
+
* Clears the message field making it undefined.
|
|
8783
|
+
* @return {!proto.ondewo.nlu.RagListDocumentsRequest} returns this
|
|
8784
|
+
*/
|
|
8785
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.clearFieldMask = function() {
|
|
8786
|
+
return this.setFieldMask(undefined);
|
|
8787
|
+
};
|
|
8788
|
+
|
|
8789
|
+
|
|
8790
|
+
/**
|
|
8791
|
+
* Returns whether this field is set.
|
|
8792
|
+
* @return {boolean}
|
|
8793
|
+
*/
|
|
8794
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.hasFieldMask = function() {
|
|
8795
|
+
return jspb.Message.getField(this, 16) != null;
|
|
8796
|
+
};
|
|
8797
|
+
|
|
8798
|
+
|
|
8397
8799
|
|
|
8398
8800
|
/**
|
|
8399
8801
|
* List of repeated fields within this message type.
|
|
@@ -9568,7 +9970,8 @@ similarityThreshold: (f = jspb.Message.getOptionalFloatingPointField(msg, 10)) =
|
|
|
9568
9970
|
vectorSimilarityWeight: (f = jspb.Message.getOptionalFloatingPointField(msg, 11)) == null ? undefined : f,
|
|
9569
9971
|
topK: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
9570
9972
|
highlight: (f = jspb.Message.getBooleanField(msg, 13)) == null ? undefined : f,
|
|
9571
|
-
keyword: (f = jspb.Message.getBooleanField(msg, 14)) == null ? undefined : f
|
|
9973
|
+
keyword: (f = jspb.Message.getBooleanField(msg, 14)) == null ? undefined : f,
|
|
9974
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
9572
9975
|
};
|
|
9573
9976
|
|
|
9574
9977
|
if (includeInstance) {
|
|
@@ -9662,6 +10065,11 @@ proto.ondewo.nlu.RagRetrievalRequest.deserializeBinaryFromReader = function(msg,
|
|
|
9662
10065
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
9663
10066
|
msg.setKeyword(value);
|
|
9664
10067
|
break;
|
|
10068
|
+
case 15:
|
|
10069
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
10070
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
10071
|
+
msg.setFieldMask(value);
|
|
10072
|
+
break;
|
|
9665
10073
|
default:
|
|
9666
10074
|
reader.skipField();
|
|
9667
10075
|
break;
|
|
@@ -9790,6 +10198,14 @@ proto.ondewo.nlu.RagRetrievalRequest.serializeBinaryToWriter = function(message,
|
|
|
9790
10198
|
f
|
|
9791
10199
|
);
|
|
9792
10200
|
}
|
|
10201
|
+
f = message.getFieldMask();
|
|
10202
|
+
if (f != null) {
|
|
10203
|
+
writer.writeMessage(
|
|
10204
|
+
15,
|
|
10205
|
+
f,
|
|
10206
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
10207
|
+
);
|
|
10208
|
+
}
|
|
9793
10209
|
};
|
|
9794
10210
|
|
|
9795
10211
|
|
|
@@ -10211,6 +10627,43 @@ proto.ondewo.nlu.RagRetrievalRequest.prototype.hasKeyword = function() {
|
|
|
10211
10627
|
};
|
|
10212
10628
|
|
|
10213
10629
|
|
|
10630
|
+
/**
|
|
10631
|
+
* optional google.protobuf.FieldMask field_mask = 15;
|
|
10632
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
10633
|
+
*/
|
|
10634
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.getFieldMask = function() {
|
|
10635
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
10636
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 15));
|
|
10637
|
+
};
|
|
10638
|
+
|
|
10639
|
+
|
|
10640
|
+
/**
|
|
10641
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
10642
|
+
* @return {!proto.ondewo.nlu.RagRetrievalRequest} returns this
|
|
10643
|
+
*/
|
|
10644
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.setFieldMask = function(value) {
|
|
10645
|
+
return jspb.Message.setWrapperField(this, 15, value);
|
|
10646
|
+
};
|
|
10647
|
+
|
|
10648
|
+
|
|
10649
|
+
/**
|
|
10650
|
+
* Clears the message field making it undefined.
|
|
10651
|
+
* @return {!proto.ondewo.nlu.RagRetrievalRequest} returns this
|
|
10652
|
+
*/
|
|
10653
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.clearFieldMask = function() {
|
|
10654
|
+
return this.setFieldMask(undefined);
|
|
10655
|
+
};
|
|
10656
|
+
|
|
10657
|
+
|
|
10658
|
+
/**
|
|
10659
|
+
* Returns whether this field is set.
|
|
10660
|
+
* @return {boolean}
|
|
10661
|
+
*/
|
|
10662
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.hasFieldMask = function() {
|
|
10663
|
+
return jspb.Message.getField(this, 15) != null;
|
|
10664
|
+
};
|
|
10665
|
+
|
|
10666
|
+
|
|
10214
10667
|
|
|
10215
10668
|
/**
|
|
10216
10669
|
* List of repeated fields within this message type.
|
|
@@ -12263,11 +12716,12 @@ proto.ondewo.nlu.RagListCrawlersRequest.toObject = function(includeInstance, msg
|
|
|
12263
12716
|
var f, obj = {
|
|
12264
12717
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
12265
12718
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
12266
|
-
pageToken: jspb.Message.
|
|
12267
|
-
datasetName: jspb.Message.
|
|
12268
|
-
crawlerName: jspb.Message.
|
|
12269
|
-
orderby: jspb.Message.
|
|
12270
|
-
sortingMode: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f
|
|
12719
|
+
pageToken: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f,
|
|
12720
|
+
datasetName: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
12721
|
+
crawlerName: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
12722
|
+
orderby: (f = jspb.Message.getField(msg, 6)) == null ? undefined : f,
|
|
12723
|
+
sortingMode: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
12724
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
12271
12725
|
};
|
|
12272
12726
|
|
|
12273
12727
|
if (includeInstance) {
|
|
@@ -12332,6 +12786,11 @@ proto.ondewo.nlu.RagListCrawlersRequest.deserializeBinaryFromReader = function(m
|
|
|
12332
12786
|
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
12333
12787
|
msg.setSortingMode(value);
|
|
12334
12788
|
break;
|
|
12789
|
+
case 8:
|
|
12790
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
12791
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
12792
|
+
msg.setFieldMask(value);
|
|
12793
|
+
break;
|
|
12335
12794
|
default:
|
|
12336
12795
|
reader.skipField();
|
|
12337
12796
|
break;
|
|
@@ -12375,29 +12834,29 @@ proto.ondewo.nlu.RagListCrawlersRequest.serializeBinaryToWriter = function(messa
|
|
|
12375
12834
|
f
|
|
12376
12835
|
);
|
|
12377
12836
|
}
|
|
12378
|
-
f =
|
|
12379
|
-
if (f
|
|
12837
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
12838
|
+
if (f != null) {
|
|
12380
12839
|
writer.writeString(
|
|
12381
12840
|
3,
|
|
12382
12841
|
f
|
|
12383
12842
|
);
|
|
12384
12843
|
}
|
|
12385
|
-
f =
|
|
12386
|
-
if (f
|
|
12844
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
12845
|
+
if (f != null) {
|
|
12387
12846
|
writer.writeString(
|
|
12388
12847
|
4,
|
|
12389
12848
|
f
|
|
12390
12849
|
);
|
|
12391
12850
|
}
|
|
12392
|
-
f =
|
|
12393
|
-
if (f
|
|
12851
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
12852
|
+
if (f != null) {
|
|
12394
12853
|
writer.writeString(
|
|
12395
12854
|
5,
|
|
12396
12855
|
f
|
|
12397
12856
|
);
|
|
12398
12857
|
}
|
|
12399
|
-
f =
|
|
12400
|
-
if (f
|
|
12858
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
12859
|
+
if (f != null) {
|
|
12401
12860
|
writer.writeString(
|
|
12402
12861
|
6,
|
|
12403
12862
|
f
|
|
@@ -12410,6 +12869,14 @@ proto.ondewo.nlu.RagListCrawlersRequest.serializeBinaryToWriter = function(messa
|
|
|
12410
12869
|
f
|
|
12411
12870
|
);
|
|
12412
12871
|
}
|
|
12872
|
+
f = message.getFieldMask();
|
|
12873
|
+
if (f != null) {
|
|
12874
|
+
writer.writeMessage(
|
|
12875
|
+
8,
|
|
12876
|
+
f,
|
|
12877
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
12878
|
+
);
|
|
12879
|
+
}
|
|
12413
12880
|
};
|
|
12414
12881
|
|
|
12415
12882
|
|
|
@@ -12463,7 +12930,25 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getPageToken = function() {
|
|
|
12463
12930
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12464
12931
|
*/
|
|
12465
12932
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setPageToken = function(value) {
|
|
12466
|
-
return jspb.Message.
|
|
12933
|
+
return jspb.Message.setField(this, 3, value);
|
|
12934
|
+
};
|
|
12935
|
+
|
|
12936
|
+
|
|
12937
|
+
/**
|
|
12938
|
+
* Clears the field making it undefined.
|
|
12939
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12940
|
+
*/
|
|
12941
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.clearPageToken = function() {
|
|
12942
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
12943
|
+
};
|
|
12944
|
+
|
|
12945
|
+
|
|
12946
|
+
/**
|
|
12947
|
+
* Returns whether this field is set.
|
|
12948
|
+
* @return {boolean}
|
|
12949
|
+
*/
|
|
12950
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasPageToken = function() {
|
|
12951
|
+
return jspb.Message.getField(this, 3) != null;
|
|
12467
12952
|
};
|
|
12468
12953
|
|
|
12469
12954
|
|
|
@@ -12481,12 +12966,30 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getDatasetName = function() {
|
|
|
12481
12966
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12482
12967
|
*/
|
|
12483
12968
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setDatasetName = function(value) {
|
|
12484
|
-
return jspb.Message.
|
|
12969
|
+
return jspb.Message.setField(this, 4, value);
|
|
12485
12970
|
};
|
|
12486
12971
|
|
|
12487
12972
|
|
|
12488
12973
|
/**
|
|
12489
|
-
*
|
|
12974
|
+
* Clears the field making it undefined.
|
|
12975
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12976
|
+
*/
|
|
12977
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.clearDatasetName = function() {
|
|
12978
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
12979
|
+
};
|
|
12980
|
+
|
|
12981
|
+
|
|
12982
|
+
/**
|
|
12983
|
+
* Returns whether this field is set.
|
|
12984
|
+
* @return {boolean}
|
|
12985
|
+
*/
|
|
12986
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasDatasetName = function() {
|
|
12987
|
+
return jspb.Message.getField(this, 4) != null;
|
|
12988
|
+
};
|
|
12989
|
+
|
|
12990
|
+
|
|
12991
|
+
/**
|
|
12992
|
+
* optional string crawler_name = 5;
|
|
12490
12993
|
* @return {string}
|
|
12491
12994
|
*/
|
|
12492
12995
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.getCrawlerName = function() {
|
|
@@ -12499,7 +13002,25 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getCrawlerName = function() {
|
|
|
12499
13002
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12500
13003
|
*/
|
|
12501
13004
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setCrawlerName = function(value) {
|
|
12502
|
-
return jspb.Message.
|
|
13005
|
+
return jspb.Message.setField(this, 5, value);
|
|
13006
|
+
};
|
|
13007
|
+
|
|
13008
|
+
|
|
13009
|
+
/**
|
|
13010
|
+
* Clears the field making it undefined.
|
|
13011
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
13012
|
+
*/
|
|
13013
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.clearCrawlerName = function() {
|
|
13014
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
13015
|
+
};
|
|
13016
|
+
|
|
13017
|
+
|
|
13018
|
+
/**
|
|
13019
|
+
* Returns whether this field is set.
|
|
13020
|
+
* @return {boolean}
|
|
13021
|
+
*/
|
|
13022
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasCrawlerName = function() {
|
|
13023
|
+
return jspb.Message.getField(this, 5) != null;
|
|
12503
13024
|
};
|
|
12504
13025
|
|
|
12505
13026
|
|
|
@@ -12517,7 +13038,25 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getOrderby = function() {
|
|
|
12517
13038
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12518
13039
|
*/
|
|
12519
13040
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setOrderby = function(value) {
|
|
12520
|
-
return jspb.Message.
|
|
13041
|
+
return jspb.Message.setField(this, 6, value);
|
|
13042
|
+
};
|
|
13043
|
+
|
|
13044
|
+
|
|
13045
|
+
/**
|
|
13046
|
+
* Clears the field making it undefined.
|
|
13047
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
13048
|
+
*/
|
|
13049
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.clearOrderby = function() {
|
|
13050
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
13051
|
+
};
|
|
13052
|
+
|
|
13053
|
+
|
|
13054
|
+
/**
|
|
13055
|
+
* Returns whether this field is set.
|
|
13056
|
+
* @return {boolean}
|
|
13057
|
+
*/
|
|
13058
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasOrderby = function() {
|
|
13059
|
+
return jspb.Message.getField(this, 6) != null;
|
|
12521
13060
|
};
|
|
12522
13061
|
|
|
12523
13062
|
|
|
@@ -12557,6 +13096,43 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasSortingMode = function() {
|
|
|
12557
13096
|
};
|
|
12558
13097
|
|
|
12559
13098
|
|
|
13099
|
+
/**
|
|
13100
|
+
* optional google.protobuf.FieldMask field_mask = 8;
|
|
13101
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
13102
|
+
*/
|
|
13103
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.getFieldMask = function() {
|
|
13104
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
13105
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 8));
|
|
13106
|
+
};
|
|
13107
|
+
|
|
13108
|
+
|
|
13109
|
+
/**
|
|
13110
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
13111
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
13112
|
+
*/
|
|
13113
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setFieldMask = function(value) {
|
|
13114
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
13115
|
+
};
|
|
13116
|
+
|
|
13117
|
+
|
|
13118
|
+
/**
|
|
13119
|
+
* Clears the message field making it undefined.
|
|
13120
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
13121
|
+
*/
|
|
13122
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.clearFieldMask = function() {
|
|
13123
|
+
return this.setFieldMask(undefined);
|
|
13124
|
+
};
|
|
13125
|
+
|
|
13126
|
+
|
|
13127
|
+
/**
|
|
13128
|
+
* Returns whether this field is set.
|
|
13129
|
+
* @return {boolean}
|
|
13130
|
+
*/
|
|
13131
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasFieldMask = function() {
|
|
13132
|
+
return jspb.Message.getField(this, 8) != null;
|
|
13133
|
+
};
|
|
13134
|
+
|
|
13135
|
+
|
|
12560
13136
|
|
|
12561
13137
|
/**
|
|
12562
13138
|
* List of repeated fields within this message type.
|
|
@@ -13334,7 +13910,7 @@ proto.ondewo.nlu.RagCrawler.prototype.toObject = function(opt_includeInstance) {
|
|
|
13334
13910
|
proto.ondewo.nlu.RagCrawler.toObject = function(includeInstance, msg) {
|
|
13335
13911
|
var f, obj = {
|
|
13336
13912
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
13337
|
-
displayName: jspb.Message.
|
|
13913
|
+
displayName: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
|
|
13338
13914
|
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
13339
13915
|
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
13340
13916
|
createdBy: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
@@ -13473,8 +14049,8 @@ proto.ondewo.nlu.RagCrawler.serializeBinaryToWriter = function(message, writer)
|
|
|
13473
14049
|
f
|
|
13474
14050
|
);
|
|
13475
14051
|
}
|
|
13476
|
-
f =
|
|
13477
|
-
if (f
|
|
14052
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
14053
|
+
if (f != null) {
|
|
13478
14054
|
writer.writeString(
|
|
13479
14055
|
2,
|
|
13480
14056
|
f
|
|
@@ -13593,7 +14169,25 @@ proto.ondewo.nlu.RagCrawler.prototype.getDisplayName = function() {
|
|
|
13593
14169
|
* @return {!proto.ondewo.nlu.RagCrawler} returns this
|
|
13594
14170
|
*/
|
|
13595
14171
|
proto.ondewo.nlu.RagCrawler.prototype.setDisplayName = function(value) {
|
|
13596
|
-
return jspb.Message.
|
|
14172
|
+
return jspb.Message.setField(this, 2, value);
|
|
14173
|
+
};
|
|
14174
|
+
|
|
14175
|
+
|
|
14176
|
+
/**
|
|
14177
|
+
* Clears the field making it undefined.
|
|
14178
|
+
* @return {!proto.ondewo.nlu.RagCrawler} returns this
|
|
14179
|
+
*/
|
|
14180
|
+
proto.ondewo.nlu.RagCrawler.prototype.clearDisplayName = function() {
|
|
14181
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
14182
|
+
};
|
|
14183
|
+
|
|
14184
|
+
|
|
14185
|
+
/**
|
|
14186
|
+
* Returns whether this field is set.
|
|
14187
|
+
* @return {boolean}
|
|
14188
|
+
*/
|
|
14189
|
+
proto.ondewo.nlu.RagCrawler.prototype.hasDisplayName = function() {
|
|
14190
|
+
return jspb.Message.getField(this, 2) != null;
|
|
13597
14191
|
};
|
|
13598
14192
|
|
|
13599
14193
|
|
|
@@ -14175,9 +14769,9 @@ proto.ondewo.nlu.RagCrawlerFilters.toObject = function(includeInstance, msg) {
|
|
|
14175
14769
|
var f, obj = {
|
|
14176
14770
|
allowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
14177
14771
|
disallowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
14178
|
-
allowInternalLinks: jspb.Message.
|
|
14179
|
-
allowExternalLinks: jspb.Message.
|
|
14180
|
-
allowSocialMediaLinks: jspb.Message.
|
|
14772
|
+
allowInternalLinks: (f = jspb.Message.getBooleanField(msg, 3)) == null ? undefined : f,
|
|
14773
|
+
allowExternalLinks: (f = jspb.Message.getBooleanField(msg, 4)) == null ? undefined : f,
|
|
14774
|
+
allowSocialMediaLinks: (f = jspb.Message.getBooleanField(msg, 5)) == null ? undefined : f,
|
|
14181
14775
|
allowedRegexList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
14182
14776
|
disallowedRegexList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
|
|
14183
14777
|
allowedPathsList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
|
|
@@ -14297,22 +14891,22 @@ proto.ondewo.nlu.RagCrawlerFilters.serializeBinaryToWriter = function(message, w
|
|
|
14297
14891
|
f
|
|
14298
14892
|
);
|
|
14299
14893
|
}
|
|
14300
|
-
f =
|
|
14301
|
-
if (f) {
|
|
14894
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 3));
|
|
14895
|
+
if (f != null) {
|
|
14302
14896
|
writer.writeBool(
|
|
14303
14897
|
3,
|
|
14304
14898
|
f
|
|
14305
14899
|
);
|
|
14306
14900
|
}
|
|
14307
|
-
f =
|
|
14308
|
-
if (f) {
|
|
14901
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 4));
|
|
14902
|
+
if (f != null) {
|
|
14309
14903
|
writer.writeBool(
|
|
14310
14904
|
4,
|
|
14311
14905
|
f
|
|
14312
14906
|
);
|
|
14313
14907
|
}
|
|
14314
|
-
f =
|
|
14315
|
-
if (f) {
|
|
14908
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 5));
|
|
14909
|
+
if (f != null) {
|
|
14316
14910
|
writer.writeBool(
|
|
14317
14911
|
5,
|
|
14318
14912
|
f
|
|
@@ -14437,7 +15031,25 @@ proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowInternalLinks = function()
|
|
|
14437
15031
|
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14438
15032
|
*/
|
|
14439
15033
|
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowInternalLinks = function(value) {
|
|
14440
|
-
return jspb.Message.
|
|
15034
|
+
return jspb.Message.setField(this, 3, value);
|
|
15035
|
+
};
|
|
15036
|
+
|
|
15037
|
+
|
|
15038
|
+
/**
|
|
15039
|
+
* Clears the field making it undefined.
|
|
15040
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15041
|
+
*/
|
|
15042
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowInternalLinks = function() {
|
|
15043
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
15044
|
+
};
|
|
15045
|
+
|
|
15046
|
+
|
|
15047
|
+
/**
|
|
15048
|
+
* Returns whether this field is set.
|
|
15049
|
+
* @return {boolean}
|
|
15050
|
+
*/
|
|
15051
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.hasAllowInternalLinks = function() {
|
|
15052
|
+
return jspb.Message.getField(this, 3) != null;
|
|
14441
15053
|
};
|
|
14442
15054
|
|
|
14443
15055
|
|
|
@@ -14455,7 +15067,25 @@ proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowExternalLinks = function()
|
|
|
14455
15067
|
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14456
15068
|
*/
|
|
14457
15069
|
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowExternalLinks = function(value) {
|
|
14458
|
-
return jspb.Message.
|
|
15070
|
+
return jspb.Message.setField(this, 4, value);
|
|
15071
|
+
};
|
|
15072
|
+
|
|
15073
|
+
|
|
15074
|
+
/**
|
|
15075
|
+
* Clears the field making it undefined.
|
|
15076
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15077
|
+
*/
|
|
15078
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowExternalLinks = function() {
|
|
15079
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
15080
|
+
};
|
|
15081
|
+
|
|
15082
|
+
|
|
15083
|
+
/**
|
|
15084
|
+
* Returns whether this field is set.
|
|
15085
|
+
* @return {boolean}
|
|
15086
|
+
*/
|
|
15087
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.hasAllowExternalLinks = function() {
|
|
15088
|
+
return jspb.Message.getField(this, 4) != null;
|
|
14459
15089
|
};
|
|
14460
15090
|
|
|
14461
15091
|
|
|
@@ -14473,7 +15103,25 @@ proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowSocialMediaLinks = function
|
|
|
14473
15103
|
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14474
15104
|
*/
|
|
14475
15105
|
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowSocialMediaLinks = function(value) {
|
|
14476
|
-
return jspb.Message.
|
|
15106
|
+
return jspb.Message.setField(this, 5, value);
|
|
15107
|
+
};
|
|
15108
|
+
|
|
15109
|
+
|
|
15110
|
+
/**
|
|
15111
|
+
* Clears the field making it undefined.
|
|
15112
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15113
|
+
*/
|
|
15114
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowSocialMediaLinks = function() {
|
|
15115
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
15116
|
+
};
|
|
15117
|
+
|
|
15118
|
+
|
|
15119
|
+
/**
|
|
15120
|
+
* Returns whether this field is set.
|
|
15121
|
+
* @return {boolean}
|
|
15122
|
+
*/
|
|
15123
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.hasAllowSocialMediaLinks = function() {
|
|
15124
|
+
return jspb.Message.getField(this, 5) != null;
|
|
14477
15125
|
};
|
|
14478
15126
|
|
|
14479
15127
|
|
|
@@ -15162,14 +15810,14 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.toObject = function(opt_includeIns
|
|
|
15162
15810
|
*/
|
|
15163
15811
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.toObject = function(includeInstance, msg) {
|
|
15164
15812
|
var f, obj = {
|
|
15165
|
-
htmlAuthBaseUrl: jspb.Message.
|
|
15166
|
-
htmlAuthUsernameSelectorType: jspb.Message.
|
|
15167
|
-
htmlAuthUsernameSelector: jspb.Message.
|
|
15168
|
-
htmlAuthUsername: jspb.Message.
|
|
15169
|
-
htmlAuthPasswordSelectorType: jspb.Message.
|
|
15170
|
-
htmlAuthPasswordSelector: jspb.Message.
|
|
15171
|
-
htmlAuthPassword: jspb.Message.
|
|
15172
|
-
authenticationExecutionType: jspb.Message.
|
|
15813
|
+
htmlAuthBaseUrl: (f = jspb.Message.getField(msg, 1)) == null ? undefined : f,
|
|
15814
|
+
htmlAuthUsernameSelectorType: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
|
|
15815
|
+
htmlAuthUsernameSelector: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f,
|
|
15816
|
+
htmlAuthUsername: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
15817
|
+
htmlAuthPasswordSelectorType: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
15818
|
+
htmlAuthPasswordSelector: (f = jspb.Message.getField(msg, 6)) == null ? undefined : f,
|
|
15819
|
+
htmlAuthPassword: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
15820
|
+
authenticationExecutionType: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f
|
|
15173
15821
|
};
|
|
15174
15822
|
|
|
15175
15823
|
if (includeInstance) {
|
|
@@ -15267,57 +15915,57 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.serializeBinary = function() {
|
|
|
15267
15915
|
*/
|
|
15268
15916
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.serializeBinaryToWriter = function(message, writer) {
|
|
15269
15917
|
var f = undefined;
|
|
15270
|
-
f =
|
|
15271
|
-
if (f
|
|
15918
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 1));
|
|
15919
|
+
if (f != null) {
|
|
15272
15920
|
writer.writeString(
|
|
15273
15921
|
1,
|
|
15274
15922
|
f
|
|
15275
15923
|
);
|
|
15276
15924
|
}
|
|
15277
|
-
f =
|
|
15278
|
-
if (f
|
|
15925
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerSelectorType} */ (jspb.Message.getField(message, 2));
|
|
15926
|
+
if (f != null) {
|
|
15279
15927
|
writer.writeEnum(
|
|
15280
15928
|
2,
|
|
15281
15929
|
f
|
|
15282
15930
|
);
|
|
15283
15931
|
}
|
|
15284
|
-
f =
|
|
15285
|
-
if (f
|
|
15932
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
15933
|
+
if (f != null) {
|
|
15286
15934
|
writer.writeString(
|
|
15287
15935
|
3,
|
|
15288
15936
|
f
|
|
15289
15937
|
);
|
|
15290
15938
|
}
|
|
15291
|
-
f =
|
|
15292
|
-
if (f
|
|
15939
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
15940
|
+
if (f != null) {
|
|
15293
15941
|
writer.writeString(
|
|
15294
15942
|
4,
|
|
15295
15943
|
f
|
|
15296
15944
|
);
|
|
15297
15945
|
}
|
|
15298
|
-
f =
|
|
15299
|
-
if (f
|
|
15946
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerSelectorType} */ (jspb.Message.getField(message, 5));
|
|
15947
|
+
if (f != null) {
|
|
15300
15948
|
writer.writeEnum(
|
|
15301
15949
|
5,
|
|
15302
15950
|
f
|
|
15303
15951
|
);
|
|
15304
15952
|
}
|
|
15305
|
-
f =
|
|
15306
|
-
if (f
|
|
15953
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
15954
|
+
if (f != null) {
|
|
15307
15955
|
writer.writeString(
|
|
15308
15956
|
6,
|
|
15309
15957
|
f
|
|
15310
15958
|
);
|
|
15311
15959
|
}
|
|
15312
|
-
f =
|
|
15313
|
-
if (f
|
|
15960
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
15961
|
+
if (f != null) {
|
|
15314
15962
|
writer.writeString(
|
|
15315
15963
|
7,
|
|
15316
15964
|
f
|
|
15317
15965
|
);
|
|
15318
15966
|
}
|
|
15319
|
-
f =
|
|
15320
|
-
if (f
|
|
15967
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerAuthenticationExecutionType} */ (jspb.Message.getField(message, 8));
|
|
15968
|
+
if (f != null) {
|
|
15321
15969
|
writer.writeEnum(
|
|
15322
15970
|
8,
|
|
15323
15971
|
f
|
|
@@ -15340,7 +15988,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthBaseUrl = function() {
|
|
|
15340
15988
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15341
15989
|
*/
|
|
15342
15990
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthBaseUrl = function(value) {
|
|
15343
|
-
return jspb.Message.
|
|
15991
|
+
return jspb.Message.setField(this, 1, value);
|
|
15992
|
+
};
|
|
15993
|
+
|
|
15994
|
+
|
|
15995
|
+
/**
|
|
15996
|
+
* Clears the field making it undefined.
|
|
15997
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15998
|
+
*/
|
|
15999
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthBaseUrl = function() {
|
|
16000
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
16001
|
+
};
|
|
16002
|
+
|
|
16003
|
+
|
|
16004
|
+
/**
|
|
16005
|
+
* Returns whether this field is set.
|
|
16006
|
+
* @return {boolean}
|
|
16007
|
+
*/
|
|
16008
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthBaseUrl = function() {
|
|
16009
|
+
return jspb.Message.getField(this, 1) != null;
|
|
15344
16010
|
};
|
|
15345
16011
|
|
|
15346
16012
|
|
|
@@ -15358,34 +16024,34 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsernameSelectorType =
|
|
|
15358
16024
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15359
16025
|
*/
|
|
15360
16026
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthUsernameSelectorType = function(value) {
|
|
15361
|
-
return jspb.Message.
|
|
16027
|
+
return jspb.Message.setField(this, 2, value);
|
|
15362
16028
|
};
|
|
15363
16029
|
|
|
15364
16030
|
|
|
15365
16031
|
/**
|
|
15366
|
-
*
|
|
15367
|
-
* @return {
|
|
16032
|
+
* Clears the field making it undefined.
|
|
16033
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15368
16034
|
*/
|
|
15369
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15370
|
-
return
|
|
16035
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthUsernameSelectorType = function() {
|
|
16036
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
15371
16037
|
};
|
|
15372
16038
|
|
|
15373
16039
|
|
|
15374
16040
|
/**
|
|
15375
|
-
*
|
|
15376
|
-
* @return {
|
|
16041
|
+
* Returns whether this field is set.
|
|
16042
|
+
* @return {boolean}
|
|
15377
16043
|
*/
|
|
15378
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15379
|
-
return jspb.Message.
|
|
16044
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthUsernameSelectorType = function() {
|
|
16045
|
+
return jspb.Message.getField(this, 2) != null;
|
|
15380
16046
|
};
|
|
15381
16047
|
|
|
15382
16048
|
|
|
15383
16049
|
/**
|
|
15384
|
-
* optional string
|
|
16050
|
+
* optional string html_auth_username_selector = 3;
|
|
15385
16051
|
* @return {string}
|
|
15386
16052
|
*/
|
|
15387
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15388
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
16053
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsernameSelector = function() {
|
|
16054
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
15389
16055
|
};
|
|
15390
16056
|
|
|
15391
16057
|
|
|
@@ -15393,35 +16059,35 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsername = function() {
|
|
|
15393
16059
|
* @param {string} value
|
|
15394
16060
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15395
16061
|
*/
|
|
15396
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15397
|
-
return jspb.Message.
|
|
16062
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthUsernameSelector = function(value) {
|
|
16063
|
+
return jspb.Message.setField(this, 3, value);
|
|
15398
16064
|
};
|
|
15399
16065
|
|
|
15400
16066
|
|
|
15401
16067
|
/**
|
|
15402
|
-
*
|
|
15403
|
-
* @return {!proto.ondewo.nlu.
|
|
16068
|
+
* Clears the field making it undefined.
|
|
16069
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15404
16070
|
*/
|
|
15405
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15406
|
-
return
|
|
16071
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthUsernameSelector = function() {
|
|
16072
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
15407
16073
|
};
|
|
15408
16074
|
|
|
15409
16075
|
|
|
15410
16076
|
/**
|
|
15411
|
-
*
|
|
15412
|
-
* @return {
|
|
16077
|
+
* Returns whether this field is set.
|
|
16078
|
+
* @return {boolean}
|
|
15413
16079
|
*/
|
|
15414
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15415
|
-
return jspb.Message.
|
|
16080
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthUsernameSelector = function() {
|
|
16081
|
+
return jspb.Message.getField(this, 3) != null;
|
|
15416
16082
|
};
|
|
15417
16083
|
|
|
15418
16084
|
|
|
15419
16085
|
/**
|
|
15420
|
-
* optional string
|
|
16086
|
+
* optional string html_auth_username = 4;
|
|
15421
16087
|
* @return {string}
|
|
15422
16088
|
*/
|
|
15423
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15424
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
16089
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsername = function() {
|
|
16090
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
15425
16091
|
};
|
|
15426
16092
|
|
|
15427
16093
|
|
|
@@ -15429,17 +16095,107 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthPasswordSelector = func
|
|
|
15429
16095
|
* @param {string} value
|
|
15430
16096
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15431
16097
|
*/
|
|
15432
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15433
|
-
return jspb.Message.
|
|
16098
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthUsername = function(value) {
|
|
16099
|
+
return jspb.Message.setField(this, 4, value);
|
|
15434
16100
|
};
|
|
15435
16101
|
|
|
15436
16102
|
|
|
15437
16103
|
/**
|
|
15438
|
-
*
|
|
15439
|
-
* @return {
|
|
16104
|
+
* Clears the field making it undefined.
|
|
16105
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15440
16106
|
*/
|
|
15441
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15442
|
-
return
|
|
16107
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthUsername = function() {
|
|
16108
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
16109
|
+
};
|
|
16110
|
+
|
|
16111
|
+
|
|
16112
|
+
/**
|
|
16113
|
+
* Returns whether this field is set.
|
|
16114
|
+
* @return {boolean}
|
|
16115
|
+
*/
|
|
16116
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthUsername = function() {
|
|
16117
|
+
return jspb.Message.getField(this, 4) != null;
|
|
16118
|
+
};
|
|
16119
|
+
|
|
16120
|
+
|
|
16121
|
+
/**
|
|
16122
|
+
* optional RagCrawlerSelectorType html_auth_password_selector_type = 5;
|
|
16123
|
+
* @return {!proto.ondewo.nlu.RagCrawlerSelectorType}
|
|
16124
|
+
*/
|
|
16125
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthPasswordSelectorType = function() {
|
|
16126
|
+
return /** @type {!proto.ondewo.nlu.RagCrawlerSelectorType} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
16127
|
+
};
|
|
16128
|
+
|
|
16129
|
+
|
|
16130
|
+
/**
|
|
16131
|
+
* @param {!proto.ondewo.nlu.RagCrawlerSelectorType} value
|
|
16132
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16133
|
+
*/
|
|
16134
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthPasswordSelectorType = function(value) {
|
|
16135
|
+
return jspb.Message.setField(this, 5, value);
|
|
16136
|
+
};
|
|
16137
|
+
|
|
16138
|
+
|
|
16139
|
+
/**
|
|
16140
|
+
* Clears the field making it undefined.
|
|
16141
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16142
|
+
*/
|
|
16143
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthPasswordSelectorType = function() {
|
|
16144
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
16145
|
+
};
|
|
16146
|
+
|
|
16147
|
+
|
|
16148
|
+
/**
|
|
16149
|
+
* Returns whether this field is set.
|
|
16150
|
+
* @return {boolean}
|
|
16151
|
+
*/
|
|
16152
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthPasswordSelectorType = function() {
|
|
16153
|
+
return jspb.Message.getField(this, 5) != null;
|
|
16154
|
+
};
|
|
16155
|
+
|
|
16156
|
+
|
|
16157
|
+
/**
|
|
16158
|
+
* optional string html_auth_password_selector = 6;
|
|
16159
|
+
* @return {string}
|
|
16160
|
+
*/
|
|
16161
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthPasswordSelector = function() {
|
|
16162
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
16163
|
+
};
|
|
16164
|
+
|
|
16165
|
+
|
|
16166
|
+
/**
|
|
16167
|
+
* @param {string} value
|
|
16168
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16169
|
+
*/
|
|
16170
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthPasswordSelector = function(value) {
|
|
16171
|
+
return jspb.Message.setField(this, 6, value);
|
|
16172
|
+
};
|
|
16173
|
+
|
|
16174
|
+
|
|
16175
|
+
/**
|
|
16176
|
+
* Clears the field making it undefined.
|
|
16177
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16178
|
+
*/
|
|
16179
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthPasswordSelector = function() {
|
|
16180
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
16181
|
+
};
|
|
16182
|
+
|
|
16183
|
+
|
|
16184
|
+
/**
|
|
16185
|
+
* Returns whether this field is set.
|
|
16186
|
+
* @return {boolean}
|
|
16187
|
+
*/
|
|
16188
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthPasswordSelector = function() {
|
|
16189
|
+
return jspb.Message.getField(this, 6) != null;
|
|
16190
|
+
};
|
|
16191
|
+
|
|
16192
|
+
|
|
16193
|
+
/**
|
|
16194
|
+
* optional string html_auth_password = 7;
|
|
16195
|
+
* @return {string}
|
|
16196
|
+
*/
|
|
16197
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthPassword = function() {
|
|
16198
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
15443
16199
|
};
|
|
15444
16200
|
|
|
15445
16201
|
|
|
@@ -15448,7 +16204,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthPassword = function() {
|
|
|
15448
16204
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15449
16205
|
*/
|
|
15450
16206
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthPassword = function(value) {
|
|
15451
|
-
return jspb.Message.
|
|
16207
|
+
return jspb.Message.setField(this, 7, value);
|
|
16208
|
+
};
|
|
16209
|
+
|
|
16210
|
+
|
|
16211
|
+
/**
|
|
16212
|
+
* Clears the field making it undefined.
|
|
16213
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16214
|
+
*/
|
|
16215
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthPassword = function() {
|
|
16216
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
16217
|
+
};
|
|
16218
|
+
|
|
16219
|
+
|
|
16220
|
+
/**
|
|
16221
|
+
* Returns whether this field is set.
|
|
16222
|
+
* @return {boolean}
|
|
16223
|
+
*/
|
|
16224
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthPassword = function() {
|
|
16225
|
+
return jspb.Message.getField(this, 7) != null;
|
|
15452
16226
|
};
|
|
15453
16227
|
|
|
15454
16228
|
|
|
@@ -15466,7 +16240,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getAuthenticationExecutionType = f
|
|
|
15466
16240
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15467
16241
|
*/
|
|
15468
16242
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setAuthenticationExecutionType = function(value) {
|
|
15469
|
-
return jspb.Message.
|
|
16243
|
+
return jspb.Message.setField(this, 8, value);
|
|
16244
|
+
};
|
|
16245
|
+
|
|
16246
|
+
|
|
16247
|
+
/**
|
|
16248
|
+
* Clears the field making it undefined.
|
|
16249
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16250
|
+
*/
|
|
16251
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearAuthenticationExecutionType = function() {
|
|
16252
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
16253
|
+
};
|
|
16254
|
+
|
|
16255
|
+
|
|
16256
|
+
/**
|
|
16257
|
+
* Returns whether this field is set.
|
|
16258
|
+
* @return {boolean}
|
|
16259
|
+
*/
|
|
16260
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasAuthenticationExecutionType = function() {
|
|
16261
|
+
return jspb.Message.getField(this, 8) != null;
|
|
15470
16262
|
};
|
|
15471
16263
|
|
|
15472
16264
|
|
|
@@ -15673,7 +16465,7 @@ crawlerHeadersList: jspb.Message.toObjectList(msg.getCrawlerHeadersList(),
|
|
|
15673
16465
|
google_protobuf_struct_pb.Struct.toObject, includeInstance),
|
|
15674
16466
|
crawlerCookiesList: jspb.Message.toObjectList(msg.getCrawlerCookiesList(),
|
|
15675
16467
|
proto.ondewo.nlu.RagCrawlerCookie.toObject, includeInstance),
|
|
15676
|
-
crawlerUserAgent: jspb.Message.
|
|
16468
|
+
crawlerUserAgent: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
15677
16469
|
};
|
|
15678
16470
|
|
|
15679
16471
|
if (includeInstance) {
|
|
@@ -15769,8 +16561,8 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.serializeBinaryToWriter = function(mess
|
|
|
15769
16561
|
proto.ondewo.nlu.RagCrawlerCookie.serializeBinaryToWriter
|
|
15770
16562
|
);
|
|
15771
16563
|
}
|
|
15772
|
-
f =
|
|
15773
|
-
if (f
|
|
16564
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
16565
|
+
if (f != null) {
|
|
15774
16566
|
writer.writeString(
|
|
15775
16567
|
3,
|
|
15776
16568
|
f
|
|
@@ -15869,7 +16661,25 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.getCrawlerUserAgent = functio
|
|
|
15869
16661
|
* @return {!proto.ondewo.nlu.RagCrawlerBrowserConfig} returns this
|
|
15870
16662
|
*/
|
|
15871
16663
|
proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.setCrawlerUserAgent = function(value) {
|
|
15872
|
-
return jspb.Message.
|
|
16664
|
+
return jspb.Message.setField(this, 3, value);
|
|
16665
|
+
};
|
|
16666
|
+
|
|
16667
|
+
|
|
16668
|
+
/**
|
|
16669
|
+
* Clears the field making it undefined.
|
|
16670
|
+
* @return {!proto.ondewo.nlu.RagCrawlerBrowserConfig} returns this
|
|
16671
|
+
*/
|
|
16672
|
+
proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.clearCrawlerUserAgent = function() {
|
|
16673
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
16674
|
+
};
|
|
16675
|
+
|
|
16676
|
+
|
|
16677
|
+
/**
|
|
16678
|
+
* Returns whether this field is set.
|
|
16679
|
+
* @return {boolean}
|
|
16680
|
+
*/
|
|
16681
|
+
proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.hasCrawlerUserAgent = function() {
|
|
16682
|
+
return jspb.Message.getField(this, 3) != null;
|
|
15873
16683
|
};
|
|
15874
16684
|
|
|
15875
16685
|
|
|
@@ -15907,7 +16717,7 @@ proto.ondewo.nlu.RagCrawlerCookie.toObject = function(includeInstance, msg) {
|
|
|
15907
16717
|
var f, obj = {
|
|
15908
16718
|
cookieName: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
15909
16719
|
cookieValue: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
15910
|
-
cookieDomain: jspb.Message.
|
|
16720
|
+
cookieDomain: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
15911
16721
|
};
|
|
15912
16722
|
|
|
15913
16723
|
if (includeInstance) {
|
|
@@ -15999,8 +16809,8 @@ proto.ondewo.nlu.RagCrawlerCookie.serializeBinaryToWriter = function(message, wr
|
|
|
15999
16809
|
f
|
|
16000
16810
|
);
|
|
16001
16811
|
}
|
|
16002
|
-
f =
|
|
16003
|
-
if (f
|
|
16812
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
16813
|
+
if (f != null) {
|
|
16004
16814
|
writer.writeString(
|
|
16005
16815
|
3,
|
|
16006
16816
|
f
|
|
@@ -16059,7 +16869,25 @@ proto.ondewo.nlu.RagCrawlerCookie.prototype.getCookieDomain = function() {
|
|
|
16059
16869
|
* @return {!proto.ondewo.nlu.RagCrawlerCookie} returns this
|
|
16060
16870
|
*/
|
|
16061
16871
|
proto.ondewo.nlu.RagCrawlerCookie.prototype.setCookieDomain = function(value) {
|
|
16062
|
-
return jspb.Message.
|
|
16872
|
+
return jspb.Message.setField(this, 3, value);
|
|
16873
|
+
};
|
|
16874
|
+
|
|
16875
|
+
|
|
16876
|
+
/**
|
|
16877
|
+
* Clears the field making it undefined.
|
|
16878
|
+
* @return {!proto.ondewo.nlu.RagCrawlerCookie} returns this
|
|
16879
|
+
*/
|
|
16880
|
+
proto.ondewo.nlu.RagCrawlerCookie.prototype.clearCookieDomain = function() {
|
|
16881
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
16882
|
+
};
|
|
16883
|
+
|
|
16884
|
+
|
|
16885
|
+
/**
|
|
16886
|
+
* Returns whether this field is set.
|
|
16887
|
+
* @return {boolean}
|
|
16888
|
+
*/
|
|
16889
|
+
proto.ondewo.nlu.RagCrawlerCookie.prototype.hasCookieDomain = function() {
|
|
16890
|
+
return jspb.Message.getField(this, 3) != null;
|
|
16063
16891
|
};
|
|
16064
16892
|
|
|
16065
16893
|
|
|
@@ -16095,7 +16923,8 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.toObject = function(opt_i
|
|
|
16095
16923
|
*/
|
|
16096
16924
|
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.toObject = function(includeInstance, msg) {
|
|
16097
16925
|
var f, obj = {
|
|
16098
|
-
maxConcurrentRequests: jspb.Message.
|
|
16926
|
+
maxConcurrentRequests: (f = jspb.Message.getField(msg, 1)) == null ? undefined : f,
|
|
16927
|
+
slowCrawl: (f = jspb.Message.getBooleanField(msg, 2)) == null ? undefined : f
|
|
16099
16928
|
};
|
|
16100
16929
|
|
|
16101
16930
|
if (includeInstance) {
|
|
@@ -16136,6 +16965,10 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.deserializeBinaryFromReader = funct
|
|
|
16136
16965
|
var value = /** @type {number} */ (reader.readInt32());
|
|
16137
16966
|
msg.setMaxConcurrentRequests(value);
|
|
16138
16967
|
break;
|
|
16968
|
+
case 2:
|
|
16969
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
16970
|
+
msg.setSlowCrawl(value);
|
|
16971
|
+
break;
|
|
16139
16972
|
default:
|
|
16140
16973
|
reader.skipField();
|
|
16141
16974
|
break;
|
|
@@ -16165,13 +16998,20 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.serializeBinary = functio
|
|
|
16165
16998
|
*/
|
|
16166
16999
|
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.serializeBinaryToWriter = function(message, writer) {
|
|
16167
17000
|
var f = undefined;
|
|
16168
|
-
f =
|
|
16169
|
-
if (f
|
|
17001
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
17002
|
+
if (f != null) {
|
|
16170
17003
|
writer.writeInt32(
|
|
16171
17004
|
1,
|
|
16172
17005
|
f
|
|
16173
17006
|
);
|
|
16174
17007
|
}
|
|
17008
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 2));
|
|
17009
|
+
if (f != null) {
|
|
17010
|
+
writer.writeBool(
|
|
17011
|
+
2,
|
|
17012
|
+
f
|
|
17013
|
+
);
|
|
17014
|
+
}
|
|
16175
17015
|
};
|
|
16176
17016
|
|
|
16177
17017
|
|
|
@@ -16189,7 +17029,61 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.getMaxConcurrentRequests
|
|
|
16189
17029
|
* @return {!proto.ondewo.nlu.RagCrawlerConcurrencyConfig} returns this
|
|
16190
17030
|
*/
|
|
16191
17031
|
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.setMaxConcurrentRequests = function(value) {
|
|
16192
|
-
return jspb.Message.
|
|
17032
|
+
return jspb.Message.setField(this, 1, value);
|
|
17033
|
+
};
|
|
17034
|
+
|
|
17035
|
+
|
|
17036
|
+
/**
|
|
17037
|
+
* Clears the field making it undefined.
|
|
17038
|
+
* @return {!proto.ondewo.nlu.RagCrawlerConcurrencyConfig} returns this
|
|
17039
|
+
*/
|
|
17040
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.clearMaxConcurrentRequests = function() {
|
|
17041
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
17042
|
+
};
|
|
17043
|
+
|
|
17044
|
+
|
|
17045
|
+
/**
|
|
17046
|
+
* Returns whether this field is set.
|
|
17047
|
+
* @return {boolean}
|
|
17048
|
+
*/
|
|
17049
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.hasMaxConcurrentRequests = function() {
|
|
17050
|
+
return jspb.Message.getField(this, 1) != null;
|
|
17051
|
+
};
|
|
17052
|
+
|
|
17053
|
+
|
|
17054
|
+
/**
|
|
17055
|
+
* optional bool slow_crawl = 2;
|
|
17056
|
+
* @return {boolean}
|
|
17057
|
+
*/
|
|
17058
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.getSlowCrawl = function() {
|
|
17059
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 2, false));
|
|
17060
|
+
};
|
|
17061
|
+
|
|
17062
|
+
|
|
17063
|
+
/**
|
|
17064
|
+
* @param {boolean} value
|
|
17065
|
+
* @return {!proto.ondewo.nlu.RagCrawlerConcurrencyConfig} returns this
|
|
17066
|
+
*/
|
|
17067
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.setSlowCrawl = function(value) {
|
|
17068
|
+
return jspb.Message.setField(this, 2, value);
|
|
17069
|
+
};
|
|
17070
|
+
|
|
17071
|
+
|
|
17072
|
+
/**
|
|
17073
|
+
* Clears the field making it undefined.
|
|
17074
|
+
* @return {!proto.ondewo.nlu.RagCrawlerConcurrencyConfig} returns this
|
|
17075
|
+
*/
|
|
17076
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.clearSlowCrawl = function() {
|
|
17077
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
17078
|
+
};
|
|
17079
|
+
|
|
17080
|
+
|
|
17081
|
+
/**
|
|
17082
|
+
* Returns whether this field is set.
|
|
17083
|
+
* @return {boolean}
|
|
17084
|
+
*/
|
|
17085
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.hasSlowCrawl = function() {
|
|
17086
|
+
return jspb.Message.getField(this, 2) != null;
|
|
16193
17087
|
};
|
|
16194
17088
|
|
|
16195
17089
|
|
|
@@ -16478,10 +17372,10 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.toObject = function(opt_i
|
|
|
16478
17372
|
*/
|
|
16479
17373
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.toObject = function(includeInstance, msg) {
|
|
16480
17374
|
var f, obj = {
|
|
16481
|
-
isActive: jspb.Message.
|
|
16482
|
-
crawlStrategy: jspb.Message.
|
|
16483
|
-
maxDepth: jspb.Message.
|
|
16484
|
-
maxPages: jspb.Message.
|
|
17375
|
+
isActive: (f = jspb.Message.getBooleanField(msg, 1)) == null ? undefined : f,
|
|
17376
|
+
crawlStrategy: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
|
|
17377
|
+
maxDepth: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f,
|
|
17378
|
+
maxPages: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
16485
17379
|
deepCrawlerFilters: (f = msg.getDeepCrawlerFilters()) && proto.ondewo.nlu.RagCrawlerFilters.toObject(includeInstance, f)
|
|
16486
17380
|
};
|
|
16487
17381
|
|
|
@@ -16569,29 +17463,29 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.serializeBinary = functio
|
|
|
16569
17463
|
*/
|
|
16570
17464
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.serializeBinaryToWriter = function(message, writer) {
|
|
16571
17465
|
var f = undefined;
|
|
16572
|
-
f =
|
|
16573
|
-
if (f) {
|
|
17466
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 1));
|
|
17467
|
+
if (f != null) {
|
|
16574
17468
|
writer.writeBool(
|
|
16575
17469
|
1,
|
|
16576
17470
|
f
|
|
16577
17471
|
);
|
|
16578
17472
|
}
|
|
16579
|
-
f =
|
|
16580
|
-
if (f
|
|
17473
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerCrawlStrategy} */ (jspb.Message.getField(message, 2));
|
|
17474
|
+
if (f != null) {
|
|
16581
17475
|
writer.writeEnum(
|
|
16582
17476
|
2,
|
|
16583
17477
|
f
|
|
16584
17478
|
);
|
|
16585
17479
|
}
|
|
16586
|
-
f =
|
|
16587
|
-
if (f
|
|
17480
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 3));
|
|
17481
|
+
if (f != null) {
|
|
16588
17482
|
writer.writeInt32(
|
|
16589
17483
|
3,
|
|
16590
17484
|
f
|
|
16591
17485
|
);
|
|
16592
17486
|
}
|
|
16593
|
-
f =
|
|
16594
|
-
if (f
|
|
17487
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 4));
|
|
17488
|
+
if (f != null) {
|
|
16595
17489
|
writer.writeInt32(
|
|
16596
17490
|
4,
|
|
16597
17491
|
f
|
|
@@ -16622,7 +17516,25 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getIsActive = function()
|
|
|
16622
17516
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16623
17517
|
*/
|
|
16624
17518
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setIsActive = function(value) {
|
|
16625
|
-
return jspb.Message.
|
|
17519
|
+
return jspb.Message.setField(this, 1, value);
|
|
17520
|
+
};
|
|
17521
|
+
|
|
17522
|
+
|
|
17523
|
+
/**
|
|
17524
|
+
* Clears the field making it undefined.
|
|
17525
|
+
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
17526
|
+
*/
|
|
17527
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.clearIsActive = function() {
|
|
17528
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
17529
|
+
};
|
|
17530
|
+
|
|
17531
|
+
|
|
17532
|
+
/**
|
|
17533
|
+
* Returns whether this field is set.
|
|
17534
|
+
* @return {boolean}
|
|
17535
|
+
*/
|
|
17536
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.hasIsActive = function() {
|
|
17537
|
+
return jspb.Message.getField(this, 1) != null;
|
|
16626
17538
|
};
|
|
16627
17539
|
|
|
16628
17540
|
|
|
@@ -16640,15 +17552,33 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getCrawlStrategy = functi
|
|
|
16640
17552
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16641
17553
|
*/
|
|
16642
17554
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setCrawlStrategy = function(value) {
|
|
16643
|
-
return jspb.Message.
|
|
17555
|
+
return jspb.Message.setField(this, 2, value);
|
|
16644
17556
|
};
|
|
16645
17557
|
|
|
16646
17558
|
|
|
16647
17559
|
/**
|
|
16648
|
-
*
|
|
16649
|
-
* @return {
|
|
17560
|
+
* Clears the field making it undefined.
|
|
17561
|
+
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16650
17562
|
*/
|
|
16651
|
-
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.
|
|
17563
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.clearCrawlStrategy = function() {
|
|
17564
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
17565
|
+
};
|
|
17566
|
+
|
|
17567
|
+
|
|
17568
|
+
/**
|
|
17569
|
+
* Returns whether this field is set.
|
|
17570
|
+
* @return {boolean}
|
|
17571
|
+
*/
|
|
17572
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.hasCrawlStrategy = function() {
|
|
17573
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17574
|
+
};
|
|
17575
|
+
|
|
17576
|
+
|
|
17577
|
+
/**
|
|
17578
|
+
* optional int32 max_depth = 3;
|
|
17579
|
+
* @return {number}
|
|
17580
|
+
*/
|
|
17581
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getMaxDepth = function() {
|
|
16652
17582
|
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
16653
17583
|
};
|
|
16654
17584
|
|
|
@@ -16658,7 +17588,25 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getMaxDepth = function()
|
|
|
16658
17588
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16659
17589
|
*/
|
|
16660
17590
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setMaxDepth = function(value) {
|
|
16661
|
-
return jspb.Message.
|
|
17591
|
+
return jspb.Message.setField(this, 3, value);
|
|
17592
|
+
};
|
|
17593
|
+
|
|
17594
|
+
|
|
17595
|
+
/**
|
|
17596
|
+
* Clears the field making it undefined.
|
|
17597
|
+
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
17598
|
+
*/
|
|
17599
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.clearMaxDepth = function() {
|
|
17600
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
17601
|
+
};
|
|
17602
|
+
|
|
17603
|
+
|
|
17604
|
+
/**
|
|
17605
|
+
* Returns whether this field is set.
|
|
17606
|
+
* @return {boolean}
|
|
17607
|
+
*/
|
|
17608
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.hasMaxDepth = function() {
|
|
17609
|
+
return jspb.Message.getField(this, 3) != null;
|
|
16662
17610
|
};
|
|
16663
17611
|
|
|
16664
17612
|
|
|
@@ -16676,7 +17624,25 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getMaxPages = function()
|
|
|
16676
17624
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16677
17625
|
*/
|
|
16678
17626
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setMaxPages = function(value) {
|
|
16679
|
-
return jspb.Message.
|
|
17627
|
+
return jspb.Message.setField(this, 4, value);
|
|
17628
|
+
};
|
|
17629
|
+
|
|
17630
|
+
|
|
17631
|
+
/**
|
|
17632
|
+
* Clears the field making it undefined.
|
|
17633
|
+
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
17634
|
+
*/
|
|
17635
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.clearMaxPages = function() {
|
|
17636
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
17637
|
+
};
|
|
17638
|
+
|
|
17639
|
+
|
|
17640
|
+
/**
|
|
17641
|
+
* Returns whether this field is set.
|
|
17642
|
+
* @return {boolean}
|
|
17643
|
+
*/
|
|
17644
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.hasMaxPages = function() {
|
|
17645
|
+
return jspb.Message.getField(this, 4) != null;
|
|
16680
17646
|
};
|
|
16681
17647
|
|
|
16682
17648
|
|
|
@@ -16957,9 +17923,9 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.toObject = function(opt_i
|
|
|
16957
17923
|
*/
|
|
16958
17924
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.toObject = function(includeInstance, msg) {
|
|
16959
17925
|
var f, obj = {
|
|
16960
|
-
type: jspb.Message.
|
|
16961
|
-
value: jspb.Message.
|
|
16962
|
-
key: jspb.Message.
|
|
17926
|
+
type: (f = jspb.Message.getField(msg, 1)) == null ? undefined : f,
|
|
17927
|
+
value: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
|
|
17928
|
+
key: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
16963
17929
|
};
|
|
16964
17930
|
|
|
16965
17931
|
if (includeInstance) {
|
|
@@ -17037,22 +18003,22 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.serializeBinary = functio
|
|
|
17037
18003
|
*/
|
|
17038
18004
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.serializeBinaryToWriter = function(message, writer) {
|
|
17039
18005
|
var f = undefined;
|
|
17040
|
-
f =
|
|
17041
|
-
if (f
|
|
18006
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerMetaDataExtractorType} */ (jspb.Message.getField(message, 1));
|
|
18007
|
+
if (f != null) {
|
|
17042
18008
|
writer.writeEnum(
|
|
17043
18009
|
1,
|
|
17044
18010
|
f
|
|
17045
18011
|
);
|
|
17046
18012
|
}
|
|
17047
|
-
f =
|
|
17048
|
-
if (f
|
|
18013
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
18014
|
+
if (f != null) {
|
|
17049
18015
|
writer.writeString(
|
|
17050
18016
|
2,
|
|
17051
18017
|
f
|
|
17052
18018
|
);
|
|
17053
18019
|
}
|
|
17054
|
-
f =
|
|
17055
|
-
if (f
|
|
18020
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
18021
|
+
if (f != null) {
|
|
17056
18022
|
writer.writeString(
|
|
17057
18023
|
3,
|
|
17058
18024
|
f
|
|
@@ -17075,7 +18041,25 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.getType = function() {
|
|
|
17075
18041
|
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
17076
18042
|
*/
|
|
17077
18043
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.setType = function(value) {
|
|
17078
|
-
return jspb.Message.
|
|
18044
|
+
return jspb.Message.setField(this, 1, value);
|
|
18045
|
+
};
|
|
18046
|
+
|
|
18047
|
+
|
|
18048
|
+
/**
|
|
18049
|
+
* Clears the field making it undefined.
|
|
18050
|
+
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
18051
|
+
*/
|
|
18052
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.clearType = function() {
|
|
18053
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
18054
|
+
};
|
|
18055
|
+
|
|
18056
|
+
|
|
18057
|
+
/**
|
|
18058
|
+
* Returns whether this field is set.
|
|
18059
|
+
* @return {boolean}
|
|
18060
|
+
*/
|
|
18061
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.hasType = function() {
|
|
18062
|
+
return jspb.Message.getField(this, 1) != null;
|
|
17079
18063
|
};
|
|
17080
18064
|
|
|
17081
18065
|
|
|
@@ -17093,7 +18077,25 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.getValue = function() {
|
|
|
17093
18077
|
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
17094
18078
|
*/
|
|
17095
18079
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.setValue = function(value) {
|
|
17096
|
-
return jspb.Message.
|
|
18080
|
+
return jspb.Message.setField(this, 2, value);
|
|
18081
|
+
};
|
|
18082
|
+
|
|
18083
|
+
|
|
18084
|
+
/**
|
|
18085
|
+
* Clears the field making it undefined.
|
|
18086
|
+
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
18087
|
+
*/
|
|
18088
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.clearValue = function() {
|
|
18089
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
18090
|
+
};
|
|
18091
|
+
|
|
18092
|
+
|
|
18093
|
+
/**
|
|
18094
|
+
* Returns whether this field is set.
|
|
18095
|
+
* @return {boolean}
|
|
18096
|
+
*/
|
|
18097
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.hasValue = function() {
|
|
18098
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17097
18099
|
};
|
|
17098
18100
|
|
|
17099
18101
|
|
|
@@ -17111,7 +18113,25 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.getKey = function() {
|
|
|
17111
18113
|
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
17112
18114
|
*/
|
|
17113
18115
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.setKey = function(value) {
|
|
17114
|
-
return jspb.Message.
|
|
18116
|
+
return jspb.Message.setField(this, 3, value);
|
|
18117
|
+
};
|
|
18118
|
+
|
|
18119
|
+
|
|
18120
|
+
/**
|
|
18121
|
+
* Clears the field making it undefined.
|
|
18122
|
+
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
18123
|
+
*/
|
|
18124
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.clearKey = function() {
|
|
18125
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
18126
|
+
};
|
|
18127
|
+
|
|
18128
|
+
|
|
18129
|
+
/**
|
|
18130
|
+
* Returns whether this field is set.
|
|
18131
|
+
* @return {boolean}
|
|
18132
|
+
*/
|
|
18133
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.hasKey = function() {
|
|
18134
|
+
return jspb.Message.getField(this, 3) != null;
|
|
17115
18135
|
};
|
|
17116
18136
|
|
|
17117
18137
|
|
|
@@ -17147,8 +18167,8 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.toObject = function(opt_include
|
|
|
17147
18167
|
*/
|
|
17148
18168
|
proto.ondewo.nlu.RagCrawlerRetryConfig.toObject = function(includeInstance, msg) {
|
|
17149
18169
|
var f, obj = {
|
|
17150
|
-
pageLoadTimeoutSeconds: jspb.Message.
|
|
17151
|
-
retryMaxAttempts: jspb.Message.
|
|
18170
|
+
pageLoadTimeoutSeconds: (f = jspb.Message.getField(msg, 1)) == null ? undefined : f,
|
|
18171
|
+
retryMaxAttempts: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f
|
|
17152
18172
|
};
|
|
17153
18173
|
|
|
17154
18174
|
if (includeInstance) {
|
|
@@ -17222,15 +18242,15 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.serializeBinary = function() {
|
|
|
17222
18242
|
*/
|
|
17223
18243
|
proto.ondewo.nlu.RagCrawlerRetryConfig.serializeBinaryToWriter = function(message, writer) {
|
|
17224
18244
|
var f = undefined;
|
|
17225
|
-
f =
|
|
17226
|
-
if (f
|
|
18245
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
18246
|
+
if (f != null) {
|
|
17227
18247
|
writer.writeInt32(
|
|
17228
18248
|
1,
|
|
17229
18249
|
f
|
|
17230
18250
|
);
|
|
17231
18251
|
}
|
|
17232
|
-
f =
|
|
17233
|
-
if (f
|
|
18252
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
|
18253
|
+
if (f != null) {
|
|
17234
18254
|
writer.writeInt32(
|
|
17235
18255
|
2,
|
|
17236
18256
|
f
|
|
@@ -17253,7 +18273,25 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.getPageLoadTimeoutSeconds = fun
|
|
|
17253
18273
|
* @return {!proto.ondewo.nlu.RagCrawlerRetryConfig} returns this
|
|
17254
18274
|
*/
|
|
17255
18275
|
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.setPageLoadTimeoutSeconds = function(value) {
|
|
17256
|
-
return jspb.Message.
|
|
18276
|
+
return jspb.Message.setField(this, 1, value);
|
|
18277
|
+
};
|
|
18278
|
+
|
|
18279
|
+
|
|
18280
|
+
/**
|
|
18281
|
+
* Clears the field making it undefined.
|
|
18282
|
+
* @return {!proto.ondewo.nlu.RagCrawlerRetryConfig} returns this
|
|
18283
|
+
*/
|
|
18284
|
+
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.clearPageLoadTimeoutSeconds = function() {
|
|
18285
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
18286
|
+
};
|
|
18287
|
+
|
|
18288
|
+
|
|
18289
|
+
/**
|
|
18290
|
+
* Returns whether this field is set.
|
|
18291
|
+
* @return {boolean}
|
|
18292
|
+
*/
|
|
18293
|
+
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.hasPageLoadTimeoutSeconds = function() {
|
|
18294
|
+
return jspb.Message.getField(this, 1) != null;
|
|
17257
18295
|
};
|
|
17258
18296
|
|
|
17259
18297
|
|
|
@@ -17271,7 +18309,25 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.getRetryMaxAttempts = function(
|
|
|
17271
18309
|
* @return {!proto.ondewo.nlu.RagCrawlerRetryConfig} returns this
|
|
17272
18310
|
*/
|
|
17273
18311
|
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.setRetryMaxAttempts = function(value) {
|
|
17274
|
-
return jspb.Message.
|
|
18312
|
+
return jspb.Message.setField(this, 2, value);
|
|
18313
|
+
};
|
|
18314
|
+
|
|
18315
|
+
|
|
18316
|
+
/**
|
|
18317
|
+
* Clears the field making it undefined.
|
|
18318
|
+
* @return {!proto.ondewo.nlu.RagCrawlerRetryConfig} returns this
|
|
18319
|
+
*/
|
|
18320
|
+
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.clearRetryMaxAttempts = function() {
|
|
18321
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
18322
|
+
};
|
|
18323
|
+
|
|
18324
|
+
|
|
18325
|
+
/**
|
|
18326
|
+
* Returns whether this field is set.
|
|
18327
|
+
* @return {boolean}
|
|
18328
|
+
*/
|
|
18329
|
+
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.hasRetryMaxAttempts = function() {
|
|
18330
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17275
18331
|
};
|
|
17276
18332
|
|
|
17277
18333
|
|
|
@@ -17308,7 +18364,7 @@ proto.ondewo.nlu.RagCrawlerContentResult.prototype.toObject = function(opt_inclu
|
|
|
17308
18364
|
proto.ondewo.nlu.RagCrawlerContentResult.toObject = function(includeInstance, msg) {
|
|
17309
18365
|
var f, obj = {
|
|
17310
18366
|
metadata: (f = msg.getMetadata()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
17311
|
-
markdown: jspb.Message.
|
|
18367
|
+
markdown: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f
|
|
17312
18368
|
};
|
|
17313
18369
|
|
|
17314
18370
|
if (includeInstance) {
|
|
@@ -17391,8 +18447,8 @@ proto.ondewo.nlu.RagCrawlerContentResult.serializeBinaryToWriter = function(mess
|
|
|
17391
18447
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
17392
18448
|
);
|
|
17393
18449
|
}
|
|
17394
|
-
f =
|
|
17395
|
-
if (f
|
|
18450
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
18451
|
+
if (f != null) {
|
|
17396
18452
|
writer.writeString(
|
|
17397
18453
|
2,
|
|
17398
18454
|
f
|
|
@@ -17452,7 +18508,25 @@ proto.ondewo.nlu.RagCrawlerContentResult.prototype.getMarkdown = function() {
|
|
|
17452
18508
|
* @return {!proto.ondewo.nlu.RagCrawlerContentResult} returns this
|
|
17453
18509
|
*/
|
|
17454
18510
|
proto.ondewo.nlu.RagCrawlerContentResult.prototype.setMarkdown = function(value) {
|
|
17455
|
-
return jspb.Message.
|
|
18511
|
+
return jspb.Message.setField(this, 2, value);
|
|
18512
|
+
};
|
|
18513
|
+
|
|
18514
|
+
|
|
18515
|
+
/**
|
|
18516
|
+
* Clears the field making it undefined.
|
|
18517
|
+
* @return {!proto.ondewo.nlu.RagCrawlerContentResult} returns this
|
|
18518
|
+
*/
|
|
18519
|
+
proto.ondewo.nlu.RagCrawlerContentResult.prototype.clearMarkdown = function() {
|
|
18520
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
18521
|
+
};
|
|
18522
|
+
|
|
18523
|
+
|
|
18524
|
+
/**
|
|
18525
|
+
* Returns whether this field is set.
|
|
18526
|
+
* @return {boolean}
|
|
18527
|
+
*/
|
|
18528
|
+
proto.ondewo.nlu.RagCrawlerContentResult.prototype.hasMarkdown = function() {
|
|
18529
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17456
18530
|
};
|
|
17457
18531
|
|
|
17458
18532
|
|
|
@@ -17489,8 +18563,8 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.toObject = function(opt_inclu
|
|
|
17489
18563
|
proto.ondewo.nlu.RagCrawlerExecutionInfo.toObject = function(includeInstance, msg) {
|
|
17490
18564
|
var f, obj = {
|
|
17491
18565
|
sslCertificate: (f = msg.getSslCertificate()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
17492
|
-
success: jspb.Message.
|
|
17493
|
-
errorMessage: jspb.Message.
|
|
18566
|
+
success: (f = jspb.Message.getBooleanField(msg, 2)) == null ? undefined : f,
|
|
18567
|
+
errorMessage: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
17494
18568
|
};
|
|
17495
18569
|
|
|
17496
18570
|
if (includeInstance) {
|
|
@@ -17577,15 +18651,15 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.serializeBinaryToWriter = function(mess
|
|
|
17577
18651
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
17578
18652
|
);
|
|
17579
18653
|
}
|
|
17580
|
-
f =
|
|
17581
|
-
if (f) {
|
|
18654
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 2));
|
|
18655
|
+
if (f != null) {
|
|
17582
18656
|
writer.writeBool(
|
|
17583
18657
|
2,
|
|
17584
18658
|
f
|
|
17585
18659
|
);
|
|
17586
18660
|
}
|
|
17587
|
-
f =
|
|
17588
|
-
if (f
|
|
18661
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
18662
|
+
if (f != null) {
|
|
17589
18663
|
writer.writeString(
|
|
17590
18664
|
3,
|
|
17591
18665
|
f
|
|
@@ -17645,7 +18719,25 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.getSuccess = function() {
|
|
|
17645
18719
|
* @return {!proto.ondewo.nlu.RagCrawlerExecutionInfo} returns this
|
|
17646
18720
|
*/
|
|
17647
18721
|
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.setSuccess = function(value) {
|
|
17648
|
-
return jspb.Message.
|
|
18722
|
+
return jspb.Message.setField(this, 2, value);
|
|
18723
|
+
};
|
|
18724
|
+
|
|
18725
|
+
|
|
18726
|
+
/**
|
|
18727
|
+
* Clears the field making it undefined.
|
|
18728
|
+
* @return {!proto.ondewo.nlu.RagCrawlerExecutionInfo} returns this
|
|
18729
|
+
*/
|
|
18730
|
+
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.clearSuccess = function() {
|
|
18731
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
18732
|
+
};
|
|
18733
|
+
|
|
18734
|
+
|
|
18735
|
+
/**
|
|
18736
|
+
* Returns whether this field is set.
|
|
18737
|
+
* @return {boolean}
|
|
18738
|
+
*/
|
|
18739
|
+
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.hasSuccess = function() {
|
|
18740
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17649
18741
|
};
|
|
17650
18742
|
|
|
17651
18743
|
|
|
@@ -17663,7 +18755,25 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.getErrorMessage = function()
|
|
|
17663
18755
|
* @return {!proto.ondewo.nlu.RagCrawlerExecutionInfo} returns this
|
|
17664
18756
|
*/
|
|
17665
18757
|
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.setErrorMessage = function(value) {
|
|
17666
|
-
return jspb.Message.
|
|
18758
|
+
return jspb.Message.setField(this, 3, value);
|
|
18759
|
+
};
|
|
18760
|
+
|
|
18761
|
+
|
|
18762
|
+
/**
|
|
18763
|
+
* Clears the field making it undefined.
|
|
18764
|
+
* @return {!proto.ondewo.nlu.RagCrawlerExecutionInfo} returns this
|
|
18765
|
+
*/
|
|
18766
|
+
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.clearErrorMessage = function() {
|
|
18767
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
18768
|
+
};
|
|
18769
|
+
|
|
18770
|
+
|
|
18771
|
+
/**
|
|
18772
|
+
* Returns whether this field is set.
|
|
18773
|
+
* @return {boolean}
|
|
18774
|
+
*/
|
|
18775
|
+
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.hasErrorMessage = function() {
|
|
18776
|
+
return jspb.Message.getField(this, 3) != null;
|
|
17667
18777
|
};
|
|
17668
18778
|
|
|
17669
18779
|
|
|
@@ -18505,10 +19615,10 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.toObject = function(includeInstance,
|
|
|
18505
19615
|
var f, obj = {
|
|
18506
19616
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
18507
19617
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
18508
|
-
crawlerName: jspb.Message.
|
|
18509
|
-
pageToken: jspb.Message.
|
|
18510
|
-
status: jspb.Message.
|
|
18511
|
-
orderby: jspb.Message.
|
|
19618
|
+
crawlerName: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f,
|
|
19619
|
+
pageToken: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
19620
|
+
status: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
19621
|
+
orderby: (f = jspb.Message.getField(msg, 6)) == null ? undefined : f,
|
|
18512
19622
|
sortingMode: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f
|
|
18513
19623
|
};
|
|
18514
19624
|
|
|
@@ -18617,29 +19727,29 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.serializeBinaryToWriter = function(me
|
|
|
18617
19727
|
f
|
|
18618
19728
|
);
|
|
18619
19729
|
}
|
|
18620
|
-
f =
|
|
18621
|
-
if (f
|
|
19730
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
19731
|
+
if (f != null) {
|
|
18622
19732
|
writer.writeString(
|
|
18623
19733
|
3,
|
|
18624
19734
|
f
|
|
18625
19735
|
);
|
|
18626
19736
|
}
|
|
18627
|
-
f =
|
|
18628
|
-
if (f
|
|
19737
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
19738
|
+
if (f != null) {
|
|
18629
19739
|
writer.writeString(
|
|
18630
19740
|
4,
|
|
18631
19741
|
f
|
|
18632
19742
|
);
|
|
18633
19743
|
}
|
|
18634
|
-
f =
|
|
18635
|
-
if (f
|
|
19744
|
+
f = /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (jspb.Message.getField(message, 5));
|
|
19745
|
+
if (f != null) {
|
|
18636
19746
|
writer.writeEnum(
|
|
18637
19747
|
5,
|
|
18638
19748
|
f
|
|
18639
19749
|
);
|
|
18640
19750
|
}
|
|
18641
|
-
f =
|
|
18642
|
-
if (f
|
|
19751
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
19752
|
+
if (f != null) {
|
|
18643
19753
|
writer.writeString(
|
|
18644
19754
|
6,
|
|
18645
19755
|
f
|
|
@@ -18705,7 +19815,25 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getCrawlerName = function()
|
|
|
18705
19815
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18706
19816
|
*/
|
|
18707
19817
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setCrawlerName = function(value) {
|
|
18708
|
-
return jspb.Message.
|
|
19818
|
+
return jspb.Message.setField(this, 3, value);
|
|
19819
|
+
};
|
|
19820
|
+
|
|
19821
|
+
|
|
19822
|
+
/**
|
|
19823
|
+
* Clears the field making it undefined.
|
|
19824
|
+
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
19825
|
+
*/
|
|
19826
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.clearCrawlerName = function() {
|
|
19827
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
19828
|
+
};
|
|
19829
|
+
|
|
19830
|
+
|
|
19831
|
+
/**
|
|
19832
|
+
* Returns whether this field is set.
|
|
19833
|
+
* @return {boolean}
|
|
19834
|
+
*/
|
|
19835
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.hasCrawlerName = function() {
|
|
19836
|
+
return jspb.Message.getField(this, 3) != null;
|
|
18709
19837
|
};
|
|
18710
19838
|
|
|
18711
19839
|
|
|
@@ -18723,14 +19851,32 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getPageToken = function() {
|
|
|
18723
19851
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18724
19852
|
*/
|
|
18725
19853
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setPageToken = function(value) {
|
|
18726
|
-
return jspb.Message.
|
|
19854
|
+
return jspb.Message.setField(this, 4, value);
|
|
18727
19855
|
};
|
|
18728
19856
|
|
|
18729
19857
|
|
|
18730
19858
|
/**
|
|
18731
|
-
*
|
|
18732
|
-
* @return {!proto.ondewo.nlu.
|
|
18733
|
-
*/
|
|
19859
|
+
* Clears the field making it undefined.
|
|
19860
|
+
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
19861
|
+
*/
|
|
19862
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.clearPageToken = function() {
|
|
19863
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
19864
|
+
};
|
|
19865
|
+
|
|
19866
|
+
|
|
19867
|
+
/**
|
|
19868
|
+
* Returns whether this field is set.
|
|
19869
|
+
* @return {boolean}
|
|
19870
|
+
*/
|
|
19871
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.hasPageToken = function() {
|
|
19872
|
+
return jspb.Message.getField(this, 4) != null;
|
|
19873
|
+
};
|
|
19874
|
+
|
|
19875
|
+
|
|
19876
|
+
/**
|
|
19877
|
+
* optional OperationMetadata.Status status = 5;
|
|
19878
|
+
* @return {!proto.ondewo.nlu.OperationMetadata.Status}
|
|
19879
|
+
*/
|
|
18734
19880
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getStatus = function() {
|
|
18735
19881
|
return /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
18736
19882
|
};
|
|
@@ -18741,7 +19887,25 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getStatus = function() {
|
|
|
18741
19887
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18742
19888
|
*/
|
|
18743
19889
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setStatus = function(value) {
|
|
18744
|
-
return jspb.Message.
|
|
19890
|
+
return jspb.Message.setField(this, 5, value);
|
|
19891
|
+
};
|
|
19892
|
+
|
|
19893
|
+
|
|
19894
|
+
/**
|
|
19895
|
+
* Clears the field making it undefined.
|
|
19896
|
+
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
19897
|
+
*/
|
|
19898
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.clearStatus = function() {
|
|
19899
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
19900
|
+
};
|
|
19901
|
+
|
|
19902
|
+
|
|
19903
|
+
/**
|
|
19904
|
+
* Returns whether this field is set.
|
|
19905
|
+
* @return {boolean}
|
|
19906
|
+
*/
|
|
19907
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.hasStatus = function() {
|
|
19908
|
+
return jspb.Message.getField(this, 5) != null;
|
|
18745
19909
|
};
|
|
18746
19910
|
|
|
18747
19911
|
|
|
@@ -18759,7 +19923,25 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getOrderby = function() {
|
|
|
18759
19923
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18760
19924
|
*/
|
|
18761
19925
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setOrderby = function(value) {
|
|
18762
|
-
return jspb.Message.
|
|
19926
|
+
return jspb.Message.setField(this, 6, value);
|
|
19927
|
+
};
|
|
19928
|
+
|
|
19929
|
+
|
|
19930
|
+
/**
|
|
19931
|
+
* Clears the field making it undefined.
|
|
19932
|
+
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
19933
|
+
*/
|
|
19934
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.clearOrderby = function() {
|
|
19935
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
19936
|
+
};
|
|
19937
|
+
|
|
19938
|
+
|
|
19939
|
+
/**
|
|
19940
|
+
* Returns whether this field is set.
|
|
19941
|
+
* @return {boolean}
|
|
19942
|
+
*/
|
|
19943
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.hasOrderby = function() {
|
|
19944
|
+
return jspb.Message.getField(this, 6) != null;
|
|
18763
19945
|
};
|
|
18764
19946
|
|
|
18765
19947
|
|
|
@@ -19825,8 +21007,11 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.toObject = function(includeInstance
|
|
|
19825
21007
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
19826
21008
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
19827
21009
|
operationName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
19828
|
-
pageToken: jspb.Message.
|
|
19829
|
-
urlQuery: jspb.Message.
|
|
21010
|
+
pageToken: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
21011
|
+
urlQuery: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
21012
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
|
|
21013
|
+
orderby: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
21014
|
+
sortingMode: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f
|
|
19830
21015
|
};
|
|
19831
21016
|
|
|
19832
21017
|
if (includeInstance) {
|
|
@@ -19883,6 +21068,19 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.deserializeBinaryFromReader = funct
|
|
|
19883
21068
|
var value = /** @type {string} */ (reader.readString());
|
|
19884
21069
|
msg.setUrlQuery(value);
|
|
19885
21070
|
break;
|
|
21071
|
+
case 6:
|
|
21072
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
21073
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
21074
|
+
msg.setFieldMask(value);
|
|
21075
|
+
break;
|
|
21076
|
+
case 7:
|
|
21077
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21078
|
+
msg.setOrderby(value);
|
|
21079
|
+
break;
|
|
21080
|
+
case 8:
|
|
21081
|
+
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
21082
|
+
msg.setSortingMode(value);
|
|
21083
|
+
break;
|
|
19886
21084
|
default:
|
|
19887
21085
|
reader.skipField();
|
|
19888
21086
|
break;
|
|
@@ -19933,20 +21131,42 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.serializeBinaryToWriter = function(
|
|
|
19933
21131
|
f
|
|
19934
21132
|
);
|
|
19935
21133
|
}
|
|
19936
|
-
f =
|
|
19937
|
-
if (f
|
|
21134
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
21135
|
+
if (f != null) {
|
|
19938
21136
|
writer.writeString(
|
|
19939
21137
|
4,
|
|
19940
21138
|
f
|
|
19941
21139
|
);
|
|
19942
21140
|
}
|
|
19943
|
-
f =
|
|
19944
|
-
if (f
|
|
21141
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
21142
|
+
if (f != null) {
|
|
19945
21143
|
writer.writeString(
|
|
19946
21144
|
5,
|
|
19947
21145
|
f
|
|
19948
21146
|
);
|
|
19949
21147
|
}
|
|
21148
|
+
f = message.getFieldMask();
|
|
21149
|
+
if (f != null) {
|
|
21150
|
+
writer.writeMessage(
|
|
21151
|
+
6,
|
|
21152
|
+
f,
|
|
21153
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
21154
|
+
);
|
|
21155
|
+
}
|
|
21156
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
21157
|
+
if (f != null) {
|
|
21158
|
+
writer.writeString(
|
|
21159
|
+
7,
|
|
21160
|
+
f
|
|
21161
|
+
);
|
|
21162
|
+
}
|
|
21163
|
+
f = /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getField(message, 8));
|
|
21164
|
+
if (f != null) {
|
|
21165
|
+
writer.writeEnum(
|
|
21166
|
+
8,
|
|
21167
|
+
f
|
|
21168
|
+
);
|
|
21169
|
+
}
|
|
19950
21170
|
};
|
|
19951
21171
|
|
|
19952
21172
|
|
|
@@ -20018,7 +21238,25 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getPageToken = function()
|
|
|
20018
21238
|
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
20019
21239
|
*/
|
|
20020
21240
|
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setPageToken = function(value) {
|
|
20021
|
-
return jspb.Message.
|
|
21241
|
+
return jspb.Message.setField(this, 4, value);
|
|
21242
|
+
};
|
|
21243
|
+
|
|
21244
|
+
|
|
21245
|
+
/**
|
|
21246
|
+
* Clears the field making it undefined.
|
|
21247
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21248
|
+
*/
|
|
21249
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearPageToken = function() {
|
|
21250
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
21251
|
+
};
|
|
21252
|
+
|
|
21253
|
+
|
|
21254
|
+
/**
|
|
21255
|
+
* Returns whether this field is set.
|
|
21256
|
+
* @return {boolean}
|
|
21257
|
+
*/
|
|
21258
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasPageToken = function() {
|
|
21259
|
+
return jspb.Message.getField(this, 4) != null;
|
|
20022
21260
|
};
|
|
20023
21261
|
|
|
20024
21262
|
|
|
@@ -20036,7 +21274,134 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getUrlQuery = function()
|
|
|
20036
21274
|
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
20037
21275
|
*/
|
|
20038
21276
|
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setUrlQuery = function(value) {
|
|
20039
|
-
return jspb.Message.
|
|
21277
|
+
return jspb.Message.setField(this, 5, value);
|
|
21278
|
+
};
|
|
21279
|
+
|
|
21280
|
+
|
|
21281
|
+
/**
|
|
21282
|
+
* Clears the field making it undefined.
|
|
21283
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21284
|
+
*/
|
|
21285
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearUrlQuery = function() {
|
|
21286
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
21287
|
+
};
|
|
21288
|
+
|
|
21289
|
+
|
|
21290
|
+
/**
|
|
21291
|
+
* Returns whether this field is set.
|
|
21292
|
+
* @return {boolean}
|
|
21293
|
+
*/
|
|
21294
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasUrlQuery = function() {
|
|
21295
|
+
return jspb.Message.getField(this, 5) != null;
|
|
21296
|
+
};
|
|
21297
|
+
|
|
21298
|
+
|
|
21299
|
+
/**
|
|
21300
|
+
* optional google.protobuf.FieldMask field_mask = 6;
|
|
21301
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
21302
|
+
*/
|
|
21303
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getFieldMask = function() {
|
|
21304
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
21305
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 6));
|
|
21306
|
+
};
|
|
21307
|
+
|
|
21308
|
+
|
|
21309
|
+
/**
|
|
21310
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
21311
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21312
|
+
*/
|
|
21313
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setFieldMask = function(value) {
|
|
21314
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
21315
|
+
};
|
|
21316
|
+
|
|
21317
|
+
|
|
21318
|
+
/**
|
|
21319
|
+
* Clears the message field making it undefined.
|
|
21320
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21321
|
+
*/
|
|
21322
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearFieldMask = function() {
|
|
21323
|
+
return this.setFieldMask(undefined);
|
|
21324
|
+
};
|
|
21325
|
+
|
|
21326
|
+
|
|
21327
|
+
/**
|
|
21328
|
+
* Returns whether this field is set.
|
|
21329
|
+
* @return {boolean}
|
|
21330
|
+
*/
|
|
21331
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasFieldMask = function() {
|
|
21332
|
+
return jspb.Message.getField(this, 6) != null;
|
|
21333
|
+
};
|
|
21334
|
+
|
|
21335
|
+
|
|
21336
|
+
/**
|
|
21337
|
+
* optional string orderby = 7;
|
|
21338
|
+
* @return {string}
|
|
21339
|
+
*/
|
|
21340
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getOrderby = function() {
|
|
21341
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
21342
|
+
};
|
|
21343
|
+
|
|
21344
|
+
|
|
21345
|
+
/**
|
|
21346
|
+
* @param {string} value
|
|
21347
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21348
|
+
*/
|
|
21349
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setOrderby = function(value) {
|
|
21350
|
+
return jspb.Message.setField(this, 7, value);
|
|
21351
|
+
};
|
|
21352
|
+
|
|
21353
|
+
|
|
21354
|
+
/**
|
|
21355
|
+
* Clears the field making it undefined.
|
|
21356
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21357
|
+
*/
|
|
21358
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearOrderby = function() {
|
|
21359
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
21360
|
+
};
|
|
21361
|
+
|
|
21362
|
+
|
|
21363
|
+
/**
|
|
21364
|
+
* Returns whether this field is set.
|
|
21365
|
+
* @return {boolean}
|
|
21366
|
+
*/
|
|
21367
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasOrderby = function() {
|
|
21368
|
+
return jspb.Message.getField(this, 7) != null;
|
|
21369
|
+
};
|
|
21370
|
+
|
|
21371
|
+
|
|
21372
|
+
/**
|
|
21373
|
+
* optional SortingMode sorting_mode = 8;
|
|
21374
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
21375
|
+
*/
|
|
21376
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getSortingMode = function() {
|
|
21377
|
+
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
|
|
21378
|
+
};
|
|
21379
|
+
|
|
21380
|
+
|
|
21381
|
+
/**
|
|
21382
|
+
* @param {!proto.ondewo.nlu.SortingMode} value
|
|
21383
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21384
|
+
*/
|
|
21385
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setSortingMode = function(value) {
|
|
21386
|
+
return jspb.Message.setField(this, 8, value);
|
|
21387
|
+
};
|
|
21388
|
+
|
|
21389
|
+
|
|
21390
|
+
/**
|
|
21391
|
+
* Clears the field making it undefined.
|
|
21392
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21393
|
+
*/
|
|
21394
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearSortingMode = function() {
|
|
21395
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
21396
|
+
};
|
|
21397
|
+
|
|
21398
|
+
|
|
21399
|
+
/**
|
|
21400
|
+
* Returns whether this field is set.
|
|
21401
|
+
* @return {boolean}
|
|
21402
|
+
*/
|
|
21403
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasSortingMode = function() {
|
|
21404
|
+
return jspb.Message.getField(this, 8) != null;
|
|
20040
21405
|
};
|
|
20041
21406
|
|
|
20042
21407
|
|
|
@@ -20295,7 +21660,8 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.toObject = function(includeInstance,
|
|
|
20295
21660
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
20296
21661
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
20297
21662
|
operationName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
20298
|
-
url: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
21663
|
+
url: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
21664
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
20299
21665
|
};
|
|
20300
21666
|
|
|
20301
21667
|
if (includeInstance) {
|
|
@@ -20348,6 +21714,11 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.deserializeBinaryFromReader = functi
|
|
|
20348
21714
|
var value = /** @type {string} */ (reader.readString());
|
|
20349
21715
|
msg.setUrl(value);
|
|
20350
21716
|
break;
|
|
21717
|
+
case 5:
|
|
21718
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
21719
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
21720
|
+
msg.setFieldMask(value);
|
|
21721
|
+
break;
|
|
20351
21722
|
default:
|
|
20352
21723
|
reader.skipField();
|
|
20353
21724
|
break;
|
|
@@ -20405,6 +21776,14 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.serializeBinaryToWriter = function(m
|
|
|
20405
21776
|
f
|
|
20406
21777
|
);
|
|
20407
21778
|
}
|
|
21779
|
+
f = message.getFieldMask();
|
|
21780
|
+
if (f != null) {
|
|
21781
|
+
writer.writeMessage(
|
|
21782
|
+
5,
|
|
21783
|
+
f,
|
|
21784
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
21785
|
+
);
|
|
21786
|
+
}
|
|
20408
21787
|
};
|
|
20409
21788
|
|
|
20410
21789
|
|
|
@@ -20480,23 +21859,60 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.setUrl = function(value) {
|
|
|
20480
21859
|
};
|
|
20481
21860
|
|
|
20482
21861
|
|
|
20483
|
-
|
|
20484
21862
|
/**
|
|
20485
|
-
*
|
|
20486
|
-
* @
|
|
20487
|
-
* @const
|
|
21863
|
+
* optional google.protobuf.FieldMask field_mask = 5;
|
|
21864
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
20488
21865
|
*/
|
|
20489
|
-
proto.ondewo.nlu.
|
|
20490
|
-
|
|
21866
|
+
proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.getFieldMask = function() {
|
|
21867
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
21868
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 5));
|
|
21869
|
+
};
|
|
20491
21870
|
|
|
20492
21871
|
|
|
20493
|
-
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
20494
21872
|
/**
|
|
20495
|
-
*
|
|
20496
|
-
*
|
|
20497
|
-
|
|
20498
|
-
|
|
20499
|
-
|
|
21873
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
21874
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultRequest} returns this
|
|
21875
|
+
*/
|
|
21876
|
+
proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.setFieldMask = function(value) {
|
|
21877
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
|
21878
|
+
};
|
|
21879
|
+
|
|
21880
|
+
|
|
21881
|
+
/**
|
|
21882
|
+
* Clears the message field making it undefined.
|
|
21883
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultRequest} returns this
|
|
21884
|
+
*/
|
|
21885
|
+
proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.clearFieldMask = function() {
|
|
21886
|
+
return this.setFieldMask(undefined);
|
|
21887
|
+
};
|
|
21888
|
+
|
|
21889
|
+
|
|
21890
|
+
/**
|
|
21891
|
+
* Returns whether this field is set.
|
|
21892
|
+
* @return {boolean}
|
|
21893
|
+
*/
|
|
21894
|
+
proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.hasFieldMask = function() {
|
|
21895
|
+
return jspb.Message.getField(this, 5) != null;
|
|
21896
|
+
};
|
|
21897
|
+
|
|
21898
|
+
|
|
21899
|
+
|
|
21900
|
+
/**
|
|
21901
|
+
* List of repeated fields within this message type.
|
|
21902
|
+
* @private {!Array<number>}
|
|
21903
|
+
* @const
|
|
21904
|
+
*/
|
|
21905
|
+
proto.ondewo.nlu.RagAddCrawlerResultsToDatasetsRequest.repeatedFields_ = [3,4,5];
|
|
21906
|
+
|
|
21907
|
+
|
|
21908
|
+
|
|
21909
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
21910
|
+
/**
|
|
21911
|
+
* Creates an object representation of this proto.
|
|
21912
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
21913
|
+
* Optional fields that are not set will be set to undefined.
|
|
21914
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
21915
|
+
* For the list of reserved names please see:
|
|
20500
21916
|
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
20501
21917
|
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
20502
21918
|
* JSPB instance for transitional soy proto support:
|
|
@@ -21124,9 +22540,11 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.toObject = function(includ
|
|
|
21124
22540
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
21125
22541
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
21126
22542
|
crawlerName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
21127
|
-
pageSize: jspb.Message.
|
|
21128
|
-
pageToken: jspb.Message.
|
|
21129
|
-
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
22543
|
+
pageSize: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
22544
|
+
pageToken: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
22545
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
|
|
22546
|
+
orderby: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
22547
|
+
sortingMode: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f
|
|
21130
22548
|
};
|
|
21131
22549
|
|
|
21132
22550
|
if (includeInstance) {
|
|
@@ -21188,6 +22606,14 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.deserializeBinaryFromReade
|
|
|
21188
22606
|
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
21189
22607
|
msg.setFieldMask(value);
|
|
21190
22608
|
break;
|
|
22609
|
+
case 7:
|
|
22610
|
+
var value = /** @type {string} */ (reader.readString());
|
|
22611
|
+
msg.setOrderby(value);
|
|
22612
|
+
break;
|
|
22613
|
+
case 8:
|
|
22614
|
+
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
22615
|
+
msg.setSortingMode(value);
|
|
22616
|
+
break;
|
|
21191
22617
|
default:
|
|
21192
22618
|
reader.skipField();
|
|
21193
22619
|
break;
|
|
@@ -21238,15 +22664,15 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.serializeBinaryToWriter =
|
|
|
21238
22664
|
f
|
|
21239
22665
|
);
|
|
21240
22666
|
}
|
|
21241
|
-
f =
|
|
21242
|
-
if (f
|
|
22667
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 4));
|
|
22668
|
+
if (f != null) {
|
|
21243
22669
|
writer.writeInt32(
|
|
21244
22670
|
4,
|
|
21245
22671
|
f
|
|
21246
22672
|
);
|
|
21247
22673
|
}
|
|
21248
|
-
f =
|
|
21249
|
-
if (f
|
|
22674
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
22675
|
+
if (f != null) {
|
|
21250
22676
|
writer.writeString(
|
|
21251
22677
|
5,
|
|
21252
22678
|
f
|
|
@@ -21260,6 +22686,20 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.serializeBinaryToWriter =
|
|
|
21260
22686
|
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
21261
22687
|
);
|
|
21262
22688
|
}
|
|
22689
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
22690
|
+
if (f != null) {
|
|
22691
|
+
writer.writeString(
|
|
22692
|
+
7,
|
|
22693
|
+
f
|
|
22694
|
+
);
|
|
22695
|
+
}
|
|
22696
|
+
f = /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getField(message, 8));
|
|
22697
|
+
if (f != null) {
|
|
22698
|
+
writer.writeEnum(
|
|
22699
|
+
8,
|
|
22700
|
+
f
|
|
22701
|
+
);
|
|
22702
|
+
}
|
|
21263
22703
|
};
|
|
21264
22704
|
|
|
21265
22705
|
|
|
@@ -21331,7 +22771,25 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.getPageSize = fu
|
|
|
21331
22771
|
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
21332
22772
|
*/
|
|
21333
22773
|
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.setPageSize = function(value) {
|
|
21334
|
-
return jspb.Message.
|
|
22774
|
+
return jspb.Message.setField(this, 4, value);
|
|
22775
|
+
};
|
|
22776
|
+
|
|
22777
|
+
|
|
22778
|
+
/**
|
|
22779
|
+
* Clears the field making it undefined.
|
|
22780
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
22781
|
+
*/
|
|
22782
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.clearPageSize = function() {
|
|
22783
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
22784
|
+
};
|
|
22785
|
+
|
|
22786
|
+
|
|
22787
|
+
/**
|
|
22788
|
+
* Returns whether this field is set.
|
|
22789
|
+
* @return {boolean}
|
|
22790
|
+
*/
|
|
22791
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasPageSize = function() {
|
|
22792
|
+
return jspb.Message.getField(this, 4) != null;
|
|
21335
22793
|
};
|
|
21336
22794
|
|
|
21337
22795
|
|
|
@@ -21349,7 +22807,25 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.getPageToken = f
|
|
|
21349
22807
|
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
21350
22808
|
*/
|
|
21351
22809
|
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.setPageToken = function(value) {
|
|
21352
|
-
return jspb.Message.
|
|
22810
|
+
return jspb.Message.setField(this, 5, value);
|
|
22811
|
+
};
|
|
22812
|
+
|
|
22813
|
+
|
|
22814
|
+
/**
|
|
22815
|
+
* Clears the field making it undefined.
|
|
22816
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
22817
|
+
*/
|
|
22818
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.clearPageToken = function() {
|
|
22819
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
22820
|
+
};
|
|
22821
|
+
|
|
22822
|
+
|
|
22823
|
+
/**
|
|
22824
|
+
* Returns whether this field is set.
|
|
22825
|
+
* @return {boolean}
|
|
22826
|
+
*/
|
|
22827
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasPageToken = function() {
|
|
22828
|
+
return jspb.Message.getField(this, 5) != null;
|
|
21353
22829
|
};
|
|
21354
22830
|
|
|
21355
22831
|
|
|
@@ -21390,6 +22866,78 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasFieldMask = f
|
|
|
21390
22866
|
};
|
|
21391
22867
|
|
|
21392
22868
|
|
|
22869
|
+
/**
|
|
22870
|
+
* optional string orderby = 7;
|
|
22871
|
+
* @return {string}
|
|
22872
|
+
*/
|
|
22873
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.getOrderby = function() {
|
|
22874
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
22875
|
+
};
|
|
22876
|
+
|
|
22877
|
+
|
|
22878
|
+
/**
|
|
22879
|
+
* @param {string} value
|
|
22880
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
22881
|
+
*/
|
|
22882
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.setOrderby = function(value) {
|
|
22883
|
+
return jspb.Message.setField(this, 7, value);
|
|
22884
|
+
};
|
|
22885
|
+
|
|
22886
|
+
|
|
22887
|
+
/**
|
|
22888
|
+
* Clears the field making it undefined.
|
|
22889
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
22890
|
+
*/
|
|
22891
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.clearOrderby = function() {
|
|
22892
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
22893
|
+
};
|
|
22894
|
+
|
|
22895
|
+
|
|
22896
|
+
/**
|
|
22897
|
+
* Returns whether this field is set.
|
|
22898
|
+
* @return {boolean}
|
|
22899
|
+
*/
|
|
22900
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasOrderby = function() {
|
|
22901
|
+
return jspb.Message.getField(this, 7) != null;
|
|
22902
|
+
};
|
|
22903
|
+
|
|
22904
|
+
|
|
22905
|
+
/**
|
|
22906
|
+
* optional SortingMode sorting_mode = 8;
|
|
22907
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
22908
|
+
*/
|
|
22909
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.getSortingMode = function() {
|
|
22910
|
+
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
|
|
22911
|
+
};
|
|
22912
|
+
|
|
22913
|
+
|
|
22914
|
+
/**
|
|
22915
|
+
* @param {!proto.ondewo.nlu.SortingMode} value
|
|
22916
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
22917
|
+
*/
|
|
22918
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.setSortingMode = function(value) {
|
|
22919
|
+
return jspb.Message.setField(this, 8, value);
|
|
22920
|
+
};
|
|
22921
|
+
|
|
22922
|
+
|
|
22923
|
+
/**
|
|
22924
|
+
* Clears the field making it undefined.
|
|
22925
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
22926
|
+
*/
|
|
22927
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.clearSortingMode = function() {
|
|
22928
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
22929
|
+
};
|
|
22930
|
+
|
|
22931
|
+
|
|
22932
|
+
/**
|
|
22933
|
+
* Returns whether this field is set.
|
|
22934
|
+
* @return {boolean}
|
|
22935
|
+
*/
|
|
22936
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasSortingMode = function() {
|
|
22937
|
+
return jspb.Message.getField(this, 8) != null;
|
|
22938
|
+
};
|
|
22939
|
+
|
|
22940
|
+
|
|
21393
22941
|
|
|
21394
22942
|
/**
|
|
21395
22943
|
* List of repeated fields within this message type.
|
|
@@ -21622,14 +23170,17 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.toObject = function(includeInstance
|
|
|
21622
23170
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
21623
23171
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
21624
23172
|
operationName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
21625
|
-
pageToken: jspb.Message.
|
|
21626
|
-
pageSize: jspb.Message.
|
|
23173
|
+
pageToken: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
23174
|
+
pageSize: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
21627
23175
|
levelFiltersList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
21628
|
-
phaseFilter: jspb.Message.
|
|
21629
|
-
searchQuery: jspb.Message.
|
|
23176
|
+
phaseFilter: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
23177
|
+
searchQuery: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f,
|
|
21630
23178
|
startTime: (f = msg.getStartTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
21631
23179
|
endTime: (f = msg.getEndTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
21632
|
-
sourceUrlFilter: jspb.Message.
|
|
23180
|
+
sourceUrlFilter: (f = jspb.Message.getField(msg, 11)) == null ? undefined : f,
|
|
23181
|
+
orderby: (f = jspb.Message.getField(msg, 12)) == null ? undefined : f,
|
|
23182
|
+
sortingMode: (f = jspb.Message.getField(msg, 13)) == null ? undefined : f,
|
|
23183
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
21633
23184
|
};
|
|
21634
23185
|
|
|
21635
23186
|
if (includeInstance) {
|
|
@@ -21714,6 +23265,19 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.deserializeBinaryFromReader = funct
|
|
|
21714
23265
|
var value = /** @type {string} */ (reader.readString());
|
|
21715
23266
|
msg.setSourceUrlFilter(value);
|
|
21716
23267
|
break;
|
|
23268
|
+
case 12:
|
|
23269
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23270
|
+
msg.setOrderby(value);
|
|
23271
|
+
break;
|
|
23272
|
+
case 13:
|
|
23273
|
+
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
23274
|
+
msg.setSortingMode(value);
|
|
23275
|
+
break;
|
|
23276
|
+
case 14:
|
|
23277
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
23278
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
23279
|
+
msg.setFieldMask(value);
|
|
23280
|
+
break;
|
|
21717
23281
|
default:
|
|
21718
23282
|
reader.skipField();
|
|
21719
23283
|
break;
|
|
@@ -21764,15 +23328,15 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.serializeBinaryToWriter = function(
|
|
|
21764
23328
|
f
|
|
21765
23329
|
);
|
|
21766
23330
|
}
|
|
21767
|
-
f =
|
|
21768
|
-
if (f
|
|
23331
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
23332
|
+
if (f != null) {
|
|
21769
23333
|
writer.writeString(
|
|
21770
23334
|
4,
|
|
21771
23335
|
f
|
|
21772
23336
|
);
|
|
21773
23337
|
}
|
|
21774
|
-
f =
|
|
21775
|
-
if (f
|
|
23338
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 5));
|
|
23339
|
+
if (f != null) {
|
|
21776
23340
|
writer.writeInt32(
|
|
21777
23341
|
5,
|
|
21778
23342
|
f
|
|
@@ -21785,15 +23349,15 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.serializeBinaryToWriter = function(
|
|
|
21785
23349
|
f
|
|
21786
23350
|
);
|
|
21787
23351
|
}
|
|
21788
|
-
f =
|
|
21789
|
-
if (f
|
|
23352
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
23353
|
+
if (f != null) {
|
|
21790
23354
|
writer.writeString(
|
|
21791
23355
|
7,
|
|
21792
23356
|
f
|
|
21793
23357
|
);
|
|
21794
23358
|
}
|
|
21795
|
-
f =
|
|
21796
|
-
if (f
|
|
23359
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
23360
|
+
if (f != null) {
|
|
21797
23361
|
writer.writeString(
|
|
21798
23362
|
8,
|
|
21799
23363
|
f
|
|
@@ -21815,13 +23379,35 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.serializeBinaryToWriter = function(
|
|
|
21815
23379
|
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
21816
23380
|
);
|
|
21817
23381
|
}
|
|
21818
|
-
f =
|
|
21819
|
-
if (f
|
|
23382
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 11));
|
|
23383
|
+
if (f != null) {
|
|
21820
23384
|
writer.writeString(
|
|
21821
23385
|
11,
|
|
21822
23386
|
f
|
|
21823
23387
|
);
|
|
21824
23388
|
}
|
|
23389
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 12));
|
|
23390
|
+
if (f != null) {
|
|
23391
|
+
writer.writeString(
|
|
23392
|
+
12,
|
|
23393
|
+
f
|
|
23394
|
+
);
|
|
23395
|
+
}
|
|
23396
|
+
f = /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getField(message, 13));
|
|
23397
|
+
if (f != null) {
|
|
23398
|
+
writer.writeEnum(
|
|
23399
|
+
13,
|
|
23400
|
+
f
|
|
23401
|
+
);
|
|
23402
|
+
}
|
|
23403
|
+
f = message.getFieldMask();
|
|
23404
|
+
if (f != null) {
|
|
23405
|
+
writer.writeMessage(
|
|
23406
|
+
14,
|
|
23407
|
+
f,
|
|
23408
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
23409
|
+
);
|
|
23410
|
+
}
|
|
21825
23411
|
};
|
|
21826
23412
|
|
|
21827
23413
|
|
|
@@ -21893,7 +23479,25 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPageToken = function()
|
|
|
21893
23479
|
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21894
23480
|
*/
|
|
21895
23481
|
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPageToken = function(value) {
|
|
21896
|
-
return jspb.Message.
|
|
23482
|
+
return jspb.Message.setField(this, 4, value);
|
|
23483
|
+
};
|
|
23484
|
+
|
|
23485
|
+
|
|
23486
|
+
/**
|
|
23487
|
+
* Clears the field making it undefined.
|
|
23488
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23489
|
+
*/
|
|
23490
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearPageToken = function() {
|
|
23491
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
23492
|
+
};
|
|
23493
|
+
|
|
23494
|
+
|
|
23495
|
+
/**
|
|
23496
|
+
* Returns whether this field is set.
|
|
23497
|
+
* @return {boolean}
|
|
23498
|
+
*/
|
|
23499
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasPageToken = function() {
|
|
23500
|
+
return jspb.Message.getField(this, 4) != null;
|
|
21897
23501
|
};
|
|
21898
23502
|
|
|
21899
23503
|
|
|
@@ -21911,7 +23515,25 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPageSize = function()
|
|
|
21911
23515
|
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21912
23516
|
*/
|
|
21913
23517
|
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPageSize = function(value) {
|
|
21914
|
-
return jspb.Message.
|
|
23518
|
+
return jspb.Message.setField(this, 5, value);
|
|
23519
|
+
};
|
|
23520
|
+
|
|
23521
|
+
|
|
23522
|
+
/**
|
|
23523
|
+
* Clears the field making it undefined.
|
|
23524
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23525
|
+
*/
|
|
23526
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearPageSize = function() {
|
|
23527
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
23528
|
+
};
|
|
23529
|
+
|
|
23530
|
+
|
|
23531
|
+
/**
|
|
23532
|
+
* Returns whether this field is set.
|
|
23533
|
+
* @return {boolean}
|
|
23534
|
+
*/
|
|
23535
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasPageSize = function() {
|
|
23536
|
+
return jspb.Message.getField(this, 5) != null;
|
|
21915
23537
|
};
|
|
21916
23538
|
|
|
21917
23539
|
|
|
@@ -21966,7 +23588,25 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPhaseFilter = function
|
|
|
21966
23588
|
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21967
23589
|
*/
|
|
21968
23590
|
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPhaseFilter = function(value) {
|
|
21969
|
-
return jspb.Message.
|
|
23591
|
+
return jspb.Message.setField(this, 7, value);
|
|
23592
|
+
};
|
|
23593
|
+
|
|
23594
|
+
|
|
23595
|
+
/**
|
|
23596
|
+
* Clears the field making it undefined.
|
|
23597
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23598
|
+
*/
|
|
23599
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearPhaseFilter = function() {
|
|
23600
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
23601
|
+
};
|
|
23602
|
+
|
|
23603
|
+
|
|
23604
|
+
/**
|
|
23605
|
+
* Returns whether this field is set.
|
|
23606
|
+
* @return {boolean}
|
|
23607
|
+
*/
|
|
23608
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasPhaseFilter = function() {
|
|
23609
|
+
return jspb.Message.getField(this, 7) != null;
|
|
21970
23610
|
};
|
|
21971
23611
|
|
|
21972
23612
|
|
|
@@ -21984,7 +23624,25 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getSearchQuery = function
|
|
|
21984
23624
|
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21985
23625
|
*/
|
|
21986
23626
|
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setSearchQuery = function(value) {
|
|
21987
|
-
return jspb.Message.
|
|
23627
|
+
return jspb.Message.setField(this, 8, value);
|
|
23628
|
+
};
|
|
23629
|
+
|
|
23630
|
+
|
|
23631
|
+
/**
|
|
23632
|
+
* Clears the field making it undefined.
|
|
23633
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23634
|
+
*/
|
|
23635
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearSearchQuery = function() {
|
|
23636
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
23637
|
+
};
|
|
23638
|
+
|
|
23639
|
+
|
|
23640
|
+
/**
|
|
23641
|
+
* Returns whether this field is set.
|
|
23642
|
+
* @return {boolean}
|
|
23643
|
+
*/
|
|
23644
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasSearchQuery = function() {
|
|
23645
|
+
return jspb.Message.getField(this, 8) != null;
|
|
21988
23646
|
};
|
|
21989
23647
|
|
|
21990
23648
|
|
|
@@ -22076,7 +23734,134 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getSourceUrlFilter = func
|
|
|
22076
23734
|
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
22077
23735
|
*/
|
|
22078
23736
|
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setSourceUrlFilter = function(value) {
|
|
22079
|
-
return jspb.Message.
|
|
23737
|
+
return jspb.Message.setField(this, 11, value);
|
|
23738
|
+
};
|
|
23739
|
+
|
|
23740
|
+
|
|
23741
|
+
/**
|
|
23742
|
+
* Clears the field making it undefined.
|
|
23743
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23744
|
+
*/
|
|
23745
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearSourceUrlFilter = function() {
|
|
23746
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
23747
|
+
};
|
|
23748
|
+
|
|
23749
|
+
|
|
23750
|
+
/**
|
|
23751
|
+
* Returns whether this field is set.
|
|
23752
|
+
* @return {boolean}
|
|
23753
|
+
*/
|
|
23754
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasSourceUrlFilter = function() {
|
|
23755
|
+
return jspb.Message.getField(this, 11) != null;
|
|
23756
|
+
};
|
|
23757
|
+
|
|
23758
|
+
|
|
23759
|
+
/**
|
|
23760
|
+
* optional string orderby = 12;
|
|
23761
|
+
* @return {string}
|
|
23762
|
+
*/
|
|
23763
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getOrderby = function() {
|
|
23764
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
23765
|
+
};
|
|
23766
|
+
|
|
23767
|
+
|
|
23768
|
+
/**
|
|
23769
|
+
* @param {string} value
|
|
23770
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23771
|
+
*/
|
|
23772
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setOrderby = function(value) {
|
|
23773
|
+
return jspb.Message.setField(this, 12, value);
|
|
23774
|
+
};
|
|
23775
|
+
|
|
23776
|
+
|
|
23777
|
+
/**
|
|
23778
|
+
* Clears the field making it undefined.
|
|
23779
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23780
|
+
*/
|
|
23781
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearOrderby = function() {
|
|
23782
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
23783
|
+
};
|
|
23784
|
+
|
|
23785
|
+
|
|
23786
|
+
/**
|
|
23787
|
+
* Returns whether this field is set.
|
|
23788
|
+
* @return {boolean}
|
|
23789
|
+
*/
|
|
23790
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasOrderby = function() {
|
|
23791
|
+
return jspb.Message.getField(this, 12) != null;
|
|
23792
|
+
};
|
|
23793
|
+
|
|
23794
|
+
|
|
23795
|
+
/**
|
|
23796
|
+
* optional SortingMode sorting_mode = 13;
|
|
23797
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
23798
|
+
*/
|
|
23799
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getSortingMode = function() {
|
|
23800
|
+
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
|
|
23801
|
+
};
|
|
23802
|
+
|
|
23803
|
+
|
|
23804
|
+
/**
|
|
23805
|
+
* @param {!proto.ondewo.nlu.SortingMode} value
|
|
23806
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23807
|
+
*/
|
|
23808
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setSortingMode = function(value) {
|
|
23809
|
+
return jspb.Message.setField(this, 13, value);
|
|
23810
|
+
};
|
|
23811
|
+
|
|
23812
|
+
|
|
23813
|
+
/**
|
|
23814
|
+
* Clears the field making it undefined.
|
|
23815
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23816
|
+
*/
|
|
23817
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearSortingMode = function() {
|
|
23818
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
23819
|
+
};
|
|
23820
|
+
|
|
23821
|
+
|
|
23822
|
+
/**
|
|
23823
|
+
* Returns whether this field is set.
|
|
23824
|
+
* @return {boolean}
|
|
23825
|
+
*/
|
|
23826
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasSortingMode = function() {
|
|
23827
|
+
return jspb.Message.getField(this, 13) != null;
|
|
23828
|
+
};
|
|
23829
|
+
|
|
23830
|
+
|
|
23831
|
+
/**
|
|
23832
|
+
* optional google.protobuf.FieldMask field_mask = 14;
|
|
23833
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
23834
|
+
*/
|
|
23835
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getFieldMask = function() {
|
|
23836
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
23837
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 14));
|
|
23838
|
+
};
|
|
23839
|
+
|
|
23840
|
+
|
|
23841
|
+
/**
|
|
23842
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
23843
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23844
|
+
*/
|
|
23845
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setFieldMask = function(value) {
|
|
23846
|
+
return jspb.Message.setWrapperField(this, 14, value);
|
|
23847
|
+
};
|
|
23848
|
+
|
|
23849
|
+
|
|
23850
|
+
/**
|
|
23851
|
+
* Clears the message field making it undefined.
|
|
23852
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23853
|
+
*/
|
|
23854
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearFieldMask = function() {
|
|
23855
|
+
return this.setFieldMask(undefined);
|
|
23856
|
+
};
|
|
23857
|
+
|
|
23858
|
+
|
|
23859
|
+
/**
|
|
23860
|
+
* Returns whether this field is set.
|
|
23861
|
+
* @return {boolean}
|
|
23862
|
+
*/
|
|
23863
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasFieldMask = function() {
|
|
23864
|
+
return jspb.Message.getField(this, 14) != null;
|
|
22080
23865
|
};
|
|
22081
23866
|
|
|
22082
23867
|
|
|
@@ -22124,7 +23909,8 @@ crawlerName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
|
22124
23909
|
status: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
22125
23910
|
entriesList: jspb.Message.toObjectList(msg.getEntriesList(),
|
|
22126
23911
|
ondewo_nlu_common_pb.LogEntry.toObject, includeInstance),
|
|
22127
|
-
nextPageToken: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
23912
|
+
nextPageToken: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
23913
|
+
totalLogEntries: jspb.Message.getFieldWithDefault(msg, 6, 0)
|
|
22128
23914
|
};
|
|
22129
23915
|
|
|
22130
23916
|
if (includeInstance) {
|
|
@@ -22182,6 +23968,10 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.deserializeBinaryFromReader = func
|
|
|
22182
23968
|
var value = /** @type {string} */ (reader.readString());
|
|
22183
23969
|
msg.setNextPageToken(value);
|
|
22184
23970
|
break;
|
|
23971
|
+
case 6:
|
|
23972
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
23973
|
+
msg.setTotalLogEntries(value);
|
|
23974
|
+
break;
|
|
22185
23975
|
default:
|
|
22186
23976
|
reader.skipField();
|
|
22187
23977
|
break;
|
|
@@ -22247,6 +24037,13 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.serializeBinaryToWriter = function
|
|
|
22247
24037
|
f
|
|
22248
24038
|
);
|
|
22249
24039
|
}
|
|
24040
|
+
f = message.getTotalLogEntries();
|
|
24041
|
+
if (f !== 0) {
|
|
24042
|
+
writer.writeInt32(
|
|
24043
|
+
6,
|
|
24044
|
+
f
|
|
24045
|
+
);
|
|
24046
|
+
}
|
|
22250
24047
|
};
|
|
22251
24048
|
|
|
22252
24049
|
|
|
@@ -22360,6 +24157,24 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setNextPageToken = funct
|
|
|
22360
24157
|
};
|
|
22361
24158
|
|
|
22362
24159
|
|
|
24160
|
+
/**
|
|
24161
|
+
* optional int32 total_log_entries = 6;
|
|
24162
|
+
* @return {number}
|
|
24163
|
+
*/
|
|
24164
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getTotalLogEntries = function() {
|
|
24165
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
24166
|
+
};
|
|
24167
|
+
|
|
24168
|
+
|
|
24169
|
+
/**
|
|
24170
|
+
* @param {number} value
|
|
24171
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
24172
|
+
*/
|
|
24173
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setTotalLogEntries = function(value) {
|
|
24174
|
+
return jspb.Message.setProto3IntField(this, 6, value);
|
|
24175
|
+
};
|
|
24176
|
+
|
|
24177
|
+
|
|
22363
24178
|
/**
|
|
22364
24179
|
* @enum {number}
|
|
22365
24180
|
*/
|