@ondewo/nlu-client-typescript 4.6.0 → 4.8.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 (37) 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 +222 -1
  4. package/api/ondewo/nlu/agent_pb.js +1814 -30
  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_pb.d.ts +120 -0
  18. package/api/ondewo/nlu/intent_pb.js +1058 -86
  19. package/api/ondewo/nlu/operation_metadata_pb.d.ts +21 -0
  20. package/api/ondewo/nlu/operation_metadata_pb.js +165 -2
  21. package/api/ondewo/nlu/project_role_grpc_web_pb.js +3 -1
  22. package/api/ondewo/nlu/project_role_pb.d.ts +22 -1
  23. package/api/ondewo/nlu/project_role_pb.js +167 -3
  24. package/api/ondewo/nlu/session_grpc_web_pb.d.ts +109 -0
  25. package/api/ondewo/nlu/session_grpc_web_pb.js +553 -0
  26. package/api/ondewo/nlu/session_pb.d.ts +637 -0
  27. package/api/ondewo/nlu/session_pb.js +10508 -5294
  28. package/api/ondewo/nlu/user_grpc_web_pb.d.ts +85 -0
  29. package/api/ondewo/nlu/user_grpc_web_pb.js +431 -0
  30. package/api/ondewo/nlu/user_pb.d.ts +284 -0
  31. package/api/ondewo/nlu/user_pb.js +3418 -1024
  32. package/api/ondewo/nlu/webhook_grpc_web_pb.d.ts +37 -0
  33. package/api/ondewo/nlu/webhook_grpc_web_pb.js +191 -2
  34. package/api/ondewo/nlu/webhook_pb.d.ts +188 -5
  35. package/api/ondewo/nlu/webhook_pb.js +1530 -34
  36. package/package.json +1 -1
  37. 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
 
@@ -1410,6 +1431,22 @@ export namespace FullTextSearchResponseEntityType {
1410
1431
  getLanguage(): string;
1411
1432
  setLanguage(value: string): EntityTypeSearchResult;
1412
1433
 
1434
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1435
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntityTypeSearchResult;
1436
+ hasCreatedAt(): boolean;
1437
+ clearCreatedAt(): EntityTypeSearchResult;
1438
+
1439
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1440
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntityTypeSearchResult;
1441
+ hasModifiedAt(): boolean;
1442
+ clearModifiedAt(): EntityTypeSearchResult;
1443
+
1444
+ getCreatedBy(): string;
1445
+ setCreatedBy(value: string): EntityTypeSearchResult;
1446
+
1447
+ getModifiedBy(): string;
1448
+ setModifiedBy(value: string): EntityTypeSearchResult;
1449
+
1413
1450
  serializeBinary(): Uint8Array;
1414
1451
  toObject(includeInstance?: boolean): EntityTypeSearchResult.AsObject;
1415
1452
  static toObject(includeInstance: boolean, msg: EntityTypeSearchResult): EntityTypeSearchResult.AsObject;
@@ -1423,6 +1460,10 @@ export namespace FullTextSearchResponseEntityType {
1423
1460
  name: string,
1424
1461
  displayName: string,
1425
1462
  language: string,
1463
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1464
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1465
+ createdBy: string,
1466
+ modifiedBy: string,
1426
1467
  }
1427
1468
  }
1428
1469
 
@@ -1487,6 +1528,22 @@ export namespace FullTextSearchResponseEntity {
1487
1528
  getLanguage(): string;
1488
1529
  setLanguage(value: string): EntitySearchResult;
1489
1530
 
1531
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1532
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntitySearchResult;
1533
+ hasCreatedAt(): boolean;
1534
+ clearCreatedAt(): EntitySearchResult;
1535
+
1536
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1537
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntitySearchResult;
1538
+ hasModifiedAt(): boolean;
1539
+ clearModifiedAt(): EntitySearchResult;
1540
+
1541
+ getCreatedBy(): string;
1542
+ setCreatedBy(value: string): EntitySearchResult;
1543
+
1544
+ getModifiedBy(): string;
1545
+ setModifiedBy(value: string): EntitySearchResult;
1546
+
1490
1547
  serializeBinary(): Uint8Array;
1491
1548
  toObject(includeInstance?: boolean): EntitySearchResult.AsObject;
1492
1549
  static toObject(includeInstance: boolean, msg: EntitySearchResult): EntitySearchResult.AsObject;
@@ -1502,6 +1559,10 @@ export namespace FullTextSearchResponseEntity {
1502
1559
  entityTypeName: string,
1503
1560
  entityTypeDisplayName: string,
1504
1561
  language: string,
1562
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1563
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1564
+ createdBy: string,
1565
+ modifiedBy: string,
1505
1566
  }
1506
1567
  }
