@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.
Files changed (36) hide show
  1. package/README.md +0 -0
  2. package/api/ondewo/nlu/agent_grpc_web_pb.d.ts +48 -0
  3. package/api/ondewo/nlu/agent_grpc_web_pb.js +244 -0
  4. package/api/ondewo/nlu/agent_pb.d.ts +196 -15
  5. package/api/ondewo/nlu/agent_pb.js +1627 -0
  6. package/api/ondewo/nlu/aiservices_pb.d.ts +0 -50
  7. package/api/ondewo/nlu/ccai_project_pb.d.ts +6 -93
  8. package/api/ondewo/nlu/ccai_project_pb.js +24 -132
  9. package/api/ondewo/nlu/common_pb.d.ts +140 -0
  10. package/api/ondewo/nlu/common_pb.js +1151 -9
  11. package/api/ondewo/nlu/context_pb.d.ts +8 -1
  12. package/api/ondewo/nlu/context_pb.js +22 -4
  13. package/api/ondewo/nlu/llm_evaluation_pb.d.ts +40 -5
  14. package/api/ondewo/nlu/llm_evaluation_pb.js +110 -20
  15. package/api/ondewo/nlu/operations_grpc_web_pb.d.ts +46 -0
  16. package/api/ondewo/nlu/operations_grpc_web_pb.js +241 -0
  17. package/api/ondewo/nlu/operations_pb.d.ts +429 -10
  18. package/api/ondewo/nlu/operations_pb.js +3413 -0
  19. package/api/ondewo/nlu/project_role_pb.d.ts +0 -10
  20. package/api/ondewo/nlu/rag_pb.d.ts +191 -520
  21. package/api/ondewo/nlu/rag_pb.js +1246 -1058
  22. package/api/ondewo/nlu/session_grpc_web_pb.d.ts +120 -0
  23. package/api/ondewo/nlu/session_grpc_web_pb.js +610 -0
  24. package/api/ondewo/nlu/session_pb.d.ts +818 -118
  25. package/api/ondewo/nlu/session_pb.js +6396 -3
  26. package/api/ondewo/nlu/user_grpc_web_pb.d.ts +59 -13
  27. package/api/ondewo/nlu/user_grpc_web_pb.js +300 -61
  28. package/api/ondewo/nlu/user_pb.d.ts +0 -87
  29. package/api/ondewo/nlu/user_pb.js +0 -436
  30. package/auth/offlineTokenProvider.d.ts +195 -0
  31. package/auth/offlineTokenProvider.js +372 -0
  32. package/package.json +11 -8
  33. package/public-api.d.ts +31 -31
  34. package/public-api.js +28 -28
  35. package/api/google/logging/v2/log_entry_pb.d.ts +0 -172
  36. package/api/google/logging/v2/log_entry_pb.js +0 -1333
