@ondewo/nlu-client-typescript 3.2.0 → 3.4.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.
@@ -1555,6 +1555,11 @@ export namespace FullTextSearchResponseIntent {
1555
1555
  getDomainName(): string;
1556
1556
  setDomainName(value: string): IntentSearchResult;
1557
1557
 
1558
+ getTagsList(): Array<string>;
1559
+ setTagsList(value: Array<string>): IntentSearchResult;
1560
+ clearTagsList(): IntentSearchResult;
1561
+ addTags(value: string, index?: number): IntentSearchResult;
1562
+
1558
1563
  getLanguage(): string;
1559
1564
  setLanguage(value: string): IntentSearchResult;
1560
1565
 
@@ -1571,6 +1576,7 @@ export namespace FullTextSearchResponseIntent {
1571
1576
  name: string,
1572
1577
  displayName: string,
1573
1578
  domainName: string,
1579
+ tagsList: Array<string>,
1574
1580
  language: string,
1575
1581
  }
1576
1582
  }
@@ -1630,6 +1636,11 @@ export namespace FullTextSearchResponseIntentContextIn {
1630
1636
  getIntentDisplayName(): string;
1631
1637
  setIntentDisplayName(value: string): IntentContextInSearchResult;
1632
1638
 
1639
+ getTagsList(): Array<string>;
1640
+ setTagsList(value: Array<string>): IntentContextInSearchResult;
1641
+ clearTagsList(): IntentContextInSearchResult;
1642
+ addTags(value: string, index?: number): IntentContextInSearchResult;
1643
+
1633
1644
  getLanguage(): string;
1634
1645
  setLanguage(value: string): IntentContextInSearchResult;
1635
1646
 
@@ -1646,6 +1657,7 @@ export namespace FullTextSearchResponseIntentContextIn {
1646
1657
  name: string,
1647
1658
  intentName: string,
1648
1659
  intentDisplayName: string,
1660
+ tagsList: Array<string>,
1649
1661
  language: string,
1650
1662
  }
1651
1663
  }
@@ -1705,6 +1717,11 @@ export namespace FullTextSearchResponseIntentContextOut {
1705
1717
  getIntentDisplayName(): string;
1706
1718
  setIntentDisplayName(value: string): IntentContextOutSearchResult;
1707
1719
 
1720
+ getTagsList(): Array<string>;
1721
+ setTagsList(value: Array<string>): IntentContextOutSearchResult;
1722
+ clearTagsList(): IntentContextOutSearchResult;
1723
+ addTags(value: string, index?: number): IntentContextOutSearchResult;
1724
+
1708
1725
  getLanguage(): string;
1709
1726
  setLanguage(value: string): IntentContextOutSearchResult;
1710
1727
 
@@ -1721,6 +1738,7 @@ export namespace FullTextSearchResponseIntentContextOut {
1721
1738
  name: string,
1722
1739
  intentName: string,
1723
1740
  intentDisplayName: string,
1741
+ tagsList: Array<string>,
1724
1742
  language: string,
1725
1743
  }
1726
1744
  }
@@ -1792,6 +1810,11 @@ export namespace FullTextSearchResponseIntentUsersays {
1792
1810
  getIntentDisplayName(): string;
1793
1811
  setIntentDisplayName(value: string): IntentUsersaysSearchResult;
1794
1812
 
1813
+ getTagsList(): Array<string>;
1814
+ setTagsList(value: Array<string>): IntentUsersaysSearchResult;
1815
+ clearTagsList(): IntentUsersaysSearchResult;
1816
+ addTags(value: string, index?: number): IntentUsersaysSearchResult;
1817
+
1795
1818
  getLanguage(): string;
1796
1819
  setLanguage(value: string): IntentUsersaysSearchResult;
1797
1820
 
@@ -1812,6 +1835,7 @@ export namespace FullTextSearchResponseIntentUsersays {
1812
1835
  type: string,
1813
1836
  intentName: string,
1814
1837
  intentDisplayName: string,
1838
+ tagsList: Array<string>,
1815
1839
  language: string,
1816
1840
  }
1817
1841
  }
@@ -1874,6 +1898,11 @@ export namespace FullTextSearchResponseIntentTags {
1874
1898
  getIntentDisplayName(): string;
1875
1899
  setIntentDisplayName(value: string): IntentTagsSearchResult;
1876
1900
 
1901
+ getTagsList(): Array<string>;
1902
+ setTagsList(value: Array<string>): IntentTagsSearchResult;
1903
+ clearTagsList(): IntentTagsSearchResult;
1904
+ addTags(value: string, index?: number): IntentTagsSearchResult;
1905
+
1877
1906
  getLanguage(): string;
1878
1907
  setLanguage(value: string): IntentTagsSearchResult;
1879
1908
 
@@ -1891,6 +1920,7 @@ export namespace FullTextSearchResponseIntentTags {
1891
1920
  text: string,
1892
1921
  intentName: string,
1893
1922
  intentDisplayName: string,
1923
+ tagsList: Array<string>,
1894
1924
  language: string,
1895
1925
  }
1896
1926
  }
