@ondewo/nlu-client-typescript 4.7.0 → 4.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/api/ondewo/nlu/agent_grpc_web_pb.d.ts +61 -0
  2. package/api/ondewo/nlu/agent_grpc_web_pb.js +308 -1
  3. package/api/ondewo/nlu/agent_pb.d.ts +242 -1
  4. package/api/ondewo/nlu/agent_pb.js +1984 -38
  5. package/api/ondewo/nlu/ccai_project_grpc_web_pb.d.ts +79 -0
  6. package/api/ondewo/nlu/ccai_project_grpc_web_pb.js +388 -0
  7. package/api/ondewo/nlu/ccai_project_pb.d.ts +582 -0
  8. package/api/ondewo/nlu/ccai_project_pb.js +4137 -0
  9. package/api/ondewo/nlu/common_pb.d.ts +456 -0
  10. package/api/ondewo/nlu/common_pb.js +3523 -4
  11. package/api/ondewo/nlu/context_grpc_web_pb.js +2 -0
  12. package/api/ondewo/nlu/context_pb.d.ts +41 -0
  13. package/api/ondewo/nlu/context_pb.js +328 -2
  14. package/api/ondewo/nlu/entity_type_grpc_web_pb.js +2 -0
  15. package/api/ondewo/nlu/entity_type_pb.d.ts +41 -0
  16. package/api/ondewo/nlu/entity_type_pb.js +328 -2
  17. package/api/ondewo/nlu/intent_grpc_web_pb.d.ts +3 -3
  18. package/api/ondewo/nlu/intent_grpc_web_pb.js +6 -6
  19. package/api/ondewo/nlu/intent_pb.d.ts +120 -0
  20. package/api/ondewo/nlu/intent_pb.js +1058 -86
  21. package/api/ondewo/nlu/operation_metadata_pb.d.ts +21 -0
  22. package/api/ondewo/nlu/operation_metadata_pb.js +165 -2
  23. package/api/ondewo/nlu/project_role_grpc_web_pb.js +3 -1
  24. package/api/ondewo/nlu/project_role_pb.d.ts +22 -1
  25. package/api/ondewo/nlu/project_role_pb.js +167 -3
  26. package/api/ondewo/nlu/session_grpc_web_pb.d.ts +109 -0
  27. package/api/ondewo/nlu/session_grpc_web_pb.js +551 -0
  28. package/api/ondewo/nlu/session_pb.d.ts +624 -0
  29. package/api/ondewo/nlu/session_pb.js +10278 -5168
  30. package/api/ondewo/nlu/user_grpc_web_pb.d.ts +85 -0
  31. package/api/ondewo/nlu/user_grpc_web_pb.js +431 -0
  32. package/api/ondewo/nlu/user_pb.d.ts +284 -0
  33. package/api/ondewo/nlu/user_pb.js +3418 -1024
  34. package/api/ondewo/nlu/webhook_grpc_web_pb.d.ts +37 -0
  35. package/api/ondewo/nlu/webhook_grpc_web_pb.js +191 -2
  36. package/api/ondewo/nlu/webhook_pb.d.ts +188 -5
  37. package/api/ondewo/nlu/webhook_pb.js +1530 -34
  38. package/package.json +1 -1
  39. package/public-api.d.ts +27 -25
@@ -4,13 +4,14 @@ import * as google_api_annotations_pb from '../../google/api/annotations_pb';
4
4
  import * as google_protobuf_field_mask_pb from 'google-protobuf/google/protobuf/field_mask_pb';
5
5
  import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
6
6
  import * as google_protobuf_struct_pb from 'google-protobuf/google/protobuf/struct_pb';
7
+ import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
7
8
  import * as ondewo_nlu_common_pb from '../../ondewo/nlu/common_pb';
8
9
  import * as ondewo_nlu_intent_pb from '../../ondewo/nlu/intent_pb';
9
10
  import * as ondewo_nlu_user_pb from '../../ondewo/nlu/user_pb';
10
11
  import * as ondewo_nlu_project_role_pb from '../../ondewo/nlu/project_role_pb';
11
12
  import * as ondewo_nlu_operations_pb from '../../ondewo/nlu/operations_pb';
12
13
  import * as ondewo_nlu_session_pb from '../../ondewo/nlu/session_pb';
13
- import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
14
+ import * as ondewo_nlu_ccai_project_pb from '../../ondewo/nlu/ccai_project_pb';
14
15
 
15
16
 
