@ondewo/nlu-client-typescript 3.1.0 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/ondewo/nlu/agent_pb.d.ts +42 -0
- package/api/ondewo/nlu/agent_pb.js +373 -47
- package/package.json +1 -1
|
@@ -1389,6 +1389,9 @@ export namespace FullTextSearchResponseEntity {
|
|
|
1389
1389
|
getEntityTypeName(): string;
|
|
1390
1390
|
setEntityTypeName(value: string): EntitySearchResult;
|
|
1391
1391
|
|
|
1392
|
+
getEntityTypeDisplayName(): string;
|
|
1393
|
+
setEntityTypeDisplayName(value: string): EntitySearchResult;
|
|
1394
|
+
|
|
1392
1395
|
getLanguage(): string;
|
|
1393
1396
|
setLanguage(value: string): EntitySearchResult;
|
|
1394
1397
|
|
|
@@ -1405,6 +1408,7 @@ export namespace FullTextSearchResponseEntity {
|
|
|
1405
1408
|
name: string,
|
|
1406
1409
|
displayName: string,
|
|
1407
1410
|
entityTypeName: string,
|
|
1411
|
+
entityTypeDisplayName: string,
|
|
1408
1412
|
language: string,
|
|
1409
1413
|
}
|
|
1410
1414
|
}
|
|
@@ -1464,9 +1468,15 @@ export namespace FullTextSearchResponseEntitySynonym {
|
|
|
1464
1468
|
getEntityTypeName(): string;
|
|
1465
1469
|
setEntityTypeName(value: string): EntitySynonymSearchResult;
|
|
1466
1470
|
|
|
1471
|
+
getEntityTypeDisplayName(): string;
|
|
1472
|
+
setEntityTypeDisplayName(value: string): EntitySynonymSearchResult;
|
|
1473
|
+
|
|
1467
1474
|
getEntityName(): string;
|
|
1468
1475
|
setEntityName(value: string): EntitySynonymSearchResult;
|
|
1469
1476
|
|
|
1477
|
+
getEntityDisplayName(): string;
|
|
1478
|
+
setEntityDisplayName(value: string): EntitySynonymSearchResult;
|
|
1479
|
+
|
|
1470
1480
|
getLanguage(): string;
|
|
1471
1481
|
setLanguage(value: string): EntitySynonymSearchResult;
|
|
1472
1482
|
|
|
@@ -1483,7 +1493,9 @@ export namespace FullTextSearchResponseEntitySynonym {
|
|
|
1483
1493
|
name: string,
|
|
1484
1494
|
displayName: string,
|
|
1485
1495
|
entityTypeName: string,
|
|
1496
|
+
entityTypeDisplayName: string,
|
|
1486
1497
|
entityName: string,
|
|
1498
|
+
entityDisplayName: string,
|
|
1487
1499
|
language: string,
|
|
1488
1500
|
}
|
|
1489
1501
|
}
|
|
@@ -1615,6 +1627,9 @@ export namespace FullTextSearchResponseIntentContextIn {
|
|
|
1615
1627
|
getIntentName(): string;
|
|
1616
1628
|
setIntentName(value: string): IntentContextInSearchResult;
|
|
1617
1629
|
|
|
1630
|
+
getIntentDisplayName(): string;
|
|
1631
|
+
setIntentDisplayName(value: string): IntentContextInSearchResult;
|
|
1632
|
+
|
|
1618
1633
|
getLanguage(): string;
|
|
1619
1634
|
setLanguage(value: string): IntentContextInSearchResult;
|
|
1620
1635
|
|
|
@@ -1630,6 +1645,7 @@ export namespace FullTextSearchResponseIntentContextIn {
|
|
|
1630
1645
|
export type AsObject = {
|
|
1631
1646
|
name: string,
|
|
1632
1647
|
intentName: string,
|
|
1648
|
+
intentDisplayName: string,
|
|
1633
1649
|
language: string,
|
|
1634
1650
|
}
|
|
1635
1651
|
}
|
|
@@ -1686,6 +1702,9 @@ export namespace FullTextSearchResponseIntentContextOut {
|
|
|
1686
1702
|
getIntentName(): string;
|
|
1687
1703
|
setIntentName(value: string): IntentContextOutSearchResult;
|
|
1688
1704
|
|
|
1705
|
+
getIntentDisplayName(): string;
|
|
1706
|
+
setIntentDisplayName(value: string): IntentContextOutSearchResult;
|
|
1707
|
+
|
|
1689
1708
|
getLanguage(): string;
|
|
1690
1709
|
setLanguage(value: string): IntentContextOutSearchResult;
|
|
1691
1710
|
|
|
@@ -1701,6 +1720,7 @@ export namespace FullTextSearchResponseIntentContextOut {
|
|
|
1701
1720
|
export type AsObject = {
|
|
1702
1721
|
name: string,
|
|
1703
1722
|
intentName: string,
|
|
1723
|
+
intentDisplayName: string,
|
|
1704
1724
|
language: string,
|
|
1705
1725
|
}
|
|
1706
1726
|
}
|
|
@@ -1769,6 +1789,9 @@ export namespace FullTextSearchResponseIntentUsersays {
|
|
|
1769
1789
|
getIntentName(): string;
|
|
1770
1790
|
setIntentName(value: string): IntentUsersaysSearchResult;
|
|
1771
1791
|
|
|
1792
|
+
getIntentDisplayName(): string;
|
|
1793
|
+
setIntentDisplayName(value: string): IntentUsersaysSearchResult;
|
|
1794
|
+
|
|
1772
1795
|
getLanguage(): string;
|
|
1773
1796
|
setLanguage(value: string): IntentUsersaysSearchResult;
|
|
1774
1797
|
|
|
@@ -1788,6 +1811,7 @@ export namespace FullTextSearchResponseIntentUsersays {
|
|
|
1788
1811
|
textAsEntityValues: string,
|
|
1789
1812
|
type: string,
|
|
1790
1813
|
intentName: string,
|
|
1814
|
+
intentDisplayName: string,
|
|
1791
1815
|
language: string,
|
|
1792
1816
|
}
|
|
1793
1817
|
}
|
|
@@ -1847,6 +1871,14 @@ export namespace FullTextSearchResponseIntentTags {
|
|
|
1847
1871
|
getIntentName(): string;
|
|
1848
1872
|
setIntentName(value: string): IntentTagsSearchResult;
|
|
1849
1873
|
|
|
1874
|
+
getIntentDisplayName(): string;
|
|
1875
|
+
setIntentDisplayName(value: string): IntentTagsSearchResult;
|
|
1876
|
+
|
|
1877
|
+
getTagsList(): Array<string>;
|
|
1878
|
+
setTagsList(value: Array<string>): IntentTagsSearchResult;
|
|
1879
|
+
clearTagsList(): IntentTagsSearchResult;
|
|
1880
|
+
addTags(value: string, index?: number): IntentTagsSearchResult;
|
|
1881
|
+
|
|
1850
1882
|
getLanguage(): string;
|
|
1851
1883
|
setLanguage(value: string): IntentTagsSearchResult;
|
|
1852
1884
|
|
|
@@ -1863,6 +1895,8 @@ export namespace FullTextSearchResponseIntentTags {
|
|
|
1863
1895
|
name: string,
|
|
1864
1896
|
text: string,
|
|
1865
1897
|
intentName: string,
|
|
1898
|
+
intentDisplayName: string,
|
|
1899
|
+
tagsList: Array<string>,
|
|
1866
1900
|
language: string,
|
|
1867
1901
|
}
|
|
1868
1902
|
}
|
|
@@ -1925,6 +1959,9 @@ export namespace FullTextSearchResponseIntentResponse {
|
|
|
1925
1959
|
getIntentName(): string;
|
|
1926
1960
|
setIntentName(value: string): IntentResponseSearchResult;
|
|
1927
1961
|
|
|
1962
|
+
getIntentDisplayName(): string;
|
|
1963
|
+
setIntentDisplayName(value: string): IntentResponseSearchResult;
|
|
1964
|
+
|
|
1928
1965
|
getLanguage(): string;
|
|
1929
1966
|
setLanguage(value: string): IntentResponseSearchResult;
|
|
1930
1967
|
|
|
@@ -1942,6 +1979,7 @@ export namespace FullTextSearchResponseIntentResponse {
|
|
|
1942
1979
|
platform: string,
|
|
1943
1980
|
responseType: string,
|
|
1944
1981
|
intentName: string,
|
|
1982
|
+
intentDisplayName: string,
|
|
1945
1983
|
language: string,
|
|
1946
1984
|
}
|
|
1947
1985
|
}
|
|
@@ -2001,6 +2039,9 @@ export namespace FullTextSearchResponseIntentParameters {
|
|
|
2001
2039
|
getIntentName(): string;
|
|
2002
2040
|
setIntentName(value: string): IntentParametersSearchResult;
|
|
2003
2041
|
|
|
2042
|
+
getIntentDisplayName(): string;
|
|
2043
|
+
setIntentDisplayName(value: string): IntentParametersSearchResult;
|
|
2044
|
+
|
|
2004
2045
|
getLanguage(): string;
|
|
2005
2046
|
setLanguage(value: string): IntentParametersSearchResult;
|
|
2006
2047
|
|
|
@@ -2017,6 +2058,7 @@ export namespace FullTextSearchResponseIntentParameters {
|
|
|
2017
2058
|
parameterName: string,
|
|
2018
2059
|
parameterDisplayName: string,
|
|
2019
2060
|
intentName: string,
|
|
2061
|
+
intentDisplayName: string,
|
|
2020
2062
|
language: string,
|
|
2021
2063
|
}
|
|
2022
2064
|
}
|
|
@@ -1363,7 +1363,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
1363
1363
|
* @constructor
|
|
1364
1364
|
*/
|
|
1365
1365
|
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult = function(opt_data) {
|
|
1366
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
1366
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.repeatedFields_, null);
|
|
1367
1367
|
};
|
|
1368
1368
|
goog.inherits(proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult, jspb.Message);
|
|
1369
1369
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -11480,7 +11480,8 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.toObject = func
|
|
|
11480
11480
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
11481
11481
|
displayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
11482
11482
|
entityTypeName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
11483
|
-
|
|
11483
|
+
entityTypeDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
11484
|
+
language: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
11484
11485
|
};
|
|
11485
11486
|
|
|
11486
11487
|
if (includeInstance) {
|
|
@@ -11530,6 +11531,10 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.deserializeBina
|
|
|
11530
11531
|
msg.setEntityTypeName(value);
|
|
11531
11532
|
break;
|
|
11532
11533
|
case 4:
|
|
11534
|
+
var value = /** @type {string} */ (reader.readString());
|
|
11535
|
+
msg.setEntityTypeDisplayName(value);
|
|
11536
|
+
break;
|
|
11537
|
+
case 5:
|
|
11533
11538
|
var value = /** @type {string} */ (reader.readString());
|
|
11534
11539
|
msg.setLanguage(value);
|
|
11535
11540
|
break;
|
|
@@ -11583,13 +11588,20 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.serializeBinary
|
|
|
11583
11588
|
f
|
|
11584
11589
|
);
|
|
11585
11590
|
}
|
|
11586
|
-
f = message.
|
|
11591
|
+
f = message.getEntityTypeDisplayName();
|
|
11587
11592
|
if (f.length > 0) {
|
|
11588
11593
|
writer.writeString(
|
|
11589
11594
|
4,
|
|
11590
11595
|
f
|
|
11591
11596
|
);
|
|
11592
11597
|
}
|
|
11598
|
+
f = message.getLanguage();
|
|
11599
|
+
if (f.length > 0) {
|
|
11600
|
+
writer.writeString(
|
|
11601
|
+
5,
|
|
11602
|
+
f
|
|
11603
|
+
);
|
|
11604
|
+
}
|
|
11593
11605
|
};
|
|
11594
11606
|
|
|
11595
11607
|
|
|
@@ -11648,10 +11660,10 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setEn
|
|
|
11648
11660
|
|
|
11649
11661
|
|
|
11650
11662
|
/**
|
|
11651
|
-
* optional string
|
|
11663
|
+
* optional string entity_type_display_name = 4;
|
|
11652
11664
|
* @return {string}
|
|
11653
11665
|
*/
|
|
11654
|
-
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.
|
|
11666
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getEntityTypeDisplayName = function() {
|
|
11655
11667
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
11656
11668
|
};
|
|
11657
11669
|
|
|
@@ -11660,11 +11672,29 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getLa
|
|
|
11660
11672
|
* @param {string} value
|
|
11661
11673
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
11662
11674
|
*/
|
|
11663
|
-
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.
|
|
11675
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setEntityTypeDisplayName = function(value) {
|
|
11664
11676
|
return jspb.Message.setProto3StringField(this, 4, value);
|
|
11665
11677
|
};
|
|
11666
11678
|
|
|
11667
11679
|
|
|
11680
|
+
/**
|
|
11681
|
+
* optional string language = 5;
|
|
11682
|
+
* @return {string}
|
|
11683
|
+
*/
|
|
11684
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getLanguage = function() {
|
|
11685
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
11686
|
+
};
|
|
11687
|
+
|
|
11688
|
+
|
|
11689
|
+
/**
|
|
11690
|
+
* @param {string} value
|
|
11691
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
11692
|
+
*/
|
|
11693
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setLanguage = function(value) {
|
|
11694
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
11695
|
+
};
|
|
11696
|
+
|
|
11697
|
+
|
|
11668
11698
|
/**
|
|
11669
11699
|
* optional string parent = 1;
|
|
11670
11700
|
* @return {string}
|
|
@@ -12040,8 +12070,10 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.t
|
|
|
12040
12070
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
12041
12071
|
displayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
12042
12072
|
entityTypeName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
12043
|
-
|
|
12044
|
-
|
|
12073
|
+
entityTypeDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
12074
|
+
entityName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
12075
|
+
entityDisplayName: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
12076
|
+
language: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
12045
12077
|
};
|
|
12046
12078
|
|
|
12047
12079
|
if (includeInstance) {
|
|
@@ -12092,9 +12124,17 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.d
|
|
|
12092
12124
|
break;
|
|
12093
12125
|
case 4:
|
|
12094
12126
|
var value = /** @type {string} */ (reader.readString());
|
|
12095
|
-
msg.
|
|
12127
|
+
msg.setEntityTypeDisplayName(value);
|
|
12096
12128
|
break;
|
|
12097
12129
|
case 5:
|
|
12130
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12131
|
+
msg.setEntityName(value);
|
|
12132
|
+
break;
|
|
12133
|
+
case 6:
|
|
12134
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12135
|
+
msg.setEntityDisplayName(value);
|
|
12136
|
+
break;
|
|
12137
|
+
case 7:
|
|
12098
12138
|
var value = /** @type {string} */ (reader.readString());
|
|
12099
12139
|
msg.setLanguage(value);
|
|
12100
12140
|
break;
|
|
@@ -12148,20 +12188,34 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.s
|
|
|
12148
12188
|
f
|
|
12149
12189
|
);
|
|
12150
12190
|
}
|
|
12151
|
-
f = message.
|
|
12191
|
+
f = message.getEntityTypeDisplayName();
|
|
12152
12192
|
if (f.length > 0) {
|
|
12153
12193
|
writer.writeString(
|
|
12154
12194
|
4,
|
|
12155
12195
|
f
|
|
12156
12196
|
);
|
|
12157
12197
|
}
|
|
12158
|
-
f = message.
|
|
12198
|
+
f = message.getEntityName();
|
|
12159
12199
|
if (f.length > 0) {
|
|
12160
12200
|
writer.writeString(
|
|
12161
12201
|
5,
|
|
12162
12202
|
f
|
|
12163
12203
|
);
|
|
12164
12204
|
}
|
|
12205
|
+
f = message.getEntityDisplayName();
|
|
12206
|
+
if (f.length > 0) {
|
|
12207
|
+
writer.writeString(
|
|
12208
|
+
6,
|
|
12209
|
+
f
|
|
12210
|
+
);
|
|
12211
|
+
}
|
|
12212
|
+
f = message.getLanguage();
|
|
12213
|
+
if (f.length > 0) {
|
|
12214
|
+
writer.writeString(
|
|
12215
|
+
7,
|
|
12216
|
+
f
|
|
12217
|
+
);
|
|
12218
|
+
}
|
|
12165
12219
|
};
|
|
12166
12220
|
|
|
12167
12221
|
|
|
@@ -12220,10 +12274,10 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.p
|
|
|
12220
12274
|
|
|
12221
12275
|
|
|
12222
12276
|
/**
|
|
12223
|
-
* optional string
|
|
12277
|
+
* optional string entity_type_display_name = 4;
|
|
12224
12278
|
* @return {string}
|
|
12225
12279
|
*/
|
|
12226
|
-
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.
|
|
12280
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getEntityTypeDisplayName = function() {
|
|
12227
12281
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
12228
12282
|
};
|
|
12229
12283
|
|
|
@@ -12232,16 +12286,16 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.p
|
|
|
12232
12286
|
* @param {string} value
|
|
12233
12287
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
12234
12288
|
*/
|
|
12235
|
-
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.
|
|
12289
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setEntityTypeDisplayName = function(value) {
|
|
12236
12290
|
return jspb.Message.setProto3StringField(this, 4, value);
|
|
12237
12291
|
};
|
|
12238
12292
|
|
|
12239
12293
|
|
|
12240
12294
|
/**
|
|
12241
|
-
* optional string
|
|
12295
|
+
* optional string entity_name = 5;
|
|
12242
12296
|
* @return {string}
|
|
12243
12297
|
*/
|
|
12244
|
-
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.
|
|
12298
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getEntityName = function() {
|
|
12245
12299
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
12246
12300
|
};
|
|
12247
12301
|
|
|
@@ -12250,11 +12304,47 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.p
|
|
|
12250
12304
|
* @param {string} value
|
|
12251
12305
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
12252
12306
|
*/
|
|
12253
|
-
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.
|
|
12307
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setEntityName = function(value) {
|
|
12254
12308
|
return jspb.Message.setProto3StringField(this, 5, value);
|
|
12255
12309
|
};
|
|
12256
12310
|
|
|
12257
12311
|
|
|
12312
|
+
/**
|
|
12313
|
+
* optional string entity_display_name = 6;
|
|
12314
|
+
* @return {string}
|
|
12315
|
+
*/
|
|
12316
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getEntityDisplayName = function() {
|
|
12317
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
12318
|
+
};
|
|
12319
|
+
|
|
12320
|
+
|
|
12321
|
+
/**
|
|
12322
|
+
* @param {string} value
|
|
12323
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
12324
|
+
*/
|
|
12325
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setEntityDisplayName = function(value) {
|
|
12326
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
12327
|
+
};
|
|
12328
|
+
|
|
12329
|
+
|
|
12330
|
+
/**
|
|
12331
|
+
* optional string language = 7;
|
|
12332
|
+
* @return {string}
|
|
12333
|
+
*/
|
|
12334
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getLanguage = function() {
|
|
12335
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
12336
|
+
};
|
|
12337
|
+
|
|
12338
|
+
|
|
12339
|
+
/**
|
|
12340
|
+
* @param {string} value
|
|
12341
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
12342
|
+
*/
|
|
12343
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setLanguage = function(value) {
|
|
12344
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
12345
|
+
};
|
|
12346
|
+
|
|
12347
|
+
|
|
12258
12348
|
/**
|
|
12259
12349
|
* optional string parent = 1;
|
|
12260
12350
|
* @return {string}
|
|
@@ -13189,7 +13279,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
13189
13279
|
var f, obj = {
|
|
13190
13280
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
13191
13281
|
intentName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
13192
|
-
|
|
13282
|
+
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
13283
|
+
language: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
13193
13284
|
};
|
|
13194
13285
|
|
|
13195
13286
|
if (includeInstance) {
|
|
@@ -13235,6 +13326,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
13235
13326
|
msg.setIntentName(value);
|
|
13236
13327
|
break;
|
|
13237
13328
|
case 3:
|
|
13329
|
+
var value = /** @type {string} */ (reader.readString());
|
|
13330
|
+
msg.setIntentDisplayName(value);
|
|
13331
|
+
break;
|
|
13332
|
+
case 4:
|
|
13238
13333
|
var value = /** @type {string} */ (reader.readString());
|
|
13239
13334
|
msg.setLanguage(value);
|
|
13240
13335
|
break;
|
|
@@ -13281,13 +13376,20 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
13281
13376
|
f
|
|
13282
13377
|
);
|
|
13283
13378
|
}
|
|
13284
|
-
f = message.
|
|
13379
|
+
f = message.getIntentDisplayName();
|
|
13285
13380
|
if (f.length > 0) {
|
|
13286
13381
|
writer.writeString(
|
|
13287
13382
|
3,
|
|
13288
13383
|
f
|
|
13289
13384
|
);
|
|
13290
13385
|
}
|
|
13386
|
+
f = message.getLanguage();
|
|
13387
|
+
if (f.length > 0) {
|
|
13388
|
+
writer.writeString(
|
|
13389
|
+
4,
|
|
13390
|
+
f
|
|
13391
|
+
);
|
|
13392
|
+
}
|
|
13291
13393
|
};
|
|
13292
13394
|
|
|
13293
13395
|
|
|
@@ -13328,10 +13430,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
13328
13430
|
|
|
13329
13431
|
|
|
13330
13432
|
/**
|
|
13331
|
-
* optional string
|
|
13433
|
+
* optional string intent_display_name = 3;
|
|
13332
13434
|
* @return {string}
|
|
13333
13435
|
*/
|
|
13334
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.
|
|
13436
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getIntentDisplayName = function() {
|
|
13335
13437
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
13336
13438
|
};
|
|
13337
13439
|
|
|
@@ -13340,11 +13442,29 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
13340
13442
|
* @param {string} value
|
|
13341
13443
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
13342
13444
|
*/
|
|
13343
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.
|
|
13445
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setIntentDisplayName = function(value) {
|
|
13344
13446
|
return jspb.Message.setProto3StringField(this, 3, value);
|
|
13345
13447
|
};
|
|
13346
13448
|
|
|
13347
13449
|
|
|
13450
|
+
/**
|
|
13451
|
+
* optional string language = 4;
|
|
13452
|
+
* @return {string}
|
|
13453
|
+
*/
|
|
13454
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getLanguage = function() {
|
|
13455
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
13456
|
+
};
|
|
13457
|
+
|
|
13458
|
+
|
|
13459
|
+
/**
|
|
13460
|
+
* @param {string} value
|
|
13461
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
13462
|
+
*/
|
|
13463
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setLanguage = function(value) {
|
|
13464
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
13465
|
+
};
|
|
13466
|
+
|
|
13467
|
+
|
|
13348
13468
|
/**
|
|
13349
13469
|
* optional string parent = 1;
|
|
13350
13470
|
* @return {string}
|
|
@@ -13719,7 +13839,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
13719
13839
|
var f, obj = {
|
|
13720
13840
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
13721
13841
|
intentName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
13722
|
-
|
|
13842
|
+
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
13843
|
+
language: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
13723
13844
|
};
|
|
13724
13845
|
|
|
13725
13846
|
if (includeInstance) {
|
|
@@ -13765,6 +13886,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
13765
13886
|
msg.setIntentName(value);
|
|
13766
13887
|
break;
|
|
13767
13888
|
case 3:
|
|
13889
|
+
var value = /** @type {string} */ (reader.readString());
|
|
13890
|
+
msg.setIntentDisplayName(value);
|
|
13891
|
+
break;
|
|
13892
|
+
case 4:
|
|
13768
13893
|
var value = /** @type {string} */ (reader.readString());
|
|
13769
13894
|
msg.setLanguage(value);
|
|
13770
13895
|
break;
|
|
@@ -13811,13 +13936,20 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
13811
13936
|
f
|
|
13812
13937
|
);
|
|
13813
13938
|
}
|
|
13814
|
-
f = message.
|
|
13939
|
+
f = message.getIntentDisplayName();
|
|
13815
13940
|
if (f.length > 0) {
|
|
13816
13941
|
writer.writeString(
|
|
13817
13942
|
3,
|
|
13818
13943
|
f
|
|
13819
13944
|
);
|
|
13820
13945
|
}
|
|
13946
|
+
f = message.getLanguage();
|
|
13947
|
+
if (f.length > 0) {
|
|
13948
|
+
writer.writeString(
|
|
13949
|
+
4,
|
|
13950
|
+
f
|
|
13951
|
+
);
|
|
13952
|
+
}
|
|
13821
13953
|
};
|
|
13822
13954
|
|
|
13823
13955
|
|
|
@@ -13858,10 +13990,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
13858
13990
|
|
|
13859
13991
|
|
|
13860
13992
|
/**
|
|
13861
|
-
* optional string
|
|
13993
|
+
* optional string intent_display_name = 3;
|
|
13862
13994
|
* @return {string}
|
|
13863
13995
|
*/
|
|
13864
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.
|
|
13996
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getIntentDisplayName = function() {
|
|
13865
13997
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
13866
13998
|
};
|
|
13867
13999
|
|
|
@@ -13870,11 +14002,29 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
13870
14002
|
* @param {string} value
|
|
13871
14003
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
13872
14004
|
*/
|
|
13873
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.
|
|
14005
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setIntentDisplayName = function(value) {
|
|
13874
14006
|
return jspb.Message.setProto3StringField(this, 3, value);
|
|
13875
14007
|
};
|
|
13876
14008
|
|
|
13877
14009
|
|
|
14010
|
+
/**
|
|
14011
|
+
* optional string language = 4;
|
|
14012
|
+
* @return {string}
|
|
14013
|
+
*/
|
|
14014
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getLanguage = function() {
|
|
14015
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
14016
|
+
};
|
|
14017
|
+
|
|
14018
|
+
|
|
14019
|
+
/**
|
|
14020
|
+
* @param {string} value
|
|
14021
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
14022
|
+
*/
|
|
14023
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setLanguage = function(value) {
|
|
14024
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
14025
|
+
};
|
|
14026
|
+
|
|
14027
|
+
|
|
13878
14028
|
/**
|
|
13879
14029
|
* optional string parent = 1;
|
|
13880
14030
|
* @return {string}
|
|
@@ -14253,7 +14403,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
14253
14403
|
textAsEntityValues: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
14254
14404
|
type: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
14255
14405
|
intentName: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
14256
|
-
|
|
14406
|
+
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
14407
|
+
language: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
14257
14408
|
};
|
|
14258
14409
|
|
|
14259
14410
|
if (includeInstance) {
|
|
@@ -14315,6 +14466,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
14315
14466
|
msg.setIntentName(value);
|
|
14316
14467
|
break;
|
|
14317
14468
|
case 7:
|
|
14469
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14470
|
+
msg.setIntentDisplayName(value);
|
|
14471
|
+
break;
|
|
14472
|
+
case 8:
|
|
14318
14473
|
var value = /** @type {string} */ (reader.readString());
|
|
14319
14474
|
msg.setLanguage(value);
|
|
14320
14475
|
break;
|
|
@@ -14389,13 +14544,20 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
14389
14544
|
f
|
|
14390
14545
|
);
|
|
14391
14546
|
}
|
|
14392
|
-
f = message.
|
|
14547
|
+
f = message.getIntentDisplayName();
|
|
14393
14548
|
if (f.length > 0) {
|
|
14394
14549
|
writer.writeString(
|
|
14395
14550
|
7,
|
|
14396
14551
|
f
|
|
14397
14552
|
);
|
|
14398
14553
|
}
|
|
14554
|
+
f = message.getLanguage();
|
|
14555
|
+
if (f.length > 0) {
|
|
14556
|
+
writer.writeString(
|
|
14557
|
+
8,
|
|
14558
|
+
f
|
|
14559
|
+
);
|
|
14560
|
+
}
|
|
14399
14561
|
};
|
|
14400
14562
|
|
|
14401
14563
|
|
|
@@ -14508,10 +14670,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
14508
14670
|
|
|
14509
14671
|
|
|
14510
14672
|
/**
|
|
14511
|
-
* optional string
|
|
14673
|
+
* optional string intent_display_name = 7;
|
|
14512
14674
|
* @return {string}
|
|
14513
14675
|
*/
|
|
14514
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.
|
|
14676
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getIntentDisplayName = function() {
|
|
14515
14677
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
14516
14678
|
};
|
|
14517
14679
|
|
|
@@ -14520,11 +14682,29 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
14520
14682
|
* @param {string} value
|
|
14521
14683
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
14522
14684
|
*/
|
|
14523
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.
|
|
14685
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setIntentDisplayName = function(value) {
|
|
14524
14686
|
return jspb.Message.setProto3StringField(this, 7, value);
|
|
14525
14687
|
};
|
|
14526
14688
|
|
|
14527
14689
|
|
|
14690
|
+
/**
|
|
14691
|
+
* optional string language = 8;
|
|
14692
|
+
* @return {string}
|
|
14693
|
+
*/
|
|
14694
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getLanguage = function() {
|
|
14695
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
14696
|
+
};
|
|
14697
|
+
|
|
14698
|
+
|
|
14699
|
+
/**
|
|
14700
|
+
* @param {string} value
|
|
14701
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
14702
|
+
*/
|
|
14703
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setLanguage = function(value) {
|
|
14704
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
14705
|
+
};
|
|
14706
|
+
|
|
14707
|
+
|
|
14528
14708
|
/**
|
|
14529
14709
|
* optional string parent = 1;
|
|
14530
14710
|
* @return {string}
|
|
@@ -14866,6 +15046,13 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.serializeBinaryToWriter = func
|
|
|
14866
15046
|
|
|
14867
15047
|
|
|
14868
15048
|
|
|
15049
|
+
/**
|
|
15050
|
+
* List of repeated fields within this message type.
|
|
15051
|
+
* @private {!Array<number>}
|
|
15052
|
+
* @const
|
|
15053
|
+
*/
|
|
15054
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.repeatedFields_ = [5];
|
|
15055
|
+
|
|
14869
15056
|
|
|
14870
15057
|
|
|
14871
15058
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -14900,7 +15087,9 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.toObjec
|
|
|
14900
15087
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
14901
15088
|
text: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
14902
15089
|
intentName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
14903
|
-
|
|
15090
|
+
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
15091
|
+
tagsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
15092
|
+
language: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
14904
15093
|
};
|
|
14905
15094
|
|
|
14906
15095
|
if (includeInstance) {
|
|
@@ -14950,6 +15139,14 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.deseria
|
|
|
14950
15139
|
msg.setIntentName(value);
|
|
14951
15140
|
break;
|
|
14952
15141
|
case 4:
|
|
15142
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15143
|
+
msg.setIntentDisplayName(value);
|
|
15144
|
+
break;
|
|
15145
|
+
case 5:
|
|
15146
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15147
|
+
msg.addTags(value);
|
|
15148
|
+
break;
|
|
15149
|
+
case 6:
|
|
14953
15150
|
var value = /** @type {string} */ (reader.readString());
|
|
14954
15151
|
msg.setLanguage(value);
|
|
14955
15152
|
break;
|
|
@@ -15003,13 +15200,27 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.seriali
|
|
|
15003
15200
|
f
|
|
15004
15201
|
);
|
|
15005
15202
|
}
|
|
15006
|
-
f = message.
|
|
15203
|
+
f = message.getIntentDisplayName();
|
|
15007
15204
|
if (f.length > 0) {
|
|
15008
15205
|
writer.writeString(
|
|
15009
15206
|
4,
|
|
15010
15207
|
f
|
|
15011
15208
|
);
|
|
15012
15209
|
}
|
|
15210
|
+
f = message.getTagsList();
|
|
15211
|
+
if (f.length > 0) {
|
|
15212
|
+
writer.writeRepeatedString(
|
|
15213
|
+
5,
|
|
15214
|
+
f
|
|
15215
|
+
);
|
|
15216
|
+
}
|
|
15217
|
+
f = message.getLanguage();
|
|
15218
|
+
if (f.length > 0) {
|
|
15219
|
+
writer.writeString(
|
|
15220
|
+
6,
|
|
15221
|
+
f
|
|
15222
|
+
);
|
|
15223
|
+
}
|
|
15013
15224
|
};
|
|
15014
15225
|
|
|
15015
15226
|
|
|
@@ -15068,10 +15279,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototy
|
|
|
15068
15279
|
|
|
15069
15280
|
|
|
15070
15281
|
/**
|
|
15071
|
-
* optional string
|
|
15282
|
+
* optional string intent_display_name = 4;
|
|
15072
15283
|
* @return {string}
|
|
15073
15284
|
*/
|
|
15074
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.
|
|
15285
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getIntentDisplayName = function() {
|
|
15075
15286
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
15076
15287
|
};
|
|
15077
15288
|
|
|
@@ -15080,11 +15291,66 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototy
|
|
|
15080
15291
|
* @param {string} value
|
|
15081
15292
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
15082
15293
|
*/
|
|
15083
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.
|
|
15294
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setIntentDisplayName = function(value) {
|
|
15084
15295
|
return jspb.Message.setProto3StringField(this, 4, value);
|
|
15085
15296
|
};
|
|
15086
15297
|
|
|
15087
15298
|
|
|
15299
|
+
/**
|
|
15300
|
+
* repeated string tags = 5;
|
|
15301
|
+
* @return {!Array<string>}
|
|
15302
|
+
*/
|
|
15303
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getTagsList = function() {
|
|
15304
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 5));
|
|
15305
|
+
};
|
|
15306
|
+
|
|
15307
|
+
|
|
15308
|
+
/**
|
|
15309
|
+
* @param {!Array<string>} value
|
|
15310
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
15311
|
+
*/
|
|
15312
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setTagsList = function(value) {
|
|
15313
|
+
return jspb.Message.setField(this, 5, value || []);
|
|
15314
|
+
};
|
|
15315
|
+
|
|
15316
|
+
|
|
15317
|
+
/**
|
|
15318
|
+
* @param {string} value
|
|
15319
|
+
* @param {number=} opt_index
|
|
15320
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
15321
|
+
*/
|
|
15322
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.addTags = function(value, opt_index) {
|
|
15323
|
+
return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
|
|
15324
|
+
};
|
|
15325
|
+
|
|
15326
|
+
|
|
15327
|
+
/**
|
|
15328
|
+
* Clears the list making it empty but non-null.
|
|
15329
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
15330
|
+
*/
|
|
15331
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.clearTagsList = function() {
|
|
15332
|
+
return this.setTagsList([]);
|
|
15333
|
+
};
|
|
15334
|
+
|
|
15335
|
+
|
|
15336
|
+
/**
|
|
15337
|
+
* optional string language = 6;
|
|
15338
|
+
* @return {string}
|
|
15339
|
+
*/
|
|
15340
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getLanguage = function() {
|
|
15341
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
15342
|
+
};
|
|
15343
|
+
|
|
15344
|
+
|
|
15345
|
+
/**
|
|
15346
|
+
* @param {string} value
|
|
15347
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
15348
|
+
*/
|
|
15349
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setLanguage = function(value) {
|
|
15350
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
15351
|
+
};
|
|
15352
|
+
|
|
15353
|
+
|
|
15088
15354
|
/**
|
|
15089
15355
|
* optional string parent = 1;
|
|
15090
15356
|
* @return {string}
|
|
@@ -15461,7 +15727,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
15461
15727
|
platform: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
15462
15728
|
responseType: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
15463
15729
|
intentName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
15464
|
-
|
|
15730
|
+
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
15731
|
+
language: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
15465
15732
|
};
|
|
15466
15733
|
|
|
15467
15734
|
if (includeInstance) {
|
|
@@ -15515,6 +15782,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
15515
15782
|
msg.setIntentName(value);
|
|
15516
15783
|
break;
|
|
15517
15784
|
case 5:
|
|
15785
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15786
|
+
msg.setIntentDisplayName(value);
|
|
15787
|
+
break;
|
|
15788
|
+
case 6:
|
|
15518
15789
|
var value = /** @type {string} */ (reader.readString());
|
|
15519
15790
|
msg.setLanguage(value);
|
|
15520
15791
|
break;
|
|
@@ -15575,13 +15846,20 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
15575
15846
|
f
|
|
15576
15847
|
);
|
|
15577
15848
|
}
|
|
15578
|
-
f = message.
|
|
15849
|
+
f = message.getIntentDisplayName();
|
|
15579
15850
|
if (f.length > 0) {
|
|
15580
15851
|
writer.writeString(
|
|
15581
15852
|
5,
|
|
15582
15853
|
f
|
|
15583
15854
|
);
|
|
15584
15855
|
}
|
|
15856
|
+
f = message.getLanguage();
|
|
15857
|
+
if (f.length > 0) {
|
|
15858
|
+
writer.writeString(
|
|
15859
|
+
6,
|
|
15860
|
+
f
|
|
15861
|
+
);
|
|
15862
|
+
}
|
|
15585
15863
|
};
|
|
15586
15864
|
|
|
15587
15865
|
|
|
@@ -15658,10 +15936,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
15658
15936
|
|
|
15659
15937
|
|
|
15660
15938
|
/**
|
|
15661
|
-
* optional string
|
|
15939
|
+
* optional string intent_display_name = 5;
|
|
15662
15940
|
* @return {string}
|
|
15663
15941
|
*/
|
|
15664
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.
|
|
15942
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getIntentDisplayName = function() {
|
|
15665
15943
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
15666
15944
|
};
|
|
15667
15945
|
|
|
@@ -15670,11 +15948,29 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
15670
15948
|
* @param {string} value
|
|
15671
15949
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
15672
15950
|
*/
|
|
15673
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.
|
|
15951
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setIntentDisplayName = function(value) {
|
|
15674
15952
|
return jspb.Message.setProto3StringField(this, 5, value);
|
|
15675
15953
|
};
|
|
15676
15954
|
|
|
15677
15955
|
|
|
15956
|
+
/**
|
|
15957
|
+
* optional string language = 6;
|
|
15958
|
+
* @return {string}
|
|
15959
|
+
*/
|
|
15960
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getLanguage = function() {
|
|
15961
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
15962
|
+
};
|
|
15963
|
+
|
|
15964
|
+
|
|
15965
|
+
/**
|
|
15966
|
+
* @param {string} value
|
|
15967
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
15968
|
+
*/
|
|
15969
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setLanguage = function(value) {
|
|
15970
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
15971
|
+
};
|
|
15972
|
+
|
|
15973
|
+
|
|
15678
15974
|
/**
|
|
15679
15975
|
* optional string parent = 1;
|
|
15680
15976
|
* @return {string}
|
|
@@ -16050,7 +16346,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
16050
16346
|
parameterName: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
16051
16347
|
parameterDisplayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
16052
16348
|
intentName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
16053
|
-
|
|
16349
|
+
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
16350
|
+
language: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
16054
16351
|
};
|
|
16055
16352
|
|
|
16056
16353
|
if (includeInstance) {
|
|
@@ -16100,6 +16397,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
16100
16397
|
msg.setIntentName(value);
|
|
16101
16398
|
break;
|
|
16102
16399
|
case 4:
|
|
16400
|
+
var value = /** @type {string} */ (reader.readString());
|
|
16401
|
+
msg.setIntentDisplayName(value);
|
|
16402
|
+
break;
|
|
16403
|
+
case 5:
|
|
16103
16404
|
var value = /** @type {string} */ (reader.readString());
|
|
16104
16405
|
msg.setLanguage(value);
|
|
16105
16406
|
break;
|
|
@@ -16153,13 +16454,20 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
16153
16454
|
f
|
|
16154
16455
|
);
|
|
16155
16456
|
}
|
|
16156
|
-
f = message.
|
|
16457
|
+
f = message.getIntentDisplayName();
|
|
16157
16458
|
if (f.length > 0) {
|
|
16158
16459
|
writer.writeString(
|
|
16159
16460
|
4,
|
|
16160
16461
|
f
|
|
16161
16462
|
);
|
|
16162
16463
|
}
|
|
16464
|
+
f = message.getLanguage();
|
|
16465
|
+
if (f.length > 0) {
|
|
16466
|
+
writer.writeString(
|
|
16467
|
+
5,
|
|
16468
|
+
f
|
|
16469
|
+
);
|
|
16470
|
+
}
|
|
16163
16471
|
};
|
|
16164
16472
|
|
|
16165
16473
|
|
|
@@ -16218,10 +16526,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
16218
16526
|
|
|
16219
16527
|
|
|
16220
16528
|
/**
|
|
16221
|
-
* optional string
|
|
16529
|
+
* optional string intent_display_name = 4;
|
|
16222
16530
|
* @return {string}
|
|
16223
16531
|
*/
|
|
16224
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.
|
|
16532
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getIntentDisplayName = function() {
|
|
16225
16533
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
16226
16534
|
};
|
|
16227
16535
|
|
|
@@ -16230,11 +16538,29 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
16230
16538
|
* @param {string} value
|
|
16231
16539
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
16232
16540
|
*/
|
|
16233
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.
|
|
16541
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setIntentDisplayName = function(value) {
|
|
16234
16542
|
return jspb.Message.setProto3StringField(this, 4, value);
|
|
16235
16543
|
};
|
|
16236
16544
|
|
|
16237
16545
|
|
|
16546
|
+
/**
|
|
16547
|
+
* optional string language = 5;
|
|
16548
|
+
* @return {string}
|
|
16549
|
+
*/
|
|
16550
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getLanguage = function() {
|
|
16551
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
16552
|
+
};
|
|
16553
|
+
|
|
16554
|
+
|
|
16555
|
+
/**
|
|
16556
|
+
* @param {string} value
|
|
16557
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
16558
|
+
*/
|
|
16559
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setLanguage = function(value) {
|
|
16560
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
16561
|
+
};
|
|
16562
|
+
|
|
16563
|
+
|
|
16238
16564
|
/**
|
|
16239
16565
|
* optional string parent = 1;
|
|
16240
16566
|
* @return {string}
|
package/package.json
CHANGED