@@ -1956,6 +1986,11 @@ export namespace FullTextSearchResponseIntentResponse {
1956
1986
  getIntentDisplayName(): string;
1957
1987
  setIntentDisplayName(value: string): IntentResponseSearchResult;
1958
1988
 
1989
+ getTagsList(): Array<string>;
1990
+ setTagsList(value: Array<string>): IntentResponseSearchResult;
1991
+ clearTagsList(): IntentResponseSearchResult;
1992
+ addTags(value: string, index?: number): IntentResponseSearchResult;
1993
+
1959
1994
  getLanguage(): string;
1960
1995
  setLanguage(value: string): IntentResponseSearchResult;
1961
1996
 
@@ -1974,6 +2009,7 @@ export namespace FullTextSearchResponseIntentResponse {
1974
2009
  responseType: string,
1975
2010
  intentName: string,
1976
2011
  intentDisplayName: string,
2012
+ tagsList: Array<string>,
1977
2013
  language: string,
1978
2014
  }
1979
2015
  }
@@ -2036,6 +2072,11 @@ export namespace FullTextSearchResponseIntentParameters {
2036
2072
  getIntentDisplayName(): string;
2037
2073
  setIntentDisplayName(value: string): IntentParametersSearchResult;
2038
2074
 
2075
+ getTagsList(): Array<string>;
2076
+ setTagsList(value: Array<string>): IntentParametersSearchResult;
2077
+ clearTagsList(): IntentParametersSearchResult;
2078
+ addTags(value: string, index?: number): IntentParametersSearchResult;
2079
+
2039
2080
  getLanguage(): string;
2040
2081
  setLanguage(value: string): IntentParametersSearchResult;
2041
2082
 
@@ -2053,6 +2094,7 @@ export namespace FullTextSearchResponseIntentParameters {
2053
2094
  parameterDisplayName: string,
2054
2095
  intentName: string,
2055
2096
  intentDisplayName: string,
2097
+ tagsList: Array<string>,
2056
2098
  language: string,
2057
2099
  }
2058
2100
  }
@@ -1195,7 +1195,7 @@ if (goog.DEBUG && !COMPILED) {
1195
1195
  * @constructor
1196
1196
  */
1197
1197
  proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult = function(opt_data) {
1198
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
1198
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.repeatedFields_, null);
1199
1199
  };
1200
1200
  goog.inherits(proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult, jspb.Message);
