@ondewo/nlu-client-typescript 6.6.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/common_pb.d.ts +73 -0
- package/api/ondewo/nlu/common_pb.js +523 -0
- package/api/ondewo/nlu/rag_grpc_web_pb.d.ts +12 -0
- package/api/ondewo/nlu/rag_grpc_web_pb.js +63 -2
- package/api/ondewo/nlu/rag_pb.d.ts +816 -45
- package/api/ondewo/nlu/rag_pb.js +3196 -361
- 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
|
@@ -27,14 +27,14 @@ var google_protobuf_field_mask_pb = require('google-protobuf/google/protobuf/fie
|
|
|
27
27
|
goog.object.extend(proto, google_protobuf_field_mask_pb);
|
|
28
28
|
var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js');
|
|
29
29
|
goog.object.extend(proto, google_protobuf_timestamp_pb);
|
|
30
|
+
var ondewo_nlu_common_pb = require('../../ondewo/nlu/common_pb.js');
|
|
31
|
+
goog.object.extend(proto, ondewo_nlu_common_pb);
|
|
30
32
|
var ondewo_nlu_operation_metadata_pb = require('../../ondewo/nlu/operation_metadata_pb.js');
|
|
31
33
|
goog.object.extend(proto, ondewo_nlu_operation_metadata_pb);
|
|
32
34
|
var ondewo_nlu_operations_pb = require('../../ondewo/nlu/operations_pb.js');
|
|
33
35
|
goog.object.extend(proto, ondewo_nlu_operations_pb);
|
|
34
36
|
var ondewo_nlu_session_pb = require('../../ondewo/nlu/session_pb.js');
|
|
35
37
|
goog.object.extend(proto, ondewo_nlu_session_pb);
|
|
36
|
-
var ondewo_nlu_common_pb = require('../../ondewo/nlu/common_pb.js');
|
|
37
|
-
goog.object.extend(proto, ondewo_nlu_common_pb);
|
|
38
38
|
goog.exportSymbol('proto.ondewo.nlu.RagAddCrawlerResultsToDatasetsRequest', null, global);
|
|
39
39
|
goog.exportSymbol('proto.ondewo.nlu.RagChunk', null, global);
|
|
40
40
|
goog.exportSymbol('proto.ondewo.nlu.RagChunkMethod', null, global);
|
|
@@ -89,6 +89,8 @@ goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerRequest', null, global);
|
|
|
89
89
|
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerResultRequest', null, global);
|
|
90
90
|
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerResultsRequest', null, global);
|
|
91
91
|
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerResultsResponse', null, global);
|
|
92
|
+
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerRunLogsRequest', null, global);
|
|
93
|
+
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerRunLogsResponse', null, global);
|
|
92
94
|
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerRunRequest', null, global);
|
|
93
95
|
goog.exportSymbol('proto.ondewo.nlu.RagGraphRagConfig', null, global);
|
|
94
96
|
goog.exportSymbol('proto.ondewo.nlu.RagGraphRagMethod', null, global);
|
|
@@ -1563,6 +1565,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
1563
1565
|
*/
|
|
1564
1566
|
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse.displayName = 'proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse';
|
|
1565
1567
|
}
|
|
1568
|
+
/**
|
|
1569
|
+
* Generated by JsPbCodeGenerator.
|
|
1570
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
1571
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
1572
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
1573
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
1574
|
+
* valid.
|
|
1575
|
+
* @extends {jspb.Message}
|
|
1576
|
+
* @constructor
|
|
1577
|
+
*/
|
|
1578
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest = function(opt_data) {
|
|
1579
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.repeatedFields_, null);
|
|
1580
|
+
};
|
|
1581
|
+
goog.inherits(proto.ondewo.nlu.RagGetCrawlerRunLogsRequest, jspb.Message);
|
|
1582
|
+
if (goog.DEBUG && !COMPILED) {
|
|
1583
|
+
/**
|
|
1584
|
+
* @public
|
|
1585
|
+
* @override
|
|
1586
|
+
*/
|
|
1587
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.displayName = 'proto.ondewo.nlu.RagGetCrawlerRunLogsRequest';
|
|
1588
|
+
}
|
|
1589
|
+
/**
|
|
1590
|
+
* Generated by JsPbCodeGenerator.
|
|
1591
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
1592
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
1593
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
1594
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
1595
|
+
* valid.
|
|
1596
|
+
* @extends {jspb.Message}
|
|
1597
|
+
* @constructor
|
|
1598
|
+
*/
|
|
1599
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse = function(opt_data) {
|
|
1600
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.repeatedFields_, null);
|
|
1601
|
+
};
|
|
1602
|
+
goog.inherits(proto.ondewo.nlu.RagGetCrawlerRunLogsResponse, jspb.Message);
|
|
1603
|
+
if (goog.DEBUG && !COMPILED) {
|
|
1604
|
+
/**
|
|
1605
|
+
* @public
|
|
1606
|
+
* @override
|
|
1607
|
+
*/
|
|
1608
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.displayName = 'proto.ondewo.nlu.RagGetCrawlerRunLogsResponse';
|
|
1609
|
+
}
|
|
1566
1610
|
|
|
1567
1611
|
|
|
1568
1612
|
|
|
@@ -4488,7 +4532,9 @@ description: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
|
4488
4532
|
avatar: (f = jspb.Message.getField(msg, 6)) == null ? undefined : f,
|
|
4489
4533
|
chunkMethod: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
4490
4534
|
parserConfig: (f = msg.getParserConfig()) && proto.ondewo.nlu.RagParserConfig.toObject(includeInstance, f),
|
|
4491
|
-
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)
|
|
4492
4538
|
};
|
|
4493
4539
|
|
|
4494
4540
|
if (includeInstance) {
|
|
@@ -4562,6 +4608,16 @@ proto.ondewo.nlu.RagUpdateDatasetRequest.deserializeBinaryFromReader = function(
|
|
|
4562
4608
|
var value = /** @type {number} */ (reader.readInt32());
|
|
4563
4609
|
msg.setPagerank(value);
|
|
4564
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;
|
|
4565
4621
|
default:
|
|
4566
4622
|
reader.skipField();
|
|
4567
4623
|
break;
|
|
@@ -4655,6 +4711,22 @@ proto.ondewo.nlu.RagUpdateDatasetRequest.serializeBinaryToWriter = function(mess
|
|
|
4655
4711
|
f
|
|
4656
4712
|
);
|
|
4657
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
|
+
}
|
|
4658
4730
|
};
|
|
4659
4731
|
|
|
4660
4732
|
|
|
@@ -4893,6 +4965,80 @@ proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.hasPagerank = function() {
|
|
|
4893
4965
|
};
|
|
4894
4966
|
|
|
4895
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
|
+
|
|
4896
5042
|
|
|
4897
5043
|
/**
|
|
4898
5044
|
* List of repeated fields within this message type.
|
|
@@ -5177,7 +5323,9 @@ pageToken: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
|
5177
5323
|
id: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
5178
5324
|
name: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
5179
5325
|
orderby: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
5180
|
-
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)
|
|
5181
5329
|
};
|
|
5182
5330
|
|
|
5183
5331
|
if (includeInstance) {
|
|
@@ -5242,6 +5390,15 @@ proto.ondewo.nlu.RagListDatasetsRequest.deserializeBinaryFromReader = function(m
|
|
|
5242
5390
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
5243
5391
|
msg.setDesc(value);
|
|
5244
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;
|
|
5245
5402
|
default:
|
|
5246
5403
|
reader.skipField();
|
|
5247
5404
|
break;
|
|
@@ -5320,6 +5477,21 @@ proto.ondewo.nlu.RagListDatasetsRequest.serializeBinaryToWriter = function(messa
|
|
|
5320
5477
|
f
|
|
5321
5478
|
);
|
|
5322
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
|
+
}
|
|
5323
5495
|
};
|
|
5324
5496
|
|
|
5325
5497
|
|
|
@@ -5467,6 +5639,79 @@ proto.ondewo.nlu.RagListDatasetsRequest.prototype.hasDesc = function() {
|
|
|
5467
5639
|
};
|
|
5468
5640
|
|
|
5469
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
|
+
|
|
5470
5715
|
|
|
5471
5716
|
/**
|
|
5472
5717
|
* List of repeated fields within this message type.
|
|
@@ -6887,7 +7132,9 @@ name: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
|
6887
7132
|
chunkMethod: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
6888
7133
|
parserConfig: (f = msg.getParserConfig()) && proto.ondewo.nlu.RagParserConfig.toObject(includeInstance, f),
|
|
6889
7134
|
enabled: (f = jspb.Message.getBooleanField(msg, 8)) == null ? undefined : f,
|
|
6890
|
-
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)
|
|
6891
7138
|
};
|
|
6892
7139
|
|
|
6893
7140
|
if (includeInstance) {
|
|
@@ -6962,6 +7209,16 @@ proto.ondewo.nlu.RagUpdateDocumentRequest.deserializeBinaryFromReader = function
|
|
|
6962
7209
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
6963
7210
|
msg.setMetaFields(value);
|
|
6964
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;
|
|
6965
7222
|
default:
|
|
6966
7223
|
reader.skipField();
|
|
6967
7224
|
break;
|
|
@@ -7056,6 +7313,22 @@ proto.ondewo.nlu.RagUpdateDocumentRequest.serializeBinaryToWriter = function(mes
|
|
|
7056
7313
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
7057
7314
|
);
|
|
7058
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
|
+
}
|
|
7059
7332
|
};
|
|
7060
7333
|
|
|
7061
7334
|
|
|
@@ -7277,12 +7550,86 @@ proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.hasMetaFields = function() {
|
|
|
7277
7550
|
};
|
|
7278
7551
|
|
|
7279
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
|
+
|
|
7280
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
|
+
};
|
|
7281
7570
|
|
|
7282
7571
|
|
|
7283
|
-
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
7284
7572
|
/**
|
|
7285
|
-
*
|
|
7573
|
+
* Clears the message field making it undefined.
|
|
7574
|
+
* @return {!proto.ondewo.nlu.RagUpdateDocumentRequest} returns this
|
|
7575
|
+
*/
|
|
7576
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.clearUpdateMask = function() {
|
|
7577
|
+
return this.setUpdateMask(undefined);
|
|
7578
|
+
};
|
|
7579
|
+
|
|
7580
|
+
|
|
7581
|
+
/**
|
|
7582
|
+
* Returns whether this field is set.
|
|
7583
|
+
* @return {boolean}
|
|
7584
|
+
*/
|
|
7585
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.hasUpdateMask = function() {
|
|
7586
|
+
return jspb.Message.getField(this, 10) != null;
|
|
7587
|
+
};
|
|
7588
|
+
|
|
7589
|
+
|
|
7590
|
+
/**
|
|
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.
|
|
7286
7633
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
7287
7634
|
* Optional fields that are not set will be set to undefined.
|
|
7288
7635
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
@@ -7754,7 +8101,9 @@ suffixList: (f = jspb.Message.getRepeatedField(msg, 10)) == null ? undefined : f
|
|
|
7754
8101
|
runStatusList: (f = jspb.Message.getRepeatedField(msg, 11)) == null ? undefined : f,
|
|
7755
8102
|
createTimeFrom: (f = msg.getCreateTimeFrom()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
7756
8103
|
createTimeTo: (f = msg.getCreateTimeTo()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
7757
|
-
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)
|
|
7758
8107
|
};
|
|
7759
8108
|
|
|
7760
8109
|
if (includeInstance) {
|
|
@@ -7852,6 +8201,15 @@ proto.ondewo.nlu.RagListDocumentsRequest.deserializeBinaryFromReader = function(
|
|
|
7852
8201
|
reader.readMessage(value,proto.ondewo.nlu.RagMetadataConditions.deserializeBinaryFromReader);
|
|
7853
8202
|
msg.setMetadataCondition(value);
|
|
7854
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;
|
|
7855
8213
|
default:
|
|
7856
8214
|
reader.skipField();
|
|
7857
8215
|
break;
|
|
@@ -7982,6 +8340,21 @@ proto.ondewo.nlu.RagListDocumentsRequest.serializeBinaryToWriter = function(mess
|
|
|
7982
8340
|
proto.ondewo.nlu.RagMetadataConditions.serializeBinaryToWriter
|
|
7983
8341
|
);
|
|
7984
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
|
+
}
|
|
7985
8358
|
};
|
|
7986
8359
|
|
|
7987
8360
|
|
|
@@ -8350,6 +8723,79 @@ proto.ondewo.nlu.RagListDocumentsRequest.prototype.hasMetadataCondition = functi
|
|
|
8350
8723
|
};
|
|
8351
8724
|
|
|
8352
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
|
+
|
|
8353
8799
|
|
|
8354
8800
|
/**
|
|
8355
8801
|
* List of repeated fields within this message type.
|
|
@@ -9524,7 +9970,8 @@ similarityThreshold: (f = jspb.Message.getOptionalFloatingPointField(msg, 10)) =
|
|
|
9524
9970
|
vectorSimilarityWeight: (f = jspb.Message.getOptionalFloatingPointField(msg, 11)) == null ? undefined : f,
|
|
9525
9971
|
topK: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
9526
9972
|
highlight: (f = jspb.Message.getBooleanField(msg, 13)) == null ? undefined : f,
|
|
9527
|
-
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)
|
|
9528
9975
|
};
|
|
9529
9976
|
|
|
9530
9977
|
if (includeInstance) {
|
|
@@ -9618,6 +10065,11 @@ proto.ondewo.nlu.RagRetrievalRequest.deserializeBinaryFromReader = function(msg,
|
|
|
9618
10065
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
9619
10066
|
msg.setKeyword(value);
|
|
9620
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;
|
|
9621
10073
|
default:
|
|
9622
10074
|
reader.skipField();
|
|
9623
10075
|
break;
|
|
@@ -9746,6 +10198,14 @@ proto.ondewo.nlu.RagRetrievalRequest.serializeBinaryToWriter = function(message,
|
|
|
9746
10198
|
f
|
|
9747
10199
|
);
|
|
9748
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
|
+
}
|
|
9749
10209
|
};
|
|
9750
10210
|
|
|
9751
10211
|
|
|
@@ -10167,6 +10627,43 @@ proto.ondewo.nlu.RagRetrievalRequest.prototype.hasKeyword = function() {
|
|
|
10167
10627
|
};
|
|
10168
10628
|
|
|
10169
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
|
+
|
|
10170
10667
|
|
|
10171
10668
|
/**
|
|
10172
10669
|
* List of repeated fields within this message type.
|
|
@@ -12219,11 +12716,12 @@ proto.ondewo.nlu.RagListCrawlersRequest.toObject = function(includeInstance, msg
|
|
|
12219
12716
|
var f, obj = {
|
|
12220
12717
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
12221
12718
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
12222
|
-
pageToken: jspb.Message.
|
|
12223
|
-
datasetName: jspb.Message.
|
|
12224
|
-
crawlerName: jspb.Message.
|
|
12225
|
-
orderby: jspb.Message.
|
|
12226
|
-
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)
|
|
12227
12725
|
};
|
|
12228
12726
|
|
|
12229
12727
|
if (includeInstance) {
|
|
@@ -12288,6 +12786,11 @@ proto.ondewo.nlu.RagListCrawlersRequest.deserializeBinaryFromReader = function(m
|
|
|
12288
12786
|
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
12289
12787
|
msg.setSortingMode(value);
|
|
12290
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;
|
|
12291
12794
|
default:
|
|
12292
12795
|
reader.skipField();
|
|
12293
12796
|
break;
|
|
@@ -12331,29 +12834,29 @@ proto.ondewo.nlu.RagListCrawlersRequest.serializeBinaryToWriter = function(messa
|
|
|
12331
12834
|
f
|
|
12332
12835
|
);
|
|
12333
12836
|
}
|
|
12334
|
-
f =
|
|
12335
|
-
if (f
|
|
12837
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
12838
|
+
if (f != null) {
|
|
12336
12839
|
writer.writeString(
|
|
12337
12840
|
3,
|
|
12338
12841
|
f
|
|
12339
12842
|
);
|
|
12340
12843
|
}
|
|
12341
|
-
f =
|
|
12342
|
-
if (f
|
|
12844
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
12845
|
+
if (f != null) {
|
|
12343
12846
|
writer.writeString(
|
|
12344
12847
|
4,
|
|
12345
12848
|
f
|
|
12346
12849
|
);
|
|
12347
12850
|
}
|
|
12348
|
-
f =
|
|
12349
|
-
if (f
|
|
12851
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
12852
|
+
if (f != null) {
|
|
12350
12853
|
writer.writeString(
|
|
12351
12854
|
5,
|
|
12352
12855
|
f
|
|
12353
12856
|
);
|
|
12354
12857
|
}
|
|
12355
|
-
f =
|
|
12356
|
-
if (f
|
|
12858
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
12859
|
+
if (f != null) {
|
|
12357
12860
|
writer.writeString(
|
|
12358
12861
|
6,
|
|
12359
12862
|
f
|
|
@@ -12366,6 +12869,14 @@ proto.ondewo.nlu.RagListCrawlersRequest.serializeBinaryToWriter = function(messa
|
|
|
12366
12869
|
f
|
|
12367
12870
|
);
|
|
12368
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
|
+
}
|
|
12369
12880
|
};
|
|
12370
12881
|
|
|
12371
12882
|
|
|
@@ -12419,7 +12930,25 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getPageToken = function() {
|
|
|
12419
12930
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12420
12931
|
*/
|
|
12421
12932
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setPageToken = function(value) {
|
|
12422
|
-
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;
|
|
12423
12952
|
};
|
|
12424
12953
|
|
|
12425
12954
|
|
|
@@ -12437,34 +12966,34 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getDatasetName = function() {
|
|
|
12437
12966
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12438
12967
|
*/
|
|
12439
12968
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setDatasetName = function(value) {
|
|
12440
|
-
return jspb.Message.
|
|
12969
|
+
return jspb.Message.setField(this, 4, value);
|
|
12441
12970
|
};
|
|
12442
12971
|
|
|
12443
12972
|
|
|
12444
12973
|
/**
|
|
12445
|
-
*
|
|
12446
|
-
* @return {
|
|
12974
|
+
* Clears the field making it undefined.
|
|
12975
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12447
12976
|
*/
|
|
12448
|
-
proto.ondewo.nlu.RagListCrawlersRequest.prototype.
|
|
12449
|
-
return
|
|
12977
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.clearDatasetName = function() {
|
|
12978
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
12450
12979
|
};
|
|
12451
12980
|
|
|
12452
12981
|
|
|
12453
12982
|
/**
|
|
12454
|
-
*
|
|
12455
|
-
* @return {
|
|
12983
|
+
* Returns whether this field is set.
|
|
12984
|
+
* @return {boolean}
|
|
12456
12985
|
*/
|
|
12457
|
-
proto.ondewo.nlu.RagListCrawlersRequest.prototype.
|
|
12458
|
-
return jspb.Message.
|
|
12986
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasDatasetName = function() {
|
|
12987
|
+
return jspb.Message.getField(this, 4) != null;
|
|
12459
12988
|
};
|
|
12460
12989
|
|
|
12461
12990
|
|
|
12462
12991
|
/**
|
|
12463
|
-
* optional string
|
|
12992
|
+
* optional string crawler_name = 5;
|
|
12464
12993
|
* @return {string}
|
|
12465
12994
|
*/
|
|
12466
|
-
proto.ondewo.nlu.RagListCrawlersRequest.prototype.
|
|
12467
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
12995
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.getCrawlerName = function() {
|
|
12996
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
12468
12997
|
};
|
|
12469
12998
|
|
|
12470
12999
|
|
|
@@ -12472,15 +13001,69 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getOrderby = function() {
|
|
|
12472
13001
|
* @param {string} value
|
|
12473
13002
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12474
13003
|
*/
|
|
12475
|
-
proto.ondewo.nlu.RagListCrawlersRequest.prototype.
|
|
12476
|
-
return jspb.Message.
|
|
13004
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setCrawlerName = function(value) {
|
|
13005
|
+
return jspb.Message.setField(this, 5, value);
|
|
12477
13006
|
};
|
|
12478
13007
|
|
|
12479
13008
|
|
|
12480
13009
|
/**
|
|
12481
|
-
*
|
|
12482
|
-
* @return {!proto.ondewo.nlu.
|
|
12483
|
-
*/
|
|
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;
|
|
13024
|
+
};
|
|
13025
|
+
|
|
13026
|
+
|
|
13027
|
+
/**
|
|
13028
|
+
* optional string orderby = 6;
|
|
13029
|
+
* @return {string}
|
|
13030
|
+
*/
|
|
13031
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.getOrderby = function() {
|
|
13032
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
13033
|
+
};
|
|
13034
|
+
|
|
13035
|
+
|
|
13036
|
+
/**
|
|
13037
|
+
* @param {string} value
|
|
13038
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
13039
|
+
*/
|
|
13040
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setOrderby = function(value) {
|
|
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;
|
|
13060
|
+
};
|
|
13061
|
+
|
|
13062
|
+
|
|
13063
|
+
/**
|
|
13064
|
+
* optional SortingMode sorting_mode = 7;
|
|
13065
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
13066
|
+
*/
|
|
12484
13067
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.getSortingMode = function() {
|
|
12485
13068
|
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
|
|
12486
13069
|
};
|
|
@@ -12513,6 +13096,43 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasSortingMode = function() {
|
|
|
12513
13096
|
};
|
|
12514
13097
|
|
|
12515
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
|
+
|
|
12516
13136
|
|
|
12517
13137
|
/**
|
|
12518
13138
|
* List of repeated fields within this message type.
|
|
@@ -13290,7 +13910,7 @@ proto.ondewo.nlu.RagCrawler.prototype.toObject = function(opt_includeInstance) {
|
|
|
13290
13910
|
proto.ondewo.nlu.RagCrawler.toObject = function(includeInstance, msg) {
|
|
13291
13911
|
var f, obj = {
|
|
13292
13912
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
13293
|
-
displayName: jspb.Message.
|
|
13913
|
+
displayName: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
|
|
13294
13914
|
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
13295
13915
|
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
13296
13916
|
createdBy: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
@@ -13429,8 +14049,8 @@ proto.ondewo.nlu.RagCrawler.serializeBinaryToWriter = function(message, writer)
|
|
|
13429
14049
|
f
|
|
13430
14050
|
);
|
|
13431
14051
|
}
|
|
13432
|
-
f =
|
|
13433
|
-
if (f
|
|
14052
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
14053
|
+
if (f != null) {
|
|
13434
14054
|
writer.writeString(
|
|
13435
14055
|
2,
|
|
13436
14056
|
f
|
|
@@ -13549,7 +14169,25 @@ proto.ondewo.nlu.RagCrawler.prototype.getDisplayName = function() {
|
|
|
13549
14169
|
* @return {!proto.ondewo.nlu.RagCrawler} returns this
|
|
13550
14170
|
*/
|
|
13551
14171
|
proto.ondewo.nlu.RagCrawler.prototype.setDisplayName = function(value) {
|
|
13552
|
-
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;
|
|
13553
14191
|
};
|
|
13554
14192
|
|
|
13555
14193
|
|
|
@@ -14096,7 +14734,7 @@ proto.ondewo.nlu.RagCrawlerSources.prototype.clearSitemapsList = function() {
|
|
|
14096
14734
|
* @private {!Array<number>}
|
|
14097
14735
|
* @const
|
|
14098
14736
|
*/
|
|
14099
|
-
proto.ondewo.nlu.RagCrawlerFilters.repeatedFields_ = [1,2];
|
|
14737
|
+
proto.ondewo.nlu.RagCrawlerFilters.repeatedFields_ = [1,2,6,7,8,9];
|
|
14100
14738
|
|
|
14101
14739
|
|
|
14102
14740
|
|
|
@@ -14131,9 +14769,13 @@ proto.ondewo.nlu.RagCrawlerFilters.toObject = function(includeInstance, msg) {
|
|
|
14131
14769
|
var f, obj = {
|
|
14132
14770
|
allowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
14133
14771
|
disallowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
14134
|
-
allowInternalLinks: jspb.Message.
|
|
14135
|
-
allowExternalLinks: jspb.Message.
|
|
14136
|
-
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,
|
|
14775
|
+
allowedRegexList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
14776
|
+
disallowedRegexList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
|
|
14777
|
+
allowedPathsList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
|
|
14778
|
+
disallowedPathsList: (f = jspb.Message.getRepeatedField(msg, 9)) == null ? undefined : f
|
|
14137
14779
|
};
|
|
14138
14780
|
|
|
14139
14781
|
if (includeInstance) {
|
|
@@ -14190,6 +14832,22 @@ proto.ondewo.nlu.RagCrawlerFilters.deserializeBinaryFromReader = function(msg, r
|
|
|
14190
14832
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
14191
14833
|
msg.setAllowSocialMediaLinks(value);
|
|
14192
14834
|
break;
|
|
14835
|
+
case 6:
|
|
14836
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14837
|
+
msg.addAllowedRegex(value);
|
|
14838
|
+
break;
|
|
14839
|
+
case 7:
|
|
14840
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14841
|
+
msg.addDisallowedRegex(value);
|
|
14842
|
+
break;
|
|
14843
|
+
case 8:
|
|
14844
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14845
|
+
msg.addAllowedPaths(value);
|
|
14846
|
+
break;
|
|
14847
|
+
case 9:
|
|
14848
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14849
|
+
msg.addDisallowedPaths(value);
|
|
14850
|
+
break;
|
|
14193
14851
|
default:
|
|
14194
14852
|
reader.skipField();
|
|
14195
14853
|
break;
|
|
@@ -14233,27 +14891,55 @@ proto.ondewo.nlu.RagCrawlerFilters.serializeBinaryToWriter = function(message, w
|
|
|
14233
14891
|
f
|
|
14234
14892
|
);
|
|
14235
14893
|
}
|
|
14236
|
-
f =
|
|
14237
|
-
if (f) {
|
|
14894
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 3));
|
|
14895
|
+
if (f != null) {
|
|
14238
14896
|
writer.writeBool(
|
|
14239
14897
|
3,
|
|
14240
14898
|
f
|
|
14241
14899
|
);
|
|
14242
14900
|
}
|
|
14243
|
-
f =
|
|
14244
|
-
if (f) {
|
|
14901
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 4));
|
|
14902
|
+
if (f != null) {
|
|
14245
14903
|
writer.writeBool(
|
|
14246
14904
|
4,
|
|
14247
14905
|
f
|
|
14248
14906
|
);
|
|
14249
14907
|
}
|
|
14250
|
-
f =
|
|
14251
|
-
if (f) {
|
|
14908
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 5));
|
|
14909
|
+
if (f != null) {
|
|
14252
14910
|
writer.writeBool(
|
|
14253
14911
|
5,
|
|
14254
14912
|
f
|
|
14255
14913
|
);
|
|
14256
14914
|
}
|
|
14915
|
+
f = message.getAllowedRegexList();
|
|
14916
|
+
if (f.length > 0) {
|
|
14917
|
+
writer.writeRepeatedString(
|
|
14918
|
+
6,
|
|
14919
|
+
f
|
|
14920
|
+
);
|
|
14921
|
+
}
|
|
14922
|
+
f = message.getDisallowedRegexList();
|
|
14923
|
+
if (f.length > 0) {
|
|
14924
|
+
writer.writeRepeatedString(
|
|
14925
|
+
7,
|
|
14926
|
+
f
|
|
14927
|
+
);
|
|
14928
|
+
}
|
|
14929
|
+
f = message.getAllowedPathsList();
|
|
14930
|
+
if (f.length > 0) {
|
|
14931
|
+
writer.writeRepeatedString(
|
|
14932
|
+
8,
|
|
14933
|
+
f
|
|
14934
|
+
);
|
|
14935
|
+
}
|
|
14936
|
+
f = message.getDisallowedPathsList();
|
|
14937
|
+
if (f.length > 0) {
|
|
14938
|
+
writer.writeRepeatedString(
|
|
14939
|
+
9,
|
|
14940
|
+
f
|
|
14941
|
+
);
|
|
14942
|
+
}
|
|
14257
14943
|
};
|
|
14258
14944
|
|
|
14259
14945
|
|
|
@@ -14345,7 +15031,25 @@ proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowInternalLinks = function()
|
|
|
14345
15031
|
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14346
15032
|
*/
|
|
14347
15033
|
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowInternalLinks = function(value) {
|
|
14348
|
-
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;
|
|
14349
15053
|
};
|
|
14350
15054
|
|
|
14351
15055
|
|
|
@@ -14363,7 +15067,25 @@ proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowExternalLinks = function()
|
|
|
14363
15067
|
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14364
15068
|
*/
|
|
14365
15069
|
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowExternalLinks = function(value) {
|
|
14366
|
-
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;
|
|
14367
15089
|
};
|
|
14368
15090
|
|
|
14369
15091
|
|
|
@@ -14381,83 +15103,249 @@ proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowSocialMediaLinks = function
|
|
|
14381
15103
|
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14382
15104
|
*/
|
|
14383
15105
|
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowSocialMediaLinks = function(value) {
|
|
14384
|
-
return jspb.Message.
|
|
15106
|
+
return jspb.Message.setField(this, 5, value);
|
|
14385
15107
|
};
|
|
14386
15108
|
|
|
14387
15109
|
|
|
14388
|
-
|
|
14389
15110
|
/**
|
|
14390
|
-
*
|
|
14391
|
-
* @
|
|
14392
|
-
* @const
|
|
15111
|
+
* Clears the field making it undefined.
|
|
15112
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14393
15113
|
*/
|
|
14394
|
-
proto.ondewo.nlu.
|
|
14395
|
-
|
|
15114
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowSocialMediaLinks = function() {
|
|
15115
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
15116
|
+
};
|
|
14396
15117
|
|
|
14397
15118
|
|
|
14398
|
-
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
14399
15119
|
/**
|
|
14400
|
-
*
|
|
14401
|
-
*
|
|
14402
|
-
* Optional fields that are not set will be set to undefined.
|
|
14403
|
-
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
14404
|
-
* For the list of reserved names please see:
|
|
14405
|
-
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
14406
|
-
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
14407
|
-
* JSPB instance for transitional soy proto support:
|
|
14408
|
-
* http://goto/soy-param-migration
|
|
14409
|
-
* @return {!Object}
|
|
15120
|
+
* Returns whether this field is set.
|
|
15121
|
+
* @return {boolean}
|
|
14410
15122
|
*/
|
|
14411
|
-
proto.ondewo.nlu.
|
|
14412
|
-
return
|
|
15123
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.hasAllowSocialMediaLinks = function() {
|
|
15124
|
+
return jspb.Message.getField(this, 5) != null;
|
|
14413
15125
|
};
|
|
14414
15126
|
|
|
14415
15127
|
|
|
14416
15128
|
/**
|
|
14417
|
-
*
|
|
14418
|
-
* @
|
|
14419
|
-
* the JSPB instance for transitional soy proto support:
|
|
14420
|
-
* http://goto/soy-param-migration
|
|
14421
|
-
* @param {!proto.ondewo.nlu.RagCrawlerSeedUrlFilters} msg The msg instance to transform.
|
|
14422
|
-
* @return {!Object}
|
|
14423
|
-
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
15129
|
+
* repeated string allowed_regex = 6;
|
|
15130
|
+
* @return {!Array<string>}
|
|
14424
15131
|
*/
|
|
14425
|
-
proto.ondewo.nlu.
|
|
14426
|
-
|
|
14427
|
-
allowedRegexList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
14428
|
-
disallowedRegexList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
14429
|
-
allowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
14430
|
-
disallowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f
|
|
14431
|
-
};
|
|
14432
|
-
|
|
14433
|
-
if (includeInstance) {
|
|
14434
|
-
obj.$jspbMessageInstance = msg;
|
|
14435
|
-
}
|
|
14436
|
-
return obj;
|
|
15132
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowedRegexList = function() {
|
|
15133
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
|
|
14437
15134
|
};
|
|
14438
|
-
}
|
|
14439
15135
|
|
|
14440
15136
|
|
|
14441
15137
|
/**
|
|
14442
|
-
*
|
|
14443
|
-
* @
|
|
14444
|
-
* @return {!proto.ondewo.nlu.RagCrawlerSeedUrlFilters}
|
|
15138
|
+
* @param {!Array<string>} value
|
|
15139
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14445
15140
|
*/
|
|
14446
|
-
proto.ondewo.nlu.
|
|
14447
|
-
|
|
14448
|
-
var msg = new proto.ondewo.nlu.RagCrawlerSeedUrlFilters;
|
|
14449
|
-
return proto.ondewo.nlu.RagCrawlerSeedUrlFilters.deserializeBinaryFromReader(msg, reader);
|
|
15141
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowedRegexList = function(value) {
|
|
15142
|
+
return jspb.Message.setField(this, 6, value || []);
|
|
14450
15143
|
};
|
|
14451
15144
|
|
|
14452
15145
|
|
|
14453
15146
|
/**
|
|
14454
|
-
*
|
|
14455
|
-
*
|
|
14456
|
-
* @
|
|
14457
|
-
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
14458
|
-
* @return {!proto.ondewo.nlu.RagCrawlerSeedUrlFilters}
|
|
15147
|
+
* @param {string} value
|
|
15148
|
+
* @param {number=} opt_index
|
|
15149
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14459
15150
|
*/
|
|
14460
|
-
proto.ondewo.nlu.
|
|
15151
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.addAllowedRegex = function(value, opt_index) {
|
|
15152
|
+
return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
|
|
15153
|
+
};
|
|
15154
|
+
|
|
15155
|
+
|
|
15156
|
+
/**
|
|
15157
|
+
* Clears the list making it empty but non-null.
|
|
15158
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15159
|
+
*/
|
|
15160
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowedRegexList = function() {
|
|
15161
|
+
return this.setAllowedRegexList([]);
|
|
15162
|
+
};
|
|
15163
|
+
|
|
15164
|
+
|
|
15165
|
+
/**
|
|
15166
|
+
* repeated string disallowed_regex = 7;
|
|
15167
|
+
* @return {!Array<string>}
|
|
15168
|
+
*/
|
|
15169
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.getDisallowedRegexList = function() {
|
|
15170
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 7));
|
|
15171
|
+
};
|
|
15172
|
+
|
|
15173
|
+
|
|
15174
|
+
/**
|
|
15175
|
+
* @param {!Array<string>} value
|
|
15176
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15177
|
+
*/
|
|
15178
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.setDisallowedRegexList = function(value) {
|
|
15179
|
+
return jspb.Message.setField(this, 7, value || []);
|
|
15180
|
+
};
|
|
15181
|
+
|
|
15182
|
+
|
|
15183
|
+
/**
|
|
15184
|
+
* @param {string} value
|
|
15185
|
+
* @param {number=} opt_index
|
|
15186
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15187
|
+
*/
|
|
15188
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.addDisallowedRegex = function(value, opt_index) {
|
|
15189
|
+
return jspb.Message.addToRepeatedField(this, 7, value, opt_index);
|
|
15190
|
+
};
|
|
15191
|
+
|
|
15192
|
+
|
|
15193
|
+
/**
|
|
15194
|
+
* Clears the list making it empty but non-null.
|
|
15195
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15196
|
+
*/
|
|
15197
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearDisallowedRegexList = function() {
|
|
15198
|
+
return this.setDisallowedRegexList([]);
|
|
15199
|
+
};
|
|
15200
|
+
|
|
15201
|
+
|
|
15202
|
+
/**
|
|
15203
|
+
* repeated string allowed_paths = 8;
|
|
15204
|
+
* @return {!Array<string>}
|
|
15205
|
+
*/
|
|
15206
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowedPathsList = function() {
|
|
15207
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 8));
|
|
15208
|
+
};
|
|
15209
|
+
|
|
15210
|
+
|
|
15211
|
+
/**
|
|
15212
|
+
* @param {!Array<string>} value
|
|
15213
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15214
|
+
*/
|
|
15215
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowedPathsList = function(value) {
|
|
15216
|
+
return jspb.Message.setField(this, 8, value || []);
|
|
15217
|
+
};
|
|
15218
|
+
|
|
15219
|
+
|
|
15220
|
+
/**
|
|
15221
|
+
* @param {string} value
|
|
15222
|
+
* @param {number=} opt_index
|
|
15223
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15224
|
+
*/
|
|
15225
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.addAllowedPaths = function(value, opt_index) {
|
|
15226
|
+
return jspb.Message.addToRepeatedField(this, 8, value, opt_index);
|
|
15227
|
+
};
|
|
15228
|
+
|
|
15229
|
+
|
|
15230
|
+
/**
|
|
15231
|
+
* Clears the list making it empty but non-null.
|
|
15232
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15233
|
+
*/
|
|
15234
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowedPathsList = function() {
|
|
15235
|
+
return this.setAllowedPathsList([]);
|
|
15236
|
+
};
|
|
15237
|
+
|
|
15238
|
+
|
|
15239
|
+
/**
|
|
15240
|
+
* repeated string disallowed_paths = 9;
|
|
15241
|
+
* @return {!Array<string>}
|
|
15242
|
+
*/
|
|
15243
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.getDisallowedPathsList = function() {
|
|
15244
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 9));
|
|
15245
|
+
};
|
|
15246
|
+
|
|
15247
|
+
|
|
15248
|
+
/**
|
|
15249
|
+
* @param {!Array<string>} value
|
|
15250
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15251
|
+
*/
|
|
15252
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.setDisallowedPathsList = function(value) {
|
|
15253
|
+
return jspb.Message.setField(this, 9, value || []);
|
|
15254
|
+
};
|
|
15255
|
+
|
|
15256
|
+
|
|
15257
|
+
/**
|
|
15258
|
+
* @param {string} value
|
|
15259
|
+
* @param {number=} opt_index
|
|
15260
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15261
|
+
*/
|
|
15262
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.addDisallowedPaths = function(value, opt_index) {
|
|
15263
|
+
return jspb.Message.addToRepeatedField(this, 9, value, opt_index);
|
|
15264
|
+
};
|
|
15265
|
+
|
|
15266
|
+
|
|
15267
|
+
/**
|
|
15268
|
+
* Clears the list making it empty but non-null.
|
|
15269
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15270
|
+
*/
|
|
15271
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearDisallowedPathsList = function() {
|
|
15272
|
+
return this.setDisallowedPathsList([]);
|
|
15273
|
+
};
|
|
15274
|
+
|
|
15275
|
+
|
|
15276
|
+
|
|
15277
|
+
/**
|
|
15278
|
+
* List of repeated fields within this message type.
|
|
15279
|
+
* @private {!Array<number>}
|
|
15280
|
+
* @const
|
|
15281
|
+
*/
|
|
15282
|
+
proto.ondewo.nlu.RagCrawlerSeedUrlFilters.repeatedFields_ = [1,2,3,4];
|
|
15283
|
+
|
|
15284
|
+
|
|
15285
|
+
|
|
15286
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
15287
|
+
/**
|
|
15288
|
+
* Creates an object representation of this proto.
|
|
15289
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
15290
|
+
* Optional fields that are not set will be set to undefined.
|
|
15291
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
15292
|
+
* For the list of reserved names please see:
|
|
15293
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
15294
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
15295
|
+
* JSPB instance for transitional soy proto support:
|
|
15296
|
+
* http://goto/soy-param-migration
|
|
15297
|
+
* @return {!Object}
|
|
15298
|
+
*/
|
|
15299
|
+
proto.ondewo.nlu.RagCrawlerSeedUrlFilters.prototype.toObject = function(opt_includeInstance) {
|
|
15300
|
+
return proto.ondewo.nlu.RagCrawlerSeedUrlFilters.toObject(opt_includeInstance, this);
|
|
15301
|
+
};
|
|
15302
|
+
|
|
15303
|
+
|
|
15304
|
+
/**
|
|
15305
|
+
* Static version of the {@see toObject} method.
|
|
15306
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
15307
|
+
* the JSPB instance for transitional soy proto support:
|
|
15308
|
+
* http://goto/soy-param-migration
|
|
15309
|
+
* @param {!proto.ondewo.nlu.RagCrawlerSeedUrlFilters} msg The msg instance to transform.
|
|
15310
|
+
* @return {!Object}
|
|
15311
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
15312
|
+
*/
|
|
15313
|
+
proto.ondewo.nlu.RagCrawlerSeedUrlFilters.toObject = function(includeInstance, msg) {
|
|
15314
|
+
var f, obj = {
|
|
15315
|
+
allowedRegexList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
15316
|
+
disallowedRegexList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
15317
|
+
allowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
15318
|
+
disallowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f
|
|
15319
|
+
};
|
|
15320
|
+
|
|
15321
|
+
if (includeInstance) {
|
|
15322
|
+
obj.$jspbMessageInstance = msg;
|
|
15323
|
+
}
|
|
15324
|
+
return obj;
|
|
15325
|
+
};
|
|
15326
|
+
}
|
|
15327
|
+
|
|
15328
|
+
|
|
15329
|
+
/**
|
|
15330
|
+
* Deserializes binary data (in protobuf wire format).
|
|
15331
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
15332
|
+
* @return {!proto.ondewo.nlu.RagCrawlerSeedUrlFilters}
|
|
15333
|
+
*/
|
|
15334
|
+
proto.ondewo.nlu.RagCrawlerSeedUrlFilters.deserializeBinary = function(bytes) {
|
|
15335
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
15336
|
+
var msg = new proto.ondewo.nlu.RagCrawlerSeedUrlFilters;
|
|
15337
|
+
return proto.ondewo.nlu.RagCrawlerSeedUrlFilters.deserializeBinaryFromReader(msg, reader);
|
|
15338
|
+
};
|
|
15339
|
+
|
|
15340
|
+
|
|
15341
|
+
/**
|
|
15342
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
15343
|
+
* given reader into the given message object.
|
|
15344
|
+
* @param {!proto.ondewo.nlu.RagCrawlerSeedUrlFilters} msg The message object to deserialize into.
|
|
15345
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
15346
|
+
* @return {!proto.ondewo.nlu.RagCrawlerSeedUrlFilters}
|
|
15347
|
+
*/
|
|
15348
|
+
proto.ondewo.nlu.RagCrawlerSeedUrlFilters.deserializeBinaryFromReader = function(msg, reader) {
|
|
14461
15349
|
while (reader.nextField()) {
|
|
14462
15350
|
if (reader.isEndGroup()) {
|
|
14463
15351
|
break;
|
|
@@ -14922,14 +15810,14 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.toObject = function(opt_includeIns
|
|
|
14922
15810
|
*/
|
|
14923
15811
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.toObject = function(includeInstance, msg) {
|
|
14924
15812
|
var f, obj = {
|
|
14925
|
-
htmlAuthBaseUrl: jspb.Message.
|
|
14926
|
-
htmlAuthUsernameSelectorType: jspb.Message.
|
|
14927
|
-
htmlAuthUsernameSelector: jspb.Message.
|
|
14928
|
-
htmlAuthUsername: jspb.Message.
|
|
14929
|
-
htmlAuthPasswordSelectorType: jspb.Message.
|
|
14930
|
-
htmlAuthPasswordSelector: jspb.Message.
|
|
14931
|
-
htmlAuthPassword: jspb.Message.
|
|
14932
|
-
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
|
|
14933
15821
|
};
|
|
14934
15822
|
|
|
14935
15823
|
if (includeInstance) {
|
|
@@ -15027,57 +15915,57 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.serializeBinary = function() {
|
|
|
15027
15915
|
*/
|
|
15028
15916
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.serializeBinaryToWriter = function(message, writer) {
|
|
15029
15917
|
var f = undefined;
|
|
15030
|
-
f =
|
|
15031
|
-
if (f
|
|
15918
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 1));
|
|
15919
|
+
if (f != null) {
|
|
15032
15920
|
writer.writeString(
|
|
15033
15921
|
1,
|
|
15034
15922
|
f
|
|
15035
15923
|
);
|
|
15036
15924
|
}
|
|
15037
|
-
f =
|
|
15038
|
-
if (f
|
|
15925
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerSelectorType} */ (jspb.Message.getField(message, 2));
|
|
15926
|
+
if (f != null) {
|
|
15039
15927
|
writer.writeEnum(
|
|
15040
15928
|
2,
|
|
15041
15929
|
f
|
|
15042
15930
|
);
|
|
15043
15931
|
}
|
|
15044
|
-
f =
|
|
15045
|
-
if (f
|
|
15932
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
15933
|
+
if (f != null) {
|
|
15046
15934
|
writer.writeString(
|
|
15047
15935
|
3,
|
|
15048
15936
|
f
|
|
15049
15937
|
);
|
|
15050
15938
|
}
|
|
15051
|
-
f =
|
|
15052
|
-
if (f
|
|
15939
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
15940
|
+
if (f != null) {
|
|
15053
15941
|
writer.writeString(
|
|
15054
15942
|
4,
|
|
15055
15943
|
f
|
|
15056
15944
|
);
|
|
15057
15945
|
}
|
|
15058
|
-
f =
|
|
15059
|
-
if (f
|
|
15946
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerSelectorType} */ (jspb.Message.getField(message, 5));
|
|
15947
|
+
if (f != null) {
|
|
15060
15948
|
writer.writeEnum(
|
|
15061
15949
|
5,
|
|
15062
15950
|
f
|
|
15063
15951
|
);
|
|
15064
15952
|
}
|
|
15065
|
-
f =
|
|
15066
|
-
if (f
|
|
15953
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
15954
|
+
if (f != null) {
|
|
15067
15955
|
writer.writeString(
|
|
15068
15956
|
6,
|
|
15069
15957
|
f
|
|
15070
15958
|
);
|
|
15071
15959
|
}
|
|
15072
|
-
f =
|
|
15073
|
-
if (f
|
|
15960
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
15961
|
+
if (f != null) {
|
|
15074
15962
|
writer.writeString(
|
|
15075
15963
|
7,
|
|
15076
15964
|
f
|
|
15077
15965
|
);
|
|
15078
15966
|
}
|
|
15079
|
-
f =
|
|
15080
|
-
if (f
|
|
15967
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerAuthenticationExecutionType} */ (jspb.Message.getField(message, 8));
|
|
15968
|
+
if (f != null) {
|
|
15081
15969
|
writer.writeEnum(
|
|
15082
15970
|
8,
|
|
15083
15971
|
f
|
|
@@ -15100,7 +15988,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthBaseUrl = function() {
|
|
|
15100
15988
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15101
15989
|
*/
|
|
15102
15990
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthBaseUrl = function(value) {
|
|
15103
|
-
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;
|
|
15104
16010
|
};
|
|
15105
16011
|
|
|
15106
16012
|
|
|
@@ -15118,34 +16024,34 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsernameSelectorType =
|
|
|
15118
16024
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15119
16025
|
*/
|
|
15120
16026
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthUsernameSelectorType = function(value) {
|
|
15121
|
-
return jspb.Message.
|
|
16027
|
+
return jspb.Message.setField(this, 2, value);
|
|
15122
16028
|
};
|
|
15123
16029
|
|
|
15124
16030
|
|
|
15125
16031
|
/**
|
|
15126
|
-
*
|
|
15127
|
-
* @return {
|
|
16032
|
+
* Clears the field making it undefined.
|
|
16033
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15128
16034
|
*/
|
|
15129
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15130
|
-
return
|
|
16035
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthUsernameSelectorType = function() {
|
|
16036
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
15131
16037
|
};
|
|
15132
16038
|
|
|
15133
16039
|
|
|
15134
16040
|
/**
|
|
15135
|
-
*
|
|
15136
|
-
* @return {
|
|
16041
|
+
* Returns whether this field is set.
|
|
16042
|
+
* @return {boolean}
|
|
15137
16043
|
*/
|
|
15138
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15139
|
-
return jspb.Message.
|
|
16044
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthUsernameSelectorType = function() {
|
|
16045
|
+
return jspb.Message.getField(this, 2) != null;
|
|
15140
16046
|
};
|
|
15141
16047
|
|
|
15142
16048
|
|
|
15143
16049
|
/**
|
|
15144
|
-
* optional string
|
|
16050
|
+
* optional string html_auth_username_selector = 3;
|
|
15145
16051
|
* @return {string}
|
|
15146
16052
|
*/
|
|
15147
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15148
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
16053
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsernameSelector = function() {
|
|
16054
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
15149
16055
|
};
|
|
15150
16056
|
|
|
15151
16057
|
|
|
@@ -15153,35 +16059,107 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsername = function() {
|
|
|
15153
16059
|
* @param {string} value
|
|
15154
16060
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15155
16061
|
*/
|
|
15156
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15157
|
-
return jspb.Message.
|
|
16062
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthUsernameSelector = function(value) {
|
|
16063
|
+
return jspb.Message.setField(this, 3, value);
|
|
15158
16064
|
};
|
|
15159
16065
|
|
|
15160
16066
|
|
|
15161
16067
|
/**
|
|
15162
|
-
*
|
|
15163
|
-
* @return {!proto.ondewo.nlu.
|
|
16068
|
+
* Clears the field making it undefined.
|
|
16069
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15164
16070
|
*/
|
|
15165
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15166
|
-
return
|
|
16071
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthUsernameSelector = function() {
|
|
16072
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
15167
16073
|
};
|
|
15168
16074
|
|
|
15169
16075
|
|
|
15170
16076
|
/**
|
|
15171
|
-
*
|
|
15172
|
-
* @return {
|
|
16077
|
+
* Returns whether this field is set.
|
|
16078
|
+
* @return {boolean}
|
|
15173
16079
|
*/
|
|
15174
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15175
|
-
return jspb.Message.
|
|
16080
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthUsernameSelector = function() {
|
|
16081
|
+
return jspb.Message.getField(this, 3) != null;
|
|
15176
16082
|
};
|
|
15177
16083
|
|
|
15178
16084
|
|
|
15179
16085
|
/**
|
|
15180
|
-
* optional string
|
|
16086
|
+
* optional string html_auth_username = 4;
|
|
15181
16087
|
* @return {string}
|
|
15182
16088
|
*/
|
|
15183
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15184
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
16089
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsername = function() {
|
|
16090
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
16091
|
+
};
|
|
16092
|
+
|
|
16093
|
+
|
|
16094
|
+
/**
|
|
16095
|
+
* @param {string} value
|
|
16096
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16097
|
+
*/
|
|
16098
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthUsername = function(value) {
|
|
16099
|
+
return jspb.Message.setField(this, 4, value);
|
|
16100
|
+
};
|
|
16101
|
+
|
|
16102
|
+
|
|
16103
|
+
/**
|
|
16104
|
+
* Clears the field making it undefined.
|
|
16105
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16106
|
+
*/
|
|
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, ""));
|
|
15185
16163
|
};
|
|
15186
16164
|
|
|
15187
16165
|
|
|
@@ -15190,7 +16168,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthPasswordSelector = func
|
|
|
15190
16168
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15191
16169
|
*/
|
|
15192
16170
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthPasswordSelector = function(value) {
|
|
15193
|
-
return jspb.Message.
|
|
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;
|
|
15194
16190
|
};
|
|
15195
16191
|
|
|
15196
16192
|
|
|
@@ -15208,7 +16204,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthPassword = function() {
|
|
|
15208
16204
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15209
16205
|
*/
|
|
15210
16206
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthPassword = function(value) {
|
|
15211
|
-
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;
|
|
15212
16226
|
};
|
|
15213
16227
|
|
|
15214
16228
|
|
|
@@ -15226,7 +16240,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getAuthenticationExecutionType = f
|
|
|
15226
16240
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15227
16241
|
*/
|
|
15228
16242
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setAuthenticationExecutionType = function(value) {
|
|
15229
|
-
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;
|
|
15230
16262
|
};
|
|
15231
16263
|
|
|
15232
16264
|
|
|
@@ -15263,8 +16295,7 @@ proto.ondewo.nlu.RagCrawlerHttpAuth.prototype.toObject = function(opt_includeIns
|
|
|
15263
16295
|
proto.ondewo.nlu.RagCrawlerHttpAuth.toObject = function(includeInstance, msg) {
|
|
15264
16296
|
var f, obj = {
|
|
15265
16297
|
httpAuthUsername: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
15266
|
-
httpAuthPassword: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
15267
|
-
httpAuthUserAgent: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
16298
|
+
httpAuthPassword: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
15268
16299
|
};
|
|
15269
16300
|
|
|
15270
16301
|
if (includeInstance) {
|
|
@@ -15309,10 +16340,6 @@ proto.ondewo.nlu.RagCrawlerHttpAuth.deserializeBinaryFromReader = function(msg,
|
|
|
15309
16340
|
var value = /** @type {string} */ (reader.readString());
|
|
15310
16341
|
msg.setHttpAuthPassword(value);
|
|
15311
16342
|
break;
|
|
15312
|
-
case 3:
|
|
15313
|
-
var value = /** @type {string} */ (reader.readString());
|
|
15314
|
-
msg.setHttpAuthUserAgent(value);
|
|
15315
|
-
break;
|
|
15316
16343
|
default:
|
|
15317
16344
|
reader.skipField();
|
|
15318
16345
|
break;
|
|
@@ -15356,13 +16383,6 @@ proto.ondewo.nlu.RagCrawlerHttpAuth.serializeBinaryToWriter = function(message,
|
|
|
15356
16383
|
f
|
|
15357
16384
|
);
|
|
15358
16385
|
}
|
|
15359
|
-
f = message.getHttpAuthUserAgent();
|
|
15360
|
-
if (f.length > 0) {
|
|
15361
|
-
writer.writeString(
|
|
15362
|
-
3,
|
|
15363
|
-
f
|
|
15364
|
-
);
|
|
15365
|
-
}
|
|
15366
16386
|
};
|
|
15367
16387
|
|
|
15368
16388
|
|
|
@@ -15402,24 +16422,6 @@ proto.ondewo.nlu.RagCrawlerHttpAuth.prototype.setHttpAuthPassword = function(val
|
|
|
15402
16422
|
};
|
|
15403
16423
|
|
|
15404
16424
|
|
|
15405
|
-
/**
|
|
15406
|
-
* optional string http_auth_user_agent = 3;
|
|
15407
|
-
* @return {string}
|
|
15408
|
-
*/
|
|
15409
|
-
proto.ondewo.nlu.RagCrawlerHttpAuth.prototype.getHttpAuthUserAgent = function() {
|
|
15410
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
15411
|
-
};
|
|
15412
|
-
|
|
15413
|
-
|
|
15414
|
-
/**
|
|
15415
|
-
* @param {string} value
|
|
15416
|
-
* @return {!proto.ondewo.nlu.RagCrawlerHttpAuth} returns this
|
|
15417
|
-
*/
|
|
15418
|
-
proto.ondewo.nlu.RagCrawlerHttpAuth.prototype.setHttpAuthUserAgent = function(value) {
|
|
15419
|
-
return jspb.Message.setProto3StringField(this, 3, value);
|
|
15420
|
-
};
|
|
15421
|
-
|
|
15422
|
-
|
|
15423
16425
|
|
|
15424
16426
|
/**
|
|
15425
16427
|
* List of repeated fields within this message type.
|
|
@@ -15462,7 +16464,8 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.toObject = function(includeInstance, ms
|
|
|
15462
16464
|
crawlerHeadersList: jspb.Message.toObjectList(msg.getCrawlerHeadersList(),
|
|
15463
16465
|
google_protobuf_struct_pb.Struct.toObject, includeInstance),
|
|
15464
16466
|
crawlerCookiesList: jspb.Message.toObjectList(msg.getCrawlerCookiesList(),
|
|
15465
|
-
proto.ondewo.nlu.RagCrawlerCookie.toObject, includeInstance)
|
|
16467
|
+
proto.ondewo.nlu.RagCrawlerCookie.toObject, includeInstance),
|
|
16468
|
+
crawlerUserAgent: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
15466
16469
|
};
|
|
15467
16470
|
|
|
15468
16471
|
if (includeInstance) {
|
|
@@ -15509,6 +16512,10 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.deserializeBinaryFromReader = function(
|
|
|
15509
16512
|
reader.readMessage(value,proto.ondewo.nlu.RagCrawlerCookie.deserializeBinaryFromReader);
|
|
15510
16513
|
msg.addCrawlerCookies(value);
|
|
15511
16514
|
break;
|
|
16515
|
+
case 3:
|
|
16516
|
+
var value = /** @type {string} */ (reader.readString());
|
|
16517
|
+
msg.setCrawlerUserAgent(value);
|
|
16518
|
+
break;
|
|
15512
16519
|
default:
|
|
15513
16520
|
reader.skipField();
|
|
15514
16521
|
break;
|
|
@@ -15554,6 +16561,13 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.serializeBinaryToWriter = function(mess
|
|
|
15554
16561
|
proto.ondewo.nlu.RagCrawlerCookie.serializeBinaryToWriter
|
|
15555
16562
|
);
|
|
15556
16563
|
}
|
|
16564
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
16565
|
+
if (f != null) {
|
|
16566
|
+
writer.writeString(
|
|
16567
|
+
3,
|
|
16568
|
+
f
|
|
16569
|
+
);
|
|
16570
|
+
}
|
|
15557
16571
|
};
|
|
15558
16572
|
|
|
15559
16573
|
|
|
@@ -15633,6 +16647,42 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.clearCrawlerCookiesList = fun
|
|
|
15633
16647
|
};
|
|
15634
16648
|
|
|
15635
16649
|
|
|
16650
|
+
/**
|
|
16651
|
+
* optional string crawler_user_agent = 3;
|
|
16652
|
+
* @return {string}
|
|
16653
|
+
*/
|
|
16654
|
+
proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.getCrawlerUserAgent = function() {
|
|
16655
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
16656
|
+
};
|
|
16657
|
+
|
|
16658
|
+
|
|
16659
|
+
/**
|
|
16660
|
+
* @param {string} value
|
|
16661
|
+
* @return {!proto.ondewo.nlu.RagCrawlerBrowserConfig} returns this
|
|
16662
|
+
*/
|
|
16663
|
+
proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.setCrawlerUserAgent = function(value) {
|
|
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;
|
|
16683
|
+
};
|
|
16684
|
+
|
|
16685
|
+
|
|
15636
16686
|
|
|
15637
16687
|
|
|
15638
16688
|
|
|
@@ -15667,7 +16717,7 @@ proto.ondewo.nlu.RagCrawlerCookie.toObject = function(includeInstance, msg) {
|
|
|
15667
16717
|
var f, obj = {
|
|
15668
16718
|
cookieName: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
15669
16719
|
cookieValue: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
15670
|
-
cookieDomain: jspb.Message.
|
|
16720
|
+
cookieDomain: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
15671
16721
|
};
|
|
15672
16722
|
|
|
15673
16723
|
if (includeInstance) {
|
|
@@ -15759,8 +16809,8 @@ proto.ondewo.nlu.RagCrawlerCookie.serializeBinaryToWriter = function(message, wr
|
|
|
15759
16809
|
f
|
|
15760
16810
|
);
|
|
15761
16811
|
}
|
|
15762
|
-
f =
|
|
15763
|
-
if (f
|
|
16812
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
16813
|
+
if (f != null) {
|
|
15764
16814
|
writer.writeString(
|
|
15765
16815
|
3,
|
|
15766
16816
|
f
|
|
@@ -15819,7 +16869,25 @@ proto.ondewo.nlu.RagCrawlerCookie.prototype.getCookieDomain = function() {
|
|
|
15819
16869
|
* @return {!proto.ondewo.nlu.RagCrawlerCookie} returns this
|
|
15820
16870
|
*/
|
|
15821
16871
|
proto.ondewo.nlu.RagCrawlerCookie.prototype.setCookieDomain = function(value) {
|
|
15822
|
-
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;
|
|
15823
16891
|
};
|
|
15824
16892
|
|
|
15825
16893
|
|
|
@@ -15855,7 +16923,8 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.toObject = function(opt_i
|
|
|
15855
16923
|
*/
|
|
15856
16924
|
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.toObject = function(includeInstance, msg) {
|
|
15857
16925
|
var f, obj = {
|
|
15858
|
-
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
|
|
15859
16928
|
};
|
|
15860
16929
|
|
|
15861
16930
|
if (includeInstance) {
|
|
@@ -15896,6 +16965,10 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.deserializeBinaryFromReader = funct
|
|
|
15896
16965
|
var value = /** @type {number} */ (reader.readInt32());
|
|
15897
16966
|
msg.setMaxConcurrentRequests(value);
|
|
15898
16967
|
break;
|
|
16968
|
+
case 2:
|
|
16969
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
16970
|
+
msg.setSlowCrawl(value);
|
|
16971
|
+
break;
|
|
15899
16972
|
default:
|
|
15900
16973
|
reader.skipField();
|
|
15901
16974
|
break;
|
|
@@ -15925,13 +16998,20 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.serializeBinary = functio
|
|
|
15925
16998
|
*/
|
|
15926
16999
|
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.serializeBinaryToWriter = function(message, writer) {
|
|
15927
17000
|
var f = undefined;
|
|
15928
|
-
f =
|
|
15929
|
-
if (f
|
|
17001
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
17002
|
+
if (f != null) {
|
|
15930
17003
|
writer.writeInt32(
|
|
15931
17004
|
1,
|
|
15932
17005
|
f
|
|
15933
17006
|
);
|
|
15934
17007
|
}
|
|
17008
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 2));
|
|
17009
|
+
if (f != null) {
|
|
17010
|
+
writer.writeBool(
|
|
17011
|
+
2,
|
|
17012
|
+
f
|
|
17013
|
+
);
|
|
17014
|
+
}
|
|
15935
17015
|
};
|
|
15936
17016
|
|
|
15937
17017
|
|
|
@@ -15949,45 +17029,99 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.getMaxConcurrentRequests
|
|
|
15949
17029
|
* @return {!proto.ondewo.nlu.RagCrawlerConcurrencyConfig} returns this
|
|
15950
17030
|
*/
|
|
15951
17031
|
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.setMaxConcurrentRequests = function(value) {
|
|
15952
|
-
return jspb.Message.
|
|
17032
|
+
return jspb.Message.setField(this, 1, value);
|
|
15953
17033
|
};
|
|
15954
17034
|
|
|
15955
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
|
+
};
|
|
15956
17043
|
|
|
15957
17044
|
|
|
15958
|
-
|
|
15959
|
-
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
15960
17045
|
/**
|
|
15961
|
-
*
|
|
15962
|
-
*
|
|
15963
|
-
* Optional fields that are not set will be set to undefined.
|
|
15964
|
-
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
15965
|
-
* For the list of reserved names please see:
|
|
15966
|
-
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
15967
|
-
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
15968
|
-
* JSPB instance for transitional soy proto support:
|
|
15969
|
-
* http://goto/soy-param-migration
|
|
15970
|
-
* @return {!Object}
|
|
17046
|
+
* Returns whether this field is set.
|
|
17047
|
+
* @return {boolean}
|
|
15971
17048
|
*/
|
|
15972
|
-
proto.ondewo.nlu.
|
|
15973
|
-
return
|
|
17049
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.hasMaxConcurrentRequests = function() {
|
|
17050
|
+
return jspb.Message.getField(this, 1) != null;
|
|
15974
17051
|
};
|
|
15975
17052
|
|
|
15976
17053
|
|
|
15977
17054
|
/**
|
|
15978
|
-
*
|
|
15979
|
-
* @
|
|
15980
|
-
* the JSPB instance for transitional soy proto support:
|
|
15981
|
-
* http://goto/soy-param-migration
|
|
15982
|
-
* @param {!proto.ondewo.nlu.RagCrawlerConfig} msg The msg instance to transform.
|
|
15983
|
-
* @return {!Object}
|
|
15984
|
-
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
17055
|
+
* optional bool slow_crawl = 2;
|
|
17056
|
+
* @return {boolean}
|
|
15985
17057
|
*/
|
|
15986
|
-
proto.ondewo.nlu.
|
|
15987
|
-
|
|
15988
|
-
|
|
15989
|
-
|
|
15990
|
-
|
|
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;
|
|
17087
|
+
};
|
|
17088
|
+
|
|
17089
|
+
|
|
17090
|
+
|
|
17091
|
+
|
|
17092
|
+
|
|
17093
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
17094
|
+
/**
|
|
17095
|
+
* Creates an object representation of this proto.
|
|
17096
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
17097
|
+
* Optional fields that are not set will be set to undefined.
|
|
17098
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
17099
|
+
* For the list of reserved names please see:
|
|
17100
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
17101
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
17102
|
+
* JSPB instance for transitional soy proto support:
|
|
17103
|
+
* http://goto/soy-param-migration
|
|
17104
|
+
* @return {!Object}
|
|
17105
|
+
*/
|
|
17106
|
+
proto.ondewo.nlu.RagCrawlerConfig.prototype.toObject = function(opt_includeInstance) {
|
|
17107
|
+
return proto.ondewo.nlu.RagCrawlerConfig.toObject(opt_includeInstance, this);
|
|
17108
|
+
};
|
|
17109
|
+
|
|
17110
|
+
|
|
17111
|
+
/**
|
|
17112
|
+
* Static version of the {@see toObject} method.
|
|
17113
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
17114
|
+
* the JSPB instance for transitional soy proto support:
|
|
17115
|
+
* http://goto/soy-param-migration
|
|
17116
|
+
* @param {!proto.ondewo.nlu.RagCrawlerConfig} msg The msg instance to transform.
|
|
17117
|
+
* @return {!Object}
|
|
17118
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
17119
|
+
*/
|
|
17120
|
+
proto.ondewo.nlu.RagCrawlerConfig.toObject = function(includeInstance, msg) {
|
|
17121
|
+
var f, obj = {
|
|
17122
|
+
concurrencyConfig: (f = msg.getConcurrencyConfig()) && proto.ondewo.nlu.RagCrawlerConcurrencyConfig.toObject(includeInstance, f),
|
|
17123
|
+
deepCrawlerConfig: (f = msg.getDeepCrawlerConfig()) && proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.toObject(includeInstance, f),
|
|
17124
|
+
outputConfig: (f = msg.getOutputConfig()) && proto.ondewo.nlu.RagCrawlerResultsConfig.toObject(includeInstance, f)
|
|
15991
17125
|
};
|
|
15992
17126
|
|
|
15993
17127
|
if (includeInstance) {
|
|
@@ -16238,10 +17372,10 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.toObject = function(opt_i
|
|
|
16238
17372
|
*/
|
|
16239
17373
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.toObject = function(includeInstance, msg) {
|
|
16240
17374
|
var f, obj = {
|
|
16241
|
-
isActive: jspb.Message.
|
|
16242
|
-
crawlStrategy: jspb.Message.
|
|
16243
|
-
maxDepth: jspb.Message.
|
|
16244
|
-
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,
|
|
16245
17379
|
deepCrawlerFilters: (f = msg.getDeepCrawlerFilters()) && proto.ondewo.nlu.RagCrawlerFilters.toObject(includeInstance, f)
|
|
16246
17380
|
};
|
|
16247
17381
|
|
|
@@ -16329,29 +17463,29 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.serializeBinary = functio
|
|
|
16329
17463
|
*/
|
|
16330
17464
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.serializeBinaryToWriter = function(message, writer) {
|
|
16331
17465
|
var f = undefined;
|
|
16332
|
-
f =
|
|
16333
|
-
if (f) {
|
|
17466
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 1));
|
|
17467
|
+
if (f != null) {
|
|
16334
17468
|
writer.writeBool(
|
|
16335
17469
|
1,
|
|
16336
17470
|
f
|
|
16337
17471
|
);
|
|
16338
17472
|
}
|
|
16339
|
-
f =
|
|
16340
|
-
if (f
|
|
17473
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerCrawlStrategy} */ (jspb.Message.getField(message, 2));
|
|
17474
|
+
if (f != null) {
|
|
16341
17475
|
writer.writeEnum(
|
|
16342
17476
|
2,
|
|
16343
17477
|
f
|
|
16344
17478
|
);
|
|
16345
17479
|
}
|
|
16346
|
-
f =
|
|
16347
|
-
if (f
|
|
17480
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 3));
|
|
17481
|
+
if (f != null) {
|
|
16348
17482
|
writer.writeInt32(
|
|
16349
17483
|
3,
|
|
16350
17484
|
f
|
|
16351
17485
|
);
|
|
16352
17486
|
}
|
|
16353
|
-
f =
|
|
16354
|
-
if (f
|
|
17487
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 4));
|
|
17488
|
+
if (f != null) {
|
|
16355
17489
|
writer.writeInt32(
|
|
16356
17490
|
4,
|
|
16357
17491
|
f
|
|
@@ -16382,7 +17516,25 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getIsActive = function()
|
|
|
16382
17516
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16383
17517
|
*/
|
|
16384
17518
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setIsActive = function(value) {
|
|
16385
|
-
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;
|
|
16386
17538
|
};
|
|
16387
17539
|
|
|
16388
17540
|
|
|
@@ -16400,7 +17552,25 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getCrawlStrategy = functi
|
|
|
16400
17552
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16401
17553
|
*/
|
|
16402
17554
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setCrawlStrategy = function(value) {
|
|
16403
|
-
return jspb.Message.
|
|
17555
|
+
return jspb.Message.setField(this, 2, value);
|
|
17556
|
+
};
|
|
17557
|
+
|
|
17558
|
+
|
|
17559
|
+
/**
|
|
17560
|
+
* Clears the field making it undefined.
|
|
17561
|
+
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
17562
|
+
*/
|
|
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;
|
|
16404
17574
|
};
|
|
16405
17575
|
|
|
16406
17576
|
|
|
@@ -16418,7 +17588,25 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getMaxDepth = function()
|
|
|
16418
17588
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16419
17589
|
*/
|
|
16420
17590
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setMaxDepth = function(value) {
|
|
16421
|
-
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;
|
|
16422
17610
|
};
|
|
16423
17611
|
|
|
16424
17612
|
|
|
@@ -16436,7 +17624,25 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getMaxPages = function()
|
|
|
16436
17624
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16437
17625
|
*/
|
|
16438
17626
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setMaxPages = function(value) {
|
|
16439
|
-
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;
|
|
16440
17646
|
};
|
|
16441
17647
|
|
|
16442
17648
|
|
|
@@ -16717,9 +17923,9 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.toObject = function(opt_i
|
|
|
16717
17923
|
*/
|
|
16718
17924
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.toObject = function(includeInstance, msg) {
|
|
16719
17925
|
var f, obj = {
|
|
16720
|
-
type: jspb.Message.
|
|
16721
|
-
value: jspb.Message.
|
|
16722
|
-
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
|
|
16723
17929
|
};
|
|
16724
17930
|
|
|
16725
17931
|
if (includeInstance) {
|
|
@@ -16797,22 +18003,22 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.serializeBinary = functio
|
|
|
16797
18003
|
*/
|
|
16798
18004
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.serializeBinaryToWriter = function(message, writer) {
|
|
16799
18005
|
var f = undefined;
|
|
16800
|
-
f =
|
|
16801
|
-
if (f
|
|
18006
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerMetaDataExtractorType} */ (jspb.Message.getField(message, 1));
|
|
18007
|
+
if (f != null) {
|
|
16802
18008
|
writer.writeEnum(
|
|
16803
18009
|
1,
|
|
16804
18010
|
f
|
|
16805
18011
|
);
|
|
16806
18012
|
}
|
|
16807
|
-
f =
|
|
16808
|
-
if (f
|
|
18013
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
18014
|
+
if (f != null) {
|
|
16809
18015
|
writer.writeString(
|
|
16810
18016
|
2,
|
|
16811
18017
|
f
|
|
16812
18018
|
);
|
|
16813
18019
|
}
|
|
16814
|
-
f =
|
|
16815
|
-
if (f
|
|
18020
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
18021
|
+
if (f != null) {
|
|
16816
18022
|
writer.writeString(
|
|
16817
18023
|
3,
|
|
16818
18024
|
f
|
|
@@ -16835,7 +18041,25 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.getType = function() {
|
|
|
16835
18041
|
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
16836
18042
|
*/
|
|
16837
18043
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.setType = function(value) {
|
|
16838
|
-
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;
|
|
16839
18063
|
};
|
|
16840
18064
|
|
|
16841
18065
|
|
|
@@ -16853,7 +18077,25 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.getValue = function() {
|
|
|
16853
18077
|
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
16854
18078
|
*/
|
|
16855
18079
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.setValue = function(value) {
|
|
16856
|
-
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;
|
|
16857
18099
|
};
|
|
16858
18100
|
|
|
16859
18101
|
|
|
@@ -16871,7 +18113,25 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.getKey = function() {
|
|
|
16871
18113
|
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
16872
18114
|
*/
|
|
16873
18115
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.setKey = function(value) {
|
|
16874
|
-
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;
|
|
16875
18135
|
};
|
|
16876
18136
|
|
|
16877
18137
|
|
|
@@ -16907,8 +18167,8 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.toObject = function(opt_include
|
|
|
16907
18167
|
*/
|
|
16908
18168
|
proto.ondewo.nlu.RagCrawlerRetryConfig.toObject = function(includeInstance, msg) {
|
|
16909
18169
|
var f, obj = {
|
|
16910
|
-
pageLoadTimeoutSeconds: jspb.Message.
|
|
16911
|
-
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
|
|
16912
18172
|
};
|
|
16913
18173
|
|
|
16914
18174
|
if (includeInstance) {
|
|
@@ -16982,15 +18242,15 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.serializeBinary = function() {
|
|
|
16982
18242
|
*/
|
|
16983
18243
|
proto.ondewo.nlu.RagCrawlerRetryConfig.serializeBinaryToWriter = function(message, writer) {
|
|
16984
18244
|
var f = undefined;
|
|
16985
|
-
f =
|
|
16986
|
-
if (f
|
|
18245
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
18246
|
+
if (f != null) {
|
|
16987
18247
|
writer.writeInt32(
|
|
16988
18248
|
1,
|
|
16989
18249
|
f
|
|
16990
18250
|
);
|
|
16991
18251
|
}
|
|
16992
|
-
f =
|
|
16993
|
-
if (f
|
|
18252
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
|
18253
|
+
if (f != null) {
|
|
16994
18254
|
writer.writeInt32(
|
|
16995
18255
|
2,
|
|
16996
18256
|
f
|
|
@@ -17013,7 +18273,25 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.getPageLoadTimeoutSeconds = fun
|
|
|
17013
18273
|
* @return {!proto.ondewo.nlu.RagCrawlerRetryConfig} returns this
|
|
17014
18274
|
*/
|
|
17015
18275
|
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.setPageLoadTimeoutSeconds = function(value) {
|
|
17016
|
-
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;
|
|
17017
18295
|
};
|
|
17018
18296
|
|
|
17019
18297
|
|
|
@@ -17031,7 +18309,25 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.getRetryMaxAttempts = function(
|
|
|
17031
18309
|
* @return {!proto.ondewo.nlu.RagCrawlerRetryConfig} returns this
|
|
17032
18310
|
*/
|
|
17033
18311
|
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.setRetryMaxAttempts = function(value) {
|
|
17034
|
-
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;
|
|
17035
18331
|
};
|
|
17036
18332
|
|
|
17037
18333
|
|
|
@@ -17068,7 +18364,7 @@ proto.ondewo.nlu.RagCrawlerContentResult.prototype.toObject = function(opt_inclu
|
|
|
17068
18364
|
proto.ondewo.nlu.RagCrawlerContentResult.toObject = function(includeInstance, msg) {
|
|
17069
18365
|
var f, obj = {
|
|
17070
18366
|
metadata: (f = msg.getMetadata()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
17071
|
-
markdown: jspb.Message.
|
|
18367
|
+
markdown: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f
|
|
17072
18368
|
};
|
|
17073
18369
|
|
|
17074
18370
|
if (includeInstance) {
|
|
@@ -17151,8 +18447,8 @@ proto.ondewo.nlu.RagCrawlerContentResult.serializeBinaryToWriter = function(mess
|
|
|
17151
18447
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
17152
18448
|
);
|
|
17153
18449
|
}
|
|
17154
|
-
f =
|
|
17155
|
-
if (f
|
|
18450
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
18451
|
+
if (f != null) {
|
|
17156
18452
|
writer.writeString(
|
|
17157
18453
|
2,
|
|
17158
18454
|
f
|
|
@@ -17212,14 +18508,32 @@ proto.ondewo.nlu.RagCrawlerContentResult.prototype.getMarkdown = function() {
|
|
|
17212
18508
|
* @return {!proto.ondewo.nlu.RagCrawlerContentResult} returns this
|
|
17213
18509
|
*/
|
|
17214
18510
|
proto.ondewo.nlu.RagCrawlerContentResult.prototype.setMarkdown = function(value) {
|
|
17215
|
-
return jspb.Message.
|
|
18511
|
+
return jspb.Message.setField(this, 2, value);
|
|
17216
18512
|
};
|
|
17217
18513
|
|
|
17218
18514
|
|
|
17219
|
-
|
|
17220
|
-
|
|
17221
|
-
|
|
17222
|
-
|
|
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;
|
|
18530
|
+
};
|
|
18531
|
+
|
|
18532
|
+
|
|
18533
|
+
|
|
18534
|
+
|
|
18535
|
+
|
|
18536
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
17223
18537
|
/**
|
|
17224
18538
|
* Creates an object representation of this proto.
|
|
17225
18539
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
@@ -17249,8 +18563,8 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.toObject = function(opt_inclu
|
|
|
17249
18563
|
proto.ondewo.nlu.RagCrawlerExecutionInfo.toObject = function(includeInstance, msg) {
|
|
17250
18564
|
var f, obj = {
|
|
17251
18565
|
sslCertificate: (f = msg.getSslCertificate()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
17252
|
-
success: jspb.Message.
|
|
17253
|
-
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
|
|
17254
18568
|
};
|
|
17255
18569
|
|
|
17256
18570
|
if (includeInstance) {
|
|
@@ -17337,15 +18651,15 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.serializeBinaryToWriter = function(mess
|
|
|
17337
18651
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
17338
18652
|
);
|
|
17339
18653
|
}
|
|
17340
|
-
f =
|
|
17341
|
-
if (f) {
|
|
18654
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 2));
|
|
18655
|
+
if (f != null) {
|
|
17342
18656
|
writer.writeBool(
|
|
17343
18657
|
2,
|
|
17344
18658
|
f
|
|
17345
18659
|
);
|
|
17346
18660
|
}
|
|
17347
|
-
f =
|
|
17348
|
-
if (f
|
|
18661
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
18662
|
+
if (f != null) {
|
|
17349
18663
|
writer.writeString(
|
|
17350
18664
|
3,
|
|
17351
18665
|
f
|
|
@@ -17405,7 +18719,25 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.getSuccess = function() {
|
|
|
17405
18719
|
* @return {!proto.ondewo.nlu.RagCrawlerExecutionInfo} returns this
|
|
17406
18720
|
*/
|
|
17407
18721
|
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.setSuccess = function(value) {
|
|
17408
|
-
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;
|
|
17409
18741
|
};
|
|
17410
18742
|
|
|
17411
18743
|
|
|
@@ -17423,7 +18755,25 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.getErrorMessage = function()
|
|
|
17423
18755
|
* @return {!proto.ondewo.nlu.RagCrawlerExecutionInfo} returns this
|
|
17424
18756
|
*/
|
|
17425
18757
|
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.setErrorMessage = function(value) {
|
|
17426
|
-
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;
|
|
17427
18777
|
};
|
|
17428
18778
|
|
|
17429
18779
|
|
|
@@ -18265,10 +19615,10 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.toObject = function(includeInstance,
|
|
|
18265
19615
|
var f, obj = {
|
|
18266
19616
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
18267
19617
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
18268
|
-
crawlerName: jspb.Message.
|
|
18269
|
-
pageToken: jspb.Message.
|
|
18270
|
-
|
|
18271
|
-
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,
|
|
18272
19622
|
sortingMode: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f
|
|
18273
19623
|
};
|
|
18274
19624
|
|
|
@@ -18324,7 +19674,7 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.deserializeBinaryFromReader = functio
|
|
|
18324
19674
|
break;
|
|
18325
19675
|
case 5:
|
|
18326
19676
|
var value = /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (reader.readEnum());
|
|
18327
|
-
msg.
|
|
19677
|
+
msg.setStatus(value);
|
|
18328
19678
|
break;
|
|
18329
19679
|
case 6:
|
|
18330
19680
|
var value = /** @type {string} */ (reader.readString());
|
|
@@ -18377,29 +19727,29 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.serializeBinaryToWriter = function(me
|
|
|
18377
19727
|
f
|
|
18378
19728
|
);
|
|
18379
19729
|
}
|
|
18380
|
-
f =
|
|
18381
|
-
if (f
|
|
19730
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
19731
|
+
if (f != null) {
|
|
18382
19732
|
writer.writeString(
|
|
18383
19733
|
3,
|
|
18384
19734
|
f
|
|
18385
19735
|
);
|
|
18386
19736
|
}
|
|
18387
|
-
f =
|
|
18388
|
-
if (f
|
|
19737
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
19738
|
+
if (f != null) {
|
|
18389
19739
|
writer.writeString(
|
|
18390
19740
|
4,
|
|
18391
19741
|
f
|
|
18392
19742
|
);
|
|
18393
19743
|
}
|
|
18394
|
-
f =
|
|
18395
|
-
if (f
|
|
19744
|
+
f = /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (jspb.Message.getField(message, 5));
|
|
19745
|
+
if (f != null) {
|
|
18396
19746
|
writer.writeEnum(
|
|
18397
19747
|
5,
|
|
18398
19748
|
f
|
|
18399
19749
|
);
|
|
18400
19750
|
}
|
|
18401
|
-
f =
|
|
18402
|
-
if (f
|
|
19751
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
19752
|
+
if (f != null) {
|
|
18403
19753
|
writer.writeString(
|
|
18404
19754
|
6,
|
|
18405
19755
|
f
|
|
@@ -18465,7 +19815,25 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getCrawlerName = function()
|
|
|
18465
19815
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18466
19816
|
*/
|
|
18467
19817
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setCrawlerName = function(value) {
|
|
18468
|
-
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;
|
|
18469
19837
|
};
|
|
18470
19838
|
|
|
18471
19839
|
|
|
@@ -18483,15 +19851,33 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getPageToken = function() {
|
|
|
18483
19851
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18484
19852
|
*/
|
|
18485
19853
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setPageToken = function(value) {
|
|
18486
|
-
return jspb.Message.
|
|
19854
|
+
return jspb.Message.setField(this, 4, value);
|
|
18487
19855
|
};
|
|
18488
19856
|
|
|
18489
19857
|
|
|
18490
19858
|
/**
|
|
18491
|
-
*
|
|
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;
|
|
18492
19878
|
* @return {!proto.ondewo.nlu.OperationMetadata.Status}
|
|
18493
19879
|
*/
|
|
18494
|
-
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.
|
|
19880
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getStatus = function() {
|
|
18495
19881
|
return /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
18496
19882
|
};
|
|
18497
19883
|
|
|
@@ -18500,8 +19886,26 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getState = function() {
|
|
|
18500
19886
|
* @param {!proto.ondewo.nlu.OperationMetadata.Status} value
|
|
18501
19887
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18502
19888
|
*/
|
|
18503
|
-
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.
|
|
18504
|
-
return jspb.Message.
|
|
19889
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setStatus = function(value) {
|
|
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;
|
|
18505
19909
|
};
|
|
18506
19910
|
|
|
18507
19911
|
|
|
@@ -18519,7 +19923,25 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getOrderby = function() {
|
|
|
18519
19923
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18520
19924
|
*/
|
|
18521
19925
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setOrderby = function(value) {
|
|
18522
|
-
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;
|
|
18523
19945
|
};
|
|
18524
19946
|
|
|
18525
19947
|
|
|
@@ -19585,8 +21007,11 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.toObject = function(includeInstance
|
|
|
19585
21007
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
19586
21008
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
19587
21009
|
operationName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
19588
|
-
pageToken: jspb.Message.
|
|
19589
|
-
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
|
|
19590
21015
|
};
|
|
19591
21016
|
|
|
19592
21017
|
if (includeInstance) {
|
|
@@ -19643,6 +21068,19 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.deserializeBinaryFromReader = funct
|
|
|
19643
21068
|
var value = /** @type {string} */ (reader.readString());
|
|
19644
21069
|
msg.setUrlQuery(value);
|
|
19645
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;
|
|
19646
21084
|
default:
|
|
19647
21085
|
reader.skipField();
|
|
19648
21086
|
break;
|
|
@@ -19693,20 +21131,42 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.serializeBinaryToWriter = function(
|
|
|
19693
21131
|
f
|
|
19694
21132
|
);
|
|
19695
21133
|
}
|
|
19696
|
-
f =
|
|
19697
|
-
if (f
|
|
21134
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
21135
|
+
if (f != null) {
|
|
19698
21136
|
writer.writeString(
|
|
19699
21137
|
4,
|
|
19700
21138
|
f
|
|
19701
21139
|
);
|
|
19702
21140
|
}
|
|
19703
|
-
f =
|
|
19704
|
-
if (f
|
|
21141
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
21142
|
+
if (f != null) {
|
|
19705
21143
|
writer.writeString(
|
|
19706
21144
|
5,
|
|
19707
21145
|
f
|
|
19708
21146
|
);
|
|
19709
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
|
+
}
|
|
19710
21170
|
};
|
|
19711
21171
|
|
|
19712
21172
|
|
|
@@ -19778,7 +21238,25 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getPageToken = function()
|
|
|
19778
21238
|
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
19779
21239
|
*/
|
|
19780
21240
|
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setPageToken = function(value) {
|
|
19781
|
-
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;
|
|
19782
21260
|
};
|
|
19783
21261
|
|
|
19784
21262
|
|
|
@@ -19796,59 +21274,186 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getUrlQuery = function()
|
|
|
19796
21274
|
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
19797
21275
|
*/
|
|
19798
21276
|
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setUrlQuery = function(value) {
|
|
19799
|
-
return jspb.Message.
|
|
21277
|
+
return jspb.Message.setField(this, 5, value);
|
|
19800
21278
|
};
|
|
19801
21279
|
|
|
19802
21280
|
|
|
19803
|
-
|
|
19804
21281
|
/**
|
|
19805
|
-
*
|
|
19806
|
-
* @
|
|
19807
|
-
* @const
|
|
21282
|
+
* Clears the field making it undefined.
|
|
21283
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
19808
21284
|
*/
|
|
19809
|
-
proto.ondewo.nlu.
|
|
19810
|
-
|
|
21285
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearUrlQuery = function() {
|
|
21286
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
21287
|
+
};
|
|
19811
21288
|
|
|
19812
21289
|
|
|
19813
|
-
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
19814
21290
|
/**
|
|
19815
|
-
*
|
|
19816
|
-
*
|
|
19817
|
-
* Optional fields that are not set will be set to undefined.
|
|
19818
|
-
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
19819
|
-
* For the list of reserved names please see:
|
|
19820
|
-
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
19821
|
-
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
19822
|
-
* JSPB instance for transitional soy proto support:
|
|
19823
|
-
* http://goto/soy-param-migration
|
|
19824
|
-
* @return {!Object}
|
|
21291
|
+
* Returns whether this field is set.
|
|
21292
|
+
* @return {boolean}
|
|
19825
21293
|
*/
|
|
19826
|
-
proto.ondewo.nlu.
|
|
19827
|
-
return
|
|
21294
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasUrlQuery = function() {
|
|
21295
|
+
return jspb.Message.getField(this, 5) != null;
|
|
19828
21296
|
};
|
|
19829
21297
|
|
|
19830
21298
|
|
|
19831
21299
|
/**
|
|
19832
|
-
*
|
|
19833
|
-
* @
|
|
19834
|
-
* the JSPB instance for transitional soy proto support:
|
|
19835
|
-
* http://goto/soy-param-migration
|
|
19836
|
-
* @param {!proto.ondewo.nlu.RagGetCrawlerResultsResponse} msg The msg instance to transform.
|
|
19837
|
-
* @return {!Object}
|
|
19838
|
-
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
21300
|
+
* optional google.protobuf.FieldMask field_mask = 6;
|
|
21301
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
19839
21302
|
*/
|
|
19840
|
-
proto.ondewo.nlu.
|
|
19841
|
-
|
|
19842
|
-
|
|
19843
|
-
|
|
19844
|
-
|
|
19845
|
-
|
|
19846
|
-
|
|
19847
|
-
|
|
19848
|
-
|
|
19849
|
-
|
|
19850
|
-
|
|
19851
|
-
return
|
|
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;
|
|
21405
|
+
};
|
|
21406
|
+
|
|
21407
|
+
|
|
21408
|
+
|
|
21409
|
+
/**
|
|
21410
|
+
* List of repeated fields within this message type.
|
|
21411
|
+
* @private {!Array<number>}
|
|
21412
|
+
* @const
|
|
21413
|
+
*/
|
|
21414
|
+
proto.ondewo.nlu.RagGetCrawlerResultsResponse.repeatedFields_ = [1];
|
|
21415
|
+
|
|
21416
|
+
|
|
21417
|
+
|
|
21418
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
21419
|
+
/**
|
|
21420
|
+
* Creates an object representation of this proto.
|
|
21421
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
21422
|
+
* Optional fields that are not set will be set to undefined.
|
|
21423
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
21424
|
+
* For the list of reserved names please see:
|
|
21425
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
21426
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
21427
|
+
* JSPB instance for transitional soy proto support:
|
|
21428
|
+
* http://goto/soy-param-migration
|
|
21429
|
+
* @return {!Object}
|
|
21430
|
+
*/
|
|
21431
|
+
proto.ondewo.nlu.RagGetCrawlerResultsResponse.prototype.toObject = function(opt_includeInstance) {
|
|
21432
|
+
return proto.ondewo.nlu.RagGetCrawlerResultsResponse.toObject(opt_includeInstance, this);
|
|
21433
|
+
};
|
|
21434
|
+
|
|
21435
|
+
|
|
21436
|
+
/**
|
|
21437
|
+
* Static version of the {@see toObject} method.
|
|
21438
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
21439
|
+
* the JSPB instance for transitional soy proto support:
|
|
21440
|
+
* http://goto/soy-param-migration
|
|
21441
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerResultsResponse} msg The msg instance to transform.
|
|
21442
|
+
* @return {!Object}
|
|
21443
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
21444
|
+
*/
|
|
21445
|
+
proto.ondewo.nlu.RagGetCrawlerResultsResponse.toObject = function(includeInstance, msg) {
|
|
21446
|
+
var f, obj = {
|
|
21447
|
+
crawlerResultsList: jspb.Message.toObjectList(msg.getCrawlerResultsList(),
|
|
21448
|
+
proto.ondewo.nlu.RagCrawlerResult.toObject, includeInstance),
|
|
21449
|
+
nextPageToken: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
21450
|
+
totalSize: jspb.Message.getFieldWithDefault(msg, 3, 0)
|
|
21451
|
+
};
|
|
21452
|
+
|
|
21453
|
+
if (includeInstance) {
|
|
21454
|
+
obj.$jspbMessageInstance = msg;
|
|
21455
|
+
}
|
|
21456
|
+
return obj;
|
|
19852
21457
|
};
|
|
19853
21458
|
}
|
|
19854
21459
|
|
|
@@ -20055,7 +21660,8 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.toObject = function(includeInstance,
|
|
|
20055
21660
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
20056
21661
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
20057
21662
|
operationName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
20058
|
-
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)
|
|
20059
21665
|
};
|
|
20060
21666
|
|
|
20061
21667
|
if (includeInstance) {
|
|
@@ -20108,6 +21714,11 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.deserializeBinaryFromReader = functi
|
|
|
20108
21714
|
var value = /** @type {string} */ (reader.readString());
|
|
20109
21715
|
msg.setUrl(value);
|
|
20110
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;
|
|
20111
21722
|
default:
|
|
20112
21723
|
reader.skipField();
|
|
20113
21724
|
break;
|
|
@@ -20165,6 +21776,14 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.serializeBinaryToWriter = function(m
|
|
|
20165
21776
|
f
|
|
20166
21777
|
);
|
|
20167
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
|
+
}
|
|
20168
21787
|
};
|
|
20169
21788
|
|
|
20170
21789
|
|
|
@@ -20240,6 +21859,43 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.setUrl = function(value) {
|
|
|
20240
21859
|
};
|
|
20241
21860
|
|
|
20242
21861
|
|
|
21862
|
+
/**
|
|
21863
|
+
* optional google.protobuf.FieldMask field_mask = 5;
|
|
21864
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
21865
|
+
*/
|
|
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
|
+
};
|
|
21870
|
+
|
|
21871
|
+
|
|
21872
|
+
/**
|
|
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
|
+
|
|
20243
21899
|
|
|
20244
21900
|
/**
|
|
20245
21901
|
* List of repeated fields within this message type.
|
|
@@ -20884,9 +22540,11 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.toObject = function(includ
|
|
|
20884
22540
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
20885
22541
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
20886
22542
|
crawlerName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
20887
|
-
pageSize: jspb.Message.
|
|
20888
|
-
pageToken: jspb.Message.
|
|
20889
|
-
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
|
|
20890
22548
|
};
|
|
20891
22549
|
|
|
20892
22550
|
if (includeInstance) {
|
|
@@ -20948,6 +22606,14 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.deserializeBinaryFromReade
|
|
|
20948
22606
|
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
20949
22607
|
msg.setFieldMask(value);
|
|
20950
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;
|
|
20951
22617
|
default:
|
|
20952
22618
|
reader.skipField();
|
|
20953
22619
|
break;
|
|
@@ -20998,15 +22664,15 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.serializeBinaryToWriter =
|
|
|
20998
22664
|
f
|
|
20999
22665
|
);
|
|
21000
22666
|
}
|
|
21001
|
-
f =
|
|
21002
|
-
if (f
|
|
22667
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 4));
|
|
22668
|
+
if (f != null) {
|
|
21003
22669
|
writer.writeInt32(
|
|
21004
22670
|
4,
|
|
21005
22671
|
f
|
|
21006
22672
|
);
|
|
21007
22673
|
}
|
|
21008
|
-
f =
|
|
21009
|
-
if (f
|
|
22674
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
22675
|
+
if (f != null) {
|
|
21010
22676
|
writer.writeString(
|
|
21011
22677
|
5,
|
|
21012
22678
|
f
|
|
@@ -21020,6 +22686,20 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.serializeBinaryToWriter =
|
|
|
21020
22686
|
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
21021
22687
|
);
|
|
21022
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
|
+
}
|
|
21023
22703
|
};
|
|
21024
22704
|
|
|
21025
22705
|
|
|
@@ -21091,7 +22771,25 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.getPageSize = fu
|
|
|
21091
22771
|
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
21092
22772
|
*/
|
|
21093
22773
|
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.setPageSize = function(value) {
|
|
21094
|
-
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;
|
|
21095
22793
|
};
|
|
21096
22794
|
|
|
21097
22795
|
|
|
@@ -21109,7 +22807,25 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.getPageToken = f
|
|
|
21109
22807
|
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
21110
22808
|
*/
|
|
21111
22809
|
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.setPageToken = function(value) {
|
|
21112
|
-
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;
|
|
21113
22829
|
};
|
|
21114
22830
|
|
|
21115
22831
|
|
|
@@ -21150,13 +22866,85 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasFieldMask = f
|
|
|
21150
22866
|
};
|
|
21151
22867
|
|
|
21152
22868
|
|
|
21153
|
-
|
|
21154
22869
|
/**
|
|
21155
|
-
*
|
|
21156
|
-
* @
|
|
21157
|
-
* @const
|
|
22870
|
+
* optional string orderby = 7;
|
|
22871
|
+
* @return {string}
|
|
21158
22872
|
*/
|
|
21159
|
-
proto.ondewo.nlu.
|
|
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
|
+
|
|
22941
|
+
|
|
22942
|
+
/**
|
|
22943
|
+
* List of repeated fields within this message type.
|
|
22944
|
+
* @private {!Array<number>}
|
|
22945
|
+
* @const
|
|
22946
|
+
*/
|
|
22947
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse.repeatedFields_ = [1];
|
|
21160
22948
|
|
|
21161
22949
|
|
|
21162
22950
|
|
|
@@ -21340,6 +23128,1053 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse.prototype.setNextPageToke
|
|
|
21340
23128
|
};
|
|
21341
23129
|
|
|
21342
23130
|
|
|
23131
|
+
|
|
23132
|
+
/**
|
|
23133
|
+
* List of repeated fields within this message type.
|
|
23134
|
+
* @private {!Array<number>}
|
|
23135
|
+
* @const
|
|
23136
|
+
*/
|
|
23137
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.repeatedFields_ = [6];
|
|
23138
|
+
|
|
23139
|
+
|
|
23140
|
+
|
|
23141
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
23142
|
+
/**
|
|
23143
|
+
* Creates an object representation of this proto.
|
|
23144
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
23145
|
+
* Optional fields that are not set will be set to undefined.
|
|
23146
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
23147
|
+
* For the list of reserved names please see:
|
|
23148
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
23149
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
23150
|
+
* JSPB instance for transitional soy proto support:
|
|
23151
|
+
* http://goto/soy-param-migration
|
|
23152
|
+
* @return {!Object}
|
|
23153
|
+
*/
|
|
23154
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.toObject = function(opt_includeInstance) {
|
|
23155
|
+
return proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.toObject(opt_includeInstance, this);
|
|
23156
|
+
};
|
|
23157
|
+
|
|
23158
|
+
|
|
23159
|
+
/**
|
|
23160
|
+
* Static version of the {@see toObject} method.
|
|
23161
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
23162
|
+
* the JSPB instance for transitional soy proto support:
|
|
23163
|
+
* http://goto/soy-param-migration
|
|
23164
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} msg The msg instance to transform.
|
|
23165
|
+
* @return {!Object}
|
|
23166
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
23167
|
+
*/
|
|
23168
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.toObject = function(includeInstance, msg) {
|
|
23169
|
+
var f, obj = {
|
|
23170
|
+
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
23171
|
+
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
23172
|
+
operationName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
23173
|
+
pageToken: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
23174
|
+
pageSize: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
23175
|
+
levelFiltersList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
23176
|
+
phaseFilter: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
23177
|
+
searchQuery: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f,
|
|
23178
|
+
startTime: (f = msg.getStartTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
23179
|
+
endTime: (f = msg.getEndTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
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)
|
|
23184
|
+
};
|
|
23185
|
+
|
|
23186
|
+
if (includeInstance) {
|
|
23187
|
+
obj.$jspbMessageInstance = msg;
|
|
23188
|
+
}
|
|
23189
|
+
return obj;
|
|
23190
|
+
};
|
|
23191
|
+
}
|
|
23192
|
+
|
|
23193
|
+
|
|
23194
|
+
/**
|
|
23195
|
+
* Deserializes binary data (in protobuf wire format).
|
|
23196
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
23197
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest}
|
|
23198
|
+
*/
|
|
23199
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.deserializeBinary = function(bytes) {
|
|
23200
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
23201
|
+
var msg = new proto.ondewo.nlu.RagGetCrawlerRunLogsRequest;
|
|
23202
|
+
return proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.deserializeBinaryFromReader(msg, reader);
|
|
23203
|
+
};
|
|
23204
|
+
|
|
23205
|
+
|
|
23206
|
+
/**
|
|
23207
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
23208
|
+
* given reader into the given message object.
|
|
23209
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} msg The message object to deserialize into.
|
|
23210
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
23211
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest}
|
|
23212
|
+
*/
|
|
23213
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
23214
|
+
while (reader.nextField()) {
|
|
23215
|
+
if (reader.isEndGroup()) {
|
|
23216
|
+
break;
|
|
23217
|
+
}
|
|
23218
|
+
var field = reader.getFieldNumber();
|
|
23219
|
+
switch (field) {
|
|
23220
|
+
case 1:
|
|
23221
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23222
|
+
msg.setParent(value);
|
|
23223
|
+
break;
|
|
23224
|
+
case 2:
|
|
23225
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23226
|
+
msg.setLanguageCode(value);
|
|
23227
|
+
break;
|
|
23228
|
+
case 3:
|
|
23229
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23230
|
+
msg.setOperationName(value);
|
|
23231
|
+
break;
|
|
23232
|
+
case 4:
|
|
23233
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23234
|
+
msg.setPageToken(value);
|
|
23235
|
+
break;
|
|
23236
|
+
case 5:
|
|
23237
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
23238
|
+
msg.setPageSize(value);
|
|
23239
|
+
break;
|
|
23240
|
+
case 6:
|
|
23241
|
+
var values = /** @type {!Array<!proto.ondewo.nlu.LogSeverity>} */ (reader.isDelimited() ? reader.readPackedEnum() : [reader.readEnum()]);
|
|
23242
|
+
for (var i = 0; i < values.length; i++) {
|
|
23243
|
+
msg.addLevelFilters(values[i]);
|
|
23244
|
+
}
|
|
23245
|
+
break;
|
|
23246
|
+
case 7:
|
|
23247
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23248
|
+
msg.setPhaseFilter(value);
|
|
23249
|
+
break;
|
|
23250
|
+
case 8:
|
|
23251
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23252
|
+
msg.setSearchQuery(value);
|
|
23253
|
+
break;
|
|
23254
|
+
case 9:
|
|
23255
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
23256
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
23257
|
+
msg.setStartTime(value);
|
|
23258
|
+
break;
|
|
23259
|
+
case 10:
|
|
23260
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
23261
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
23262
|
+
msg.setEndTime(value);
|
|
23263
|
+
break;
|
|
23264
|
+
case 11:
|
|
23265
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23266
|
+
msg.setSourceUrlFilter(value);
|
|
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;
|
|
23281
|
+
default:
|
|
23282
|
+
reader.skipField();
|
|
23283
|
+
break;
|
|
23284
|
+
}
|
|
23285
|
+
}
|
|
23286
|
+
return msg;
|
|
23287
|
+
};
|
|
23288
|
+
|
|
23289
|
+
|
|
23290
|
+
/**
|
|
23291
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
23292
|
+
* @return {!Uint8Array}
|
|
23293
|
+
*/
|
|
23294
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.serializeBinary = function() {
|
|
23295
|
+
var writer = new jspb.BinaryWriter();
|
|
23296
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.serializeBinaryToWriter(this, writer);
|
|
23297
|
+
return writer.getResultBuffer();
|
|
23298
|
+
};
|
|
23299
|
+
|
|
23300
|
+
|
|
23301
|
+
/**
|
|
23302
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
23303
|
+
* format), writing to the given BinaryWriter.
|
|
23304
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} message
|
|
23305
|
+
* @param {!jspb.BinaryWriter} writer
|
|
23306
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
23307
|
+
*/
|
|
23308
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.serializeBinaryToWriter = function(message, writer) {
|
|
23309
|
+
var f = undefined;
|
|
23310
|
+
f = message.getParent();
|
|
23311
|
+
if (f.length > 0) {
|
|
23312
|
+
writer.writeString(
|
|
23313
|
+
1,
|
|
23314
|
+
f
|
|
23315
|
+
);
|
|
23316
|
+
}
|
|
23317
|
+
f = message.getLanguageCode();
|
|
23318
|
+
if (f.length > 0) {
|
|
23319
|
+
writer.writeString(
|
|
23320
|
+
2,
|
|
23321
|
+
f
|
|
23322
|
+
);
|
|
23323
|
+
}
|
|
23324
|
+
f = message.getOperationName();
|
|
23325
|
+
if (f.length > 0) {
|
|
23326
|
+
writer.writeString(
|
|
23327
|
+
3,
|
|
23328
|
+
f
|
|
23329
|
+
);
|
|
23330
|
+
}
|
|
23331
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
23332
|
+
if (f != null) {
|
|
23333
|
+
writer.writeString(
|
|
23334
|
+
4,
|
|
23335
|
+
f
|
|
23336
|
+
);
|
|
23337
|
+
}
|
|
23338
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 5));
|
|
23339
|
+
if (f != null) {
|
|
23340
|
+
writer.writeInt32(
|
|
23341
|
+
5,
|
|
23342
|
+
f
|
|
23343
|
+
);
|
|
23344
|
+
}
|
|
23345
|
+
f = message.getLevelFiltersList();
|
|
23346
|
+
if (f.length > 0) {
|
|
23347
|
+
writer.writePackedEnum(
|
|
23348
|
+
6,
|
|
23349
|
+
f
|
|
23350
|
+
);
|
|
23351
|
+
}
|
|
23352
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
23353
|
+
if (f != null) {
|
|
23354
|
+
writer.writeString(
|
|
23355
|
+
7,
|
|
23356
|
+
f
|
|
23357
|
+
);
|
|
23358
|
+
}
|
|
23359
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
23360
|
+
if (f != null) {
|
|
23361
|
+
writer.writeString(
|
|
23362
|
+
8,
|
|
23363
|
+
f
|
|
23364
|
+
);
|
|
23365
|
+
}
|
|
23366
|
+
f = message.getStartTime();
|
|
23367
|
+
if (f != null) {
|
|
23368
|
+
writer.writeMessage(
|
|
23369
|
+
9,
|
|
23370
|
+
f,
|
|
23371
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
23372
|
+
);
|
|
23373
|
+
}
|
|
23374
|
+
f = message.getEndTime();
|
|
23375
|
+
if (f != null) {
|
|
23376
|
+
writer.writeMessage(
|
|
23377
|
+
10,
|
|
23378
|
+
f,
|
|
23379
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
23380
|
+
);
|
|
23381
|
+
}
|
|
23382
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 11));
|
|
23383
|
+
if (f != null) {
|
|
23384
|
+
writer.writeString(
|
|
23385
|
+
11,
|
|
23386
|
+
f
|
|
23387
|
+
);
|
|
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
|
+
}
|
|
23411
|
+
};
|
|
23412
|
+
|
|
23413
|
+
|
|
23414
|
+
/**
|
|
23415
|
+
* optional string parent = 1;
|
|
23416
|
+
* @return {string}
|
|
23417
|
+
*/
|
|
23418
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getParent = function() {
|
|
23419
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
23420
|
+
};
|
|
23421
|
+
|
|
23422
|
+
|
|
23423
|
+
/**
|
|
23424
|
+
* @param {string} value
|
|
23425
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23426
|
+
*/
|
|
23427
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setParent = function(value) {
|
|
23428
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
23429
|
+
};
|
|
23430
|
+
|
|
23431
|
+
|
|
23432
|
+
/**
|
|
23433
|
+
* optional string language_code = 2;
|
|
23434
|
+
* @return {string}
|
|
23435
|
+
*/
|
|
23436
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getLanguageCode = function() {
|
|
23437
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
23438
|
+
};
|
|
23439
|
+
|
|
23440
|
+
|
|
23441
|
+
/**
|
|
23442
|
+
* @param {string} value
|
|
23443
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23444
|
+
*/
|
|
23445
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setLanguageCode = function(value) {
|
|
23446
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
23447
|
+
};
|
|
23448
|
+
|
|
23449
|
+
|
|
23450
|
+
/**
|
|
23451
|
+
* optional string operation_name = 3;
|
|
23452
|
+
* @return {string}
|
|
23453
|
+
*/
|
|
23454
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getOperationName = function() {
|
|
23455
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
23456
|
+
};
|
|
23457
|
+
|
|
23458
|
+
|
|
23459
|
+
/**
|
|
23460
|
+
* @param {string} value
|
|
23461
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23462
|
+
*/
|
|
23463
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setOperationName = function(value) {
|
|
23464
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
23465
|
+
};
|
|
23466
|
+
|
|
23467
|
+
|
|
23468
|
+
/**
|
|
23469
|
+
* optional string page_token = 4;
|
|
23470
|
+
* @return {string}
|
|
23471
|
+
*/
|
|
23472
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPageToken = function() {
|
|
23473
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
23474
|
+
};
|
|
23475
|
+
|
|
23476
|
+
|
|
23477
|
+
/**
|
|
23478
|
+
* @param {string} value
|
|
23479
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23480
|
+
*/
|
|
23481
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPageToken = function(value) {
|
|
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;
|
|
23501
|
+
};
|
|
23502
|
+
|
|
23503
|
+
|
|
23504
|
+
/**
|
|
23505
|
+
* optional int32 page_size = 5;
|
|
23506
|
+
* @return {number}
|
|
23507
|
+
*/
|
|
23508
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPageSize = function() {
|
|
23509
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
23510
|
+
};
|
|
23511
|
+
|
|
23512
|
+
|
|
23513
|
+
/**
|
|
23514
|
+
* @param {number} value
|
|
23515
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23516
|
+
*/
|
|
23517
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPageSize = function(value) {
|
|
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;
|
|
23537
|
+
};
|
|
23538
|
+
|
|
23539
|
+
|
|
23540
|
+
/**
|
|
23541
|
+
* repeated LogSeverity level_filters = 6;
|
|
23542
|
+
* @return {!Array<!proto.ondewo.nlu.LogSeverity>}
|
|
23543
|
+
*/
|
|
23544
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getLevelFiltersList = function() {
|
|
23545
|
+
return /** @type {!Array<!proto.ondewo.nlu.LogSeverity>} */ (jspb.Message.getRepeatedField(this, 6));
|
|
23546
|
+
};
|
|
23547
|
+
|
|
23548
|
+
|
|
23549
|
+
/**
|
|
23550
|
+
* @param {!Array<!proto.ondewo.nlu.LogSeverity>} value
|
|
23551
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23552
|
+
*/
|
|
23553
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setLevelFiltersList = function(value) {
|
|
23554
|
+
return jspb.Message.setField(this, 6, value || []);
|
|
23555
|
+
};
|
|
23556
|
+
|
|
23557
|
+
|
|
23558
|
+
/**
|
|
23559
|
+
* @param {!proto.ondewo.nlu.LogSeverity} value
|
|
23560
|
+
* @param {number=} opt_index
|
|
23561
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23562
|
+
*/
|
|
23563
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.addLevelFilters = function(value, opt_index) {
|
|
23564
|
+
return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
|
|
23565
|
+
};
|
|
23566
|
+
|
|
23567
|
+
|
|
23568
|
+
/**
|
|
23569
|
+
* Clears the list making it empty but non-null.
|
|
23570
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23571
|
+
*/
|
|
23572
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearLevelFiltersList = function() {
|
|
23573
|
+
return this.setLevelFiltersList([]);
|
|
23574
|
+
};
|
|
23575
|
+
|
|
23576
|
+
|
|
23577
|
+
/**
|
|
23578
|
+
* optional string phase_filter = 7;
|
|
23579
|
+
* @return {string}
|
|
23580
|
+
*/
|
|
23581
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPhaseFilter = function() {
|
|
23582
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
23583
|
+
};
|
|
23584
|
+
|
|
23585
|
+
|
|
23586
|
+
/**
|
|
23587
|
+
* @param {string} value
|
|
23588
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23589
|
+
*/
|
|
23590
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPhaseFilter = function(value) {
|
|
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;
|
|
23610
|
+
};
|
|
23611
|
+
|
|
23612
|
+
|
|
23613
|
+
/**
|
|
23614
|
+
* optional string search_query = 8;
|
|
23615
|
+
* @return {string}
|
|
23616
|
+
*/
|
|
23617
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getSearchQuery = function() {
|
|
23618
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
23619
|
+
};
|
|
23620
|
+
|
|
23621
|
+
|
|
23622
|
+
/**
|
|
23623
|
+
* @param {string} value
|
|
23624
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23625
|
+
*/
|
|
23626
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setSearchQuery = function(value) {
|
|
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;
|
|
23646
|
+
};
|
|
23647
|
+
|
|
23648
|
+
|
|
23649
|
+
/**
|
|
23650
|
+
* optional google.protobuf.Timestamp start_time = 9;
|
|
23651
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
23652
|
+
*/
|
|
23653
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getStartTime = function() {
|
|
23654
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
23655
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 9));
|
|
23656
|
+
};
|
|
23657
|
+
|
|
23658
|
+
|
|
23659
|
+
/**
|
|
23660
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
23661
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23662
|
+
*/
|
|
23663
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setStartTime = function(value) {
|
|
23664
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
23665
|
+
};
|
|
23666
|
+
|
|
23667
|
+
|
|
23668
|
+
/**
|
|
23669
|
+
* Clears the message field making it undefined.
|
|
23670
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23671
|
+
*/
|
|
23672
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearStartTime = function() {
|
|
23673
|
+
return this.setStartTime(undefined);
|
|
23674
|
+
};
|
|
23675
|
+
|
|
23676
|
+
|
|
23677
|
+
/**
|
|
23678
|
+
* Returns whether this field is set.
|
|
23679
|
+
* @return {boolean}
|
|
23680
|
+
*/
|
|
23681
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasStartTime = function() {
|
|
23682
|
+
return jspb.Message.getField(this, 9) != null;
|
|
23683
|
+
};
|
|
23684
|
+
|
|
23685
|
+
|
|
23686
|
+
/**
|
|
23687
|
+
* optional google.protobuf.Timestamp end_time = 10;
|
|
23688
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
23689
|
+
*/
|
|
23690
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getEndTime = function() {
|
|
23691
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
23692
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 10));
|
|
23693
|
+
};
|
|
23694
|
+
|
|
23695
|
+
|
|
23696
|
+
/**
|
|
23697
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
23698
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23699
|
+
*/
|
|
23700
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setEndTime = function(value) {
|
|
23701
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
23702
|
+
};
|
|
23703
|
+
|
|
23704
|
+
|
|
23705
|
+
/**
|
|
23706
|
+
* Clears the message field making it undefined.
|
|
23707
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23708
|
+
*/
|
|
23709
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearEndTime = function() {
|
|
23710
|
+
return this.setEndTime(undefined);
|
|
23711
|
+
};
|
|
23712
|
+
|
|
23713
|
+
|
|
23714
|
+
/**
|
|
23715
|
+
* Returns whether this field is set.
|
|
23716
|
+
* @return {boolean}
|
|
23717
|
+
*/
|
|
23718
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasEndTime = function() {
|
|
23719
|
+
return jspb.Message.getField(this, 10) != null;
|
|
23720
|
+
};
|
|
23721
|
+
|
|
23722
|
+
|
|
23723
|
+
/**
|
|
23724
|
+
* optional string source_url_filter = 11;
|
|
23725
|
+
* @return {string}
|
|
23726
|
+
*/
|
|
23727
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getSourceUrlFilter = function() {
|
|
23728
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
23729
|
+
};
|
|
23730
|
+
|
|
23731
|
+
|
|
23732
|
+
/**
|
|
23733
|
+
* @param {string} value
|
|
23734
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23735
|
+
*/
|
|
23736
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setSourceUrlFilter = function(value) {
|
|
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;
|
|
23865
|
+
};
|
|
23866
|
+
|
|
23867
|
+
|
|
23868
|
+
|
|
23869
|
+
/**
|
|
23870
|
+
* List of repeated fields within this message type.
|
|
23871
|
+
* @private {!Array<number>}
|
|
23872
|
+
* @const
|
|
23873
|
+
*/
|
|
23874
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.repeatedFields_ = [4];
|
|
23875
|
+
|
|
23876
|
+
|
|
23877
|
+
|
|
23878
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
23879
|
+
/**
|
|
23880
|
+
* Creates an object representation of this proto.
|
|
23881
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
23882
|
+
* Optional fields that are not set will be set to undefined.
|
|
23883
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
23884
|
+
* For the list of reserved names please see:
|
|
23885
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
23886
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
23887
|
+
* JSPB instance for transitional soy proto support:
|
|
23888
|
+
* http://goto/soy-param-migration
|
|
23889
|
+
* @return {!Object}
|
|
23890
|
+
*/
|
|
23891
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.toObject = function(opt_includeInstance) {
|
|
23892
|
+
return proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.toObject(opt_includeInstance, this);
|
|
23893
|
+
};
|
|
23894
|
+
|
|
23895
|
+
|
|
23896
|
+
/**
|
|
23897
|
+
* Static version of the {@see toObject} method.
|
|
23898
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
23899
|
+
* the JSPB instance for transitional soy proto support:
|
|
23900
|
+
* http://goto/soy-param-migration
|
|
23901
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} msg The msg instance to transform.
|
|
23902
|
+
* @return {!Object}
|
|
23903
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
23904
|
+
*/
|
|
23905
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.toObject = function(includeInstance, msg) {
|
|
23906
|
+
var f, obj = {
|
|
23907
|
+
operationName: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
23908
|
+
crawlerName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
23909
|
+
status: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
23910
|
+
entriesList: jspb.Message.toObjectList(msg.getEntriesList(),
|
|
23911
|
+
ondewo_nlu_common_pb.LogEntry.toObject, includeInstance),
|
|
23912
|
+
nextPageToken: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
23913
|
+
totalLogEntries: jspb.Message.getFieldWithDefault(msg, 6, 0)
|
|
23914
|
+
};
|
|
23915
|
+
|
|
23916
|
+
if (includeInstance) {
|
|
23917
|
+
obj.$jspbMessageInstance = msg;
|
|
23918
|
+
}
|
|
23919
|
+
return obj;
|
|
23920
|
+
};
|
|
23921
|
+
}
|
|
23922
|
+
|
|
23923
|
+
|
|
23924
|
+
/**
|
|
23925
|
+
* Deserializes binary data (in protobuf wire format).
|
|
23926
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
23927
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse}
|
|
23928
|
+
*/
|
|
23929
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.deserializeBinary = function(bytes) {
|
|
23930
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
23931
|
+
var msg = new proto.ondewo.nlu.RagGetCrawlerRunLogsResponse;
|
|
23932
|
+
return proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.deserializeBinaryFromReader(msg, reader);
|
|
23933
|
+
};
|
|
23934
|
+
|
|
23935
|
+
|
|
23936
|
+
/**
|
|
23937
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
23938
|
+
* given reader into the given message object.
|
|
23939
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} msg The message object to deserialize into.
|
|
23940
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
23941
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse}
|
|
23942
|
+
*/
|
|
23943
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
23944
|
+
while (reader.nextField()) {
|
|
23945
|
+
if (reader.isEndGroup()) {
|
|
23946
|
+
break;
|
|
23947
|
+
}
|
|
23948
|
+
var field = reader.getFieldNumber();
|
|
23949
|
+
switch (field) {
|
|
23950
|
+
case 1:
|
|
23951
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23952
|
+
msg.setOperationName(value);
|
|
23953
|
+
break;
|
|
23954
|
+
case 2:
|
|
23955
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23956
|
+
msg.setCrawlerName(value);
|
|
23957
|
+
break;
|
|
23958
|
+
case 3:
|
|
23959
|
+
var value = /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (reader.readEnum());
|
|
23960
|
+
msg.setStatus(value);
|
|
23961
|
+
break;
|
|
23962
|
+
case 4:
|
|
23963
|
+
var value = new ondewo_nlu_common_pb.LogEntry;
|
|
23964
|
+
reader.readMessage(value,ondewo_nlu_common_pb.LogEntry.deserializeBinaryFromReader);
|
|
23965
|
+
msg.addEntries(value);
|
|
23966
|
+
break;
|
|
23967
|
+
case 5:
|
|
23968
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23969
|
+
msg.setNextPageToken(value);
|
|
23970
|
+
break;
|
|
23971
|
+
case 6:
|
|
23972
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
23973
|
+
msg.setTotalLogEntries(value);
|
|
23974
|
+
break;
|
|
23975
|
+
default:
|
|
23976
|
+
reader.skipField();
|
|
23977
|
+
break;
|
|
23978
|
+
}
|
|
23979
|
+
}
|
|
23980
|
+
return msg;
|
|
23981
|
+
};
|
|
23982
|
+
|
|
23983
|
+
|
|
23984
|
+
/**
|
|
23985
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
23986
|
+
* @return {!Uint8Array}
|
|
23987
|
+
*/
|
|
23988
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.serializeBinary = function() {
|
|
23989
|
+
var writer = new jspb.BinaryWriter();
|
|
23990
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.serializeBinaryToWriter(this, writer);
|
|
23991
|
+
return writer.getResultBuffer();
|
|
23992
|
+
};
|
|
23993
|
+
|
|
23994
|
+
|
|
23995
|
+
/**
|
|
23996
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
23997
|
+
* format), writing to the given BinaryWriter.
|
|
23998
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} message
|
|
23999
|
+
* @param {!jspb.BinaryWriter} writer
|
|
24000
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
24001
|
+
*/
|
|
24002
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.serializeBinaryToWriter = function(message, writer) {
|
|
24003
|
+
var f = undefined;
|
|
24004
|
+
f = message.getOperationName();
|
|
24005
|
+
if (f.length > 0) {
|
|
24006
|
+
writer.writeString(
|
|
24007
|
+
1,
|
|
24008
|
+
f
|
|
24009
|
+
);
|
|
24010
|
+
}
|
|
24011
|
+
f = message.getCrawlerName();
|
|
24012
|
+
if (f.length > 0) {
|
|
24013
|
+
writer.writeString(
|
|
24014
|
+
2,
|
|
24015
|
+
f
|
|
24016
|
+
);
|
|
24017
|
+
}
|
|
24018
|
+
f = message.getStatus();
|
|
24019
|
+
if (f !== 0.0) {
|
|
24020
|
+
writer.writeEnum(
|
|
24021
|
+
3,
|
|
24022
|
+
f
|
|
24023
|
+
);
|
|
24024
|
+
}
|
|
24025
|
+
f = message.getEntriesList();
|
|
24026
|
+
if (f.length > 0) {
|
|
24027
|
+
writer.writeRepeatedMessage(
|
|
24028
|
+
4,
|
|
24029
|
+
f,
|
|
24030
|
+
ondewo_nlu_common_pb.LogEntry.serializeBinaryToWriter
|
|
24031
|
+
);
|
|
24032
|
+
}
|
|
24033
|
+
f = message.getNextPageToken();
|
|
24034
|
+
if (f.length > 0) {
|
|
24035
|
+
writer.writeString(
|
|
24036
|
+
5,
|
|
24037
|
+
f
|
|
24038
|
+
);
|
|
24039
|
+
}
|
|
24040
|
+
f = message.getTotalLogEntries();
|
|
24041
|
+
if (f !== 0) {
|
|
24042
|
+
writer.writeInt32(
|
|
24043
|
+
6,
|
|
24044
|
+
f
|
|
24045
|
+
);
|
|
24046
|
+
}
|
|
24047
|
+
};
|
|
24048
|
+
|
|
24049
|
+
|
|
24050
|
+
/**
|
|
24051
|
+
* optional string operation_name = 1;
|
|
24052
|
+
* @return {string}
|
|
24053
|
+
*/
|
|
24054
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getOperationName = function() {
|
|
24055
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
24056
|
+
};
|
|
24057
|
+
|
|
24058
|
+
|
|
24059
|
+
/**
|
|
24060
|
+
* @param {string} value
|
|
24061
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
24062
|
+
*/
|
|
24063
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setOperationName = function(value) {
|
|
24064
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
24065
|
+
};
|
|
24066
|
+
|
|
24067
|
+
|
|
24068
|
+
/**
|
|
24069
|
+
* optional string crawler_name = 2;
|
|
24070
|
+
* @return {string}
|
|
24071
|
+
*/
|
|
24072
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getCrawlerName = function() {
|
|
24073
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
24074
|
+
};
|
|
24075
|
+
|
|
24076
|
+
|
|
24077
|
+
/**
|
|
24078
|
+
* @param {string} value
|
|
24079
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
24080
|
+
*/
|
|
24081
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setCrawlerName = function(value) {
|
|
24082
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
24083
|
+
};
|
|
24084
|
+
|
|
24085
|
+
|
|
24086
|
+
/**
|
|
24087
|
+
* optional OperationMetadata.Status status = 3;
|
|
24088
|
+
* @return {!proto.ondewo.nlu.OperationMetadata.Status}
|
|
24089
|
+
*/
|
|
24090
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getStatus = function() {
|
|
24091
|
+
return /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
24092
|
+
};
|
|
24093
|
+
|
|
24094
|
+
|
|
24095
|
+
/**
|
|
24096
|
+
* @param {!proto.ondewo.nlu.OperationMetadata.Status} value
|
|
24097
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
24098
|
+
*/
|
|
24099
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setStatus = function(value) {
|
|
24100
|
+
return jspb.Message.setProto3EnumField(this, 3, value);
|
|
24101
|
+
};
|
|
24102
|
+
|
|
24103
|
+
|
|
24104
|
+
/**
|
|
24105
|
+
* repeated LogEntry entries = 4;
|
|
24106
|
+
* @return {!Array<!proto.ondewo.nlu.LogEntry>}
|
|
24107
|
+
*/
|
|
24108
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getEntriesList = function() {
|
|
24109
|
+
return /** @type{!Array<!proto.ondewo.nlu.LogEntry>} */ (
|
|
24110
|
+
jspb.Message.getRepeatedWrapperField(this, ondewo_nlu_common_pb.LogEntry, 4));
|
|
24111
|
+
};
|
|
24112
|
+
|
|
24113
|
+
|
|
24114
|
+
/**
|
|
24115
|
+
* @param {!Array<!proto.ondewo.nlu.LogEntry>} value
|
|
24116
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
24117
|
+
*/
|
|
24118
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setEntriesList = function(value) {
|
|
24119
|
+
return jspb.Message.setRepeatedWrapperField(this, 4, value);
|
|
24120
|
+
};
|
|
24121
|
+
|
|
24122
|
+
|
|
24123
|
+
/**
|
|
24124
|
+
* @param {!proto.ondewo.nlu.LogEntry=} opt_value
|
|
24125
|
+
* @param {number=} opt_index
|
|
24126
|
+
* @return {!proto.ondewo.nlu.LogEntry}
|
|
24127
|
+
*/
|
|
24128
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.addEntries = function(opt_value, opt_index) {
|
|
24129
|
+
return jspb.Message.addToRepeatedWrapperField(this, 4, opt_value, proto.ondewo.nlu.LogEntry, opt_index);
|
|
24130
|
+
};
|
|
24131
|
+
|
|
24132
|
+
|
|
24133
|
+
/**
|
|
24134
|
+
* Clears the list making it empty but non-null.
|
|
24135
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
24136
|
+
*/
|
|
24137
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.clearEntriesList = function() {
|
|
24138
|
+
return this.setEntriesList([]);
|
|
24139
|
+
};
|
|
24140
|
+
|
|
24141
|
+
|
|
24142
|
+
/**
|
|
24143
|
+
* optional string next_page_token = 5;
|
|
24144
|
+
* @return {string}
|
|
24145
|
+
*/
|
|
24146
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getNextPageToken = function() {
|
|
24147
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
24148
|
+
};
|
|
24149
|
+
|
|
24150
|
+
|
|
24151
|
+
/**
|
|
24152
|
+
* @param {string} value
|
|
24153
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
24154
|
+
*/
|
|
24155
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setNextPageToken = function(value) {
|
|
24156
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
24157
|
+
};
|
|
24158
|
+
|
|
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
|
+
|
|
21343
24178
|
/**
|
|
21344
24179
|
* @enum {number}
|
|
21345
24180
|
*/
|