16
17
  export class Agent extends jspb.Message {
@@ -48,6 +49,22 @@ export class Agent extends jspb.Message {
48
49
  getDescription(): string;
49
50
  setDescription(value: string): Agent;
50
51
 
52
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
53
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Agent;
54
+ hasCreatedAt(): boolean;
55
+ clearCreatedAt(): Agent;
56
+
57
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
58
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Agent;
59
+ hasModifiedAt(): boolean;
60
+ clearModifiedAt(): Agent;
61
+
62
+ getCreatedBy(): string;
63
+ setCreatedBy(value: string): Agent;
64
+
65
+ getModifiedBy(): string;
66
+ setModifiedBy(value: string): Agent;
67
+
51
68
  serializeBinary(): Uint8Array;
52
69
  toObject(includeInstance?: boolean): Agent.AsObject;
53
70
  static toObject(includeInstance: boolean, msg: Agent): Agent.AsObject;
@@ -68,6 +85,10 @@ export namespace Agent {
68
85
  ownerId: string,
69
86
  status: AgentStatus,
70
87
  description: string,
88
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
89
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
90
+ createdBy: string,
91
+ modifiedBy: string,
71
92
  }
72
93
  }
73
94
 
@@ -1255,6 +1276,22 @@ export class CustomPlatformInfo extends jspb.Message {
1255
1276
  getPosition(): number;
1256
1277
  setPosition(value: number): CustomPlatformInfo;
1257
1278
 
1279
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1280
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): CustomPlatformInfo;
1281
+ hasCreatedAt(): boolean;
1282
+ clearCreatedAt(): CustomPlatformInfo;
1283
+
1284
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1285
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): CustomPlatformInfo;
1286
+ hasModifiedAt(): boolean;
1287
+ clearModifiedAt(): CustomPlatformInfo;
1288
+
1289
+ getCreatedBy(): string;
1290
+ setCreatedBy(value: string): CustomPlatformInfo;
1291
+
1292
+ getModifiedBy(): string;
1293
+ setModifiedBy(value: string): CustomPlatformInfo;
1294
+
1258
1295
  serializeBinary(): Uint8Array;
1259
1296
  toObject(includeInstance?: boolean): CustomPlatformInfo.AsObject;
1260
1297
  static toObject(includeInstance: boolean, msg: CustomPlatformInfo): CustomPlatformInfo.AsObject;
@@ -1268,6 +1305,10 @@ export namespace CustomPlatformInfo {
1268
1305
  platform: ondewo_nlu_intent_pb.Intent.Message.Platform,
1269
1306
  displayName: string,
1270
1307
  position: number,
1308
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1309
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1310
+ createdBy: string,
1311
+ modifiedBy: string,
1271
1312
  }
1272
1313
  }
1273
1314
 
@@ -1410,6 +1451,22 @@ export namespace FullTextSearchResponseEntityType {
1410
1451
  getLanguage(): string;
1411
1452
  setLanguage(value: string): EntityTypeSearchResult;
1412
1453
 
1454
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1455
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntityTypeSearchResult;
1456
+ hasCreatedAt(): boolean;
1457
+ clearCreatedAt(): EntityTypeSearchResult;
1458
+
1459
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1460
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntityTypeSearchResult;
1461
+ hasModifiedAt(): boolean;
1462
+ clearModifiedAt(): EntityTypeSearchResult;
1463
+
1464
+ getCreatedBy(): string;
1465
+ setCreatedBy(value: string): EntityTypeSearchResult;
1466
+
1467
+ getModifiedBy(): string;
1468
+ setModifiedBy(value: string): EntityTypeSearchResult;
1469
+
1413
1470
  serializeBinary(): Uint8Array;
1414
1471
  toObject(includeInstance?: boolean): EntityTypeSearchResult.AsObject;
1415
1472
  static toObject(includeInstance: boolean, msg: EntityTypeSearchResult): EntityTypeSearchResult.AsObject;
@@ -1423,6 +1480,10 @@ export namespace FullTextSearchResponseEntityType {
1423
1480
  name: string,
1424
1481
  displayName: string,
1425
1482
  language: string,
1483
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1484
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1485
+ createdBy: string,
1486
+ modifiedBy: string,
1426
1487
  }
1427
1488
  }
1428
1489
 