1201
1201
  if (goog.DEBUG && !COMPILED) {
@@ -1237,7 +1237,7 @@ if (goog.DEBUG && !COMPILED) {
1237
1237
  * @constructor
1238
1238
  */
1239
1239
  proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult = function(opt_data) {
1240
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
1240
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.repeatedFields_, null);
1241
1241
  };
1242
1242
  goog.inherits(proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult, jspb.Message);
1243
1243
  if (goog.DEBUG && !COMPILED) {
@@ -1279,7 +1279,7 @@ if (goog.DEBUG && !COMPILED) {
1279
1279
  * @constructor
1280
1280
  */
1281
1281
  proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult = function(opt_data) {
1282
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
1282
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.repeatedFields_, null);
1283
1283
  };
1284
1284
  goog.inherits(proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult, jspb.Message);
1285
1285
  if (goog.DEBUG && !COMPILED) {
@@ -1321,7 +1321,7 @@ if (goog.DEBUG && !COMPILED) {
1321
1321
  * @constructor
1322
1322
  */
1323
1323
  proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult = function(opt_data) {
1324
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
1324
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.repeatedFields_, null);
1325
1325
  };
1326
1326
  goog.inherits(proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult, jspb.Message);
1327
1327
  if (goog.DEBUG && !COMPILED) {
@@ -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, null, null);
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) {
@@ -1405,7 +1405,7 @@ if (goog.DEBUG && !COMPILED) {
1405
1405
  * @constructor
1406
1406
  */
1407
1407
  proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult = function(opt_data) {
1408
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
1408
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.repeatedFields_, null);
1409
1409
  };
1410
1410
  goog.inherits(proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult, jspb.Message);
1411
1411
  if (goog.DEBUG && !COMPILED) {
@@ -1447,7 +1447,7 @@ if (goog.DEBUG && !COMPILED) {
1447
1447
  * @constructor
1448
1448
  */
1449
1449
  proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult = function(opt_data) {
1450
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
1450
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.repeatedFields_, null);
1451
1451
  };
1452
1452
  goog.inherits(proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult, jspb.Message);
1453
1453
  if (goog.DEBUG && !COMPILED) {
@@ -12686,6 +12686,13 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.serializeBinaryToWriter = function
12686
12686
 
12687
12687
 
12688
12688
 
12689
+ /**
12690
+ * List of repeated fields within this message type.
12691
+ * @private {!Array<number>}
12692
+ * @const
12693
+ */
12694
+ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.repeatedFields_ = [4];
12695
+
12689
12696
 
12690
12697
 
12691
12698
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -12720,7 +12727,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.toObject = func
12720
12727
  name: jspb.Message.getFieldWithDefault(msg, 1, ""),
12721
12728
  displayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
12722
12729
  domainName: jspb.Message.getFieldWithDefault(msg, 3, ""),
12723
- language: jspb.Message.getFieldWithDefault(msg, 4, "")
12730
+ tagsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
12731
+ language: jspb.Message.getFieldWithDefault(msg, 5, "")
12724
12732
  };
12725
12733
 
12726
12734
  if (includeInstance) {
@@ -12770,6 +12778,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.deserializeBina
12770
12778
  msg.setDomainName(value);
12771
12779
  break;
12772
12780
  case 4:
12781
+ var value = /** @type {string} */ (reader.readString());
12782
+ msg.addTags(value);
12783
+ break;
12784
+ case 5:
12773
12785
  var value = /** @type {string} */ (reader.readString());
12774
12786
  msg.setLanguage(value);
12775
12787
  break;
@@ -12823,10 +12835,17 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.serializeBinary
12823
12835
  f
12824
12836
  );
12825
12837
  }
12838
+ f = message.getTagsList();
12839
+ if (f.length > 0) {
12840
+ writer.writeRepeatedString(
12841
+ 4,
12842
+ f
12843
+ );
12844
+ }
12826
12845
  f = message.getLanguage();
12827
12846
  if (f.length > 0) {
12828
12847
  writer.writeString(
12829
- 4,
12848
+ 5,
12830
12849
  f
12831
12850
  );
12832
12851
  }
@@ -12888,11 +12907,48 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setDo
12888
12907
 
12889
12908
 
12890
12909
  /**
12891
- * optional string language = 4;
12910
+ * repeated string tags = 4;
12911
+ * @return {!Array<string>}
12912
+ */
12913
+ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getTagsList = function() {
12914
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 4));
12915
+ };
12916
+
12917
+
12918
+ /**
12919
+ * @param {!Array<string>} value
12920
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
12921
+ */
12922
+ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setTagsList = function(value) {
12923
+ return jspb.Message.setField(this, 4, value || []);
12924
+ };
12925
+
12926
+
12927
+ /**
12928
+ * @param {string} value
12929
+ * @param {number=} opt_index
12930
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
12931
+ */
12932
+ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.addTags = function(value, opt_index) {
12933
+ return jspb.Message.addToRepeatedField(this, 4, value, opt_index);
12934
+ };
12935
+
12936
+
12937
+ /**
12938
+ * Clears the list making it empty but non-null.
12939
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
12940
+ */
12941
+ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.clearTagsList = function() {
12942
+ return this.setTagsList([]);
12943
+ };
12944
+
12945
+
12946
+ /**
12947
+ * optional string language = 5;
12892
12948
  * @return {string}
12893
12949
  */
12894
12950
  proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getLanguage = function() {
12895
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
12951
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
12896
12952
  };
12897
12953
 
12898
12954
 
@@ -12901,7 +12957,7 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getLa
12901
12957
  * @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
12902
12958
  */
12903
12959
  proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setLanguage = function(value) {
12904
- return jspb.Message.setProto3StringField(this, 4, value);
12960
+ return jspb.Message.setProto3StringField(this, 5, value);
12905
12961
  };
12906
12962
 
12907
12963
 
@@ -13246,6 +13302,13 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.serializeBinaryToWriter =
13246
13302
 
13247
13303
 
13248
13304
 
13305
+ /**
13306
+ * List of repeated fields within this message type.
13307
+ * @private {!Array<number>}
13308
+ * @const
13309
+ */
13310
+ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.repeatedFields_ = [4];
13311
+
13249
13312
 
13250
13313
 
13251
13314
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -13280,7 +13343,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
13280
13343
  name: jspb.Message.getFieldWithDefault(msg, 1, ""),
13281
13344
  intentName: jspb.Message.getFieldWithDefault(msg, 2, ""),
13282
13345
  intentDisplayName: jspb.Message.getFieldWithDefault(msg, 3, ""),
13283
- language: jspb.Message.getFieldWithDefault(msg, 4, "")
13346
+ tagsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
13347
+ language: jspb.Message.getFieldWithDefault(msg, 5, "")
13284
13348
  };
13285
13349
 
13286
13350
  if (includeInstance) {
@@ -13330,6 +13394,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
13330
13394
  msg.setIntentDisplayName(value);
13331
13395
  break;
13332
13396
  case 4:
13397
+ var value = /** @type {string} */ (reader.readString());
13398
+ msg.addTags(value);
13399
+ break;
13400
+ case 5:
13333
13401
  var value = /** @type {string} */ (reader.readString());
13334
13402
  msg.setLanguage(value);
13335
13403
  break;
@@ -13383,10 +13451,17 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
13383
13451
  f
13384
13452
  );
13385
13453
  }
13454
+ f = message.getTagsList();
13455
+ if (f.length > 0) {
13456
+ writer.writeRepeatedString(
13457
+ 4,
13458
+ f
13459
+ );
13460
+ }
13386
13461
  f = message.getLanguage();
