@ondewo/nlu-client-typescript 3.4.0 → 4.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 +80 -13
- package/api/ondewo/nlu/agent_grpc_web_pb.d.ts +12 -0
- package/api/ondewo/nlu/agent_grpc_web_pb.js +63 -2
- package/api/ondewo/nlu/agent_pb.d.ts +106 -1
- package/api/ondewo/nlu/agent_pb.js +1007 -221
- package/api/ondewo/nlu/aiservices_pb.d.ts +4 -0
- package/api/ondewo/nlu/aiservices_pb.js +47 -17
- package/api/ondewo/nlu/context_pb.d.ts +9 -9
- package/api/ondewo/nlu/context_pb.js +18 -18
- package/api/ondewo/nlu/session_grpc_web_pb.d.ts +16 -4
- package/api/ondewo/nlu/session_grpc_web_pb.js +76 -13
- package/api/ondewo/nlu/session_pb.d.ts +253 -27
- package/api/ondewo/nlu/session_pb.js +2274 -577
- package/package.json +1 -1
- package/public-api.d.ts +29 -29
|
@@ -2,6 +2,7 @@ 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 google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
5
|
+
import * as google_protobuf_field_mask_pb from 'google-protobuf/google/protobuf/field_mask_pb';
|
|
5
6
|
import * as google_protobuf_struct_pb from 'google-protobuf/google/protobuf/struct_pb';
|
|
6
7
|
import * as google_rpc_status_pb from '../../google/rpc/status_pb';
|
|
7
8
|
import * as google_type_latlng_pb from '../../google/type/latlng_pb';
|
|
@@ -98,6 +99,11 @@ export class QueryParameters extends jspb.Message {
|
|
|
98
99
|
hasPayload(): boolean;
|
|
99
100
|
clearPayload(): QueryParameters;
|
|
100
101
|
|
|
102
|
+
getLabelsList(): Array<string>;
|
|
103
|
+
setLabelsList(value: Array<string>): QueryParameters;
|
|
104
|
+
clearLabelsList(): QueryParameters;
|
|
105
|
+
addLabels(value: string, index?: number): QueryParameters;
|
|
106
|
+
|
|
101
107
|
serializeBinary(): Uint8Array;
|
|
102
108
|
toObject(includeInstance?: boolean): QueryParameters.AsObject;
|
|
103
109
|
static toObject(includeInstance: boolean, msg: QueryParameters): QueryParameters.AsObject;
|
|
@@ -113,6 +119,7 @@ export namespace QueryParameters {
|
|
|
113
119
|
contextsList: Array<ondewo_nlu_context_pb.Context.AsObject>,
|
|
114
120
|
resetContexts: boolean,
|
|
115
121
|
payload?: google_protobuf_struct_pb.Struct.AsObject,
|
|
122
|
+
labelsList: Array<string>,
|
|
116
123
|
}
|
|
117
124
|
}
|
|
118
125
|
|
|
@@ -434,8 +441,8 @@ export namespace EventInput {
|
|
|
434
441
|
}
|
|
435
442
|
|
|
436
443
|
export class Session extends jspb.Message {
|
|
437
|
-
|
|
438
|
-
|
|
444
|
+
getName(): string;
|
|
445
|
+
setName(value: string): Session;
|
|
439
446
|
|
|
440
447
|
getSessionStepsList(): Array<SessionStep>;
|
|
441
448
|
setSessionStepsList(value: Array<SessionStep>): Session;
|
|
@@ -457,7 +464,7 @@ export class Session extends jspb.Message {
|
|
|
457
464
|
|
|
458
465
|
export namespace Session {
|
|
459
466
|
export type AsObject = {
|
|
460
|
-
|
|
467
|
+
name: string,
|
|
461
468
|
sessionStepsList: Array<SessionStep.AsObject>,
|
|
462
469
|
sessionInfo?: SessionInfo.AsObject,
|
|
463
470
|
}
|
|
@@ -470,6 +477,9 @@ export namespace Session {
|
|
|
470
477
|
}
|
|
471
478
|
|
|
472
479
|
export class SessionStep extends jspb.Message {
|
|
480
|
+
getName(): string;
|
|
481
|
+
setName(value: string): SessionStep;
|
|
482
|
+
|
|
473
483
|
getDetectIntentRequest(): DetectIntentRequest | undefined;
|
|
474
484
|
setDetectIntentRequest(value?: DetectIntentRequest): SessionStep;
|
|
475
485
|
hasDetectIntentRequest(): boolean;
|
|
@@ -495,6 +505,7 @@ export class SessionStep extends jspb.Message {
|
|
|
495
505
|
|
|
496
506
|
export namespace SessionStep {
|
|
497
507
|
export type AsObject = {
|
|
508
|
+
name: string,
|
|
498
509
|
detectIntentRequest?: DetectIntentRequest.AsObject,
|
|
499
510
|
detectIntentResponse?: DetectIntentResponse.AsObject,
|
|
500
511
|
contextsList: Array<ondewo_nlu_context_pb.Context.AsObject>,
|
|
@@ -544,6 +555,11 @@ export class ListSessionsRequest extends jspb.Message {
|
|
|
544
555
|
hasSessionFilter(): boolean;
|
|
545
556
|
clearSessionFilter(): ListSessionsRequest;
|
|
546
557
|
|
|
558
|
+
getFieldMask(): google_protobuf_field_mask_pb.FieldMask | undefined;
|
|
559
|
+
setFieldMask(value?: google_protobuf_field_mask_pb.FieldMask): ListSessionsRequest;
|
|
560
|
+
hasFieldMask(): boolean;
|
|
561
|
+
clearFieldMask(): ListSessionsRequest;
|
|
562
|
+
|
|
547
563
|
serializeBinary(): Uint8Array;
|
|
548
564
|
toObject(includeInstance?: boolean): ListSessionsRequest.AsObject;
|
|
549
565
|
static toObject(includeInstance: boolean, msg: ListSessionsRequest): ListSessionsRequest.AsObject;
|
|
@@ -558,6 +574,37 @@ export namespace ListSessionsRequest {
|
|
|
558
574
|
sessionView: Session.View,
|
|
559
575
|
pageToken: string,
|
|
560
576
|
sessionFilter?: SessionFilter.AsObject,
|
|
577
|
+
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
export class ContextFilter extends jspb.Message {
|
|
582
|
+
getContextName(): string;
|
|
583
|
+
setContextName(value: string): ContextFilter;
|
|
584
|
+
|
|
585
|
+
getKey(): string;
|
|
586
|
+
setKey(value: string): ContextFilter;
|
|
587
|
+
|
|
588
|
+
getValue(): string;
|
|
589
|
+
setValue(value: string): ContextFilter;
|
|
590
|
+
|
|
591
|
+
getOperator(): ComparisonOperator;
|
|
592
|
+
setOperator(value: ComparisonOperator): ContextFilter;
|
|
593
|
+
|
|
594
|
+
serializeBinary(): Uint8Array;
|
|
595
|
+
toObject(includeInstance?: boolean): ContextFilter.AsObject;
|
|
596
|
+
static toObject(includeInstance: boolean, msg: ContextFilter): ContextFilter.AsObject;
|
|
597
|
+
static serializeBinaryToWriter(message: ContextFilter, writer: jspb.BinaryWriter): void;
|
|
598
|
+
static deserializeBinary(bytes: Uint8Array): ContextFilter;
|
|
599
|
+
static deserializeBinaryFromReader(message: ContextFilter, reader: jspb.BinaryReader): ContextFilter;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
export namespace ContextFilter {
|
|
603
|
+
export type AsObject = {
|
|
604
|
+
contextName: string,
|
|
605
|
+
key: string,
|
|
606
|
+
value: string,
|
|
607
|
+
operator: ComparisonOperator,
|
|
561
608
|
}
|
|
562
609
|
}
|
|
563
610
|
|
|
@@ -631,6 +678,78 @@ export class SessionFilter extends jspb.Message {
|
|
|
631
678
|
clearOutputContextsList(): SessionFilter;
|
|
632
679
|
addOutputContexts(value?: ondewo_nlu_context_pb.Context, index?: number): ondewo_nlu_context_pb.Context;
|
|
633
680
|
|
|
681
|
+
getDurationInSMin(): number;
|
|
682
|
+
setDurationInSMin(value: number): SessionFilter;
|
|
683
|
+
|
|
684
|
+
getDurationInSMax(): number;
|
|
685
|
+
setDurationInSMax(value: number): SessionFilter;
|
|
686
|
+
|
|
687
|
+
getDurationInMMin(): number;
|
|
688
|
+
setDurationInMMin(value: number): SessionFilter;
|
|
689
|
+
|
|
690
|
+
getDurationInMMax(): number;
|
|
691
|
+
setDurationInMMax(value: number): SessionFilter;
|
|
692
|
+
|
|
693
|
+
getDurationInMRoundedMin(): number;
|
|
694
|
+
setDurationInMRoundedMin(value: number): SessionFilter;
|
|
695
|
+
|
|
696
|
+
getDurationInMRoundedMax(): number;
|
|
697
|
+
setDurationInMRoundedMax(value: number): SessionFilter;
|
|
698
|
+
|
|
699
|
+
getDurationInterval15sRoundedMin(): number;
|
|
700
|
+
setDurationInterval15sRoundedMin(value: number): SessionFilter;
|
|
701
|
+
|
|
702
|
+
getDurationInterval15sRoundedMax(): number;
|
|
703
|
+
setDurationInterval15sRoundedMax(value: number): SessionFilter;
|
|
704
|
+
|
|
705
|
+
getDurationInterval30sRoundedMin(): number;
|
|
706
|
+
setDurationInterval30sRoundedMin(value: number): SessionFilter;
|
|
707
|
+
|
|
708
|
+
getDurationInterval30sRoundedMax(): number;
|
|
709
|
+
setDurationInterval30sRoundedMax(value: number): SessionFilter;
|
|
710
|
+
|
|
711
|
+
getDurationInterval45sRoundedMin(): number;
|
|
712
|
+
setDurationInterval45sRoundedMin(value: number): SessionFilter;
|
|
713
|
+
|
|
714
|
+
getDurationInterval45sRoundedMax(): number;
|
|
715
|
+
setDurationInterval45sRoundedMax(value: number): SessionFilter;
|
|
716
|
+
|
|
717
|
+
getStartedTimeSlotPerHourMin(): string;
|
|
718
|
+
setStartedTimeSlotPerHourMin(value: string): SessionFilter;
|
|
719
|
+
|
|
720
|
+
getStartedTimeSlotPerHourMax(): string;
|
|
721
|
+
setStartedTimeSlotPerHourMax(value: string): SessionFilter;
|
|
722
|
+
|
|
723
|
+
getStartedTimeSlotPerQuarterHourMin(): string;
|
|
724
|
+
setStartedTimeSlotPerQuarterHourMin(value: string): SessionFilter;
|
|
725
|
+
|
|
726
|
+
getStartedTimeSlotPerQuarterHourMax(): string;
|
|
727
|
+
setStartedTimeSlotPerQuarterHourMax(value: string): SessionFilter;
|
|
728
|
+
|
|
729
|
+
getStartedTimeSlotPerHalfHourMin(): string;
|
|
730
|
+
setStartedTimeSlotPerHalfHourMin(value: string): SessionFilter;
|
|
731
|
+
|
|
732
|
+
getStartedTimeSlotPerHalfHourMax(): string;
|
|
733
|
+
setStartedTimeSlotPerHalfHourMax(value: string): SessionFilter;
|
|
734
|
+
|
|
735
|
+
getStartedTimeSlotPerDayPhaseMin(): string;
|
|
736
|
+
setStartedTimeSlotPerDayPhaseMin(value: string): SessionFilter;
|
|
737
|
+
|
|
738
|
+
getStartedTimeSlotPerDayPhaseMax(): string;
|
|
739
|
+
setStartedTimeSlotPerDayPhaseMax(value: string): SessionFilter;
|
|
740
|
+
|
|
741
|
+
getStartedTimeSlotPerMinuteMin(): string;
|
|
742
|
+
setStartedTimeSlotPerMinuteMin(value: string): SessionFilter;
|
|
743
|
+
|
|
744
|
+
getStartedTimeSlotPerMinuteMax(): string;
|
|
745
|
+
setStartedTimeSlotPerMinuteMax(value: string): SessionFilter;
|
|
746
|
+
|
|
747
|
+
getDurationInSRoundedMin(): number;
|
|
748
|
+
setDurationInSRoundedMin(value: number): SessionFilter;
|
|
749
|
+
|
|
750
|
+
getDurationInSRoundedMax(): number;
|
|
751
|
+
setDurationInSRoundedMax(value: number): SessionFilter;
|
|
752
|
+
|
|
634
753
|
serializeBinary(): Uint8Array;
|
|
635
754
|
toObject(includeInstance?: boolean): SessionFilter.AsObject;
|
|
636
755
|
static toObject(includeInstance: boolean, msg: SessionFilter): SessionFilter.AsObject;
|
|
@@ -658,6 +777,30 @@ export namespace SessionFilter {
|
|
|
658
777
|
sessionIdsList: Array<string>,
|
|
659
778
|
inputContextsList: Array<ondewo_nlu_context_pb.Context.AsObject>,
|
|
660
779
|
outputContextsList: Array<ondewo_nlu_context_pb.Context.AsObject>,
|
|
780
|
+
durationInSMin: number,
|
|
781
|
+
durationInSMax: number,
|
|
782
|
+
durationInMMin: number,
|
|
783
|
+
durationInMMax: number,
|
|
784
|
+
durationInMRoundedMin: number,
|
|
785
|
+
durationInMRoundedMax: number,
|
|
786
|
+
durationInterval15sRoundedMin: number,
|
|
787
|
+
durationInterval15sRoundedMax: number,
|
|
788
|
+
durationInterval30sRoundedMin: number,
|
|
789
|
+
durationInterval30sRoundedMax: number,
|
|
790
|
+
durationInterval45sRoundedMin: number,
|
|
791
|
+
durationInterval45sRoundedMax: number,
|
|
792
|
+
startedTimeSlotPerHourMin: string,
|
|
793
|
+
startedTimeSlotPerHourMax: string,
|
|
794
|
+
startedTimeSlotPerQuarterHourMin: string,
|
|
795
|
+
startedTimeSlotPerQuarterHourMax: string,
|
|
796
|
+
startedTimeSlotPerHalfHourMin: string,
|
|
797
|
+
startedTimeSlotPerHalfHourMax: string,
|
|
798
|
+
startedTimeSlotPerDayPhaseMin: string,
|
|
799
|
+
startedTimeSlotPerDayPhaseMax: string,
|
|
800
|
+
startedTimeSlotPerMinuteMin: string,
|
|
801
|
+
startedTimeSlotPerMinuteMax: string,
|
|
802
|
+
durationInSRoundedMin: number,
|
|
803
|
+
durationInSRoundedMax: number,
|
|
661
804
|
}
|
|
662
805
|
}
|
|
663
806
|
|
|
@@ -717,6 +860,42 @@ export class SessionInfo extends jspb.Message {
|
|
|
717
860
|
clearOutputContextStepsList(): SessionInfo;
|
|
718
861
|
addOutputContextSteps(value?: SessionInfo.ContextSteps, index?: number): SessionInfo.ContextSteps;
|
|
719
862
|
|
|
863
|
+
getDurationInS(): number;
|
|
864
|
+
setDurationInS(value: number): SessionInfo;
|
|
865
|
+
|
|
866
|
+
getDurationInM(): number;
|
|
867
|
+
setDurationInM(value: number): SessionInfo;
|
|
868
|
+
|
|
869
|
+
getDurationInMRounded(): number;
|
|
870
|
+
setDurationInMRounded(value: number): SessionInfo;
|
|
871
|
+
|
|
872
|
+
getDurationInterval15sRounded(): number;
|
|
873
|
+
setDurationInterval15sRounded(value: number): SessionInfo;
|
|
874
|
+
|
|
875
|
+
getDurationInterval30sRounded(): number;
|
|
876
|
+
setDurationInterval30sRounded(value: number): SessionInfo;
|
|
877
|
+
|
|
878
|
+
getDurationInterval45sRounded(): number;
|
|
879
|
+
setDurationInterval45sRounded(value: number): SessionInfo;
|
|
880
|
+
|
|
881
|
+
getStartedTimeSlotPerHour(): string;
|
|
882
|
+
setStartedTimeSlotPerHour(value: string): SessionInfo;
|
|
883
|
+
|
|
884
|
+
getStartedTimeSlotPerQuarterHour(): string;
|
|
885
|
+
setStartedTimeSlotPerQuarterHour(value: string): SessionInfo;
|
|
886
|
+
|
|
887
|
+
getStartedTimeSlotPerHalfHour(): string;
|
|
888
|
+
setStartedTimeSlotPerHalfHour(value: string): SessionInfo;
|
|
889
|
+
|
|
890
|
+
getStartedTimeSlotPerDayPhase(): string;
|
|
891
|
+
setStartedTimeSlotPerDayPhase(value: string): SessionInfo;
|
|
892
|
+
|
|
893
|
+
getStartedTimeSlotPerMinute(): string;
|
|
894
|
+
setStartedTimeSlotPerMinute(value: string): SessionInfo;
|
|
895
|
+
|
|
896
|
+
getDurationInSRounded(): number;
|
|
897
|
+
setDurationInSRounded(value: number): SessionInfo;
|
|
898
|
+
|
|
720
899
|
serializeBinary(): Uint8Array;
|
|
721
900
|
toObject(includeInstance?: boolean): SessionInfo.AsObject;
|
|
722
901
|
static toObject(includeInstance: boolean, msg: SessionInfo): SessionInfo.AsObject;
|
|
@@ -740,6 +919,18 @@ export namespace SessionInfo {
|
|
|
740
919
|
intentTagsList: Array<string>,
|
|
741
920
|
inputContextStepsList: Array<SessionInfo.ContextSteps.AsObject>,
|
|
742
921
|
outputContextStepsList: Array<SessionInfo.ContextSteps.AsObject>,
|
|
922
|
+
durationInS: number,
|
|
923
|
+
durationInM: number,
|
|
924
|
+
durationInMRounded: number,
|
|
925
|
+
durationInterval15sRounded: number,
|
|
926
|
+
durationInterval30sRounded: number,
|
|
927
|
+
durationInterval45sRounded: number,
|
|
928
|
+
startedTimeSlotPerHour: string,
|
|
929
|
+
startedTimeSlotPerQuarterHour: string,
|
|
930
|
+
startedTimeSlotPerHalfHour: string,
|
|
931
|
+
startedTimeSlotPerDayPhase: string,
|
|
932
|
+
startedTimeSlotPerMinute: string,
|
|
933
|
+
durationInSRounded: number,
|
|
743
934
|
}
|
|
744
935
|
|
|
745
936
|
export class ContextSteps extends jspb.Message {
|
|
@@ -795,6 +986,11 @@ export class GetSessionRequest extends jspb.Message {
|
|
|
795
986
|
getSessionView(): Session.View;
|
|
796
987
|
setSessionView(value: Session.View): GetSessionRequest;
|
|
797
988
|
|
|
989
|
+
getFieldMask(): google_protobuf_field_mask_pb.FieldMask | undefined;
|
|
990
|
+
setFieldMask(value?: google_protobuf_field_mask_pb.FieldMask): GetSessionRequest;
|
|
991
|
+
hasFieldMask(): boolean;
|
|
992
|
+
clearFieldMask(): GetSessionRequest;
|
|
993
|
+
|
|
798
994
|
serializeBinary(): Uint8Array;
|
|
799
995
|
toObject(includeInstance?: boolean): GetSessionRequest.AsObject;
|
|
800
996
|
static toObject(includeInstance: boolean, msg: GetSessionRequest): GetSessionRequest.AsObject;
|
|
@@ -807,6 +1003,7 @@ export namespace GetSessionRequest {
|
|
|
807
1003
|
export type AsObject = {
|
|
808
1004
|
sessionId: string,
|
|
809
1005
|
sessionView: Session.View,
|
|
1006
|
+
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
810
1007
|
}
|
|
811
1008
|
}
|
|
812
1009
|
|
|
@@ -817,6 +1014,11 @@ export class CreateSessionRequest extends jspb.Message {
|
|
|
817
1014
|
getSessionUuid(): string;
|
|
818
1015
|
setSessionUuid(value: string): CreateSessionRequest;
|
|
819
1016
|
|
|
1017
|
+
getLabelsList(): Array<string>;
|
|
1018
|
+
setLabelsList(value: Array<string>): CreateSessionRequest;
|
|
1019
|
+
clearLabelsList(): CreateSessionRequest;
|
|
1020
|
+
addLabels(value: string, index?: number): CreateSessionRequest;
|
|
1021
|
+
|
|
820
1022
|
serializeBinary(): Uint8Array;
|
|
821
1023
|
toObject(includeInstance?: boolean): CreateSessionRequest.AsObject;
|
|
822
1024
|
static toObject(includeInstance: boolean, msg: CreateSessionRequest): CreateSessionRequest.AsObject;
|
|
@@ -829,6 +1031,7 @@ export namespace CreateSessionRequest {
|
|
|
829
1031
|
export type AsObject = {
|
|
830
1032
|
parent: string,
|
|
831
1033
|
sessionUuid: string,
|
|
1034
|
+
labelsList: Array<string>,
|
|
832
1035
|
}
|
|
833
1036
|
}
|
|
834
1037
|
|
|
@@ -883,8 +1086,8 @@ export namespace CreateSessionReviewRequest {
|
|
|
883
1086
|
}
|
|
884
1087
|
|
|
885
1088
|
export class SessionReview extends jspb.Message {
|
|
886
|
-
|
|
887
|
-
|
|
1089
|
+
getName(): string;
|
|
1090
|
+
setName(value: string): SessionReview;
|
|
888
1091
|
|
|
889
1092
|
getSessionReviewStepsList(): Array<SessionReviewStep>;
|
|
890
1093
|
setSessionReviewStepsList(value: Array<SessionReviewStep>): SessionReview;
|
|
@@ -901,7 +1104,7 @@ export class SessionReview extends jspb.Message {
|
|
|
901
1104
|
|
|
902
1105
|
export namespace SessionReview {
|
|
903
1106
|
export type AsObject = {
|
|
904
|
-
|
|
1107
|
+
name: string,
|
|
905
1108
|
sessionReviewStepsList: Array<SessionReviewStep.AsObject>,
|
|
906
1109
|
}
|
|
907
1110
|
|
|
@@ -913,6 +1116,9 @@ export namespace SessionReview {
|
|
|
913
1116
|
}
|
|
914
1117
|
|
|
915
1118
|
export class SessionReviewStep extends jspb.Message {
|
|
1119
|
+
getName(): string;
|
|
1120
|
+
setName(value: string): SessionReviewStep;
|
|
1121
|
+
|
|
916
1122
|
getAnnotatedUsersays(): ondewo_nlu_intent_pb.Intent.TrainingPhrase | undefined;
|
|
917
1123
|
setAnnotatedUsersays(value?: ondewo_nlu_intent_pb.Intent.TrainingPhrase): SessionReviewStep;
|
|
918
1124
|
hasAnnotatedUsersays(): boolean;
|
|
@@ -946,6 +1152,7 @@ export class SessionReviewStep extends jspb.Message {
|
|
|
946
1152
|
|
|
947
1153
|
export namespace SessionReviewStep {
|
|
948
1154
|
export type AsObject = {
|
|
1155
|
+
name: string,
|
|
949
1156
|
annotatedUsersays?: ondewo_nlu_intent_pb.Intent.TrainingPhrase.AsObject,
|
|
950
1157
|
languageCode: string,
|
|
951
1158
|
detectedIntentsList: Array<DetectedIntent.AsObject>,
|
|
@@ -993,8 +1200,8 @@ export namespace DetectedIntent {
|
|
|
993
1200
|
}
|
|
994
1201
|
|
|
995
1202
|
export class ListSessionLabelsRequest extends jspb.Message {
|
|
996
|
-
|
|
997
|
-
|
|
1203
|
+
getSessionId(): string;
|
|
1204
|
+
setSessionId(value: string): ListSessionLabelsRequest;
|
|
998
1205
|
|
|
999
1206
|
serializeBinary(): Uint8Array;
|
|
1000
1207
|
toObject(includeInstance?: boolean): ListSessionLabelsRequest.AsObject;
|
|
@@ -1005,6 +1212,24 @@ export class ListSessionLabelsRequest extends jspb.Message {
|
|
|
1005
1212
|
}
|
|
1006
1213
|
|
|
1007
1214
|
export namespace ListSessionLabelsRequest {
|
|
1215
|
+
export type AsObject = {
|
|
1216
|
+
sessionId: string,
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
export class ListSessionLabelsOfAllSessionsRequest extends jspb.Message {
|
|
1221
|
+
getParent(): string;
|
|
1222
|
+
setParent(value: string): ListSessionLabelsOfAllSessionsRequest;
|
|
1223
|
+
|
|
1224
|
+
serializeBinary(): Uint8Array;
|
|
1225
|
+
toObject(includeInstance?: boolean): ListSessionLabelsOfAllSessionsRequest.AsObject;
|
|
1226
|
+
static toObject(includeInstance: boolean, msg: ListSessionLabelsOfAllSessionsRequest): ListSessionLabelsOfAllSessionsRequest.AsObject;
|
|
1227
|
+
static serializeBinaryToWriter(message: ListSessionLabelsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1228
|
+
static deserializeBinary(bytes: Uint8Array): ListSessionLabelsOfAllSessionsRequest;
|
|
1229
|
+
static deserializeBinaryFromReader(message: ListSessionLabelsOfAllSessionsRequest, reader: jspb.BinaryReader): ListSessionLabelsOfAllSessionsRequest;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
export namespace ListSessionLabelsOfAllSessionsRequest {
|
|
1008
1233
|
export type AsObject = {
|
|
1009
1234
|
parent: string,
|
|
1010
1235
|
}
|
|
@@ -1039,9 +1264,6 @@ export class AddSessionLabelsRequest extends jspb.Message {
|
|
|
1039
1264
|
clearLabelsList(): AddSessionLabelsRequest;
|
|
1040
1265
|
addLabels(value: string, index?: number): AddSessionLabelsRequest;
|
|
1041
1266
|
|
|
1042
|
-
getSessionView(): Session.View;
|
|
1043
|
-
setSessionView(value: Session.View): AddSessionLabelsRequest;
|
|
1044
|
-
|
|
1045
1267
|
serializeBinary(): Uint8Array;
|
|
1046
1268
|
toObject(includeInstance?: boolean): AddSessionLabelsRequest.AsObject;
|
|
1047
1269
|
static toObject(includeInstance: boolean, msg: AddSessionLabelsRequest): AddSessionLabelsRequest.AsObject;
|
|
@@ -1054,35 +1276,30 @@ export namespace AddSessionLabelsRequest {
|
|
|
1054
1276
|
export type AsObject = {
|
|
1055
1277
|
sessionId: string,
|
|
1056
1278
|
labelsList: Array<string>,
|
|
1057
|
-
sessionView: Session.View,
|
|
1058
1279
|
}
|
|
1059
1280
|
}
|
|
1060
1281
|
|
|
1061
|
-
export class
|
|
1282
|
+
export class DeleteSessionLabelsRequest extends jspb.Message {
|
|
1062
1283
|
getSessionId(): string;
|
|
1063
|
-
setSessionId(value: string):
|
|
1284
|
+
setSessionId(value: string): DeleteSessionLabelsRequest;
|
|
1064
1285
|
|
|
1065
1286
|
getLabelsList(): Array<string>;
|
|
1066
|
-
setLabelsList(value: Array<string>):
|
|
1067
|
-
clearLabelsList():
|
|
1068
|
-
addLabels(value: string, index?: number):
|
|
1069
|
-
|
|
1070
|
-
getSessionView(): Session.View;
|
|
1071
|
-
setSessionView(value: Session.View): RemoveSessionLabelsRequest;
|
|
1287
|
+
setLabelsList(value: Array<string>): DeleteSessionLabelsRequest;
|
|
1288
|
+
clearLabelsList(): DeleteSessionLabelsRequest;
|
|
1289
|
+
addLabels(value: string, index?: number): DeleteSessionLabelsRequest;
|
|
1072
1290
|
|
|
1073
1291
|
serializeBinary(): Uint8Array;
|
|
1074
|
-
toObject(includeInstance?: boolean):
|
|
1075
|
-
static toObject(includeInstance: boolean, msg:
|
|
1076
|
-
static serializeBinaryToWriter(message:
|
|
1077
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
1078
|
-
static deserializeBinaryFromReader(message:
|
|
1292
|
+
toObject(includeInstance?: boolean): DeleteSessionLabelsRequest.AsObject;
|
|
1293
|
+
static toObject(includeInstance: boolean, msg: DeleteSessionLabelsRequest): DeleteSessionLabelsRequest.AsObject;
|
|
1294
|
+
static serializeBinaryToWriter(message: DeleteSessionLabelsRequest, writer: jspb.BinaryWriter): void;
|
|
1295
|
+
static deserializeBinary(bytes: Uint8Array): DeleteSessionLabelsRequest;
|
|
1296
|
+
static deserializeBinaryFromReader(message: DeleteSessionLabelsRequest, reader: jspb.BinaryReader): DeleteSessionLabelsRequest;
|
|
1079
1297
|
}
|
|
1080
1298
|
|
|
1081
|
-
export namespace
|
|
1299
|
+
export namespace DeleteSessionLabelsRequest {
|
|
1082
1300
|
export type AsObject = {
|
|
1083
1301
|
sessionId: string,
|
|
1084
1302
|
labelsList: Array<string>,
|
|
1085
|
-
sessionView: Session.View,
|
|
1086
1303
|
}
|
|
1087
1304
|
}
|
|
1088
1305
|
|
|
@@ -1190,3 +1407,12 @@ export enum AudioEncoding {
|
|
|
1190
1407
|
AUDIO_ENCODING_OGG_OPUS = 6,
|
|
1191
1408
|
AUDIO_ENCODING_SPEEX_WITH_HEADER_BYTE = 7,
|
|
1192
1409
|
}
|
|
1410
|
+
export enum ComparisonOperator {
|
|
1411
|
+
EQUAL = 0,
|
|
1412
|
+
GREATER = 1,
|
|
1413
|
+
GREATER_OR_EQUAL = 2,
|
|
1414
|
+
LESS_OR_EQUAL = 3,
|
|
1415
|
+
CONTAINS = 4,
|
|
1416
|
+
STARTS_WITH = 5,
|
|
1417
|
+
ENDS_WITH = 6,
|
|
1418
|
+
}
|