@ondewo/nlu-client-typescript 4.1.0 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/ondewo/nlu/agent_grpc_web_pb.d.ts +490 -450
- package/api/ondewo/nlu/agent_grpc_web_pb.js +1244 -1113
- package/api/ondewo/nlu/agent_pb.d.ts +1758 -1939
- package/api/ondewo/nlu/agent_pb.js +10491 -9063
- package/api/ondewo/nlu/aiservices_grpc_web_pb.d.ts +106 -98
- package/api/ondewo/nlu/aiservices_grpc_web_pb.js +280 -245
- package/api/ondewo/nlu/aiservices_pb.d.ts +674 -745
- package/api/ondewo/nlu/aiservices_pb.js +4403 -3638
- package/api/ondewo/nlu/common_pb.d.ts +17 -15
- package/api/ondewo/nlu/common_pb.js +93 -83
- package/api/ondewo/nlu/context_grpc_web_pb.d.ts +82 -76
- package/api/ondewo/nlu/context_grpc_web_pb.js +220 -191
- package/api/ondewo/nlu/context_pb.d.ts +151 -151
- package/api/ondewo/nlu/context_pb.js +1042 -889
- package/api/ondewo/nlu/entity_type_grpc_web_pb.d.ts +154 -142
- package/api/ondewo/nlu/entity_type_grpc_web_pb.js +398 -351
- package/api/ondewo/nlu/entity_type_pb.d.ts +571 -614
- package/api/ondewo/nlu/entity_type_pb.js +3369 -2893
- package/api/ondewo/nlu/intent_grpc_web_pb.d.ts +334 -310
- package/api/ondewo/nlu/intent_grpc_web_pb.js +851 -766
- package/api/ondewo/nlu/intent_pb.d.ts +1993 -2151
- package/api/ondewo/nlu/intent_pb.js +10692 -9502
- package/api/ondewo/nlu/operation_metadata_pb.d.ts +98 -86
- package/api/ondewo/nlu/operation_metadata_pb.js +492 -322
- package/api/ondewo/nlu/operations_grpc_web_pb.d.ts +50 -46
- package/api/ondewo/nlu/operations_grpc_web_pb.js +163 -140
- package/api/ondewo/nlu/operations_pb.d.ts +182 -189
- package/api/ondewo/nlu/operations_pb.js +1004 -843
- package/api/ondewo/nlu/project_role_grpc_web_pb.d.ts +70 -65
- package/api/ondewo/nlu/project_role_grpc_web_pb.js +190 -164
- package/api/ondewo/nlu/project_role_pb.d.ts +151 -165
- package/api/ondewo/nlu/project_role_pb.js +963 -796
- package/api/ondewo/nlu/project_statistics_grpc_web_pb.d.ts +106 -98
- package/api/ondewo/nlu/project_statistics_grpc_web_pb.js +281 -246
- package/api/ondewo/nlu/project_statistics_pb.d.ts +63 -67
- package/api/ondewo/nlu/project_statistics_pb.js +418 -354
- package/api/ondewo/nlu/server_statistics_grpc_web_pb.d.ts +46 -43
- package/api/ondewo/nlu/server_statistics_grpc_web_pb.js +130 -110
- package/api/ondewo/nlu/server_statistics_pb.d.ts +14 -15
- package/api/ondewo/nlu/server_statistics_pb.js +91 -81
- package/api/ondewo/nlu/session_grpc_web_pb.d.ts +334 -164
- package/api/ondewo/nlu/session_grpc_web_pb.js +1255 -409
- package/api/ondewo/nlu/session_pb.d.ts +1721 -1080
- package/api/ondewo/nlu/session_pb.js +13885 -6673
- package/api/ondewo/nlu/user_grpc_web_pb.d.ts +190 -172
- package/api/ondewo/nlu/user_grpc_web_pb.js +487 -431
- package/api/ondewo/nlu/user_pb.d.ts +325 -345
- package/api/ondewo/nlu/user_pb.js +2312 -1948
- package/api/ondewo/nlu/utility_grpc_web_pb.d.ts +106 -98
- package/api/ondewo/nlu/utility_grpc_web_pb.js +279 -244
- package/api/ondewo/nlu/utility_pb.d.ts +535 -588
- package/api/ondewo/nlu/utility_pb.js +3348 -2814
- package/api/ondewo/nlu/webhook_grpc_web_pb.d.ts +46 -43
- package/api/ondewo/nlu/webhook_grpc_web_pb.js +132 -112
- package/api/ondewo/nlu/webhook_pb.d.ts +119 -123
- package/api/ondewo/nlu/webhook_pb.js +718 -599
- package/api/ondewo/qa/qa_grpc_web_pb.d.ts +94 -87
- package/api/ondewo/qa/qa_grpc_web_pb.js +250 -218
- package/api/ondewo/qa/qa_pb.d.ts +220 -235
- package/api/ondewo/qa/qa_pb.js +1452 -1222
- package/package.json +1 -1
- package/public-api.d.ts +34 -4
|
@@ -1,96 +1,92 @@
|
|
|
1
|
-
import * as jspb from 'google-protobuf'
|
|
1
|
+
import * as jspb from 'google-protobuf'
|
|
2
2
|
|
|
3
3
|
import * as google_api_annotations_pb from '../../google/api/annotations_pb';
|
|
4
4
|
import * as ondewo_nlu_intent_pb from '../../ondewo/nlu/intent_pb';
|
|
5
5
|
import * as ondewo_nlu_common_pb from '../../ondewo/nlu/common_pb';
|
|
6
6
|
import * as ondewo_nlu_entity_type_pb from '../../ondewo/nlu/entity_type_pb';
|
|
7
7
|
|
|
8
|
+
|
|
8
9
|
export class GetIntentCountRequest extends jspb.Message {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
10
|
+
getParent(): string;
|
|
11
|
+
setParent(value: string): GetIntentCountRequest;
|
|
12
|
+
|
|
13
|
+
getFilterByCategory(): ondewo_nlu_intent_pb.IntentCategory;
|
|
14
|
+
setFilterByCategory(value: ondewo_nlu_intent_pb.IntentCategory): GetIntentCountRequest;
|
|
15
|
+
|
|
16
|
+
serializeBinary(): Uint8Array;
|
|
17
|
+
toObject(includeInstance?: boolean): GetIntentCountRequest.AsObject;
|
|
18
|
+
static toObject(includeInstance: boolean, msg: GetIntentCountRequest): GetIntentCountRequest.AsObject;
|
|
19
|
+
static serializeBinaryToWriter(message: GetIntentCountRequest, writer: jspb.BinaryWriter): void;
|
|
20
|
+
static deserializeBinary(bytes: Uint8Array): GetIntentCountRequest;
|
|
21
|
+
static deserializeBinaryFromReader(message: GetIntentCountRequest, reader: jspb.BinaryReader): GetIntentCountRequest;
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
export namespace GetIntentCountRequest {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
export type AsObject = {
|
|
26
|
+
parent: string,
|
|
27
|
+
filterByCategory: ondewo_nlu_intent_pb.IntentCategory,
|
|
28
|
+
}
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
export class GetEntityTypeCountRequest extends jspb.Message {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
message: GetEntityTypeCountRequest,
|
|
44
|
-
reader: jspb.BinaryReader
|
|
45
|
-
): GetEntityTypeCountRequest;
|
|
32
|
+
getParent(): string;
|
|
33
|
+
setParent(value: string): GetEntityTypeCountRequest;
|
|
34
|
+
|
|
35
|
+
getFilterByCategory(): ondewo_nlu_entity_type_pb.EntityTypeCategory;
|
|
36
|
+
setFilterByCategory(value: ondewo_nlu_entity_type_pb.EntityTypeCategory): GetEntityTypeCountRequest;
|
|
37
|
+
|
|
38
|
+
serializeBinary(): Uint8Array;
|
|
39
|
+
toObject(includeInstance?: boolean): GetEntityTypeCountRequest.AsObject;
|
|
40
|
+
static toObject(includeInstance: boolean, msg: GetEntityTypeCountRequest): GetEntityTypeCountRequest.AsObject;
|
|
41
|
+
static serializeBinaryToWriter(message: GetEntityTypeCountRequest, writer: jspb.BinaryWriter): void;
|
|
42
|
+
static deserializeBinary(bytes: Uint8Array): GetEntityTypeCountRequest;
|
|
43
|
+
static deserializeBinaryFromReader(message: GetEntityTypeCountRequest, reader: jspb.BinaryReader): GetEntityTypeCountRequest;
|
|
46
44
|
}
|
|
47
45
|
|
|
48
46
|
export namespace GetEntityTypeCountRequest {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
47
|
+
export type AsObject = {
|
|
48
|
+
parent: string,
|
|
49
|
+
filterByCategory: ondewo_nlu_entity_type_pb.EntityTypeCategory,
|
|
50
|
+
}
|
|
53
51
|
}
|
|
54
52
|
|
|
55
53
|
export class GetProjectStatRequest extends jspb.Message {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
54
|
+
getParent(): string;
|
|
55
|
+
setParent(value: string): GetProjectStatRequest;
|
|
56
|
+
|
|
57
|
+
serializeBinary(): Uint8Array;
|
|
58
|
+
toObject(includeInstance?: boolean): GetProjectStatRequest.AsObject;
|
|
59
|
+
static toObject(includeInstance: boolean, msg: GetProjectStatRequest): GetProjectStatRequest.AsObject;
|
|
60
|
+
static serializeBinaryToWriter(message: GetProjectStatRequest, writer: jspb.BinaryWriter): void;
|
|
61
|
+
static deserializeBinary(bytes: Uint8Array): GetProjectStatRequest;
|
|
62
|
+
static deserializeBinaryFromReader(message: GetProjectStatRequest, reader: jspb.BinaryReader): GetProjectStatRequest;
|
|
65
63
|
}
|
|
66
64
|
|
|
67
65
|
export namespace GetProjectStatRequest {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
66
|
+
export type AsObject = {
|
|
67
|
+
parent: string,
|
|
68
|
+
}
|
|
71
69
|
}
|
|
72
70
|
|
|
73
71
|
export class GetProjectElementStatRequest extends jspb.Message {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
message: GetProjectElementStatRequest,
|
|
87
|
-
reader: jspb.BinaryReader
|
|
88
|
-
): GetProjectElementStatRequest;
|
|
72
|
+
getName(): string;
|
|
73
|
+
setName(value: string): GetProjectElementStatRequest;
|
|
74
|
+
|
|
75
|
+
getLanguageCode(): string;
|
|
76
|
+
setLanguageCode(value: string): GetProjectElementStatRequest;
|
|
77
|
+
|
|
78
|
+
serializeBinary(): Uint8Array;
|
|
79
|
+
toObject(includeInstance?: boolean): GetProjectElementStatRequest.AsObject;
|
|
80
|
+
static toObject(includeInstance: boolean, msg: GetProjectElementStatRequest): GetProjectElementStatRequest.AsObject;
|
|
81
|
+
static serializeBinaryToWriter(message: GetProjectElementStatRequest, writer: jspb.BinaryWriter): void;
|
|
82
|
+
static deserializeBinary(bytes: Uint8Array): GetProjectElementStatRequest;
|
|
83
|
+
static deserializeBinaryFromReader(message: GetProjectElementStatRequest, reader: jspb.BinaryReader): GetProjectElementStatRequest;
|
|
89
84
|
}
|
|
90
85
|
|
|
91
86
|
export namespace GetProjectElementStatRequest {
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
87
|
+
export type AsObject = {
|
|
88
|
+
name: string,
|
|
89
|
+
languageCode: string,
|
|
90
|
+
}
|
|
96
91
|
}
|
|
92
|
+
|