13387
13462
  if (f.length > 0) {
13388
13463
  writer.writeString(
13389
- 4,
13464
+ 5,
13390
13465
  f
13391
13466
  );
13392
13467
  }
@@ -13448,11 +13523,48 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
13448
13523
 
13449
13524
 
13450
13525
  /**
13451
- * optional string language = 4;
13526
+ * repeated string tags = 4;
13527
+ * @return {!Array<string>}
13528
+ */
13529
+ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getTagsList = function() {
13530
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 4));
13531
+ };
13532
+
13533
+
13534
+ /**
13535
+ * @param {!Array<string>} value
13536
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
13537
+ */
13538
+ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setTagsList = function(value) {
13539
+ return jspb.Message.setField(this, 4, value || []);
13540
+ };
13541
+
13542
+
13543
+ /**
13544
+ * @param {string} value
13545
+ * @param {number=} opt_index
13546
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
13547
+ */
13548
+ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.addTags = function(value, opt_index) {
13549
+ return jspb.Message.addToRepeatedField(this, 4, value, opt_index);
13550
+ };
13551
+
13552
+
13553
+ /**
13554
+ * Clears the list making it empty but non-null.
13555
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
13556
+ */
13557
+ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.clearTagsList = function() {
13558
+ return this.setTagsList([]);
13559
+ };
13560
+
13561
+
13562
+ /**
13563
+ * optional string language = 5;
13452
13564
  * @return {string}
13453
13565
  */
13454
13566
  proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getLanguage = function() {
13455
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
13567
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
13456
13568
  };
13457
13569
 
13458
13570
 
@@ -13461,7 +13573,7 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
13461
13573
  * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
13462
13574
  */
13463
13575
  proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setLanguage = function(value) {
13464
- return jspb.Message.setProto3StringField(this, 4, value);
13576
+ return jspb.Message.setProto3StringField(this, 5, value);
13465
13577
  };
13466
13578
 
13467
13579
 
@@ -13806,6 +13918,13 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.serializeBinaryToWriter
13806
13918
 
13807
13919
 
13808
13920
 
13921
+ /**
13922
+ * List of repeated fields within this message type.
13923
+ * @private {!Array<number>}
13924
+ * @const
13925
+ */
13926
+ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.repeatedFields_ = [4];
13927
+
13809
13928
 
13810
13929
 
13811
13930
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -13840,7 +13959,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
13840
13959
  name: jspb.Message.getFieldWithDefault(msg, 1, ""),
13841
13960
  intentName: jspb.Message.getFieldWithDefault(msg, 2, ""),
13842
13961
  intentDisplayName: jspb.Message.getFieldWithDefault(msg, 3, ""),
13843
- language: jspb.Message.getFieldWithDefault(msg, 4, "")
13962
+ tagsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
13963
+ language: jspb.Message.getFieldWithDefault(msg, 5, "")
13844
13964
  };
13845
13965
 
13846
13966
  if (includeInstance) {
@@ -13890,6 +14010,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
13890
14010
  msg.setIntentDisplayName(value);
13891
14011
  break;
13892
14012
  case 4:
14013
+ var value = /** @type {string} */ (reader.readString());
14014
+ msg.addTags(value);
14015
+ break;
14016
+ case 5:
13893
14017
  var value = /** @type {string} */ (reader.readString());
13894
14018
  msg.setLanguage(value);
13895
14019
  break;
@@ -13943,10 +14067,17 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
13943
14067
  f
13944
14068
  );
13945
14069
  }
14070
+ f = message.getTagsList();
14071
+ if (f.length > 0) {
14072
+ writer.writeRepeatedString(
14073
+ 4,
14074
+ f
14075
+ );
14076
+ }
13946
14077
  f = message.getLanguage();
13947
14078
  if (f.length > 0) {
13948
14079
  writer.writeString(
13949
- 4,
14080
+ 5,
13950
14081
  f
13951
14082
  );
13952
14083
  }
@@ -14008,11 +14139,48 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
14008
14139
 
14009
14140
 
14010
14141
  /**
14011
- * optional string language = 4;
14142
+ * repeated string tags = 4;
14143
+ * @return {!Array<string>}
14144
+ */
14145
+ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getTagsList = function() {
14146
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 4));
14147
+ };
14148
+
14149
+
14150
+ /**
14151
+ * @param {!Array<string>} value
14152
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
14153
+ */
14154
+ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setTagsList = function(value) {
14155
+ return jspb.Message.setField(this, 4, value || []);
14156
+ };
14157
+
14158
+
14159
+ /**
14160
+ * @param {string} value
14161
+ * @param {number=} opt_index
14162
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
14163
+ */
14164
+ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.addTags = function(value, opt_index) {
14165
+ return jspb.Message.addToRepeatedField(this, 4, value, opt_index);
14166
+ };
14167
+
14168
+
14169
+ /**
14170
+ * Clears the list making it empty but non-null.
14171
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
14172
+ */
14173
+ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.clearTagsList = function() {
14174
+ return this.setTagsList([]);
14175
+ };
14176
+
14177
+
14178
+ /**
14179
+ * optional string language = 5;
14012
14180
  * @return {string}
14013
14181
  */