@@ -1487,6 +1548,22 @@ export namespace FullTextSearchResponseEntity {
1487
1548
  getLanguage(): string;
1488
1549
  setLanguage(value: string): EntitySearchResult;
1489
1550
 
1551
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1552
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntitySearchResult;
1553
+ hasCreatedAt(): boolean;
1554
+ clearCreatedAt(): EntitySearchResult;
1555
+
1556
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1557
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntitySearchResult;
1558
+ hasModifiedAt(): boolean;
1559
+ clearModifiedAt(): EntitySearchResult;
1560
+
1561
+ getCreatedBy(): string;
1562
+ setCreatedBy(value: string): EntitySearchResult;
1563
+
1564
+ getModifiedBy(): string;
1565
+ setModifiedBy(value: string): EntitySearchResult;
1566
+
1490
1567
  serializeBinary(): Uint8Array;
1491
1568
  toObject(includeInstance?: boolean): EntitySearchResult.AsObject;
1492
1569
  static toObject(includeInstance: boolean, msg: EntitySearchResult): EntitySearchResult.AsObject;
@@ -1502,6 +1579,10 @@ export namespace FullTextSearchResponseEntity {
1502
1579
  entityTypeName: string,
1503
1580
  entityTypeDisplayName: string,
1504
1581
  language: string,
1582
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1583
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1584
+ createdBy: string,
1585
+ modifiedBy: string,
1505
1586
  }
1506
1587
  }
1507
1588
 
@@ -1572,6 +1653,22 @@ export namespace FullTextSearchResponseEntitySynonym {
1572
1653
  getLanguage(): string;
1573
1654
  setLanguage(value: string): EntitySynonymSearchResult;
1574
1655
 
1656
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1657
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntitySynonymSearchResult;
1658
+ hasCreatedAt(): boolean;
1659
+ clearCreatedAt(): EntitySynonymSearchResult;
1660
+
1661
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1662
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntitySynonymSearchResult;
1663
+ hasModifiedAt(): boolean;
1664
+ clearModifiedAt(): EntitySynonymSearchResult;
1665
+
1666
+ getCreatedBy(): string;
1667
+ setCreatedBy(value: string): EntitySynonymSearchResult;
1668
+
1669
+ getModifiedBy(): string;
1670
+ setModifiedBy(value: string): EntitySynonymSearchResult;
1671
+
1575
1672
  serializeBinary(): Uint8Array;
1576
1673
  toObject(includeInstance?: boolean): EntitySynonymSearchResult.AsObject;
1577
1674
  static toObject(includeInstance: boolean, msg: EntitySynonymSearchResult): EntitySynonymSearchResult.AsObject;
@@ -1589,6 +1686,10 @@ export namespace FullTextSearchResponseEntitySynonym {
1589
1686
  entityName: string,
1590
1687
  entityDisplayName: string,
1591
1688
  language: string,
1689
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1690
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1691
+ createdBy: string,
1692
+ modifiedBy: string,
1592
1693
  }
1593
1694
  }
1594
1695
 
@@ -1655,6 +1756,22 @@ export namespace FullTextSearchResponseIntent {
1655
1756
  getLanguage(): string;
1656
1757
  setLanguage(value: string): IntentSearchResult;
1657
1758
 
1759
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1760
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentSearchResult;
1761
+ hasCreatedAt(): boolean;
1762
+ clearCreatedAt(): IntentSearchResult;
1763
+
1764
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1765
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentSearchResult;
1766
+ hasModifiedAt(): boolean;
1767
+ clearModifiedAt(): IntentSearchResult;
1768
+
1769
+ getCreatedBy(): string;
1770
+ setCreatedBy(value: string): IntentSearchResult;
1771
+
1772
+ getModifiedBy(): string;
1773
+ setModifiedBy(value: string): IntentSearchResult;
1774
+
1658
1775
  serializeBinary(): Uint8Array;
1659
1776
  toObject(includeInstance?: boolean): IntentSearchResult.AsObject;
1660
1777
  static toObject(includeInstance: boolean, msg: IntentSearchResult): IntentSearchResult.AsObject;
@@ -1670,6 +1787,10 @@ export namespace FullTextSearchResponseIntent {
1670
1787
  domainName: string,
1671
1788
  tagsList: Array<string>,
1672
1789
  language: string,
1790
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1791
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1792
+ createdBy: string,
1793
+ modifiedBy: string,
1673
1794
  }
1674
1795
  }
1675
1796
 