1507
1568
 
@@ -1572,6 +1633,22 @@ export namespace FullTextSearchResponseEntitySynonym {
1572
1633
  getLanguage(): string;
1573
1634
  setLanguage(value: string): EntitySynonymSearchResult;
1574
1635
 
1636
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1637
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntitySynonymSearchResult;
1638
+ hasCreatedAt(): boolean;
1639
+ clearCreatedAt(): EntitySynonymSearchResult;
1640
+
1641
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1642
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): EntitySynonymSearchResult;
1643
+ hasModifiedAt(): boolean;
1644
+ clearModifiedAt(): EntitySynonymSearchResult;
1645
+
1646
+ getCreatedBy(): string;
1647
+ setCreatedBy(value: string): EntitySynonymSearchResult;
1648
+
1649
+ getModifiedBy(): string;
1650
+ setModifiedBy(value: string): EntitySynonymSearchResult;
1651
+
1575
1652
  serializeBinary(): Uint8Array;
1576
1653
  toObject(includeInstance?: boolean): EntitySynonymSearchResult.AsObject;
1577
1654
  static toObject(includeInstance: boolean, msg: EntitySynonymSearchResult): EntitySynonymSearchResult.AsObject;
@@ -1589,6 +1666,10 @@ export namespace FullTextSearchResponseEntitySynonym {
1589
1666
  entityName: string,
1590
1667
  entityDisplayName: string,
1591
1668
  language: string,
1669
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1670
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1671
+ createdBy: string,
1672
+ modifiedBy: string,
1592
1673
  }
1593
1674
  }
1594
1675
 
@@ -1655,6 +1736,22 @@ export namespace FullTextSearchResponseIntent {
1655
1736
  getLanguage(): string;
1656
1737
  setLanguage(value: string): IntentSearchResult;
1657
1738
 
1739
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1740
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentSearchResult;
1741
+ hasCreatedAt(): boolean;
1742
+ clearCreatedAt(): IntentSearchResult;
1743
+
1744
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1745
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentSearchResult;
1746
+ hasModifiedAt(): boolean;
1747
+ clearModifiedAt(): IntentSearchResult;
1748
+
1749
+ getCreatedBy(): string;
1750
+ setCreatedBy(value: string): IntentSearchResult;
1751
+
1752
+ getModifiedBy(): string;
1753
+ setModifiedBy(value: string): IntentSearchResult;
1754
+
1658
1755
  serializeBinary(): Uint8Array;
1659
1756
  toObject(includeInstance?: boolean): IntentSearchResult.AsObject;
1660
1757
  static toObject(includeInstance: boolean, msg: IntentSearchResult): IntentSearchResult.AsObject;
@@ -1670,6 +1767,10 @@ export namespace FullTextSearchResponseIntent {
1670
1767
  domainName: string,
1671
1768
  tagsList: Array<string>,
1672
1769
  language: string,
1770
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1771
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1772
+ createdBy: string,
1773
+ modifiedBy: string,
1673
1774
  }
1674
1775
  }
1675
1776
 
@@ -1736,6 +1837,22 @@ export namespace FullTextSearchResponseIntentContextIn {
1736
1837
  getLanguage(): string;
1737
1838
  setLanguage(value: string): IntentContextInSearchResult;
1738
1839
 
1840
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1841
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentContextInSearchResult;
1842
+ hasCreatedAt(): boolean;
1843
+ clearCreatedAt(): IntentContextInSearchResult;
1844
+
1845
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1846
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentContextInSearchResult;
1847
+ hasModifiedAt(): boolean;
1848
+ clearModifiedAt(): IntentContextInSearchResult;
1849
+
1850
+ getCreatedBy(): string;
1851
+ setCreatedBy(value: string): IntentContextInSearchResult;
1852
+
1853
+ getModifiedBy(): string;
1854
+ setModifiedBy(value: string): IntentContextInSearchResult;
1855
+
1739
1856
  serializeBinary(): Uint8Array;
1740
1857
  toObject(includeInstance?: boolean): IntentContextInSearchResult.AsObject;
1741
1858
  static toObject(includeInstance: boolean, msg: IntentContextInSearchResult): IntentContextInSearchResult.AsObject;
@@ -1751,6 +1868,10 @@ export namespace FullTextSearchResponseIntentContextIn {
1751
1868
  intentDisplayName: string,
1752
1869
  tagsList: Array<string>,
1753
1870
  language: string,
1871
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1872
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1873
+ createdBy: string,
1874
+ modifiedBy: string,
1754
1875
  }
1755
1876
  }