14014
14182
  proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getLanguage = function() {
14015
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
14183
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
14016
14184
  };
14017
14185
 
14018
14186
 
@@ -14021,7 +14189,7 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
14021
14189
  * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
14022
14190
  */
14023
14191
  proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setLanguage = function(value) {
14024
- return jspb.Message.setProto3StringField(this, 4, value);
14192
+ return jspb.Message.setProto3StringField(this, 5, value);
14025
14193
  };
14026
14194
 
14027
14195
 
@@ -14366,6 +14534,13 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.serializeBinaryToWriter =
14366
14534
 
14367
14535
 
14368
14536
 
14537
+ /**
14538
+ * List of repeated fields within this message type.
14539
+ * @private {!Array<number>}
14540
+ * @const
14541
+ */
14542
+ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.repeatedFields_ = [8];
14543
+
14369
14544
 
14370
14545
 
14371
14546
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -14404,7 +14579,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
14404
14579
  type: jspb.Message.getFieldWithDefault(msg, 5, ""),
14405
14580
  intentName: jspb.Message.getFieldWithDefault(msg, 6, ""),
14406
14581
  intentDisplayName: jspb.Message.getFieldWithDefault(msg, 7, ""),
14407
- language: jspb.Message.getFieldWithDefault(msg, 8, "")
14582
+ tagsList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
14583
+ language: jspb.Message.getFieldWithDefault(msg, 9, "")
14408
14584
  };
14409
14585
 
14410
14586
  if (includeInstance) {
@@ -14470,6 +14646,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
14470
14646
  msg.setIntentDisplayName(value);
14471
14647
  break;
14472
14648
  case 8:
14649
+ var value = /** @type {string} */ (reader.readString());
14650
+ msg.addTags(value);
14651
+ break;
14652
+ case 9:
14473
14653
  var value = /** @type {string} */ (reader.readString());
14474
14654
  msg.setLanguage(value);
14475
14655
  break;
@@ -14551,10 +14731,17 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
14551
14731
  f
14552
14732
  );
14553
14733
  }
14734
+ f = message.getTagsList();
14735
+ if (f.length > 0) {
14736
+ writer.writeRepeatedString(
14737
+ 8,
14738
+ f
14739
+ );
14740
+ }
14554
14741
  f = message.getLanguage();
14555
14742
  if (f.length > 0) {
14556
14743
  writer.writeString(
14557
- 8,
14744
+ 9,
14558
14745
  f
14559
14746
  );
14560
14747
  }
@@ -14688,11 +14875,48 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
14688
14875
 
14689
14876
 
14690
14877
  /**
14691
- * optional string language = 8;
14878
+ * repeated string tags = 8;
14879
+ * @return {!Array<string>}
14880
+ */
14881
+ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getTagsList = function() {
14882
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 8));
14883
+ };
14884
+
14885
+
14886
+ /**
14887
+ * @param {!Array<string>} value
14888
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
14889
+ */
14890
+ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setTagsList = function(value) {
14891
+ return jspb.Message.setField(this, 8, value || []);
14892
+ };
14893
+
14894
+
14895
+ /**
14896
+ * @param {string} value
14897
+ * @param {number=} opt_index
14898
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
14899
+ */
14900
+ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.addTags = function(value, opt_index) {
14901
+ return jspb.Message.addToRepeatedField(this, 8, value, opt_index);
14902
+ };
14903
+
14904
+
14905
+ /**
14906
+ * Clears the list making it empty but non-null.
14907
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
14908
+ */
14909
+ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.clearTagsList = function() {
14910
+ return this.setTagsList([]);
14911
+ };
14912
+
14913
+
14914
+ /**
14915
+ * optional string language = 9;
14692
14916
  * @return {string}
14693
14917
  */
14694
14918
  proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getLanguage = function() {
14695
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
14919
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
14696
14920
  };
14697
14921
 
14698
14922
 
@@ -14701,7 +14925,7 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
14701
14925
  * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
14702
14926
  */
14703
14927
  proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setLanguage = function(value) {
14704
- return jspb.Message.setProto3StringField(this, 8, value);
14928
+ return jspb.Message.setProto3StringField(this, 9, value);
14705
14929
  };
14706
14930
 
14707
14931
 
@@ -15046,6 +15270,13 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.serializeBinaryToWriter = func
15046
15270
 
15047
15271
 
15048
15272
 
15273
+ /**
15274
+ * List of repeated fields within this message type.
15275
+ * @private {!Array<number>}
15276
+ * @const
15277
+ */
15278
+ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.repeatedFields_ = [5];
15279
+
15049
15280
 
15050
15281
 
15051
15282
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -15081,7 +15312,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.toObjec
15081
15312
  text: jspb.Message.getFieldWithDefault(msg, 2, ""),
15082
15313
  intentName: jspb.Message.getFieldWithDefault(msg, 3, ""),
15083
15314
  intentDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
15084
- language: jspb.Message.getFieldWithDefault(msg, 5, "")
15315
+ tagsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
15316
+ language: jspb.Message.getFieldWithDefault(msg, 6, "")
15085
15317
  };