@@ -1736,6 +1857,22 @@ export namespace FullTextSearchResponseIntentContextIn {
1736
1857
  getLanguage(): string;
1737
1858
  setLanguage(value: string): IntentContextInSearchResult;
1738
1859
 
1860
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1861
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentContextInSearchResult;
1862
+ hasCreatedAt(): boolean;
1863
+ clearCreatedAt(): IntentContextInSearchResult;
1864
+
1865
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1866
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentContextInSearchResult;
1867
+ hasModifiedAt(): boolean;
1868
+ clearModifiedAt(): IntentContextInSearchResult;
1869
+
1870
+ getCreatedBy(): string;
1871
+ setCreatedBy(value: string): IntentContextInSearchResult;
1872
+
1873
+ getModifiedBy(): string;
1874
+ setModifiedBy(value: string): IntentContextInSearchResult;
1875
+
1739
1876
  serializeBinary(): Uint8Array;
1740
1877
  toObject(includeInstance?: boolean): IntentContextInSearchResult.AsObject;
1741
1878
  static toObject(includeInstance: boolean, msg: IntentContextInSearchResult): IntentContextInSearchResult.AsObject;
@@ -1751,6 +1888,10 @@ export namespace FullTextSearchResponseIntentContextIn {
1751
1888
  intentDisplayName: string,
1752
1889
  tagsList: Array<string>,
1753
1890
  language: string,
1891
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1892
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1893
+ createdBy: string,
1894
+ modifiedBy: string,
1754
1895
  }
1755
1896
  }
1756
1897
 
@@ -1817,6 +1958,22 @@ export namespace FullTextSearchResponseIntentContextOut {
1817
1958
  getLanguage(): string;
1818
1959
  setLanguage(value: string): IntentContextOutSearchResult;
1819
1960
 
1961
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1962
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentContextOutSearchResult;
1963
+ hasCreatedAt(): boolean;
1964
+ clearCreatedAt(): IntentContextOutSearchResult;
1965
+
1966
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1967
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentContextOutSearchResult;
1968
+ hasModifiedAt(): boolean;
1969
+ clearModifiedAt(): IntentContextOutSearchResult;
1970
+
1971
+ getCreatedBy(): string;
1972
+ setCreatedBy(value: string): IntentContextOutSearchResult;
1973
+
1974
+ getModifiedBy(): string;
1975
+ setModifiedBy(value: string): IntentContextOutSearchResult;
1976
+
1820
1977
  serializeBinary(): Uint8Array;
1821
1978
  toObject(includeInstance?: boolean): IntentContextOutSearchResult.AsObject;
1822
1979
  static toObject(includeInstance: boolean, msg: IntentContextOutSearchResult): IntentContextOutSearchResult.AsObject;
@@ -1832,6 +1989,10 @@ export namespace FullTextSearchResponseIntentContextOut {
1832
1989
  intentDisplayName: string,
1833
1990
  tagsList: Array<string>,
1834
1991
  language: string,
1992
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1993
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1994
+ createdBy: string,
1995
+ modifiedBy: string,
1835
1996
  }
1836
1997
  }
1837
1998
 
@@ -1910,6 +2071,22 @@ export namespace FullTextSearchResponseIntentUsersays {
1910
2071
  getLanguage(): string;
1911
2072
  setLanguage(value: string): IntentUsersaysSearchResult;
1912
2073
 
2074
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2075
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentUsersaysSearchResult;
2076
+ hasCreatedAt(): boolean;
2077
+ clearCreatedAt(): IntentUsersaysSearchResult;
2078
+
2079
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2080
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentUsersaysSearchResult;
2081
+ hasModifiedAt(): boolean;
2082
+ clearModifiedAt(): IntentUsersaysSearchResult;
2083
+
2084
+ getCreatedBy(): string;
2085
+ setCreatedBy(value: string): IntentUsersaysSearchResult;
2086
+
2087
+ getModifiedBy(): string;
2088
+ setModifiedBy(value: string): IntentUsersaysSearchResult;
2089
+
1913
2090
  serializeBinary(): Uint8Array;
1914
2091
  toObject(includeInstance?: boolean): IntentUsersaysSearchResult.AsObject;
1915
2092
  static toObject(includeInstance: boolean, msg: IntentUsersaysSearchResult): IntentUsersaysSearchResult.AsObject;
@@ -1929,6 +2106,10 @@ export namespace FullTextSearchResponseIntentUsersays {
1929
2106
  intentDisplayName: string,
1930
2107
  tagsList: Array<string>,
1931
2108
  language: string,
2109
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2110
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2111
+ createdBy: string,
2112
+ modifiedBy: string,
1932
2113
  }
1933
2114
  }
1934
2115
 
