@ondewo/nlu-client-typescript 6.13.0 → 7.0.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/README.md +0 -0
- package/api/ondewo/nlu/agent_grpc_web_pb.d.ts +48 -0
- package/api/ondewo/nlu/agent_grpc_web_pb.js +244 -0
- package/api/ondewo/nlu/agent_pb.d.ts +196 -15
- package/api/ondewo/nlu/agent_pb.js +1627 -0
- package/api/ondewo/nlu/aiservices_pb.d.ts +0 -50
- package/api/ondewo/nlu/ccai_project_pb.d.ts +6 -93
- package/api/ondewo/nlu/ccai_project_pb.js +24 -132
- package/api/ondewo/nlu/common_pb.d.ts +140 -0
- package/api/ondewo/nlu/common_pb.js +1151 -9
- package/api/ondewo/nlu/context_pb.d.ts +8 -1
- package/api/ondewo/nlu/context_pb.js +22 -4
- package/api/ondewo/nlu/llm_evaluation_pb.d.ts +40 -5
- package/api/ondewo/nlu/llm_evaluation_pb.js +110 -20
- package/api/ondewo/nlu/operations_grpc_web_pb.d.ts +46 -0
- package/api/ondewo/nlu/operations_grpc_web_pb.js +241 -0
- package/api/ondewo/nlu/operations_pb.d.ts +429 -10
- package/api/ondewo/nlu/operations_pb.js +3413 -0
- package/api/ondewo/nlu/project_role_pb.d.ts +0 -10
- package/api/ondewo/nlu/rag_pb.d.ts +191 -520
- package/api/ondewo/nlu/rag_pb.js +1246 -1058
- package/api/ondewo/nlu/session_grpc_web_pb.d.ts +120 -0
- package/api/ondewo/nlu/session_grpc_web_pb.js +610 -0
- package/api/ondewo/nlu/session_pb.d.ts +818 -118
- package/api/ondewo/nlu/session_pb.js +6396 -3
- package/api/ondewo/nlu/user_grpc_web_pb.d.ts +59 -13
- package/api/ondewo/nlu/user_grpc_web_pb.js +300 -61
- package/api/ondewo/nlu/user_pb.d.ts +0 -87
- package/api/ondewo/nlu/user_pb.js +0 -436
- package/auth/offlineTokenProvider.d.ts +195 -0
- package/auth/offlineTokenProvider.js +372 -0
- package/package.json +11 -8
- package/public-api.d.ts +31 -31
- package/public-api.js +28 -28
- package/api/google/logging/v2/log_entry_pb.d.ts +0 -172
- package/api/google/logging/v2/log_entry_pb.js +0 -1333
|
@@ -31,11 +31,6 @@ export namespace ListLlmModelsRequest {
|
|
|
31
31
|
ccaiServiceName: string,
|
|
32
32
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
33
33
|
}
|
|
34
|
-
|
|
35
|
-
export enum FieldMaskCase {
|
|
36
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
37
|
-
FIELD_MASK = 2,
|
|
38
|
-
}
|
|
39
34
|
}
|
|
40
35
|
|
|
41
36
|
export class ListLlmModelsResponse extends jspb.Message {
|
|
@@ -126,11 +121,6 @@ export namespace LlmGenerateRequest {
|
|
|
126
121
|
fileResourcesList: Array<ondewo_nlu_session_pb.FileResource.AsObject>,
|
|
127
122
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
128
123
|
}
|
|
129
|
-
|
|
130
|
-
export enum FieldMaskCase {
|
|
131
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
132
|
-
FIELD_MASK = 4,
|
|
133
|
-
}
|
|
134
124
|
}
|
|
135
125
|
|
|
136
126
|
export class LlmGenerateResponse extends jspb.Message {
|
|
@@ -213,11 +203,6 @@ export namespace ExtractEntitiesRequest {
|
|
|
213
203
|
intentName: string,
|
|
214
204
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
215
205
|
}
|
|
216
|
-
|
|
217
|
-
export enum FieldMaskCase {
|
|
218
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
219
|
-
FIELD_MASK = 5,
|
|
220
|
-
}
|
|
221
206
|
}
|
|
222
207
|
|
|
223
208
|
export class ExtractEntitiesFuzzyRequest extends jspb.Message {
|
|
@@ -260,11 +245,6 @@ export namespace ExtractEntitiesFuzzyRequest {
|
|
|
260
245
|
allowOverlaps: boolean,
|
|
261
246
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
262
247
|
}
|
|
263
|
-
|
|
264
|
-
export enum FieldMaskCase {
|
|
265
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
266
|
-
FIELD_MASK = 6,
|
|
267
|
-
}
|
|
268
248
|
}
|
|
269
249
|
|
|
270
250
|
export class EntityTypeFuzzyNerConfig extends jspb.Message {
|
|
@@ -410,11 +390,6 @@ export namespace GetAlternativeSentencesRequest {
|
|
|
410
390
|
wordsToChangeList: Array<string>,
|
|
411
391
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
412
392
|
}
|
|
413
|
-
|
|
414
|
-
export enum FieldMaskCase {
|
|
415
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
416
|
-
FIELD_MASK = 8,
|
|
417
|
-
}
|
|
418
393
|
}
|
|
419
394
|
|
|
420
395
|
export class GenerateUserSaysRequest extends jspb.Message {
|
|
@@ -451,11 +426,6 @@ export namespace GenerateUserSaysRequest {
|
|
|
451
426
|
branch: string,
|
|
452
427
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
453
428
|
}
|
|
454
|
-
|
|
455
|
-
export enum FieldMaskCase {
|
|
456
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
457
|
-
FIELD_MASK = 9,
|
|
458
|
-
}
|
|
459
429
|
}
|
|
460
430
|
|
|
461
431
|
export class GenerateResponsesRequest extends jspb.Message {
|
|
@@ -496,11 +466,6 @@ export namespace GenerateResponsesRequest {
|
|
|
496
466
|
dropUnknownParameters: boolean,
|
|
497
467
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
498
468
|
}
|
|
499
|
-
|
|
500
|
-
export enum FieldMaskCase {
|
|
501
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
502
|
-
FIELD_MASK = 10,
|
|
503
|
-
}
|
|
504
469
|
}
|
|
505
470
|
|
|
506
471
|
export class GetAlternativeTrainingPhrasesRequest extends jspb.Message {
|
|
@@ -569,11 +534,6 @@ export namespace GetAlternativeTrainingPhrasesRequest {
|
|
|
569
534
|
branch: string,
|
|
570
535
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
571
536
|
}
|
|
572
|
-
|
|
573
|
-
export enum FieldMaskCase {
|
|
574
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
575
|
-
FIELD_MASK = 11,
|
|
576
|
-
}
|
|
577
537
|
}
|
|
578
538
|
|
|
579
539
|
export class GetSynonymsRequest extends jspb.Message {
|
|
@@ -612,11 +572,6 @@ export namespace GetSynonymsRequest {
|
|
|
612
572
|
parent: string,
|
|
613
573
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
614
574
|
}
|
|
615
|
-
|
|
616
|
-
export enum FieldMaskCase {
|
|
617
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
618
|
-
FIELD_MASK = 6,
|
|
619
|
-
}
|
|
620
575
|
}
|
|
621
576
|
|
|
622
577
|
export class GetSynonymsResponse extends jspb.Message {
|
|
@@ -1143,11 +1098,6 @@ export namespace ClassifyIntentsRequest {
|
|
|
1143
1098
|
algorithmsList: Array<IntentAlgorithms>,
|
|
1144
1099
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
1145
1100
|
}
|
|
1146
|
-
|
|
1147
|
-
export enum FieldMaskCase {
|
|
1148
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
1149
|
-
FIELD_MASK = 8,
|
|
1150
|
-
}
|
|
1151
1101
|
}
|
|
1152
1102
|
|
|
1153
1103
|
export class IntentClassified extends jspb.Message {
|
|
@@ -164,13 +164,9 @@ export class CcaiService extends jspb.Message {
|
|
|
164
164
|
|
|
165
165
|
getCcaiServiceProvider(): CcaiServiceProvider;
|
|
166
166
|
setCcaiServiceProvider(value: CcaiServiceProvider): CcaiService;
|
|
167
|
-
hasCcaiServiceProvider(): boolean;
|
|
168
|
-
clearCcaiServiceProvider(): CcaiService;
|
|
169
167
|
|
|
170
168
|
getServiceHierarchy(): string;
|
|
171
169
|
setServiceHierarchy(value: string): CcaiService;
|
|
172
|
-
hasServiceHierarchy(): boolean;
|
|
173
|
-
clearServiceHierarchy(): CcaiService;
|
|
174
170
|
|
|
175
171
|
serializeBinary(): Uint8Array;
|
|
176
172
|
toObject(includeInstance?: boolean): CcaiService.AsObject;
|
|
@@ -205,23 +201,8 @@ export namespace CcaiService {
|
|
|
205
201
|
createdBy: string,
|
|
206
202
|
modifiedBy: string,
|
|
207
203
|
headers?: google_protobuf_struct_pb.Struct.AsObject,
|
|
208
|
-
ccaiServiceProvider
|
|
209
|
-
serviceHierarchy
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
export enum HeadersCase {
|
|
213
|
-
_HEADERS_NOT_SET = 0,
|
|
214
|
-
HEADERS = 23,
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
export enum CcaiServiceProviderCase {
|
|
218
|
-
_CCAI_SERVICE_PROVIDER_NOT_SET = 0,
|
|
219
|
-
CCAI_SERVICE_PROVIDER = 24,
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
export enum ServiceHierarchyCase {
|
|
223
|
-
_SERVICE_HIERARCHY_NOT_SET = 0,
|
|
224
|
-
SERVICE_HIERARCHY = 25,
|
|
204
|
+
ccaiServiceProvider: CcaiServiceProvider,
|
|
205
|
+
serviceHierarchy: string,
|
|
225
206
|
}
|
|
226
207
|
}
|
|
227
208
|
|
|
@@ -279,8 +260,6 @@ export class GetCcaiProjectRequest extends jspb.Message {
|
|
|
279
260
|
|
|
280
261
|
getCcaiProjectView(): CcaiProjectView;
|
|
281
262
|
setCcaiProjectView(value: CcaiProjectView): GetCcaiProjectRequest;
|
|
282
|
-
hasCcaiProjectView(): boolean;
|
|
283
|
-
clearCcaiProjectView(): GetCcaiProjectRequest;
|
|
284
263
|
|
|
285
264
|
getCcaiServiceFilter(): CcaiServiceFilter | undefined;
|
|
286
265
|
setCcaiServiceFilter(value?: CcaiServiceFilter): GetCcaiProjectRequest;
|
|
@@ -306,26 +285,11 @@ export class GetCcaiProjectRequest extends jspb.Message {
|
|
|
306
285
|
export namespace GetCcaiProjectRequest {
|
|
307
286
|
export type AsObject = {
|
|
308
287
|
name: string,
|
|
309
|
-
ccaiProjectView
|
|
288
|
+
ccaiProjectView: CcaiProjectView,
|
|
310
289
|
ccaiServiceFilter?: CcaiServiceFilter.AsObject,
|
|
311
290
|
nluProjectName: string,
|
|
312
291
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
313
292
|
}
|
|
314
|
-
|
|
315
|
-
export enum CcaiProjectViewCase {
|
|
316
|
-
_CCAI_PROJECT_VIEW_NOT_SET = 0,
|
|
317
|
-
CCAI_PROJECT_VIEW = 2,
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
export enum CcaiServiceFilterCase {
|
|
321
|
-
_CCAI_SERVICE_FILTER_NOT_SET = 0,
|
|
322
|
-
CCAI_SERVICE_FILTER = 3,
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
export enum FieldMaskCase {
|
|
326
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
327
|
-
FIELD_MASK = 5,
|
|
328
|
-
}
|
|
329
293
|
}
|
|
330
294
|
|
|
331
295
|
export class GetCcaiServiceRequest extends jspb.Message {
|
|
@@ -354,11 +318,6 @@ export namespace GetCcaiServiceRequest {
|
|
|
354
318
|
nluProjectName: string,
|
|
355
319
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
356
320
|
}
|
|
357
|
-
|
|
358
|
-
export enum FieldMaskCase {
|
|
359
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
360
|
-
FIELD_MASK = 5,
|
|
361
|
-
}
|
|
362
321
|
}
|
|
363
322
|
|
|
364
323
|
export class ListCcaiProjectsRequest extends jspb.Message {
|
|
@@ -377,8 +336,6 @@ export class ListCcaiProjectsRequest extends jspb.Message {
|
|
|
377
336
|
|
|
378
337
|
getPageToken(): string;
|
|
379
338
|
setPageToken(value: string): ListCcaiProjectsRequest;
|
|
380
|
-
hasPageToken(): boolean;
|
|
381
|
-
clearPageToken(): ListCcaiProjectsRequest;
|
|
382
339
|
|
|
383
340
|
getNluProjectName(): string;
|
|
384
341
|
setNluProjectName(value: string): ListCcaiProjectsRequest;
|
|
@@ -401,30 +358,10 @@ export namespace ListCcaiProjectsRequest {
|
|
|
401
358
|
ccaiProjectView: CcaiProjectView,
|
|
402
359
|
ccaiServiceFilter?: CcaiServiceFilter.AsObject,
|
|
403
360
|
ccaiProjectSorting?: CcaiProjectSorting.AsObject,
|
|
404
|
-
pageToken
|
|
361
|
+
pageToken: string,
|
|
405
362
|
nluProjectName: string,
|
|
406
363
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
407
364
|
}
|
|
408
|
-
|
|
409
|
-
export enum CcaiServiceFilterCase {
|
|
410
|
-
_CCAI_SERVICE_FILTER_NOT_SET = 0,
|
|
411
|
-
CCAI_SERVICE_FILTER = 2,
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
export enum CcaiProjectSortingCase {
|
|
415
|
-
_CCAI_PROJECT_SORTING_NOT_SET = 0,
|
|
416
|
-
CCAI_PROJECT_SORTING = 3,
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
export enum PageTokenCase {
|
|
420
|
-
_PAGE_TOKEN_NOT_SET = 0,
|
|
421
|
-
PAGE_TOKEN = 4,
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
export enum FieldMaskCase {
|
|
425
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
426
|
-
FIELD_MASK = 6,
|
|
427
|
-
}
|
|
428
365
|
}
|
|
429
366
|
|
|
430
367
|
export class ListCcaiProjectsResponse extends jspb.Message {
|
|
@@ -454,13 +391,9 @@ export namespace ListCcaiProjectsResponse {
|
|
|
454
391
|
export class CcaiProjectSorting extends jspb.Message {
|
|
455
392
|
getSortingField(): CcaiProjectSorting.CcaiProjectSortingField;
|
|
456
393
|
setSortingField(value: CcaiProjectSorting.CcaiProjectSortingField): CcaiProjectSorting;
|
|
457
|
-
hasSortingField(): boolean;
|
|
458
|
-
clearSortingField(): CcaiProjectSorting;
|
|
459
394
|
|
|
460
395
|
getSortingMode(): ondewo_nlu_common_pb.SortingMode;
|
|
461
396
|
setSortingMode(value: ondewo_nlu_common_pb.SortingMode): CcaiProjectSorting;
|
|
462
|
-
hasSortingMode(): boolean;
|
|
463
|
-
clearSortingMode(): CcaiProjectSorting;
|
|
464
397
|
|
|
465
398
|
serializeBinary(): Uint8Array;
|
|
466
399
|
toObject(includeInstance?: boolean): CcaiProjectSorting.AsObject;
|
|
@@ -472,8 +405,8 @@ export class CcaiProjectSorting extends jspb.Message {
|
|
|
472
405
|
|
|
473
406
|
export namespace CcaiProjectSorting {
|
|
474
407
|
export type AsObject = {
|
|
475
|
-
sortingField
|
|
476
|
-
sortingMode
|
|
408
|
+
sortingField: CcaiProjectSorting.CcaiProjectSortingField,
|
|
409
|
+
sortingMode: ondewo_nlu_common_pb.SortingMode,
|
|
477
410
|
}
|
|
478
411
|
|
|
479
412
|
export enum CcaiProjectSortingField {
|
|
@@ -483,16 +416,6 @@ export namespace CcaiProjectSorting {
|
|
|
483
416
|
SORT_CCAI_PROJECT_BY_CREATION_DATE = 3,
|
|
484
417
|
SORT_CCAI_PROJECT_BY_LAST_MODIFIED = 4,
|
|
485
418
|
}
|
|
486
|
-
|
|
487
|
-
export enum SortingFieldCase {
|
|
488
|
-
_SORTING_FIELD_NOT_SET = 0,
|
|
489
|
-
SORTING_FIELD = 1,
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
export enum SortingModeCase {
|
|
493
|
-
_SORTING_MODE_NOT_SET = 0,
|
|
494
|
-
SORTING_MODE = 2,
|
|
495
|
-
}
|
|
496
419
|
}
|
|
497
420
|
|
|
498
421
|
export class CcaiServiceFilter extends jspb.Message {
|
|
@@ -561,16 +484,6 @@ export namespace UpdateCcaiProjectRequest {
|
|
|
561
484
|
updateMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
562
485
|
nluProjectName: string,
|
|
563
486
|
}
|
|
564
|
-
|
|
565
|
-
export enum CcaiServiceFilterCase {
|
|
566
|
-
_CCAI_SERVICE_FILTER_NOT_SET = 0,
|
|
567
|
-
CCAI_SERVICE_FILTER = 2,
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
export enum UpdateMaskCase {
|
|
571
|
-
_UPDATE_MASK_NOT_SET = 0,
|
|
572
|
-
UPDATE_MASK = 3,
|
|
573
|
-
}
|
|
574
487
|
}
|
|
575
488
|
|
|
576
489
|
export class UpdateCcaiProjectResponse extends jspb.Message {
|
|
@@ -1025,8 +1025,8 @@ modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.
|
|
|
1025
1025
|
createdBy: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
1026
1026
|
modifiedBy: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
|
1027
1027
|
headers: (f = msg.getHeaders()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
1028
|
-
ccaiServiceProvider:
|
|
1029
|
-
serviceHierarchy:
|
|
1028
|
+
ccaiServiceProvider: jspb.Message.getFieldWithDefault(msg, 24, 0),
|
|
1029
|
+
serviceHierarchy: jspb.Message.getFieldWithDefault(msg, 25, "")
|
|
1030
1030
|
};
|
|
1031
1031
|
|
|
1032
1032
|
if (includeInstance) {
|
|
@@ -1361,15 +1361,15 @@ proto.ondewo.nlu.CcaiService.serializeBinaryToWriter = function(message, writer)
|
|
|
1361
1361
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
1362
1362
|
);
|
|
1363
1363
|
}
|
|
1364
|
-
f =
|
|
1365
|
-
if (f
|
|
1364
|
+
f = message.getCcaiServiceProvider();
|
|
1365
|
+
if (f !== 0.0) {
|
|
1366
1366
|
writer.writeEnum(
|
|
1367
1367
|
24,
|
|
1368
1368
|
f
|
|
1369
1369
|
);
|
|
1370
1370
|
}
|
|
1371
|
-
f =
|
|
1372
|
-
if (f
|
|
1371
|
+
f = message.getServiceHierarchy();
|
|
1372
|
+
if (f.length > 0) {
|
|
1373
1373
|
writer.writeString(
|
|
1374
1374
|
25,
|
|
1375
1375
|
f
|
|
@@ -1882,25 +1882,7 @@ proto.ondewo.nlu.CcaiService.prototype.getCcaiServiceProvider = function() {
|
|
|
1882
1882
|
* @return {!proto.ondewo.nlu.CcaiService} returns this
|
|
1883
1883
|
*/
|
|
1884
1884
|
proto.ondewo.nlu.CcaiService.prototype.setCcaiServiceProvider = function(value) {
|
|
1885
|
-
return jspb.Message.
|
|
1886
|
-
};
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
/**
|
|
1890
|
-
* Clears the field making it undefined.
|
|
1891
|
-
* @return {!proto.ondewo.nlu.CcaiService} returns this
|
|
1892
|
-
*/
|
|
1893
|
-
proto.ondewo.nlu.CcaiService.prototype.clearCcaiServiceProvider = function() {
|
|
1894
|
-
return jspb.Message.setField(this, 24, undefined);
|
|
1895
|
-
};
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
/**
|
|
1899
|
-
* Returns whether this field is set.
|
|
1900
|
-
* @return {boolean}
|
|
1901
|
-
*/
|
|
1902
|
-
proto.ondewo.nlu.CcaiService.prototype.hasCcaiServiceProvider = function() {
|
|
1903
|
-
return jspb.Message.getField(this, 24) != null;
|
|
1885
|
+
return jspb.Message.setProto3EnumField(this, 24, value);
|
|
1904
1886
|
};
|
|
1905
1887
|
|
|
1906
1888
|
|
|
@@ -1918,25 +1900,7 @@ proto.ondewo.nlu.CcaiService.prototype.getServiceHierarchy = function() {
|
|
|
1918
1900
|
* @return {!proto.ondewo.nlu.CcaiService} returns this
|
|
1919
1901
|
*/
|
|
1920
1902
|
proto.ondewo.nlu.CcaiService.prototype.setServiceHierarchy = function(value) {
|
|
1921
|
-
return jspb.Message.
|
|
1922
|
-
};
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
/**
|
|
1926
|
-
* Clears the field making it undefined.
|
|
1927
|
-
* @return {!proto.ondewo.nlu.CcaiService} returns this
|
|
1928
|
-
*/
|
|
1929
|
-
proto.ondewo.nlu.CcaiService.prototype.clearServiceHierarchy = function() {
|
|
1930
|
-
return jspb.Message.setField(this, 25, undefined);
|
|
1931
|
-
};
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
/**
|
|
1935
|
-
* Returns whether this field is set.
|
|
1936
|
-
* @return {boolean}
|
|
1937
|
-
*/
|
|
1938
|
-
proto.ondewo.nlu.CcaiService.prototype.hasServiceHierarchy = function() {
|
|
1939
|
-
return jspb.Message.getField(this, 25) != null;
|
|
1903
|
+
return jspb.Message.setProto3StringField(this, 25, value);
|
|
1940
1904
|
};
|
|
1941
1905
|
|
|
1942
1906
|
|
|
@@ -2335,7 +2299,7 @@ proto.ondewo.nlu.GetCcaiProjectRequest.prototype.toObject = function(opt_include
|
|
|
2335
2299
|
proto.ondewo.nlu.GetCcaiProjectRequest.toObject = function(includeInstance, msg) {
|
|
2336
2300
|
var f, obj = {
|
|
2337
2301
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
2338
|
-
ccaiProjectView:
|
|
2302
|
+
ccaiProjectView: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
2339
2303
|
ccaiServiceFilter: (f = msg.getCcaiServiceFilter()) && proto.ondewo.nlu.CcaiServiceFilter.toObject(includeInstance, f),
|
|
2340
2304
|
nluProjectName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
2341
2305
|
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
@@ -2433,8 +2397,8 @@ proto.ondewo.nlu.GetCcaiProjectRequest.serializeBinaryToWriter = function(messag
|
|
|
2433
2397
|
f
|
|
2434
2398
|
);
|
|
2435
2399
|
}
|
|
2436
|
-
f =
|
|
2437
|
-
if (f
|
|
2400
|
+
f = message.getCcaiProjectView();
|
|
2401
|
+
if (f !== 0.0) {
|
|
2438
2402
|
writer.writeEnum(
|
|
2439
2403
|
2,
|
|
2440
2404
|
f
|
|
@@ -2498,25 +2462,7 @@ proto.ondewo.nlu.GetCcaiProjectRequest.prototype.getCcaiProjectView = function()
|
|
|
2498
2462
|
* @return {!proto.ondewo.nlu.GetCcaiProjectRequest} returns this
|
|
2499
2463
|
*/
|
|
2500
2464
|
proto.ondewo.nlu.GetCcaiProjectRequest.prototype.setCcaiProjectView = function(value) {
|
|
2501
|
-
return jspb.Message.
|
|
2502
|
-
};
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
/**
|
|
2506
|
-
* Clears the field making it undefined.
|
|
2507
|
-
* @return {!proto.ondewo.nlu.GetCcaiProjectRequest} returns this
|
|
2508
|
-
*/
|
|
2509
|
-
proto.ondewo.nlu.GetCcaiProjectRequest.prototype.clearCcaiProjectView = function() {
|
|
2510
|
-
return jspb.Message.setField(this, 2, undefined);
|
|
2511
|
-
};
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
/**
|
|
2515
|
-
* Returns whether this field is set.
|
|
2516
|
-
* @return {boolean}
|
|
2517
|
-
*/
|
|
2518
|
-
proto.ondewo.nlu.GetCcaiProjectRequest.prototype.hasCcaiProjectView = function() {
|
|
2519
|
-
return jspb.Message.getField(this, 2) != null;
|
|
2465
|
+
return jspb.Message.setProto3EnumField(this, 2, value);
|
|
2520
2466
|
};
|
|
2521
2467
|
|
|
2522
2468
|
|
|
@@ -2858,7 +2804,7 @@ proto.ondewo.nlu.ListCcaiProjectsRequest.toObject = function(includeInstance, ms
|
|
|
2858
2804
|
ccaiProjectView: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
2859
2805
|
ccaiServiceFilter: (f = msg.getCcaiServiceFilter()) && proto.ondewo.nlu.CcaiServiceFilter.toObject(includeInstance, f),
|
|
2860
2806
|
ccaiProjectSorting: (f = msg.getCcaiProjectSorting()) && proto.ondewo.nlu.CcaiProjectSorting.toObject(includeInstance, f),
|
|
2861
|
-
pageToken:
|
|
2807
|
+
pageToken: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
2862
2808
|
nluProjectName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
2863
2809
|
fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f)
|
|
2864
2810
|
};
|
|
@@ -2976,8 +2922,8 @@ proto.ondewo.nlu.ListCcaiProjectsRequest.serializeBinaryToWriter = function(mess
|
|
|
2976
2922
|
proto.ondewo.nlu.CcaiProjectSorting.serializeBinaryToWriter
|
|
2977
2923
|
);
|
|
2978
2924
|
}
|
|
2979
|
-
f =
|
|
2980
|
-
if (f
|
|
2925
|
+
f = message.getPageToken();
|
|
2926
|
+
if (f.length > 0) {
|
|
2981
2927
|
writer.writeString(
|
|
2982
2928
|
4,
|
|
2983
2929
|
f
|
|
@@ -3107,25 +3053,7 @@ proto.ondewo.nlu.ListCcaiProjectsRequest.prototype.getPageToken = function() {
|
|
|
3107
3053
|
* @return {!proto.ondewo.nlu.ListCcaiProjectsRequest} returns this
|
|
3108
3054
|
*/
|
|
3109
3055
|
proto.ondewo.nlu.ListCcaiProjectsRequest.prototype.setPageToken = function(value) {
|
|
3110
|
-
return jspb.Message.
|
|
3111
|
-
};
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
/**
|
|
3115
|
-
* Clears the field making it undefined.
|
|
3116
|
-
* @return {!proto.ondewo.nlu.ListCcaiProjectsRequest} returns this
|
|
3117
|
-
*/
|
|
3118
|
-
proto.ondewo.nlu.ListCcaiProjectsRequest.prototype.clearPageToken = function() {
|
|
3119
|
-
return jspb.Message.setField(this, 4, undefined);
|
|
3120
|
-
};
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
/**
|
|
3124
|
-
* Returns whether this field is set.
|
|
3125
|
-
* @return {boolean}
|
|
3126
|
-
*/
|
|
3127
|
-
proto.ondewo.nlu.ListCcaiProjectsRequest.prototype.hasPageToken = function() {
|
|
3128
|
-
return jspb.Message.getField(this, 4) != null;
|
|
3056
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
3129
3057
|
};
|
|
3130
3058
|
|
|
3131
3059
|
|
|
@@ -3406,8 +3334,8 @@ proto.ondewo.nlu.CcaiProjectSorting.prototype.toObject = function(opt_includeIns
|
|
|
3406
3334
|
*/
|
|
3407
3335
|
proto.ondewo.nlu.CcaiProjectSorting.toObject = function(includeInstance, msg) {
|
|
3408
3336
|
var f, obj = {
|
|
3409
|
-
sortingField:
|
|
3410
|
-
sortingMode:
|
|
3337
|
+
sortingField: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
3338
|
+
sortingMode: jspb.Message.getFieldWithDefault(msg, 2, 0)
|
|
3411
3339
|
};
|
|
3412
3340
|
|
|
3413
3341
|
if (includeInstance) {
|
|
@@ -3481,15 +3409,15 @@ proto.ondewo.nlu.CcaiProjectSorting.prototype.serializeBinary = function() {
|
|
|
3481
3409
|
*/
|
|
3482
3410
|
proto.ondewo.nlu.CcaiProjectSorting.serializeBinaryToWriter = function(message, writer) {
|
|
3483
3411
|
var f = undefined;
|
|
3484
|
-
f =
|
|
3485
|
-
if (f
|
|
3412
|
+
f = message.getSortingField();
|
|
3413
|
+
if (f !== 0.0) {
|
|
3486
3414
|
writer.writeEnum(
|
|
3487
3415
|
1,
|
|
3488
3416
|
f
|
|
3489
3417
|
);
|
|
3490
3418
|
}
|
|
3491
|
-
f =
|
|
3492
|
-
if (f
|
|
3419
|
+
f = message.getSortingMode();
|
|
3420
|
+
if (f !== 0.0) {
|
|
3493
3421
|
writer.writeEnum(
|
|
3494
3422
|
2,
|
|
3495
3423
|
f
|
|
@@ -3523,25 +3451,7 @@ proto.ondewo.nlu.CcaiProjectSorting.prototype.getSortingField = function() {
|
|
|
3523
3451
|
* @return {!proto.ondewo.nlu.CcaiProjectSorting} returns this
|
|
3524
3452
|
*/
|
|
3525
3453
|
proto.ondewo.nlu.CcaiProjectSorting.prototype.setSortingField = function(value) {
|
|
3526
|
-
return jspb.Message.
|
|
3527
|
-
};
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
/**
|
|
3531
|
-
* Clears the field making it undefined.
|
|
3532
|
-
* @return {!proto.ondewo.nlu.CcaiProjectSorting} returns this
|
|
3533
|
-
*/
|
|
3534
|
-
proto.ondewo.nlu.CcaiProjectSorting.prototype.clearSortingField = function() {
|
|
3535
|
-
return jspb.Message.setField(this, 1, undefined);
|
|
3536
|
-
};
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
/**
|
|
3540
|
-
* Returns whether this field is set.
|
|
3541
|
-
* @return {boolean}
|
|
3542
|
-
*/
|
|
3543
|
-
proto.ondewo.nlu.CcaiProjectSorting.prototype.hasSortingField = function() {
|
|
3544
|
-
return jspb.Message.getField(this, 1) != null;
|
|
3454
|
+
return jspb.Message.setProto3EnumField(this, 1, value);
|
|
3545
3455
|
};
|
|
3546
3456
|
|
|
3547
3457
|
|
|
@@ -3559,25 +3469,7 @@ proto.ondewo.nlu.CcaiProjectSorting.prototype.getSortingMode = function() {
|
|
|
3559
3469
|
* @return {!proto.ondewo.nlu.CcaiProjectSorting} returns this
|
|
3560
3470
|
*/
|
|
3561
3471
|
proto.ondewo.nlu.CcaiProjectSorting.prototype.setSortingMode = function(value) {
|
|
3562
|
-
return jspb.Message.
|
|
3563
|
-
};
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
/**
|
|
3567
|
-
* Clears the field making it undefined.
|
|
3568
|
-
* @return {!proto.ondewo.nlu.CcaiProjectSorting} returns this
|
|
3569
|
-
*/
|
|
3570
|
-
proto.ondewo.nlu.CcaiProjectSorting.prototype.clearSortingMode = function() {
|
|
3571
|
-
return jspb.Message.setField(this, 2, undefined);
|
|
3572
|
-
};
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
/**
|
|
3576
|
-
* Returns whether this field is set.
|
|
3577
|
-
* @return {boolean}
|
|
3578
|
-
*/
|
|
3579
|
-
proto.ondewo.nlu.CcaiProjectSorting.prototype.hasSortingMode = function() {
|
|
3580
|
-
return jspb.Message.getField(this, 2) != null;
|
|
3472
|
+
return jspb.Message.setProto3EnumField(this, 2, value);
|
|
3581
3473
|
};
|
|
3582
3474
|
|
|
3583
3475
|
|