@ondewo/nlu-client-typescript 3.5.2 → 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/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.js +2 -0
- package/api/ondewo/nlu/session_pb.d.ts +216 -6
- package/api/ondewo/nlu/session_pb.js +2120 -571
- package/package.json +1 -1
|
@@ -157,6 +157,13 @@ export class AgentsClient {
|
|
|
157
157
|
response: ondewo_nlu_agent_pb.GetAgentStatisticsResponse) => void
|
|
158
158
|
): grpcWeb.ClientReadableStream<ondewo_nlu_agent_pb.GetAgentStatisticsResponse>;
|
|
159
159
|
|
|
160
|
+
getSessionsStatistics(
|
|
161
|
+
request: ondewo_nlu_agent_pb.GetSessionsStatisticsRequest,
|
|
162
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
163
|
+
callback: (err: grpcWeb.RpcError,
|
|
164
|
+
response: ondewo_nlu_agent_pb.GetSessionsStatisticsResponse) => void
|
|
165
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_agent_pb.GetSessionsStatisticsResponse>;
|
|
166
|
+
|
|
160
167
|
setAgentStatus(
|
|
161
168
|
request: ondewo_nlu_agent_pb.SetAgentStatusRequest,
|
|
162
169
|
metadata: grpcWeb.Metadata | undefined,
|
|
@@ -395,6 +402,11 @@ export class AgentsPromiseClient {
|
|
|
395
402
|
metadata?: grpcWeb.Metadata
|
|
396
403
|
): Promise<ondewo_nlu_agent_pb.GetAgentStatisticsResponse>;
|
|
397
404
|
|
|
405
|
+
getSessionsStatistics(
|
|
406
|
+
request: ondewo_nlu_agent_pb.GetSessionsStatisticsRequest,
|
|
407
|
+
metadata?: grpcWeb.Metadata
|
|
408
|
+
): Promise<ondewo_nlu_agent_pb.GetSessionsStatisticsResponse>;
|
|
409
|
+
|
|
398
410
|
setAgentStatus(
|
|
399
411
|
request: ondewo_nlu_agent_pb.SetAgentStatusRequest,
|
|
400
412
|
metadata?: grpcWeb.Metadata
|
|
@@ -24,8 +24,6 @@ var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb
|
|
|
24
24
|
|
|
25
25
|
var google_protobuf_struct_pb = require('google-protobuf/google/protobuf/struct_pb.js')
|
|
26
26
|
|
|
27
|
-
var google_protobuf_any_pb = require('google-protobuf/google/protobuf/any_pb.js')
|
|
28
|
-
|
|
29
27
|
var ondewo_nlu_common_pb = require('../../ondewo/nlu/common_pb.js')
|
|
30
28
|
|
|
31
29
|
var ondewo_nlu_intent_pb = require('../../ondewo/nlu/intent_pb.js')
|
|
@@ -36,6 +34,8 @@ var ondewo_nlu_project_role_pb = require('../../ondewo/nlu/project_role_pb.js')
|
|
|
36
34
|
|
|
37
35
|
var ondewo_nlu_operations_pb = require('../../ondewo/nlu/operations_pb.js')
|
|
38
36
|
|
|
37
|
+
var ondewo_nlu_session_pb = require('../../ondewo/nlu/session_pb.js')
|
|
38
|
+
|
|
39
39
|
var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js')
|
|
40
40
|
const proto = {};
|
|
41
41
|
proto.ondewo = {};
|
|
@@ -1374,6 +1374,67 @@ proto.ondewo.nlu.AgentsPromiseClient.prototype.getAgentStatistics =
|
|
|
1374
1374
|
};
|
|
1375
1375
|
|
|
1376
1376
|
|
|
1377
|
+
/**
|
|
1378
|
+
* @const
|
|
1379
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
1380
|
+
* !proto.ondewo.nlu.GetSessionsStatisticsRequest,
|
|
1381
|
+
* !proto.ondewo.nlu.GetSessionsStatisticsResponse>}
|
|
1382
|
+
*/
|
|
1383
|
+
const methodDescriptor_Agents_GetSessionsStatistics = new grpc.web.MethodDescriptor(
|
|
1384
|
+
'/ondewo.nlu.Agents/GetSessionsStatistics',
|
|
1385
|
+
grpc.web.MethodType.UNARY,
|
|
1386
|
+
proto.ondewo.nlu.GetSessionsStatisticsRequest,
|
|
1387
|
+
proto.ondewo.nlu.GetSessionsStatisticsResponse,
|
|
1388
|
+
/**
|
|
1389
|
+
* @param {!proto.ondewo.nlu.GetSessionsStatisticsRequest} request
|
|
1390
|
+
* @return {!Uint8Array}
|
|
1391
|
+
*/
|
|
1392
|
+
function(request) {
|
|
1393
|
+
return request.serializeBinary();
|
|
1394
|
+
},
|
|
1395
|
+
proto.ondewo.nlu.GetSessionsStatisticsResponse.deserializeBinary
|
|
1396
|
+
);
|
|
1397
|
+
|
|
1398
|
+
|
|
1399
|
+
/**
|
|
1400
|
+
* @param {!proto.ondewo.nlu.GetSessionsStatisticsRequest} request The
|
|
1401
|
+
* request proto
|
|
1402
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1403
|
+
* call metadata
|
|
1404
|
+
* @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.GetSessionsStatisticsResponse)}
|
|
1405
|
+
* callback The callback function(error, response)
|
|
1406
|
+
* @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.GetSessionsStatisticsResponse>|undefined}
|
|
1407
|
+
* The XHR Node Readable Stream
|
|
1408
|
+
*/
|
|
1409
|
+
proto.ondewo.nlu.AgentsClient.prototype.getSessionsStatistics =
|
|
1410
|
+
function(request, metadata, callback) {
|
|
1411
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
1412
|
+
'/ondewo.nlu.Agents/GetSessionsStatistics',
|
|
1413
|
+
request,
|
|
1414
|
+
metadata || {},
|
|
1415
|
+
methodDescriptor_Agents_GetSessionsStatistics,
|
|
1416
|
+
callback);
|
|
1417
|
+
};
|
|
1418
|
+
|
|
1419
|
+
|
|
1420
|
+
/**
|
|
1421
|
+
* @param {!proto.ondewo.nlu.GetSessionsStatisticsRequest} request The
|
|
1422
|
+
* request proto
|
|
1423
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
1424
|
+
* call metadata
|
|
1425
|
+
* @return {!Promise<!proto.ondewo.nlu.GetSessionsStatisticsResponse>}
|
|
1426
|
+
* Promise that resolves to the response
|
|
1427
|
+
*/
|
|
1428
|
+
proto.ondewo.nlu.AgentsPromiseClient.prototype.getSessionsStatistics =
|
|
1429
|
+
function(request, metadata) {
|
|
1430
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
1431
|
+
'/ondewo.nlu.Agents/GetSessionsStatistics',
|
|
1432
|
+
request,
|
|
1433
|
+
metadata || {},
|
|
1434
|
+
methodDescriptor_Agents_GetSessionsStatistics);
|
|
1435
|
+
};
|
|
1436
|
+
|
|
1437
|
+
|
|
1377
1438
|
/**
|
|
1378
1439
|
* @const
|
|
1379
1440
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -4,12 +4,12 @@ import * as google_api_annotations_pb from '../../google/api/annotations_pb';
|
|
|
4
4
|
import * as google_protobuf_field_mask_pb from 'google-protobuf/google/protobuf/field_mask_pb';
|
|
5
5
|
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
6
6
|
import * as google_protobuf_struct_pb from 'google-protobuf/google/protobuf/struct_pb';
|
|
7
|
-
import * as google_protobuf_any_pb from 'google-protobuf/google/protobuf/any_pb';
|
|
8
7
|
import * as ondewo_nlu_common_pb from '../../ondewo/nlu/common_pb';
|
|
9
8
|
import * as ondewo_nlu_intent_pb from '../../ondewo/nlu/intent_pb';
|
|
10
9
|
import * as ondewo_nlu_user_pb from '../../ondewo/nlu/user_pb';
|
|
11
10
|
import * as ondewo_nlu_project_role_pb from '../../ondewo/nlu/project_role_pb';
|
|
12
11
|
import * as ondewo_nlu_operations_pb from '../../ondewo/nlu/operations_pb';
|
|
12
|
+
import * as ondewo_nlu_session_pb from '../../ondewo/nlu/session_pb';
|
|
13
13
|
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
|
|
14
14
|
|
|
15
15
|
|
|
@@ -679,6 +679,98 @@ export namespace GetAgentStatisticsResponse {
|
|
|
679
679
|
}
|
|
680
680
|
}
|
|
681
681
|
|
|
682
|
+
export class GetSessionsStatisticsRequest extends jspb.Message {
|
|
683
|
+
getParent(): string;
|
|
684
|
+
setParent(value: string): GetSessionsStatisticsRequest;
|
|
685
|
+
|
|
686
|
+
getFormat(): ReportFormat;
|
|
687
|
+
setFormat(value: ReportFormat): GetSessionsStatisticsRequest;
|
|
688
|
+
|
|
689
|
+
getType(): SessionsReportType;
|
|
690
|
+
setType(value: SessionsReportType): GetSessionsStatisticsRequest;
|
|
691
|
+
|
|
692
|
+
getSessionFilter(): ondewo_nlu_session_pb.SessionFilter | undefined;
|
|
693
|
+
setSessionFilter(value?: ondewo_nlu_session_pb.SessionFilter): GetSessionsStatisticsRequest;
|
|
694
|
+
hasSessionFilter(): boolean;
|
|
695
|
+
clearSessionFilter(): GetSessionsStatisticsRequest;
|
|
696
|
+
|
|
697
|
+
getContextFiltersList(): Array<ondewo_nlu_session_pb.ContextFilter>;
|
|
698
|
+
setContextFiltersList(value: Array<ondewo_nlu_session_pb.ContextFilter>): GetSessionsStatisticsRequest;
|
|
699
|
+
clearContextFiltersList(): GetSessionsStatisticsRequest;
|
|
700
|
+
addContextFilters(value?: ondewo_nlu_session_pb.ContextFilter, index?: number): ondewo_nlu_session_pb.ContextFilter;
|
|
701
|
+
|
|
702
|
+
getLimit(): number;
|
|
703
|
+
setLimit(value: number): GetSessionsStatisticsRequest;
|
|
704
|
+
|
|
705
|
+
getGroupBysList(): Array<string>;
|
|
706
|
+
setGroupBysList(value: Array<string>): GetSessionsStatisticsRequest;
|
|
707
|
+
clearGroupBysList(): GetSessionsStatisticsRequest;
|
|
708
|
+
addGroupBys(value: string, index?: number): GetSessionsStatisticsRequest;
|
|
709
|
+
|
|
710
|
+
getOrderBysList(): Array<string>;
|
|
711
|
+
setOrderBysList(value: Array<string>): GetSessionsStatisticsRequest;
|
|
712
|
+
clearOrderBysList(): GetSessionsStatisticsRequest;
|
|
713
|
+
addOrderBys(value: string, index?: number): GetSessionsStatisticsRequest;
|
|
714
|
+
|
|
715
|
+
getFieldMask(): google_protobuf_field_mask_pb.FieldMask | undefined;
|
|
716
|
+
setFieldMask(value?: google_protobuf_field_mask_pb.FieldMask): GetSessionsStatisticsRequest;
|
|
717
|
+
hasFieldMask(): boolean;
|
|
718
|
+
clearFieldMask(): GetSessionsStatisticsRequest;
|
|
719
|
+
|
|
720
|
+
getSqlQuery(): string;
|
|
721
|
+
setSqlQuery(value: string): GetSessionsStatisticsRequest;
|
|
722
|
+
|
|
723
|
+
serializeBinary(): Uint8Array;
|
|
724
|
+
toObject(includeInstance?: boolean): GetSessionsStatisticsRequest.AsObject;
|
|
725
|
+
static toObject(includeInstance: boolean, msg: GetSessionsStatisticsRequest): GetSessionsStatisticsRequest.AsObject;
|
|
726
|
+
static serializeBinaryToWriter(message: GetSessionsStatisticsRequest, writer: jspb.BinaryWriter): void;
|
|
727
|
+
static deserializeBinary(bytes: Uint8Array): GetSessionsStatisticsRequest;
|
|
728
|
+
static deserializeBinaryFromReader(message: GetSessionsStatisticsRequest, reader: jspb.BinaryReader): GetSessionsStatisticsRequest;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
export namespace GetSessionsStatisticsRequest {
|
|
732
|
+
export type AsObject = {
|
|
733
|
+
parent: string,
|
|
734
|
+
format: ReportFormat,
|
|
735
|
+
type: SessionsReportType,
|
|
736
|
+
sessionFilter?: ondewo_nlu_session_pb.SessionFilter.AsObject,
|
|
737
|
+
contextFiltersList: Array<ondewo_nlu_session_pb.ContextFilter.AsObject>,
|
|
738
|
+
limit: number,
|
|
739
|
+
groupBysList: Array<string>,
|
|
740
|
+
orderBysList: Array<string>,
|
|
741
|
+
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
742
|
+
sqlQuery: string,
|
|
743
|
+
}
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
export class GetSessionsStatisticsResponse extends jspb.Message {
|
|
747
|
+
getReports(): Uint8Array | string;
|
|
748
|
+
getReports_asU8(): Uint8Array;
|
|
749
|
+
getReports_asB64(): string;
|
|
750
|
+
setReports(value: Uint8Array | string): GetSessionsStatisticsResponse;
|
|
751
|
+
|
|
752
|
+
getFormat(): ReportFormat;
|
|
753
|
+
setFormat(value: ReportFormat): GetSessionsStatisticsResponse;
|
|
754
|
+
|
|
755
|
+
getType(): SessionsReportType;
|
|
756
|
+
setType(value: SessionsReportType): GetSessionsStatisticsResponse;
|
|
757
|
+
|
|
758
|
+
serializeBinary(): Uint8Array;
|
|
759
|
+
toObject(includeInstance?: boolean): GetSessionsStatisticsResponse.AsObject;
|
|
760
|
+
static toObject(includeInstance: boolean, msg: GetSessionsStatisticsResponse): GetSessionsStatisticsResponse.AsObject;
|
|
761
|
+
static serializeBinaryToWriter(message: GetSessionsStatisticsResponse, writer: jspb.BinaryWriter): void;
|
|
762
|
+
static deserializeBinary(bytes: Uint8Array): GetSessionsStatisticsResponse;
|
|
763
|
+
static deserializeBinaryFromReader(message: GetSessionsStatisticsResponse, reader: jspb.BinaryReader): GetSessionsStatisticsResponse;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
export namespace GetSessionsStatisticsResponse {
|
|
767
|
+
export type AsObject = {
|
|
768
|
+
reports: Uint8Array | string,
|
|
769
|
+
format: ReportFormat,
|
|
770
|
+
type: SessionsReportType,
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
|
|
682
774
|
export class AddUserToProjectRequest extends jspb.Message {
|
|
683
775
|
getParent(): string;
|
|
684
776
|
setParent(value: string): AddUserToProjectRequest;
|
|
@@ -2147,6 +2239,19 @@ export enum ReportType {
|
|
|
2147
2239
|
ENTITY_COLLISION = 3,
|
|
2148
2240
|
INTENT_GENERAL = 4,
|
|
2149
2241
|
}
|
|
2242
|
+
export enum SessionsReportType {
|
|
2243
|
+
SESSIONS = 0,
|
|
2244
|
+
SESSION_STEPS = 1,
|
|
2245
|
+
SESSION_TOP_X_INTENTS = 2,
|
|
2246
|
+
SESSION_TOP_X_ENTITY_TYPES = 3,
|
|
2247
|
+
SESSION_TOP_X_ENTITY_VALUES = 4,
|
|
2248
|
+
SESSION_TOP_X_USERS = 5,
|
|
2249
|
+
SESSION_TOP_X_LABELS = 6,
|
|
2250
|
+
SESSION_TOP_X_TAGS = 7,
|
|
2251
|
+
SESSION_TOP_X_PHONE_NUMBERS = 8,
|
|
2252
|
+
SESSION_HUMAN_HANDOVERS = 9,
|
|
2253
|
+
SESSION_SQL_QUERY = 10,
|
|
2254
|
+
}
|
|
2150
2255
|
export enum ReportFormat {
|
|
2151
2256
|
CSV = 0,
|
|
2152
2257
|
HTML = 1,
|