@@ -1998,6 +2179,22 @@ export namespace FullTextSearchResponseIntentTags {
1998
2179
  getLanguage(): string;
1999
2180
  setLanguage(value: string): IntentTagsSearchResult;
2000
2181
 
2182
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2183
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentTagsSearchResult;
2184
+ hasCreatedAt(): boolean;
2185
+ clearCreatedAt(): IntentTagsSearchResult;
2186
+
2187
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2188
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentTagsSearchResult;
2189
+ hasModifiedAt(): boolean;
2190
+ clearModifiedAt(): IntentTagsSearchResult;
2191
+
2192
+ getCreatedBy(): string;
2193
+ setCreatedBy(value: string): IntentTagsSearchResult;
2194
+
2195
+ getModifiedBy(): string;
2196
+ setModifiedBy(value: string): IntentTagsSearchResult;
2197
+
2001
2198
  serializeBinary(): Uint8Array;
2002
2199
  toObject(includeInstance?: boolean): IntentTagsSearchResult.AsObject;
2003
2200
  static toObject(includeInstance: boolean, msg: IntentTagsSearchResult): IntentTagsSearchResult.AsObject;
@@ -2014,6 +2211,10 @@ export namespace FullTextSearchResponseIntentTags {
2014
2211
  intentDisplayName: string,
2015
2212
  tagsList: Array<string>,
2016
2213
  language: string,
2214
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2215
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2216
+ createdBy: string,
2217
+ modifiedBy: string,
2017
2218
  }
2018
2219
  }
2019
2220
 
@@ -2086,6 +2287,22 @@ export namespace FullTextSearchResponseIntentResponse {
2086
2287
  getLanguage(): string;
2087
2288
  setLanguage(value: string): IntentResponseSearchResult;
2088
2289
 
2290
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2291
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentResponseSearchResult;
2292
+ hasCreatedAt(): boolean;
2293
+ clearCreatedAt(): IntentResponseSearchResult;
2294
+
2295
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2296
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentResponseSearchResult;
2297
+ hasModifiedAt(): boolean;
2298
+ clearModifiedAt(): IntentResponseSearchResult;
2299
+
2300
+ getCreatedBy(): string;
2301
+ setCreatedBy(value: string): IntentResponseSearchResult;
2302
+
2303
+ getModifiedBy(): string;
2304
+ setModifiedBy(value: string): IntentResponseSearchResult;
2305
+
2089
2306
  serializeBinary(): Uint8Array;
2090
2307
  toObject(includeInstance?: boolean): IntentResponseSearchResult.AsObject;
2091
2308
  static toObject(includeInstance: boolean, msg: IntentResponseSearchResult): IntentResponseSearchResult.AsObject;
@@ -2103,6 +2320,10 @@ export namespace FullTextSearchResponseIntentResponse {
2103
2320
  intentDisplayName: string,
2104
2321
  tagsList: Array<string>,
2105
2322
  language: string,
2323
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2324
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2325
+ createdBy: string,
2326
+ modifiedBy: string,
2106
2327
  }
2107
2328
  }
2108
2329
 
@@ -2172,6 +2393,22 @@ export namespace FullTextSearchResponseIntentParameters {
2172
2393
  getLanguage(): string;
2173
2394
  setLanguage(value: string): IntentParametersSearchResult;
2174
2395
 
2396
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2397
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentParametersSearchResult;
2398
+ hasCreatedAt(): boolean;
2399
+ clearCreatedAt(): IntentParametersSearchResult;
2400
+
2401
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2402
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentParametersSearchResult;
2403
+ hasModifiedAt(): boolean;
2404
+ clearModifiedAt(): IntentParametersSearchResult;
2405
+
2406
+ getCreatedBy(): string;
2407
+ setCreatedBy(value: string): IntentParametersSearchResult;
2408
+
2409
+ getModifiedBy(): string;
2410
+ setModifiedBy(value: string): IntentParametersSearchResult;
2411
+
2175
2412
  serializeBinary(): Uint8Array;
2176
2413
  toObject(includeInstance?: boolean): IntentParametersSearchResult.AsObject;
2177
2414
  static toObject(includeInstance: boolean, msg: IntentParametersSearchResult): IntentParametersSearchResult.AsObject;
@@ -2188,6 +2425,10 @@ export namespace FullTextSearchResponseIntentParameters {
2188
2425
  intentDisplayName: string,
2189
2426
  tagsList: Array<string>,
2190
2427
  language: string,
2428
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2429
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2430
+ createdBy: string,
2431
+ modifiedBy: string,
2191
2432
  }
2192
2433
  }
2193
2434