1756
1877
 
@@ -1817,6 +1938,22 @@ export namespace FullTextSearchResponseIntentContextOut {
1817
1938
  getLanguage(): string;
1818
1939
  setLanguage(value: string): IntentContextOutSearchResult;
1819
1940
 
1941
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1942
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentContextOutSearchResult;
1943
+ hasCreatedAt(): boolean;
1944
+ clearCreatedAt(): IntentContextOutSearchResult;
1945
+
1946
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
1947
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentContextOutSearchResult;
1948
+ hasModifiedAt(): boolean;
1949
+ clearModifiedAt(): IntentContextOutSearchResult;
1950
+
1951
+ getCreatedBy(): string;
1952
+ setCreatedBy(value: string): IntentContextOutSearchResult;
1953
+
1954
+ getModifiedBy(): string;
1955
+ setModifiedBy(value: string): IntentContextOutSearchResult;
1956
+
1820
1957
  serializeBinary(): Uint8Array;
1821
1958
  toObject(includeInstance?: boolean): IntentContextOutSearchResult.AsObject;
1822
1959
  static toObject(includeInstance: boolean, msg: IntentContextOutSearchResult): IntentContextOutSearchResult.AsObject;
@@ -1832,6 +1969,10 @@ export namespace FullTextSearchResponseIntentContextOut {
1832
1969
  intentDisplayName: string,
1833
1970
  tagsList: Array<string>,
1834
1971
  language: string,
1972
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1973
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1974
+ createdBy: string,
1975
+ modifiedBy: string,
1835
1976
  }
1836
1977
  }
1837
1978
 
@@ -1910,6 +2051,22 @@ export namespace FullTextSearchResponseIntentUsersays {
1910
2051
  getLanguage(): string;
1911
2052
  setLanguage(value: string): IntentUsersaysSearchResult;
1912
2053
 
2054
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2055
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentUsersaysSearchResult;
2056
+ hasCreatedAt(): boolean;
2057
+ clearCreatedAt(): IntentUsersaysSearchResult;
2058
+
2059
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2060
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentUsersaysSearchResult;
2061
+ hasModifiedAt(): boolean;
2062
+ clearModifiedAt(): IntentUsersaysSearchResult;
2063
+
2064
+ getCreatedBy(): string;
2065
+ setCreatedBy(value: string): IntentUsersaysSearchResult;
2066
+
2067
+ getModifiedBy(): string;
2068
+ setModifiedBy(value: string): IntentUsersaysSearchResult;
2069
+
1913
2070
  serializeBinary(): Uint8Array;
1914
2071
  toObject(includeInstance?: boolean): IntentUsersaysSearchResult.AsObject;
1915
2072
  static toObject(includeInstance: boolean, msg: IntentUsersaysSearchResult): IntentUsersaysSearchResult.AsObject;
@@ -1929,6 +2086,10 @@ export namespace FullTextSearchResponseIntentUsersays {
1929
2086
  intentDisplayName: string,
1930
2087
  tagsList: Array<string>,
1931
2088
  language: string,
2089
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2090
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2091
+ createdBy: string,
2092
+ modifiedBy: string,
1932
2093
  }
1933
2094
  }
1934
2095
 
