@ondewo/nlu-client-typescript 4.0.0 → 4.2.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/session_grpc_web_pb.d.ts +156 -0
- package/api/ondewo/nlu/session_grpc_web_pb.js +793 -0
- package/api/ondewo/nlu/session_pb.d.ts +700 -4
- package/api/ondewo/nlu/session_pb.js +10575 -4614
- package/package.json +1 -1
- package/public-api.d.ts +26 -26
|
@@ -104,6 +104,26 @@ export class QueryParameters extends jspb.Message {
|
|
|
104
104
|
clearLabelsList(): QueryParameters;
|
|
105
105
|
addLabels(value: string, index?: number): QueryParameters;
|
|
106
106
|
|
|
107
|
+
getPlatformsList(): Array<ondewo_nlu_intent_pb.Intent.Message.Platform>;
|
|
108
|
+
setPlatformsList(value: Array<ondewo_nlu_intent_pb.Intent.Message.Platform>): QueryParameters;
|
|
109
|
+
clearPlatformsList(): QueryParameters;
|
|
110
|
+
addPlatforms(value: ondewo_nlu_intent_pb.Intent.Message.Platform, index?: number): QueryParameters;
|
|
111
|
+
|
|
112
|
+
getAccountId(): string;
|
|
113
|
+
setAccountId(value: string): QueryParameters;
|
|
114
|
+
|
|
115
|
+
getPropertyId(): string;
|
|
116
|
+
setPropertyId(value: string): QueryParameters;
|
|
117
|
+
|
|
118
|
+
getDatastreamId(): string;
|
|
119
|
+
setDatastreamId(value: string): QueryParameters;
|
|
120
|
+
|
|
121
|
+
getOriginId(): string;
|
|
122
|
+
setOriginId(value: string): QueryParameters;
|
|
123
|
+
|
|
124
|
+
getIdentifiedUserId(): string;
|
|
125
|
+
setIdentifiedUserId(value: string): QueryParameters;
|
|
126
|
+
|
|
107
127
|
serializeBinary(): Uint8Array;
|
|
108
128
|
toObject(includeInstance?: boolean): QueryParameters.AsObject;
|
|
109
129
|
static toObject(includeInstance: boolean, msg: QueryParameters): QueryParameters.AsObject;
|
|
@@ -120,6 +140,12 @@ export namespace QueryParameters {
|
|
|
120
140
|
resetContexts: boolean,
|
|
121
141
|
payload?: google_protobuf_struct_pb.Struct.AsObject,
|
|
122
142
|
labelsList: Array<string>,
|
|
143
|
+
platformsList: Array<ondewo_nlu_intent_pb.Intent.Message.Platform>,
|
|
144
|
+
accountId: string,
|
|
145
|
+
propertyId: string,
|
|
146
|
+
datastreamId: string,
|
|
147
|
+
originId: string,
|
|
148
|
+
identifiedUserId: string,
|
|
123
149
|
}
|
|
124
150
|
}
|
|
125
151
|
|
|
@@ -168,9 +194,6 @@ export class QueryResult extends jspb.Message {
|
|
|
168
194
|
getQueryText(): string;
|
|
169
195
|
setQueryText(value: string): QueryResult;
|
|
170
196
|
|
|
171
|
-
getLanguageCode(): string;
|
|
172
|
-
setLanguageCode(value: string): QueryResult;
|
|
173
|
-
|
|
174
197
|
getSpeechRecognitionConfidence(): number;
|
|
175
198
|
setSpeechRecognitionConfidence(value: number): QueryResult;
|
|
176
199
|
|
|
@@ -214,11 +237,17 @@ export class QueryResult extends jspb.Message {
|
|
|
214
237
|
getIntentDetectionConfidence(): number;
|
|
215
238
|
setIntentDetectionConfidence(value: number): QueryResult;
|
|
216
239
|
|
|
240
|
+
getQueryTextOriginal(): string;
|
|
241
|
+
setQueryTextOriginal(value: string): QueryResult;
|
|
242
|
+
|
|
217
243
|
getDiagnosticInfo(): google_protobuf_struct_pb.Struct | undefined;
|
|
218
244
|
setDiagnosticInfo(value?: google_protobuf_struct_pb.Struct): QueryResult;
|
|
219
245
|
hasDiagnosticInfo(): boolean;
|
|
220
246
|
clearDiagnosticInfo(): QueryResult;
|
|
221
247
|
|
|
248
|
+
getLanguageCode(): string;
|
|
249
|
+
setLanguageCode(value: string): QueryResult;
|
|
250
|
+
|
|
222
251
|
serializeBinary(): Uint8Array;
|
|
223
252
|
toObject(includeInstance?: boolean): QueryResult.AsObject;
|
|
224
253
|
static toObject(includeInstance: boolean, msg: QueryResult): QueryResult.AsObject;
|
|
@@ -230,7 +259,6 @@ export class QueryResult extends jspb.Message {
|
|
|
230
259
|
export namespace QueryResult {
|
|
231
260
|
export type AsObject = {
|
|
232
261
|
queryText: string,
|
|
233
|
-
languageCode: string,
|
|
234
262
|
speechRecognitionConfidence: number,
|
|
235
263
|
action: string,
|
|
236
264
|
parameters?: google_protobuf_struct_pb.Struct.AsObject,
|
|
@@ -242,7 +270,9 @@ export namespace QueryResult {
|
|
|
242
270
|
outputContextsList: Array<ondewo_nlu_context_pb.Context.AsObject>,
|
|
243
271
|
intent?: ondewo_nlu_intent_pb.Intent.AsObject,
|
|
244
272
|
intentDetectionConfidence: number,
|
|
273
|
+
queryTextOriginal: string,
|
|
245
274
|
diagnosticInfo?: google_protobuf_struct_pb.Struct.AsObject,
|
|
275
|
+
languageCode: string,
|
|
246
276
|
}
|
|
247
277
|
}
|
|
248
278
|
|
|
@@ -750,6 +780,36 @@ export class SessionFilter extends jspb.Message {
|
|
|
750
780
|
getDurationInSRoundedMax(): number;
|
|
751
781
|
setDurationInSRoundedMax(value: number): SessionFilter;
|
|
752
782
|
|
|
783
|
+
getPlatformsList(): Array<ondewo_nlu_intent_pb.Intent.Message.Platform>;
|
|
784
|
+
setPlatformsList(value: Array<ondewo_nlu_intent_pb.Intent.Message.Platform>): SessionFilter;
|
|
785
|
+
clearPlatformsList(): SessionFilter;
|
|
786
|
+
addPlatforms(value: ondewo_nlu_intent_pb.Intent.Message.Platform, index?: number): SessionFilter;
|
|
787
|
+
|
|
788
|
+
getAccountIdsList(): Array<string>;
|
|
789
|
+
setAccountIdsList(value: Array<string>): SessionFilter;
|
|
790
|
+
clearAccountIdsList(): SessionFilter;
|
|
791
|
+
addAccountIds(value: string, index?: number): SessionFilter;
|
|
792
|
+
|
|
793
|
+
getPropertyIdsList(): Array<string>;
|
|
794
|
+
setPropertyIdsList(value: Array<string>): SessionFilter;
|
|
795
|
+
clearPropertyIdsList(): SessionFilter;
|
|
796
|
+
addPropertyIds(value: string, index?: number): SessionFilter;
|
|
797
|
+
|
|
798
|
+
getDatastreamIdsList(): Array<string>;
|
|
799
|
+
setDatastreamIdsList(value: Array<string>): SessionFilter;
|
|
800
|
+
clearDatastreamIdsList(): SessionFilter;
|
|
801
|
+
addDatastreamIds(value: string, index?: number): SessionFilter;
|
|
802
|
+
|
|
803
|
+
getOriginIdsList(): Array<string>;
|
|
804
|
+
setOriginIdsList(value: Array<string>): SessionFilter;
|
|
805
|
+
clearOriginIdsList(): SessionFilter;
|
|
806
|
+
addOriginIds(value: string, index?: number): SessionFilter;
|
|
807
|
+
|
|
808
|
+
getIdentifiedUserIdsList(): Array<string>;
|
|
809
|
+
setIdentifiedUserIdsList(value: Array<string>): SessionFilter;
|
|
810
|
+
clearIdentifiedUserIdsList(): SessionFilter;
|
|
811
|
+
addIdentifiedUserIds(value: string, index?: number): SessionFilter;
|
|
812
|
+
|
|
753
813
|
serializeBinary(): Uint8Array;
|
|
754
814
|
toObject(includeInstance?: boolean): SessionFilter.AsObject;
|
|
755
815
|
static toObject(includeInstance: boolean, msg: SessionFilter): SessionFilter.AsObject;
|
|
@@ -801,6 +861,12 @@ export namespace SessionFilter {
|
|
|
801
861
|
startedTimeSlotPerMinuteMax: string,
|
|
802
862
|
durationInSRoundedMin: number,
|
|
803
863
|
durationInSRoundedMax: number,
|
|
864
|
+
platformsList: Array<ondewo_nlu_intent_pb.Intent.Message.Platform>,
|
|
865
|
+
accountIdsList: Array<string>,
|
|
866
|
+
propertyIdsList: Array<string>,
|
|
867
|
+
datastreamIdsList: Array<string>,
|
|
868
|
+
originIdsList: Array<string>,
|
|
869
|
+
identifiedUserIdsList: Array<string>,
|
|
804
870
|
}
|
|
805
871
|
}
|
|
806
872
|
|
|
@@ -896,6 +962,36 @@ export class SessionInfo extends jspb.Message {
|
|
|
896
962
|
getDurationInSRounded(): number;
|
|
897
963
|
setDurationInSRounded(value: number): SessionInfo;
|
|
898
964
|
|
|
965
|
+
getPlatformsList(): Array<ondewo_nlu_intent_pb.Intent.Message.Platform>;
|
|
966
|
+
setPlatformsList(value: Array<ondewo_nlu_intent_pb.Intent.Message.Platform>): SessionInfo;
|
|
967
|
+
clearPlatformsList(): SessionInfo;
|
|
968
|
+
addPlatforms(value: ondewo_nlu_intent_pb.Intent.Message.Platform, index?: number): SessionInfo;
|
|
969
|
+
|
|
970
|
+
getAccountIdsList(): Array<string>;
|
|
971
|
+
setAccountIdsList(value: Array<string>): SessionInfo;
|
|
972
|
+
clearAccountIdsList(): SessionInfo;
|
|
973
|
+
addAccountIds(value: string, index?: number): SessionInfo;
|
|
974
|
+
|
|
975
|
+
getPropertyIdsList(): Array<string>;
|
|
976
|
+
setPropertyIdsList(value: Array<string>): SessionInfo;
|
|
977
|
+
clearPropertyIdsList(): SessionInfo;
|
|
978
|
+
addPropertyIds(value: string, index?: number): SessionInfo;
|
|
979
|
+
|
|
980
|
+
getDatastreamIdsList(): Array<string>;
|
|
981
|
+
setDatastreamIdsList(value: Array<string>): SessionInfo;
|
|
982
|
+
clearDatastreamIdsList(): SessionInfo;
|
|
983
|
+
addDatastreamIds(value: string, index?: number): SessionInfo;
|
|
984
|
+
|
|
985
|
+
getOriginIdsList(): Array<string>;
|
|
986
|
+
setOriginIdsList(value: Array<string>): SessionInfo;
|
|
987
|
+
clearOriginIdsList(): SessionInfo;
|
|
988
|
+
addOriginIds(value: string, index?: number): SessionInfo;
|
|
989
|
+
|
|
990
|
+
getIdentifiedUserIdsList(): Array<string>;
|
|
991
|
+
setIdentifiedUserIdsList(value: Array<string>): SessionInfo;
|
|
992
|
+
clearIdentifiedUserIdsList(): SessionInfo;
|
|
993
|
+
addIdentifiedUserIds(value: string, index?: number): SessionInfo;
|
|
994
|
+
|
|
899
995
|
serializeBinary(): Uint8Array;
|
|
900
996
|
toObject(includeInstance?: boolean): SessionInfo.AsObject;
|
|
901
997
|
static toObject(includeInstance: boolean, msg: SessionInfo): SessionInfo.AsObject;
|
|
@@ -931,6 +1027,12 @@ export namespace SessionInfo {
|
|
|
931
1027
|
startedTimeSlotPerDayPhase: string,
|
|
932
1028
|
startedTimeSlotPerMinute: string,
|
|
933
1029
|
durationInSRounded: number,
|
|
1030
|
+
platformsList: Array<ondewo_nlu_intent_pb.Intent.Message.Platform>,
|
|
1031
|
+
accountIdsList: Array<string>,
|
|
1032
|
+
propertyIdsList: Array<string>,
|
|
1033
|
+
datastreamIdsList: Array<string>,
|
|
1034
|
+
originIdsList: Array<string>,
|
|
1035
|
+
identifiedUserIdsList: Array<string>,
|
|
934
1036
|
}
|
|
935
1037
|
|
|
936
1038
|
export class ContextSteps extends jspb.Message {
|
|
@@ -1019,6 +1121,11 @@ export class CreateSessionRequest extends jspb.Message {
|
|
|
1019
1121
|
clearLabelsList(): CreateSessionRequest;
|
|
1020
1122
|
addLabels(value: string, index?: number): CreateSessionRequest;
|
|
1021
1123
|
|
|
1124
|
+
getContextsList(): Array<ondewo_nlu_context_pb.Context>;
|
|
1125
|
+
setContextsList(value: Array<ondewo_nlu_context_pb.Context>): CreateSessionRequest;
|
|
1126
|
+
clearContextsList(): CreateSessionRequest;
|
|
1127
|
+
addContexts(value?: ondewo_nlu_context_pb.Context, index?: number): ondewo_nlu_context_pb.Context;
|
|
1128
|
+
|
|
1022
1129
|
serializeBinary(): Uint8Array;
|
|
1023
1130
|
toObject(includeInstance?: boolean): CreateSessionRequest.AsObject;
|
|
1024
1131
|
static toObject(includeInstance: boolean, msg: CreateSessionRequest): CreateSessionRequest.AsObject;
|
|
@@ -1032,6 +1139,7 @@ export namespace CreateSessionRequest {
|
|
|
1032
1139
|
parent: string,
|
|
1033
1140
|
sessionUuid: string,
|
|
1034
1141
|
labelsList: Array<string>,
|
|
1142
|
+
contextsList: Array<ondewo_nlu_context_pb.Context.AsObject>,
|
|
1035
1143
|
}
|
|
1036
1144
|
}
|
|
1037
1145
|
|
|
@@ -1142,6 +1250,14 @@ export class SessionReviewStep extends jspb.Message {
|
|
|
1142
1250
|
clearContextsOutList(): SessionReviewStep;
|
|
1143
1251
|
addContextsOut(value?: ondewo_nlu_context_pb.Context, index?: number): ondewo_nlu_context_pb.Context;
|
|
1144
1252
|
|
|
1253
|
+
getQueryTextOriginal(): string;
|
|
1254
|
+
setQueryTextOriginal(value: string): SessionReviewStep;
|
|
1255
|
+
|
|
1256
|
+
getPlatformsList(): Array<ondewo_nlu_intent_pb.Intent.Message.Platform>;
|
|
1257
|
+
setPlatformsList(value: Array<ondewo_nlu_intent_pb.Intent.Message.Platform>): SessionReviewStep;
|
|
1258
|
+
clearPlatformsList(): SessionReviewStep;
|
|
1259
|
+
addPlatforms(value: ondewo_nlu_intent_pb.Intent.Message.Platform, index?: number): SessionReviewStep;
|
|
1260
|
+
|
|
1145
1261
|
serializeBinary(): Uint8Array;
|
|
1146
1262
|
toObject(includeInstance?: boolean): SessionReviewStep.AsObject;
|
|
1147
1263
|
static toObject(includeInstance: boolean, msg: SessionReviewStep): SessionReviewStep.AsObject;
|
|
@@ -1158,6 +1274,8 @@ export namespace SessionReviewStep {
|
|
|
1158
1274
|
detectedIntentsList: Array<DetectedIntent.AsObject>,
|
|
1159
1275
|
contextsList: Array<ondewo_nlu_context_pb.Context.AsObject>,
|
|
1160
1276
|
contextsOutList: Array<ondewo_nlu_context_pb.Context.AsObject>,
|
|
1277
|
+
queryTextOriginal: string,
|
|
1278
|
+
platformsList: Array<ondewo_nlu_intent_pb.Intent.Message.Platform>,
|
|
1161
1279
|
}
|
|
1162
1280
|
}
|
|
1163
1281
|
|
|
@@ -1221,6 +1339,11 @@ export class ListSessionLabelsOfAllSessionsRequest extends jspb.Message {
|
|
|
1221
1339
|
getParent(): string;
|
|
1222
1340
|
setParent(value: string): ListSessionLabelsOfAllSessionsRequest;
|
|
1223
1341
|
|
|
1342
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1343
|
+
setSessionFilter(value?: SessionFilter): ListSessionLabelsOfAllSessionsRequest;
|
|
1344
|
+
hasSessionFilter(): boolean;
|
|
1345
|
+
clearSessionFilter(): ListSessionLabelsOfAllSessionsRequest;
|
|
1346
|
+
|
|
1224
1347
|
serializeBinary(): Uint8Array;
|
|
1225
1348
|
toObject(includeInstance?: boolean): ListSessionLabelsOfAllSessionsRequest.AsObject;
|
|
1226
1349
|
static toObject(includeInstance: boolean, msg: ListSessionLabelsOfAllSessionsRequest): ListSessionLabelsOfAllSessionsRequest.AsObject;
|
|
@@ -1232,6 +1355,7 @@ export class ListSessionLabelsOfAllSessionsRequest extends jspb.Message {
|
|
|
1232
1355
|
export namespace ListSessionLabelsOfAllSessionsRequest {
|
|
1233
1356
|
export type AsObject = {
|
|
1234
1357
|
parent: string,
|
|
1358
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1235
1359
|
}
|
|
1236
1360
|
}
|
|
1237
1361
|
|
|
@@ -1255,6 +1379,578 @@ export namespace ListSessionLabelsResponse {
|
|
|
1255
1379
|
}
|
|
1256
1380
|
}
|
|
1257
1381
|
|
|
1382
|
+
export class ListLanguageCodesOfAllSessionsRequest extends jspb.Message {
|
|
1383
|
+
getParent(): string;
|
|
1384
|
+
setParent(value: string): ListLanguageCodesOfAllSessionsRequest;
|
|
1385
|
+
|
|
1386
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1387
|
+
setSessionFilter(value?: SessionFilter): ListLanguageCodesOfAllSessionsRequest;
|
|
1388
|
+
hasSessionFilter(): boolean;
|
|
1389
|
+
clearSessionFilter(): ListLanguageCodesOfAllSessionsRequest;
|
|
1390
|
+
|
|
1391
|
+
serializeBinary(): Uint8Array;
|
|
1392
|
+
toObject(includeInstance?: boolean): ListLanguageCodesOfAllSessionsRequest.AsObject;
|
|
1393
|
+
static toObject(includeInstance: boolean, msg: ListLanguageCodesOfAllSessionsRequest): ListLanguageCodesOfAllSessionsRequest.AsObject;
|
|
1394
|
+
static serializeBinaryToWriter(message: ListLanguageCodesOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1395
|
+
static deserializeBinary(bytes: Uint8Array): ListLanguageCodesOfAllSessionsRequest;
|
|
1396
|
+
static deserializeBinaryFromReader(message: ListLanguageCodesOfAllSessionsRequest, reader: jspb.BinaryReader): ListLanguageCodesOfAllSessionsRequest;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
export namespace ListLanguageCodesOfAllSessionsRequest {
|
|
1400
|
+
export type AsObject = {
|
|
1401
|
+
parent: string,
|
|
1402
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1403
|
+
}
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
export class ListLanguageCodesResponse extends jspb.Message {
|
|
1407
|
+
getLanguageCodesList(): Array<string>;
|
|
1408
|
+
setLanguageCodesList(value: Array<string>): ListLanguageCodesResponse;
|
|
1409
|
+
clearLanguageCodesList(): ListLanguageCodesResponse;
|
|
1410
|
+
addLanguageCodes(value: string, index?: number): ListLanguageCodesResponse;
|
|
1411
|
+
|
|
1412
|
+
serializeBinary(): Uint8Array;
|
|
1413
|
+
toObject(includeInstance?: boolean): ListLanguageCodesResponse.AsObject;
|
|
1414
|
+
static toObject(includeInstance: boolean, msg: ListLanguageCodesResponse): ListLanguageCodesResponse.AsObject;
|
|
1415
|
+
static serializeBinaryToWriter(message: ListLanguageCodesResponse, writer: jspb.BinaryWriter): void;
|
|
1416
|
+
static deserializeBinary(bytes: Uint8Array): ListLanguageCodesResponse;
|
|
1417
|
+
static deserializeBinaryFromReader(message: ListLanguageCodesResponse, reader: jspb.BinaryReader): ListLanguageCodesResponse;
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
export namespace ListLanguageCodesResponse {
|
|
1421
|
+
export type AsObject = {
|
|
1422
|
+
languageCodesList: Array<string>,
|
|
1423
|
+
}
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
export class ListMatchedIntentsOfAllSessionsRequest extends jspb.Message {
|
|
1427
|
+
getParent(): string;
|
|
1428
|
+
setParent(value: string): ListMatchedIntentsOfAllSessionsRequest;
|
|
1429
|
+
|
|
1430
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1431
|
+
setSessionFilter(value?: SessionFilter): ListMatchedIntentsOfAllSessionsRequest;
|
|
1432
|
+
hasSessionFilter(): boolean;
|
|
1433
|
+
clearSessionFilter(): ListMatchedIntentsOfAllSessionsRequest;
|
|
1434
|
+
|
|
1435
|
+
serializeBinary(): Uint8Array;
|
|
1436
|
+
toObject(includeInstance?: boolean): ListMatchedIntentsOfAllSessionsRequest.AsObject;
|
|
1437
|
+
static toObject(includeInstance: boolean, msg: ListMatchedIntentsOfAllSessionsRequest): ListMatchedIntentsOfAllSessionsRequest.AsObject;
|
|
1438
|
+
static serializeBinaryToWriter(message: ListMatchedIntentsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1439
|
+
static deserializeBinary(bytes: Uint8Array): ListMatchedIntentsOfAllSessionsRequest;
|
|
1440
|
+
static deserializeBinaryFromReader(message: ListMatchedIntentsOfAllSessionsRequest, reader: jspb.BinaryReader): ListMatchedIntentsOfAllSessionsRequest;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
export namespace ListMatchedIntentsOfAllSessionsRequest {
|
|
1444
|
+
export type AsObject = {
|
|
1445
|
+
parent: string,
|
|
1446
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1447
|
+
}
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
export class ListMatchedIntentsResponse extends jspb.Message {
|
|
1451
|
+
getMatchedIntentsList(): Array<string>;
|
|
1452
|
+
setMatchedIntentsList(value: Array<string>): ListMatchedIntentsResponse;
|
|
1453
|
+
clearMatchedIntentsList(): ListMatchedIntentsResponse;
|
|
1454
|
+
addMatchedIntents(value: string, index?: number): ListMatchedIntentsResponse;
|
|
1455
|
+
|
|
1456
|
+
serializeBinary(): Uint8Array;
|
|
1457
|
+
toObject(includeInstance?: boolean): ListMatchedIntentsResponse.AsObject;
|
|
1458
|
+
static toObject(includeInstance: boolean, msg: ListMatchedIntentsResponse): ListMatchedIntentsResponse.AsObject;
|
|
1459
|
+
static serializeBinaryToWriter(message: ListMatchedIntentsResponse, writer: jspb.BinaryWriter): void;
|
|
1460
|
+
static deserializeBinary(bytes: Uint8Array): ListMatchedIntentsResponse;
|
|
1461
|
+
static deserializeBinaryFromReader(message: ListMatchedIntentsResponse, reader: jspb.BinaryReader): ListMatchedIntentsResponse;
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
export namespace ListMatchedIntentsResponse {
|
|
1465
|
+
export type AsObject = {
|
|
1466
|
+
matchedIntentsList: Array<string>,
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
export class ListMatchedEntityTypesOfAllSessionsRequest extends jspb.Message {
|
|
1471
|
+
getParent(): string;
|
|
1472
|
+
setParent(value: string): ListMatchedEntityTypesOfAllSessionsRequest;
|
|
1473
|
+
|
|
1474
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1475
|
+
setSessionFilter(value?: SessionFilter): ListMatchedEntityTypesOfAllSessionsRequest;
|
|
1476
|
+
hasSessionFilter(): boolean;
|
|
1477
|
+
clearSessionFilter(): ListMatchedEntityTypesOfAllSessionsRequest;
|
|
1478
|
+
|
|
1479
|
+
serializeBinary(): Uint8Array;
|
|
1480
|
+
toObject(includeInstance?: boolean): ListMatchedEntityTypesOfAllSessionsRequest.AsObject;
|
|
1481
|
+
static toObject(includeInstance: boolean, msg: ListMatchedEntityTypesOfAllSessionsRequest): ListMatchedEntityTypesOfAllSessionsRequest.AsObject;
|
|
1482
|
+
static serializeBinaryToWriter(message: ListMatchedEntityTypesOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1483
|
+
static deserializeBinary(bytes: Uint8Array): ListMatchedEntityTypesOfAllSessionsRequest;
|
|
1484
|
+
static deserializeBinaryFromReader(message: ListMatchedEntityTypesOfAllSessionsRequest, reader: jspb.BinaryReader): ListMatchedEntityTypesOfAllSessionsRequest;
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
export namespace ListMatchedEntityTypesOfAllSessionsRequest {
|
|
1488
|
+
export type AsObject = {
|
|
1489
|
+
parent: string,
|
|
1490
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1491
|
+
}
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
export class ListMatchedEntityTypesResponse extends jspb.Message {
|
|
1495
|
+
getMatchedEntityTypesList(): Array<string>;
|
|
1496
|
+
setMatchedEntityTypesList(value: Array<string>): ListMatchedEntityTypesResponse;
|
|
1497
|
+
clearMatchedEntityTypesList(): ListMatchedEntityTypesResponse;
|
|
1498
|
+
addMatchedEntityTypes(value: string, index?: number): ListMatchedEntityTypesResponse;
|
|
1499
|
+
|
|
1500
|
+
serializeBinary(): Uint8Array;
|
|
1501
|
+
toObject(includeInstance?: boolean): ListMatchedEntityTypesResponse.AsObject;
|
|
1502
|
+
static toObject(includeInstance: boolean, msg: ListMatchedEntityTypesResponse): ListMatchedEntityTypesResponse.AsObject;
|
|
1503
|
+
static serializeBinaryToWriter(message: ListMatchedEntityTypesResponse, writer: jspb.BinaryWriter): void;
|
|
1504
|
+
static deserializeBinary(bytes: Uint8Array): ListMatchedEntityTypesResponse;
|
|
1505
|
+
static deserializeBinaryFromReader(message: ListMatchedEntityTypesResponse, reader: jspb.BinaryReader): ListMatchedEntityTypesResponse;
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
export namespace ListMatchedEntityTypesResponse {
|
|
1509
|
+
export type AsObject = {
|
|
1510
|
+
matchedEntityTypesList: Array<string>,
|
|
1511
|
+
}
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
export class ListUserIdsOfAllSessionsRequest extends jspb.Message {
|
|
1515
|
+
getParent(): string;
|
|
1516
|
+
setParent(value: string): ListUserIdsOfAllSessionsRequest;
|
|
1517
|
+
|
|
1518
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1519
|
+
setSessionFilter(value?: SessionFilter): ListUserIdsOfAllSessionsRequest;
|
|
1520
|
+
hasSessionFilter(): boolean;
|
|
1521
|
+
clearSessionFilter(): ListUserIdsOfAllSessionsRequest;
|
|
1522
|
+
|
|
1523
|
+
serializeBinary(): Uint8Array;
|
|
1524
|
+
toObject(includeInstance?: boolean): ListUserIdsOfAllSessionsRequest.AsObject;
|
|
1525
|
+
static toObject(includeInstance: boolean, msg: ListUserIdsOfAllSessionsRequest): ListUserIdsOfAllSessionsRequest.AsObject;
|
|
1526
|
+
static serializeBinaryToWriter(message: ListUserIdsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1527
|
+
static deserializeBinary(bytes: Uint8Array): ListUserIdsOfAllSessionsRequest;
|
|
1528
|
+
static deserializeBinaryFromReader(message: ListUserIdsOfAllSessionsRequest, reader: jspb.BinaryReader): ListUserIdsOfAllSessionsRequest;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
export namespace ListUserIdsOfAllSessionsRequest {
|
|
1532
|
+
export type AsObject = {
|
|
1533
|
+
parent: string,
|
|
1534
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
export class ListUserIdsResponse extends jspb.Message {
|
|
1539
|
+
getUserIdsList(): Array<string>;
|
|
1540
|
+
setUserIdsList(value: Array<string>): ListUserIdsResponse;
|
|
1541
|
+
clearUserIdsList(): ListUserIdsResponse;
|
|
1542
|
+
addUserIds(value: string, index?: number): ListUserIdsResponse;
|
|
1543
|
+
|
|
1544
|
+
serializeBinary(): Uint8Array;
|
|
1545
|
+
toObject(includeInstance?: boolean): ListUserIdsResponse.AsObject;
|
|
1546
|
+
static toObject(includeInstance: boolean, msg: ListUserIdsResponse): ListUserIdsResponse.AsObject;
|
|
1547
|
+
static serializeBinaryToWriter(message: ListUserIdsResponse, writer: jspb.BinaryWriter): void;
|
|
1548
|
+
static deserializeBinary(bytes: Uint8Array): ListUserIdsResponse;
|
|
1549
|
+
static deserializeBinaryFromReader(message: ListUserIdsResponse, reader: jspb.BinaryReader): ListUserIdsResponse;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
export namespace ListUserIdsResponse {
|
|
1553
|
+
export type AsObject = {
|
|
1554
|
+
userIdsList: Array<string>,
|
|
1555
|
+
}
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
export class ListIdentifiedUserIdsOfAllSessionsRequest extends jspb.Message {
|
|
1559
|
+
getParent(): string;
|
|
1560
|
+
setParent(value: string): ListIdentifiedUserIdsOfAllSessionsRequest;
|
|
1561
|
+
|
|
1562
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1563
|
+
setSessionFilter(value?: SessionFilter): ListIdentifiedUserIdsOfAllSessionsRequest;
|
|
1564
|
+
hasSessionFilter(): boolean;
|
|
1565
|
+
clearSessionFilter(): ListIdentifiedUserIdsOfAllSessionsRequest;
|
|
1566
|
+
|
|
1567
|
+
serializeBinary(): Uint8Array;
|
|
1568
|
+
toObject(includeInstance?: boolean): ListIdentifiedUserIdsOfAllSessionsRequest.AsObject;
|
|
1569
|
+
static toObject(includeInstance: boolean, msg: ListIdentifiedUserIdsOfAllSessionsRequest): ListIdentifiedUserIdsOfAllSessionsRequest.AsObject;
|
|
1570
|
+
static serializeBinaryToWriter(message: ListIdentifiedUserIdsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1571
|
+
static deserializeBinary(bytes: Uint8Array): ListIdentifiedUserIdsOfAllSessionsRequest;
|
|
1572
|
+
static deserializeBinaryFromReader(message: ListIdentifiedUserIdsOfAllSessionsRequest, reader: jspb.BinaryReader): ListIdentifiedUserIdsOfAllSessionsRequest;
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
export namespace ListIdentifiedUserIdsOfAllSessionsRequest {
|
|
1576
|
+
export type AsObject = {
|
|
1577
|
+
parent: string,
|
|
1578
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1579
|
+
}
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1582
|
+
export class ListIdentifiedUserIdsResponse extends jspb.Message {
|
|
1583
|
+
getIdentifiedUserIdsList(): Array<string>;
|
|
1584
|
+
setIdentifiedUserIdsList(value: Array<string>): ListIdentifiedUserIdsResponse;
|
|
1585
|
+
clearIdentifiedUserIdsList(): ListIdentifiedUserIdsResponse;
|
|
1586
|
+
addIdentifiedUserIds(value: string, index?: number): ListIdentifiedUserIdsResponse;
|
|
1587
|
+
|
|
1588
|
+
serializeBinary(): Uint8Array;
|
|
1589
|
+
toObject(includeInstance?: boolean): ListIdentifiedUserIdsResponse.AsObject;
|
|
1590
|
+
static toObject(includeInstance: boolean, msg: ListIdentifiedUserIdsResponse): ListIdentifiedUserIdsResponse.AsObject;
|
|
1591
|
+
static serializeBinaryToWriter(message: ListIdentifiedUserIdsResponse, writer: jspb.BinaryWriter): void;
|
|
1592
|
+
static deserializeBinary(bytes: Uint8Array): ListIdentifiedUserIdsResponse;
|
|
1593
|
+
static deserializeBinaryFromReader(message: ListIdentifiedUserIdsResponse, reader: jspb.BinaryReader): ListIdentifiedUserIdsResponse;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
export namespace ListIdentifiedUserIdsResponse {
|
|
1597
|
+
export type AsObject = {
|
|
1598
|
+
identifiedUserIdsList: Array<string>,
|
|
1599
|
+
}
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
export class ListTagsOfAllSessionsRequest extends jspb.Message {
|
|
1603
|
+
getParent(): string;
|
|
1604
|
+
setParent(value: string): ListTagsOfAllSessionsRequest;
|
|
1605
|
+
|
|
1606
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1607
|
+
setSessionFilter(value?: SessionFilter): ListTagsOfAllSessionsRequest;
|
|
1608
|
+
hasSessionFilter(): boolean;
|
|
1609
|
+
clearSessionFilter(): ListTagsOfAllSessionsRequest;
|
|
1610
|
+
|
|
1611
|
+
serializeBinary(): Uint8Array;
|
|
1612
|
+
toObject(includeInstance?: boolean): ListTagsOfAllSessionsRequest.AsObject;
|
|
1613
|
+
static toObject(includeInstance: boolean, msg: ListTagsOfAllSessionsRequest): ListTagsOfAllSessionsRequest.AsObject;
|
|
1614
|
+
static serializeBinaryToWriter(message: ListTagsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1615
|
+
static deserializeBinary(bytes: Uint8Array): ListTagsOfAllSessionsRequest;
|
|
1616
|
+
static deserializeBinaryFromReader(message: ListTagsOfAllSessionsRequest, reader: jspb.BinaryReader): ListTagsOfAllSessionsRequest;
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
export namespace ListTagsOfAllSessionsRequest {
|
|
1620
|
+
export type AsObject = {
|
|
1621
|
+
parent: string,
|
|
1622
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1623
|
+
}
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
export class ListTagsResponse extends jspb.Message {
|
|
1627
|
+
getTagsList(): Array<string>;
|
|
1628
|
+
setTagsList(value: Array<string>): ListTagsResponse;
|
|
1629
|
+
clearTagsList(): ListTagsResponse;
|
|
1630
|
+
addTags(value: string, index?: number): ListTagsResponse;
|
|
1631
|
+
|
|
1632
|
+
serializeBinary(): Uint8Array;
|
|
1633
|
+
toObject(includeInstance?: boolean): ListTagsResponse.AsObject;
|
|
1634
|
+
static toObject(includeInstance: boolean, msg: ListTagsResponse): ListTagsResponse.AsObject;
|
|
1635
|
+
static serializeBinaryToWriter(message: ListTagsResponse, writer: jspb.BinaryWriter): void;
|
|
1636
|
+
static deserializeBinary(bytes: Uint8Array): ListTagsResponse;
|
|
1637
|
+
static deserializeBinaryFromReader(message: ListTagsResponse, reader: jspb.BinaryReader): ListTagsResponse;
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
export namespace ListTagsResponse {
|
|
1641
|
+
export type AsObject = {
|
|
1642
|
+
tagsList: Array<string>,
|
|
1643
|
+
}
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
export class ListInputContextsOfAllSessionsRequest extends jspb.Message {
|
|
1647
|
+
getParent(): string;
|
|
1648
|
+
setParent(value: string): ListInputContextsOfAllSessionsRequest;
|
|
1649
|
+
|
|
1650
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1651
|
+
setSessionFilter(value?: SessionFilter): ListInputContextsOfAllSessionsRequest;
|
|
1652
|
+
hasSessionFilter(): boolean;
|
|
1653
|
+
clearSessionFilter(): ListInputContextsOfAllSessionsRequest;
|
|
1654
|
+
|
|
1655
|
+
serializeBinary(): Uint8Array;
|
|
1656
|
+
toObject(includeInstance?: boolean): ListInputContextsOfAllSessionsRequest.AsObject;
|
|
1657
|
+
static toObject(includeInstance: boolean, msg: ListInputContextsOfAllSessionsRequest): ListInputContextsOfAllSessionsRequest.AsObject;
|
|
1658
|
+
static serializeBinaryToWriter(message: ListInputContextsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1659
|
+
static deserializeBinary(bytes: Uint8Array): ListInputContextsOfAllSessionsRequest;
|
|
1660
|
+
static deserializeBinaryFromReader(message: ListInputContextsOfAllSessionsRequest, reader: jspb.BinaryReader): ListInputContextsOfAllSessionsRequest;
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
export namespace ListInputContextsOfAllSessionsRequest {
|
|
1664
|
+
export type AsObject = {
|
|
1665
|
+
parent: string,
|
|
1666
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1667
|
+
}
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
export class ListInputContextsResponse extends jspb.Message {
|
|
1671
|
+
getInputContextsList(): Array<string>;
|
|
1672
|
+
setInputContextsList(value: Array<string>): ListInputContextsResponse;
|
|
1673
|
+
clearInputContextsList(): ListInputContextsResponse;
|
|
1674
|
+
addInputContexts(value: string, index?: number): ListInputContextsResponse;
|
|
1675
|
+
|
|
1676
|
+
serializeBinary(): Uint8Array;
|
|
1677
|
+
toObject(includeInstance?: boolean): ListInputContextsResponse.AsObject;
|
|
1678
|
+
static toObject(includeInstance: boolean, msg: ListInputContextsResponse): ListInputContextsResponse.AsObject;
|
|
1679
|
+
static serializeBinaryToWriter(message: ListInputContextsResponse, writer: jspb.BinaryWriter): void;
|
|
1680
|
+
static deserializeBinary(bytes: Uint8Array): ListInputContextsResponse;
|
|
1681
|
+
static deserializeBinaryFromReader(message: ListInputContextsResponse, reader: jspb.BinaryReader): ListInputContextsResponse;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
export namespace ListInputContextsResponse {
|
|
1685
|
+
export type AsObject = {
|
|
1686
|
+
inputContextsList: Array<string>,
|
|
1687
|
+
}
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
export class ListOutputContextsOfAllSessionsRequest extends jspb.Message {
|
|
1691
|
+
getParent(): string;
|
|
1692
|
+
setParent(value: string): ListOutputContextsOfAllSessionsRequest;
|
|
1693
|
+
|
|
1694
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1695
|
+
setSessionFilter(value?: SessionFilter): ListOutputContextsOfAllSessionsRequest;
|
|
1696
|
+
hasSessionFilter(): boolean;
|
|
1697
|
+
clearSessionFilter(): ListOutputContextsOfAllSessionsRequest;
|
|
1698
|
+
|
|
1699
|
+
serializeBinary(): Uint8Array;
|
|
1700
|
+
toObject(includeInstance?: boolean): ListOutputContextsOfAllSessionsRequest.AsObject;
|
|
1701
|
+
static toObject(includeInstance: boolean, msg: ListOutputContextsOfAllSessionsRequest): ListOutputContextsOfAllSessionsRequest.AsObject;
|
|
1702
|
+
static serializeBinaryToWriter(message: ListOutputContextsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1703
|
+
static deserializeBinary(bytes: Uint8Array): ListOutputContextsOfAllSessionsRequest;
|
|
1704
|
+
static deserializeBinaryFromReader(message: ListOutputContextsOfAllSessionsRequest, reader: jspb.BinaryReader): ListOutputContextsOfAllSessionsRequest;
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
export namespace ListOutputContextsOfAllSessionsRequest {
|
|
1708
|
+
export type AsObject = {
|
|
1709
|
+
parent: string,
|
|
1710
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1711
|
+
}
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
export class ListOutputContextsResponse extends jspb.Message {
|
|
1715
|
+
getOutputContextsList(): Array<string>;
|
|
1716
|
+
setOutputContextsList(value: Array<string>): ListOutputContextsResponse;
|
|
1717
|
+
clearOutputContextsList(): ListOutputContextsResponse;
|
|
1718
|
+
addOutputContexts(value: string, index?: number): ListOutputContextsResponse;
|
|
1719
|
+
|
|
1720
|
+
serializeBinary(): Uint8Array;
|
|
1721
|
+
toObject(includeInstance?: boolean): ListOutputContextsResponse.AsObject;
|
|
1722
|
+
static toObject(includeInstance: boolean, msg: ListOutputContextsResponse): ListOutputContextsResponse.AsObject;
|
|
1723
|
+
static serializeBinaryToWriter(message: ListOutputContextsResponse, writer: jspb.BinaryWriter): void;
|
|
1724
|
+
static deserializeBinary(bytes: Uint8Array): ListOutputContextsResponse;
|
|
1725
|
+
static deserializeBinaryFromReader(message: ListOutputContextsResponse, reader: jspb.BinaryReader): ListOutputContextsResponse;
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
export namespace ListOutputContextsResponse {
|
|
1729
|
+
export type AsObject = {
|
|
1730
|
+
outputContextsList: Array<string>,
|
|
1731
|
+
}
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
export class ListPlatformsOfAllSessionsRequest extends jspb.Message {
|
|
1735
|
+
getParent(): string;
|
|
1736
|
+
setParent(value: string): ListPlatformsOfAllSessionsRequest;
|
|
1737
|
+
|
|
1738
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1739
|
+
setSessionFilter(value?: SessionFilter): ListPlatformsOfAllSessionsRequest;
|
|
1740
|
+
hasSessionFilter(): boolean;
|
|
1741
|
+
clearSessionFilter(): ListPlatformsOfAllSessionsRequest;
|
|
1742
|
+
|
|
1743
|
+
serializeBinary(): Uint8Array;
|
|
1744
|
+
toObject(includeInstance?: boolean): ListPlatformsOfAllSessionsRequest.AsObject;
|
|
1745
|
+
static toObject(includeInstance: boolean, msg: ListPlatformsOfAllSessionsRequest): ListPlatformsOfAllSessionsRequest.AsObject;
|
|
1746
|
+
static serializeBinaryToWriter(message: ListPlatformsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1747
|
+
static deserializeBinary(bytes: Uint8Array): ListPlatformsOfAllSessionsRequest;
|
|
1748
|
+
static deserializeBinaryFromReader(message: ListPlatformsOfAllSessionsRequest, reader: jspb.BinaryReader): ListPlatformsOfAllSessionsRequest;
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
export namespace ListPlatformsOfAllSessionsRequest {
|
|
1752
|
+
export type AsObject = {
|
|
1753
|
+
parent: string,
|
|
1754
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1755
|
+
}
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
export class ListPlatformsResponse extends jspb.Message {
|
|
1759
|
+
getPlatformsList(): Array<string>;
|
|
1760
|
+
setPlatformsList(value: Array<string>): ListPlatformsResponse;
|
|
1761
|
+
clearPlatformsList(): ListPlatformsResponse;
|
|
1762
|
+
addPlatforms(value: string, index?: number): ListPlatformsResponse;
|
|
1763
|
+
|
|
1764
|
+
serializeBinary(): Uint8Array;
|
|
1765
|
+
toObject(includeInstance?: boolean): ListPlatformsResponse.AsObject;
|
|
1766
|
+
static toObject(includeInstance: boolean, msg: ListPlatformsResponse): ListPlatformsResponse.AsObject;
|
|
1767
|
+
static serializeBinaryToWriter(message: ListPlatformsResponse, writer: jspb.BinaryWriter): void;
|
|
1768
|
+
static deserializeBinary(bytes: Uint8Array): ListPlatformsResponse;
|
|
1769
|
+
static deserializeBinaryFromReader(message: ListPlatformsResponse, reader: jspb.BinaryReader): ListPlatformsResponse;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
export namespace ListPlatformsResponse {
|
|
1773
|
+
export type AsObject = {
|
|
1774
|
+
platformsList: Array<string>,
|
|
1775
|
+
}
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
export class ListAccountIdsOfAllSessionsRequest extends jspb.Message {
|
|
1779
|
+
getParent(): string;
|
|
1780
|
+
setParent(value: string): ListAccountIdsOfAllSessionsRequest;
|
|
1781
|
+
|
|
1782
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1783
|
+
setSessionFilter(value?: SessionFilter): ListAccountIdsOfAllSessionsRequest;
|
|
1784
|
+
hasSessionFilter(): boolean;
|
|
1785
|
+
clearSessionFilter(): ListAccountIdsOfAllSessionsRequest;
|
|
1786
|
+
|
|
1787
|
+
serializeBinary(): Uint8Array;
|
|
1788
|
+
toObject(includeInstance?: boolean): ListAccountIdsOfAllSessionsRequest.AsObject;
|
|
1789
|
+
static toObject(includeInstance: boolean, msg: ListAccountIdsOfAllSessionsRequest): ListAccountIdsOfAllSessionsRequest.AsObject;
|
|
1790
|
+
static serializeBinaryToWriter(message: ListAccountIdsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1791
|
+
static deserializeBinary(bytes: Uint8Array): ListAccountIdsOfAllSessionsRequest;
|
|
1792
|
+
static deserializeBinaryFromReader(message: ListAccountIdsOfAllSessionsRequest, reader: jspb.BinaryReader): ListAccountIdsOfAllSessionsRequest;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
export namespace ListAccountIdsOfAllSessionsRequest {
|
|
1796
|
+
export type AsObject = {
|
|
1797
|
+
parent: string,
|
|
1798
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1799
|
+
}
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
export class ListAccountIdsResponse extends jspb.Message {
|
|
1803
|
+
getAccountIdsList(): Array<string>;
|
|
1804
|
+
setAccountIdsList(value: Array<string>): ListAccountIdsResponse;
|
|
1805
|
+
clearAccountIdsList(): ListAccountIdsResponse;
|
|
1806
|
+
addAccountIds(value: string, index?: number): ListAccountIdsResponse;
|
|
1807
|
+
|
|
1808
|
+
serializeBinary(): Uint8Array;
|
|
1809
|
+
toObject(includeInstance?: boolean): ListAccountIdsResponse.AsObject;
|
|
1810
|
+
static toObject(includeInstance: boolean, msg: ListAccountIdsResponse): ListAccountIdsResponse.AsObject;
|
|
1811
|
+
static serializeBinaryToWriter(message: ListAccountIdsResponse, writer: jspb.BinaryWriter): void;
|
|
1812
|
+
static deserializeBinary(bytes: Uint8Array): ListAccountIdsResponse;
|
|
1813
|
+
static deserializeBinaryFromReader(message: ListAccountIdsResponse, reader: jspb.BinaryReader): ListAccountIdsResponse;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
export namespace ListAccountIdsResponse {
|
|
1817
|
+
export type AsObject = {
|
|
1818
|
+
accountIdsList: Array<string>,
|
|
1819
|
+
}
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
export class ListPropertyIdsOfAllSessionsRequest extends jspb.Message {
|
|
1823
|
+
getParent(): string;
|
|
1824
|
+
setParent(value: string): ListPropertyIdsOfAllSessionsRequest;
|
|
1825
|
+
|
|
1826
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1827
|
+
setSessionFilter(value?: SessionFilter): ListPropertyIdsOfAllSessionsRequest;
|
|
1828
|
+
hasSessionFilter(): boolean;
|
|
1829
|
+
clearSessionFilter(): ListPropertyIdsOfAllSessionsRequest;
|
|
1830
|
+
|
|
1831
|
+
serializeBinary(): Uint8Array;
|
|
1832
|
+
toObject(includeInstance?: boolean): ListPropertyIdsOfAllSessionsRequest.AsObject;
|
|
1833
|
+
static toObject(includeInstance: boolean, msg: ListPropertyIdsOfAllSessionsRequest): ListPropertyIdsOfAllSessionsRequest.AsObject;
|
|
1834
|
+
static serializeBinaryToWriter(message: ListPropertyIdsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1835
|
+
static deserializeBinary(bytes: Uint8Array): ListPropertyIdsOfAllSessionsRequest;
|
|
1836
|
+
static deserializeBinaryFromReader(message: ListPropertyIdsOfAllSessionsRequest, reader: jspb.BinaryReader): ListPropertyIdsOfAllSessionsRequest;
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
export namespace ListPropertyIdsOfAllSessionsRequest {
|
|
1840
|
+
export type AsObject = {
|
|
1841
|
+
parent: string,
|
|
1842
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
export class ListPropertyIdsResponse extends jspb.Message {
|
|
1847
|
+
getPropertyIdsList(): Array<string>;
|
|
1848
|
+
setPropertyIdsList(value: Array<string>): ListPropertyIdsResponse;
|
|
1849
|
+
clearPropertyIdsList(): ListPropertyIdsResponse;
|
|
1850
|
+
addPropertyIds(value: string, index?: number): ListPropertyIdsResponse;
|
|
1851
|
+
|
|
1852
|
+
serializeBinary(): Uint8Array;
|
|
1853
|
+
toObject(includeInstance?: boolean): ListPropertyIdsResponse.AsObject;
|
|
1854
|
+
static toObject(includeInstance: boolean, msg: ListPropertyIdsResponse): ListPropertyIdsResponse.AsObject;
|
|
1855
|
+
static serializeBinaryToWriter(message: ListPropertyIdsResponse, writer: jspb.BinaryWriter): void;
|
|
1856
|
+
static deserializeBinary(bytes: Uint8Array): ListPropertyIdsResponse;
|
|
1857
|
+
static deserializeBinaryFromReader(message: ListPropertyIdsResponse, reader: jspb.BinaryReader): ListPropertyIdsResponse;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
export namespace ListPropertyIdsResponse {
|
|
1861
|
+
export type AsObject = {
|
|
1862
|
+
propertyIdsList: Array<string>,
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
export class ListDatastreamIdsOfAllSessionsRequest extends jspb.Message {
|
|
1867
|
+
getParent(): string;
|
|
1868
|
+
setParent(value: string): ListDatastreamIdsOfAllSessionsRequest;
|
|
1869
|
+
|
|
1870
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1871
|
+
setSessionFilter(value?: SessionFilter): ListDatastreamIdsOfAllSessionsRequest;
|
|
1872
|
+
hasSessionFilter(): boolean;
|
|
1873
|
+
clearSessionFilter(): ListDatastreamIdsOfAllSessionsRequest;
|
|
1874
|
+
|
|
1875
|
+
serializeBinary(): Uint8Array;
|
|
1876
|
+
toObject(includeInstance?: boolean): ListDatastreamIdsOfAllSessionsRequest.AsObject;
|
|
1877
|
+
static toObject(includeInstance: boolean, msg: ListDatastreamIdsOfAllSessionsRequest): ListDatastreamIdsOfAllSessionsRequest.AsObject;
|
|
1878
|
+
static serializeBinaryToWriter(message: ListDatastreamIdsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1879
|
+
static deserializeBinary(bytes: Uint8Array): ListDatastreamIdsOfAllSessionsRequest;
|
|
1880
|
+
static deserializeBinaryFromReader(message: ListDatastreamIdsOfAllSessionsRequest, reader: jspb.BinaryReader): ListDatastreamIdsOfAllSessionsRequest;
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
export namespace ListDatastreamIdsOfAllSessionsRequest {
|
|
1884
|
+
export type AsObject = {
|
|
1885
|
+
parent: string,
|
|
1886
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1887
|
+
}
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
export class ListDatastreamIdsResponse extends jspb.Message {
|
|
1891
|
+
getDatastreamIdsList(): Array<string>;
|
|
1892
|
+
setDatastreamIdsList(value: Array<string>): ListDatastreamIdsResponse;
|
|
1893
|
+
clearDatastreamIdsList(): ListDatastreamIdsResponse;
|
|
1894
|
+
addDatastreamIds(value: string, index?: number): ListDatastreamIdsResponse;
|
|
1895
|
+
|
|
1896
|
+
serializeBinary(): Uint8Array;
|
|
1897
|
+
toObject(includeInstance?: boolean): ListDatastreamIdsResponse.AsObject;
|
|
1898
|
+
static toObject(includeInstance: boolean, msg: ListDatastreamIdsResponse): ListDatastreamIdsResponse.AsObject;
|
|
1899
|
+
static serializeBinaryToWriter(message: ListDatastreamIdsResponse, writer: jspb.BinaryWriter): void;
|
|
1900
|
+
static deserializeBinary(bytes: Uint8Array): ListDatastreamIdsResponse;
|
|
1901
|
+
static deserializeBinaryFromReader(message: ListDatastreamIdsResponse, reader: jspb.BinaryReader): ListDatastreamIdsResponse;
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
export namespace ListDatastreamIdsResponse {
|
|
1905
|
+
export type AsObject = {
|
|
1906
|
+
datastreamIdsList: Array<string>,
|
|
1907
|
+
}
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
export class ListOriginIdsOfAllSessionsRequest extends jspb.Message {
|
|
1911
|
+
getParent(): string;
|
|
1912
|
+
setParent(value: string): ListOriginIdsOfAllSessionsRequest;
|
|
1913
|
+
|
|
1914
|
+
getSessionFilter(): SessionFilter | undefined;
|
|
1915
|
+
setSessionFilter(value?: SessionFilter): ListOriginIdsOfAllSessionsRequest;
|
|
1916
|
+
hasSessionFilter(): boolean;
|
|
1917
|
+
clearSessionFilter(): ListOriginIdsOfAllSessionsRequest;
|
|
1918
|
+
|
|
1919
|
+
serializeBinary(): Uint8Array;
|
|
1920
|
+
toObject(includeInstance?: boolean): ListOriginIdsOfAllSessionsRequest.AsObject;
|
|
1921
|
+
static toObject(includeInstance: boolean, msg: ListOriginIdsOfAllSessionsRequest): ListOriginIdsOfAllSessionsRequest.AsObject;
|
|
1922
|
+
static serializeBinaryToWriter(message: ListOriginIdsOfAllSessionsRequest, writer: jspb.BinaryWriter): void;
|
|
1923
|
+
static deserializeBinary(bytes: Uint8Array): ListOriginIdsOfAllSessionsRequest;
|
|
1924
|
+
static deserializeBinaryFromReader(message: ListOriginIdsOfAllSessionsRequest, reader: jspb.BinaryReader): ListOriginIdsOfAllSessionsRequest;
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
export namespace ListOriginIdsOfAllSessionsRequest {
|
|
1928
|
+
export type AsObject = {
|
|
1929
|
+
parent: string,
|
|
1930
|
+
sessionFilter?: SessionFilter.AsObject,
|
|
1931
|
+
}
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
export class ListOriginIdsResponse extends jspb.Message {
|
|
1935
|
+
getOriginIdsList(): Array<string>;
|
|
1936
|
+
setOriginIdsList(value: Array<string>): ListOriginIdsResponse;
|
|
1937
|
+
clearOriginIdsList(): ListOriginIdsResponse;
|
|
1938
|
+
addOriginIds(value: string, index?: number): ListOriginIdsResponse;
|
|
1939
|
+
|
|
1940
|
+
serializeBinary(): Uint8Array;
|
|
1941
|
+
toObject(includeInstance?: boolean): ListOriginIdsResponse.AsObject;
|
|
1942
|
+
static toObject(includeInstance: boolean, msg: ListOriginIdsResponse): ListOriginIdsResponse.AsObject;
|
|
1943
|
+
static serializeBinaryToWriter(message: ListOriginIdsResponse, writer: jspb.BinaryWriter): void;
|
|
1944
|
+
static deserializeBinary(bytes: Uint8Array): ListOriginIdsResponse;
|
|
1945
|
+
static deserializeBinaryFromReader(message: ListOriginIdsResponse, reader: jspb.BinaryReader): ListOriginIdsResponse;
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
export namespace ListOriginIdsResponse {
|
|
1949
|
+
export type AsObject = {
|
|
1950
|
+
originIdsList: Array<string>,
|
|
1951
|
+
}
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1258
1954
|
export class AddSessionLabelsRequest extends jspb.Message {
|
|
1259
1955
|
getSessionId(): string;
|
|
1260
1956
|
setSessionId(value: string): AddSessionLabelsRequest;
|