15086
15318
 
15087
15319
  if (includeInstance) {
@@ -15135,6 +15367,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.deseria
15135
15367
  msg.setIntentDisplayName(value);
15136
15368
  break;
15137
15369
  case 5:
15370
+ var value = /** @type {string} */ (reader.readString());
15371
+ msg.addTags(value);
15372
+ break;
15373
+ case 6:
15138
15374
  var value = /** @type {string} */ (reader.readString());
15139
15375
  msg.setLanguage(value);
15140
15376
  break;
@@ -15195,10 +15431,17 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.seriali
15195
15431
  f
15196
15432
  );
15197
15433
  }
15434
+ f = message.getTagsList();
15435
+ if (f.length > 0) {
15436
+ writer.writeRepeatedString(
15437
+ 5,
15438
+ f
15439
+ );
15440
+ }
15198
15441
  f = message.getLanguage();
15199
15442
  if (f.length > 0) {
15200
15443
  writer.writeString(
15201
- 5,
15444
+ 6,
15202
15445
  f
15203
15446
  );
15204
15447
  }
@@ -15278,11 +15521,48 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototy
15278
15521
 
15279
15522
 
15280
15523
  /**
15281
- * optional string language = 5;
15524
+ * repeated string tags = 5;
15525
+ * @return {!Array<string>}
15526
+ */
15527
+ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getTagsList = function() {
15528
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 5));
15529
+ };
15530
+
15531
+
15532
+ /**
15533
+ * @param {!Array<string>} value
15534
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
15535
+ */
15536
+ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setTagsList = function(value) {
15537
+ return jspb.Message.setField(this, 5, value || []);
15538
+ };
15539
+
15540
+
15541
+ /**
15542
+ * @param {string} value
15543
+ * @param {number=} opt_index
15544
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
15545
+ */
15546
+ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.addTags = function(value, opt_index) {
15547
+ return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
15548
+ };
15549
+
15550
+
15551
+ /**
15552
+ * Clears the list making it empty but non-null.
15553
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
15554
+ */
15555
+ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.clearTagsList = function() {
15556
+ return this.setTagsList([]);
15557
+ };
15558
+
15559
+
15560
+ /**
15561
+ * optional string language = 6;
15282
15562
  * @return {string}
15283
15563
  */
15284
15564
  proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getLanguage = function() {
15285
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
15565
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
15286
15566
  };
15287
15567
 
15288
15568
 
@@ -15291,7 +15571,7 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototy
15291
15571
  * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
15292
15572
  */
15293
15573
  proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setLanguage = function(value) {
15294
- return jspb.Message.setProto3StringField(this, 5, value);
15574
+ return jspb.Message.setProto3StringField(this, 6, value);
15295
15575
  };
15296
15576
 
15297
15577
 
@@ -15636,6 +15916,13 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.serializeBinaryToWriter =
15636
15916
 
15637
15917
 
15638
15918
 
15919
+ /**
15920
+ * List of repeated fields within this message type.
15921
+ * @private {!Array<number>}
15922
+ * @const
15923
+ */
15924
+ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.repeatedFields_ = [6];
15925
+
15639
15926
 
15640
15927
 
15641
15928
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -15672,7 +15959,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
15672
15959
  responseType: jspb.Message.getFieldWithDefault(msg, 3, ""),
15673
15960
  intentName: jspb.Message.getFieldWithDefault(msg, 4, ""),
15674
15961
  intentDisplayName: jspb.Message.getFieldWithDefault(msg, 5, ""),
15675
- language: jspb.Message.getFieldWithDefault(msg, 6, "")
15962
+ tagsList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
15963
+ language: jspb.Message.getFieldWithDefault(msg, 7, "")
15676
15964
  };
15677
15965
 
15678
15966
  if (includeInstance) {
@@ -15730,6 +16018,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
15730
16018
  msg.setIntentDisplayName(value);
15731
16019
  break;
15732
16020
  case 6:
16021
+ var value = /** @type {string} */ (reader.readString());
16022
+ msg.addTags(value);
16023
+ break;
16024
+ case 7:
15733
16025
  var value = /** @type {string} */ (reader.readString());
15734
16026
  msg.setLanguage(value);
15735
16027
  break;
@@ -15797,10 +16089,17 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
15797
16089
  f
15798
16090
  );
15799
16091
  }
16092
+ f = message.getTagsList();
16093
+ if (f.length > 0) {
16094
+ writer.writeRepeatedString(
16095
+ 6,
16096
+ f
16097
+ );
16098
+ }
15800
16099
  f = message.getLanguage();
15801
16100
  if (f.length > 0) {
15802
16101
  writer.writeString(
15803
- 6,
16102
+ 7,
15804
16103
  f
15805
16104
  );
15806
16105
  }
@@ -15898,11 +16197,48 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
15898
16197
 
15899
16198
 
