@ondewo/nlu-client-typescript 6.6.0 → 6.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/ondewo/nlu/common_pb.d.ts +73 -0
- package/api/ondewo/nlu/common_pb.js +523 -0
- package/api/ondewo/nlu/rag_grpc_web_pb.d.ts +12 -0
- package/api/ondewo/nlu/rag_grpc_web_pb.js +63 -2
- package/api/ondewo/nlu/rag_pb.d.ts +132 -8
- package/api/ondewo/nlu/rag_pb.js +1062 -42
- package/package.json +1 -1
package/api/ondewo/nlu/rag_pb.js
CHANGED
|
@@ -27,14 +27,14 @@ var google_protobuf_field_mask_pb = require('google-protobuf/google/protobuf/fie
|
|
|
27
27
|
goog.object.extend(proto, google_protobuf_field_mask_pb);
|
|
28
28
|
var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js');
|
|
29
29
|
goog.object.extend(proto, google_protobuf_timestamp_pb);
|
|
30
|
+
var ondewo_nlu_common_pb = require('../../ondewo/nlu/common_pb.js');
|
|
31
|
+
goog.object.extend(proto, ondewo_nlu_common_pb);
|
|
30
32
|
var ondewo_nlu_operation_metadata_pb = require('../../ondewo/nlu/operation_metadata_pb.js');
|
|
31
33
|
goog.object.extend(proto, ondewo_nlu_operation_metadata_pb);
|
|
32
34
|
var ondewo_nlu_operations_pb = require('../../ondewo/nlu/operations_pb.js');
|
|
33
35
|
goog.object.extend(proto, ondewo_nlu_operations_pb);
|
|
34
36
|
var ondewo_nlu_session_pb = require('../../ondewo/nlu/session_pb.js');
|
|
35
37
|
goog.object.extend(proto, ondewo_nlu_session_pb);
|
|
36
|
-
var ondewo_nlu_common_pb = require('../../ondewo/nlu/common_pb.js');
|
|
37
|
-
goog.object.extend(proto, ondewo_nlu_common_pb);
|
|
38
38
|
goog.exportSymbol('proto.ondewo.nlu.RagAddCrawlerResultsToDatasetsRequest', null, global);
|
|
39
39
|
goog.exportSymbol('proto.ondewo.nlu.RagChunk', null, global);
|
|
40
40
|
goog.exportSymbol('proto.ondewo.nlu.RagChunkMethod', null, global);
|
|
@@ -89,6 +89,8 @@ goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerRequest', null, global);
|
|
|
89
89
|
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerResultRequest', null, global);
|
|
90
90
|
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerResultsRequest', null, global);
|
|
91
91
|
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerResultsResponse', null, global);
|
|
92
|
+
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerRunLogsRequest', null, global);
|
|
93
|
+
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerRunLogsResponse', null, global);
|
|
92
94
|
goog.exportSymbol('proto.ondewo.nlu.RagGetCrawlerRunRequest', null, global);
|
|
93
95
|
goog.exportSymbol('proto.ondewo.nlu.RagGraphRagConfig', null, global);
|
|
94
96
|
goog.exportSymbol('proto.ondewo.nlu.RagGraphRagMethod', null, global);
|
|
@@ -1563,6 +1565,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
1563
1565
|
*/
|
|
1564
1566
|
proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse.displayName = 'proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse';
|
|
1565
1567
|
}
|
|
1568
|
+
/**
|
|
1569
|
+
* Generated by JsPbCodeGenerator.
|
|
1570
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
1571
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
1572
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
1573
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
1574
|
+
* valid.
|
|
1575
|
+
* @extends {jspb.Message}
|
|
1576
|
+
* @constructor
|
|
1577
|
+
*/
|
|
1578
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest = function(opt_data) {
|
|
1579
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.repeatedFields_, null);
|
|
1580
|
+
};
|
|
1581
|
+
goog.inherits(proto.ondewo.nlu.RagGetCrawlerRunLogsRequest, jspb.Message);
|
|
1582
|
+
if (goog.DEBUG && !COMPILED) {
|
|
1583
|
+
/**
|
|
1584
|
+
* @public
|
|
1585
|
+
* @override
|
|
1586
|
+
*/
|
|
1587
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.displayName = 'proto.ondewo.nlu.RagGetCrawlerRunLogsRequest';
|
|
1588
|
+
}
|
|
1589
|
+
/**
|
|
1590
|
+
* Generated by JsPbCodeGenerator.
|
|
1591
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
1592
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
1593
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
1594
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
1595
|
+
* valid.
|
|
1596
|
+
* @extends {jspb.Message}
|
|
1597
|
+
* @constructor
|
|
1598
|
+
*/
|
|
1599
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse = function(opt_data) {
|
|
1600
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.repeatedFields_, null);
|
|
1601
|
+
};
|
|
1602
|
+
goog.inherits(proto.ondewo.nlu.RagGetCrawlerRunLogsResponse, jspb.Message);
|
|
1603
|
+
if (goog.DEBUG && !COMPILED) {
|
|
1604
|
+
/**
|
|
1605
|
+
* @public
|
|
1606
|
+
* @override
|
|
1607
|
+
*/
|
|
1608
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.displayName = 'proto.ondewo.nlu.RagGetCrawlerRunLogsResponse';
|
|
1609
|
+
}
|
|
1566
1610
|
|
|
1567
1611
|
|
|
1568
1612
|
|
|
@@ -14096,7 +14140,7 @@ proto.ondewo.nlu.RagCrawlerSources.prototype.clearSitemapsList = function() {
|
|
|
14096
14140
|
* @private {!Array<number>}
|
|
14097
14141
|
* @const
|
|
14098
14142
|
*/
|
|
14099
|
-
proto.ondewo.nlu.RagCrawlerFilters.repeatedFields_ = [1,2];
|
|
14143
|
+
proto.ondewo.nlu.RagCrawlerFilters.repeatedFields_ = [1,2,6,7,8,9];
|
|
14100
14144
|
|
|
14101
14145
|
|
|
14102
14146
|
|
|
@@ -14133,7 +14177,11 @@ allowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefi
|
|
|
14133
14177
|
disallowedDomainsList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
14134
14178
|
allowInternalLinks: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
14135
14179
|
allowExternalLinks: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
14136
|
-
allowSocialMediaLinks: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
14180
|
+
allowSocialMediaLinks: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
14181
|
+
allowedRegexList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
14182
|
+
disallowedRegexList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
|
|
14183
|
+
allowedPathsList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
|
|
14184
|
+
disallowedPathsList: (f = jspb.Message.getRepeatedField(msg, 9)) == null ? undefined : f
|
|
14137
14185
|
};
|
|
14138
14186
|
|
|
14139
14187
|
if (includeInstance) {
|
|
@@ -14190,6 +14238,22 @@ proto.ondewo.nlu.RagCrawlerFilters.deserializeBinaryFromReader = function(msg, r
|
|
|
14190
14238
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
14191
14239
|
msg.setAllowSocialMediaLinks(value);
|
|
14192
14240
|
break;
|
|
14241
|
+
case 6:
|
|
14242
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14243
|
+
msg.addAllowedRegex(value);
|
|
14244
|
+
break;
|
|
14245
|
+
case 7:
|
|
14246
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14247
|
+
msg.addDisallowedRegex(value);
|
|
14248
|
+
break;
|
|
14249
|
+
case 8:
|
|
14250
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14251
|
+
msg.addAllowedPaths(value);
|
|
14252
|
+
break;
|
|
14253
|
+
case 9:
|
|
14254
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14255
|
+
msg.addDisallowedPaths(value);
|
|
14256
|
+
break;
|
|
14193
14257
|
default:
|
|
14194
14258
|
reader.skipField();
|
|
14195
14259
|
break;
|
|
@@ -14254,6 +14318,34 @@ proto.ondewo.nlu.RagCrawlerFilters.serializeBinaryToWriter = function(message, w
|
|
|
14254
14318
|
f
|
|
14255
14319
|
);
|
|
14256
14320
|
}
|
|
14321
|
+
f = message.getAllowedRegexList();
|
|
14322
|
+
if (f.length > 0) {
|
|
14323
|
+
writer.writeRepeatedString(
|
|
14324
|
+
6,
|
|
14325
|
+
f
|
|
14326
|
+
);
|
|
14327
|
+
}
|
|
14328
|
+
f = message.getDisallowedRegexList();
|
|
14329
|
+
if (f.length > 0) {
|
|
14330
|
+
writer.writeRepeatedString(
|
|
14331
|
+
7,
|
|
14332
|
+
f
|
|
14333
|
+
);
|
|
14334
|
+
}
|
|
14335
|
+
f = message.getAllowedPathsList();
|
|
14336
|
+
if (f.length > 0) {
|
|
14337
|
+
writer.writeRepeatedString(
|
|
14338
|
+
8,
|
|
14339
|
+
f
|
|
14340
|
+
);
|
|
14341
|
+
}
|
|
14342
|
+
f = message.getDisallowedPathsList();
|
|
14343
|
+
if (f.length > 0) {
|
|
14344
|
+
writer.writeRepeatedString(
|
|
14345
|
+
9,
|
|
14346
|
+
f
|
|
14347
|
+
);
|
|
14348
|
+
}
|
|
14257
14349
|
};
|
|
14258
14350
|
|
|
14259
14351
|
|
|
@@ -14385,6 +14477,154 @@ proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowSocialMediaLinks = function
|
|
|
14385
14477
|
};
|
|
14386
14478
|
|
|
14387
14479
|
|
|
14480
|
+
/**
|
|
14481
|
+
* repeated string allowed_regex = 6;
|
|
14482
|
+
* @return {!Array<string>}
|
|
14483
|
+
*/
|
|
14484
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowedRegexList = function() {
|
|
14485
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
|
|
14486
|
+
};
|
|
14487
|
+
|
|
14488
|
+
|
|
14489
|
+
/**
|
|
14490
|
+
* @param {!Array<string>} value
|
|
14491
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14492
|
+
*/
|
|
14493
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowedRegexList = function(value) {
|
|
14494
|
+
return jspb.Message.setField(this, 6, value || []);
|
|
14495
|
+
};
|
|
14496
|
+
|
|
14497
|
+
|
|
14498
|
+
/**
|
|
14499
|
+
* @param {string} value
|
|
14500
|
+
* @param {number=} opt_index
|
|
14501
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14502
|
+
*/
|
|
14503
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.addAllowedRegex = function(value, opt_index) {
|
|
14504
|
+
return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
|
|
14505
|
+
};
|
|
14506
|
+
|
|
14507
|
+
|
|
14508
|
+
/**
|
|
14509
|
+
* Clears the list making it empty but non-null.
|
|
14510
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14511
|
+
*/
|
|
14512
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowedRegexList = function() {
|
|
14513
|
+
return this.setAllowedRegexList([]);
|
|
14514
|
+
};
|
|
14515
|
+
|
|
14516
|
+
|
|
14517
|
+
/**
|
|
14518
|
+
* repeated string disallowed_regex = 7;
|
|
14519
|
+
* @return {!Array<string>}
|
|
14520
|
+
*/
|
|
14521
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.getDisallowedRegexList = function() {
|
|
14522
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 7));
|
|
14523
|
+
};
|
|
14524
|
+
|
|
14525
|
+
|
|
14526
|
+
/**
|
|
14527
|
+
* @param {!Array<string>} value
|
|
14528
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14529
|
+
*/
|
|
14530
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.setDisallowedRegexList = function(value) {
|
|
14531
|
+
return jspb.Message.setField(this, 7, value || []);
|
|
14532
|
+
};
|
|
14533
|
+
|
|
14534
|
+
|
|
14535
|
+
/**
|
|
14536
|
+
* @param {string} value
|
|
14537
|
+
* @param {number=} opt_index
|
|
14538
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14539
|
+
*/
|
|
14540
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.addDisallowedRegex = function(value, opt_index) {
|
|
14541
|
+
return jspb.Message.addToRepeatedField(this, 7, value, opt_index);
|
|
14542
|
+
};
|
|
14543
|
+
|
|
14544
|
+
|
|
14545
|
+
/**
|
|
14546
|
+
* Clears the list making it empty but non-null.
|
|
14547
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14548
|
+
*/
|
|
14549
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearDisallowedRegexList = function() {
|
|
14550
|
+
return this.setDisallowedRegexList([]);
|
|
14551
|
+
};
|
|
14552
|
+
|
|
14553
|
+
|
|
14554
|
+
/**
|
|
14555
|
+
* repeated string allowed_paths = 8;
|
|
14556
|
+
* @return {!Array<string>}
|
|
14557
|
+
*/
|
|
14558
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.getAllowedPathsList = function() {
|
|
14559
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 8));
|
|
14560
|
+
};
|
|
14561
|
+
|
|
14562
|
+
|
|
14563
|
+
/**
|
|
14564
|
+
* @param {!Array<string>} value
|
|
14565
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14566
|
+
*/
|
|
14567
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.setAllowedPathsList = function(value) {
|
|
14568
|
+
return jspb.Message.setField(this, 8, value || []);
|
|
14569
|
+
};
|
|
14570
|
+
|
|
14571
|
+
|
|
14572
|
+
/**
|
|
14573
|
+
* @param {string} value
|
|
14574
|
+
* @param {number=} opt_index
|
|
14575
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14576
|
+
*/
|
|
14577
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.addAllowedPaths = function(value, opt_index) {
|
|
14578
|
+
return jspb.Message.addToRepeatedField(this, 8, value, opt_index);
|
|
14579
|
+
};
|
|
14580
|
+
|
|
14581
|
+
|
|
14582
|
+
/**
|
|
14583
|
+
* Clears the list making it empty but non-null.
|
|
14584
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14585
|
+
*/
|
|
14586
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearAllowedPathsList = function() {
|
|
14587
|
+
return this.setAllowedPathsList([]);
|
|
14588
|
+
};
|
|
14589
|
+
|
|
14590
|
+
|
|
14591
|
+
/**
|
|
14592
|
+
* repeated string disallowed_paths = 9;
|
|
14593
|
+
* @return {!Array<string>}
|
|
14594
|
+
*/
|
|
14595
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.getDisallowedPathsList = function() {
|
|
14596
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 9));
|
|
14597
|
+
};
|
|
14598
|
+
|
|
14599
|
+
|
|
14600
|
+
/**
|
|
14601
|
+
* @param {!Array<string>} value
|
|
14602
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14603
|
+
*/
|
|
14604
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.setDisallowedPathsList = function(value) {
|
|
14605
|
+
return jspb.Message.setField(this, 9, value || []);
|
|
14606
|
+
};
|
|
14607
|
+
|
|
14608
|
+
|
|
14609
|
+
/**
|
|
14610
|
+
* @param {string} value
|
|
14611
|
+
* @param {number=} opt_index
|
|
14612
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14613
|
+
*/
|
|
14614
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.addDisallowedPaths = function(value, opt_index) {
|
|
14615
|
+
return jspb.Message.addToRepeatedField(this, 9, value, opt_index);
|
|
14616
|
+
};
|
|
14617
|
+
|
|
14618
|
+
|
|
14619
|
+
/**
|
|
14620
|
+
* Clears the list making it empty but non-null.
|
|
14621
|
+
* @return {!proto.ondewo.nlu.RagCrawlerFilters} returns this
|
|
14622
|
+
*/
|
|
14623
|
+
proto.ondewo.nlu.RagCrawlerFilters.prototype.clearDisallowedPathsList = function() {
|
|
14624
|
+
return this.setDisallowedPathsList([]);
|
|
14625
|
+
};
|
|
14626
|
+
|
|
14627
|
+
|
|
14388
14628
|
|
|
14389
14629
|
/**
|
|
14390
14630
|
* List of repeated fields within this message type.
|
|
@@ -15263,8 +15503,7 @@ proto.ondewo.nlu.RagCrawlerHttpAuth.prototype.toObject = function(opt_includeIns
|
|
|
15263
15503
|
proto.ondewo.nlu.RagCrawlerHttpAuth.toObject = function(includeInstance, msg) {
|
|
15264
15504
|
var f, obj = {
|
|
15265
15505
|
httpAuthUsername: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
15266
|
-
httpAuthPassword: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
15267
|
-
httpAuthUserAgent: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
15506
|
+
httpAuthPassword: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
15268
15507
|
};
|
|
15269
15508
|
|
|
15270
15509
|
if (includeInstance) {
|
|
@@ -15309,10 +15548,6 @@ proto.ondewo.nlu.RagCrawlerHttpAuth.deserializeBinaryFromReader = function(msg,
|
|
|
15309
15548
|
var value = /** @type {string} */ (reader.readString());
|
|
15310
15549
|
msg.setHttpAuthPassword(value);
|
|
15311
15550
|
break;
|
|
15312
|
-
case 3:
|
|
15313
|
-
var value = /** @type {string} */ (reader.readString());
|
|
15314
|
-
msg.setHttpAuthUserAgent(value);
|
|
15315
|
-
break;
|
|
15316
15551
|
default:
|
|
15317
15552
|
reader.skipField();
|
|
15318
15553
|
break;
|
|
@@ -15356,13 +15591,6 @@ proto.ondewo.nlu.RagCrawlerHttpAuth.serializeBinaryToWriter = function(message,
|
|
|
15356
15591
|
f
|
|
15357
15592
|
);
|
|
15358
15593
|
}
|
|
15359
|
-
f = message.getHttpAuthUserAgent();
|
|
15360
|
-
if (f.length > 0) {
|
|
15361
|
-
writer.writeString(
|
|
15362
|
-
3,
|
|
15363
|
-
f
|
|
15364
|
-
);
|
|
15365
|
-
}
|
|
15366
15594
|
};
|
|
15367
15595
|
|
|
15368
15596
|
|
|
@@ -15402,24 +15630,6 @@ proto.ondewo.nlu.RagCrawlerHttpAuth.prototype.setHttpAuthPassword = function(val
|
|
|
15402
15630
|
};
|
|
15403
15631
|
|
|
15404
15632
|
|
|
15405
|
-
/**
|
|
15406
|
-
* optional string http_auth_user_agent = 3;
|
|
15407
|
-
* @return {string}
|
|
15408
|
-
*/
|
|
15409
|
-
proto.ondewo.nlu.RagCrawlerHttpAuth.prototype.getHttpAuthUserAgent = function() {
|
|
15410
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
15411
|
-
};
|
|
15412
|
-
|
|
15413
|
-
|
|
15414
|
-
/**
|
|
15415
|
-
* @param {string} value
|
|
15416
|
-
* @return {!proto.ondewo.nlu.RagCrawlerHttpAuth} returns this
|
|
15417
|
-
*/
|
|
15418
|
-
proto.ondewo.nlu.RagCrawlerHttpAuth.prototype.setHttpAuthUserAgent = function(value) {
|
|
15419
|
-
return jspb.Message.setProto3StringField(this, 3, value);
|
|
15420
|
-
};
|
|
15421
|
-
|
|
15422
|
-
|
|
15423
15633
|
|
|
15424
15634
|
/**
|
|
15425
15635
|
* List of repeated fields within this message type.
|
|
@@ -15462,7 +15672,8 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.toObject = function(includeInstance, ms
|
|
|
15462
15672
|
crawlerHeadersList: jspb.Message.toObjectList(msg.getCrawlerHeadersList(),
|
|
15463
15673
|
google_protobuf_struct_pb.Struct.toObject, includeInstance),
|
|
15464
15674
|
crawlerCookiesList: jspb.Message.toObjectList(msg.getCrawlerCookiesList(),
|
|
15465
|
-
proto.ondewo.nlu.RagCrawlerCookie.toObject, includeInstance)
|
|
15675
|
+
proto.ondewo.nlu.RagCrawlerCookie.toObject, includeInstance),
|
|
15676
|
+
crawlerUserAgent: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
15466
15677
|
};
|
|
15467
15678
|
|
|
15468
15679
|
if (includeInstance) {
|
|
@@ -15509,6 +15720,10 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.deserializeBinaryFromReader = function(
|
|
|
15509
15720
|
reader.readMessage(value,proto.ondewo.nlu.RagCrawlerCookie.deserializeBinaryFromReader);
|
|
15510
15721
|
msg.addCrawlerCookies(value);
|
|
15511
15722
|
break;
|
|
15723
|
+
case 3:
|
|
15724
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15725
|
+
msg.setCrawlerUserAgent(value);
|
|
15726
|
+
break;
|
|
15512
15727
|
default:
|
|
15513
15728
|
reader.skipField();
|
|
15514
15729
|
break;
|
|
@@ -15554,6 +15769,13 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.serializeBinaryToWriter = function(mess
|
|
|
15554
15769
|
proto.ondewo.nlu.RagCrawlerCookie.serializeBinaryToWriter
|
|
15555
15770
|
);
|
|
15556
15771
|
}
|
|
15772
|
+
f = message.getCrawlerUserAgent();
|
|
15773
|
+
if (f.length > 0) {
|
|
15774
|
+
writer.writeString(
|
|
15775
|
+
3,
|
|
15776
|
+
f
|
|
15777
|
+
);
|
|
15778
|
+
}
|
|
15557
15779
|
};
|
|
15558
15780
|
|
|
15559
15781
|
|
|
@@ -15633,6 +15855,24 @@ proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.clearCrawlerCookiesList = fun
|
|
|
15633
15855
|
};
|
|
15634
15856
|
|
|
15635
15857
|
|
|
15858
|
+
/**
|
|
15859
|
+
* optional string crawler_user_agent = 3;
|
|
15860
|
+
* @return {string}
|
|
15861
|
+
*/
|
|
15862
|
+
proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.getCrawlerUserAgent = function() {
|
|
15863
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
15864
|
+
};
|
|
15865
|
+
|
|
15866
|
+
|
|
15867
|
+
/**
|
|
15868
|
+
* @param {string} value
|
|
15869
|
+
* @return {!proto.ondewo.nlu.RagCrawlerBrowserConfig} returns this
|
|
15870
|
+
*/
|
|
15871
|
+
proto.ondewo.nlu.RagCrawlerBrowserConfig.prototype.setCrawlerUserAgent = function(value) {
|
|
15872
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
15873
|
+
};
|
|
15874
|
+
|
|
15875
|
+
|
|
15636
15876
|
|
|
15637
15877
|
|
|
15638
15878
|
|
|
@@ -18267,7 +18507,7 @@ parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
|
18267
18507
|
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
18268
18508
|
crawlerName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
18269
18509
|
pageToken: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
18270
|
-
|
|
18510
|
+
status: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
18271
18511
|
orderby: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
18272
18512
|
sortingMode: (f = jspb.Message.getField(msg, 7)) == null ? undefined : f
|
|
18273
18513
|
};
|
|
@@ -18324,7 +18564,7 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.deserializeBinaryFromReader = functio
|
|
|
18324
18564
|
break;
|
|
18325
18565
|
case 5:
|
|
18326
18566
|
var value = /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (reader.readEnum());
|
|
18327
|
-
msg.
|
|
18567
|
+
msg.setStatus(value);
|
|
18328
18568
|
break;
|
|
18329
18569
|
case 6:
|
|
18330
18570
|
var value = /** @type {string} */ (reader.readString());
|
|
@@ -18391,7 +18631,7 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.serializeBinaryToWriter = function(me
|
|
|
18391
18631
|
f
|
|
18392
18632
|
);
|
|
18393
18633
|
}
|
|
18394
|
-
f = message.
|
|
18634
|
+
f = message.getStatus();
|
|
18395
18635
|
if (f !== 0.0) {
|
|
18396
18636
|
writer.writeEnum(
|
|
18397
18637
|
5,
|
|
@@ -18488,10 +18728,10 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setPageToken = function(val
|
|
|
18488
18728
|
|
|
18489
18729
|
|
|
18490
18730
|
/**
|
|
18491
|
-
* optional OperationMetadata.Status
|
|
18731
|
+
* optional OperationMetadata.Status status = 5;
|
|
18492
18732
|
* @return {!proto.ondewo.nlu.OperationMetadata.Status}
|
|
18493
18733
|
*/
|
|
18494
|
-
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.
|
|
18734
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getStatus = function() {
|
|
18495
18735
|
return /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
18496
18736
|
};
|
|
18497
18737
|
|
|
@@ -18500,7 +18740,7 @@ proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.getState = function() {
|
|
|
18500
18740
|
* @param {!proto.ondewo.nlu.OperationMetadata.Status} value
|
|
18501
18741
|
* @return {!proto.ondewo.nlu.RagListCrawlerRunsRequest} returns this
|
|
18502
18742
|
*/
|
|
18503
|
-
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.
|
|
18743
|
+
proto.ondewo.nlu.RagListCrawlerRunsRequest.prototype.setStatus = function(value) {
|
|
18504
18744
|
return jspb.Message.setProto3EnumField(this, 5, value);
|
|
18505
18745
|
};
|
|
18506
18746
|
|
|
@@ -21340,6 +21580,786 @@ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse.prototype.setNextPageToke
|
|
|
21340
21580
|
};
|
|
21341
21581
|
|
|
21342
21582
|
|
|
21583
|
+
|
|
21584
|
+
/**
|
|
21585
|
+
* List of repeated fields within this message type.
|
|
21586
|
+
* @private {!Array<number>}
|
|
21587
|
+
* @const
|
|
21588
|
+
*/
|
|
21589
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.repeatedFields_ = [6];
|
|
21590
|
+
|
|
21591
|
+
|
|
21592
|
+
|
|
21593
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
21594
|
+
/**
|
|
21595
|
+
* Creates an object representation of this proto.
|
|
21596
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
21597
|
+
* Optional fields that are not set will be set to undefined.
|
|
21598
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
21599
|
+
* For the list of reserved names please see:
|
|
21600
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
21601
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
21602
|
+
* JSPB instance for transitional soy proto support:
|
|
21603
|
+
* http://goto/soy-param-migration
|
|
21604
|
+
* @return {!Object}
|
|
21605
|
+
*/
|
|
21606
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.toObject = function(opt_includeInstance) {
|
|
21607
|
+
return proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.toObject(opt_includeInstance, this);
|
|
21608
|
+
};
|
|
21609
|
+
|
|
21610
|
+
|
|
21611
|
+
/**
|
|
21612
|
+
* Static version of the {@see toObject} method.
|
|
21613
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
21614
|
+
* the JSPB instance for transitional soy proto support:
|
|
21615
|
+
* http://goto/soy-param-migration
|
|
21616
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} msg The msg instance to transform.
|
|
21617
|
+
* @return {!Object}
|
|
21618
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
21619
|
+
*/
|
|
21620
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.toObject = function(includeInstance, msg) {
|
|
21621
|
+
var f, obj = {
|
|
21622
|
+
parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
21623
|
+
languageCode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
21624
|
+
operationName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
21625
|
+
pageToken: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
21626
|
+
pageSize: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
21627
|
+
levelFiltersList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
21628
|
+
phaseFilter: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
21629
|
+
searchQuery: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
21630
|
+
startTime: (f = msg.getStartTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
21631
|
+
endTime: (f = msg.getEndTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
21632
|
+
sourceUrlFilter: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
21633
|
+
};
|
|
21634
|
+
|
|
21635
|
+
if (includeInstance) {
|
|
21636
|
+
obj.$jspbMessageInstance = msg;
|
|
21637
|
+
}
|
|
21638
|
+
return obj;
|
|
21639
|
+
};
|
|
21640
|
+
}
|
|
21641
|
+
|
|
21642
|
+
|
|
21643
|
+
/**
|
|
21644
|
+
* Deserializes binary data (in protobuf wire format).
|
|
21645
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
21646
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest}
|
|
21647
|
+
*/
|
|
21648
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.deserializeBinary = function(bytes) {
|
|
21649
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
21650
|
+
var msg = new proto.ondewo.nlu.RagGetCrawlerRunLogsRequest;
|
|
21651
|
+
return proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.deserializeBinaryFromReader(msg, reader);
|
|
21652
|
+
};
|
|
21653
|
+
|
|
21654
|
+
|
|
21655
|
+
/**
|
|
21656
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
21657
|
+
* given reader into the given message object.
|
|
21658
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} msg The message object to deserialize into.
|
|
21659
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
21660
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest}
|
|
21661
|
+
*/
|
|
21662
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
21663
|
+
while (reader.nextField()) {
|
|
21664
|
+
if (reader.isEndGroup()) {
|
|
21665
|
+
break;
|
|
21666
|
+
}
|
|
21667
|
+
var field = reader.getFieldNumber();
|
|
21668
|
+
switch (field) {
|
|
21669
|
+
case 1:
|
|
21670
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21671
|
+
msg.setParent(value);
|
|
21672
|
+
break;
|
|
21673
|
+
case 2:
|
|
21674
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21675
|
+
msg.setLanguageCode(value);
|
|
21676
|
+
break;
|
|
21677
|
+
case 3:
|
|
21678
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21679
|
+
msg.setOperationName(value);
|
|
21680
|
+
break;
|
|
21681
|
+
case 4:
|
|
21682
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21683
|
+
msg.setPageToken(value);
|
|
21684
|
+
break;
|
|
21685
|
+
case 5:
|
|
21686
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
21687
|
+
msg.setPageSize(value);
|
|
21688
|
+
break;
|
|
21689
|
+
case 6:
|
|
21690
|
+
var values = /** @type {!Array<!proto.ondewo.nlu.LogSeverity>} */ (reader.isDelimited() ? reader.readPackedEnum() : [reader.readEnum()]);
|
|
21691
|
+
for (var i = 0; i < values.length; i++) {
|
|
21692
|
+
msg.addLevelFilters(values[i]);
|
|
21693
|
+
}
|
|
21694
|
+
break;
|
|
21695
|
+
case 7:
|
|
21696
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21697
|
+
msg.setPhaseFilter(value);
|
|
21698
|
+
break;
|
|
21699
|
+
case 8:
|
|
21700
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21701
|
+
msg.setSearchQuery(value);
|
|
21702
|
+
break;
|
|
21703
|
+
case 9:
|
|
21704
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
21705
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
21706
|
+
msg.setStartTime(value);
|
|
21707
|
+
break;
|
|
21708
|
+
case 10:
|
|
21709
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
21710
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
21711
|
+
msg.setEndTime(value);
|
|
21712
|
+
break;
|
|
21713
|
+
case 11:
|
|
21714
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21715
|
+
msg.setSourceUrlFilter(value);
|
|
21716
|
+
break;
|
|
21717
|
+
default:
|
|
21718
|
+
reader.skipField();
|
|
21719
|
+
break;
|
|
21720
|
+
}
|
|
21721
|
+
}
|
|
21722
|
+
return msg;
|
|
21723
|
+
};
|
|
21724
|
+
|
|
21725
|
+
|
|
21726
|
+
/**
|
|
21727
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
21728
|
+
* @return {!Uint8Array}
|
|
21729
|
+
*/
|
|
21730
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.serializeBinary = function() {
|
|
21731
|
+
var writer = new jspb.BinaryWriter();
|
|
21732
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.serializeBinaryToWriter(this, writer);
|
|
21733
|
+
return writer.getResultBuffer();
|
|
21734
|
+
};
|
|
21735
|
+
|
|
21736
|
+
|
|
21737
|
+
/**
|
|
21738
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
21739
|
+
* format), writing to the given BinaryWriter.
|
|
21740
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} message
|
|
21741
|
+
* @param {!jspb.BinaryWriter} writer
|
|
21742
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
21743
|
+
*/
|
|
21744
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.serializeBinaryToWriter = function(message, writer) {
|
|
21745
|
+
var f = undefined;
|
|
21746
|
+
f = message.getParent();
|
|
21747
|
+
if (f.length > 0) {
|
|
21748
|
+
writer.writeString(
|
|
21749
|
+
1,
|
|
21750
|
+
f
|
|
21751
|
+
);
|
|
21752
|
+
}
|
|
21753
|
+
f = message.getLanguageCode();
|
|
21754
|
+
if (f.length > 0) {
|
|
21755
|
+
writer.writeString(
|
|
21756
|
+
2,
|
|
21757
|
+
f
|
|
21758
|
+
);
|
|
21759
|
+
}
|
|
21760
|
+
f = message.getOperationName();
|
|
21761
|
+
if (f.length > 0) {
|
|
21762
|
+
writer.writeString(
|
|
21763
|
+
3,
|
|
21764
|
+
f
|
|
21765
|
+
);
|
|
21766
|
+
}
|
|
21767
|
+
f = message.getPageToken();
|
|
21768
|
+
if (f.length > 0) {
|
|
21769
|
+
writer.writeString(
|
|
21770
|
+
4,
|
|
21771
|
+
f
|
|
21772
|
+
);
|
|
21773
|
+
}
|
|
21774
|
+
f = message.getPageSize();
|
|
21775
|
+
if (f !== 0) {
|
|
21776
|
+
writer.writeInt32(
|
|
21777
|
+
5,
|
|
21778
|
+
f
|
|
21779
|
+
);
|
|
21780
|
+
}
|
|
21781
|
+
f = message.getLevelFiltersList();
|
|
21782
|
+
if (f.length > 0) {
|
|
21783
|
+
writer.writePackedEnum(
|
|
21784
|
+
6,
|
|
21785
|
+
f
|
|
21786
|
+
);
|
|
21787
|
+
}
|
|
21788
|
+
f = message.getPhaseFilter();
|
|
21789
|
+
if (f.length > 0) {
|
|
21790
|
+
writer.writeString(
|
|
21791
|
+
7,
|
|
21792
|
+
f
|
|
21793
|
+
);
|
|
21794
|
+
}
|
|
21795
|
+
f = message.getSearchQuery();
|
|
21796
|
+
if (f.length > 0) {
|
|
21797
|
+
writer.writeString(
|
|
21798
|
+
8,
|
|
21799
|
+
f
|
|
21800
|
+
);
|
|
21801
|
+
}
|
|
21802
|
+
f = message.getStartTime();
|
|
21803
|
+
if (f != null) {
|
|
21804
|
+
writer.writeMessage(
|
|
21805
|
+
9,
|
|
21806
|
+
f,
|
|
21807
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
21808
|
+
);
|
|
21809
|
+
}
|
|
21810
|
+
f = message.getEndTime();
|
|
21811
|
+
if (f != null) {
|
|
21812
|
+
writer.writeMessage(
|
|
21813
|
+
10,
|
|
21814
|
+
f,
|
|
21815
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
21816
|
+
);
|
|
21817
|
+
}
|
|
21818
|
+
f = message.getSourceUrlFilter();
|
|
21819
|
+
if (f.length > 0) {
|
|
21820
|
+
writer.writeString(
|
|
21821
|
+
11,
|
|
21822
|
+
f
|
|
21823
|
+
);
|
|
21824
|
+
}
|
|
21825
|
+
};
|
|
21826
|
+
|
|
21827
|
+
|
|
21828
|
+
/**
|
|
21829
|
+
* optional string parent = 1;
|
|
21830
|
+
* @return {string}
|
|
21831
|
+
*/
|
|
21832
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getParent = function() {
|
|
21833
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
21834
|
+
};
|
|
21835
|
+
|
|
21836
|
+
|
|
21837
|
+
/**
|
|
21838
|
+
* @param {string} value
|
|
21839
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21840
|
+
*/
|
|
21841
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setParent = function(value) {
|
|
21842
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
21843
|
+
};
|
|
21844
|
+
|
|
21845
|
+
|
|
21846
|
+
/**
|
|
21847
|
+
* optional string language_code = 2;
|
|
21848
|
+
* @return {string}
|
|
21849
|
+
*/
|
|
21850
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getLanguageCode = function() {
|
|
21851
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
21852
|
+
};
|
|
21853
|
+
|
|
21854
|
+
|
|
21855
|
+
/**
|
|
21856
|
+
* @param {string} value
|
|
21857
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21858
|
+
*/
|
|
21859
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setLanguageCode = function(value) {
|
|
21860
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
21861
|
+
};
|
|
21862
|
+
|
|
21863
|
+
|
|
21864
|
+
/**
|
|
21865
|
+
* optional string operation_name = 3;
|
|
21866
|
+
* @return {string}
|
|
21867
|
+
*/
|
|
21868
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getOperationName = function() {
|
|
21869
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
21870
|
+
};
|
|
21871
|
+
|
|
21872
|
+
|
|
21873
|
+
/**
|
|
21874
|
+
* @param {string} value
|
|
21875
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21876
|
+
*/
|
|
21877
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setOperationName = function(value) {
|
|
21878
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
21879
|
+
};
|
|
21880
|
+
|
|
21881
|
+
|
|
21882
|
+
/**
|
|
21883
|
+
* optional string page_token = 4;
|
|
21884
|
+
* @return {string}
|
|
21885
|
+
*/
|
|
21886
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPageToken = function() {
|
|
21887
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
21888
|
+
};
|
|
21889
|
+
|
|
21890
|
+
|
|
21891
|
+
/**
|
|
21892
|
+
* @param {string} value
|
|
21893
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21894
|
+
*/
|
|
21895
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPageToken = function(value) {
|
|
21896
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
21897
|
+
};
|
|
21898
|
+
|
|
21899
|
+
|
|
21900
|
+
/**
|
|
21901
|
+
* optional int32 page_size = 5;
|
|
21902
|
+
* @return {number}
|
|
21903
|
+
*/
|
|
21904
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPageSize = function() {
|
|
21905
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
21906
|
+
};
|
|
21907
|
+
|
|
21908
|
+
|
|
21909
|
+
/**
|
|
21910
|
+
* @param {number} value
|
|
21911
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21912
|
+
*/
|
|
21913
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPageSize = function(value) {
|
|
21914
|
+
return jspb.Message.setProto3IntField(this, 5, value);
|
|
21915
|
+
};
|
|
21916
|
+
|
|
21917
|
+
|
|
21918
|
+
/**
|
|
21919
|
+
* repeated LogSeverity level_filters = 6;
|
|
21920
|
+
* @return {!Array<!proto.ondewo.nlu.LogSeverity>}
|
|
21921
|
+
*/
|
|
21922
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getLevelFiltersList = function() {
|
|
21923
|
+
return /** @type {!Array<!proto.ondewo.nlu.LogSeverity>} */ (jspb.Message.getRepeatedField(this, 6));
|
|
21924
|
+
};
|
|
21925
|
+
|
|
21926
|
+
|
|
21927
|
+
/**
|
|
21928
|
+
* @param {!Array<!proto.ondewo.nlu.LogSeverity>} value
|
|
21929
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21930
|
+
*/
|
|
21931
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setLevelFiltersList = function(value) {
|
|
21932
|
+
return jspb.Message.setField(this, 6, value || []);
|
|
21933
|
+
};
|
|
21934
|
+
|
|
21935
|
+
|
|
21936
|
+
/**
|
|
21937
|
+
* @param {!proto.ondewo.nlu.LogSeverity} value
|
|
21938
|
+
* @param {number=} opt_index
|
|
21939
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21940
|
+
*/
|
|
21941
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.addLevelFilters = function(value, opt_index) {
|
|
21942
|
+
return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
|
|
21943
|
+
};
|
|
21944
|
+
|
|
21945
|
+
|
|
21946
|
+
/**
|
|
21947
|
+
* Clears the list making it empty but non-null.
|
|
21948
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21949
|
+
*/
|
|
21950
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearLevelFiltersList = function() {
|
|
21951
|
+
return this.setLevelFiltersList([]);
|
|
21952
|
+
};
|
|
21953
|
+
|
|
21954
|
+
|
|
21955
|
+
/**
|
|
21956
|
+
* optional string phase_filter = 7;
|
|
21957
|
+
* @return {string}
|
|
21958
|
+
*/
|
|
21959
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getPhaseFilter = function() {
|
|
21960
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
21961
|
+
};
|
|
21962
|
+
|
|
21963
|
+
|
|
21964
|
+
/**
|
|
21965
|
+
* @param {string} value
|
|
21966
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21967
|
+
*/
|
|
21968
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setPhaseFilter = function(value) {
|
|
21969
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
21970
|
+
};
|
|
21971
|
+
|
|
21972
|
+
|
|
21973
|
+
/**
|
|
21974
|
+
* optional string search_query = 8;
|
|
21975
|
+
* @return {string}
|
|
21976
|
+
*/
|
|
21977
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getSearchQuery = function() {
|
|
21978
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
21979
|
+
};
|
|
21980
|
+
|
|
21981
|
+
|
|
21982
|
+
/**
|
|
21983
|
+
* @param {string} value
|
|
21984
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
21985
|
+
*/
|
|
21986
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setSearchQuery = function(value) {
|
|
21987
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
21988
|
+
};
|
|
21989
|
+
|
|
21990
|
+
|
|
21991
|
+
/**
|
|
21992
|
+
* optional google.protobuf.Timestamp start_time = 9;
|
|
21993
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
21994
|
+
*/
|
|
21995
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getStartTime = function() {
|
|
21996
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
21997
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 9));
|
|
21998
|
+
};
|
|
21999
|
+
|
|
22000
|
+
|
|
22001
|
+
/**
|
|
22002
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
22003
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
22004
|
+
*/
|
|
22005
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setStartTime = function(value) {
|
|
22006
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
22007
|
+
};
|
|
22008
|
+
|
|
22009
|
+
|
|
22010
|
+
/**
|
|
22011
|
+
* Clears the message field making it undefined.
|
|
22012
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
22013
|
+
*/
|
|
22014
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearStartTime = function() {
|
|
22015
|
+
return this.setStartTime(undefined);
|
|
22016
|
+
};
|
|
22017
|
+
|
|
22018
|
+
|
|
22019
|
+
/**
|
|
22020
|
+
* Returns whether this field is set.
|
|
22021
|
+
* @return {boolean}
|
|
22022
|
+
*/
|
|
22023
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasStartTime = function() {
|
|
22024
|
+
return jspb.Message.getField(this, 9) != null;
|
|
22025
|
+
};
|
|
22026
|
+
|
|
22027
|
+
|
|
22028
|
+
/**
|
|
22029
|
+
* optional google.protobuf.Timestamp end_time = 10;
|
|
22030
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
22031
|
+
*/
|
|
22032
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getEndTime = function() {
|
|
22033
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
22034
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 10));
|
|
22035
|
+
};
|
|
22036
|
+
|
|
22037
|
+
|
|
22038
|
+
/**
|
|
22039
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
22040
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
22041
|
+
*/
|
|
22042
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setEndTime = function(value) {
|
|
22043
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
22044
|
+
};
|
|
22045
|
+
|
|
22046
|
+
|
|
22047
|
+
/**
|
|
22048
|
+
* Clears the message field making it undefined.
|
|
22049
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
22050
|
+
*/
|
|
22051
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.clearEndTime = function() {
|
|
22052
|
+
return this.setEndTime(undefined);
|
|
22053
|
+
};
|
|
22054
|
+
|
|
22055
|
+
|
|
22056
|
+
/**
|
|
22057
|
+
* Returns whether this field is set.
|
|
22058
|
+
* @return {boolean}
|
|
22059
|
+
*/
|
|
22060
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.hasEndTime = function() {
|
|
22061
|
+
return jspb.Message.getField(this, 10) != null;
|
|
22062
|
+
};
|
|
22063
|
+
|
|
22064
|
+
|
|
22065
|
+
/**
|
|
22066
|
+
* optional string source_url_filter = 11;
|
|
22067
|
+
* @return {string}
|
|
22068
|
+
*/
|
|
22069
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.getSourceUrlFilter = function() {
|
|
22070
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
22071
|
+
};
|
|
22072
|
+
|
|
22073
|
+
|
|
22074
|
+
/**
|
|
22075
|
+
* @param {string} value
|
|
22076
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsRequest} returns this
|
|
22077
|
+
*/
|
|
22078
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsRequest.prototype.setSourceUrlFilter = function(value) {
|
|
22079
|
+
return jspb.Message.setProto3StringField(this, 11, value);
|
|
22080
|
+
};
|
|
22081
|
+
|
|
22082
|
+
|
|
22083
|
+
|
|
22084
|
+
/**
|
|
22085
|
+
* List of repeated fields within this message type.
|
|
22086
|
+
* @private {!Array<number>}
|
|
22087
|
+
* @const
|
|
22088
|
+
*/
|
|
22089
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.repeatedFields_ = [4];
|
|
22090
|
+
|
|
22091
|
+
|
|
22092
|
+
|
|
22093
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
22094
|
+
/**
|
|
22095
|
+
* Creates an object representation of this proto.
|
|
22096
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
22097
|
+
* Optional fields that are not set will be set to undefined.
|
|
22098
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
22099
|
+
* For the list of reserved names please see:
|
|
22100
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
22101
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
22102
|
+
* JSPB instance for transitional soy proto support:
|
|
22103
|
+
* http://goto/soy-param-migration
|
|
22104
|
+
* @return {!Object}
|
|
22105
|
+
*/
|
|
22106
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.toObject = function(opt_includeInstance) {
|
|
22107
|
+
return proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.toObject(opt_includeInstance, this);
|
|
22108
|
+
};
|
|
22109
|
+
|
|
22110
|
+
|
|
22111
|
+
/**
|
|
22112
|
+
* Static version of the {@see toObject} method.
|
|
22113
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
22114
|
+
* the JSPB instance for transitional soy proto support:
|
|
22115
|
+
* http://goto/soy-param-migration
|
|
22116
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} msg The msg instance to transform.
|
|
22117
|
+
* @return {!Object}
|
|
22118
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
22119
|
+
*/
|
|
22120
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.toObject = function(includeInstance, msg) {
|
|
22121
|
+
var f, obj = {
|
|
22122
|
+
operationName: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
22123
|
+
crawlerName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
22124
|
+
status: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
22125
|
+
entriesList: jspb.Message.toObjectList(msg.getEntriesList(),
|
|
22126
|
+
ondewo_nlu_common_pb.LogEntry.toObject, includeInstance),
|
|
22127
|
+
nextPageToken: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
22128
|
+
};
|
|
22129
|
+
|
|
22130
|
+
if (includeInstance) {
|
|
22131
|
+
obj.$jspbMessageInstance = msg;
|
|
22132
|
+
}
|
|
22133
|
+
return obj;
|
|
22134
|
+
};
|
|
22135
|
+
}
|
|
22136
|
+
|
|
22137
|
+
|
|
22138
|
+
/**
|
|
22139
|
+
* Deserializes binary data (in protobuf wire format).
|
|
22140
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
22141
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse}
|
|
22142
|
+
*/
|
|
22143
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.deserializeBinary = function(bytes) {
|
|
22144
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
22145
|
+
var msg = new proto.ondewo.nlu.RagGetCrawlerRunLogsResponse;
|
|
22146
|
+
return proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.deserializeBinaryFromReader(msg, reader);
|
|
22147
|
+
};
|
|
22148
|
+
|
|
22149
|
+
|
|
22150
|
+
/**
|
|
22151
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
22152
|
+
* given reader into the given message object.
|
|
22153
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} msg The message object to deserialize into.
|
|
22154
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
22155
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse}
|
|
22156
|
+
*/
|
|
22157
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
22158
|
+
while (reader.nextField()) {
|
|
22159
|
+
if (reader.isEndGroup()) {
|
|
22160
|
+
break;
|
|
22161
|
+
}
|
|
22162
|
+
var field = reader.getFieldNumber();
|
|
22163
|
+
switch (field) {
|
|
22164
|
+
case 1:
|
|
22165
|
+
var value = /** @type {string} */ (reader.readString());
|
|
22166
|
+
msg.setOperationName(value);
|
|
22167
|
+
break;
|
|
22168
|
+
case 2:
|
|
22169
|
+
var value = /** @type {string} */ (reader.readString());
|
|
22170
|
+
msg.setCrawlerName(value);
|
|
22171
|
+
break;
|
|
22172
|
+
case 3:
|
|
22173
|
+
var value = /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (reader.readEnum());
|
|
22174
|
+
msg.setStatus(value);
|
|
22175
|
+
break;
|
|
22176
|
+
case 4:
|
|
22177
|
+
var value = new ondewo_nlu_common_pb.LogEntry;
|
|
22178
|
+
reader.readMessage(value,ondewo_nlu_common_pb.LogEntry.deserializeBinaryFromReader);
|
|
22179
|
+
msg.addEntries(value);
|
|
22180
|
+
break;
|
|
22181
|
+
case 5:
|
|
22182
|
+
var value = /** @type {string} */ (reader.readString());
|
|
22183
|
+
msg.setNextPageToken(value);
|
|
22184
|
+
break;
|
|
22185
|
+
default:
|
|
22186
|
+
reader.skipField();
|
|
22187
|
+
break;
|
|
22188
|
+
}
|
|
22189
|
+
}
|
|
22190
|
+
return msg;
|
|
22191
|
+
};
|
|
22192
|
+
|
|
22193
|
+
|
|
22194
|
+
/**
|
|
22195
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
22196
|
+
* @return {!Uint8Array}
|
|
22197
|
+
*/
|
|
22198
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.serializeBinary = function() {
|
|
22199
|
+
var writer = new jspb.BinaryWriter();
|
|
22200
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.serializeBinaryToWriter(this, writer);
|
|
22201
|
+
return writer.getResultBuffer();
|
|
22202
|
+
};
|
|
22203
|
+
|
|
22204
|
+
|
|
22205
|
+
/**
|
|
22206
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
22207
|
+
* format), writing to the given BinaryWriter.
|
|
22208
|
+
* @param {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} message
|
|
22209
|
+
* @param {!jspb.BinaryWriter} writer
|
|
22210
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
22211
|
+
*/
|
|
22212
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.serializeBinaryToWriter = function(message, writer) {
|
|
22213
|
+
var f = undefined;
|
|
22214
|
+
f = message.getOperationName();
|
|
22215
|
+
if (f.length > 0) {
|
|
22216
|
+
writer.writeString(
|
|
22217
|
+
1,
|
|
22218
|
+
f
|
|
22219
|
+
);
|
|
22220
|
+
}
|
|
22221
|
+
f = message.getCrawlerName();
|
|
22222
|
+
if (f.length > 0) {
|
|
22223
|
+
writer.writeString(
|
|
22224
|
+
2,
|
|
22225
|
+
f
|
|
22226
|
+
);
|
|
22227
|
+
}
|
|
22228
|
+
f = message.getStatus();
|
|
22229
|
+
if (f !== 0.0) {
|
|
22230
|
+
writer.writeEnum(
|
|
22231
|
+
3,
|
|
22232
|
+
f
|
|
22233
|
+
);
|
|
22234
|
+
}
|
|
22235
|
+
f = message.getEntriesList();
|
|
22236
|
+
if (f.length > 0) {
|
|
22237
|
+
writer.writeRepeatedMessage(
|
|
22238
|
+
4,
|
|
22239
|
+
f,
|
|
22240
|
+
ondewo_nlu_common_pb.LogEntry.serializeBinaryToWriter
|
|
22241
|
+
);
|
|
22242
|
+
}
|
|
22243
|
+
f = message.getNextPageToken();
|
|
22244
|
+
if (f.length > 0) {
|
|
22245
|
+
writer.writeString(
|
|
22246
|
+
5,
|
|
22247
|
+
f
|
|
22248
|
+
);
|
|
22249
|
+
}
|
|
22250
|
+
};
|
|
22251
|
+
|
|
22252
|
+
|
|
22253
|
+
/**
|
|
22254
|
+
* optional string operation_name = 1;
|
|
22255
|
+
* @return {string}
|
|
22256
|
+
*/
|
|
22257
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getOperationName = function() {
|
|
22258
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
22259
|
+
};
|
|
22260
|
+
|
|
22261
|
+
|
|
22262
|
+
/**
|
|
22263
|
+
* @param {string} value
|
|
22264
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
22265
|
+
*/
|
|
22266
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setOperationName = function(value) {
|
|
22267
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
22268
|
+
};
|
|
22269
|
+
|
|
22270
|
+
|
|
22271
|
+
/**
|
|
22272
|
+
* optional string crawler_name = 2;
|
|
22273
|
+
* @return {string}
|
|
22274
|
+
*/
|
|
22275
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getCrawlerName = function() {
|
|
22276
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
22277
|
+
};
|
|
22278
|
+
|
|
22279
|
+
|
|
22280
|
+
/**
|
|
22281
|
+
* @param {string} value
|
|
22282
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
22283
|
+
*/
|
|
22284
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setCrawlerName = function(value) {
|
|
22285
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
22286
|
+
};
|
|
22287
|
+
|
|
22288
|
+
|
|
22289
|
+
/**
|
|
22290
|
+
* optional OperationMetadata.Status status = 3;
|
|
22291
|
+
* @return {!proto.ondewo.nlu.OperationMetadata.Status}
|
|
22292
|
+
*/
|
|
22293
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getStatus = function() {
|
|
22294
|
+
return /** @type {!proto.ondewo.nlu.OperationMetadata.Status} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
22295
|
+
};
|
|
22296
|
+
|
|
22297
|
+
|
|
22298
|
+
/**
|
|
22299
|
+
* @param {!proto.ondewo.nlu.OperationMetadata.Status} value
|
|
22300
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
22301
|
+
*/
|
|
22302
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setStatus = function(value) {
|
|
22303
|
+
return jspb.Message.setProto3EnumField(this, 3, value);
|
|
22304
|
+
};
|
|
22305
|
+
|
|
22306
|
+
|
|
22307
|
+
/**
|
|
22308
|
+
* repeated LogEntry entries = 4;
|
|
22309
|
+
* @return {!Array<!proto.ondewo.nlu.LogEntry>}
|
|
22310
|
+
*/
|
|
22311
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getEntriesList = function() {
|
|
22312
|
+
return /** @type{!Array<!proto.ondewo.nlu.LogEntry>} */ (
|
|
22313
|
+
jspb.Message.getRepeatedWrapperField(this, ondewo_nlu_common_pb.LogEntry, 4));
|
|
22314
|
+
};
|
|
22315
|
+
|
|
22316
|
+
|
|
22317
|
+
/**
|
|
22318
|
+
* @param {!Array<!proto.ondewo.nlu.LogEntry>} value
|
|
22319
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
22320
|
+
*/
|
|
22321
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setEntriesList = function(value) {
|
|
22322
|
+
return jspb.Message.setRepeatedWrapperField(this, 4, value);
|
|
22323
|
+
};
|
|
22324
|
+
|
|
22325
|
+
|
|
22326
|
+
/**
|
|
22327
|
+
* @param {!proto.ondewo.nlu.LogEntry=} opt_value
|
|
22328
|
+
* @param {number=} opt_index
|
|
22329
|
+
* @return {!proto.ondewo.nlu.LogEntry}
|
|
22330
|
+
*/
|
|
22331
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.addEntries = function(opt_value, opt_index) {
|
|
22332
|
+
return jspb.Message.addToRepeatedWrapperField(this, 4, opt_value, proto.ondewo.nlu.LogEntry, opt_index);
|
|
22333
|
+
};
|
|
22334
|
+
|
|
22335
|
+
|
|
22336
|
+
/**
|
|
22337
|
+
* Clears the list making it empty but non-null.
|
|
22338
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
22339
|
+
*/
|
|
22340
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.clearEntriesList = function() {
|
|
22341
|
+
return this.setEntriesList([]);
|
|
22342
|
+
};
|
|
22343
|
+
|
|
22344
|
+
|
|
22345
|
+
/**
|
|
22346
|
+
* optional string next_page_token = 5;
|
|
22347
|
+
* @return {string}
|
|
22348
|
+
*/
|
|
22349
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.getNextPageToken = function() {
|
|
22350
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
22351
|
+
};
|
|
22352
|
+
|
|
22353
|
+
|
|
22354
|
+
/**
|
|
22355
|
+
* @param {string} value
|
|
22356
|
+
* @return {!proto.ondewo.nlu.RagGetCrawlerRunLogsResponse} returns this
|
|
22357
|
+
*/
|
|
22358
|
+
proto.ondewo.nlu.RagGetCrawlerRunLogsResponse.prototype.setNextPageToken = function(value) {
|
|
22359
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
22360
|
+
};
|
|
22361
|
+
|
|
22362
|
+
|
|
21343
22363
|
/**
|
|
21344
22364
|
* @enum {number}
|
|
21345
22365
|
*/
|