@ondewo/nlu-client-typescript 4.7.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.
- package/api/ondewo/nlu/agent_grpc_web_pb.d.ts +61 -0
- package/api/ondewo/nlu/agent_grpc_web_pb.js +308 -1
- package/api/ondewo/nlu/agent_pb.d.ts +222 -1
- package/api/ondewo/nlu/agent_pb.js +1814 -30
- package/api/ondewo/nlu/ccai_project_grpc_web_pb.d.ts +79 -0
- package/api/ondewo/nlu/ccai_project_grpc_web_pb.js +388 -0
- package/api/ondewo/nlu/ccai_project_pb.d.ts +582 -0
- package/api/ondewo/nlu/ccai_project_pb.js +4137 -0
- package/api/ondewo/nlu/common_pb.d.ts +456 -0
- package/api/ondewo/nlu/common_pb.js +3523 -4
- package/api/ondewo/nlu/context_grpc_web_pb.js +2 -0
- package/api/ondewo/nlu/context_pb.d.ts +41 -0
- package/api/ondewo/nlu/context_pb.js +328 -2
- package/api/ondewo/nlu/entity_type_grpc_web_pb.js +2 -0
- package/api/ondewo/nlu/entity_type_pb.d.ts +41 -0
- package/api/ondewo/nlu/entity_type_pb.js +328 -2
- package/api/ondewo/nlu/intent_pb.d.ts +120 -0
- package/api/ondewo/nlu/intent_pb.js +1058 -86
- package/api/ondewo/nlu/operation_metadata_pb.d.ts +21 -0
- package/api/ondewo/nlu/operation_metadata_pb.js +165 -2
- package/api/ondewo/nlu/project_role_grpc_web_pb.js +3 -1
- package/api/ondewo/nlu/project_role_pb.d.ts +22 -1
- package/api/ondewo/nlu/project_role_pb.js +167 -3
- package/api/ondewo/nlu/session_grpc_web_pb.d.ts +109 -0
- package/api/ondewo/nlu/session_grpc_web_pb.js +551 -0
- package/api/ondewo/nlu/session_pb.d.ts +624 -0
- package/api/ondewo/nlu/session_pb.js +10278 -5168
- package/api/ondewo/nlu/user_grpc_web_pb.d.ts +85 -0
- package/api/ondewo/nlu/user_grpc_web_pb.js +431 -0
- package/api/ondewo/nlu/user_pb.d.ts +284 -0
- package/api/ondewo/nlu/user_pb.js +3418 -1024
- package/api/ondewo/nlu/webhook_grpc_web_pb.d.ts +37 -0
- package/api/ondewo/nlu/webhook_grpc_web_pb.js +191 -2
- package/api/ondewo/nlu/webhook_pb.d.ts +188 -5
- package/api/ondewo/nlu/webhook_pb.js +1530 -34
- package/package.json +1 -1
- package/public-api.d.ts +27 -25
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,38 +1,40 @@
|
|
|
1
|
+
export * from './api/ondewo/qa/qa_pb.d';
|
|
2
|
+
export * from './api/ondewo/qa/qa_grpc_web_pb.d';
|
|
3
|
+
export * from './api/ondewo/nlu/user_grpc_web_pb.d';
|
|
4
|
+
export * from './api/ondewo/nlu/utility_grpc_web_pb.d';
|
|
5
|
+
export * from './api/ondewo/nlu/operations_pb.d';
|
|
6
|
+
export * from './api/ondewo/nlu/webhook_pb.d';
|
|
1
7
|
export * from './api/ondewo/nlu/context_grpc_web_pb.d';
|
|
2
|
-
export * from './api/ondewo/nlu/
|
|
8
|
+
export * from './api/ondewo/nlu/operation_metadata_pb.d';
|
|
9
|
+
export * from './api/ondewo/nlu/ccai_project_grpc_web_pb.d';
|
|
10
|
+
export * from './api/ondewo/nlu/ccai_project_pb.d';
|
|
11
|
+
export * from './api/ondewo/nlu/intent_grpc_web_pb.d';
|
|
12
|
+
export * from './api/ondewo/nlu/agent_grpc_web_pb.d';
|
|
13
|
+
export * from './api/ondewo/nlu/webhook_grpc_web_pb.d';
|
|
3
14
|
export * from './api/ondewo/nlu/utility_pb.d';
|
|
4
|
-
export * from './api/ondewo/nlu/
|
|
15
|
+
export * from './api/ondewo/nlu/project_statistics_grpc_web_pb.d';
|
|
16
|
+
export * from './api/ondewo/nlu/user_pb.d';
|
|
17
|
+
export * from './api/ondewo/nlu/entity_type_pb.d';
|
|
18
|
+
export * from './api/ondewo/nlu/aiservices_pb.d';
|
|
19
|
+
export * from './api/ondewo/nlu/entity_type_grpc_web_pb.d';
|
|
5
20
|
export * from './api/ondewo/nlu/server_statistics_grpc_web_pb.d';
|
|
21
|
+
export * from './api/ondewo/nlu/server_statistics_pb.d';
|
|
6
22
|
export * from './api/ondewo/nlu/operations_grpc_web_pb.d';
|
|
7
|
-
export * from './api/ondewo/nlu/user_pb.d';
|
|
8
23
|
export * from './api/ondewo/nlu/intent_pb.d';
|
|
24
|
+
export * from './api/ondewo/nlu/project_role_pb.d';
|
|
9
25
|
export * from './api/ondewo/nlu/context_pb.d';
|
|
10
|
-
export * from './api/ondewo/nlu/project_statistics_pb.d';
|
|
11
|
-
export * from './api/ondewo/nlu/session_pb.d';
|
|
12
|
-
export * from './api/ondewo/nlu/server_statistics_pb.d';
|
|
13
26
|
export * from './api/ondewo/nlu/agent_pb.d';
|
|
14
|
-
export * from './api/ondewo/nlu/
|
|
15
|
-
export * from './api/ondewo/nlu/user_grpc_web_pb.d';
|
|
16
|
-
export * from './api/ondewo/nlu/common_pb.d';
|
|
17
|
-
export * from './api/ondewo/nlu/entity_type_pb.d';
|
|
18
|
-
export * from './api/ondewo/nlu/agent_grpc_web_pb.d';
|
|
19
|
-
export * from './api/ondewo/nlu/webhook_grpc_web_pb.d';
|
|
20
|
-
export * from './api/ondewo/nlu/operation_metadata_pb.d';
|
|
27
|
+
export * from './api/ondewo/nlu/session_pb.d';
|
|
21
28
|
export * from './api/ondewo/nlu/project_role_grpc_web_pb.d';
|
|
22
|
-
export * from './api/ondewo/nlu/
|
|
23
|
-
export * from './api/ondewo/nlu/webhook_pb.d';
|
|
24
|
-
export * from './api/ondewo/nlu/project_role_pb.d';
|
|
25
|
-
export * from './api/ondewo/nlu/operations_pb.d';
|
|
29
|
+
export * from './api/ondewo/nlu/common_pb.d';
|
|
26
30
|
export * from './api/ondewo/nlu/aiservices_grpc_web_pb.d';
|
|
27
|
-
export * from './api/ondewo/nlu/entity_type_grpc_web_pb.d';
|
|
28
31
|
export * from './api/ondewo/nlu/session_grpc_web_pb.d';
|
|
29
|
-
export * from './api/ondewo/
|
|
30
|
-
export * from './api/
|
|
31
|
-
export * from './api/google/type/latlng_pb.d';
|
|
32
|
+
export * from './api/ondewo/nlu/project_statistics_pb.d';
|
|
33
|
+
export * from './api/google/api/annotations_pb.d';
|
|
32
34
|
export * from './api/google/rpc/status_pb.d';
|
|
33
|
-
export * from './api/google/protobuf/
|
|
35
|
+
export * from './api/google/protobuf/empty_pb.d';
|
|
34
36
|
export * from './api/google/protobuf/field_mask_pb.d';
|
|
35
|
-
export * from './api/google/protobuf/any_pb.d';
|
|
36
37
|
export * from './api/google/protobuf/timestamp_pb.d';
|
|
37
|
-
export * from './api/google/protobuf/
|
|
38
|
-
export * from './api/google/
|
|
38
|
+
export * from './api/google/protobuf/any_pb.d';
|
|
39
|
+
export * from './api/google/protobuf/struct_pb.d';
|
|
40
|
+
export * from './api/google/type/latlng_pb.d';
|