@@ -1,172 +0,0 @@
1
- import * as jspb from 'google-protobuf'
2
-
3
- import * as google_api_annotations_pb from '../../../google/api/annotations_pb'; // proto import: "google/api/annotations.proto"
4
- import * as google_api_monitored_resource_pb from '../../../google/api/monitored_resource_pb'; // proto import: "google/api/monitored_resource.proto"
5
- import * as google_logging_type_http_request_pb from '../../../google/logging/type/http_request_pb'; // proto import: "google/logging/type/http_request.proto"
6
- import * as google_logging_type_log_severity_pb from '../../../google/logging/type/log_severity_pb'; // proto import: "google/logging/type/log_severity.proto"
7
- import * as google_protobuf_any_pb from 'google-protobuf/google/protobuf/any_pb'; // proto import: "google/protobuf/any.proto"
8
- import * as google_protobuf_struct_pb from 'google-protobuf/google/protobuf/struct_pb'; // proto import: "google/protobuf/struct.proto"
9
- import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto"
10
-
11
-
12
- export class LogEntry extends jspb.Message {
13
- getLogName(): string;
14
- setLogName(value: string): LogEntry;
15
-
16
- getResource(): google_api_monitored_resource_pb.MonitoredResource | undefined;
17
- setResource(value?: google_api_monitored_resource_pb.MonitoredResource): LogEntry;
18
- hasResource(): boolean;
19
- clearResource(): LogEntry;
20
-
21
- getProtoPayload(): google_protobuf_any_pb.Any | undefined;
22
- setProtoPayload(value?: google_protobuf_any_pb.Any): LogEntry;
23
- hasProtoPayload(): boolean;
24
- clearProtoPayload(): LogEntry;
25
-
26
- getTextPayload(): string;
27
- setTextPayload(value: string): LogEntry;
28
-
29
- getJsonPayload(): google_protobuf_struct_pb.Struct | undefined;
30
- setJsonPayload(value?: google_protobuf_struct_pb.Struct): LogEntry;
31
- hasJsonPayload(): boolean;
32
- clearJsonPayload(): LogEntry;
33
-
34
- getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
35
- setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): LogEntry;
36
- hasTimestamp(): boolean;
37
- clearTimestamp(): LogEntry;
38
-
39
- getReceiveTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
40
- setReceiveTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): LogEntry;
41
- hasReceiveTimestamp(): boolean;
42
- clearReceiveTimestamp(): LogEntry;
43
-
44
- getSeverity(): google_logging_type_log_severity_pb.LogSeverity;
45
- setSeverity(value: google_logging_type_log_severity_pb.LogSeverity): LogEntry;
46
-
47
- getInsertId(): string;
48
- setInsertId(value: string): LogEntry;
49
-
50
- getHttpRequest(): google_logging_type_http_request_pb.HttpRequest | undefined;
51
- setHttpRequest(value?: google_logging_type_http_request_pb.HttpRequest): LogEntry;
52
- hasHttpRequest(): boolean;
53
- clearHttpRequest(): LogEntry;
54
-
55
- getLabelsMap(): jspb.Map<string, string>;
56
- clearLabelsMap(): LogEntry;
57
-
58
- getMetadata(): google_api_monitored_resource_pb.MonitoredResourceMetadata | undefined;
59
- setMetadata(value?: google_api_monitored_resource_pb.MonitoredResourceMetadata): LogEntry;
60
- hasMetadata(): boolean;
61
- clearMetadata(): LogEntry;
62
-
63
- getOperation(): LogEntryOperation | undefined;
64
- setOperation(value?: LogEntryOperation): LogEntry;
65
- hasOperation(): boolean;
66
- clearOperation(): LogEntry;
67
-
68
- getTrace(): string;
69
- setTrace(value: string): LogEntry;
70
-
71
- getSpanId(): string;
72
- setSpanId(value: string): LogEntry;
73
-
74
- getSourceLocation(): LogEntrySourceLocation | undefined;
75
- setSourceLocation(value?: LogEntrySourceLocation): LogEntry;
76
- hasSourceLocation(): boolean;
77
- clearSourceLocation(): LogEntry;
78
-
79
- getPayloadCase(): LogEntry.PayloadCase;
80
-
81
- serializeBinary(): Uint8Array;
82
- toObject(includeInstance?: boolean): LogEntry.AsObject;
83
- static toObject(includeInstance: boolean, msg: LogEntry): LogEntry.AsObject;
84
- static serializeBinaryToWriter(message: LogEntry, writer: jspb.BinaryWriter): void;
85
- static deserializeBinary(bytes: Uint8Array): LogEntry;
86
- static deserializeBinaryFromReader(message: LogEntry, reader: jspb.BinaryReader): LogEntry;
87
- }
88
-
89
- export namespace LogEntry {
90
- export type AsObject = {
91
- logName: string,
92
- resource?: google_api_monitored_resource_pb.MonitoredResource.AsObject,
93
- protoPayload?: google_protobuf_any_pb.Any.AsObject,
94
- textPayload: string,
95
- jsonPayload?: google_protobuf_struct_pb.Struct.AsObject,
96
- timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
97
- receiveTimestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
98
- severity: google_logging_type_log_severity_pb.LogSeverity,
99
- insertId: string,
100
- httpRequest?: google_logging_type_http_request_pb.HttpRequest.AsObject,
101
- labelsMap: Array<[string, string]>,
102
- metadata?: google_api_monitored_resource_pb.MonitoredResourceMetadata.AsObject,
103
- operation?: LogEntryOperation.AsObject,
104
- trace: string,
105
- spanId: string,
106
- sourceLocation?: LogEntrySourceLocation.AsObject,
107
- }
108
-
109
- export enum PayloadCase {
110
- PAYLOAD_NOT_SET = 0,
111
- PROTO_PAYLOAD = 2,
112
- TEXT_PAYLOAD = 3,
113
- JSON_PAYLOAD = 6,
114
- }
115
- }
116
-
117
- export class LogEntryOperation extends jspb.Message {
118
- getId(): string;
119
- setId(value: string): LogEntryOperation;
120
-
121
- getProducer(): string;
122
- setProducer(value: string): LogEntryOperation;
123
-
124
- getFirst(): boolean;
125
- setFirst(value: boolean): LogEntryOperation;
126
-
127
- getLast(): boolean;
128
- setLast(value: boolean): LogEntryOperation;
129
-
130
- serializeBinary(): Uint8Array;
131
- toObject(includeInstance?: boolean): LogEntryOperation.AsObject;
132
- static toObject(includeInstance: boolean, msg: LogEntryOperation): LogEntryOperation.AsObject;
133
- static serializeBinaryToWriter(message: LogEntryOperation, writer: jspb.BinaryWriter): void;
134
- static deserializeBinary(bytes: Uint8Array): LogEntryOperation;
135
- static deserializeBinaryFromReader(message: LogEntryOperation, reader: jspb.BinaryReader): LogEntryOperation;
136
- }
137
-
138
- export namespace LogEntryOperation {
139
- export type AsObject = {
140
- id: string,
141
- producer: string,
142
- first: boolean,
143
- last: boolean,
144
- }
145
- }
146
-
147
- export class LogEntrySourceLocation extends jspb.Message {
148
- getFile(): string;
149
- setFile(value: string): LogEntrySourceLocation;
150
-
151
- getLine(): number;
152
- setLine(value: number): LogEntrySourceLocation;
153
-
154
- getFunction(): string;
155
- setFunction(value: string): LogEntrySourceLocation;
156
-
157
- serializeBinary(): Uint8Array;
158
- toObject(includeInstance?: boolean): LogEntrySourceLocation.AsObject;
159
- static toObject(includeInstance: boolean, msg: LogEntrySourceLocation): LogEntrySourceLocation.AsObject;
160
- static serializeBinaryToWriter(message: LogEntrySourceLocation, writer: jspb.BinaryWriter): void;
161
- static deserializeBinary(bytes: Uint8Array): LogEntrySourceLocation;
162
- static deserializeBinaryFromReader(message: LogEntrySourceLocation, reader: jspb.BinaryReader): LogEntrySourceLocation;
163
- }
164
-
165
- export namespace LogEntrySourceLocation {
166
- export type AsObject = {
167
- file: string,
168
- line: number,
169
- pb_function: string,
170
- }
171
- }
172
-