15900
16199
  /**
15901
- * optional string language = 6;
16200
+ * repeated string tags = 6;
16201
+ * @return {!Array<string>}
16202
+ */
16203
+ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getTagsList = function() {
16204
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
16205
+ };
16206
+
16207
+
16208
+ /**
16209
+ * @param {!Array<string>} value
16210
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
16211
+ */
16212
+ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setTagsList = function(value) {
16213
+ return jspb.Message.setField(this, 6, value || []);
16214
+ };
16215
+
16216
+
16217
+ /**
16218
+ * @param {string} value
16219
+ * @param {number=} opt_index
16220
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
16221
+ */
16222
+ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.addTags = function(value, opt_index) {
16223
+ return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
16224
+ };
16225
+
16226
+
16227
+ /**
16228
+ * Clears the list making it empty but non-null.
16229
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
16230
+ */
16231
+ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.clearTagsList = function() {
16232
+ return this.setTagsList([]);
16233
+ };
16234
+
16235
+
16236
+ /**
16237
+ * optional string language = 7;
15902
16238
  * @return {string}
15903
16239
  */
15904
16240
  proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getLanguage = function() {
15905
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
16241
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
15906
16242
  };
15907
16243
 
15908
16244
 
@@ -15911,7 +16247,7 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
15911
16247
  * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
15912
16248
  */
15913
16249
  proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setLanguage = function(value) {
15914
- return jspb.Message.setProto3StringField(this, 6, value);
16250
+ return jspb.Message.setProto3StringField(this, 7, value);
15915
16251
  };
15916
16252
 
15917
16253
 
@@ -16256,6 +16592,13 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.serializeBinaryToWriter
16256
16592
 
16257
16593
 
16258
16594
 
16595
+ /**
16596
+ * List of repeated fields within this message type.
16597
+ * @private {!Array<number>}
16598
+ * @const
16599
+ */
16600
+ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.repeatedFields_ = [5];
16601
+
16259
16602
 
16260
16603
 
16261
16604
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -16291,7 +16634,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
16291
16634
  parameterDisplayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
16292
16635
  intentName: jspb.Message.getFieldWithDefault(msg, 3, ""),
16293
16636
  intentDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
16294
- language: jspb.Message.getFieldWithDefault(msg, 5, "")
16637
+ tagsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
16638
+ language: jspb.Message.getFieldWithDefault(msg, 6, "")
16295
16639
  };
16296
16640
 
16297
16641
  if (includeInstance) {
@@ -16345,6 +16689,10 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
16345
16689
  msg.setIntentDisplayName(value);
16346
16690
  break;
16347
16691
  case 5:
16692
+ var value = /** @type {string} */ (reader.readString());
16693
+ msg.addTags(value);
16694
+ break;
16695
+ case 6:
16348
16696
  var value = /** @type {string} */ (reader.readString());
16349
16697
  msg.setLanguage(value);
16350
16698
  break;
@@ -16405,10 +16753,17 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
16405
16753
  f
16406
16754
  );
16407
16755
  }
16756
+ f = message.getTagsList();
16757
+ if (f.length > 0) {
16758
+ writer.writeRepeatedString(
16759
+ 5,
16760
+ f
16761
+ );
16762
+ }
16408
16763
  f = message.getLanguage();
16409
16764
  if (f.length > 0) {
16410
16765
  writer.writeString(
16411
- 5,
16766
+ 6,
16412
16767
  f
16413
16768
  );
16414
16769
  }
@@ -16488,11 +16843,48 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
16488
16843
 
16489
16844
 
16490
16845
  /**
16491
- * optional string language = 5;
16846
+ * repeated string tags = 5;
16847
+ * @return {!Array<string>}
16848
+ */
16849
+ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getTagsList = function() {
16850
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 5));
16851
+ };
16852
+
16853
+
16854
+ /**
16855
+ * @param {!Array<string>} value
16856
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
16857
+ */
16858
+ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setTagsList = function(value) {
16859
+ return jspb.Message.setField(this, 5, value || []);
16860
+ };
16861
+
16862
+
16863
+ /**
16864
+ * @param {string} value
16865
+ * @param {number=} opt_index
16866
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
16867
+ */
16868
+ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.addTags = function(value, opt_index) {
16869
+ return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
16870
+ };
16871
+
16872
+
16873
+ /**
16874
+ * Clears the list making it empty but non-null.
16875
+ * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
16876
+ */
16877
+ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.clearTagsList = function() {
16878
+ return this.setTagsList([]);
16879
+ };
16880
+
16881
+
16882
+ /**
16883
+ * optional string language = 6;
16492
16884
  * @return {string}
16493
16885
  */
16494
16886
  proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getLanguage = function() {
16495
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
16887
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
16496
16888
  };
16497
16889
 
16498
16890
 
@@ -16501,7 +16893,7 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
16501
16893
  * @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
16502
16894
  */
16503
16895
  proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setLanguage = function(value) {
16504
- return jspb.Message.setProto3StringField(this, 5, value);
16896
+ return jspb.Message.setProto3StringField(this, 6, value);
16505
16897
  };
16506
16898
 
16507
16899
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ondewo/nlu-client-typescript",
3
- "version": "3.2.0",
3
+ "version": "3.4.0",
4
4
  "description": "Ondewo Natural Language Understanding (NLU) Client library for typescript as a commonjs module",
