@ondewo/nlu-client-typescript 6.7.0 → 6.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/ondewo/nlu/rag_pb.d.ts +710 -44
- package/api/ondewo/nlu/rag_pb.js +2140 -217
- package/package.json +1 -1
package/api/ondewo/nlu/rag_pb.js
CHANGED
|
@@ -2021,7 +2021,8 @@ name: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
|
2021
2021
|
description: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
2022
2022
|
avatar: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
2023
2023
|
chunkMethod: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
2024
|
-
parserConfig: (f = msg.getParserConfig()) && proto.ondewo.nlu.RagParserConfig.toObject(includeInstance, f)
|
|
2024
|
+
parserConfig: (f = msg.getParserConfig()) && proto.ondewo.nlu.RagParserConfig.toObject(includeInstance, f),
|
|
2025
|
+
embeddingModelCcaiServiceName: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
2025
2026
|
};
|
|
2026
2027
|
|
|
2027
2028
|
if (includeInstance) {
|
|
@@ -2087,6 +2088,10 @@ proto.ondewo.nlu.RagCreateDatasetRequest.deserializeBinaryFromReader = function(
|
|
|
2087
2088
|
reader.readMessage(value,proto.ondewo.nlu.RagParserConfig.deserializeBinaryFromReader);
|
|
2088
2089
|
msg.setParserConfig(value);
|
|
2089
2090
|
break;
|
|
2091
|
+
case 8:
|
|
2092
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2093
|
+
msg.setEmbeddingModelCcaiServiceName(value);
|
|
2094
|
+
break;
|
|
2090
2095
|
default:
|
|
2091
2096
|
reader.skipField();
|
|
2092
2097
|
break;
|
|
@@ -2166,6 +2171,13 @@ proto.ondewo.nlu.RagCreateDatasetRequest.serializeBinaryToWriter = function(mess
|
|
|
2166
2171
|
proto.ondewo.nlu.RagParserConfig.serializeBinaryToWriter
|
|
2167
2172
|
);
|
|
2168
2173
|
}
|
|
2174
|
+
f = message.getEmbeddingModelCcaiServiceName();
|
|
2175
|
+
if (f.length > 0) {
|
|
2176
|
+
writer.writeString(
|
|
2177
|
+
8,
|
|
2178
|
+
f
|
|
2179
|
+
);
|
|
2180
|
+
}
|
|
2169
2181
|
};
|
|
2170
2182
|
|
|
2171
2183
|
|
|
@@ -2314,6 +2326,24 @@ proto.ondewo.nlu.RagCreateDatasetRequest.prototype.hasParserConfig = function()
|
|
|
2314
2326
|
};
|
|
2315
2327
|
|
|
2316
2328
|
|
|
2329
|
+
/**
|
|
2330
|
+
* optional string embedding_model_ccai_service_name = 8;
|
|
2331
|
+
* @return {string}
|
|
2332
|
+
*/
|
|
2333
|
+
proto.ondewo.nlu.RagCreateDatasetRequest.prototype.getEmbeddingModelCcaiServiceName = function() {
|
|
2334
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
2335
|
+
};
|
|
2336
|
+
|
|
2337
|
+
|
|
2338
|
+
/**
|
|
2339
|
+
* @param {string} value
|
|
2340
|
+
* @return {!proto.ondewo.nlu.RagCreateDatasetRequest} returns this
|
|
2341
|
+
*/
|
|
2342
|
+
proto.ondewo.nlu.RagCreateDatasetRequest.prototype.setEmbeddingModelCcaiServiceName = function(value) {
|
|
2343
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
2344
|
+
};
|
|
2345
|
+
|
|
2346
|
+
|
|
2317
2347
|
|
|
2318
2348
|
/**
|
|
2319
2349
|
* List of repeated fields within this message type.
|
|
@@ -4532,7 +4562,10 @@ description: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
|
4532
4562
|
avatar: (f = jspb.Message.getField(msg, 6)) == null ? undefined : f,
|
|
4533
4563
|
chunkMethod: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
4534
4564
|
parserConfig: (f = msg.getParserConfig()) && proto.ondewo.nlu.RagParserConfig.toObject(includeInstance, f),
|
|
4535
|
-
pagerank: (f = jspb.Message.getField(msg, 9)) == null ? undefined : f
|
|
4565
|
+
pagerank: (f = jspb.Message.getField(msg, 9)) == null ? undefined : f,
|
|
4566
|
+
updateMask: (f = msg.getUpdateMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
|
|
4567
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
|
|
4568
|
+
embeddingModelCcaiServiceName: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
4536
4569
|
};
|
|
4537
4570
|
|
|
4538
4571
|
if (includeInstance) {
|
|
@@ -4606,6 +4639,20 @@ proto.ondewo.nlu.RagUpdateDatasetRequest.deserializeBinaryFromReader = function(
|
|
|
4606
4639
|
var value = /** @type {number} */ (reader.readInt32());
|
|
4607
4640
|
msg.setPagerank(value);
|
|
4608
4641
|
break;
|
|
4642
|
+
case 10:
|
|
4643
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
4644
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
4645
|
+
msg.setUpdateMask(value);
|
|
4646
|
+
break;
|
|
4647
|
+
case 11:
|
|
4648
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
4649
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
4650
|
+
msg.setFieldMask(value);
|
|
4651
|
+
break;
|
|
4652
|
+
case 12:
|
|
4653
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4654
|
+
msg.setEmbeddingModelCcaiServiceName(value);
|
|
4655
|
+
break;
|
|
4609
4656
|
default:
|
|
4610
4657
|
reader.skipField();
|
|
4611
4658
|
break;
|
|
@@ -4699,6 +4746,29 @@ proto.ondewo.nlu.RagUpdateDatasetRequest.serializeBinaryToWriter = function(mess
|
|
|
4699
4746
|
f
|
|
4700
4747
|
);
|
|
4701
4748
|
}
|
|
4749
|
+
f = message.getUpdateMask();
|
|
4750
|
+
if (f != null) {
|
|
4751
|
+
writer.writeMessage(
|
|
4752
|
+
10,
|
|
4753
|
+
f,
|
|
4754
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
4755
|
+
);
|
|
4756
|
+
}
|
|
4757
|
+
f = message.getFieldMask();
|
|
4758
|
+
if (f != null) {
|
|
4759
|
+
writer.writeMessage(
|
|
4760
|
+
11,
|
|
4761
|
+
f,
|
|
4762
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
4763
|
+
);
|
|
4764
|
+
}
|
|
4765
|
+
f = message.getEmbeddingModelCcaiServiceName();
|
|
4766
|
+
if (f.length > 0) {
|
|
4767
|
+
writer.writeString(
|
|
4768
|
+
12,
|
|
4769
|
+
f
|
|
4770
|
+
);
|
|
4771
|
+
}
|
|
4702
4772
|
};
|
|
4703
4773
|
|
|
4704
4774
|
|
|
@@ -4937,6 +5007,98 @@ proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.hasPagerank = function() {
|
|
|
4937
5007
|
};
|
|
4938
5008
|
|
|
4939
5009
|
|
|
5010
|
+
/**
|
|
5011
|
+
* optional google.protobuf.FieldMask update_mask = 10;
|
|
5012
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
5013
|
+
*/
|
|
5014
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.getUpdateMask = function() {
|
|
5015
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
5016
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 10));
|
|
5017
|
+
};
|
|
5018
|
+
|
|
5019
|
+
|
|
5020
|
+
/**
|
|
5021
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
5022
|
+
* @return {!proto.ondewo.nlu.RagUpdateDatasetRequest} returns this
|
|
5023
|
+
*/
|
|
5024
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.setUpdateMask = function(value) {
|
|
5025
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
5026
|
+
};
|
|
5027
|
+
|
|
5028
|
+
|
|
5029
|
+
/**
|
|
5030
|
+
* Clears the message field making it undefined.
|
|
5031
|
+
* @return {!proto.ondewo.nlu.RagUpdateDatasetRequest} returns this
|
|
5032
|
+
*/
|
|
5033
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.clearUpdateMask = function() {
|
|
5034
|
+
return this.setUpdateMask(undefined);
|
|
5035
|
+
};
|
|
5036
|
+
|
|
5037
|
+
|
|
5038
|
+
/**
|
|
5039
|
+
* Returns whether this field is set.
|
|
5040
|
+
* @return {boolean}
|
|
5041
|
+
*/
|
|
5042
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.hasUpdateMask = function() {
|
|
5043
|
+
return jspb.Message.getField(this, 10) != null;
|
|
5044
|
+
};
|
|
5045
|
+
|
|
5046
|
+
|
|
5047
|
+
/**
|
|
5048
|
+
* optional google.protobuf.FieldMask field_mask = 11;
|
|
5049
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
5050
|
+
*/
|
|
5051
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.getFieldMask = function() {
|
|
5052
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
5053
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 11));
|
|
5054
|
+
};
|
|
5055
|
+
|
|
5056
|
+
|
|
5057
|
+
/**
|
|
5058
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
5059
|
+
* @return {!proto.ondewo.nlu.RagUpdateDatasetRequest} returns this
|
|
5060
|
+
*/
|
|
5061
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.setFieldMask = function(value) {
|
|
5062
|
+
return jspb.Message.setWrapperField(this, 11, value);
|
|
5063
|
+
};
|
|
5064
|
+
|
|
5065
|
+
|
|
5066
|
+
/**
|
|
5067
|
+
* Clears the message field making it undefined.
|
|
5068
|
+
* @return {!proto.ondewo.nlu.RagUpdateDatasetRequest} returns this
|
|
5069
|
+
*/
|
|
5070
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.clearFieldMask = function() {
|
|
5071
|
+
return this.setFieldMask(undefined);
|
|
5072
|
+
};
|
|
5073
|
+
|
|
5074
|
+
|
|
5075
|
+
/**
|
|
5076
|
+
* Returns whether this field is set.
|
|
5077
|
+
* @return {boolean}
|
|
5078
|
+
*/
|
|
5079
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.hasFieldMask = function() {
|
|
5080
|
+
return jspb.Message.getField(this, 11) != null;
|
|
5081
|
+
};
|
|
5082
|
+
|
|
5083
|
+
|
|
5084
|
+
/**
|
|
5085
|
+
* optional string embedding_model_ccai_service_name = 12;
|
|
5086
|
+
* @return {string}
|
|
5087
|
+
*/
|
|
5088
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.getEmbeddingModelCcaiServiceName = function() {
|
|
5089
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
5090
|
+
};
|
|
5091
|
+
|
|
5092
|
+
|
|
5093
|
+
/**
|
|
5094
|
+
* @param {string} value
|
|
5095
|
+
* @return {!proto.ondewo.nlu.RagUpdateDatasetRequest} returns this
|
|
5096
|
+
*/
|
|
5097
|
+
proto.ondewo.nlu.RagUpdateDatasetRequest.prototype.setEmbeddingModelCcaiServiceName = function(value) {
|
|
5098
|
+
return jspb.Message.setProto3StringField(this, 12, value);
|
|
5099
|
+
};
|
|
5100
|
+
|
|
5101
|
+
|
|
4940
5102
|
|
|
4941
5103
|
/**
|
|
4942
5104
|
* List of repeated fields within this message type.
|
|
@@ -5221,7 +5383,9 @@ pageToken: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
|
5221
5383
|
id: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
5222
5384
|
name: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
5223
5385
|
orderby: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
5224
|
-
desc: (f = jspb.Message.getBooleanField(msg, 7)) == null ? undefined : f
|
|
5386
|
+
desc: (f = jspb.Message.getBooleanField(msg, 7)) == null ? undefined : f,
|
|
5387
|
+
sortingMode: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f,
|
|
5388
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
5225
5389
|
};
|
|
5226
5390
|
|
|
5227
5391
|
if (includeInstance) {
|
|
@@ -5286,6 +5450,15 @@ proto.ondewo.nlu.RagListDatasetsRequest.deserializeBinaryFromReader = function(m
|
|
|
5286
5450
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
5287
5451
|
msg.setDesc(value);
|
|
5288
5452
|
break;
|
|
5453
|
+
case 8:
|
|
5454
|
+
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
5455
|
+
msg.setSortingMode(value);
|
|
5456
|
+
break;
|
|
5457
|
+
case 9:
|
|
5458
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
5459
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
5460
|
+
msg.setFieldMask(value);
|
|
5461
|
+
break;
|
|
5289
5462
|
default:
|
|
5290
5463
|
reader.skipField();
|
|
5291
5464
|
break;
|
|
@@ -5364,6 +5537,21 @@ proto.ondewo.nlu.RagListDatasetsRequest.serializeBinaryToWriter = function(messa
|
|
|
5364
5537
|
f
|
|
5365
5538
|
);
|
|
5366
5539
|
}
|
|
5540
|
+
f = /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getField(message, 8));
|
|
5541
|
+
if (f != null) {
|
|
5542
|
+
writer.writeEnum(
|
|
5543
|
+
8,
|
|
5544
|
+
f
|
|
5545
|
+
);
|
|
5546
|
+
}
|
|
5547
|
+
f = message.getFieldMask();
|
|
5548
|
+
if (f != null) {
|
|
5549
|
+
writer.writeMessage(
|
|
5550
|
+
9,
|
|
5551
|
+
f,
|
|
5552
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
5553
|
+
);
|
|
5554
|
+
}
|
|
5367
5555
|
};
|
|
5368
5556
|
|
|
5369
5557
|
|
|
@@ -5511,6 +5699,79 @@ proto.ondewo.nlu.RagListDatasetsRequest.prototype.hasDesc = function() {
|
|
|
5511
5699
|
};
|
|
5512
5700
|
|
|
5513
5701
|
|
|
5702
|
+
/**
|
|
5703
|
+
* optional SortingMode sorting_mode = 8;
|
|
5704
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
5705
|
+
*/
|
|
5706
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.getSortingMode = function() {
|
|
5707
|
+
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
|
|
5708
|
+
};
|
|
5709
|
+
|
|
5710
|
+
|
|
5711
|
+
/**
|
|
5712
|
+
* @param {!proto.ondewo.nlu.SortingMode} value
|
|
5713
|
+
* @return {!proto.ondewo.nlu.RagListDatasetsRequest} returns this
|
|
5714
|
+
*/
|
|
5715
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.setSortingMode = function(value) {
|
|
5716
|
+
return jspb.Message.setField(this, 8, value);
|
|
5717
|
+
};
|
|
5718
|
+
|
|
5719
|
+
|
|
5720
|
+
/**
|
|
5721
|
+
* Clears the field making it undefined.
|
|
5722
|
+
* @return {!proto.ondewo.nlu.RagListDatasetsRequest} returns this
|
|
5723
|
+
*/
|
|
5724
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.clearSortingMode = function() {
|
|
5725
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
5726
|
+
};
|
|
5727
|
+
|
|
5728
|
+
|
|
5729
|
+
/**
|
|
5730
|
+
* Returns whether this field is set.
|
|
5731
|
+
* @return {boolean}
|
|
5732
|
+
*/
|
|
5733
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.hasSortingMode = function() {
|
|
5734
|
+
return jspb.Message.getField(this, 8) != null;
|
|
5735
|
+
};
|
|
5736
|
+
|
|
5737
|
+
|
|
5738
|
+
/**
|
|
5739
|
+
* optional google.protobuf.FieldMask field_mask = 9;
|
|
5740
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
5741
|
+
*/
|
|
5742
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.getFieldMask = function() {
|
|
5743
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
5744
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 9));
|
|
5745
|
+
};
|
|
5746
|
+
|
|
5747
|
+
|
|
5748
|
+
/**
|
|
5749
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
5750
|
+
* @return {!proto.ondewo.nlu.RagListDatasetsRequest} returns this
|
|
5751
|
+
*/
|
|
5752
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.setFieldMask = function(value) {
|
|
5753
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
5754
|
+
};
|
|
5755
|
+
|
|
5756
|
+
|
|
5757
|
+
/**
|
|
5758
|
+
* Clears the message field making it undefined.
|
|
5759
|
+
* @return {!proto.ondewo.nlu.RagListDatasetsRequest} returns this
|
|
5760
|
+
*/
|
|
5761
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.clearFieldMask = function() {
|
|
5762
|
+
return this.setFieldMask(undefined);
|
|
5763
|
+
};
|
|
5764
|
+
|
|
5765
|
+
|
|
5766
|
+
/**
|
|
5767
|
+
* Returns whether this field is set.
|
|
5768
|
+
* @return {boolean}
|
|
5769
|
+
*/
|
|
5770
|
+
proto.ondewo.nlu.RagListDatasetsRequest.prototype.hasFieldMask = function() {
|
|
5771
|
+
return jspb.Message.getField(this, 9) != null;
|
|
5772
|
+
};
|
|
5773
|
+
|
|
5774
|
+
|
|
5514
5775
|
|
|
5515
5776
|
/**
|
|
5516
5777
|
* List of repeated fields within this message type.
|
|
@@ -6931,7 +7192,9 @@ name: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
|
6931
7192
|
chunkMethod: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
6932
7193
|
parserConfig: (f = msg.getParserConfig()) && proto.ondewo.nlu.RagParserConfig.toObject(includeInstance, f),
|
|
6933
7194
|
enabled: (f = jspb.Message.getBooleanField(msg, 8)) == null ? undefined : f,
|
|
6934
|
-
metaFields: (f = msg.getMetaFields()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
|
|
7195
|
+
metaFields: (f = msg.getMetaFields()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
7196
|
+
updateMask: (f = msg.getUpdateMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
|
|
7197
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
6935
7198
|
};
|
|
6936
7199
|
|
|
6937
7200
|
if (includeInstance) {
|
|
@@ -7006,6 +7269,16 @@ proto.ondewo.nlu.RagUpdateDocumentRequest.deserializeBinaryFromReader = function
|
|
|
7006
7269
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
7007
7270
|
msg.setMetaFields(value);
|
|
7008
7271
|
break;
|
|
7272
|
+
case 10:
|
|
7273
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
7274
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
7275
|
+
msg.setUpdateMask(value);
|
|
7276
|
+
break;
|
|
7277
|
+
case 11:
|
|
7278
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
7279
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
7280
|
+
msg.setFieldMask(value);
|
|
7281
|
+
break;
|
|
7009
7282
|
default:
|
|
7010
7283
|
reader.skipField();
|
|
7011
7284
|
break;
|
|
@@ -7100,6 +7373,22 @@ proto.ondewo.nlu.RagUpdateDocumentRequest.serializeBinaryToWriter = function(mes
|
|
|
7100
7373
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
7101
7374
|
);
|
|
7102
7375
|
}
|
|
7376
|
+
f = message.getUpdateMask();
|
|
7377
|
+
if (f != null) {
|
|
7378
|
+
writer.writeMessage(
|
|
7379
|
+
10,
|
|
7380
|
+
f,
|
|
7381
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
7382
|
+
);
|
|
7383
|
+
}
|
|
7384
|
+
f = message.getFieldMask();
|
|
7385
|
+
if (f != null) {
|
|
7386
|
+
writer.writeMessage(
|
|
7387
|
+
11,
|
|
7388
|
+
f,
|
|
7389
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
7390
|
+
);
|
|
7391
|
+
}
|
|
7103
7392
|
};
|
|
7104
7393
|
|
|
7105
7394
|
|
|
@@ -7321,10 +7610,84 @@ proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.hasMetaFields = function() {
|
|
|
7321
7610
|
};
|
|
7322
7611
|
|
|
7323
7612
|
|
|
7324
|
-
|
|
7325
|
-
|
|
7326
|
-
|
|
7327
|
-
|
|
7613
|
+
/**
|
|
7614
|
+
* optional google.protobuf.FieldMask update_mask = 10;
|
|
7615
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
7616
|
+
*/
|
|
7617
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.getUpdateMask = function() {
|
|
7618
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
7619
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 10));
|
|
7620
|
+
};
|
|
7621
|
+
|
|
7622
|
+
|
|
7623
|
+
/**
|
|
7624
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
7625
|
+
* @return {!proto.ondewo.nlu.RagUpdateDocumentRequest} returns this
|
|
7626
|
+
*/
|
|
7627
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.setUpdateMask = function(value) {
|
|
7628
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
7629
|
+
};
|
|
7630
|
+
|
|
7631
|
+
|
|
7632
|
+
/**
|
|
7633
|
+
* Clears the message field making it undefined.
|
|
7634
|
+
* @return {!proto.ondewo.nlu.RagUpdateDocumentRequest} returns this
|
|
7635
|
+
*/
|
|
7636
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.clearUpdateMask = function() {
|
|
7637
|
+
return this.setUpdateMask(undefined);
|
|
7638
|
+
};
|
|
7639
|
+
|
|
7640
|
+
|
|
7641
|
+
/**
|
|
7642
|
+
* Returns whether this field is set.
|
|
7643
|
+
* @return {boolean}
|
|
7644
|
+
*/
|
|
7645
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.hasUpdateMask = function() {
|
|
7646
|
+
return jspb.Message.getField(this, 10) != null;
|
|
7647
|
+
};
|
|
7648
|
+
|
|
7649
|
+
|
|
7650
|
+
/**
|
|
7651
|
+
* optional google.protobuf.FieldMask field_mask = 11;
|
|
7652
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
7653
|
+
*/
|
|
7654
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.getFieldMask = function() {
|
|
7655
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
7656
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 11));
|
|
7657
|
+
};
|
|
7658
|
+
|
|
7659
|
+
|
|
7660
|
+
/**
|
|
7661
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
7662
|
+
* @return {!proto.ondewo.nlu.RagUpdateDocumentRequest} returns this
|
|
7663
|
+
*/
|
|
7664
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.setFieldMask = function(value) {
|
|
7665
|
+
return jspb.Message.setWrapperField(this, 11, value);
|
|
7666
|
+
};
|
|
7667
|
+
|
|
7668
|
+
|
|
7669
|
+
/**
|
|
7670
|
+
* Clears the message field making it undefined.
|
|
7671
|
+
* @return {!proto.ondewo.nlu.RagUpdateDocumentRequest} returns this
|
|
7672
|
+
*/
|
|
7673
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.clearFieldMask = function() {
|
|
7674
|
+
return this.setFieldMask(undefined);
|
|
7675
|
+
};
|
|
7676
|
+
|
|
7677
|
+
|
|
7678
|
+
/**
|
|
7679
|
+
* Returns whether this field is set.
|
|
7680
|
+
* @return {boolean}
|
|
7681
|
+
*/
|
|
7682
|
+
proto.ondewo.nlu.RagUpdateDocumentRequest.prototype.hasFieldMask = function() {
|
|
7683
|
+
return jspb.Message.getField(this, 11) != null;
|
|
7684
|
+
};
|
|
7685
|
+
|
|
7686
|
+
|
|
7687
|
+
|
|
7688
|
+
|
|
7689
|
+
|
|
7690
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
7328
7691
|
/**
|
|
7329
7692
|
* Creates an object representation of this proto.
|
|
7330
7693
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
@@ -7798,7 +8161,9 @@ suffixList: (f = jspb.Message.getRepeatedField(msg, 10)) == null ? undefined : f
|
|
|
7798
8161
|
runStatusList: (f = jspb.Message.getRepeatedField(msg, 11)) == null ? undefined : f,
|
|
7799
8162
|
createTimeFrom: (f = msg.getCreateTimeFrom()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
7800
8163
|
createTimeTo: (f = msg.getCreateTimeTo()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
7801
|
-
metadataCondition: (f = msg.getMetadataCondition()) && proto.ondewo.nlu.RagMetadataConditions.toObject(includeInstance, f)
|
|
8164
|
+
metadataCondition: (f = msg.getMetadataCondition()) && proto.ondewo.nlu.RagMetadataConditions.toObject(includeInstance, f),
|
|
8165
|
+
sortingMode: (f = jspb.Message.getField(msg, 15)) == null ? undefined : f,
|
|
8166
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
7802
8167
|
};
|
|
7803
8168
|
|
|
7804
8169
|
if (includeInstance) {
|
|
@@ -7896,6 +8261,15 @@ proto.ondewo.nlu.RagListDocumentsRequest.deserializeBinaryFromReader = function(
|
|
|
7896
8261
|
reader.readMessage(value,proto.ondewo.nlu.RagMetadataConditions.deserializeBinaryFromReader);
|
|
7897
8262
|
msg.setMetadataCondition(value);
|
|
7898
8263
|
break;
|
|
8264
|
+
case 15:
|
|
8265
|
+
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
8266
|
+
msg.setSortingMode(value);
|
|
8267
|
+
break;
|
|
8268
|
+
case 16:
|
|
8269
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
8270
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
8271
|
+
msg.setFieldMask(value);
|
|
8272
|
+
break;
|
|
7899
8273
|
default:
|
|
7900
8274
|
reader.skipField();
|
|
7901
8275
|
break;
|
|
@@ -8026,6 +8400,21 @@ proto.ondewo.nlu.RagListDocumentsRequest.serializeBinaryToWriter = function(mess
|
|
|
8026
8400
|
proto.ondewo.nlu.RagMetadataConditions.serializeBinaryToWriter
|
|
8027
8401
|
);
|
|
8028
8402
|
}
|
|
8403
|
+
f = /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getField(message, 15));
|
|
8404
|
+
if (f != null) {
|
|
8405
|
+
writer.writeEnum(
|
|
8406
|
+
15,
|
|
8407
|
+
f
|
|
8408
|
+
);
|
|
8409
|
+
}
|
|
8410
|
+
f = message.getFieldMask();
|
|
8411
|
+
if (f != null) {
|
|
8412
|
+
writer.writeMessage(
|
|
8413
|
+
16,
|
|
8414
|
+
f,
|
|
8415
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
8416
|
+
);
|
|
8417
|
+
}
|
|
8029
8418
|
};
|
|
8030
8419
|
|
|
8031
8420
|
|
|
@@ -8394,6 +8783,79 @@ proto.ondewo.nlu.RagListDocumentsRequest.prototype.hasMetadataCondition = functi
|
|
|
8394
8783
|
};
|
|
8395
8784
|
|
|
8396
8785
|
|
|
8786
|
+
/**
|
|
8787
|
+
* optional SortingMode sorting_mode = 15;
|
|
8788
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
8789
|
+
*/
|
|
8790
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.getSortingMode = function() {
|
|
8791
|
+
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 15, 0));
|
|
8792
|
+
};
|
|
8793
|
+
|
|
8794
|
+
|
|
8795
|
+
/**
|
|
8796
|
+
* @param {!proto.ondewo.nlu.SortingMode} value
|
|
8797
|
+
* @return {!proto.ondewo.nlu.RagListDocumentsRequest} returns this
|
|
8798
|
+
*/
|
|
8799
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.setSortingMode = function(value) {
|
|
8800
|
+
return jspb.Message.setField(this, 15, value);
|
|
8801
|
+
};
|
|
8802
|
+
|
|
8803
|
+
|
|
8804
|
+
/**
|
|
8805
|
+
* Clears the field making it undefined.
|
|
8806
|
+
* @return {!proto.ondewo.nlu.RagListDocumentsRequest} returns this
|
|
8807
|
+
*/
|
|
8808
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.clearSortingMode = function() {
|
|
8809
|
+
return jspb.Message.setField(this, 15, undefined);
|
|
8810
|
+
};
|
|
8811
|
+
|
|
8812
|
+
|
|
8813
|
+
/**
|
|
8814
|
+
* Returns whether this field is set.
|
|
8815
|
+
* @return {boolean}
|
|
8816
|
+
*/
|
|
8817
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.hasSortingMode = function() {
|
|
8818
|
+
return jspb.Message.getField(this, 15) != null;
|
|
8819
|
+
};
|
|
8820
|
+
|
|
8821
|
+
|
|
8822
|
+
/**
|
|
8823
|
+
* optional google.protobuf.FieldMask field_mask = 16;
|
|
8824
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
8825
|
+
*/
|
|
8826
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.getFieldMask = function() {
|
|
8827
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
8828
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 16));
|
|
8829
|
+
};
|
|
8830
|
+
|
|
8831
|
+
|
|
8832
|
+
/**
|
|
8833
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
8834
|
+
* @return {!proto.ondewo.nlu.RagListDocumentsRequest} returns this
|
|
8835
|
+
*/
|
|
8836
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.setFieldMask = function(value) {
|
|
8837
|
+
return jspb.Message.setWrapperField(this, 16, value);
|
|
8838
|
+
};
|
|
8839
|
+
|
|
8840
|
+
|
|
8841
|
+
/**
|
|
8842
|
+
* Clears the message field making it undefined.
|
|
8843
|
+
* @return {!proto.ondewo.nlu.RagListDocumentsRequest} returns this
|
|
8844
|
+
*/
|
|
8845
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.clearFieldMask = function() {
|
|
8846
|
+
return this.setFieldMask(undefined);
|
|
8847
|
+
};
|
|
8848
|
+
|
|
8849
|
+
|
|
8850
|
+
/**
|
|
8851
|
+
* Returns whether this field is set.
|
|
8852
|
+
* @return {boolean}
|
|
8853
|
+
*/
|
|
8854
|
+
proto.ondewo.nlu.RagListDocumentsRequest.prototype.hasFieldMask = function() {
|
|
8855
|
+
return jspb.Message.getField(this, 16) != null;
|
|
8856
|
+
};
|
|
8857
|
+
|
|
8858
|
+
|
|
8397
8859
|
|
|
8398
8860
|
/**
|
|
8399
8861
|
* List of repeated fields within this message type.
|
|
@@ -9568,7 +10030,9 @@ similarityThreshold: (f = jspb.Message.getOptionalFloatingPointField(msg, 10)) =
|
|
|
9568
10030
|
vectorSimilarityWeight: (f = jspb.Message.getOptionalFloatingPointField(msg, 11)) == null ? undefined : f,
|
|
9569
10031
|
topK: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
9570
10032
|
highlight: (f = jspb.Message.getBooleanField(msg, 13)) == null ? undefined : f,
|
|
9571
|
-
keyword: (f = jspb.Message.getBooleanField(msg, 14)) == null ? undefined : f
|
|
10033
|
+
keyword: (f = jspb.Message.getBooleanField(msg, 14)) == null ? undefined : f,
|
|
10034
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
|
|
10035
|
+
rerankModelCcaiServiceName: (f = jspb.Message.getField(msg, 16)) == null ? undefined : f
|
|
9572
10036
|
};
|
|
9573
10037
|
|
|
9574
10038
|
if (includeInstance) {
|
|
@@ -9662,6 +10126,15 @@ proto.ondewo.nlu.RagRetrievalRequest.deserializeBinaryFromReader = function(msg,
|
|
|
9662
10126
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
9663
10127
|
msg.setKeyword(value);
|
|
9664
10128
|
break;
|
|
10129
|
+
case 15:
|
|
10130
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
10131
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
10132
|
+
msg.setFieldMask(value);
|
|
10133
|
+
break;
|
|
10134
|
+
case 16:
|
|
10135
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10136
|
+
msg.setRerankModelCcaiServiceName(value);
|
|
10137
|
+
break;
|
|
9665
10138
|
default:
|
|
9666
10139
|
reader.skipField();
|
|
9667
10140
|
break;
|
|
@@ -9790,6 +10263,21 @@ proto.ondewo.nlu.RagRetrievalRequest.serializeBinaryToWriter = function(message,
|
|
|
9790
10263
|
f
|
|
9791
10264
|
);
|
|
9792
10265
|
}
|
|
10266
|
+
f = message.getFieldMask();
|
|
10267
|
+
if (f != null) {
|
|
10268
|
+
writer.writeMessage(
|
|
10269
|
+
15,
|
|
10270
|
+
f,
|
|
10271
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
10272
|
+
);
|
|
10273
|
+
}
|
|
10274
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 16));
|
|
10275
|
+
if (f != null) {
|
|
10276
|
+
writer.writeString(
|
|
10277
|
+
16,
|
|
10278
|
+
f
|
|
10279
|
+
);
|
|
10280
|
+
}
|
|
9793
10281
|
};
|
|
9794
10282
|
|
|
9795
10283
|
|
|
@@ -10211,6 +10699,79 @@ proto.ondewo.nlu.RagRetrievalRequest.prototype.hasKeyword = function() {
|
|
|
10211
10699
|
};
|
|
10212
10700
|
|
|
10213
10701
|
|
|
10702
|
+
/**
|
|
10703
|
+
* optional google.protobuf.FieldMask field_mask = 15;
|
|
10704
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
10705
|
+
*/
|
|
10706
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.getFieldMask = function() {
|
|
10707
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
10708
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 15));
|
|
10709
|
+
};
|
|
10710
|
+
|
|
10711
|
+
|
|
10712
|
+
/**
|
|
10713
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
10714
|
+
* @return {!proto.ondewo.nlu.RagRetrievalRequest} returns this
|
|
10715
|
+
*/
|
|
10716
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.setFieldMask = function(value) {
|
|
10717
|
+
return jspb.Message.setWrapperField(this, 15, value);
|
|
10718
|
+
};
|
|
10719
|
+
|
|
10720
|
+
|
|
10721
|
+
/**
|
|
10722
|
+
* Clears the message field making it undefined.
|
|
10723
|
+
* @return {!proto.ondewo.nlu.RagRetrievalRequest} returns this
|
|
10724
|
+
*/
|
|
10725
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.clearFieldMask = function() {
|
|
10726
|
+
return this.setFieldMask(undefined);
|
|
10727
|
+
};
|
|
10728
|
+
|
|
10729
|
+
|
|
10730
|
+
/**
|
|
10731
|
+
* Returns whether this field is set.
|
|
10732
|
+
* @return {boolean}
|
|
10733
|
+
*/
|
|
10734
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.hasFieldMask = function() {
|
|
10735
|
+
return jspb.Message.getField(this, 15) != null;
|
|
10736
|
+
};
|
|
10737
|
+
|
|
10738
|
+
|
|
10739
|
+
/**
|
|
10740
|
+
* optional string rerank_model_ccai_service_name = 16;
|
|
10741
|
+
* @return {string}
|
|
10742
|
+
*/
|
|
10743
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.getRerankModelCcaiServiceName = function() {
|
|
10744
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
|
|
10745
|
+
};
|
|
10746
|
+
|
|
10747
|
+
|
|
10748
|
+
/**
|
|
10749
|
+
* @param {string} value
|
|
10750
|
+
* @return {!proto.ondewo.nlu.RagRetrievalRequest} returns this
|
|
10751
|
+
*/
|
|
10752
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.setRerankModelCcaiServiceName = function(value) {
|
|
10753
|
+
return jspb.Message.setField(this, 16, value);
|
|
10754
|
+
};
|
|
10755
|
+
|
|
10756
|
+
|
|
10757
|
+
/**
|
|
10758
|
+
* Clears the field making it undefined.
|
|
10759
|
+
* @return {!proto.ondewo.nlu.RagRetrievalRequest} returns this
|
|
10760
|
+
*/
|
|
10761
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.clearRerankModelCcaiServiceName = function() {
|
|
10762
|
+
return jspb.Message.setField(this, 16, undefined);
|
|
10763
|
+
};
|
|
10764
|
+
|
|
10765
|
+
|
|
10766
|
+
/**
|
|
10767
|
+
* Returns whether this field is set.
|
|
10768
|
+
* @return {boolean}
|
|
10769
|
+
*/
|
|
10770
|
+
proto.ondewo.nlu.RagRetrievalRequest.prototype.hasRerankModelCcaiServiceName = function() {
|
|
10771
|
+
return jspb.Message.getField(this, 16) != null;
|
|
10772
|
+
};
|
|
10773
|
+
|
|
10774
|
+
|
|
10214
10775
|
|
|
10215
10776
|
/**
|
|
10216
10777
|
* List of repeated fields within this message type.
|
|
@@ -12263,11 +12824,12 @@ proto.ondewo.nlu.RagListCrawlersRequest.toObject = function(includeInstance, msg
|
|
|
12263
12824
|
var f, obj = {
|
|
12264
12825
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
12265
12826
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
12266
|
-
pageToken: jspb.Message.
|
|
12267
|
-
datasetName: jspb.Message.
|
|
12268
|
-
crawlerName: jspb.Message.
|
|
12269
|
-
orderby: jspb.Message.
|
|
12270
|
-
sortingMode: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f
|
|
12827
|
+
pageToken: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f,
|
|
12828
|
+
datasetName: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
12829
|
+
crawlerName: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
12830
|
+
orderby: (f = jspb.Message.getField(msg, 6)) == null ? undefined : f,
|
|
12831
|
+
sortingMode: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
12832
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
12271
12833
|
};
|
|
12272
12834
|
|
|
12273
12835
|
if (includeInstance) {
|
|
@@ -12332,6 +12894,11 @@ proto.ondewo.nlu.RagListCrawlersRequest.deserializeBinaryFromReader = function(m
|
|
|
12332
12894
|
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
12333
12895
|
msg.setSortingMode(value);
|
|
12334
12896
|
break;
|
|
12897
|
+
case 8:
|
|
12898
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
12899
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
12900
|
+
msg.setFieldMask(value);
|
|
12901
|
+
break;
|
|
12335
12902
|
default:
|
|
12336
12903
|
reader.skipField();
|
|
12337
12904
|
break;
|
|
@@ -12375,29 +12942,29 @@ proto.ondewo.nlu.RagListCrawlersRequest.serializeBinaryToWriter = function(messa
|
|
|
12375
12942
|
f
|
|
12376
12943
|
);
|
|
12377
12944
|
}
|
|
12378
|
-
f =
|
|
12379
|
-
if (f
|
|
12945
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
12946
|
+
if (f != null) {
|
|
12380
12947
|
writer.writeString(
|
|
12381
12948
|
3,
|
|
12382
12949
|
f
|
|
12383
12950
|
);
|
|
12384
12951
|
}
|
|
12385
|
-
f =
|
|
12386
|
-
if (f
|
|
12952
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
12953
|
+
if (f != null) {
|
|
12387
12954
|
writer.writeString(
|
|
12388
12955
|
4,
|
|
12389
12956
|
f
|
|
12390
12957
|
);
|
|
12391
12958
|
}
|
|
12392
|
-
f =
|
|
12393
|
-
if (f
|
|
12959
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
12960
|
+
if (f != null) {
|
|
12394
12961
|
writer.writeString(
|
|
12395
12962
|
5,
|
|
12396
12963
|
f
|
|
12397
12964
|
);
|
|
12398
12965
|
}
|
|
12399
|
-
f =
|
|
12400
|
-
if (f
|
|
12966
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
12967
|
+
if (f != null) {
|
|
12401
12968
|
writer.writeString(
|
|
12402
12969
|
6,
|
|
12403
12970
|
f
|
|
@@ -12410,12 +12977,20 @@ proto.ondewo.nlu.RagListCrawlersRequest.serializeBinaryToWriter = function(messa
|
|
|
12410
12977
|
f
|
|
12411
12978
|
);
|
|
12412
12979
|
}
|
|
12413
|
-
|
|
12414
|
-
|
|
12415
|
-
|
|
12416
|
-
|
|
12417
|
-
|
|
12418
|
-
|
|
12980
|
+
f = message.getFieldMask();
|
|
12981
|
+
if (f != null) {
|
|
12982
|
+
writer.writeMessage(
|
|
12983
|
+
8,
|
|
12984
|
+
f,
|
|
12985
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
12986
|
+
);
|
|
12987
|
+
}
|
|
12988
|
+
};
|
|
12989
|
+
|
|
12990
|
+
|
|
12991
|
+
/**
|
|
12992
|
+
* optional string parent = 1;
|
|
12993
|
+
* @return {string}
|
|
12419
12994
|
*/
|
|
12420
12995
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.getParent = function() {
|
|
12421
12996
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
@@ -12463,7 +13038,25 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getPageToken = function() {
|
|
|
12463
13038
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12464
13039
|
*/
|
|
12465
13040
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setPageToken = function(value) {
|
|
12466
|
-
return jspb.Message.
|
|
13041
|
+
return jspb.Message.setField(this, 3, 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.clearPageToken = function() {
|
|
13050
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
13051
|
+
};
|
|
13052
|
+
|
|
13053
|
+
|
|
13054
|
+
/**
|
|
13055
|
+
* Returns whether this field is set.
|
|
13056
|
+
* @return {boolean}
|
|
13057
|
+
*/
|
|
13058
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasPageToken = function() {
|
|
13059
|
+
return jspb.Message.getField(this, 3) != null;
|
|
12467
13060
|
};
|
|
12468
13061
|
|
|
12469
13062
|
|
|
@@ -12481,7 +13074,25 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getDatasetName = function() {
|
|
|
12481
13074
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12482
13075
|
*/
|
|
12483
13076
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setDatasetName = function(value) {
|
|
12484
|
-
return jspb.Message.
|
|
13077
|
+
return jspb.Message.setField(this, 4, value);
|
|
13078
|
+
};
|
|
13079
|
+
|
|
13080
|
+
|
|
13081
|
+
/**
|
|
13082
|
+
* Clears the field making it undefined.
|
|
13083
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
13084
|
+
*/
|
|
13085
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.clearDatasetName = function() {
|
|
13086
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
13087
|
+
};
|
|
13088
|
+
|
|
13089
|
+
|
|
13090
|
+
/**
|
|
13091
|
+
* Returns whether this field is set.
|
|
13092
|
+
* @return {boolean}
|
|
13093
|
+
*/
|
|
13094
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasDatasetName = function() {
|
|
13095
|
+
return jspb.Message.getField(this, 4) != null;
|
|
12485
13096
|
};
|
|
12486
13097
|
|
|
12487
13098
|
|
|
@@ -12499,7 +13110,25 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getCrawlerName = function() {
|
|
|
12499
13110
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12500
13111
|
*/
|
|
12501
13112
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setCrawlerName = function(value) {
|
|
12502
|
-
return jspb.Message.
|
|
13113
|
+
return jspb.Message.setField(this, 5, value);
|
|
13114
|
+
};
|
|
13115
|
+
|
|
13116
|
+
|
|
13117
|
+
/**
|
|
13118
|
+
* Clears the field making it undefined.
|
|
13119
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
13120
|
+
*/
|
|
13121
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.clearCrawlerName = function() {
|
|
13122
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
13123
|
+
};
|
|
13124
|
+
|
|
13125
|
+
|
|
13126
|
+
/**
|
|
13127
|
+
* Returns whether this field is set.
|
|
13128
|
+
* @return {boolean}
|
|
13129
|
+
*/
|
|
13130
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasCrawlerName = function() {
|
|
13131
|
+
return jspb.Message.getField(this, 5) != null;
|
|
12503
13132
|
};
|
|
12504
13133
|
|
|
12505
13134
|
|
|
@@ -12517,7 +13146,25 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.getOrderby = function() {
|
|
|
12517
13146
|
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
12518
13147
|
*/
|
|
12519
13148
|
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setOrderby = function(value) {
|
|
12520
|
-
return jspb.Message.
|
|
13149
|
+
return jspb.Message.setField(this, 6, value);
|
|
13150
|
+
};
|
|
13151
|
+
|
|
13152
|
+
|
|
13153
|
+
/**
|
|
13154
|
+
* Clears the field making it undefined.
|
|
13155
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
13156
|
+
*/
|
|
13157
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.clearOrderby = function() {
|
|
13158
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
13159
|
+
};
|
|
13160
|
+
|
|
13161
|
+
|
|
13162
|
+
/**
|
|
13163
|
+
* Returns whether this field is set.
|
|
13164
|
+
* @return {boolean}
|
|
13165
|
+
*/
|
|
13166
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasOrderby = function() {
|
|
13167
|
+
return jspb.Message.getField(this, 6) != null;
|
|
12521
13168
|
};
|
|
12522
13169
|
|
|
12523
13170
|
|
|
@@ -12557,6 +13204,43 @@ proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasSortingMode = function() {
|
|
|
12557
13204
|
};
|
|
12558
13205
|
|
|
12559
13206
|
|
|
13207
|
+
/**
|
|
13208
|
+
* optional google.protobuf.FieldMask field_mask = 8;
|
|
13209
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
13210
|
+
*/
|
|
13211
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.getFieldMask = function() {
|
|
13212
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
13213
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 8));
|
|
13214
|
+
};
|
|
13215
|
+
|
|
13216
|
+
|
|
13217
|
+
/**
|
|
13218
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
13219
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
13220
|
+
*/
|
|
13221
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.setFieldMask = function(value) {
|
|
13222
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
13223
|
+
};
|
|
13224
|
+
|
|
13225
|
+
|
|
13226
|
+
/**
|
|
13227
|
+
* Clears the message field making it undefined.
|
|
13228
|
+
* @return {!proto.ondewo.nlu.RagListCrawlersRequest} returns this
|
|
13229
|
+
*/
|
|
13230
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.clearFieldMask = function() {
|
|
13231
|
+
return this.setFieldMask(undefined);
|
|
13232
|
+
};
|
|
13233
|
+
|
|
13234
|
+
|
|
13235
|
+
/**
|
|
13236
|
+
* Returns whether this field is set.
|
|
13237
|
+
* @return {boolean}
|
|
13238
|
+
*/
|
|
13239
|
+
proto.ondewo.nlu.RagListCrawlersRequest.prototype.hasFieldMask = function() {
|
|
13240
|
+
return jspb.Message.getField(this, 8) != null;
|
|
13241
|
+
};
|
|
13242
|
+
|
|
13243
|
+
|
|
12560
13244
|
|
|
12561
13245
|
/**
|
|
12562
13246
|
* List of repeated fields within this message type.
|
|
@@ -13334,7 +14018,7 @@ proto.ondewo.nlu.RagCrawler.prototype.toObject = function(opt_includeInstance) {
|
|
|
13334
14018
|
proto.ondewo.nlu.RagCrawler.toObject = function(includeInstance, msg) {
|
|
13335
14019
|
var f, obj = {
|
|
13336
14020
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
13337
|
-
displayName: jspb.Message.
|
|
14021
|
+
displayName: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
|
|
13338
14022
|
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
13339
14023
|
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
13340
14024
|
createdBy: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
@@ -13473,8 +14157,8 @@ proto.ondewo.nlu.RagCrawler.serializeBinaryToWriter = function(message, writer)
|
|
|
13473
14157
|
f
|
|
13474
14158
|
);
|
|
13475
14159
|
}
|
|
13476
|
-
f =
|
|
13477
|
-
if (f
|
|
14160
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
14161
|
+
if (f != null) {
|
|
13478
14162
|
writer.writeString(
|
|
13479
14163
|
2,
|
|
13480
14164
|
f
|
|
@@ -13593,7 +14277,25 @@ proto.ondewo.nlu.RagCrawler.prototype.getDisplayName = function() {
|
|
|
13593
14277
|
* @return {!proto.ondewo.nlu.RagCrawler} returns this
|
|
13594
14278
|
*/
|
|
13595
14279
|
proto.ondewo.nlu.RagCrawler.prototype.setDisplayName = function(value) {
|
|
13596
|
-
return jspb.Message.
|
|
14280
|
+
return jspb.Message.setField(this, 2, value);
|
|
14281
|
+
};
|
|
14282
|
+
|
|
14283
|
+
|
|
14284
|
+
/**
|
|
14285
|
+
* Clears the field making it undefined.
|
|
14286
|
+
* @return {!proto.ondewo.nlu.RagCrawler} returns this
|
|
14287
|
+
*/
|
|
14288
|
+
proto.ondewo.nlu.RagCrawler.prototype.clearDisplayName = function() {
|
|
14289
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
14290
|
+
};
|
|
14291
|
+
|
|
14292
|
+
|
|
14293
|
+
/**
|
|
14294
|
+
* Returns whether this field is set.
|
|
14295
|
+
* @return {boolean}
|
|
14296
|
+
*/
|
|
14297
|
+
proto.ondewo.nlu.RagCrawler.prototype.hasDisplayName = function() {
|
|
14298
|
+
return jspb.Message.getField(this, 2) != null;
|
|
13597
14299
|
};
|
|
13598
14300
|
|
|
13599
14301
|
|
|
@@ -14175,9 +14877,9 @@ proto.ondewo.nlu.RagCrawlerFilters.toObject = function(includeInstance, msg) {
|
|
|
14175
14877
|
var f, obj = {
|
|
14176
14878
|
allowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
14177
14879
|
disallowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
14178
|
-
allowInternalLinks: jspb.Message.
|
|
14179
|
-
allowExternalLinks: jspb.Message.
|
|
14180
|
-
allowSocialMediaLinks: jspb.Message.
|
|
14880
|
+
allowInternalLinks: (f = jspb.Message.getBooleanField(msg, 3)) == null ? undefined : f,
|
|
14881
|
+
allowExternalLinks: (f = jspb.Message.getBooleanField(msg, 4)) == null ? undefined : f,
|
|
14882
|
+
allowSocialMediaLinks: (f = jspb.Message.getBooleanField(msg, 5)) == null ? undefined : f,
|
|
14181
14883
|
allowedRegexList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
14182
14884
|
disallowedRegexList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
|
|
14183
14885
|
allowedPathsList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
|
|
@@ -14297,22 +14999,22 @@ proto.ondewo.nlu.RagCrawlerFilters.serializeBinaryToWriter = function(message, w
|
|
|
14297
14999
|
f
|
|
14298
15000
|
);
|
|
14299
15001
|
}
|
|
14300
|
-
f =
|
|
14301
|
-
if (f) {
|
|
15002
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 3));
|
|
15003
|
+
if (f != null) {
|
|
14302
15004
|
writer.writeBool(
|
|
14303
15005
|
3,
|
|
14304
15006
|
f
|
|
14305
15007
|
);
|
|
14306
15008
|
}
|
|
14307
|
-
f =
|
|
14308
|
-
if (f) {
|
|
15009
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 4));
|
|
15010
|
+
if (f != null) {
|
|
14309
15011
|
writer.writeBool(
|
|
14310
15012
|
4,
|
|
14311
15013
|
f
|
|
14312
15014
|
);
|
|
14313
15015
|
}
|
|
14314
|
-
f =
|
|
14315
|
-
if (f) {
|
|
15016
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 5));
|
|
15017
|
+
if (f != null) {
|
|
14316
15018
|
writer.writeBool(
|
|
14317
15019
|
5,
|
|
14318
15020
|
f
|
|
@@ -14437,7 +15139,25 @@ proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowInternalLinks = function()
|
|
|
14437
15139
|
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14438
15140
|
*/
|
|
14439
15141
|
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowInternalLinks = function(value) {
|
|
14440
|
-
return jspb.Message.
|
|
15142
|
+
return jspb.Message.setField(this, 3, value);
|
|
15143
|
+
};
|
|
15144
|
+
|
|
15145
|
+
|
|
15146
|
+
/**
|
|
15147
|
+
* Clears the field making it undefined.
|
|
15148
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15149
|
+
*/
|
|
15150
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowInternalLinks = function() {
|
|
15151
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
15152
|
+
};
|
|
15153
|
+
|
|
15154
|
+
|
|
15155
|
+
/**
|
|
15156
|
+
* Returns whether this field is set.
|
|
15157
|
+
* @return {boolean}
|
|
15158
|
+
*/
|
|
15159
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.hasAllowInternalLinks = function() {
|
|
15160
|
+
return jspb.Message.getField(this, 3) != null;
|
|
14441
15161
|
};
|
|
14442
15162
|
|
|
14443
15163
|
|
|
@@ -14455,7 +15175,25 @@ proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowExternalLinks = function()
|
|
|
14455
15175
|
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14456
15176
|
*/
|
|
14457
15177
|
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowExternalLinks = function(value) {
|
|
14458
|
-
return jspb.Message.
|
|
15178
|
+
return jspb.Message.setField(this, 4, value);
|
|
15179
|
+
};
|
|
15180
|
+
|
|
15181
|
+
|
|
15182
|
+
/**
|
|
15183
|
+
* Clears the field making it undefined.
|
|
15184
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15185
|
+
*/
|
|
15186
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowExternalLinks = function() {
|
|
15187
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
15188
|
+
};
|
|
15189
|
+
|
|
15190
|
+
|
|
15191
|
+
/**
|
|
15192
|
+
* Returns whether this field is set.
|
|
15193
|
+
* @return {boolean}
|
|
15194
|
+
*/
|
|
15195
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.hasAllowExternalLinks = function() {
|
|
15196
|
+
return jspb.Message.getField(this, 4) != null;
|
|
14459
15197
|
};
|
|
14460
15198
|
|
|
14461
15199
|
|
|
@@ -14473,7 +15211,25 @@ proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowSocialMediaLinks = function
|
|
|
14473
15211
|
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14474
15212
|
*/
|
|
14475
15213
|
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowSocialMediaLinks = function(value) {
|
|
14476
|
-
return jspb.Message.
|
|
15214
|
+
return jspb.Message.setField(this, 5, value);
|
|
15215
|
+
};
|
|
15216
|
+
|
|
15217
|
+
|
|
15218
|
+
/**
|
|
15219
|
+
* Clears the field making it undefined.
|
|
15220
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
15221
|
+
*/
|
|
15222
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowSocialMediaLinks = function() {
|
|
15223
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
15224
|
+
};
|
|
15225
|
+
|
|
15226
|
+
|
|
15227
|
+
/**
|
|
15228
|
+
* Returns whether this field is set.
|
|
15229
|
+
* @return {boolean}
|
|
15230
|
+
*/
|
|
15231
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.hasAllowSocialMediaLinks = function() {
|
|
15232
|
+
return jspb.Message.getField(this, 5) != null;
|
|
14477
15233
|
};
|
|
14478
15234
|
|
|
14479
15235
|
|
|
@@ -15162,14 +15918,14 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.toObject = function(opt_includeIns
|
|
|
15162
15918
|
*/
|
|
15163
15919
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.toObject = function(includeInstance, msg) {
|
|
15164
15920
|
var f, obj = {
|
|
15165
|
-
htmlAuthBaseUrl: jspb.Message.
|
|
15166
|
-
htmlAuthUsernameSelectorType: jspb.Message.
|
|
15167
|
-
htmlAuthUsernameSelector: jspb.Message.
|
|
15168
|
-
htmlAuthUsername: jspb.Message.
|
|
15169
|
-
htmlAuthPasswordSelectorType: jspb.Message.
|
|
15170
|
-
htmlAuthPasswordSelector: jspb.Message.
|
|
15171
|
-
htmlAuthPassword: jspb.Message.
|
|
15172
|
-
authenticationExecutionType: jspb.Message.
|
|
15921
|
+
htmlAuthBaseUrl: (f = jspb.Message.getField(msg, 1)) == null ? undefined : f,
|
|
15922
|
+
htmlAuthUsernameSelectorType: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
|
|
15923
|
+
htmlAuthUsernameSelector: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f,
|
|
15924
|
+
htmlAuthUsername: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
15925
|
+
htmlAuthPasswordSelectorType: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
15926
|
+
htmlAuthPasswordSelector: (f = jspb.Message.getField(msg, 6)) == null ? undefined : f,
|
|
15927
|
+
htmlAuthPassword: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
15928
|
+
authenticationExecutionType: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f
|
|
15173
15929
|
};
|
|
15174
15930
|
|
|
15175
15931
|
if (includeInstance) {
|
|
@@ -15267,57 +16023,57 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.serializeBinary = function() {
|
|
|
15267
16023
|
*/
|
|
15268
16024
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.serializeBinaryToWriter = function(message, writer) {
|
|
15269
16025
|
var f = undefined;
|
|
15270
|
-
f =
|
|
15271
|
-
if (f
|
|
16026
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 1));
|
|
16027
|
+
if (f != null) {
|
|
15272
16028
|
writer.writeString(
|
|
15273
16029
|
1,
|
|
15274
16030
|
f
|
|
15275
16031
|
);
|
|
15276
16032
|
}
|
|
15277
|
-
f =
|
|
15278
|
-
if (f
|
|
16033
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerSelectorType} */ (jspb.Message.getField(message, 2));
|
|
16034
|
+
if (f != null) {
|
|
15279
16035
|
writer.writeEnum(
|
|
15280
16036
|
2,
|
|
15281
16037
|
f
|
|
15282
16038
|
);
|
|
15283
16039
|
}
|
|
15284
|
-
f =
|
|
15285
|
-
if (f
|
|
16040
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
16041
|
+
if (f != null) {
|
|
15286
16042
|
writer.writeString(
|
|
15287
16043
|
3,
|
|
15288
16044
|
f
|
|
15289
16045
|
);
|
|
15290
16046
|
}
|
|
15291
|
-
f =
|
|
15292
|
-
if (f
|
|
16047
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
16048
|
+
if (f != null) {
|
|
15293
16049
|
writer.writeString(
|
|
15294
16050
|
4,
|
|
15295
16051
|
f
|
|
15296
16052
|
);
|
|
15297
16053
|
}
|
|
15298
|
-
f =
|
|
15299
|
-
if (f
|
|
16054
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerSelectorType} */ (jspb.Message.getField(message, 5));
|
|
16055
|
+
if (f != null) {
|
|
15300
16056
|
writer.writeEnum(
|
|
15301
16057
|
5,
|
|
15302
16058
|
f
|
|
15303
16059
|
);
|
|
15304
16060
|
}
|
|
15305
|
-
f =
|
|
15306
|
-
if (f
|
|
16061
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
16062
|
+
if (f != null) {
|
|
15307
16063
|
writer.writeString(
|
|
15308
16064
|
6,
|
|
15309
16065
|
f
|
|
15310
16066
|
);
|
|
15311
16067
|
}
|
|
15312
|
-
f =
|
|
15313
|
-
if (f
|
|
16068
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
16069
|
+
if (f != null) {
|
|
15314
16070
|
writer.writeString(
|
|
15315
16071
|
7,
|
|
15316
16072
|
f
|
|
15317
16073
|
);
|
|
15318
16074
|
}
|
|
15319
|
-
f =
|
|
15320
|
-
if (f
|
|
16075
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerAuthenticationExecutionType} */ (jspb.Message.getField(message, 8));
|
|
16076
|
+
if (f != null) {
|
|
15321
16077
|
writer.writeEnum(
|
|
15322
16078
|
8,
|
|
15323
16079
|
f
|
|
@@ -15340,7 +16096,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthBaseUrl = function() {
|
|
|
15340
16096
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15341
16097
|
*/
|
|
15342
16098
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthBaseUrl = function(value) {
|
|
15343
|
-
return jspb.Message.
|
|
16099
|
+
return jspb.Message.setField(this, 1, 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.clearHtmlAuthBaseUrl = function() {
|
|
16108
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
16109
|
+
};
|
|
16110
|
+
|
|
16111
|
+
|
|
16112
|
+
/**
|
|
16113
|
+
* Returns whether this field is set.
|
|
16114
|
+
* @return {boolean}
|
|
16115
|
+
*/
|
|
16116
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthBaseUrl = function() {
|
|
16117
|
+
return jspb.Message.getField(this, 1) != null;
|
|
15344
16118
|
};
|
|
15345
16119
|
|
|
15346
16120
|
|
|
@@ -15358,34 +16132,34 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsernameSelectorType =
|
|
|
15358
16132
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15359
16133
|
*/
|
|
15360
16134
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthUsernameSelectorType = function(value) {
|
|
15361
|
-
return jspb.Message.
|
|
16135
|
+
return jspb.Message.setField(this, 2, value);
|
|
15362
16136
|
};
|
|
15363
16137
|
|
|
15364
16138
|
|
|
15365
16139
|
/**
|
|
15366
|
-
*
|
|
15367
|
-
* @return {
|
|
16140
|
+
* Clears the field making it undefined.
|
|
16141
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15368
16142
|
*/
|
|
15369
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15370
|
-
return
|
|
16143
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthUsernameSelectorType = function() {
|
|
16144
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
15371
16145
|
};
|
|
15372
16146
|
|
|
15373
16147
|
|
|
15374
16148
|
/**
|
|
15375
|
-
*
|
|
15376
|
-
* @return {
|
|
16149
|
+
* Returns whether this field is set.
|
|
16150
|
+
* @return {boolean}
|
|
15377
16151
|
*/
|
|
15378
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15379
|
-
return jspb.Message.
|
|
16152
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthUsernameSelectorType = function() {
|
|
16153
|
+
return jspb.Message.getField(this, 2) != null;
|
|
15380
16154
|
};
|
|
15381
16155
|
|
|
15382
16156
|
|
|
15383
16157
|
/**
|
|
15384
|
-
* optional string
|
|
16158
|
+
* optional string html_auth_username_selector = 3;
|
|
15385
16159
|
* @return {string}
|
|
15386
16160
|
*/
|
|
15387
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15388
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
16161
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsernameSelector = function() {
|
|
16162
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
15389
16163
|
};
|
|
15390
16164
|
|
|
15391
16165
|
|
|
@@ -15393,8 +16167,62 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsername = function() {
|
|
|
15393
16167
|
* @param {string} value
|
|
15394
16168
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15395
16169
|
*/
|
|
15396
|
-
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.
|
|
15397
|
-
return jspb.Message.
|
|
16170
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthUsernameSelector = function(value) {
|
|
16171
|
+
return jspb.Message.setField(this, 3, 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.clearHtmlAuthUsernameSelector = function() {
|
|
16180
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
16181
|
+
};
|
|
16182
|
+
|
|
16183
|
+
|
|
16184
|
+
/**
|
|
16185
|
+
* Returns whether this field is set.
|
|
16186
|
+
* @return {boolean}
|
|
16187
|
+
*/
|
|
16188
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthUsernameSelector = function() {
|
|
16189
|
+
return jspb.Message.getField(this, 3) != null;
|
|
16190
|
+
};
|
|
16191
|
+
|
|
16192
|
+
|
|
16193
|
+
/**
|
|
16194
|
+
* optional string html_auth_username = 4;
|
|
16195
|
+
* @return {string}
|
|
16196
|
+
*/
|
|
16197
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthUsername = function() {
|
|
16198
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
16199
|
+
};
|
|
16200
|
+
|
|
16201
|
+
|
|
16202
|
+
/**
|
|
16203
|
+
* @param {string} value
|
|
16204
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16205
|
+
*/
|
|
16206
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthUsername = function(value) {
|
|
16207
|
+
return jspb.Message.setField(this, 4, 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.clearHtmlAuthUsername = function() {
|
|
16216
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
16217
|
+
};
|
|
16218
|
+
|
|
16219
|
+
|
|
16220
|
+
/**
|
|
16221
|
+
* Returns whether this field is set.
|
|
16222
|
+
* @return {boolean}
|
|
16223
|
+
*/
|
|
16224
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthUsername = function() {
|
|
16225
|
+
return jspb.Message.getField(this, 4) != null;
|
|
15398
16226
|
};
|
|
15399
16227
|
|
|
15400
16228
|
|
|
@@ -15412,7 +16240,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthPasswordSelectorType =
|
|
|
15412
16240
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15413
16241
|
*/
|
|
15414
16242
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthPasswordSelectorType = function(value) {
|
|
15415
|
-
return jspb.Message.
|
|
16243
|
+
return jspb.Message.setField(this, 5, 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.clearHtmlAuthPasswordSelectorType = function() {
|
|
16252
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
16253
|
+
};
|
|
16254
|
+
|
|
16255
|
+
|
|
16256
|
+
/**
|
|
16257
|
+
* Returns whether this field is set.
|
|
16258
|
+
* @return {boolean}
|
|
16259
|
+
*/
|
|
16260
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthPasswordSelectorType = function() {
|
|
16261
|
+
return jspb.Message.getField(this, 5) != null;
|
|
15416
16262
|
};
|
|
15417
16263
|
|
|
15418
16264
|
|
|
@@ -15430,7 +16276,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthPasswordSelector = func
|
|
|
15430
16276
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15431
16277
|
*/
|
|
15432
16278
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthPasswordSelector = function(value) {
|
|
15433
|
-
return jspb.Message.
|
|
16279
|
+
return jspb.Message.setField(this, 6, value);
|
|
16280
|
+
};
|
|
16281
|
+
|
|
16282
|
+
|
|
16283
|
+
/**
|
|
16284
|
+
* Clears the field making it undefined.
|
|
16285
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16286
|
+
*/
|
|
16287
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthPasswordSelector = function() {
|
|
16288
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
16289
|
+
};
|
|
16290
|
+
|
|
16291
|
+
|
|
16292
|
+
/**
|
|
16293
|
+
* Returns whether this field is set.
|
|
16294
|
+
* @return {boolean}
|
|
16295
|
+
*/
|
|
16296
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthPasswordSelector = function() {
|
|
16297
|
+
return jspb.Message.getField(this, 6) != null;
|
|
15434
16298
|
};
|
|
15435
16299
|
|
|
15436
16300
|
|
|
@@ -15448,7 +16312,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getHtmlAuthPassword = function() {
|
|
|
15448
16312
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15449
16313
|
*/
|
|
15450
16314
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setHtmlAuthPassword = function(value) {
|
|
15451
|
-
return jspb.Message.
|
|
16315
|
+
return jspb.Message.setField(this, 7, value);
|
|
16316
|
+
};
|
|
16317
|
+
|
|
16318
|
+
|
|
16319
|
+
/**
|
|
16320
|
+
* Clears the field making it undefined.
|
|
16321
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16322
|
+
*/
|
|
16323
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearHtmlAuthPassword = function() {
|
|
16324
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
16325
|
+
};
|
|
16326
|
+
|
|
16327
|
+
|
|
16328
|
+
/**
|
|
16329
|
+
* Returns whether this field is set.
|
|
16330
|
+
* @return {boolean}
|
|
16331
|
+
*/
|
|
16332
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasHtmlAuthPassword = function() {
|
|
16333
|
+
return jspb.Message.getField(this, 7) != null;
|
|
15452
16334
|
};
|
|
15453
16335
|
|
|
15454
16336
|
|
|
@@ -15466,7 +16348,25 @@ proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.getAuthenticationExecutionType = f
|
|
|
15466
16348
|
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
15467
16349
|
*/
|
|
15468
16350
|
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.setAuthenticationExecutionType = function(value) {
|
|
15469
|
-
return jspb.Message.
|
|
16351
|
+
return jspb.Message.setField(this, 8, value);
|
|
16352
|
+
};
|
|
16353
|
+
|
|
16354
|
+
|
|
16355
|
+
/**
|
|
16356
|
+
* Clears the field making it undefined.
|
|
16357
|
+
* @return {!proto.ondewo.nlu.RagCrawlerHtmlAuth} returns this
|
|
16358
|
+
*/
|
|
16359
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.clearAuthenticationExecutionType = function() {
|
|
16360
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
16361
|
+
};
|
|
16362
|
+
|
|
16363
|
+
|
|
16364
|
+
/**
|
|
16365
|
+
* Returns whether this field is set.
|
|
16366
|
+
* @return {boolean}
|
|
16367
|
+
*/
|
|
16368
|
+
proto.ondewo.nlu.RagCrawlerHtmlAuth.prototype.hasAuthenticationExecutionType = function() {
|
|
16369
|
+
return jspb.Message.getField(this, 8) != null;
|
|
15470
16370
|
};
|
|
15471
16371
|
|
|
15472
16372
|
|
|
@@ -15673,7 +16573,7 @@ crawlerHeadersList: jspb.Message.toObjectList(msg.getCrawlerHeadersList(),
|
|
|
15673
16573
|
google_protobuf_struct_pb.Struct.toObject, includeInstance),
|
|
15674
16574
|
crawlerCookiesList: jspb.Message.toObjectList(msg.getCrawlerCookiesList(),
|
|
15675
16575
|
proto.ondewo.nlu.RagCrawlerCookie.toObject, includeInstance),
|
|
15676
|
-
crawlerUserAgent: jspb.Message.
|
|
16576
|
+
crawlerUserAgent: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
15677
16577
|
};
|
|
15678
16578
|
|
|
15679
16579
|
if (includeInstance) {
|
|
@@ -15769,8 +16669,8 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.serializeBinaryToWriter = function(mess
|
|
|
15769
16669
|
proto.ondewo.nlu.RagCrawlerCookie.serializeBinaryToWriter
|
|
15770
16670
|
);
|
|
15771
16671
|
}
|
|
15772
|
-
f =
|
|
15773
|
-
if (f
|
|
16672
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
16673
|
+
if (f != null) {
|
|
15774
16674
|
writer.writeString(
|
|
15775
16675
|
3,
|
|
15776
16676
|
f
|
|
@@ -15869,7 +16769,25 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.getCrawlerUserAgent = functio
|
|
|
15869
16769
|
* @return {!proto.ondewo.nlu.RagCrawlerBrowserConfig} returns this
|
|
15870
16770
|
*/
|
|
15871
16771
|
proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.setCrawlerUserAgent = function(value) {
|
|
15872
|
-
return jspb.Message.
|
|
16772
|
+
return jspb.Message.setField(this, 3, value);
|
|
16773
|
+
};
|
|
16774
|
+
|
|
16775
|
+
|
|
16776
|
+
/**
|
|
16777
|
+
* Clears the field making it undefined.
|
|
16778
|
+
* @return {!proto.ondewo.nlu.RagCrawlerBrowserConfig} returns this
|
|
16779
|
+
*/
|
|
16780
|
+
proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.clearCrawlerUserAgent = function() {
|
|
16781
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
16782
|
+
};
|
|
16783
|
+
|
|
16784
|
+
|
|
16785
|
+
/**
|
|
16786
|
+
* Returns whether this field is set.
|
|
16787
|
+
* @return {boolean}
|
|
16788
|
+
*/
|
|
16789
|
+
proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.hasCrawlerUserAgent = function() {
|
|
16790
|
+
return jspb.Message.getField(this, 3) != null;
|
|
15873
16791
|
};
|
|
15874
16792
|
|
|
15875
16793
|
|
|
@@ -15907,7 +16825,7 @@ proto.ondewo.nlu.RagCrawlerCookie.toObject = function(includeInstance, msg) {
|
|
|
15907
16825
|
var f, obj = {
|
|
15908
16826
|
cookieName: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
15909
16827
|
cookieValue: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
15910
|
-
cookieDomain: jspb.Message.
|
|
16828
|
+
cookieDomain: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
15911
16829
|
};
|
|
15912
16830
|
|
|
15913
16831
|
if (includeInstance) {
|
|
@@ -15999,8 +16917,8 @@ proto.ondewo.nlu.RagCrawlerCookie.serializeBinaryToWriter = function(message, wr
|
|
|
15999
16917
|
f
|
|
16000
16918
|
);
|
|
16001
16919
|
}
|
|
16002
|
-
f =
|
|
16003
|
-
if (f
|
|
16920
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
16921
|
+
if (f != null) {
|
|
16004
16922
|
writer.writeString(
|
|
16005
16923
|
3,
|
|
16006
16924
|
f
|
|
@@ -16059,7 +16977,25 @@ proto.ondewo.nlu.RagCrawlerCookie.prototype.getCookieDomain = function() {
|
|
|
16059
16977
|
* @return {!proto.ondewo.nlu.RagCrawlerCookie} returns this
|
|
16060
16978
|
*/
|
|
16061
16979
|
proto.ondewo.nlu.RagCrawlerCookie.prototype.setCookieDomain = function(value) {
|
|
16062
|
-
return jspb.Message.
|
|
16980
|
+
return jspb.Message.setField(this, 3, value);
|
|
16981
|
+
};
|
|
16982
|
+
|
|
16983
|
+
|
|
16984
|
+
/**
|
|
16985
|
+
* Clears the field making it undefined.
|
|
16986
|
+
* @return {!proto.ondewo.nlu.RagCrawlerCookie} returns this
|
|
16987
|
+
*/
|
|
16988
|
+
proto.ondewo.nlu.RagCrawlerCookie.prototype.clearCookieDomain = function() {
|
|
16989
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
16990
|
+
};
|
|
16991
|
+
|
|
16992
|
+
|
|
16993
|
+
/**
|
|
16994
|
+
* Returns whether this field is set.
|
|
16995
|
+
* @return {boolean}
|
|
16996
|
+
*/
|
|
16997
|
+
proto.ondewo.nlu.RagCrawlerCookie.prototype.hasCookieDomain = function() {
|
|
16998
|
+
return jspb.Message.getField(this, 3) != null;
|
|
16063
16999
|
};
|
|
16064
17000
|
|
|
16065
17001
|
|
|
@@ -16095,7 +17031,8 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.toObject = function(opt_i
|
|
|
16095
17031
|
*/
|
|
16096
17032
|
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.toObject = function(includeInstance, msg) {
|
|
16097
17033
|
var f, obj = {
|
|
16098
|
-
maxConcurrentRequests: jspb.Message.
|
|
17034
|
+
maxConcurrentRequests: (f = jspb.Message.getField(msg, 1)) == null ? undefined : f,
|
|
17035
|
+
slowCrawl: (f = jspb.Message.getBooleanField(msg, 2)) == null ? undefined : f
|
|
16099
17036
|
};
|
|
16100
17037
|
|
|
16101
17038
|
if (includeInstance) {
|
|
@@ -16136,6 +17073,10 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.deserializeBinaryFromReader = funct
|
|
|
16136
17073
|
var value = /** @type {number} */ (reader.readInt32());
|
|
16137
17074
|
msg.setMaxConcurrentRequests(value);
|
|
16138
17075
|
break;
|
|
17076
|
+
case 2:
|
|
17077
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
17078
|
+
msg.setSlowCrawl(value);
|
|
17079
|
+
break;
|
|
16139
17080
|
default:
|
|
16140
17081
|
reader.skipField();
|
|
16141
17082
|
break;
|
|
@@ -16165,13 +17106,20 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.serializeBinary = functio
|
|
|
16165
17106
|
*/
|
|
16166
17107
|
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.serializeBinaryToWriter = function(message, writer) {
|
|
16167
17108
|
var f = undefined;
|
|
16168
|
-
f =
|
|
16169
|
-
if (f
|
|
17109
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
17110
|
+
if (f != null) {
|
|
16170
17111
|
writer.writeInt32(
|
|
16171
17112
|
1,
|
|
16172
17113
|
f
|
|
16173
17114
|
);
|
|
16174
17115
|
}
|
|
17116
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 2));
|
|
17117
|
+
if (f != null) {
|
|
17118
|
+
writer.writeBool(
|
|
17119
|
+
2,
|
|
17120
|
+
f
|
|
17121
|
+
);
|
|
17122
|
+
}
|
|
16175
17123
|
};
|
|
16176
17124
|
|
|
16177
17125
|
|
|
@@ -16189,7 +17137,61 @@ proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.getMaxConcurrentRequests
|
|
|
16189
17137
|
* @return {!proto.ondewo.nlu.RagCrawlerConcurrencyConfig} returns this
|
|
16190
17138
|
*/
|
|
16191
17139
|
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.setMaxConcurrentRequests = function(value) {
|
|
16192
|
-
return jspb.Message.
|
|
17140
|
+
return jspb.Message.setField(this, 1, value);
|
|
17141
|
+
};
|
|
17142
|
+
|
|
17143
|
+
|
|
17144
|
+
/**
|
|
17145
|
+
* Clears the field making it undefined.
|
|
17146
|
+
* @return {!proto.ondewo.nlu.RagCrawlerConcurrencyConfig} returns this
|
|
17147
|
+
*/
|
|
17148
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.clearMaxConcurrentRequests = function() {
|
|
17149
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
17150
|
+
};
|
|
17151
|
+
|
|
17152
|
+
|
|
17153
|
+
/**
|
|
17154
|
+
* Returns whether this field is set.
|
|
17155
|
+
* @return {boolean}
|
|
17156
|
+
*/
|
|
17157
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.hasMaxConcurrentRequests = function() {
|
|
17158
|
+
return jspb.Message.getField(this, 1) != null;
|
|
17159
|
+
};
|
|
17160
|
+
|
|
17161
|
+
|
|
17162
|
+
/**
|
|
17163
|
+
* optional bool slow_crawl = 2;
|
|
17164
|
+
* @return {boolean}
|
|
17165
|
+
*/
|
|
17166
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.getSlowCrawl = function() {
|
|
17167
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 2, false));
|
|
17168
|
+
};
|
|
17169
|
+
|
|
17170
|
+
|
|
17171
|
+
/**
|
|
17172
|
+
* @param {boolean} value
|
|
17173
|
+
* @return {!proto.ondewo.nlu.RagCrawlerConcurrencyConfig} returns this
|
|
17174
|
+
*/
|
|
17175
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.setSlowCrawl = function(value) {
|
|
17176
|
+
return jspb.Message.setField(this, 2, value);
|
|
17177
|
+
};
|
|
17178
|
+
|
|
17179
|
+
|
|
17180
|
+
/**
|
|
17181
|
+
* Clears the field making it undefined.
|
|
17182
|
+
* @return {!proto.ondewo.nlu.RagCrawlerConcurrencyConfig} returns this
|
|
17183
|
+
*/
|
|
17184
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.clearSlowCrawl = function() {
|
|
17185
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
17186
|
+
};
|
|
17187
|
+
|
|
17188
|
+
|
|
17189
|
+
/**
|
|
17190
|
+
* Returns whether this field is set.
|
|
17191
|
+
* @return {boolean}
|
|
17192
|
+
*/
|
|
17193
|
+
proto.ondewo.nlu.RagCrawlerConcurrencyConfig.prototype.hasSlowCrawl = function() {
|
|
17194
|
+
return jspb.Message.getField(this, 2) != null;
|
|
16193
17195
|
};
|
|
16194
17196
|
|
|
16195
17197
|
|
|
@@ -16478,10 +17480,10 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.toObject = function(opt_i
|
|
|
16478
17480
|
*/
|
|
16479
17481
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.toObject = function(includeInstance, msg) {
|
|
16480
17482
|
var f, obj = {
|
|
16481
|
-
isActive: jspb.Message.
|
|
16482
|
-
crawlStrategy: jspb.Message.
|
|
16483
|
-
maxDepth: jspb.Message.
|
|
16484
|
-
maxPages: jspb.Message.
|
|
17483
|
+
isActive: (f = jspb.Message.getBooleanField(msg, 1)) == null ? undefined : f,
|
|
17484
|
+
crawlStrategy: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
|
|
17485
|
+
maxDepth: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f,
|
|
17486
|
+
maxPages: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
16485
17487
|
deepCrawlerFilters: (f = msg.getDeepCrawlerFilters()) && proto.ondewo.nlu.RagCrawlerFilters.toObject(includeInstance, f)
|
|
16486
17488
|
};
|
|
16487
17489
|
|
|
@@ -16569,29 +17571,29 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.serializeBinary = functio
|
|
|
16569
17571
|
*/
|
|
16570
17572
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.serializeBinaryToWriter = function(message, writer) {
|
|
16571
17573
|
var f = undefined;
|
|
16572
|
-
f =
|
|
16573
|
-
if (f) {
|
|
17574
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 1));
|
|
17575
|
+
if (f != null) {
|
|
16574
17576
|
writer.writeBool(
|
|
16575
17577
|
1,
|
|
16576
17578
|
f
|
|
16577
17579
|
);
|
|
16578
17580
|
}
|
|
16579
|
-
f =
|
|
16580
|
-
if (f
|
|
17581
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerCrawlStrategy} */ (jspb.Message.getField(message, 2));
|
|
17582
|
+
if (f != null) {
|
|
16581
17583
|
writer.writeEnum(
|
|
16582
17584
|
2,
|
|
16583
17585
|
f
|
|
16584
17586
|
);
|
|
16585
17587
|
}
|
|
16586
|
-
f =
|
|
16587
|
-
if (f
|
|
17588
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 3));
|
|
17589
|
+
if (f != null) {
|
|
16588
17590
|
writer.writeInt32(
|
|
16589
17591
|
3,
|
|
16590
17592
|
f
|
|
16591
17593
|
);
|
|
16592
17594
|
}
|
|
16593
|
-
f =
|
|
16594
|
-
if (f
|
|
17595
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 4));
|
|
17596
|
+
if (f != null) {
|
|
16595
17597
|
writer.writeInt32(
|
|
16596
17598
|
4,
|
|
16597
17599
|
f
|
|
@@ -16622,7 +17624,25 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getIsActive = function()
|
|
|
16622
17624
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16623
17625
|
*/
|
|
16624
17626
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setIsActive = function(value) {
|
|
16625
|
-
return jspb.Message.
|
|
17627
|
+
return jspb.Message.setField(this, 1, 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.clearIsActive = function() {
|
|
17636
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
17637
|
+
};
|
|
17638
|
+
|
|
17639
|
+
|
|
17640
|
+
/**
|
|
17641
|
+
* Returns whether this field is set.
|
|
17642
|
+
* @return {boolean}
|
|
17643
|
+
*/
|
|
17644
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.hasIsActive = function() {
|
|
17645
|
+
return jspb.Message.getField(this, 1) != null;
|
|
16626
17646
|
};
|
|
16627
17647
|
|
|
16628
17648
|
|
|
@@ -16640,13 +17660,31 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getCrawlStrategy = functi
|
|
|
16640
17660
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16641
17661
|
*/
|
|
16642
17662
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setCrawlStrategy = function(value) {
|
|
16643
|
-
return jspb.Message.
|
|
17663
|
+
return jspb.Message.setField(this, 2, value);
|
|
16644
17664
|
};
|
|
16645
17665
|
|
|
16646
17666
|
|
|
16647
17667
|
/**
|
|
16648
|
-
*
|
|
16649
|
-
* @return {
|
|
17668
|
+
* Clears the field making it undefined.
|
|
17669
|
+
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
17670
|
+
*/
|
|
17671
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.clearCrawlStrategy = function() {
|
|
17672
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
17673
|
+
};
|
|
17674
|
+
|
|
17675
|
+
|
|
17676
|
+
/**
|
|
17677
|
+
* Returns whether this field is set.
|
|
17678
|
+
* @return {boolean}
|
|
17679
|
+
*/
|
|
17680
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.hasCrawlStrategy = function() {
|
|
17681
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17682
|
+
};
|
|
17683
|
+
|
|
17684
|
+
|
|
17685
|
+
/**
|
|
17686
|
+
* optional int32 max_depth = 3;
|
|
17687
|
+
* @return {number}
|
|
16650
17688
|
*/
|
|
16651
17689
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getMaxDepth = function() {
|
|
16652
17690
|
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
@@ -16658,7 +17696,25 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getMaxDepth = function()
|
|
|
16658
17696
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16659
17697
|
*/
|
|
16660
17698
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setMaxDepth = function(value) {
|
|
16661
|
-
return jspb.Message.
|
|
17699
|
+
return jspb.Message.setField(this, 3, value);
|
|
17700
|
+
};
|
|
17701
|
+
|
|
17702
|
+
|
|
17703
|
+
/**
|
|
17704
|
+
* Clears the field making it undefined.
|
|
17705
|
+
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
17706
|
+
*/
|
|
17707
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.clearMaxDepth = function() {
|
|
17708
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
17709
|
+
};
|
|
17710
|
+
|
|
17711
|
+
|
|
17712
|
+
/**
|
|
17713
|
+
* Returns whether this field is set.
|
|
17714
|
+
* @return {boolean}
|
|
17715
|
+
*/
|
|
17716
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.hasMaxDepth = function() {
|
|
17717
|
+
return jspb.Message.getField(this, 3) != null;
|
|
16662
17718
|
};
|
|
16663
17719
|
|
|
16664
17720
|
|
|
@@ -16676,7 +17732,25 @@ proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.getMaxPages = function()
|
|
|
16676
17732
|
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
16677
17733
|
*/
|
|
16678
17734
|
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.setMaxPages = function(value) {
|
|
16679
|
-
return jspb.Message.
|
|
17735
|
+
return jspb.Message.setField(this, 4, value);
|
|
17736
|
+
};
|
|
17737
|
+
|
|
17738
|
+
|
|
17739
|
+
/**
|
|
17740
|
+
* Clears the field making it undefined.
|
|
17741
|
+
* @return {!proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig} returns this
|
|
17742
|
+
*/
|
|
17743
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.clearMaxPages = function() {
|
|
17744
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
17745
|
+
};
|
|
17746
|
+
|
|
17747
|
+
|
|
17748
|
+
/**
|
|
17749
|
+
* Returns whether this field is set.
|
|
17750
|
+
* @return {boolean}
|
|
17751
|
+
*/
|
|
17752
|
+
proto.ondewo.nlu.RagCrawlerDeepCrawlerConfig.prototype.hasMaxPages = function() {
|
|
17753
|
+
return jspb.Message.getField(this, 4) != null;
|
|
16680
17754
|
};
|
|
16681
17755
|
|
|
16682
17756
|
|
|
@@ -16957,9 +18031,9 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.toObject = function(opt_i
|
|
|
16957
18031
|
*/
|
|
16958
18032
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.toObject = function(includeInstance, msg) {
|
|
16959
18033
|
var f, obj = {
|
|
16960
|
-
type: jspb.Message.
|
|
16961
|
-
value: jspb.Message.
|
|
16962
|
-
key: jspb.Message.
|
|
18034
|
+
type: (f = jspb.Message.getField(msg, 1)) == null ? undefined : f,
|
|
18035
|
+
value: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
|
|
18036
|
+
key: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
16963
18037
|
};
|
|
16964
18038
|
|
|
16965
18039
|
if (includeInstance) {
|
|
@@ -17037,22 +18111,22 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.serializeBinary = functio
|
|
|
17037
18111
|
*/
|
|
17038
18112
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.serializeBinaryToWriter = function(message, writer) {
|
|
17039
18113
|
var f = undefined;
|
|
17040
|
-
f =
|
|
17041
|
-
if (f
|
|
18114
|
+
f = /** @type {!proto.ondewo.nlu.RagCrawlerMetaDataExtractorType} */ (jspb.Message.getField(message, 1));
|
|
18115
|
+
if (f != null) {
|
|
17042
18116
|
writer.writeEnum(
|
|
17043
18117
|
1,
|
|
17044
18118
|
f
|
|
17045
18119
|
);
|
|
17046
18120
|
}
|
|
17047
|
-
f =
|
|
17048
|
-
if (f
|
|
18121
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
18122
|
+
if (f != null) {
|
|
17049
18123
|
writer.writeString(
|
|
17050
18124
|
2,
|
|
17051
18125
|
f
|
|
17052
18126
|
);
|
|
17053
18127
|
}
|
|
17054
|
-
f =
|
|
17055
|
-
if (f
|
|
18128
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
18129
|
+
if (f != null) {
|
|
17056
18130
|
writer.writeString(
|
|
17057
18131
|
3,
|
|
17058
18132
|
f
|
|
@@ -17075,7 +18149,25 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.getType = function() {
|
|
|
17075
18149
|
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
17076
18150
|
*/
|
|
17077
18151
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.setType = function(value) {
|
|
17078
|
-
return jspb.Message.
|
|
18152
|
+
return jspb.Message.setField(this, 1, value);
|
|
18153
|
+
};
|
|
18154
|
+
|
|
18155
|
+
|
|
18156
|
+
/**
|
|
18157
|
+
* Clears the field making it undefined.
|
|
18158
|
+
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
18159
|
+
*/
|
|
18160
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.clearType = function() {
|
|
18161
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
18162
|
+
};
|
|
18163
|
+
|
|
18164
|
+
|
|
18165
|
+
/**
|
|
18166
|
+
* Returns whether this field is set.
|
|
18167
|
+
* @return {boolean}
|
|
18168
|
+
*/
|
|
18169
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.hasType = function() {
|
|
18170
|
+
return jspb.Message.getField(this, 1) != null;
|
|
17079
18171
|
};
|
|
17080
18172
|
|
|
17081
18173
|
|
|
@@ -17093,7 +18185,25 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.getValue = function() {
|
|
|
17093
18185
|
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
17094
18186
|
*/
|
|
17095
18187
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.setValue = function(value) {
|
|
17096
|
-
return jspb.Message.
|
|
18188
|
+
return jspb.Message.setField(this, 2, value);
|
|
18189
|
+
};
|
|
18190
|
+
|
|
18191
|
+
|
|
18192
|
+
/**
|
|
18193
|
+
* Clears the field making it undefined.
|
|
18194
|
+
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
18195
|
+
*/
|
|
18196
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.clearValue = function() {
|
|
18197
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
18198
|
+
};
|
|
18199
|
+
|
|
18200
|
+
|
|
18201
|
+
/**
|
|
18202
|
+
* Returns whether this field is set.
|
|
18203
|
+
* @return {boolean}
|
|
18204
|
+
*/
|
|
18205
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.hasValue = function() {
|
|
18206
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17097
18207
|
};
|
|
17098
18208
|
|
|
17099
18209
|
|
|
@@ -17111,7 +18221,25 @@ proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.getKey = function() {
|
|
|
17111
18221
|
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
17112
18222
|
*/
|
|
17113
18223
|
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.setKey = function(value) {
|
|
17114
|
-
return jspb.Message.
|
|
18224
|
+
return jspb.Message.setField(this, 3, value);
|
|
18225
|
+
};
|
|
18226
|
+
|
|
18227
|
+
|
|
18228
|
+
/**
|
|
18229
|
+
* Clears the field making it undefined.
|
|
18230
|
+
* @return {!proto.ondewo.nlu.RagCrawlerMetaDataExtractor} returns this
|
|
18231
|
+
*/
|
|
18232
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.clearKey = function() {
|
|
18233
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
18234
|
+
};
|
|
18235
|
+
|
|
18236
|
+
|
|
18237
|
+
/**
|
|
18238
|
+
* Returns whether this field is set.
|
|
18239
|
+
* @return {boolean}
|
|
18240
|
+
*/
|
|
18241
|
+
proto.ondewo.nlu.RagCrawlerMetaDataExtractor.prototype.hasKey = function() {
|
|
18242
|
+
return jspb.Message.getField(this, 3) != null;
|
|
17115
18243
|
};
|
|
17116
18244
|
|
|
17117
18245
|
|
|
@@ -17147,8 +18275,8 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.toObject = function(opt_include
|
|
|
17147
18275
|
*/
|
|
17148
18276
|
proto.ondewo.nlu.RagCrawlerRetryConfig.toObject = function(includeInstance, msg) {
|
|
17149
18277
|
var f, obj = {
|
|
17150
|
-
pageLoadTimeoutSeconds: jspb.Message.
|
|
17151
|
-
retryMaxAttempts: jspb.Message.
|
|
18278
|
+
pageLoadTimeoutSeconds: (f = jspb.Message.getField(msg, 1)) == null ? undefined : f,
|
|
18279
|
+
retryMaxAttempts: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f
|
|
17152
18280
|
};
|
|
17153
18281
|
|
|
17154
18282
|
if (includeInstance) {
|
|
@@ -17222,15 +18350,15 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.serializeBinary = function() {
|
|
|
17222
18350
|
*/
|
|
17223
18351
|
proto.ondewo.nlu.RagCrawlerRetryConfig.serializeBinaryToWriter = function(message, writer) {
|
|
17224
18352
|
var f = undefined;
|
|
17225
|
-
f =
|
|
17226
|
-
if (f
|
|
18353
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
18354
|
+
if (f != null) {
|
|
17227
18355
|
writer.writeInt32(
|
|
17228
18356
|
1,
|
|
17229
18357
|
f
|
|
17230
18358
|
);
|
|
17231
18359
|
}
|
|
17232
|
-
f =
|
|
17233
|
-
if (f
|
|
18360
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
|
18361
|
+
if (f != null) {
|
|
17234
18362
|
writer.writeInt32(
|
|
17235
18363
|
2,
|
|
17236
18364
|
f
|
|
@@ -17253,7 +18381,25 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.getPageLoadTimeoutSeconds = fun
|
|
|
17253
18381
|
* @return {!proto.ondewo.nlu.RagCrawlerRetryConfig} returns this
|
|
17254
18382
|
*/
|
|
17255
18383
|
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.setPageLoadTimeoutSeconds = function(value) {
|
|
17256
|
-
return jspb.Message.
|
|
18384
|
+
return jspb.Message.setField(this, 1, value);
|
|
18385
|
+
};
|
|
18386
|
+
|
|
18387
|
+
|
|
18388
|
+
/**
|
|
18389
|
+
* Clears the field making it undefined.
|
|
18390
|
+
* @return {!proto.ondewo.nlu.RagCrawlerRetryConfig} returns this
|
|
18391
|
+
*/
|
|
18392
|
+
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.clearPageLoadTimeoutSeconds = function() {
|
|
18393
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
18394
|
+
};
|
|
18395
|
+
|
|
18396
|
+
|
|
18397
|
+
/**
|
|
18398
|
+
* Returns whether this field is set.
|
|
18399
|
+
* @return {boolean}
|
|
18400
|
+
*/
|
|
18401
|
+
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.hasPageLoadTimeoutSeconds = function() {
|
|
18402
|
+
return jspb.Message.getField(this, 1) != null;
|
|
17257
18403
|
};
|
|
17258
18404
|
|
|
17259
18405
|
|
|
@@ -17271,7 +18417,25 @@ proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.getRetryMaxAttempts = function(
|
|
|
17271
18417
|
* @return {!proto.ondewo.nlu.RagCrawlerRetryConfig} returns this
|
|
17272
18418
|
*/
|
|
17273
18419
|
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.setRetryMaxAttempts = function(value) {
|
|
17274
|
-
return jspb.Message.
|
|
18420
|
+
return jspb.Message.setField(this, 2, value);
|
|
18421
|
+
};
|
|
18422
|
+
|
|
18423
|
+
|
|
18424
|
+
/**
|
|
18425
|
+
* Clears the field making it undefined.
|
|
18426
|
+
* @return {!proto.ondewo.nlu.RagCrawlerRetryConfig} returns this
|
|
18427
|
+
*/
|
|
18428
|
+
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.clearRetryMaxAttempts = function() {
|
|
18429
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
18430
|
+
};
|
|
18431
|
+
|
|
18432
|
+
|
|
18433
|
+
/**
|
|
18434
|
+
* Returns whether this field is set.
|
|
18435
|
+
* @return {boolean}
|
|
18436
|
+
*/
|
|
18437
|
+
proto.ondewo.nlu.RagCrawlerRetryConfig.prototype.hasRetryMaxAttempts = function() {
|
|
18438
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17275
18439
|
};
|
|
17276
18440
|
|
|
17277
18441
|
|
|
@@ -17308,7 +18472,7 @@ proto.ondewo.nlu.RagCrawlerContentResult.prototype.toObject = function(opt_inclu
|
|
|
17308
18472
|
proto.ondewo.nlu.RagCrawlerContentResult.toObject = function(includeInstance, msg) {
|
|
17309
18473
|
var f, obj = {
|
|
17310
18474
|
metadata: (f = msg.getMetadata()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
17311
|
-
markdown: jspb.Message.
|
|
18475
|
+
markdown: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f
|
|
17312
18476
|
};
|
|
17313
18477
|
|
|
17314
18478
|
if (includeInstance) {
|
|
@@ -17391,8 +18555,8 @@ proto.ondewo.nlu.RagCrawlerContentResult.serializeBinaryToWriter = function(mess
|
|
|
17391
18555
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
17392
18556
|
);
|
|
17393
18557
|
}
|
|
17394
|
-
f =
|
|
17395
|
-
if (f
|
|
18558
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
18559
|
+
if (f != null) {
|
|
17396
18560
|
writer.writeString(
|
|
17397
18561
|
2,
|
|
17398
18562
|
f
|
|
@@ -17452,7 +18616,25 @@ proto.ondewo.nlu.RagCrawlerContentResult.prototype.getMarkdown = function() {
|
|
|
17452
18616
|
* @return {!proto.ondewo.nlu.RagCrawlerContentResult} returns this
|
|
17453
18617
|
*/
|
|
17454
18618
|
proto.ondewo.nlu.RagCrawlerContentResult.prototype.setMarkdown = function(value) {
|
|
17455
|
-
return jspb.Message.
|
|
18619
|
+
return jspb.Message.setField(this, 2, value);
|
|
18620
|
+
};
|
|
18621
|
+
|
|
18622
|
+
|
|
18623
|
+
/**
|
|
18624
|
+
* Clears the field making it undefined.
|
|
18625
|
+
* @return {!proto.ondewo.nlu.RagCrawlerContentResult} returns this
|
|
18626
|
+
*/
|
|
18627
|
+
proto.ondewo.nlu.RagCrawlerContentResult.prototype.clearMarkdown = function() {
|
|
18628
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
18629
|
+
};
|
|
18630
|
+
|
|
18631
|
+
|
|
18632
|
+
/**
|
|
18633
|
+
* Returns whether this field is set.
|
|
18634
|
+
* @return {boolean}
|
|
18635
|
+
*/
|
|
18636
|
+
proto.ondewo.nlu.RagCrawlerContentResult.prototype.hasMarkdown = function() {
|
|
18637
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17456
18638
|
};
|
|
17457
18639
|
|
|
17458
18640
|
|
|
@@ -17489,8 +18671,8 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.toObject = function(opt_inclu
|
|
|
17489
18671
|
proto.ondewo.nlu.RagCrawlerExecutionInfo.toObject = function(includeInstance, msg) {
|
|
17490
18672
|
var f, obj = {
|
|
17491
18673
|
sslCertificate: (f = msg.getSslCertificate()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
17492
|
-
success: jspb.Message.
|
|
17493
|
-
errorMessage: jspb.Message.
|
|
18674
|
+
success: (f = jspb.Message.getBooleanField(msg, 2)) == null ? undefined : f,
|
|
18675
|
+
errorMessage: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
17494
18676
|
};
|
|
17495
18677
|
|
|
17496
18678
|
if (includeInstance) {
|
|
@@ -17577,15 +18759,15 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.serializeBinaryToWriter = function(mess
|
|
|
17577
18759
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
17578
18760
|
);
|
|
17579
18761
|
}
|
|
17580
|
-
f =
|
|
17581
|
-
if (f) {
|
|
18762
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 2));
|
|
18763
|
+
if (f != null) {
|
|
17582
18764
|
writer.writeBool(
|
|
17583
18765
|
2,
|
|
17584
18766
|
f
|
|
17585
18767
|
);
|
|
17586
18768
|
}
|
|
17587
|
-
f =
|
|
17588
|
-
if (f
|
|
18769
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
18770
|
+
if (f != null) {
|
|
17589
18771
|
writer.writeString(
|
|
17590
18772
|
3,
|
|
17591
18773
|
f
|
|
@@ -17645,7 +18827,25 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.getSuccess = function() {
|
|
|
17645
18827
|
* @return {!proto.ondewo.nlu.RagCrawlerExecutionInfo} returns this
|
|
17646
18828
|
*/
|
|
17647
18829
|
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.setSuccess = function(value) {
|
|
17648
|
-
return jspb.Message.
|
|
18830
|
+
return jspb.Message.setField(this, 2, value);
|
|
18831
|
+
};
|
|
18832
|
+
|
|
18833
|
+
|
|
18834
|
+
/**
|
|
18835
|
+
* Clears the field making it undefined.
|
|
18836
|
+
* @return {!proto.ondewo.nlu.RagCrawlerExecutionInfo} returns this
|
|
18837
|
+
*/
|
|
18838
|
+
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.clearSuccess = function() {
|
|
18839
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
18840
|
+
};
|
|
18841
|
+
|
|
18842
|
+
|
|
18843
|
+
/**
|
|
18844
|
+
* Returns whether this field is set.
|
|
18845
|
+
* @return {boolean}
|
|
18846
|
+
*/
|
|
18847
|
+
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.hasSuccess = function() {
|
|
18848
|
+
return jspb.Message.getField(this, 2) != null;
|
|
17649
18849
|
};
|
|
17650
18850
|
|
|
17651
18851
|
|
|
@@ -17663,7 +18863,25 @@ proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.getErrorMessage = function()
|
|
|
17663
18863
|
* @return {!proto.ondewo.nlu.RagCrawlerExecutionInfo} returns this
|
|
17664
18864
|
*/
|
|
17665
18865
|
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.setErrorMessage = function(value) {
|
|
17666
|
-
return jspb.Message.
|
|
18866
|
+
return jspb.Message.setField(this, 3, value);
|
|
18867
|
+
};
|
|
18868
|
+
|
|
18869
|
+
|
|
18870
|
+
/**
|
|
18871
|
+
* Clears the field making it undefined.
|
|
18872
|
+
* @return {!proto.ondewo.nlu.RagCrawlerExecutionInfo} returns this
|
|
18873
|
+
*/
|
|
18874
|
+
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.clearErrorMessage = function() {
|
|
18875
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
18876
|
+
};
|
|
18877
|
+
|
|
18878
|
+
|
|
18879
|
+
/**
|
|
18880
|
+
* Returns whether this field is set.
|
|
18881
|
+
* @return {boolean}
|
|
18882
|
+
*/
|
|
18883
|
+
proto.ondewo.nlu.RagCrawlerExecutionInfo.prototype.hasErrorMessage = function() {
|
|
18884
|
+
return jspb.Message.getField(this, 3) != null;
|
|
17667
18885
|
};
|
|
17668
18886
|
|
|
17669
18887
|
|
|
@@ -18505,10 +19723,10 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.toObject = function(includeInstance,
|
|
|
18505
19723
|
var f, obj = {
|
|
18506
19724
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
18507
19725
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
18508
|
-
crawlerName: jspb.Message.
|
|
18509
|
-
pageToken: jspb.Message.
|
|
18510
|
-
status: jspb.Message.
|
|
18511
|
-
orderby: jspb.Message.
|
|
19726
|
+
crawlerName: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f,
|
|
19727
|
+
pageToken: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
19728
|
+
status: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
19729
|
+
orderby: (f = jspb.Message.getField(msg, 6)) == null ? undefined : f,
|
|
18512
19730
|
sortingMode: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f
|
|
18513
19731
|
};
|
|
18514
19732
|
|
|
@@ -18617,29 +19835,29 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.serializeBinaryToWriter = function(me
|
|
|
18617
19835
|
f
|
|
18618
19836
|
);
|
|
18619
19837
|
}
|
|
18620
|
-
f =
|
|
18621
|
-
if (f
|
|
19838
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
19839
|
+
if (f != null) {
|
|
18622
19840
|
writer.writeString(
|
|
18623
19841
|
3,
|
|
18624
19842
|
f
|
|
18625
19843
|
);
|
|
18626
19844
|
}
|
|
18627
|
-
f =
|
|
18628
|
-
if (f
|
|
19845
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
19846
|
+
if (f != null) {
|
|
18629
19847
|
writer.writeString(
|
|
18630
19848
|
4,
|
|
18631
19849
|
f
|
|
18632
19850
|
);
|
|
18633
19851
|
}
|
|
18634
|
-
f =
|
|
18635
|
-
if (f
|
|
19852
|
+
f = /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (jspb.Message.getField(message, 5));
|
|
19853
|
+
if (f != null) {
|
|
18636
19854
|
writer.writeEnum(
|
|
18637
19855
|
5,
|
|
18638
19856
|
f
|
|
18639
19857
|
);
|
|
18640
19858
|
}
|
|
18641
|
-
f =
|
|
18642
|
-
if (f
|
|
19859
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
19860
|
+
if (f != null) {
|
|
18643
19861
|
writer.writeString(
|
|
18644
19862
|
6,
|
|
18645
19863
|
f
|
|
@@ -18705,7 +19923,25 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getCrawlerName = function()
|
|
|
18705
19923
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18706
19924
|
*/
|
|
18707
19925
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setCrawlerName = function(value) {
|
|
18708
|
-
return jspb.Message.
|
|
19926
|
+
return jspb.Message.setField(this, 3, 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.clearCrawlerName = function() {
|
|
19935
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
19936
|
+
};
|
|
19937
|
+
|
|
19938
|
+
|
|
19939
|
+
/**
|
|
19940
|
+
* Returns whether this field is set.
|
|
19941
|
+
* @return {boolean}
|
|
19942
|
+
*/
|
|
19943
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.hasCrawlerName = function() {
|
|
19944
|
+
return jspb.Message.getField(this, 3) != null;
|
|
18709
19945
|
};
|
|
18710
19946
|
|
|
18711
19947
|
|
|
@@ -18723,13 +19959,31 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getPageToken = function() {
|
|
|
18723
19959
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18724
19960
|
*/
|
|
18725
19961
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setPageToken = function(value) {
|
|
18726
|
-
return jspb.Message.
|
|
19962
|
+
return jspb.Message.setField(this, 4, value);
|
|
18727
19963
|
};
|
|
18728
19964
|
|
|
18729
19965
|
|
|
18730
19966
|
/**
|
|
18731
|
-
*
|
|
18732
|
-
* @return {!proto.ondewo.nlu.
|
|
19967
|
+
* Clears the field making it undefined.
|
|
19968
|
+
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
19969
|
+
*/
|
|
19970
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.clearPageToken = function() {
|
|
19971
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
19972
|
+
};
|
|
19973
|
+
|
|
19974
|
+
|
|
19975
|
+
/**
|
|
19976
|
+
* Returns whether this field is set.
|
|
19977
|
+
* @return {boolean}
|
|
19978
|
+
*/
|
|
19979
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.hasPageToken = function() {
|
|
19980
|
+
return jspb.Message.getField(this, 4) != null;
|
|
19981
|
+
};
|
|
19982
|
+
|
|
19983
|
+
|
|
19984
|
+
/**
|
|
19985
|
+
* optional OperationMetadata.Status status = 5;
|
|
19986
|
+
* @return {!proto.ondewo.nlu.OperationMetadata.Status}
|
|
18733
19987
|
*/
|
|
18734
19988
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getStatus = function() {
|
|
18735
19989
|
return /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
@@ -18741,7 +19995,25 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getStatus = function() {
|
|
|
18741
19995
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18742
19996
|
*/
|
|
18743
19997
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setStatus = function(value) {
|
|
18744
|
-
return jspb.Message.
|
|
19998
|
+
return jspb.Message.setField(this, 5, value);
|
|
19999
|
+
};
|
|
20000
|
+
|
|
20001
|
+
|
|
20002
|
+
/**
|
|
20003
|
+
* Clears the field making it undefined.
|
|
20004
|
+
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
20005
|
+
*/
|
|
20006
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.clearStatus = function() {
|
|
20007
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
20008
|
+
};
|
|
20009
|
+
|
|
20010
|
+
|
|
20011
|
+
/**
|
|
20012
|
+
* Returns whether this field is set.
|
|
20013
|
+
* @return {boolean}
|
|
20014
|
+
*/
|
|
20015
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.hasStatus = function() {
|
|
20016
|
+
return jspb.Message.getField(this, 5) != null;
|
|
18745
20017
|
};
|
|
18746
20018
|
|
|
18747
20019
|
|
|
@@ -18759,7 +20031,25 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getOrderby = function() {
|
|
|
18759
20031
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18760
20032
|
*/
|
|
18761
20033
|
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setOrderby = function(value) {
|
|
18762
|
-
return jspb.Message.
|
|
20034
|
+
return jspb.Message.setField(this, 6, value);
|
|
20035
|
+
};
|
|
20036
|
+
|
|
20037
|
+
|
|
20038
|
+
/**
|
|
20039
|
+
* Clears the field making it undefined.
|
|
20040
|
+
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
20041
|
+
*/
|
|
20042
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.clearOrderby = function() {
|
|
20043
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
20044
|
+
};
|
|
20045
|
+
|
|
20046
|
+
|
|
20047
|
+
/**
|
|
20048
|
+
* Returns whether this field is set.
|
|
20049
|
+
* @return {boolean}
|
|
20050
|
+
*/
|
|
20051
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.hasOrderby = function() {
|
|
20052
|
+
return jspb.Message.getField(this, 6) != null;
|
|
18763
20053
|
};
|
|
18764
20054
|
|
|
18765
20055
|
|
|
@@ -19825,8 +21115,11 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.toObject = function(includeInstance
|
|
|
19825
21115
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
19826
21116
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
19827
21117
|
operationName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
19828
|
-
pageToken: jspb.Message.
|
|
19829
|
-
urlQuery: jspb.Message.
|
|
21118
|
+
pageToken: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
21119
|
+
urlQuery: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
21120
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
|
|
21121
|
+
orderby: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
21122
|
+
sortingMode: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f
|
|
19830
21123
|
};
|
|
19831
21124
|
|
|
19832
21125
|
if (includeInstance) {
|
|
@@ -19883,6 +21176,19 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.deserializeBinaryFromReader = funct
|
|
|
19883
21176
|
var value = /** @type {string} */ (reader.readString());
|
|
19884
21177
|
msg.setUrlQuery(value);
|
|
19885
21178
|
break;
|
|
21179
|
+
case 6:
|
|
21180
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
21181
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
21182
|
+
msg.setFieldMask(value);
|
|
21183
|
+
break;
|
|
21184
|
+
case 7:
|
|
21185
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21186
|
+
msg.setOrderby(value);
|
|
21187
|
+
break;
|
|
21188
|
+
case 8:
|
|
21189
|
+
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
21190
|
+
msg.setSortingMode(value);
|
|
21191
|
+
break;
|
|
19886
21192
|
default:
|
|
19887
21193
|
reader.skipField();
|
|
19888
21194
|
break;
|
|
@@ -19933,20 +21239,42 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.serializeBinaryToWriter = function(
|
|
|
19933
21239
|
f
|
|
19934
21240
|
);
|
|
19935
21241
|
}
|
|
19936
|
-
f =
|
|
19937
|
-
if (f
|
|
21242
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
21243
|
+
if (f != null) {
|
|
19938
21244
|
writer.writeString(
|
|
19939
21245
|
4,
|
|
19940
21246
|
f
|
|
19941
21247
|
);
|
|
19942
21248
|
}
|
|
19943
|
-
f =
|
|
19944
|
-
if (f
|
|
21249
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
21250
|
+
if (f != null) {
|
|
19945
21251
|
writer.writeString(
|
|
19946
21252
|
5,
|
|
19947
21253
|
f
|
|
19948
21254
|
);
|
|
19949
21255
|
}
|
|
21256
|
+
f = message.getFieldMask();
|
|
21257
|
+
if (f != null) {
|
|
21258
|
+
writer.writeMessage(
|
|
21259
|
+
6,
|
|
21260
|
+
f,
|
|
21261
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
21262
|
+
);
|
|
21263
|
+
}
|
|
21264
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
21265
|
+
if (f != null) {
|
|
21266
|
+
writer.writeString(
|
|
21267
|
+
7,
|
|
21268
|
+
f
|
|
21269
|
+
);
|
|
21270
|
+
}
|
|
21271
|
+
f = /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getField(message, 8));
|
|
21272
|
+
if (f != null) {
|
|
21273
|
+
writer.writeEnum(
|
|
21274
|
+
8,
|
|
21275
|
+
f
|
|
21276
|
+
);
|
|
21277
|
+
}
|
|
19950
21278
|
};
|
|
19951
21279
|
|
|
19952
21280
|
|
|
@@ -20018,7 +21346,25 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getPageToken = function()
|
|
|
20018
21346
|
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
20019
21347
|
*/
|
|
20020
21348
|
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setPageToken = function(value) {
|
|
20021
|
-
return jspb.Message.
|
|
21349
|
+
return jspb.Message.setField(this, 4, value);
|
|
21350
|
+
};
|
|
21351
|
+
|
|
21352
|
+
|
|
21353
|
+
/**
|
|
21354
|
+
* Clears the field making it undefined.
|
|
21355
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21356
|
+
*/
|
|
21357
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearPageToken = function() {
|
|
21358
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
21359
|
+
};
|
|
21360
|
+
|
|
21361
|
+
|
|
21362
|
+
/**
|
|
21363
|
+
* Returns whether this field is set.
|
|
21364
|
+
* @return {boolean}
|
|
21365
|
+
*/
|
|
21366
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasPageToken = function() {
|
|
21367
|
+
return jspb.Message.getField(this, 4) != null;
|
|
20022
21368
|
};
|
|
20023
21369
|
|
|
20024
21370
|
|
|
@@ -20036,7 +21382,134 @@ proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getUrlQuery = function()
|
|
|
20036
21382
|
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
20037
21383
|
*/
|
|
20038
21384
|
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setUrlQuery = function(value) {
|
|
20039
|
-
return jspb.Message.
|
|
21385
|
+
return jspb.Message.setField(this, 5, value);
|
|
21386
|
+
};
|
|
21387
|
+
|
|
21388
|
+
|
|
21389
|
+
/**
|
|
21390
|
+
* Clears the field making it undefined.
|
|
21391
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21392
|
+
*/
|
|
21393
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearUrlQuery = function() {
|
|
21394
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
21395
|
+
};
|
|
21396
|
+
|
|
21397
|
+
|
|
21398
|
+
/**
|
|
21399
|
+
* Returns whether this field is set.
|
|
21400
|
+
* @return {boolean}
|
|
21401
|
+
*/
|
|
21402
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasUrlQuery = function() {
|
|
21403
|
+
return jspb.Message.getField(this, 5) != null;
|
|
21404
|
+
};
|
|
21405
|
+
|
|
21406
|
+
|
|
21407
|
+
/**
|
|
21408
|
+
* optional google.protobuf.FieldMask field_mask = 6;
|
|
21409
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
21410
|
+
*/
|
|
21411
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getFieldMask = function() {
|
|
21412
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
21413
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 6));
|
|
21414
|
+
};
|
|
21415
|
+
|
|
21416
|
+
|
|
21417
|
+
/**
|
|
21418
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
21419
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21420
|
+
*/
|
|
21421
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setFieldMask = function(value) {
|
|
21422
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
21423
|
+
};
|
|
21424
|
+
|
|
21425
|
+
|
|
21426
|
+
/**
|
|
21427
|
+
* Clears the message field making it undefined.
|
|
21428
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21429
|
+
*/
|
|
21430
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearFieldMask = function() {
|
|
21431
|
+
return this.setFieldMask(undefined);
|
|
21432
|
+
};
|
|
21433
|
+
|
|
21434
|
+
|
|
21435
|
+
/**
|
|
21436
|
+
* Returns whether this field is set.
|
|
21437
|
+
* @return {boolean}
|
|
21438
|
+
*/
|
|
21439
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasFieldMask = function() {
|
|
21440
|
+
return jspb.Message.getField(this, 6) != null;
|
|
21441
|
+
};
|
|
21442
|
+
|
|
21443
|
+
|
|
21444
|
+
/**
|
|
21445
|
+
* optional string orderby = 7;
|
|
21446
|
+
* @return {string}
|
|
21447
|
+
*/
|
|
21448
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getOrderby = function() {
|
|
21449
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
21450
|
+
};
|
|
21451
|
+
|
|
21452
|
+
|
|
21453
|
+
/**
|
|
21454
|
+
* @param {string} value
|
|
21455
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21456
|
+
*/
|
|
21457
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setOrderby = function(value) {
|
|
21458
|
+
return jspb.Message.setField(this, 7, value);
|
|
21459
|
+
};
|
|
21460
|
+
|
|
21461
|
+
|
|
21462
|
+
/**
|
|
21463
|
+
* Clears the field making it undefined.
|
|
21464
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21465
|
+
*/
|
|
21466
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearOrderby = function() {
|
|
21467
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
21468
|
+
};
|
|
21469
|
+
|
|
21470
|
+
|
|
21471
|
+
/**
|
|
21472
|
+
* Returns whether this field is set.
|
|
21473
|
+
* @return {boolean}
|
|
21474
|
+
*/
|
|
21475
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasOrderby = function() {
|
|
21476
|
+
return jspb.Message.getField(this, 7) != null;
|
|
21477
|
+
};
|
|
21478
|
+
|
|
21479
|
+
|
|
21480
|
+
/**
|
|
21481
|
+
* optional SortingMode sorting_mode = 8;
|
|
21482
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
21483
|
+
*/
|
|
21484
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.getSortingMode = function() {
|
|
21485
|
+
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
|
|
21486
|
+
};
|
|
21487
|
+
|
|
21488
|
+
|
|
21489
|
+
/**
|
|
21490
|
+
* @param {!proto.ondewo.nlu.SortingMode} value
|
|
21491
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21492
|
+
*/
|
|
21493
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.setSortingMode = function(value) {
|
|
21494
|
+
return jspb.Message.setField(this, 8, value);
|
|
21495
|
+
};
|
|
21496
|
+
|
|
21497
|
+
|
|
21498
|
+
/**
|
|
21499
|
+
* Clears the field making it undefined.
|
|
21500
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} returns this
|
|
21501
|
+
*/
|
|
21502
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.clearSortingMode = function() {
|
|
21503
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
21504
|
+
};
|
|
21505
|
+
|
|
21506
|
+
|
|
21507
|
+
/**
|
|
21508
|
+
* Returns whether this field is set.
|
|
21509
|
+
* @return {boolean}
|
|
21510
|
+
*/
|
|
21511
|
+
proto.ondewo.nlu.RagGetCrawlerResultsRequest.prototype.hasSortingMode = function() {
|
|
21512
|
+
return jspb.Message.getField(this, 8) != null;
|
|
20040
21513
|
};
|
|
20041
21514
|
|
|
20042
21515
|
|
|
@@ -20295,7 +21768,8 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.toObject = function(includeInstance,
|
|
|
20295
21768
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
20296
21769
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
20297
21770
|
operationName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
20298
|
-
url: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
21771
|
+
url: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
21772
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
20299
21773
|
};
|
|
20300
21774
|
|
|
20301
21775
|
if (includeInstance) {
|
|
@@ -20348,6 +21822,11 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.deserializeBinaryFromReader = functi
|
|
|
20348
21822
|
var value = /** @type {string} */ (reader.readString());
|
|
20349
21823
|
msg.setUrl(value);
|
|
20350
21824
|
break;
|
|
21825
|
+
case 5:
|
|
21826
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
21827
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
21828
|
+
msg.setFieldMask(value);
|
|
21829
|
+
break;
|
|
20351
21830
|
default:
|
|
20352
21831
|
reader.skipField();
|
|
20353
21832
|
break;
|
|
@@ -20405,6 +21884,14 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.serializeBinaryToWriter = function(m
|
|
|
20405
21884
|
f
|
|
20406
21885
|
);
|
|
20407
21886
|
}
|
|
21887
|
+
f = message.getFieldMask();
|
|
21888
|
+
if (f != null) {
|
|
21889
|
+
writer.writeMessage(
|
|
21890
|
+
5,
|
|
21891
|
+
f,
|
|
21892
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
21893
|
+
);
|
|
21894
|
+
}
|
|
20408
21895
|
};
|
|
20409
21896
|
|
|
20410
21897
|
|
|
@@ -20480,17 +21967,54 @@ proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.setUrl = function(value) {
|
|
|
20480
21967
|
};
|
|
20481
21968
|
|
|
20482
21969
|
|
|
20483
|
-
|
|
20484
21970
|
/**
|
|
20485
|
-
*
|
|
20486
|
-
* @
|
|
20487
|
-
* @const
|
|
21971
|
+
* optional google.protobuf.FieldMask field_mask = 5;
|
|
21972
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
20488
21973
|
*/
|
|
20489
|
-
proto.ondewo.nlu.
|
|
21974
|
+
proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.getFieldMask = function() {
|
|
21975
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
21976
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 5));
|
|
21977
|
+
};
|
|
20490
21978
|
|
|
20491
21979
|
|
|
21980
|
+
/**
|
|
21981
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
21982
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultRequest} returns this
|
|
21983
|
+
*/
|
|
21984
|
+
proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.setFieldMask = function(value) {
|
|
21985
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
|
21986
|
+
};
|
|
21987
|
+
|
|
20492
21988
|
|
|
20493
|
-
|
|
21989
|
+
/**
|
|
21990
|
+
* Clears the message field making it undefined.
|
|
21991
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerResultRequest} returns this
|
|
21992
|
+
*/
|
|
21993
|
+
proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.clearFieldMask = function() {
|
|
21994
|
+
return this.setFieldMask(undefined);
|
|
21995
|
+
};
|
|
21996
|
+
|
|
21997
|
+
|
|
21998
|
+
/**
|
|
21999
|
+
* Returns whether this field is set.
|
|
22000
|
+
* @return {boolean}
|
|
22001
|
+
*/
|
|
22002
|
+
proto.ondewo.nlu.RagGetCrawlerResultRequest.prototype.hasFieldMask = function() {
|
|
22003
|
+
return jspb.Message.getField(this, 5) != null;
|
|
22004
|
+
};
|
|
22005
|
+
|
|
22006
|
+
|
|
22007
|
+
|
|
22008
|
+
/**
|
|
22009
|
+
* List of repeated fields within this message type.
|
|
22010
|
+
* @private {!Array<number>}
|
|
22011
|
+
* @const
|
|
22012
|
+
*/
|
|
22013
|
+
proto.ondewo.nlu.RagAddCrawlerResultsToDatasetsRequest.repeatedFields_ = [3,4,5];
|
|
22014
|
+
|
|
22015
|
+
|
|
22016
|
+
|
|
22017
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
20494
22018
|
/**
|
|
20495
22019
|
* Creates an object representation of this proto.
|
|
20496
22020
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
@@ -21124,9 +22648,11 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.toObject = function(includ
|
|
|
21124
22648
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
21125
22649
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
21126
22650
|
crawlerName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
21127
|
-
pageSize: jspb.Message.
|
|
21128
|
-
pageToken: jspb.Message.
|
|
21129
|
-
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
22651
|
+
pageSize: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
22652
|
+
pageToken: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
22653
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
|
|
22654
|
+
orderby: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
22655
|
+
sortingMode: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f
|
|
21130
22656
|
};
|
|
21131
22657
|
|
|
21132
22658
|
if (includeInstance) {
|
|
@@ -21188,6 +22714,14 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.deserializeBinaryFromReade
|
|
|
21188
22714
|
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
21189
22715
|
msg.setFieldMask(value);
|
|
21190
22716
|
break;
|
|
22717
|
+
case 7:
|
|
22718
|
+
var value = /** @type {string} */ (reader.readString());
|
|
22719
|
+
msg.setOrderby(value);
|
|
22720
|
+
break;
|
|
22721
|
+
case 8:
|
|
22722
|
+
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
22723
|
+
msg.setSortingMode(value);
|
|
22724
|
+
break;
|
|
21191
22725
|
default:
|
|
21192
22726
|
reader.skipField();
|
|
21193
22727
|
break;
|
|
@@ -21238,15 +22772,15 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.serializeBinaryToWriter =
|
|
|
21238
22772
|
f
|
|
21239
22773
|
);
|
|
21240
22774
|
}
|
|
21241
|
-
f =
|
|
21242
|
-
if (f
|
|
22775
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 4));
|
|
22776
|
+
if (f != null) {
|
|
21243
22777
|
writer.writeInt32(
|
|
21244
22778
|
4,
|
|
21245
22779
|
f
|
|
21246
22780
|
);
|
|
21247
22781
|
}
|
|
21248
|
-
f =
|
|
21249
|
-
if (f
|
|
22782
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
22783
|
+
if (f != null) {
|
|
21250
22784
|
writer.writeString(
|
|
21251
22785
|
5,
|
|
21252
22786
|
f
|
|
@@ -21260,6 +22794,20 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.serializeBinaryToWriter =
|
|
|
21260
22794
|
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
21261
22795
|
);
|
|
21262
22796
|
}
|
|
22797
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
22798
|
+
if (f != null) {
|
|
22799
|
+
writer.writeString(
|
|
22800
|
+
7,
|
|
22801
|
+
f
|
|
22802
|
+
);
|
|
22803
|
+
}
|
|
22804
|
+
f = /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getField(message, 8));
|
|
22805
|
+
if (f != null) {
|
|
22806
|
+
writer.writeEnum(
|
|
22807
|
+
8,
|
|
22808
|
+
f
|
|
22809
|
+
);
|
|
22810
|
+
}
|
|
21263
22811
|
};
|
|
21264
22812
|
|
|
21265
22813
|
|
|
@@ -21331,7 +22879,25 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.getPageSize = fu
|
|
|
21331
22879
|
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
21332
22880
|
*/
|
|
21333
22881
|
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.setPageSize = function(value) {
|
|
21334
|
-
return jspb.Message.
|
|
22882
|
+
return jspb.Message.setField(this, 4, value);
|
|
22883
|
+
};
|
|
22884
|
+
|
|
22885
|
+
|
|
22886
|
+
/**
|
|
22887
|
+
* Clears the field making it undefined.
|
|
22888
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
22889
|
+
*/
|
|
22890
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.clearPageSize = function() {
|
|
22891
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
22892
|
+
};
|
|
22893
|
+
|
|
22894
|
+
|
|
22895
|
+
/**
|
|
22896
|
+
* Returns whether this field is set.
|
|
22897
|
+
* @return {boolean}
|
|
22898
|
+
*/
|
|
22899
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasPageSize = function() {
|
|
22900
|
+
return jspb.Message.getField(this, 4) != null;
|
|
21335
22901
|
};
|
|
21336
22902
|
|
|
21337
22903
|
|
|
@@ -21349,7 +22915,25 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.getPageToken = f
|
|
|
21349
22915
|
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
21350
22916
|
*/
|
|
21351
22917
|
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.setPageToken = function(value) {
|
|
21352
|
-
return jspb.Message.
|
|
22918
|
+
return jspb.Message.setField(this, 5, value);
|
|
22919
|
+
};
|
|
22920
|
+
|
|
22921
|
+
|
|
22922
|
+
/**
|
|
22923
|
+
* Clears the field making it undefined.
|
|
22924
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
22925
|
+
*/
|
|
22926
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.clearPageToken = function() {
|
|
22927
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
22928
|
+
};
|
|
22929
|
+
|
|
22930
|
+
|
|
22931
|
+
/**
|
|
22932
|
+
* Returns whether this field is set.
|
|
22933
|
+
* @return {boolean}
|
|
22934
|
+
*/
|
|
22935
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasPageToken = function() {
|
|
22936
|
+
return jspb.Message.getField(this, 5) != null;
|
|
21353
22937
|
};
|
|
21354
22938
|
|
|
21355
22939
|
|
|
@@ -21390,6 +22974,78 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasFieldMask = f
|
|
|
21390
22974
|
};
|
|
21391
22975
|
|
|
21392
22976
|
|
|
22977
|
+
/**
|
|
22978
|
+
* optional string orderby = 7;
|
|
22979
|
+
* @return {string}
|
|
22980
|
+
*/
|
|
22981
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.getOrderby = function() {
|
|
22982
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
22983
|
+
};
|
|
22984
|
+
|
|
22985
|
+
|
|
22986
|
+
/**
|
|
22987
|
+
* @param {string} value
|
|
22988
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
22989
|
+
*/
|
|
22990
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.setOrderby = function(value) {
|
|
22991
|
+
return jspb.Message.setField(this, 7, value);
|
|
22992
|
+
};
|
|
22993
|
+
|
|
22994
|
+
|
|
22995
|
+
/**
|
|
22996
|
+
* Clears the field making it undefined.
|
|
22997
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
22998
|
+
*/
|
|
22999
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.clearOrderby = function() {
|
|
23000
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
23001
|
+
};
|
|
23002
|
+
|
|
23003
|
+
|
|
23004
|
+
/**
|
|
23005
|
+
* Returns whether this field is set.
|
|
23006
|
+
* @return {boolean}
|
|
23007
|
+
*/
|
|
23008
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasOrderby = function() {
|
|
23009
|
+
return jspb.Message.getField(this, 7) != null;
|
|
23010
|
+
};
|
|
23011
|
+
|
|
23012
|
+
|
|
23013
|
+
/**
|
|
23014
|
+
* optional SortingMode sorting_mode = 8;
|
|
23015
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
23016
|
+
*/
|
|
23017
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.getSortingMode = function() {
|
|
23018
|
+
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
|
|
23019
|
+
};
|
|
23020
|
+
|
|
23021
|
+
|
|
23022
|
+
/**
|
|
23023
|
+
* @param {!proto.ondewo.nlu.SortingMode} value
|
|
23024
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
23025
|
+
*/
|
|
23026
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.setSortingMode = function(value) {
|
|
23027
|
+
return jspb.Message.setField(this, 8, value);
|
|
23028
|
+
};
|
|
23029
|
+
|
|
23030
|
+
|
|
23031
|
+
/**
|
|
23032
|
+
* Clears the field making it undefined.
|
|
23033
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} returns this
|
|
23034
|
+
*/
|
|
23035
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.clearSortingMode = function() {
|
|
23036
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
23037
|
+
};
|
|
23038
|
+
|
|
23039
|
+
|
|
23040
|
+
/**
|
|
23041
|
+
* Returns whether this field is set.
|
|
23042
|
+
* @return {boolean}
|
|
23043
|
+
*/
|
|
23044
|
+
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest.prototype.hasSortingMode = function() {
|
|
23045
|
+
return jspb.Message.getField(this, 8) != null;
|
|
23046
|
+
};
|
|
23047
|
+
|
|
23048
|
+
|
|
21393
23049
|
|
|
21394
23050
|
/**
|
|
21395
23051
|
* List of repeated fields within this message type.
|
|
@@ -21622,14 +23278,17 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.toObject = function(includeInstance
|
|
|
21622
23278
|
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
21623
23279
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
21624
23280
|
operationName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
21625
|
-
pageToken: jspb.Message.
|
|
21626
|
-
pageSize: jspb.Message.
|
|
23281
|
+
pageToken: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
|
|
23282
|
+
pageSize: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
|
|
21627
23283
|
levelFiltersList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
21628
|
-
phaseFilter: jspb.Message.
|
|
21629
|
-
searchQuery: jspb.Message.
|
|
23284
|
+
phaseFilter: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f,
|
|
23285
|
+
searchQuery: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f,
|
|
21630
23286
|
startTime: (f = msg.getStartTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
21631
23287
|
endTime: (f = msg.getEndTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
21632
|
-
sourceUrlFilter: jspb.Message.
|
|
23288
|
+
sourceUrlFilter: (f = jspb.Message.getField(msg, 11)) == null ? undefined : f,
|
|
23289
|
+
orderby: (f = jspb.Message.getField(msg, 12)) == null ? undefined : f,
|
|
23290
|
+
sortingMode: (f = jspb.Message.getField(msg, 13)) == null ? undefined : f,
|
|
23291
|
+
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
21633
23292
|
};
|
|
21634
23293
|
|
|
21635
23294
|
if (includeInstance) {
|
|
@@ -21714,6 +23373,19 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.deserializeBinaryFromReader = funct
|
|
|
21714
23373
|
var value = /** @type {string} */ (reader.readString());
|
|
21715
23374
|
msg.setSourceUrlFilter(value);
|
|
21716
23375
|
break;
|
|
23376
|
+
case 12:
|
|
23377
|
+
var value = /** @type {string} */ (reader.readString());
|
|
23378
|
+
msg.setOrderby(value);
|
|
23379
|
+
break;
|
|
23380
|
+
case 13:
|
|
23381
|
+
var value = /** @type {!proto.ondewo.nlu.SortingMode} */ (reader.readEnum());
|
|
23382
|
+
msg.setSortingMode(value);
|
|
23383
|
+
break;
|
|
23384
|
+
case 14:
|
|
23385
|
+
var value = new google_protobuf_field_mask_pb.FieldMask;
|
|
23386
|
+
reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
|
|
23387
|
+
msg.setFieldMask(value);
|
|
23388
|
+
break;
|
|
21717
23389
|
default:
|
|
21718
23390
|
reader.skipField();
|
|
21719
23391
|
break;
|
|
@@ -21764,15 +23436,15 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.serializeBinaryToWriter = function(
|
|
|
21764
23436
|
f
|
|
21765
23437
|
);
|
|
21766
23438
|
}
|
|
21767
|
-
f =
|
|
21768
|
-
if (f
|
|
23439
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
23440
|
+
if (f != null) {
|
|
21769
23441
|
writer.writeString(
|
|
21770
23442
|
4,
|
|
21771
23443
|
f
|
|
21772
23444
|
);
|
|
21773
23445
|
}
|
|
21774
|
-
f =
|
|
21775
|
-
if (f
|
|
23446
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 5));
|
|
23447
|
+
if (f != null) {
|
|
21776
23448
|
writer.writeInt32(
|
|
21777
23449
|
5,
|
|
21778
23450
|
f
|
|
@@ -21785,15 +23457,15 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.serializeBinaryToWriter = function(
|
|
|
21785
23457
|
f
|
|
21786
23458
|
);
|
|
21787
23459
|
}
|
|
21788
|
-
f =
|
|
21789
|
-
if (f
|
|
23460
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
23461
|
+
if (f != null) {
|
|
21790
23462
|
writer.writeString(
|
|
21791
23463
|
7,
|
|
21792
23464
|
f
|
|
21793
23465
|
);
|
|
21794
23466
|
}
|
|
21795
|
-
f =
|
|
21796
|
-
if (f
|
|
23467
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
23468
|
+
if (f != null) {
|
|
21797
23469
|
writer.writeString(
|
|
21798
23470
|
8,
|
|
21799
23471
|
f
|
|
@@ -21815,13 +23487,35 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.serializeBinaryToWriter = function(
|
|
|
21815
23487
|
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
21816
23488
|
);
|
|
21817
23489
|
}
|
|
21818
|
-
f =
|
|
21819
|
-
if (f
|
|
23490
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 11));
|
|
23491
|
+
if (f != null) {
|
|
21820
23492
|
writer.writeString(
|
|
21821
23493
|
11,
|
|
21822
23494
|
f
|
|
21823
23495
|
);
|
|
21824
23496
|
}
|
|
23497
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 12));
|
|
23498
|
+
if (f != null) {
|
|
23499
|
+
writer.writeString(
|
|
23500
|
+
12,
|
|
23501
|
+
f
|
|
23502
|
+
);
|
|
23503
|
+
}
|
|
23504
|
+
f = /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getField(message, 13));
|
|
23505
|
+
if (f != null) {
|
|
23506
|
+
writer.writeEnum(
|
|
23507
|
+
13,
|
|
23508
|
+
f
|
|
23509
|
+
);
|
|
23510
|
+
}
|
|
23511
|
+
f = message.getFieldMask();
|
|
23512
|
+
if (f != null) {
|
|
23513
|
+
writer.writeMessage(
|
|
23514
|
+
14,
|
|
23515
|
+
f,
|
|
23516
|
+
google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
|
|
23517
|
+
);
|
|
23518
|
+
}
|
|
21825
23519
|
};
|
|
21826
23520
|
|
|
21827
23521
|
|
|
@@ -21893,7 +23587,25 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPageToken = function()
|
|
|
21893
23587
|
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21894
23588
|
*/
|
|
21895
23589
|
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPageToken = function(value) {
|
|
21896
|
-
return jspb.Message.
|
|
23590
|
+
return jspb.Message.setField(this, 4, value);
|
|
23591
|
+
};
|
|
23592
|
+
|
|
23593
|
+
|
|
23594
|
+
/**
|
|
23595
|
+
* Clears the field making it undefined.
|
|
23596
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23597
|
+
*/
|
|
23598
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearPageToken = function() {
|
|
23599
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
23600
|
+
};
|
|
23601
|
+
|
|
23602
|
+
|
|
23603
|
+
/**
|
|
23604
|
+
* Returns whether this field is set.
|
|
23605
|
+
* @return {boolean}
|
|
23606
|
+
*/
|
|
23607
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasPageToken = function() {
|
|
23608
|
+
return jspb.Message.getField(this, 4) != null;
|
|
21897
23609
|
};
|
|
21898
23610
|
|
|
21899
23611
|
|
|
@@ -21911,7 +23623,25 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPageSize = function()
|
|
|
21911
23623
|
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21912
23624
|
*/
|
|
21913
23625
|
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPageSize = function(value) {
|
|
21914
|
-
return jspb.Message.
|
|
23626
|
+
return jspb.Message.setField(this, 5, value);
|
|
23627
|
+
};
|
|
23628
|
+
|
|
23629
|
+
|
|
23630
|
+
/**
|
|
23631
|
+
* Clears the field making it undefined.
|
|
23632
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23633
|
+
*/
|
|
23634
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearPageSize = function() {
|
|
23635
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
23636
|
+
};
|
|
23637
|
+
|
|
23638
|
+
|
|
23639
|
+
/**
|
|
23640
|
+
* Returns whether this field is set.
|
|
23641
|
+
* @return {boolean}
|
|
23642
|
+
*/
|
|
23643
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasPageSize = function() {
|
|
23644
|
+
return jspb.Message.getField(this, 5) != null;
|
|
21915
23645
|
};
|
|
21916
23646
|
|
|
21917
23647
|
|
|
@@ -21966,7 +23696,25 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPhaseFilter = function
|
|
|
21966
23696
|
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21967
23697
|
*/
|
|
21968
23698
|
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPhaseFilter = function(value) {
|
|
21969
|
-
return jspb.Message.
|
|
23699
|
+
return jspb.Message.setField(this, 7, value);
|
|
23700
|
+
};
|
|
23701
|
+
|
|
23702
|
+
|
|
23703
|
+
/**
|
|
23704
|
+
* Clears the field making it undefined.
|
|
23705
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23706
|
+
*/
|
|
23707
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearPhaseFilter = function() {
|
|
23708
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
23709
|
+
};
|
|
23710
|
+
|
|
23711
|
+
|
|
23712
|
+
/**
|
|
23713
|
+
* Returns whether this field is set.
|
|
23714
|
+
* @return {boolean}
|
|
23715
|
+
*/
|
|
23716
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasPhaseFilter = function() {
|
|
23717
|
+
return jspb.Message.getField(this, 7) != null;
|
|
21970
23718
|
};
|
|
21971
23719
|
|
|
21972
23720
|
|
|
@@ -21984,7 +23732,25 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getSearchQuery = function
|
|
|
21984
23732
|
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21985
23733
|
*/
|
|
21986
23734
|
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setSearchQuery = function(value) {
|
|
21987
|
-
return jspb.Message.
|
|
23735
|
+
return jspb.Message.setField(this, 8, value);
|
|
23736
|
+
};
|
|
23737
|
+
|
|
23738
|
+
|
|
23739
|
+
/**
|
|
23740
|
+
* Clears the field making it undefined.
|
|
23741
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23742
|
+
*/
|
|
23743
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearSearchQuery = function() {
|
|
23744
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
23745
|
+
};
|
|
23746
|
+
|
|
23747
|
+
|
|
23748
|
+
/**
|
|
23749
|
+
* Returns whether this field is set.
|
|
23750
|
+
* @return {boolean}
|
|
23751
|
+
*/
|
|
23752
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasSearchQuery = function() {
|
|
23753
|
+
return jspb.Message.getField(this, 8) != null;
|
|
21988
23754
|
};
|
|
21989
23755
|
|
|
21990
23756
|
|
|
@@ -22076,7 +23842,134 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getSourceUrlFilter = func
|
|
|
22076
23842
|
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
22077
23843
|
*/
|
|
22078
23844
|
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setSourceUrlFilter = function(value) {
|
|
22079
|
-
return jspb.Message.
|
|
23845
|
+
return jspb.Message.setField(this, 11, value);
|
|
23846
|
+
};
|
|
23847
|
+
|
|
23848
|
+
|
|
23849
|
+
/**
|
|
23850
|
+
* Clears the field making it undefined.
|
|
23851
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23852
|
+
*/
|
|
23853
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearSourceUrlFilter = function() {
|
|
23854
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
23855
|
+
};
|
|
23856
|
+
|
|
23857
|
+
|
|
23858
|
+
/**
|
|
23859
|
+
* Returns whether this field is set.
|
|
23860
|
+
* @return {boolean}
|
|
23861
|
+
*/
|
|
23862
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasSourceUrlFilter = function() {
|
|
23863
|
+
return jspb.Message.getField(this, 11) != null;
|
|
23864
|
+
};
|
|
23865
|
+
|
|
23866
|
+
|
|
23867
|
+
/**
|
|
23868
|
+
* optional string orderby = 12;
|
|
23869
|
+
* @return {string}
|
|
23870
|
+
*/
|
|
23871
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getOrderby = function() {
|
|
23872
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
23873
|
+
};
|
|
23874
|
+
|
|
23875
|
+
|
|
23876
|
+
/**
|
|
23877
|
+
* @param {string} value
|
|
23878
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23879
|
+
*/
|
|
23880
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setOrderby = function(value) {
|
|
23881
|
+
return jspb.Message.setField(this, 12, value);
|
|
23882
|
+
};
|
|
23883
|
+
|
|
23884
|
+
|
|
23885
|
+
/**
|
|
23886
|
+
* Clears the field making it undefined.
|
|
23887
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23888
|
+
*/
|
|
23889
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearOrderby = function() {
|
|
23890
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
23891
|
+
};
|
|
23892
|
+
|
|
23893
|
+
|
|
23894
|
+
/**
|
|
23895
|
+
* Returns whether this field is set.
|
|
23896
|
+
* @return {boolean}
|
|
23897
|
+
*/
|
|
23898
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasOrderby = function() {
|
|
23899
|
+
return jspb.Message.getField(this, 12) != null;
|
|
23900
|
+
};
|
|
23901
|
+
|
|
23902
|
+
|
|
23903
|
+
/**
|
|
23904
|
+
* optional SortingMode sorting_mode = 13;
|
|
23905
|
+
* @return {!proto.ondewo.nlu.SortingMode}
|
|
23906
|
+
*/
|
|
23907
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getSortingMode = function() {
|
|
23908
|
+
return /** @type {!proto.ondewo.nlu.SortingMode} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
|
|
23909
|
+
};
|
|
23910
|
+
|
|
23911
|
+
|
|
23912
|
+
/**
|
|
23913
|
+
* @param {!proto.ondewo.nlu.SortingMode} value
|
|
23914
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23915
|
+
*/
|
|
23916
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setSortingMode = function(value) {
|
|
23917
|
+
return jspb.Message.setField(this, 13, value);
|
|
23918
|
+
};
|
|
23919
|
+
|
|
23920
|
+
|
|
23921
|
+
/**
|
|
23922
|
+
* Clears the field making it undefined.
|
|
23923
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23924
|
+
*/
|
|
23925
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearSortingMode = function() {
|
|
23926
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
23927
|
+
};
|
|
23928
|
+
|
|
23929
|
+
|
|
23930
|
+
/**
|
|
23931
|
+
* Returns whether this field is set.
|
|
23932
|
+
* @return {boolean}
|
|
23933
|
+
*/
|
|
23934
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasSortingMode = function() {
|
|
23935
|
+
return jspb.Message.getField(this, 13) != null;
|
|
23936
|
+
};
|
|
23937
|
+
|
|
23938
|
+
|
|
23939
|
+
/**
|
|
23940
|
+
* optional google.protobuf.FieldMask field_mask = 14;
|
|
23941
|
+
* @return {?proto.google.protobuf.FieldMask}
|
|
23942
|
+
*/
|
|
23943
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getFieldMask = function() {
|
|
23944
|
+
return /** @type{?proto.google.protobuf.FieldMask} */ (
|
|
23945
|
+
jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 14));
|
|
23946
|
+
};
|
|
23947
|
+
|
|
23948
|
+
|
|
23949
|
+
/**
|
|
23950
|
+
* @param {?proto.google.protobuf.FieldMask|undefined} value
|
|
23951
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23952
|
+
*/
|
|
23953
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setFieldMask = function(value) {
|
|
23954
|
+
return jspb.Message.setWrapperField(this, 14, value);
|
|
23955
|
+
};
|
|
23956
|
+
|
|
23957
|
+
|
|
23958
|
+
/**
|
|
23959
|
+
* Clears the message field making it undefined.
|
|
23960
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
23961
|
+
*/
|
|
23962
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearFieldMask = function() {
|
|
23963
|
+
return this.setFieldMask(undefined);
|
|
23964
|
+
};
|
|
23965
|
+
|
|
23966
|
+
|
|
23967
|
+
/**
|
|
23968
|
+
* Returns whether this field is set.
|
|
23969
|
+
* @return {boolean}
|
|
23970
|
+
*/
|
|
23971
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasFieldMask = function() {
|
|
23972
|
+
return jspb.Message.getField(this, 14) != null;
|
|
22080
23973
|
};
|
|
22081
23974
|
|
|
22082
23975
|
|
|
@@ -22124,7 +24017,8 @@ crawlerName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
|
22124
24017
|
status: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
22125
24018
|
entriesList: jspb.Message.toObjectList(msg.getEntriesList(),
|
|
22126
24019
|
ondewo_nlu_common_pb.LogEntry.toObject, includeInstance),
|
|
22127
|
-
nextPageToken: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
24020
|
+
nextPageToken: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
24021
|
+
totalLogEntries: jspb.Message.getFieldWithDefault(msg, 6, 0)
|
|
22128
24022
|
};
|
|
22129
24023
|
|
|
22130
24024
|
if (includeInstance) {
|
|
@@ -22182,6 +24076,10 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.deserializeBinaryFromReader = func
|
|
|
22182
24076
|
var value = /** @type {string} */ (reader.readString());
|
|
22183
24077
|
msg.setNextPageToken(value);
|
|
22184
24078
|
break;
|
|
24079
|
+
case 6:
|
|
24080
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
24081
|
+
msg.setTotalLogEntries(value);
|
|
24082
|
+
break;
|
|
22185
24083
|
default:
|
|
22186
24084
|
reader.skipField();
|
|
22187
24085
|
break;
|
|
@@ -22247,6 +24145,13 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.serializeBinaryToWriter = function
|
|
|
22247
24145
|
f
|
|
22248
24146
|
);
|
|
22249
24147
|
}
|
|
24148
|
+
f = message.getTotalLogEntries();
|
|
24149
|
+
if (f !== 0) {
|
|
24150
|
+
writer.writeInt32(
|
|
24151
|
+
6,
|
|
24152
|
+
f
|
|
24153
|
+
);
|
|
24154
|
+
}
|
|
22250
24155
|
};
|
|
22251
24156
|
|
|
22252
24157
|
|
|
@@ -22360,6 +24265,24 @@ proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setNextPageToken = funct
|
|
|
22360
24265
|
};
|
|
22361
24266
|
|
|
22362
24267
|
|
|
24268
|
+
/**
|
|
24269
|
+
* optional int32 total_log_entries = 6;
|
|
24270
|
+
* @return {number}
|
|
24271
|
+
*/
|
|
24272
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getTotalLogEntries = function() {
|
|
24273
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
24274
|
+
};
|
|
24275
|
+
|
|
24276
|
+
|
|
24277
|
+
/**
|
|
24278
|
+
* @param {number} value
|
|
24279
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
24280
|
+
*/
|
|
24281
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setTotalLogEntries = function(value) {
|
|
24282
|
+
return jspb.Message.setProto3IntField(this, 6, value);
|
|
24283
|
+
};
|
|
24284
|
+
|
|
24285
|
+
|
|
22363
24286
|
/**
|
|
22364
24287
|
* @enum {number}
|
|
22365
24288
|
*/
|