@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,761 +1,708 @@
|
|
|
1
|
-
import * as jspb from 'google-protobuf'
|
|
1
|
+
import * as jspb from 'google-protobuf'
|
|
2
2
|
|
|
3
3
|
import * as ondewo_nlu_intent_pb from '../../ondewo/nlu/intent_pb';
|
|
4
4
|
import * as ondewo_nlu_entity_type_pb from '../../ondewo/nlu/entity_type_pb';
|
|
5
5
|
|
|
6
|
+
|
|
6
7
|
export class ValidateRegexRequest extends jspb.Message {
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
getRegex(): string;
|
|
9
|
+
setRegex(value: string): ValidateRegexRequest;
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
serializeBinary(): Uint8Array;
|
|
12
|
+
toObject(includeInstance?: boolean): ValidateRegexRequest.AsObject;
|
|
13
|
+
static toObject(includeInstance: boolean, msg: ValidateRegexRequest): ValidateRegexRequest.AsObject;
|
|
14
|
+
static serializeBinaryToWriter(message: ValidateRegexRequest, writer: jspb.BinaryWriter): void;
|
|
15
|
+
static deserializeBinary(bytes: Uint8Array): ValidateRegexRequest;
|
|
16
|
+
static deserializeBinaryFromReader(message: ValidateRegexRequest, reader: jspb.BinaryReader): ValidateRegexRequest;
|
|
16
17
|
}
|
|
17
18
|
|
|
18
19
|
export namespace ValidateRegexRequest {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
export type AsObject = {
|
|
21
|
+
regex: string,
|
|
22
|
+
}
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
export class ValidateRegexResponse extends jspb.Message {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
getErrorMessagesList(): Array<string>;
|
|
27
|
+
setErrorMessagesList(value: Array<string>): ValidateRegexResponse;
|
|
28
|
+
clearErrorMessagesList(): ValidateRegexResponse;
|
|
29
|
+
addErrorMessages(value: string, index?: number): ValidateRegexResponse;
|
|
29
30
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
31
|
+
serializeBinary(): Uint8Array;
|
|
32
|
+
toObject(includeInstance?: boolean): ValidateRegexResponse.AsObject;
|
|
33
|
+
static toObject(includeInstance: boolean, msg: ValidateRegexResponse): ValidateRegexResponse.AsObject;
|
|
34
|
+
static serializeBinaryToWriter(message: ValidateRegexResponse, writer: jspb.BinaryWriter): void;
|
|
35
|
+
static deserializeBinary(bytes: Uint8Array): ValidateRegexResponse;
|
|
36
|
+
static deserializeBinaryFromReader(message: ValidateRegexResponse, reader: jspb.BinaryReader): ValidateRegexResponse;
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
export namespace ValidateRegexResponse {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
export type AsObject = {
|
|
41
|
+
errorMessagesList: Array<string>,
|
|
42
|
+
}
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
export class ValidateEmbeddedRegexRequest extends jspb.Message {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
message: ValidateEmbeddedRegexRequest,
|
|
57
|
-
reader: jspb.BinaryReader
|
|
58
|
-
): ValidateEmbeddedRegexRequest;
|
|
46
|
+
getEntityType(): ondewo_nlu_entity_type_pb.EntityType.Entity | undefined;
|
|
47
|
+
setEntityType(value?: ondewo_nlu_entity_type_pb.EntityType.Entity): ValidateEmbeddedRegexRequest;
|
|
48
|
+
hasEntityType(): boolean;
|
|
49
|
+
clearEntityType(): ValidateEmbeddedRegexRequest;
|
|
50
|
+
|
|
51
|
+
serializeBinary(): Uint8Array;
|
|
52
|
+
toObject(includeInstance?: boolean): ValidateEmbeddedRegexRequest.AsObject;
|
|
53
|
+
static toObject(includeInstance: boolean, msg: ValidateEmbeddedRegexRequest): ValidateEmbeddedRegexRequest.AsObject;
|
|
54
|
+
static serializeBinaryToWriter(message: ValidateEmbeddedRegexRequest, writer: jspb.BinaryWriter): void;
|
|
55
|
+
static deserializeBinary(bytes: Uint8Array): ValidateEmbeddedRegexRequest;
|
|
56
|
+
static deserializeBinaryFromReader(message: ValidateEmbeddedRegexRequest, reader: jspb.BinaryReader): ValidateEmbeddedRegexRequest;
|
|
59
57
|
}
|
|
60
58
|
|
|
61
59
|
export namespace ValidateEmbeddedRegexRequest {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
60
|
+
export type AsObject = {
|
|
61
|
+
entityType?: ondewo_nlu_entity_type_pb.EntityType.Entity.AsObject,
|
|
62
|
+
}
|
|
65
63
|
}
|
|
66
64
|
|
|
67
65
|
export class ValidateEmbeddedRegexResponse extends jspb.Message {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
message: ValidateEmbeddedRegexResponse,
|
|
80
|
-
reader: jspb.BinaryReader
|
|
81
|
-
): ValidateEmbeddedRegexResponse;
|
|
66
|
+
getErrorMessagesList(): Array<string>;
|
|
67
|
+
setErrorMessagesList(value: Array<string>): ValidateEmbeddedRegexResponse;
|
|
68
|
+
clearErrorMessagesList(): ValidateEmbeddedRegexResponse;
|
|
69
|
+
addErrorMessages(value: string, index?: number): ValidateEmbeddedRegexResponse;
|
|
70
|
+
|
|
71
|
+
serializeBinary(): Uint8Array;
|
|
72
|
+
toObject(includeInstance?: boolean): ValidateEmbeddedRegexResponse.AsObject;
|
|
73
|
+
static toObject(includeInstance: boolean, msg: ValidateEmbeddedRegexResponse): ValidateEmbeddedRegexResponse.AsObject;
|
|
74
|
+
static serializeBinaryToWriter(message: ValidateEmbeddedRegexResponse, writer: jspb.BinaryWriter): void;
|
|
75
|
+
static deserializeBinary(bytes: Uint8Array): ValidateEmbeddedRegexResponse;
|
|
76
|
+
static deserializeBinaryFromReader(message: ValidateEmbeddedRegexResponse, reader: jspb.BinaryReader): ValidateEmbeddedRegexResponse;
|
|
82
77
|
}
|
|
83
78
|
|
|
84
79
|
export namespace ValidateEmbeddedRegexResponse {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
80
|
+
export type AsObject = {
|
|
81
|
+
errorMessagesList: Array<string>,
|
|
82
|
+
}
|
|
88
83
|
}
|
|
89
84
|
|
|
90
85
|
export class CleanAllIntentsRequest extends jspb.Message {
|
|
91
|
-
|
|
92
|
-
|
|
86
|
+
getParent(): string;
|
|
87
|
+
setParent(value: string): CleanAllIntentsRequest;
|
|
93
88
|
|
|
94
|
-
|
|
95
|
-
|
|
89
|
+
getLanguageCode(): string;
|
|
90
|
+
setLanguageCode(value: string): CleanAllIntentsRequest;
|
|
96
91
|
|
|
97
|
-
|
|
98
|
-
|
|
92
|
+
getSpecialCharacters(): string;
|
|
93
|
+
setSpecialCharacters(value: string): CleanAllIntentsRequest;
|
|
99
94
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
95
|
+
getSubstringWhiteListList(): Array<string>;
|
|
96
|
+
setSubstringWhiteListList(value: Array<string>): CleanAllIntentsRequest;
|
|
97
|
+
clearSubstringWhiteListList(): CleanAllIntentsRequest;
|
|
98
|
+
addSubstringWhiteList(value: string, index?: number): CleanAllIntentsRequest;
|
|
104
99
|
|
|
105
|
-
|
|
106
|
-
|
|
100
|
+
getDryRun(): boolean;
|
|
101
|
+
setDryRun(value: boolean): CleanAllIntentsRequest;
|
|
107
102
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
103
|
+
getTrainingPhraseCleanerOptions(): TrainingPhraseCleanerOptions | undefined;
|
|
104
|
+
setTrainingPhraseCleanerOptions(value?: TrainingPhraseCleanerOptions): CleanAllIntentsRequest;
|
|
105
|
+
hasTrainingPhraseCleanerOptions(): boolean;
|
|
106
|
+
clearTrainingPhraseCleanerOptions(): CleanAllIntentsRequest;
|
|
112
107
|
|
|
113
|
-
|
|
114
|
-
|
|
108
|
+
getReannotateEntitiesOptions(): ReannotateEntitiesOptions;
|
|
109
|
+
setReannotateEntitiesOptions(value: ReannotateEntitiesOptions): CleanAllIntentsRequest;
|
|
115
110
|
|
|
116
|
-
|
|
117
|
-
|
|
111
|
+
getNumberOfWorkers(): number;
|
|
112
|
+
setNumberOfWorkers(value: number): CleanAllIntentsRequest;
|
|
118
113
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
message: CleanAllIntentsRequest,
|
|
126
|
-
reader: jspb.BinaryReader
|
|
127
|
-
): CleanAllIntentsRequest;
|
|
114
|
+
serializeBinary(): Uint8Array;
|
|
115
|
+
toObject(includeInstance?: boolean): CleanAllIntentsRequest.AsObject;
|
|
116
|
+
static toObject(includeInstance: boolean, msg: CleanAllIntentsRequest): CleanAllIntentsRequest.AsObject;
|
|
117
|
+
static serializeBinaryToWriter(message: CleanAllIntentsRequest, writer: jspb.BinaryWriter): void;
|
|
118
|
+
static deserializeBinary(bytes: Uint8Array): CleanAllIntentsRequest;
|
|
119
|
+
static deserializeBinaryFromReader(message: CleanAllIntentsRequest, reader: jspb.BinaryReader): CleanAllIntentsRequest;
|
|
128
120
|
}
|
|
129
121
|
|
|
130
122
|
export namespace CleanAllIntentsRequest {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
123
|
+
export type AsObject = {
|
|
124
|
+
parent: string,
|
|
125
|
+
languageCode: string,
|
|
126
|
+
specialCharacters: string,
|
|
127
|
+
substringWhiteListList: Array<string>,
|
|
128
|
+
dryRun: boolean,
|
|
129
|
+
trainingPhraseCleanerOptions?: TrainingPhraseCleanerOptions.AsObject,
|
|
130
|
+
reannotateEntitiesOptions: ReannotateEntitiesOptions,
|
|
131
|
+
numberOfWorkers: number,
|
|
132
|
+
}
|
|
141
133
|
}
|
|
142
134
|
|
|
143
135
|
export class CleanAllIntentsResponse extends jspb.Message {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
message: CleanAllIntentsResponse,
|
|
161
|
-
reader: jspb.BinaryReader
|
|
162
|
-
): CleanAllIntentsResponse;
|
|
136
|
+
getCleanedIntentsList(): Array<ondewo_nlu_intent_pb.Intent>;
|
|
137
|
+
setCleanedIntentsList(value: Array<ondewo_nlu_intent_pb.Intent>): CleanAllIntentsResponse;
|
|
138
|
+
clearCleanedIntentsList(): CleanAllIntentsResponse;
|
|
139
|
+
addCleanedIntents(value?: ondewo_nlu_intent_pb.Intent, index?: number): ondewo_nlu_intent_pb.Intent;
|
|
140
|
+
|
|
141
|
+
getIntentUpdateListList(): Array<IntentUpdate>;
|
|
142
|
+
setIntentUpdateListList(value: Array<IntentUpdate>): CleanAllIntentsResponse;
|
|
143
|
+
clearIntentUpdateListList(): CleanAllIntentsResponse;
|
|
144
|
+
addIntentUpdateList(value?: IntentUpdate, index?: number): IntentUpdate;
|
|
145
|
+
|
|
146
|
+
serializeBinary(): Uint8Array;
|
|
147
|
+
toObject(includeInstance?: boolean): CleanAllIntentsResponse.AsObject;
|
|
148
|
+
static toObject(includeInstance: boolean, msg: CleanAllIntentsResponse): CleanAllIntentsResponse.AsObject;
|
|
149
|
+
static serializeBinaryToWriter(message: CleanAllIntentsResponse, writer: jspb.BinaryWriter): void;
|
|
150
|
+
static deserializeBinary(bytes: Uint8Array): CleanAllIntentsResponse;
|
|
151
|
+
static deserializeBinaryFromReader(message: CleanAllIntentsResponse, reader: jspb.BinaryReader): CleanAllIntentsResponse;
|
|
163
152
|
}
|
|
164
153
|
|
|
165
154
|
export namespace CleanAllIntentsResponse {
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
155
|
+
export type AsObject = {
|
|
156
|
+
cleanedIntentsList: Array<ondewo_nlu_intent_pb.Intent.AsObject>,
|
|
157
|
+
intentUpdateListList: Array<IntentUpdate.AsObject>,
|
|
158
|
+
}
|
|
170
159
|
}
|
|
171
160
|
|
|
172
161
|
export class CleanIntentRequest extends jspb.Message {
|
|
173
|
-
|
|
174
|
-
|
|
162
|
+
getParent(): string;
|
|
163
|
+
setParent(value: string): CleanIntentRequest;
|
|
175
164
|
|
|
176
|
-
|
|
177
|
-
|
|
165
|
+
getIntentName(): string;
|
|
166
|
+
setIntentName(value: string): CleanIntentRequest;
|
|
178
167
|
|
|
179
|
-
|
|
180
|
-
|
|
168
|
+
getLanguageCode(): string;
|
|
169
|
+
setLanguageCode(value: string): CleanIntentRequest;
|
|
181
170
|
|
|
182
|
-
|
|
183
|
-
|
|
171
|
+
getSpecialCharacters(): string;
|
|
172
|
+
setSpecialCharacters(value: string): CleanIntentRequest;
|
|
184
173
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
174
|
+
getSubstringWhiteListList(): Array<string>;
|
|
175
|
+
setSubstringWhiteListList(value: Array<string>): CleanIntentRequest;
|
|
176
|
+
clearSubstringWhiteListList(): CleanIntentRequest;
|
|
177
|
+
addSubstringWhiteList(value: string, index?: number): CleanIntentRequest;
|
|
189
178
|
|
|
190
|
-
|
|
191
|
-
|
|
179
|
+
getDryRun(): boolean;
|
|
180
|
+
setDryRun(value: boolean): CleanIntentRequest;
|
|
192
181
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
182
|
+
getTrainingPhraseCleanerOptions(): TrainingPhraseCleanerOptions | undefined;
|
|
183
|
+
setTrainingPhraseCleanerOptions(value?: TrainingPhraseCleanerOptions): CleanIntentRequest;
|
|
184
|
+
hasTrainingPhraseCleanerOptions(): boolean;
|
|
185
|
+
clearTrainingPhraseCleanerOptions(): CleanIntentRequest;
|
|
197
186
|
|
|
198
|
-
|
|
199
|
-
|
|
187
|
+
getReannotateEntitiesOptions(): ReannotateEntitiesOptions;
|
|
188
|
+
setReannotateEntitiesOptions(value: ReannotateEntitiesOptions): CleanIntentRequest;
|
|
200
189
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
190
|
+
serializeBinary(): Uint8Array;
|
|
191
|
+
toObject(includeInstance?: boolean): CleanIntentRequest.AsObject;
|
|
192
|
+
static toObject(includeInstance: boolean, msg: CleanIntentRequest): CleanIntentRequest.AsObject;
|
|
193
|
+
static serializeBinaryToWriter(message: CleanIntentRequest, writer: jspb.BinaryWriter): void;
|
|
194
|
+
static deserializeBinary(bytes: Uint8Array): CleanIntentRequest;
|
|
195
|
+
static deserializeBinaryFromReader(message: CleanIntentRequest, reader: jspb.BinaryReader): CleanIntentRequest;
|
|
207
196
|
}
|
|
208
197
|
|
|
209
198
|
export namespace CleanIntentRequest {
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
199
|
+
export type AsObject = {
|
|
200
|
+
parent: string,
|
|
201
|
+
intentName: string,
|
|
202
|
+
languageCode: string,
|
|
203
|
+
specialCharacters: string,
|
|
204
|
+
substringWhiteListList: Array<string>,
|
|
205
|
+
dryRun: boolean,
|
|
206
|
+
trainingPhraseCleanerOptions?: TrainingPhraseCleanerOptions.AsObject,
|
|
207
|
+
reannotateEntitiesOptions: ReannotateEntitiesOptions,
|
|
208
|
+
}
|
|
220
209
|
}
|
|
221
210
|
|
|
222
211
|
export class CleanIntentResponse extends jspb.Message {
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
212
|
+
getCleanedIntent(): ondewo_nlu_intent_pb.Intent | undefined;
|
|
213
|
+
setCleanedIntent(value?: ondewo_nlu_intent_pb.Intent): CleanIntentResponse;
|
|
214
|
+
hasCleanedIntent(): boolean;
|
|
215
|
+
clearCleanedIntent(): CleanIntentResponse;
|
|
227
216
|
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
217
|
+
getIntentUpdate(): IntentUpdate | undefined;
|
|
218
|
+
setIntentUpdate(value?: IntentUpdate): CleanIntentResponse;
|
|
219
|
+
hasIntentUpdate(): boolean;
|
|
220
|
+
clearIntentUpdate(): CleanIntentResponse;
|
|
232
221
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
222
|
+
serializeBinary(): Uint8Array;
|
|
223
|
+
toObject(includeInstance?: boolean): CleanIntentResponse.AsObject;
|
|
224
|
+
static toObject(includeInstance: boolean, msg: CleanIntentResponse): CleanIntentResponse.AsObject;
|
|
225
|
+
static serializeBinaryToWriter(message: CleanIntentResponse, writer: jspb.BinaryWriter): void;
|
|
226
|
+
static deserializeBinary(bytes: Uint8Array): CleanIntentResponse;
|
|
227
|
+
static deserializeBinaryFromReader(message: CleanIntentResponse, reader: jspb.BinaryReader): CleanIntentResponse;
|
|
239
228
|
}
|
|
240
229
|
|
|
241
230
|
export namespace CleanIntentResponse {
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
231
|
+
export type AsObject = {
|
|
232
|
+
cleanedIntent?: ondewo_nlu_intent_pb.Intent.AsObject,
|
|
233
|
+
intentUpdate?: IntentUpdate.AsObject,
|
|
234
|
+
}
|
|
246
235
|
}
|
|
247
236
|
|
|
248
237
|
export class TrainingPhraseCleanerOptions extends jspb.Message {
|
|
249
|
-
|
|
250
|
-
|
|
238
|
+
getDeleteRepeatedWhitespaces(): boolean;
|
|
239
|
+
setDeleteRepeatedWhitespaces(value: boolean): TrainingPhraseCleanerOptions;
|
|
251
240
|
|
|
252
|
-
|
|
253
|
-
|
|
241
|
+
getDeleteLeadingSpecialCharacters(): boolean;
|
|
242
|
+
setDeleteLeadingSpecialCharacters(value: boolean): TrainingPhraseCleanerOptions;
|
|
254
243
|
|
|
255
|
-
|
|
256
|
-
|
|
244
|
+
getDeleteTrailingSpecialCharacters(): boolean;
|
|
245
|
+
setDeleteTrailingSpecialCharacters(value: boolean): TrainingPhraseCleanerOptions;
|
|
257
246
|
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
message: TrainingPhraseCleanerOptions,
|
|
265
|
-
reader: jspb.BinaryReader
|
|
266
|
-
): TrainingPhraseCleanerOptions;
|
|
247
|
+
serializeBinary(): Uint8Array;
|
|
248
|
+
toObject(includeInstance?: boolean): TrainingPhraseCleanerOptions.AsObject;
|
|
249
|
+
static toObject(includeInstance: boolean, msg: TrainingPhraseCleanerOptions): TrainingPhraseCleanerOptions.AsObject;
|
|
250
|
+
static serializeBinaryToWriter(message: TrainingPhraseCleanerOptions, writer: jspb.BinaryWriter): void;
|
|
251
|
+
static deserializeBinary(bytes: Uint8Array): TrainingPhraseCleanerOptions;
|
|
252
|
+
static deserializeBinaryFromReader(message: TrainingPhraseCleanerOptions, reader: jspb.BinaryReader): TrainingPhraseCleanerOptions;
|
|
267
253
|
}
|
|
268
254
|
|
|
269
255
|
export namespace TrainingPhraseCleanerOptions {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
256
|
+
export type AsObject = {
|
|
257
|
+
deleteRepeatedWhitespaces: boolean,
|
|
258
|
+
deleteLeadingSpecialCharacters: boolean,
|
|
259
|
+
deleteTrailingSpecialCharacters: boolean,
|
|
260
|
+
}
|
|
275
261
|
}
|
|
276
262
|
|
|
277
263
|
export class StringUpdate extends jspb.Message {
|
|
278
|
-
|
|
279
|
-
|
|
264
|
+
getNew(): string;
|
|
265
|
+
setNew(value: string): StringUpdate;
|
|
280
266
|
|
|
281
|
-
|
|
282
|
-
|
|
267
|
+
getOld(): string;
|
|
268
|
+
setOld(value: string): StringUpdate;
|
|
283
269
|
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
270
|
+
serializeBinary(): Uint8Array;
|
|
271
|
+
toObject(includeInstance?: boolean): StringUpdate.AsObject;
|
|
272
|
+
static toObject(includeInstance: boolean, msg: StringUpdate): StringUpdate.AsObject;
|
|
273
|
+
static serializeBinaryToWriter(message: StringUpdate, writer: jspb.BinaryWriter): void;
|
|
274
|
+
static deserializeBinary(bytes: Uint8Array): StringUpdate;
|
|
275
|
+
static deserializeBinaryFromReader(message: StringUpdate, reader: jspb.BinaryReader): StringUpdate;
|
|
290
276
|
}
|
|
291
277
|
|
|
292
278
|
export namespace StringUpdate {
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
279
|
+
export type AsObject = {
|
|
280
|
+
pb_new: string,
|
|
281
|
+
old: string,
|
|
282
|
+
}
|
|
297
283
|
}
|
|
298
284
|
|
|
299
285
|
export class IntentUpdate extends jspb.Message {
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
static serializeBinaryToWriter(message: IntentUpdate, writer: jspb.BinaryWriter): void;
|
|
320
|
-
static deserializeBinary(bytes: Uint8Array): IntentUpdate;
|
|
321
|
-
static deserializeBinaryFromReader(message: IntentUpdate, reader: jspb.BinaryReader): IntentUpdate;
|
|
286
|
+
getIntentDisplayName(): string;
|
|
287
|
+
setIntentDisplayName(value: string): IntentUpdate;
|
|
288
|
+
|
|
289
|
+
getTrainingPhraseUpdateListList(): Array<IntentUpdate.TrainingPhraseUpdate>;
|
|
290
|
+
setTrainingPhraseUpdateListList(value: Array<IntentUpdate.TrainingPhraseUpdate>): IntentUpdate;
|
|
291
|
+
clearTrainingPhraseUpdateListList(): IntentUpdate;
|
|
292
|
+
addTrainingPhraseUpdateList(value?: IntentUpdate.TrainingPhraseUpdate, index?: number): IntentUpdate.TrainingPhraseUpdate;
|
|
293
|
+
|
|
294
|
+
getDeletedParametersList(): Array<string>;
|
|
295
|
+
setDeletedParametersList(value: Array<string>): IntentUpdate;
|
|
296
|
+
clearDeletedParametersList(): IntentUpdate;
|
|
297
|
+
addDeletedParameters(value: string, index?: number): IntentUpdate;
|
|
298
|
+
|
|
299
|
+
serializeBinary(): Uint8Array;
|
|
300
|
+
toObject(includeInstance?: boolean): IntentUpdate.AsObject;
|
|
301
|
+
static toObject(includeInstance: boolean, msg: IntentUpdate): IntentUpdate.AsObject;
|
|
302
|
+
static serializeBinaryToWriter(message: IntentUpdate, writer: jspb.BinaryWriter): void;
|
|
303
|
+
static deserializeBinary(bytes: Uint8Array): IntentUpdate;
|
|
304
|
+
static deserializeBinaryFromReader(message: IntentUpdate, reader: jspb.BinaryReader): IntentUpdate;
|
|
322
305
|
}
|
|
323
306
|
|
|
324
307
|
export namespace IntentUpdate {
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
308
|
+
export type AsObject = {
|
|
309
|
+
intentDisplayName: string,
|
|
310
|
+
trainingPhraseUpdateListList: Array<IntentUpdate.TrainingPhraseUpdate.AsObject>,
|
|
311
|
+
deletedParametersList: Array<string>,
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
export class TrainingPhraseUpdate extends jspb.Message {
|
|
315
|
+
getTrainingPhraseUpdate(): StringUpdate | undefined;
|
|
316
|
+
setTrainingPhraseUpdate(value?: StringUpdate): TrainingPhraseUpdate;
|
|
317
|
+
hasTrainingPhraseUpdate(): boolean;
|
|
318
|
+
clearTrainingPhraseUpdate(): TrainingPhraseUpdate;
|
|
319
|
+
|
|
320
|
+
getEntityUpdatesList(): Array<StringUpdate>;
|
|
321
|
+
setEntityUpdatesList(value: Array<StringUpdate>): TrainingPhraseUpdate;
|
|
322
|
+
clearEntityUpdatesList(): TrainingPhraseUpdate;
|
|
323
|
+
addEntityUpdates(value?: StringUpdate, index?: number): StringUpdate;
|
|
324
|
+
|
|
325
|
+
getEntitiesReannotatedList(): Array<string>;
|
|
326
|
+
setEntitiesReannotatedList(value: Array<string>): TrainingPhraseUpdate;
|
|
327
|
+
clearEntitiesReannotatedList(): TrainingPhraseUpdate;
|
|
328
|
+
addEntitiesReannotated(value: string, index?: number): TrainingPhraseUpdate;
|
|
329
|
+
|
|
330
|
+
getContainsUpdateVariable(): boolean;
|
|
331
|
+
setContainsUpdateVariable(value: boolean): TrainingPhraseUpdate;
|
|
332
|
+
|
|
333
|
+
serializeBinary(): Uint8Array;
|
|
334
|
+
toObject(includeInstance?: boolean): TrainingPhraseUpdate.AsObject;
|
|
335
|
+
static toObject(includeInstance: boolean, msg: TrainingPhraseUpdate): TrainingPhraseUpdate.AsObject;
|
|
336
|
+
static serializeBinaryToWriter(message: TrainingPhraseUpdate, writer: jspb.BinaryWriter): void;
|
|
337
|
+
static deserializeBinary(bytes: Uint8Array): TrainingPhraseUpdate;
|
|
338
|
+
static deserializeBinaryFromReader(message: TrainingPhraseUpdate, reader: jspb.BinaryReader): TrainingPhraseUpdate;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
export namespace TrainingPhraseUpdate {
|
|
342
|
+
export type AsObject = {
|
|
343
|
+
trainingPhraseUpdate?: StringUpdate.AsObject,
|
|
344
|
+
entityUpdatesList: Array<StringUpdate.AsObject>,
|
|
345
|
+
entitiesReannotatedList: Array<string>,
|
|
346
|
+
containsUpdateVariable: boolean,
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
|
|
366
350
|
}
|
|
367
351
|
|
|
368
352
|
export class EntityTypeUpdate extends jspb.Message {
|
|
369
|
-
|
|
370
|
-
|
|
353
|
+
getEntityTypeName(): string;
|
|
354
|
+
setEntityTypeName(value: string): EntityTypeUpdate;
|
|
371
355
|
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
356
|
+
getValuesUpdateListList(): Array<EntityTypeUpdate.EntityUpdate>;
|
|
357
|
+
setValuesUpdateListList(value: Array<EntityTypeUpdate.EntityUpdate>): EntityTypeUpdate;
|
|
358
|
+
clearValuesUpdateListList(): EntityTypeUpdate;
|
|
359
|
+
addValuesUpdateList(value?: EntityTypeUpdate.EntityUpdate, index?: number): EntityTypeUpdate.EntityUpdate;
|
|
376
360
|
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
361
|
+
serializeBinary(): Uint8Array;
|
|
362
|
+
toObject(includeInstance?: boolean): EntityTypeUpdate.AsObject;
|
|
363
|
+
static toObject(includeInstance: boolean, msg: EntityTypeUpdate): EntityTypeUpdate.AsObject;
|
|
364
|
+
static serializeBinaryToWriter(message: EntityTypeUpdate, writer: jspb.BinaryWriter): void;
|
|
365
|
+
static deserializeBinary(bytes: Uint8Array): EntityTypeUpdate;
|
|
366
|
+
static deserializeBinaryFromReader(message: EntityTypeUpdate, reader: jspb.BinaryReader): EntityTypeUpdate;
|
|
383
367
|
}
|
|
384
368
|
|
|
385
369
|
export namespace EntityTypeUpdate {
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
370
|
+
export type AsObject = {
|
|
371
|
+
entityTypeName: string,
|
|
372
|
+
valuesUpdateListList: Array<EntityTypeUpdate.EntityUpdate.AsObject>,
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
export class EntityUpdate extends jspb.Message {
|
|
376
|
+
getEntityValueUpdate(): StringUpdate | undefined;
|
|
377
|
+
setEntityValueUpdate(value?: StringUpdate): EntityUpdate;
|
|
378
|
+
hasEntityValueUpdate(): boolean;
|
|
379
|
+
clearEntityValueUpdate(): EntityUpdate;
|
|
380
|
+
|
|
381
|
+
getEntitySynonymUpdatesList(): Array<StringUpdate>;
|
|
382
|
+
setEntitySynonymUpdatesList(value: Array<StringUpdate>): EntityUpdate;
|
|
383
|
+
clearEntitySynonymUpdatesList(): EntityUpdate;
|
|
384
|
+
addEntitySynonymUpdates(value?: StringUpdate, index?: number): StringUpdate;
|
|
385
|
+
|
|
386
|
+
serializeBinary(): Uint8Array;
|
|
387
|
+
toObject(includeInstance?: boolean): EntityUpdate.AsObject;
|
|
388
|
+
static toObject(includeInstance: boolean, msg: EntityUpdate): EntityUpdate.AsObject;
|
|
389
|
+
static serializeBinaryToWriter(message: EntityUpdate, writer: jspb.BinaryWriter): void;
|
|
390
|
+
static deserializeBinary(bytes: Uint8Array): EntityUpdate;
|
|
391
|
+
static deserializeBinaryFromReader(message: EntityUpdate, reader: jspb.BinaryReader): EntityUpdate;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
export namespace EntityUpdate {
|
|
395
|
+
export type AsObject = {
|
|
396
|
+
entityValueUpdate?: StringUpdate.AsObject,
|
|
397
|
+
entitySynonymUpdatesList: Array<StringUpdate.AsObject>,
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
|
|
416
401
|
}
|
|
417
402
|
|
|
418
403
|
export class CleanAllEntityTypesRequest extends jspb.Message {
|
|
419
|
-
|
|
420
|
-
|
|
404
|
+
getParent(): string;
|
|
405
|
+
setParent(value: string): CleanAllEntityTypesRequest;
|
|
421
406
|
|
|
422
|
-
|
|
423
|
-
|
|
407
|
+
getLanguageCode(): string;
|
|
408
|
+
setLanguageCode(value: string): CleanAllEntityTypesRequest;
|
|
424
409
|
|
|
425
|
-
|
|
426
|
-
|
|
410
|
+
getSpecialCharacters(): string;
|
|
411
|
+
setSpecialCharacters(value: string): CleanAllEntityTypesRequest;
|
|
427
412
|
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
413
|
+
getSubstringWhiteListList(): Array<string>;
|
|
414
|
+
setSubstringWhiteListList(value: Array<string>): CleanAllEntityTypesRequest;
|
|
415
|
+
clearSubstringWhiteListList(): CleanAllEntityTypesRequest;
|
|
416
|
+
addSubstringWhiteList(value: string, index?: number): CleanAllEntityTypesRequest;
|
|
432
417
|
|
|
433
|
-
|
|
434
|
-
|
|
418
|
+
getMaxEntityCountUpdate(): number;
|
|
419
|
+
setMaxEntityCountUpdate(value: number): CleanAllEntityTypesRequest;
|
|
435
420
|
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
421
|
+
getForbiddenEntityTypePatternsList(): Array<string>;
|
|
422
|
+
setForbiddenEntityTypePatternsList(value: Array<string>): CleanAllEntityTypesRequest;
|
|
423
|
+
clearForbiddenEntityTypePatternsList(): CleanAllEntityTypesRequest;
|
|
424
|
+
addForbiddenEntityTypePatterns(value: string, index?: number): CleanAllEntityTypesRequest;
|
|
440
425
|
|
|
441
|
-
|
|
442
|
-
|
|
426
|
+
getDryRun(): boolean;
|
|
427
|
+
setDryRun(value: boolean): CleanAllEntityTypesRequest;
|
|
443
428
|
|
|
444
|
-
|
|
445
|
-
|
|
429
|
+
getNumberOfWorkers(): number;
|
|
430
|
+
setNumberOfWorkers(value: number): CleanAllEntityTypesRequest;
|
|
446
431
|
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
message: CleanAllEntityTypesRequest,
|
|
454
|
-
reader: jspb.BinaryReader
|
|
455
|
-
): CleanAllEntityTypesRequest;
|
|
432
|
+
serializeBinary(): Uint8Array;
|
|
433
|
+
toObject(includeInstance?: boolean): CleanAllEntityTypesRequest.AsObject;
|
|
434
|
+
static toObject(includeInstance: boolean, msg: CleanAllEntityTypesRequest): CleanAllEntityTypesRequest.AsObject;
|
|
435
|
+
static serializeBinaryToWriter(message: CleanAllEntityTypesRequest, writer: jspb.BinaryWriter): void;
|
|
436
|
+
static deserializeBinary(bytes: Uint8Array): CleanAllEntityTypesRequest;
|
|
437
|
+
static deserializeBinaryFromReader(message: CleanAllEntityTypesRequest, reader: jspb.BinaryReader): CleanAllEntityTypesRequest;
|
|
456
438
|
}
|
|
457
439
|
|
|
458
440
|
export namespace CleanAllEntityTypesRequest {
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
441
|
+
export type AsObject = {
|
|
442
|
+
parent: string,
|
|
443
|
+
languageCode: string,
|
|
444
|
+
specialCharacters: string,
|
|
445
|
+
substringWhiteListList: Array<string>,
|
|
446
|
+
maxEntityCountUpdate: number,
|
|
447
|
+
forbiddenEntityTypePatternsList: Array<string>,
|
|
448
|
+
dryRun: boolean,
|
|
449
|
+
numberOfWorkers: number,
|
|
450
|
+
}
|
|
469
451
|
}
|
|
470
452
|
|
|
471
453
|
export class CleanAllEntityTypesResponse extends jspb.Message {
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
serializeBinary(): Uint8Array;
|
|
499
|
-
toObject(includeInstance?: boolean): CleanAllEntityTypesResponse.AsObject;
|
|
500
|
-
static toObject(includeInstance: boolean, msg: CleanAllEntityTypesResponse): CleanAllEntityTypesResponse.AsObject;
|
|
501
|
-
static serializeBinaryToWriter(message: CleanAllEntityTypesResponse, writer: jspb.BinaryWriter): void;
|
|
502
|
-
static deserializeBinary(bytes: Uint8Array): CleanAllEntityTypesResponse;
|
|
503
|
-
static deserializeBinaryFromReader(
|
|
504
|
-
message: CleanAllEntityTypesResponse,
|
|
505
|
-
reader: jspb.BinaryReader
|
|
506
|
-
): CleanAllEntityTypesResponse;
|
|
454
|
+
getCleanedEntityTypesList(): Array<ondewo_nlu_entity_type_pb.EntityType>;
|
|
455
|
+
setCleanedEntityTypesList(value: Array<ondewo_nlu_entity_type_pb.EntityType>): CleanAllEntityTypesResponse;
|
|
456
|
+
clearCleanedEntityTypesList(): CleanAllEntityTypesResponse;
|
|
457
|
+
addCleanedEntityTypes(value?: ondewo_nlu_entity_type_pb.EntityType, index?: number): ondewo_nlu_entity_type_pb.EntityType;
|
|
458
|
+
|
|
459
|
+
getDeletedEntityTypesList(): Array<ondewo_nlu_entity_type_pb.EntityType>;
|
|
460
|
+
setDeletedEntityTypesList(value: Array<ondewo_nlu_entity_type_pb.EntityType>): CleanAllEntityTypesResponse;
|
|
461
|
+
clearDeletedEntityTypesList(): CleanAllEntityTypesResponse;
|
|
462
|
+
addDeletedEntityTypes(value?: ondewo_nlu_entity_type_pb.EntityType, index?: number): ondewo_nlu_entity_type_pb.EntityType;
|
|
463
|
+
|
|
464
|
+
getEntityTypeUpdatesList(): Array<EntityTypeUpdate>;
|
|
465
|
+
setEntityTypeUpdatesList(value: Array<EntityTypeUpdate>): CleanAllEntityTypesResponse;
|
|
466
|
+
clearEntityTypeUpdatesList(): CleanAllEntityTypesResponse;
|
|
467
|
+
addEntityTypeUpdates(value?: EntityTypeUpdate, index?: number): EntityTypeUpdate;
|
|
468
|
+
|
|
469
|
+
getEntityTypeDeletionsList(): Array<EntityTypeUpdate>;
|
|
470
|
+
setEntityTypeDeletionsList(value: Array<EntityTypeUpdate>): CleanAllEntityTypesResponse;
|
|
471
|
+
clearEntityTypeDeletionsList(): CleanAllEntityTypesResponse;
|
|
472
|
+
addEntityTypeDeletions(value?: EntityTypeUpdate, index?: number): EntityTypeUpdate;
|
|
473
|
+
|
|
474
|
+
serializeBinary(): Uint8Array;
|
|
475
|
+
toObject(includeInstance?: boolean): CleanAllEntityTypesResponse.AsObject;
|
|
476
|
+
static toObject(includeInstance: boolean, msg: CleanAllEntityTypesResponse): CleanAllEntityTypesResponse.AsObject;
|
|
477
|
+
static serializeBinaryToWriter(message: CleanAllEntityTypesResponse, writer: jspb.BinaryWriter): void;
|
|
478
|
+
static deserializeBinary(bytes: Uint8Array): CleanAllEntityTypesResponse;
|
|
479
|
+
static deserializeBinaryFromReader(message: CleanAllEntityTypesResponse, reader: jspb.BinaryReader): CleanAllEntityTypesResponse;
|
|
507
480
|
}
|
|
508
481
|
|
|
509
482
|
export namespace CleanAllEntityTypesResponse {
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
483
|
+
export type AsObject = {
|
|
484
|
+
cleanedEntityTypesList: Array<ondewo_nlu_entity_type_pb.EntityType.AsObject>,
|
|
485
|
+
deletedEntityTypesList: Array<ondewo_nlu_entity_type_pb.EntityType.AsObject>,
|
|
486
|
+
entityTypeUpdatesList: Array<EntityTypeUpdate.AsObject>,
|
|
487
|
+
entityTypeDeletionsList: Array<EntityTypeUpdate.AsObject>,
|
|
488
|
+
}
|
|
516
489
|
}
|
|
517
490
|
|
|
518
491
|
export class CleanEntityTypeRequest extends jspb.Message {
|
|
519
|
-
|
|
520
|
-
|
|
492
|
+
getParent(): string;
|
|
493
|
+
setParent(value: string): CleanEntityTypeRequest;
|
|
521
494
|
|
|
522
|
-
|
|
523
|
-
|
|
495
|
+
getEntityTypeName(): string;
|
|
496
|
+
setEntityTypeName(value: string): CleanEntityTypeRequest;
|
|
524
497
|
|
|
525
|
-
|
|
526
|
-
|
|
498
|
+
getLanguageCode(): string;
|
|
499
|
+
setLanguageCode(value: string): CleanEntityTypeRequest;
|
|
527
500
|
|
|
528
|
-
|
|
529
|
-
|
|
501
|
+
getSpecialCharacters(): string;
|
|
502
|
+
setSpecialCharacters(value: string): CleanEntityTypeRequest;
|
|
530
503
|
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
504
|
+
getSubstringWhiteListList(): Array<string>;
|
|
505
|
+
setSubstringWhiteListList(value: Array<string>): CleanEntityTypeRequest;
|
|
506
|
+
clearSubstringWhiteListList(): CleanEntityTypeRequest;
|
|
507
|
+
addSubstringWhiteList(value: string, index?: number): CleanEntityTypeRequest;
|
|
535
508
|
|
|
536
|
-
|
|
537
|
-
|
|
509
|
+
getMaxEntityCountUpdate(): number;
|
|
510
|
+
setMaxEntityCountUpdate(value: number): CleanEntityTypeRequest;
|
|
538
511
|
|
|
539
|
-
|
|
540
|
-
|
|
512
|
+
getDryRun(): boolean;
|
|
513
|
+
setDryRun(value: boolean): CleanEntityTypeRequest;
|
|
541
514
|
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
message: CleanEntityTypeRequest,
|
|
549
|
-
reader: jspb.BinaryReader
|
|
550
|
-
): CleanEntityTypeRequest;
|
|
515
|
+
serializeBinary(): Uint8Array;
|
|
516
|
+
toObject(includeInstance?: boolean): CleanEntityTypeRequest.AsObject;
|
|
517
|
+
static toObject(includeInstance: boolean, msg: CleanEntityTypeRequest): CleanEntityTypeRequest.AsObject;
|
|
518
|
+
static serializeBinaryToWriter(message: CleanEntityTypeRequest, writer: jspb.BinaryWriter): void;
|
|
519
|
+
static deserializeBinary(bytes: Uint8Array): CleanEntityTypeRequest;
|
|
520
|
+
static deserializeBinaryFromReader(message: CleanEntityTypeRequest, reader: jspb.BinaryReader): CleanEntityTypeRequest;
|
|
551
521
|
}
|
|
552
522
|
|
|
553
523
|
export namespace CleanEntityTypeRequest {
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
524
|
+
export type AsObject = {
|
|
525
|
+
parent: string,
|
|
526
|
+
entityTypeName: string,
|
|
527
|
+
languageCode: string,
|
|
528
|
+
specialCharacters: string,
|
|
529
|
+
substringWhiteListList: Array<string>,
|
|
530
|
+
maxEntityCountUpdate: number,
|
|
531
|
+
dryRun: boolean,
|
|
532
|
+
}
|
|
563
533
|
}
|
|
564
534
|
|
|
565
535
|
export class CleanEntityTypeResponse extends jspb.Message {
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
message: CleanEntityTypeResponse,
|
|
583
|
-
reader: jspb.BinaryReader
|
|
584
|
-
): CleanEntityTypeResponse;
|
|
536
|
+
getCleanedEntityType(): ondewo_nlu_entity_type_pb.EntityType | undefined;
|
|
537
|
+
setCleanedEntityType(value?: ondewo_nlu_entity_type_pb.EntityType): CleanEntityTypeResponse;
|
|
538
|
+
hasCleanedEntityType(): boolean;
|
|
539
|
+
clearCleanedEntityType(): CleanEntityTypeResponse;
|
|
540
|
+
|
|
541
|
+
getEntityTypeUpdate(): EntityTypeUpdate | undefined;
|
|
542
|
+
setEntityTypeUpdate(value?: EntityTypeUpdate): CleanEntityTypeResponse;
|
|
543
|
+
hasEntityTypeUpdate(): boolean;
|
|
544
|
+
clearEntityTypeUpdate(): CleanEntityTypeResponse;
|
|
545
|
+
|
|
546
|
+
serializeBinary(): Uint8Array;
|
|
547
|
+
toObject(includeInstance?: boolean): CleanEntityTypeResponse.AsObject;
|
|
548
|
+
static toObject(includeInstance: boolean, msg: CleanEntityTypeResponse): CleanEntityTypeResponse.AsObject;
|
|
549
|
+
static serializeBinaryToWriter(message: CleanEntityTypeResponse, writer: jspb.BinaryWriter): void;
|
|
550
|
+
static deserializeBinary(bytes: Uint8Array): CleanEntityTypeResponse;
|
|
551
|
+
static deserializeBinaryFromReader(message: CleanEntityTypeResponse, reader: jspb.BinaryReader): CleanEntityTypeResponse;
|
|
585
552
|
}
|
|
586
553
|
|
|
587
554
|
export namespace CleanEntityTypeResponse {
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
555
|
+
export type AsObject = {
|
|
556
|
+
cleanedEntityType?: ondewo_nlu_entity_type_pb.EntityType.AsObject,
|
|
557
|
+
entityTypeUpdate?: EntityTypeUpdate.AsObject,
|
|
558
|
+
}
|
|
592
559
|
}
|
|
593
560
|
|
|
594
561
|
export class AddTrainingPhrasesRequest extends jspb.Message {
|
|
595
|
-
|
|
596
|
-
|
|
562
|
+
getParent(): string;
|
|
563
|
+
setParent(value: string): AddTrainingPhrasesRequest;
|
|
597
564
|
|
|
598
|
-
|
|
599
|
-
|
|
565
|
+
getLanguageCode(): string;
|
|
566
|
+
setLanguageCode(value: string): AddTrainingPhrasesRequest;
|
|
600
567
|
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
value?: AddTrainingPhrasesRequest.TrainingPhraseForIntent,
|
|
606
|
-
index?: number
|
|
607
|
-
): AddTrainingPhrasesRequest.TrainingPhraseForIntent;
|
|
568
|
+
getTrainingPhraseListList(): Array<AddTrainingPhrasesRequest.TrainingPhraseForIntent>;
|
|
569
|
+
setTrainingPhraseListList(value: Array<AddTrainingPhrasesRequest.TrainingPhraseForIntent>): AddTrainingPhrasesRequest;
|
|
570
|
+
clearTrainingPhraseListList(): AddTrainingPhrasesRequest;
|
|
571
|
+
addTrainingPhraseList(value?: AddTrainingPhrasesRequest.TrainingPhraseForIntent, index?: number): AddTrainingPhrasesRequest.TrainingPhraseForIntent;
|
|
608
572
|
|
|
609
|
-
|
|
610
|
-
|
|
573
|
+
getExtractEntities(): boolean;
|
|
574
|
+
setExtractEntities(value: boolean): AddTrainingPhrasesRequest;
|
|
611
575
|
|
|
612
|
-
|
|
613
|
-
|
|
576
|
+
getSpecialCharacters(): string;
|
|
577
|
+
setSpecialCharacters(value: string): AddTrainingPhrasesRequest;
|
|
614
578
|
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
579
|
+
getTrainingPhraseCleanerOptions(): TrainingPhraseCleanerOptions | undefined;
|
|
580
|
+
setTrainingPhraseCleanerOptions(value?: TrainingPhraseCleanerOptions): AddTrainingPhrasesRequest;
|
|
581
|
+
hasTrainingPhraseCleanerOptions(): boolean;
|
|
582
|
+
clearTrainingPhraseCleanerOptions(): AddTrainingPhrasesRequest;
|
|
619
583
|
|
|
620
|
-
|
|
621
|
-
|
|
584
|
+
getNumberOfWorkers(): number;
|
|
585
|
+
setNumberOfWorkers(value: number): AddTrainingPhrasesRequest;
|
|
622
586
|
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
message: AddTrainingPhrasesRequest,
|
|
630
|
-
reader: jspb.BinaryReader
|
|
631
|
-
): AddTrainingPhrasesRequest;
|
|
587
|
+
serializeBinary(): Uint8Array;
|
|
588
|
+
toObject(includeInstance?: boolean): AddTrainingPhrasesRequest.AsObject;
|
|
589
|
+
static toObject(includeInstance: boolean, msg: AddTrainingPhrasesRequest): AddTrainingPhrasesRequest.AsObject;
|
|
590
|
+
static serializeBinaryToWriter(message: AddTrainingPhrasesRequest, writer: jspb.BinaryWriter): void;
|
|
591
|
+
static deserializeBinary(bytes: Uint8Array): AddTrainingPhrasesRequest;
|
|
592
|
+
static deserializeBinaryFromReader(message: AddTrainingPhrasesRequest, reader: jspb.BinaryReader): AddTrainingPhrasesRequest;
|
|
632
593
|
}
|
|
633
594
|
|
|
634
595
|
export namespace AddTrainingPhrasesRequest {
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
trainingPhrase: string;
|
|
674
|
-
intentDisplayName: string;
|
|
675
|
-
entitiesList: Array<ondewo_nlu_intent_pb.Intent.TrainingPhrase.Entity.AsObject>;
|
|
676
|
-
};
|
|
677
|
-
}
|
|
596
|
+
export type AsObject = {
|
|
597
|
+
parent: string,
|
|
598
|
+
languageCode: string,
|
|
599
|
+
trainingPhraseListList: Array<AddTrainingPhrasesRequest.TrainingPhraseForIntent.AsObject>,
|
|
600
|
+
extractEntities: boolean,
|
|
601
|
+
specialCharacters: string,
|
|
602
|
+
trainingPhraseCleanerOptions?: TrainingPhraseCleanerOptions.AsObject,
|
|
603
|
+
numberOfWorkers: number,
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
export class TrainingPhraseForIntent extends jspb.Message {
|
|
607
|
+
getTrainingPhrase(): string;
|
|
608
|
+
setTrainingPhrase(value: string): TrainingPhraseForIntent;
|
|
609
|
+
|
|
610
|
+
getIntentDisplayName(): string;
|
|
611
|
+
setIntentDisplayName(value: string): TrainingPhraseForIntent;
|
|
612
|
+
|
|
613
|
+
getEntitiesList(): Array<ondewo_nlu_intent_pb.Intent.TrainingPhrase.Entity>;
|
|
614
|
+
setEntitiesList(value: Array<ondewo_nlu_intent_pb.Intent.TrainingPhrase.Entity>): TrainingPhraseForIntent;
|
|
615
|
+
clearEntitiesList(): TrainingPhraseForIntent;
|
|
616
|
+
addEntities(value?: ondewo_nlu_intent_pb.Intent.TrainingPhrase.Entity, index?: number): ondewo_nlu_intent_pb.Intent.TrainingPhrase.Entity;
|
|
617
|
+
|
|
618
|
+
serializeBinary(): Uint8Array;
|
|
619
|
+
toObject(includeInstance?: boolean): TrainingPhraseForIntent.AsObject;
|
|
620
|
+
static toObject(includeInstance: boolean, msg: TrainingPhraseForIntent): TrainingPhraseForIntent.AsObject;
|
|
621
|
+
static serializeBinaryToWriter(message: TrainingPhraseForIntent, writer: jspb.BinaryWriter): void;
|
|
622
|
+
static deserializeBinary(bytes: Uint8Array): TrainingPhraseForIntent;
|
|
623
|
+
static deserializeBinaryFromReader(message: TrainingPhraseForIntent, reader: jspb.BinaryReader): TrainingPhraseForIntent;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
export namespace TrainingPhraseForIntent {
|
|
627
|
+
export type AsObject = {
|
|
628
|
+
trainingPhrase: string,
|
|
629
|
+
intentDisplayName: string,
|
|
630
|
+
entitiesList: Array<ondewo_nlu_intent_pb.Intent.TrainingPhrase.Entity.AsObject>,
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
|
|
678
634
|
}
|
|
679
635
|
|
|
680
636
|
export class AddTrainingPhrasesResponse extends jspb.Message {
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
message: AddTrainingPhrasesResponse,
|
|
693
|
-
reader: jspb.BinaryReader
|
|
694
|
-
): AddTrainingPhrasesResponse;
|
|
637
|
+
getErrorMessagesList(): Array<string>;
|
|
638
|
+
setErrorMessagesList(value: Array<string>): AddTrainingPhrasesResponse;
|
|
639
|
+
clearErrorMessagesList(): AddTrainingPhrasesResponse;
|
|
640
|
+
addErrorMessages(value: string, index?: number): AddTrainingPhrasesResponse;
|
|
641
|
+
|
|
642
|
+
serializeBinary(): Uint8Array;
|
|
643
|
+
toObject(includeInstance?: boolean): AddTrainingPhrasesResponse.AsObject;
|
|
644
|
+
static toObject(includeInstance: boolean, msg: AddTrainingPhrasesResponse): AddTrainingPhrasesResponse.AsObject;
|
|
645
|
+
static serializeBinaryToWriter(message: AddTrainingPhrasesResponse, writer: jspb.BinaryWriter): void;
|
|
646
|
+
static deserializeBinary(bytes: Uint8Array): AddTrainingPhrasesResponse;
|
|
647
|
+
static deserializeBinaryFromReader(message: AddTrainingPhrasesResponse, reader: jspb.BinaryReader): AddTrainingPhrasesResponse;
|
|
695
648
|
}
|
|
696
649
|
|
|
697
650
|
export namespace AddTrainingPhrasesResponse {
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
651
|
+
export type AsObject = {
|
|
652
|
+
errorMessagesList: Array<string>,
|
|
653
|
+
}
|
|
701
654
|
}
|
|
702
655
|
|
|
703
656
|
export class AddTrainingPhrasesFromCSVRequest extends jspb.Message {
|
|
704
|
-
|
|
705
|
-
|
|
657
|
+
getParent(): string;
|
|
658
|
+
setParent(value: string): AddTrainingPhrasesFromCSVRequest;
|
|
706
659
|
|
|
707
|
-
|
|
708
|
-
|
|
660
|
+
getLanguageCode(): string;
|
|
661
|
+
setLanguageCode(value: string): AddTrainingPhrasesFromCSVRequest;
|
|
709
662
|
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
663
|
+
getCsvContents(): Uint8Array | string;
|
|
664
|
+
getCsvContents_asU8(): Uint8Array;
|
|
665
|
+
getCsvContents_asB64(): string;
|
|
666
|
+
setCsvContents(value: Uint8Array | string): AddTrainingPhrasesFromCSVRequest;
|
|
714
667
|
|
|
715
|
-
|
|
716
|
-
|
|
668
|
+
getExtractEntities(): boolean;
|
|
669
|
+
setExtractEntities(value: boolean): AddTrainingPhrasesFromCSVRequest;
|
|
717
670
|
|
|
718
|
-
|
|
719
|
-
|
|
671
|
+
getSpecialCharacters(): string;
|
|
672
|
+
setSpecialCharacters(value: string): AddTrainingPhrasesFromCSVRequest;
|
|
720
673
|
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
674
|
+
getTrainingPhraseCleanerOptions(): TrainingPhraseCleanerOptions | undefined;
|
|
675
|
+
setTrainingPhraseCleanerOptions(value?: TrainingPhraseCleanerOptions): AddTrainingPhrasesFromCSVRequest;
|
|
676
|
+
hasTrainingPhraseCleanerOptions(): boolean;
|
|
677
|
+
clearTrainingPhraseCleanerOptions(): AddTrainingPhrasesFromCSVRequest;
|
|
725
678
|
|
|
726
|
-
|
|
727
|
-
|
|
679
|
+
getNumberOfWorkers(): number;
|
|
680
|
+
setNumberOfWorkers(value: number): AddTrainingPhrasesFromCSVRequest;
|
|
728
681
|
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
static serializeBinaryToWriter(message: AddTrainingPhrasesFromCSVRequest, writer: jspb.BinaryWriter): void;
|
|
736
|
-
static deserializeBinary(bytes: Uint8Array): AddTrainingPhrasesFromCSVRequest;
|
|
737
|
-
static deserializeBinaryFromReader(
|
|
738
|
-
message: AddTrainingPhrasesFromCSVRequest,
|
|
739
|
-
reader: jspb.BinaryReader
|
|
740
|
-
): AddTrainingPhrasesFromCSVRequest;
|
|
682
|
+
serializeBinary(): Uint8Array;
|
|
683
|
+
toObject(includeInstance?: boolean): AddTrainingPhrasesFromCSVRequest.AsObject;
|
|
684
|
+
static toObject(includeInstance: boolean, msg: AddTrainingPhrasesFromCSVRequest): AddTrainingPhrasesFromCSVRequest.AsObject;
|
|
685
|
+
static serializeBinaryToWriter(message: AddTrainingPhrasesFromCSVRequest, writer: jspb.BinaryWriter): void;
|
|
686
|
+
static deserializeBinary(bytes: Uint8Array): AddTrainingPhrasesFromCSVRequest;
|
|
687
|
+
static deserializeBinaryFromReader(message: AddTrainingPhrasesFromCSVRequest, reader: jspb.BinaryReader): AddTrainingPhrasesFromCSVRequest;
|
|
741
688
|
}
|
|
742
689
|
|
|
743
690
|
export namespace AddTrainingPhrasesFromCSVRequest {
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
export enum ReannotateEntitiesOptions {
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
691
|
+
export type AsObject = {
|
|
692
|
+
parent: string,
|
|
693
|
+
languageCode: string,
|
|
694
|
+
csvContents: Uint8Array | string,
|
|
695
|
+
extractEntities: boolean,
|
|
696
|
+
specialCharacters: string,
|
|
697
|
+
trainingPhraseCleanerOptions?: TrainingPhraseCleanerOptions.AsObject,
|
|
698
|
+
numberOfWorkers: number,
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
export enum ReannotateEntitiesOptions {
|
|
703
|
+
REANNOTATE_NEVER = 0,
|
|
704
|
+
REANNOTATE_ALWAYS = 1,
|
|
705
|
+
REANNOTATE_IF_EMPTY = 2,
|
|
706
|
+
REANNOTATE_AFTER_DELETION = 3,
|
|
707
|
+
REANNOTATE_IF_EMPTY_OR_AFTER_DELETION = 4,
|
|
761
708
|
}
|