@@ -1998,6 +2159,22 @@ export namespace FullTextSearchResponseIntentTags {
1998
2159
  getLanguage(): string;
1999
2160
  setLanguage(value: string): IntentTagsSearchResult;
2000
2161
 
2162
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2163
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentTagsSearchResult;
2164
+ hasCreatedAt(): boolean;
2165
+ clearCreatedAt(): IntentTagsSearchResult;
2166
+
2167
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2168
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentTagsSearchResult;
2169
+ hasModifiedAt(): boolean;
2170
+ clearModifiedAt(): IntentTagsSearchResult;
2171
+
2172
+ getCreatedBy(): string;
2173
+ setCreatedBy(value: string): IntentTagsSearchResult;
2174
+
2175
+ getModifiedBy(): string;
2176
+ setModifiedBy(value: string): IntentTagsSearchResult;
2177
+
2001
2178
  serializeBinary(): Uint8Array;
2002
2179
  toObject(includeInstance?: boolean): IntentTagsSearchResult.AsObject;
2003
2180
  static toObject(includeInstance: boolean, msg: IntentTagsSearchResult): IntentTagsSearchResult.AsObject;
@@ -2014,6 +2191,10 @@ export namespace FullTextSearchResponseIntentTags {
2014
2191
  intentDisplayName: string,
2015
2192
  tagsList: Array<string>,
2016
2193
  language: string,
2194
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2195
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2196
+ createdBy: string,
2197
+ modifiedBy: string,
2017
2198
  }
2018
2199
  }
2019
2200
 
@@ -2086,6 +2267,22 @@ export namespace FullTextSearchResponseIntentResponse {
2086
2267
  getLanguage(): string;
2087
2268
  setLanguage(value: string): IntentResponseSearchResult;
2088
2269
 
2270
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2271
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentResponseSearchResult;
2272
+ hasCreatedAt(): boolean;
2273
+ clearCreatedAt(): IntentResponseSearchResult;
2274
+
2275
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2276
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentResponseSearchResult;
2277
+ hasModifiedAt(): boolean;
2278
+ clearModifiedAt(): IntentResponseSearchResult;
2279
+
2280
+ getCreatedBy(): string;
2281
+ setCreatedBy(value: string): IntentResponseSearchResult;
2282
+
2283
+ getModifiedBy(): string;
2284
+ setModifiedBy(value: string): IntentResponseSearchResult;
2285
+
2089
2286
  serializeBinary(): Uint8Array;
2090
2287
  toObject(includeInstance?: boolean): IntentResponseSearchResult.AsObject;
2091
2288
  static toObject(includeInstance: boolean, msg: IntentResponseSearchResult): IntentResponseSearchResult.AsObject;
@@ -2103,6 +2300,10 @@ export namespace FullTextSearchResponseIntentResponse {
2103
2300
  intentDisplayName: string,
2104
2301
  tagsList: Array<string>,
2105
2302
  language: string,
2303
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2304
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2305
+ createdBy: string,
2306
+ modifiedBy: string,
2106
2307
  }
2107
2308
  }
2108
2309
 
@@ -2172,6 +2373,22 @@ export namespace FullTextSearchResponseIntentParameters {
2172
2373
  getLanguage(): string;
2173
2374
  setLanguage(value: string): IntentParametersSearchResult;
2174
2375
 
2376
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2377
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentParametersSearchResult;
2378
+ hasCreatedAt(): boolean;
2379
+ clearCreatedAt(): IntentParametersSearchResult;
2380
+
2381
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
2382
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): IntentParametersSearchResult;
2383
+ hasModifiedAt(): boolean;
2384
+ clearModifiedAt(): IntentParametersSearchResult;
2385
+
2386
+ getCreatedBy(): string;
2387
+ setCreatedBy(value: string): IntentParametersSearchResult;
2388
+
2389
+ getModifiedBy(): string;
2390
+ setModifiedBy(value: string): IntentParametersSearchResult;
2391
+
2175
2392
  serializeBinary(): Uint8Array;
2176
2393
  toObject(includeInstance?: boolean): IntentParametersSearchResult.AsObject;
2177
2394
  static toObject(includeInstance: boolean, msg: IntentParametersSearchResult): IntentParametersSearchResult.AsObject;
@@ -2188,6 +2405,10 @@ export namespace FullTextSearchResponseIntentParameters {
2188
2405
  intentDisplayName: string,
2189
2406
  tagsList: Array<string>,
2190
2407
  language: string,
2408
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2409
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2410
+ createdBy: string,
2411
+ modifiedBy: string,
2191
2412
  }
2192
2413
  }
2193
2414