5
5
  "main": "public-api.js",
6
6
  "typings": "public-api.d.ts",
package/public-api.d.ts CHANGED
@@ -1,38 +1,38 @@
1
- export * from './api/google/rpc/status_pb.d';
2
1
  export * from './api/google/api/annotations_pb.d';
3
- export * from './api/google/type/latlng_pb.d';
4
- export * from './api/google/protobuf/timestamp_pb.d';
5
- export * from './api/google/protobuf/empty_pb.d';
2
+ export * from './api/google/protobuf/any_pb.d';
6
3
  export * from './api/google/protobuf/field_mask_pb.d';
4
+ export * from './api/google/protobuf/timestamp_pb.d';
7
5
  export * from './api/google/protobuf/struct_pb.d';
8
- export * from './api/google/protobuf/any_pb.d';
9
- export * from './api/ondewo/nlu/agent_pb.d';
6
+ export * from './api/google/protobuf/empty_pb.d';
7
+ export * from './api/google/rpc/status_pb.d';
8
+ export * from './api/google/type/latlng_pb.d';
9
+ export * from './api/ondewo/nlu/operation_metadata_pb.d';
10
10
  export * from './api/ondewo/nlu/webhook_grpc_web_pb.d';
11
- export * from './api/ondewo/nlu/utility_pb.d';
12
- export * from './api/ondewo/nlu/intent_grpc_web_pb.d';
13
- export * from './api/ondewo/nlu/utility_grpc_web_pb.d';
14
- export * from './api/ondewo/nlu/operations_pb.d';
15
- export * from './api/ondewo/nlu/intent_pb.d';
16
- export * from './api/ondewo/nlu/entity_type_grpc_web_pb.d';
17
- export * from './api/ondewo/nlu/webhook_pb.d';
18
- export * from './api/ondewo/nlu/session_grpc_web_pb.d';
11
+ export * from './api/ondewo/nlu/common_pb.d';
19
12
  export * from './api/ondewo/nlu/user_grpc_web_pb.d';
20
- export * from './api/ondewo/nlu/project_role_pb.d';
21
- export * from './api/ondewo/nlu/server_statistics_grpc_web_pb.d';
22
- export * from './api/ondewo/nlu/operation_metadata_pb.d';
23
- export * from './api/ondewo/nlu/user_pb.d';
24
- export * from './api/ondewo/nlu/session_pb.d';
13
+ export * from './api/ondewo/nlu/server_statistics_pb.d';
14
+ export * from './api/ondewo/nlu/operations_pb.d';
25
15
  export * from './api/ondewo/nlu/operations_grpc_web_pb.d';
26
- export * from './api/ondewo/nlu/common_pb.d';
27
- export * from './api/ondewo/nlu/project_statistics_grpc_web_pb.d';
16
+ export * from './api/ondewo/nlu/server_statistics_grpc_web_pb.d';
28
17
  export * from './api/ondewo/nlu/context_grpc_web_pb.d';
29
- export * from './api/ondewo/nlu/server_statistics_pb.d';
30
- export * from './api/ondewo/nlu/aiservices_pb.d';
31
- export * from './api/ondewo/nlu/context_pb.d';
32
18
  export * from './api/ondewo/nlu/entity_type_pb.d';
33
- export * from './api/ondewo/nlu/agent_grpc_web_pb.d';
34
- export * from './api/ondewo/nlu/aiservices_grpc_web_pb.d';
19
+ export * from './api/ondewo/nlu/user_pb.d';
20
+ export * from './api/ondewo/nlu/intent_pb.d';
35
21
  export * from './api/ondewo/nlu/project_statistics_pb.d';
22
+ export * from './api/ondewo/nlu/aiservices_grpc_web_pb.d';
23
+ export * from './api/ondewo/nlu/project_statistics_grpc_web_pb.d';
24
+ export * from './api/ondewo/nlu/utility_pb.d';
25
+ export * from './api/ondewo/nlu/utility_grpc_web_pb.d';
26
+ export * from './api/ondewo/nlu/session_pb.d';
27
+ export * from './api/ondewo/nlu/context_pb.d';
28
+ export * from './api/ondewo/nlu/project_role_pb.d';
29
+ export * from './api/ondewo/nlu/session_grpc_web_pb.d';
36
30
  export * from './api/ondewo/nlu/project_role_grpc_web_pb.d';
31
+ export * from './api/ondewo/nlu/entity_type_grpc_web_pb.d';
32
+ export * from './api/ondewo/nlu/agent_pb.d';
33
+ export * from './api/ondewo/nlu/webhook_pb.d';
34
+ export * from './api/ondewo/nlu/aiservices_pb.d';
35
+ export * from './api/ondewo/nlu/intent_grpc_web_pb.d';
36
+ export * from './api/ondewo/nlu/agent_grpc_web_pb.d';
37
37
  export * from './api/ondewo/qa/qa_grpc_web_pb.d';
38
38
  export * from './api/ondewo/qa/qa_pb.d';