@ondewo/nlu-client-typescript 6.14.0 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -0
- package/api/ondewo/nlu/agent_pb.d.ts +0 -15
- package/api/ondewo/nlu/aiservices_pb.d.ts +0 -50
- package/api/ondewo/nlu/ccai_project_pb.d.ts +6 -93
- package/api/ondewo/nlu/ccai_project_pb.js +24 -132
- package/api/ondewo/nlu/common_pb.d.ts +140 -0
- package/api/ondewo/nlu/common_pb.js +1151 -9
- package/api/ondewo/nlu/context_pb.d.ts +8 -1
- package/api/ondewo/nlu/context_pb.js +22 -4
- package/api/ondewo/nlu/llm_evaluation_pb.d.ts +40 -5
- package/api/ondewo/nlu/llm_evaluation_pb.js +110 -20
- package/api/ondewo/nlu/operations_grpc_web_pb.d.ts +46 -0
- package/api/ondewo/nlu/operations_grpc_web_pb.js +241 -0
- package/api/ondewo/nlu/operations_pb.d.ts +429 -10
- package/api/ondewo/nlu/operations_pb.js +3413 -0
- package/api/ondewo/nlu/project_role_pb.d.ts +0 -10
- package/api/ondewo/nlu/rag_pb.d.ts +191 -520
- package/api/ondewo/nlu/rag_pb.js +1246 -1058
- package/api/ondewo/nlu/session_grpc_web_pb.d.ts +120 -0
- package/api/ondewo/nlu/session_grpc_web_pb.js +610 -0
- package/api/ondewo/nlu/session_pb.d.ts +818 -118
- package/api/ondewo/nlu/session_pb.js +6396 -3
- package/api/ondewo/nlu/user_grpc_web_pb.d.ts +59 -13
- package/api/ondewo/nlu/user_grpc_web_pb.js +300 -61
- package/api/ondewo/nlu/user_pb.d.ts +0 -87
- package/api/ondewo/nlu/user_pb.js +0 -436
- package/auth/offlineTokenProvider.d.ts +26 -6
- package/auth/offlineTokenProvider.js +61 -45
- package/package.json +9 -7
- package/public-api.d.ts +34 -33
- package/public-api.js +31 -30
|
@@ -158,11 +158,6 @@ export namespace GetProjectRoleRequest {
|
|
|
158
158
|
ROLE_ID = 2,
|
|
159
159
|
ROLE_NAME = 3,
|
|
160
160
|
}
|
|
161
|
-
|
|
162
|
-
export enum FieldMaskCase {
|
|
163
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
164
|
-
FIELD_MASK = 5,
|
|
165
|
-
}
|
|
166
161
|
}
|
|
167
162
|
|
|
168
163
|
export class DeleteProjectRoleRequest extends jspb.Message {
|
|
@@ -217,11 +212,6 @@ export namespace ListProjectRolesRequest {
|
|
|
217
212
|
projectRoleView: ProjectRoleView,
|
|
218
213
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
219
214
|
}
|
|
220
|
-
|
|
221
|
-
export enum FieldMaskCase {
|
|
222
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
223
|
-
FIELD_MASK = 4,
|
|
224
|
-
}
|
|
225
215
|
}
|
|
226
216
|
|
|
227
217
|
export class ListProjectRolesResponse extends jspb.Message {
|