@rapidaai/react 1.1.48 → 1.1.50
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/dist/{chunk-K6VHOUSP.mjs → chunk-2EMDIAFM.mjs} +178 -153
- package/dist/chunk-2EMDIAFM.mjs.map +1 -0
- package/dist/components/device-selector.d.mts +1 -1
- package/dist/components/device-selector.d.ts +1 -1
- package/dist/components/device-selector.js +177 -132
- package/dist/components/device-selector.js.map +1 -1
- package/dist/components/device-selector.mjs +1 -1
- package/dist/{device-selector-CsIo3daE.d.mts → device-selector-D2B4ipII.d.mts} +26 -31
- package/dist/{device-selector-CsIo3daE.d.ts → device-selector-D2B4ipII.d.ts} +26 -31
- package/dist/index.d.mts +3 -81
- package/dist/index.d.ts +3 -81
- package/dist/index.js +402 -176
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +297 -102
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-K6VHOUSP.mjs.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -106,12 +106,9 @@ import {
|
|
|
106
106
|
require_assistant_webhook_pb,
|
|
107
107
|
require_common_pb,
|
|
108
108
|
require_talk_api_pb,
|
|
109
|
-
toContentText,
|
|
110
|
-
toStreamAudioContent,
|
|
111
|
-
toTextContent,
|
|
112
109
|
useObservableState,
|
|
113
110
|
useSelectInputDeviceAgent
|
|
114
|
-
} from "./chunk-
|
|
111
|
+
} from "./chunk-2EMDIAFM.mjs";
|
|
115
112
|
import {
|
|
116
113
|
MultibandAudioVisualizerComponent
|
|
117
114
|
} from "./chunk-CVATR327.mjs";
|
|
@@ -31108,54 +31105,226 @@ var require_integration_api_pb_service = __commonJS({
|
|
|
31108
31105
|
};
|
|
31109
31106
|
};
|
|
31110
31107
|
exports.AzureServiceClient = AzureServiceClient2;
|
|
31111
|
-
var
|
|
31112
|
-
function
|
|
31108
|
+
var GeminiService = function() {
|
|
31109
|
+
function GeminiService2() {
|
|
31110
|
+
}
|
|
31111
|
+
GeminiService2.serviceName = "integration_api.GeminiService";
|
|
31112
|
+
return GeminiService2;
|
|
31113
|
+
}();
|
|
31114
|
+
GeminiService.Embedding = {
|
|
31115
|
+
methodName: "Embedding",
|
|
31116
|
+
service: GeminiService,
|
|
31117
|
+
requestStream: false,
|
|
31118
|
+
responseStream: false,
|
|
31119
|
+
requestType: integration_api_pb.EmbeddingRequest,
|
|
31120
|
+
responseType: integration_api_pb.EmbeddingResponse
|
|
31121
|
+
};
|
|
31122
|
+
GeminiService.Chat = {
|
|
31123
|
+
methodName: "Chat",
|
|
31124
|
+
service: GeminiService,
|
|
31125
|
+
requestStream: false,
|
|
31126
|
+
responseStream: false,
|
|
31127
|
+
requestType: integration_api_pb.ChatRequest,
|
|
31128
|
+
responseType: integration_api_pb.ChatResponse
|
|
31129
|
+
};
|
|
31130
|
+
GeminiService.StreamChat = {
|
|
31131
|
+
methodName: "StreamChat",
|
|
31132
|
+
service: GeminiService,
|
|
31133
|
+
requestStream: false,
|
|
31134
|
+
responseStream: true,
|
|
31135
|
+
requestType: integration_api_pb.ChatRequest,
|
|
31136
|
+
responseType: integration_api_pb.ChatResponse
|
|
31137
|
+
};
|
|
31138
|
+
GeminiService.VerifyCredential = {
|
|
31139
|
+
methodName: "VerifyCredential",
|
|
31140
|
+
service: GeminiService,
|
|
31141
|
+
requestStream: false,
|
|
31142
|
+
responseStream: false,
|
|
31143
|
+
requestType: integration_api_pb.VerifyCredentialRequest,
|
|
31144
|
+
responseType: integration_api_pb.VerifyCredentialResponse
|
|
31145
|
+
};
|
|
31146
|
+
exports.GeminiService = GeminiService;
|
|
31147
|
+
function GeminiServiceClient(serviceHost, options) {
|
|
31148
|
+
this.serviceHost = serviceHost;
|
|
31149
|
+
this.options = options || {};
|
|
31150
|
+
}
|
|
31151
|
+
GeminiServiceClient.prototype.embedding = function embedding(requestMessage, metadata, callback) {
|
|
31152
|
+
if (arguments.length === 2) {
|
|
31153
|
+
callback = arguments[1];
|
|
31154
|
+
}
|
|
31155
|
+
var client = grpc2.unary(GeminiService.Embedding, {
|
|
31156
|
+
request: requestMessage,
|
|
31157
|
+
host: this.serviceHost,
|
|
31158
|
+
metadata,
|
|
31159
|
+
transport: this.options.transport,
|
|
31160
|
+
debug: this.options.debug,
|
|
31161
|
+
onEnd: function(response) {
|
|
31162
|
+
if (callback) {
|
|
31163
|
+
if (response.status !== grpc2.Code.OK) {
|
|
31164
|
+
var err = new Error(response.statusMessage);
|
|
31165
|
+
err.code = response.status;
|
|
31166
|
+
err.metadata = response.trailers;
|
|
31167
|
+
callback(err, null);
|
|
31168
|
+
} else {
|
|
31169
|
+
callback(null, response.message);
|
|
31170
|
+
}
|
|
31171
|
+
}
|
|
31172
|
+
}
|
|
31173
|
+
});
|
|
31174
|
+
return {
|
|
31175
|
+
cancel: function() {
|
|
31176
|
+
callback = null;
|
|
31177
|
+
client.close();
|
|
31178
|
+
}
|
|
31179
|
+
};
|
|
31180
|
+
};
|
|
31181
|
+
GeminiServiceClient.prototype.chat = function chat(requestMessage, metadata, callback) {
|
|
31182
|
+
if (arguments.length === 2) {
|
|
31183
|
+
callback = arguments[1];
|
|
31184
|
+
}
|
|
31185
|
+
var client = grpc2.unary(GeminiService.Chat, {
|
|
31186
|
+
request: requestMessage,
|
|
31187
|
+
host: this.serviceHost,
|
|
31188
|
+
metadata,
|
|
31189
|
+
transport: this.options.transport,
|
|
31190
|
+
debug: this.options.debug,
|
|
31191
|
+
onEnd: function(response) {
|
|
31192
|
+
if (callback) {
|
|
31193
|
+
if (response.status !== grpc2.Code.OK) {
|
|
31194
|
+
var err = new Error(response.statusMessage);
|
|
31195
|
+
err.code = response.status;
|
|
31196
|
+
err.metadata = response.trailers;
|
|
31197
|
+
callback(err, null);
|
|
31198
|
+
} else {
|
|
31199
|
+
callback(null, response.message);
|
|
31200
|
+
}
|
|
31201
|
+
}
|
|
31202
|
+
}
|
|
31203
|
+
});
|
|
31204
|
+
return {
|
|
31205
|
+
cancel: function() {
|
|
31206
|
+
callback = null;
|
|
31207
|
+
client.close();
|
|
31208
|
+
}
|
|
31209
|
+
};
|
|
31210
|
+
};
|
|
31211
|
+
GeminiServiceClient.prototype.streamChat = function streamChat(requestMessage, metadata) {
|
|
31212
|
+
var listeners = {
|
|
31213
|
+
data: [],
|
|
31214
|
+
end: [],
|
|
31215
|
+
status: []
|
|
31216
|
+
};
|
|
31217
|
+
var client = grpc2.invoke(GeminiService.StreamChat, {
|
|
31218
|
+
request: requestMessage,
|
|
31219
|
+
host: this.serviceHost,
|
|
31220
|
+
metadata,
|
|
31221
|
+
transport: this.options.transport,
|
|
31222
|
+
debug: this.options.debug,
|
|
31223
|
+
onMessage: function(responseMessage) {
|
|
31224
|
+
listeners.data.forEach(function(handler) {
|
|
31225
|
+
handler(responseMessage);
|
|
31226
|
+
});
|
|
31227
|
+
},
|
|
31228
|
+
onEnd: function(status, statusMessage, trailers) {
|
|
31229
|
+
listeners.status.forEach(function(handler) {
|
|
31230
|
+
handler({ code: status, details: statusMessage, metadata: trailers });
|
|
31231
|
+
});
|
|
31232
|
+
listeners.end.forEach(function(handler) {
|
|
31233
|
+
handler({ code: status, details: statusMessage, metadata: trailers });
|
|
31234
|
+
});
|
|
31235
|
+
listeners = null;
|
|
31236
|
+
}
|
|
31237
|
+
});
|
|
31238
|
+
return {
|
|
31239
|
+
on: function(type, handler) {
|
|
31240
|
+
listeners[type].push(handler);
|
|
31241
|
+
return this;
|
|
31242
|
+
},
|
|
31243
|
+
cancel: function() {
|
|
31244
|
+
listeners = null;
|
|
31245
|
+
client.close();
|
|
31246
|
+
}
|
|
31247
|
+
};
|
|
31248
|
+
};
|
|
31249
|
+
GeminiServiceClient.prototype.verifyCredential = function verifyCredential(requestMessage, metadata, callback) {
|
|
31250
|
+
if (arguments.length === 2) {
|
|
31251
|
+
callback = arguments[1];
|
|
31252
|
+
}
|
|
31253
|
+
var client = grpc2.unary(GeminiService.VerifyCredential, {
|
|
31254
|
+
request: requestMessage,
|
|
31255
|
+
host: this.serviceHost,
|
|
31256
|
+
metadata,
|
|
31257
|
+
transport: this.options.transport,
|
|
31258
|
+
debug: this.options.debug,
|
|
31259
|
+
onEnd: function(response) {
|
|
31260
|
+
if (callback) {
|
|
31261
|
+
if (response.status !== grpc2.Code.OK) {
|
|
31262
|
+
var err = new Error(response.statusMessage);
|
|
31263
|
+
err.code = response.status;
|
|
31264
|
+
err.metadata = response.trailers;
|
|
31265
|
+
callback(err, null);
|
|
31266
|
+
} else {
|
|
31267
|
+
callback(null, response.message);
|
|
31268
|
+
}
|
|
31269
|
+
}
|
|
31270
|
+
}
|
|
31271
|
+
});
|
|
31272
|
+
return {
|
|
31273
|
+
cancel: function() {
|
|
31274
|
+
callback = null;
|
|
31275
|
+
client.close();
|
|
31276
|
+
}
|
|
31277
|
+
};
|
|
31278
|
+
};
|
|
31279
|
+
exports.GeminiServiceClient = GeminiServiceClient;
|
|
31280
|
+
var VertexAiService = function() {
|
|
31281
|
+
function VertexAiService2() {
|
|
31113
31282
|
}
|
|
31114
|
-
|
|
31115
|
-
return
|
|
31283
|
+
VertexAiService2.serviceName = "integration_api.VertexAiService";
|
|
31284
|
+
return VertexAiService2;
|
|
31116
31285
|
}();
|
|
31117
|
-
|
|
31286
|
+
VertexAiService.Embedding = {
|
|
31118
31287
|
methodName: "Embedding",
|
|
31119
|
-
service:
|
|
31288
|
+
service: VertexAiService,
|
|
31120
31289
|
requestStream: false,
|
|
31121
31290
|
responseStream: false,
|
|
31122
31291
|
requestType: integration_api_pb.EmbeddingRequest,
|
|
31123
31292
|
responseType: integration_api_pb.EmbeddingResponse
|
|
31124
31293
|
};
|
|
31125
|
-
|
|
31294
|
+
VertexAiService.Chat = {
|
|
31126
31295
|
methodName: "Chat",
|
|
31127
|
-
service:
|
|
31296
|
+
service: VertexAiService,
|
|
31128
31297
|
requestStream: false,
|
|
31129
31298
|
responseStream: false,
|
|
31130
31299
|
requestType: integration_api_pb.ChatRequest,
|
|
31131
31300
|
responseType: integration_api_pb.ChatResponse
|
|
31132
31301
|
};
|
|
31133
|
-
|
|
31302
|
+
VertexAiService.StreamChat = {
|
|
31134
31303
|
methodName: "StreamChat",
|
|
31135
|
-
service:
|
|
31304
|
+
service: VertexAiService,
|
|
31136
31305
|
requestStream: false,
|
|
31137
31306
|
responseStream: true,
|
|
31138
31307
|
requestType: integration_api_pb.ChatRequest,
|
|
31139
31308
|
responseType: integration_api_pb.ChatResponse
|
|
31140
31309
|
};
|
|
31141
|
-
|
|
31310
|
+
VertexAiService.VerifyCredential = {
|
|
31142
31311
|
methodName: "VerifyCredential",
|
|
31143
|
-
service:
|
|
31312
|
+
service: VertexAiService,
|
|
31144
31313
|
requestStream: false,
|
|
31145
31314
|
responseStream: false,
|
|
31146
31315
|
requestType: integration_api_pb.VerifyCredentialRequest,
|
|
31147
31316
|
responseType: integration_api_pb.VerifyCredentialResponse
|
|
31148
31317
|
};
|
|
31149
|
-
exports.
|
|
31150
|
-
function
|
|
31318
|
+
exports.VertexAiService = VertexAiService;
|
|
31319
|
+
function VertexAiServiceClient(serviceHost, options) {
|
|
31151
31320
|
this.serviceHost = serviceHost;
|
|
31152
31321
|
this.options = options || {};
|
|
31153
31322
|
}
|
|
31154
|
-
|
|
31323
|
+
VertexAiServiceClient.prototype.embedding = function embedding(requestMessage, metadata, callback) {
|
|
31155
31324
|
if (arguments.length === 2) {
|
|
31156
31325
|
callback = arguments[1];
|
|
31157
31326
|
}
|
|
31158
|
-
var client = grpc2.unary(
|
|
31327
|
+
var client = grpc2.unary(VertexAiService.Embedding, {
|
|
31159
31328
|
request: requestMessage,
|
|
31160
31329
|
host: this.serviceHost,
|
|
31161
31330
|
metadata,
|
|
@@ -31181,11 +31350,11 @@ var require_integration_api_pb_service = __commonJS({
|
|
|
31181
31350
|
}
|
|
31182
31351
|
};
|
|
31183
31352
|
};
|
|
31184
|
-
|
|
31353
|
+
VertexAiServiceClient.prototype.chat = function chat(requestMessage, metadata, callback) {
|
|
31185
31354
|
if (arguments.length === 2) {
|
|
31186
31355
|
callback = arguments[1];
|
|
31187
31356
|
}
|
|
31188
|
-
var client = grpc2.unary(
|
|
31357
|
+
var client = grpc2.unary(VertexAiService.Chat, {
|
|
31189
31358
|
request: requestMessage,
|
|
31190
31359
|
host: this.serviceHost,
|
|
31191
31360
|
metadata,
|
|
@@ -31211,13 +31380,13 @@ var require_integration_api_pb_service = __commonJS({
|
|
|
31211
31380
|
}
|
|
31212
31381
|
};
|
|
31213
31382
|
};
|
|
31214
|
-
|
|
31383
|
+
VertexAiServiceClient.prototype.streamChat = function streamChat(requestMessage, metadata) {
|
|
31215
31384
|
var listeners = {
|
|
31216
31385
|
data: [],
|
|
31217
31386
|
end: [],
|
|
31218
31387
|
status: []
|
|
31219
31388
|
};
|
|
31220
|
-
var client = grpc2.invoke(
|
|
31389
|
+
var client = grpc2.invoke(VertexAiService.StreamChat, {
|
|
31221
31390
|
request: requestMessage,
|
|
31222
31391
|
host: this.serviceHost,
|
|
31223
31392
|
metadata,
|
|
@@ -31249,11 +31418,11 @@ var require_integration_api_pb_service = __commonJS({
|
|
|
31249
31418
|
}
|
|
31250
31419
|
};
|
|
31251
31420
|
};
|
|
31252
|
-
|
|
31421
|
+
VertexAiServiceClient.prototype.verifyCredential = function verifyCredential(requestMessage, metadata, callback) {
|
|
31253
31422
|
if (arguments.length === 2) {
|
|
31254
31423
|
callback = arguments[1];
|
|
31255
31424
|
}
|
|
31256
|
-
var client = grpc2.unary(
|
|
31425
|
+
var client = grpc2.unary(VertexAiService.VerifyCredential, {
|
|
31257
31426
|
request: requestMessage,
|
|
31258
31427
|
host: this.serviceHost,
|
|
31259
31428
|
metadata,
|
|
@@ -31279,7 +31448,7 @@ var require_integration_api_pb_service = __commonJS({
|
|
|
31279
31448
|
}
|
|
31280
31449
|
};
|
|
31281
31450
|
};
|
|
31282
|
-
exports.
|
|
31451
|
+
exports.VertexAiServiceClient = VertexAiServiceClient;
|
|
31283
31452
|
var ReplicateService2 = function() {
|
|
31284
31453
|
function ReplicateService3() {
|
|
31285
31454
|
}
|
|
@@ -32297,6 +32466,36 @@ var require_integration_api_pb_service = __commonJS({
|
|
|
32297
32466
|
}
|
|
32298
32467
|
});
|
|
32299
32468
|
|
|
32469
|
+
// src/utils/rapida_content.ts
|
|
32470
|
+
var import_common_pb = __toESM(require_common_pb());
|
|
32471
|
+
var TEXT_CONTENT_FORMAT_RAW = "raw";
|
|
32472
|
+
var AUDIO_CONTENT_FORMAT_CHUNK = "chunk";
|
|
32473
|
+
var toTextContent = (str, format) => {
|
|
32474
|
+
const cnt = new import_common_pb.Content();
|
|
32475
|
+
if (format) cnt.setContentformat(format);
|
|
32476
|
+
else cnt.setContentformat(TEXT_CONTENT_FORMAT_RAW);
|
|
32477
|
+
cnt.setContenttype("text" /* TEXT_CONTENT */);
|
|
32478
|
+
cnt.setContent(new TextEncoder().encode(str));
|
|
32479
|
+
return cnt;
|
|
32480
|
+
};
|
|
32481
|
+
var toStreamAudioContent = (raw) => {
|
|
32482
|
+
const cnt = new import_common_pb.Content();
|
|
32483
|
+
cnt.setContentformat(AUDIO_CONTENT_FORMAT_CHUNK);
|
|
32484
|
+
cnt.setContenttype("audio" /* AUDIO_CONTENT */);
|
|
32485
|
+
cnt.setContent(raw);
|
|
32486
|
+
return cnt;
|
|
32487
|
+
};
|
|
32488
|
+
var toContentText = (cnt) => {
|
|
32489
|
+
if (!cnt) return "";
|
|
32490
|
+
return cnt.filter((x) => x.getContenttype() === "text").map((x) => {
|
|
32491
|
+
try {
|
|
32492
|
+
return new TextDecoder().decode(x.getContent());
|
|
32493
|
+
} catch (error) {
|
|
32494
|
+
return "";
|
|
32495
|
+
}
|
|
32496
|
+
}).join(" ");
|
|
32497
|
+
};
|
|
32498
|
+
|
|
32300
32499
|
// src/hooks/use-message-feedback.ts
|
|
32301
32500
|
import * as React from "react";
|
|
32302
32501
|
function useMessageFeedback(agent) {
|
|
@@ -32441,7 +32640,7 @@ var MediaDeviceFailure = /* @__PURE__ */ ((MediaDeviceFailure2) => {
|
|
|
32441
32640
|
})(MediaDeviceFailure || {});
|
|
32442
32641
|
|
|
32443
32642
|
// src/types/agent-config.ts
|
|
32444
|
-
var
|
|
32643
|
+
var import_common_pb2 = __toESM(require_common_pb());
|
|
32445
32644
|
|
|
32446
32645
|
// src/utils/rapida_value.ts
|
|
32447
32646
|
import { Any } from "google-protobuf/google/protobuf/any_pb";
|
|
@@ -32562,11 +32761,11 @@ var InputOptions = class {
|
|
|
32562
32761
|
* define audio codacs and sample rate. these will be directly translated to stt
|
|
32563
32762
|
*/
|
|
32564
32763
|
get defaultInputStreamOption() {
|
|
32565
|
-
const inputStreamConfig = new
|
|
32764
|
+
const inputStreamConfig = new import_common_pb2.StreamConfig();
|
|
32566
32765
|
if (this.channel == "audio" /* Audio */) {
|
|
32567
|
-
const inputAudioConfig = new
|
|
32766
|
+
const inputAudioConfig = new import_common_pb2.AudioConfig();
|
|
32568
32767
|
inputAudioConfig.setChannels(1);
|
|
32569
|
-
inputAudioConfig.setAudioformat(
|
|
32768
|
+
inputAudioConfig.setAudioformat(import_common_pb2.AudioConfig.AudioFormat.LINEAR16);
|
|
32570
32769
|
inputAudioConfig.setSamplerate(this.recorderOptions.sampleRate);
|
|
32571
32770
|
inputStreamConfig.setAudio(inputAudioConfig);
|
|
32572
32771
|
}
|
|
@@ -32619,11 +32818,11 @@ var OutputOptions = class {
|
|
|
32619
32818
|
* define audio codacs and sample rate. these will be directly translated to tts
|
|
32620
32819
|
*/
|
|
32621
32820
|
get defaultOutputStreamOption() {
|
|
32622
|
-
const inputStreamConfig = new
|
|
32821
|
+
const inputStreamConfig = new import_common_pb2.StreamConfig();
|
|
32623
32822
|
if (this.channel == "audio" /* Audio */) {
|
|
32624
|
-
const inputAudioConfig = new
|
|
32823
|
+
const inputAudioConfig = new import_common_pb2.AudioConfig();
|
|
32625
32824
|
inputAudioConfig.setChannels(1);
|
|
32626
|
-
inputAudioConfig.setAudioformat(
|
|
32825
|
+
inputAudioConfig.setAudioformat(import_common_pb2.AudioConfig.AudioFormat.LINEAR16);
|
|
32627
32826
|
inputAudioConfig.setSamplerate(this.playerOption.sampleRate);
|
|
32628
32827
|
inputStreamConfig.setAudio(inputAudioConfig);
|
|
32629
32828
|
}
|
|
@@ -32684,7 +32883,7 @@ var AgentConfig = class {
|
|
|
32684
32883
|
* @returns {AssistantDefinition} A configured `AssistantDefinition` instance with the agent's details.
|
|
32685
32884
|
*/
|
|
32686
32885
|
get definition() {
|
|
32687
|
-
const def = new
|
|
32886
|
+
const def = new import_common_pb2.AssistantDefinition();
|
|
32688
32887
|
def.setAssistantid(this.id);
|
|
32689
32888
|
if (this.version) {
|
|
32690
32889
|
def.setVersion(this.version);
|
|
@@ -33244,7 +33443,7 @@ function Invoke(clientCfg, request, authHeader) {
|
|
|
33244
33443
|
|
|
33245
33444
|
// src/clients/auth.ts
|
|
33246
33445
|
var import_web_api_pb = __toESM(require_web_api_pb());
|
|
33247
|
-
var
|
|
33446
|
+
var import_common_pb3 = __toESM(require_common_pb());
|
|
33248
33447
|
function AuthenticateUser(config, email, password, cb) {
|
|
33249
33448
|
const requestObject = new import_web_api_pb.AuthenticateRequest();
|
|
33250
33449
|
requestObject.setEmail(email);
|
|
@@ -33300,9 +33499,9 @@ function UpdateUser(config, cb, authHeader, name) {
|
|
|
33300
33499
|
}
|
|
33301
33500
|
function GetAllUser(config, page, pageSize, criteria, cb, authHeader) {
|
|
33302
33501
|
const req = new import_web_api_pb.GetAllUserRequest();
|
|
33303
|
-
const paginate = new
|
|
33502
|
+
const paginate = new import_common_pb3.Paginate();
|
|
33304
33503
|
criteria.forEach(({ key, value }) => {
|
|
33305
|
-
const ctr = new
|
|
33504
|
+
const ctr = new import_common_pb3.Criteria();
|
|
33306
33505
|
ctr.setKey(key);
|
|
33307
33506
|
ctr.setValue(value);
|
|
33308
33507
|
req.addCriterias(ctr);
|
|
@@ -33413,14 +33612,14 @@ function GetOrganization(connectionConfig, authHeader, cb) {
|
|
|
33413
33612
|
}
|
|
33414
33613
|
|
|
33415
33614
|
// src/clients/activity.ts
|
|
33416
|
-
var
|
|
33615
|
+
var import_common_pb4 = __toESM(require_common_pb());
|
|
33417
33616
|
var import_audit_logging_api_pb = __toESM(require_audit_logging_api_pb());
|
|
33418
33617
|
function GetActivities(connectionConfig, projectId, page, pageSize, criteria, cb, authHeader) {
|
|
33419
33618
|
const req = new import_audit_logging_api_pb.GetAllAuditLogRequest();
|
|
33420
33619
|
req.setProjectid(projectId);
|
|
33421
|
-
const paginate = new
|
|
33620
|
+
const paginate = new import_common_pb4.Paginate();
|
|
33422
33621
|
criteria.forEach(({ key, value, logic }) => {
|
|
33423
|
-
const ctr = new
|
|
33622
|
+
const ctr = new import_common_pb4.Criteria();
|
|
33424
33623
|
ctr.setKey(key);
|
|
33425
33624
|
ctr.setValue(value);
|
|
33426
33625
|
ctr.setLogic(logic);
|
|
@@ -33447,13 +33646,13 @@ function GetActivity(connectionConfig, projectId, auditId, cb, authHeader) {
|
|
|
33447
33646
|
}
|
|
33448
33647
|
|
|
33449
33648
|
// src/clients/endpoint.ts
|
|
33450
|
-
var
|
|
33649
|
+
var import_common_pb5 = __toESM(require_common_pb());
|
|
33451
33650
|
var import_endpoint_api_pb = __toESM(require_endpoint_api_pb());
|
|
33452
33651
|
function GetAllEndpoint(config, page, pageSize, criteria, cb, authHeader) {
|
|
33453
33652
|
const req = new import_endpoint_api_pb.GetAllEndpointRequest();
|
|
33454
|
-
const paginate = new
|
|
33653
|
+
const paginate = new import_common_pb5.Paginate();
|
|
33455
33654
|
criteria.forEach(({ key, value, logic }) => {
|
|
33456
|
-
const ctr = new
|
|
33655
|
+
const ctr = new import_common_pb5.Criteria();
|
|
33457
33656
|
ctr.setKey(key);
|
|
33458
33657
|
ctr.setValue(value);
|
|
33459
33658
|
ctr.setLogic(logic);
|
|
@@ -33481,9 +33680,9 @@ function UpdateEndpointVersion(config, endpointId, endpointProviderModelId, auth
|
|
|
33481
33680
|
function GetAllEndpointProviderModel(config, endpointId, page, pageSize, criteria, cb, authHeader) {
|
|
33482
33681
|
const req = new import_endpoint_api_pb.GetAllEndpointProviderModelRequest();
|
|
33483
33682
|
req.setEndpointid(endpointId);
|
|
33484
|
-
const paginate = new
|
|
33683
|
+
const paginate = new import_common_pb5.Paginate();
|
|
33485
33684
|
criteria.forEach(({ key, value }) => {
|
|
33486
|
-
const ctr = new
|
|
33685
|
+
const ctr = new import_common_pb5.Criteria();
|
|
33487
33686
|
ctr.setKey(key);
|
|
33488
33687
|
ctr.setValue(value);
|
|
33489
33688
|
req.addCriterias(ctr);
|
|
@@ -33586,9 +33785,9 @@ function CreateEndpointCacheConfiguration(config, endpointId, cacheType, expiryI
|
|
|
33586
33785
|
function GetAllEndpointLog(config, endpointId, page, pageSize, criteria, cb, authHeader) {
|
|
33587
33786
|
const req = new import_endpoint_api_pb.GetAllEndpointLogRequest();
|
|
33588
33787
|
req.setEndpointid(endpointId);
|
|
33589
|
-
const paginate = new
|
|
33788
|
+
const paginate = new import_common_pb5.Paginate();
|
|
33590
33789
|
criteria.forEach(({ key, value, logic }) => {
|
|
33591
|
-
const ctr = new
|
|
33790
|
+
const ctr = new import_common_pb5.Criteria();
|
|
33592
33791
|
ctr.setKey(key);
|
|
33593
33792
|
ctr.setValue(value);
|
|
33594
33793
|
ctr.setLogic(logic);
|
|
@@ -33616,7 +33815,7 @@ function GetEndpointLog(config, endpointId, logId, cb, authHeader) {
|
|
|
33616
33815
|
|
|
33617
33816
|
// src/clients/vault.ts
|
|
33618
33817
|
var import_vault_api_pb = __toESM(require_vault_api_pb());
|
|
33619
|
-
var
|
|
33818
|
+
var import_common_pb6 = __toESM(require_common_pb());
|
|
33620
33819
|
function CreateProviderKey(connectionConfig, req, authHeader) {
|
|
33621
33820
|
return new Promise((resolve, reject) => {
|
|
33622
33821
|
connectionConfig.vaultClient.createProviderCredential(
|
|
@@ -33640,9 +33839,9 @@ function DeleteProviderKey(connectionConfig, providerKeyId, cb, authHeader) {
|
|
|
33640
33839
|
}
|
|
33641
33840
|
function GetAllOrganizationCredential(connectionConfig, page, pageSize, criteria, cb, authHeader) {
|
|
33642
33841
|
const req = new import_vault_api_pb.GetAllOrganizationCredentialRequest();
|
|
33643
|
-
const paginate = new
|
|
33842
|
+
const paginate = new import_common_pb6.Paginate();
|
|
33644
33843
|
criteria.forEach((x) => {
|
|
33645
|
-
let ctr = new
|
|
33844
|
+
let ctr = new import_common_pb6.Criteria();
|
|
33646
33845
|
ctr.setKey(x.key);
|
|
33647
33846
|
ctr.setValue(x.value);
|
|
33648
33847
|
ctr.setLogic(x.logic);
|
|
@@ -33659,7 +33858,7 @@ function GetAllOrganizationCredential(connectionConfig, page, pageSize, criteria
|
|
|
33659
33858
|
}
|
|
33660
33859
|
|
|
33661
33860
|
// src/clients/knowledge.ts
|
|
33662
|
-
var
|
|
33861
|
+
var import_common_pb7 = __toESM(require_common_pb());
|
|
33663
33862
|
var import_knowledge_api_pb = __toESM(require_knowledge_api_pb());
|
|
33664
33863
|
var import_knowledge_api_pb2 = __toESM(require_knowledge_api_pb());
|
|
33665
33864
|
function CreateKnowledge(connectionConfig, req, authHeader) {
|
|
@@ -33685,9 +33884,9 @@ function GetKnowledgeBase(config, knowledgeBaseId, cb, authHeader) {
|
|
|
33685
33884
|
}
|
|
33686
33885
|
function GetAllKnowledgeBases(config, page, pageSize, criteria, cb, authHeader) {
|
|
33687
33886
|
const req = new import_knowledge_api_pb.GetAllKnowledgeRequest();
|
|
33688
|
-
const paginate = new
|
|
33887
|
+
const paginate = new import_common_pb7.Paginate();
|
|
33689
33888
|
criteria.forEach(({ key, value, logic }) => {
|
|
33690
|
-
const ctr = new
|
|
33889
|
+
const ctr = new import_common_pb7.Criteria();
|
|
33691
33890
|
ctr.setKey(key);
|
|
33692
33891
|
ctr.setValue(value);
|
|
33693
33892
|
ctr.setLogic(logic);
|
|
@@ -33729,9 +33928,9 @@ function CreateKnowledgeDocument(config, knowledgeId, documentSource, datasource
|
|
|
33729
33928
|
function GetAllKnowledgeDocument(config, knowledgeId, page, pageSize, criteria, cb, authHeader) {
|
|
33730
33929
|
const req = new import_knowledge_api_pb.GetAllKnowledgeDocumentRequest();
|
|
33731
33930
|
req.setKnowledgeid(knowledgeId);
|
|
33732
|
-
const paginate = new
|
|
33931
|
+
const paginate = new import_common_pb7.Paginate();
|
|
33733
33932
|
criteria.forEach(({ key, value }) => {
|
|
33734
|
-
const ctr = new
|
|
33933
|
+
const ctr = new import_common_pb7.Criteria();
|
|
33735
33934
|
ctr.setKey(key);
|
|
33736
33935
|
ctr.setValue(value);
|
|
33737
33936
|
req.addCriterias(ctr);
|
|
@@ -33748,9 +33947,9 @@ function GetAllKnowledgeDocument(config, knowledgeId, page, pageSize, criteria,
|
|
|
33748
33947
|
function GetAllKnowledgeDocumentSegment(config, knowledgeId, page, pageSize, criteria, cb, authHeader) {
|
|
33749
33948
|
const req = new import_knowledge_api_pb.GetAllKnowledgeDocumentSegmentRequest();
|
|
33750
33949
|
req.setKnowledgeid(knowledgeId);
|
|
33751
|
-
const paginate = new
|
|
33950
|
+
const paginate = new import_common_pb7.Paginate();
|
|
33752
33951
|
criteria.forEach(({ key, value }) => {
|
|
33753
|
-
const ctr = new
|
|
33952
|
+
const ctr = new import_common_pb7.Criteria();
|
|
33754
33953
|
ctr.setKey(key);
|
|
33755
33954
|
ctr.setValue(value);
|
|
33756
33955
|
req.addCriterias(ctr);
|
|
@@ -33843,7 +34042,7 @@ function GetAllKnowledgeLog(clientCfg, request, auth) {
|
|
|
33843
34042
|
|
|
33844
34043
|
// src/clients/project.ts
|
|
33845
34044
|
var import_web_api_pb3 = __toESM(require_web_api_pb());
|
|
33846
|
-
var
|
|
34045
|
+
var import_common_pb8 = __toESM(require_common_pb());
|
|
33847
34046
|
function AddUsersToProject(connectionConfig, email, role, projectIds, cb, authHeader) {
|
|
33848
34047
|
const requestObject = new import_web_api_pb3.AddUsersToProjectRequest();
|
|
33849
34048
|
requestObject.setEmail(email);
|
|
@@ -33879,9 +34078,9 @@ function UpdateProject(connectionConfig, projectId, cb, authHeader, projectName,
|
|
|
33879
34078
|
}
|
|
33880
34079
|
function GetAllProject(connectionConfig, page, pageSize, criteria, cb, authHeader) {
|
|
33881
34080
|
const req = new import_web_api_pb3.GetAllProjectRequest();
|
|
33882
|
-
const paginate = new
|
|
34081
|
+
const paginate = new import_common_pb8.Paginate();
|
|
33883
34082
|
criteria.forEach(({ key, value }) => {
|
|
33884
|
-
const ctr = new
|
|
34083
|
+
const ctr = new import_common_pb8.Criteria();
|
|
33885
34084
|
ctr.setKey(key);
|
|
33886
34085
|
ctr.setValue(value);
|
|
33887
34086
|
req.addCriterias(ctr);
|
|
@@ -33948,7 +34147,7 @@ var import_talk_api_pb = __toESM(require_talk_api_pb());
|
|
|
33948
34147
|
var import_assistant_analysis_pb = __toESM(require_assistant_analysis_pb());
|
|
33949
34148
|
var import_invoker_api_pb = __toESM(require_invoker_api_pb());
|
|
33950
34149
|
var import_web_api_pb4 = __toESM(require_web_api_pb());
|
|
33951
|
-
var
|
|
34150
|
+
var import_common_pb9 = __toESM(require_common_pb());
|
|
33952
34151
|
var import_assistant_api_pb_service2 = __toESM(require_assistant_api_pb_service());
|
|
33953
34152
|
var import_talk_api_pb_service2 = __toESM(require_talk_api_pb_service());
|
|
33954
34153
|
var import_assistant_webhook_pb = __toESM(require_assistant_webhook_pb());
|
|
@@ -34044,21 +34243,21 @@ var export_AnthropicService = import_integration_api_pb_service.AnthropicService
|
|
|
34044
34243
|
var export_AnthropicServiceClient = import_integration_api_pb_service.AnthropicServiceClient;
|
|
34045
34244
|
var export_ArchiveProjectRequest = import_web_api_pb4.ArchiveProjectRequest;
|
|
34046
34245
|
var export_ArchiveProjectResponse = import_web_api_pb4.ArchiveProjectResponse;
|
|
34047
|
-
var export_Argument =
|
|
34246
|
+
var export_Argument = import_common_pb9.Argument;
|
|
34048
34247
|
var export_Assistant = import_assistant_api_pb.Assistant;
|
|
34049
34248
|
var export_AssistantAnalysis = import_assistant_analysis_pb.AssistantAnalysis;
|
|
34050
34249
|
var export_AssistantApiDeployment = import_assistant_deployment_pb.AssistantApiDeployment;
|
|
34051
|
-
var export_AssistantConversation =
|
|
34052
|
-
var export_AssistantConversationAssistantMessage =
|
|
34053
|
-
var export_AssistantConversationConfiguration =
|
|
34054
|
-
var export_AssistantConversationContext =
|
|
34055
|
-
var export_AssistantConversationInterruption =
|
|
34056
|
-
var export_AssistantConversationMessage =
|
|
34057
|
-
var export_AssistantConversationRecording =
|
|
34058
|
-
var export_AssistantConversationTelephonyEvent =
|
|
34059
|
-
var export_AssistantConversationUserMessage =
|
|
34250
|
+
var export_AssistantConversation = import_common_pb9.AssistantConversation;
|
|
34251
|
+
var export_AssistantConversationAssistantMessage = import_common_pb9.AssistantConversationAssistantMessage;
|
|
34252
|
+
var export_AssistantConversationConfiguration = import_common_pb9.AssistantConversationConfiguration;
|
|
34253
|
+
var export_AssistantConversationContext = import_common_pb9.AssistantConversationContext;
|
|
34254
|
+
var export_AssistantConversationInterruption = import_common_pb9.AssistantConversationInterruption;
|
|
34255
|
+
var export_AssistantConversationMessage = import_common_pb9.AssistantConversationMessage;
|
|
34256
|
+
var export_AssistantConversationRecording = import_common_pb9.AssistantConversationRecording;
|
|
34257
|
+
var export_AssistantConversationTelephonyEvent = import_common_pb9.AssistantConversationTelephonyEvent;
|
|
34258
|
+
var export_AssistantConversationUserMessage = import_common_pb9.AssistantConversationUserMessage;
|
|
34060
34259
|
var export_AssistantDebuggerDeployment = import_assistant_deployment_pb.AssistantDebuggerDeployment;
|
|
34061
|
-
var export_AssistantDefinition =
|
|
34260
|
+
var export_AssistantDefinition = import_common_pb9.AssistantDefinition;
|
|
34062
34261
|
var export_AssistantDeploymentService = import_assistant_deployment_pb_service2.AssistantDeploymentService;
|
|
34063
34262
|
var export_AssistantDeploymentServiceClient = import_assistant_deployment_pb_service2.AssistantDeploymentServiceClient;
|
|
34064
34263
|
var export_AssistantKnowledge = import_assistant_knowledge_pb.AssistantKnowledge;
|
|
@@ -34087,7 +34286,7 @@ var export_AuthenticationServiceClient = import_web_api_pb_service4.Authenticati
|
|
|
34087
34286
|
var export_AuthorizeRequest = import_web_api_pb4.AuthorizeRequest;
|
|
34088
34287
|
var export_AzureService = import_integration_api_pb_service.AzureService;
|
|
34089
34288
|
var export_AzureServiceClient = import_integration_api_pb_service.AzureServiceClient;
|
|
34090
|
-
var export_BaseResponse =
|
|
34289
|
+
var export_BaseResponse = import_common_pb9.BaseResponse;
|
|
34091
34290
|
var export_BedrockService = import_integration_api_pb_service.BedrockService;
|
|
34092
34291
|
var export_BedrockServiceClient = import_integration_api_pb_service.BedrockServiceClient;
|
|
34093
34292
|
var export_ChangePasswordRequest = import_web_api_pb4.ChangePasswordRequest;
|
|
@@ -34098,7 +34297,7 @@ var export_CohereService = import_integration_api_pb_service.CohereService;
|
|
|
34098
34297
|
var export_CohereServiceClient = import_integration_api_pb_service.CohereServiceClient;
|
|
34099
34298
|
var export_ConnectService = import_connect_api_pb_service2.ConnectService;
|
|
34100
34299
|
var export_ConnectServiceClient = import_connect_api_pb_service2.ConnectServiceClient;
|
|
34101
|
-
var export_Content =
|
|
34300
|
+
var export_Content = import_common_pb9.Content;
|
|
34102
34301
|
var export_CreateAssistantAnalysisRequest = import_assistant_analysis_pb.CreateAssistantAnalysisRequest;
|
|
34103
34302
|
var export_CreateAssistantDeploymentRequest = import_assistant_deployment_pb.CreateAssistantDeploymentRequest;
|
|
34104
34303
|
var export_CreateAssistantKnowledgeRequest = import_assistant_knowledge_pb.CreateAssistantKnowledgeRequest;
|
|
@@ -34141,7 +34340,7 @@ var export_CreateProjectRequest = import_web_api_pb4.CreateProjectRequest;
|
|
|
34141
34340
|
var export_CreateProjectResponse = import_web_api_pb4.CreateProjectResponse;
|
|
34142
34341
|
var export_CreateProviderCredentialRequest = import_vault_api_pb2.CreateProviderCredentialRequest;
|
|
34143
34342
|
var export_Credential = import_integration_api_pb.Credential;
|
|
34144
|
-
var export_Criteria =
|
|
34343
|
+
var export_Criteria = import_common_pb9.Criteria;
|
|
34145
34344
|
var export_DeepInfraService = import_integration_api_pb_service.DeepInfraService;
|
|
34146
34345
|
var export_DeepInfraServiceClient = import_integration_api_pb_service.DeepInfraServiceClient;
|
|
34147
34346
|
var export_DeleteAssistantAnalysisRequest = import_assistant_analysis_pb.DeleteAssistantAnalysisRequest;
|
|
@@ -34168,13 +34367,13 @@ var export_EndpointProviderModelAttribute = import_endpoint_api_pb2.EndpointProv
|
|
|
34168
34367
|
var export_EndpointRetryConfiguration = import_endpoint_api_pb2.EndpointRetryConfiguration;
|
|
34169
34368
|
var export_EndpointService = import_endpoint_api_pb_service2.EndpointService;
|
|
34170
34369
|
var export_EndpointServiceClient = import_endpoint_api_pb_service2.EndpointServiceClient;
|
|
34171
|
-
var export_Error =
|
|
34370
|
+
var export_Error = import_common_pb9.Error;
|
|
34172
34371
|
var export_FeaturePermission = import_web_api_pb4.FeaturePermission;
|
|
34173
|
-
var export_FieldSelector =
|
|
34372
|
+
var export_FieldSelector = import_common_pb9.FieldSelector;
|
|
34174
34373
|
var export_ForgotPasswordRequest = import_web_api_pb4.ForgotPasswordRequest;
|
|
34175
34374
|
var export_ForgotPasswordResponse = import_web_api_pb4.ForgotPasswordResponse;
|
|
34176
34375
|
var export_ForkEndpointRequest = import_endpoint_api_pb2.ForkEndpointRequest;
|
|
34177
|
-
var export_FunctionCall =
|
|
34376
|
+
var export_FunctionCall = import_common_pb9.FunctionCall;
|
|
34178
34377
|
var export_FunctionDefinition = import_integration_api_pb.FunctionDefinition;
|
|
34179
34378
|
var export_FunctionParameter = import_integration_api_pb.FunctionParameter;
|
|
34180
34379
|
var export_FunctionParameterProperty = import_integration_api_pb.FunctionParameterProperty;
|
|
@@ -34182,8 +34381,8 @@ var export_GeneralConnectRequest = import_connect_api_pb2.GeneralConnectRequest;
|
|
|
34182
34381
|
var export_GeneralConnectResponse = import_connect_api_pb2.GeneralConnectResponse;
|
|
34183
34382
|
var export_GetAllAssistantAnalysisRequest = import_assistant_analysis_pb.GetAllAssistantAnalysisRequest;
|
|
34184
34383
|
var export_GetAllAssistantAnalysisResponse = import_assistant_analysis_pb.GetAllAssistantAnalysisResponse;
|
|
34185
|
-
var export_GetAllAssistantConversationRequest =
|
|
34186
|
-
var export_GetAllAssistantConversationResponse =
|
|
34384
|
+
var export_GetAllAssistantConversationRequest = import_common_pb9.GetAllAssistantConversationRequest;
|
|
34385
|
+
var export_GetAllAssistantConversationResponse = import_common_pb9.GetAllAssistantConversationResponse;
|
|
34187
34386
|
var export_GetAllAssistantKnowledgeRequest = import_assistant_knowledge_pb.GetAllAssistantKnowledgeRequest;
|
|
34188
34387
|
var export_GetAllAssistantKnowledgeResponse = import_assistant_knowledge_pb.GetAllAssistantKnowledgeResponse;
|
|
34189
34388
|
var export_GetAllAssistantMessageRequest = import_assistant_api_pb.GetAllAssistantMessageRequest;
|
|
@@ -34204,8 +34403,8 @@ var export_GetAllAssistantWebhookRequest = import_assistant_webhook_pb.GetAllAss
|
|
|
34204
34403
|
var export_GetAllAssistantWebhookResponse = import_assistant_webhook_pb.GetAllAssistantWebhookResponse;
|
|
34205
34404
|
var export_GetAllAuditLogRequest = import_audit_logging_api_pb2.GetAllAuditLogRequest;
|
|
34206
34405
|
var export_GetAllAuditLogResponse = import_audit_logging_api_pb2.GetAllAuditLogResponse;
|
|
34207
|
-
var export_GetAllConversationMessageRequest =
|
|
34208
|
-
var export_GetAllConversationMessageResponse =
|
|
34406
|
+
var export_GetAllConversationMessageRequest = import_common_pb9.GetAllConversationMessageRequest;
|
|
34407
|
+
var export_GetAllConversationMessageResponse = import_common_pb9.GetAllConversationMessageResponse;
|
|
34209
34408
|
var export_GetAllEndpointLogRequest = import_endpoint_api_pb2.GetAllEndpointLogRequest;
|
|
34210
34409
|
var export_GetAllEndpointLogResponse = import_endpoint_api_pb2.GetAllEndpointLogResponse;
|
|
34211
34410
|
var export_GetAllEndpointProviderModelRequest = import_endpoint_api_pb2.GetAllEndpointProviderModelRequest;
|
|
@@ -34276,22 +34475,20 @@ var export_GetProjectRequest = import_web_api_pb4.GetProjectRequest;
|
|
|
34276
34475
|
var export_GetProjectResponse = import_web_api_pb4.GetProjectResponse;
|
|
34277
34476
|
var export_GetUserRequest = import_web_api_pb4.GetUserRequest;
|
|
34278
34477
|
var export_GetUserResponse = import_web_api_pb4.GetUserResponse;
|
|
34279
|
-
var export_GoogleService = import_integration_api_pb_service.GoogleService;
|
|
34280
|
-
var export_GoogleServiceClient = import_integration_api_pb_service.GoogleServiceClient;
|
|
34281
34478
|
var export_HuggingfaceService = import_integration_api_pb_service.HuggingfaceService;
|
|
34282
34479
|
var export_HuggingfaceServiceClient = import_integration_api_pb_service.HuggingfaceServiceClient;
|
|
34283
34480
|
var export_IndexKnowledgeDocumentRequest = import_document_api_pb2.IndexKnowledgeDocumentRequest;
|
|
34284
34481
|
var export_IndexKnowledgeDocumentResponse = import_document_api_pb2.IndexKnowledgeDocumentResponse;
|
|
34285
34482
|
var export_InvokeRequest = import_invoker_api_pb.InvokeRequest;
|
|
34286
34483
|
var export_InvokeResponse = import_invoker_api_pb.InvokeResponse;
|
|
34287
|
-
var export_Knowledge =
|
|
34484
|
+
var export_Knowledge = import_common_pb9.Knowledge;
|
|
34288
34485
|
var export_KnowledgeDocument = import_knowledge_api_pb3.KnowledgeDocument;
|
|
34289
34486
|
var export_KnowledgeDocumentSegment = import_knowledge_api_pb3.KnowledgeDocumentSegment;
|
|
34290
34487
|
var export_KnowledgeLog = import_knowledge_api_pb3.KnowledgeLog;
|
|
34291
34488
|
var export_KnowledgeService = import_knowledge_api_pb_service2.KnowledgeService;
|
|
34292
34489
|
var export_KnowledgeServiceClient = import_knowledge_api_pb_service2.KnowledgeServiceClient;
|
|
34293
|
-
var export_Metadata =
|
|
34294
|
-
var export_Metric =
|
|
34490
|
+
var export_Metadata = import_common_pb9.Metadata;
|
|
34491
|
+
var export_Metric = import_common_pb9.Metric;
|
|
34295
34492
|
var export_MistralService = import_integration_api_pb_service.MistralService;
|
|
34296
34493
|
var export_MistralServiceClient = import_integration_api_pb_service.MistralServiceClient;
|
|
34297
34494
|
var export_Moderation = import_integration_api_pb.Moderation;
|
|
@@ -34299,13 +34496,13 @@ var export_NotificationSetting = import_notification_api_pb.NotificationSetting;
|
|
|
34299
34496
|
var export_NotificationSettingResponse = import_notification_api_pb.NotificationSettingResponse;
|
|
34300
34497
|
var export_OpenAiService = import_integration_api_pb_service.OpenAiService;
|
|
34301
34498
|
var export_OpenAiServiceClient = import_integration_api_pb_service.OpenAiServiceClient;
|
|
34302
|
-
var export_Ordering =
|
|
34303
|
-
var export_Organization =
|
|
34499
|
+
var export_Ordering = import_common_pb9.Ordering;
|
|
34500
|
+
var export_Organization = import_common_pb9.Organization;
|
|
34304
34501
|
var export_OrganizationRole = import_web_api_pb4.OrganizationRole;
|
|
34305
34502
|
var export_OrganizationService = import_web_api_pb_service4.OrganizationService;
|
|
34306
34503
|
var export_OrganizationServiceClient = import_web_api_pb_service4.OrganizationServiceClient;
|
|
34307
|
-
var export_Paginate =
|
|
34308
|
-
var export_Paginated =
|
|
34504
|
+
var export_Paginate = import_common_pb9.Paginate;
|
|
34505
|
+
var export_Paginated = import_common_pb9.Paginated;
|
|
34309
34506
|
var export_ProbeRequest = import_invoker_api_pb.ProbeRequest;
|
|
34310
34507
|
var export_ProbeResponse = import_invoker_api_pb.ProbeResponse;
|
|
34311
34508
|
var export_Project = import_web_api_pb4.Project;
|
|
@@ -34313,7 +34510,7 @@ var export_ProjectCredential = import_web_api_pb4.ProjectCredential;
|
|
|
34313
34510
|
var export_ProjectRole = import_web_api_pb4.ProjectRole;
|
|
34314
34511
|
var export_ProjectService = import_web_api_pb_service4.ProjectService;
|
|
34315
34512
|
var export_ProjectServiceClient = import_web_api_pb_service4.ProjectServiceClient;
|
|
34316
|
-
var export_ProtoMessage =
|
|
34513
|
+
var export_ProtoMessage = import_common_pb9.Message;
|
|
34317
34514
|
var export_RegisterUserRequest = import_web_api_pb4.RegisterUserRequest;
|
|
34318
34515
|
var export_ReplicateService = import_integration_api_pb_service.ReplicateService;
|
|
34319
34516
|
var export_ReplicateServiceClient = import_integration_api_pb_service.ReplicateServiceClient;
|
|
@@ -34326,16 +34523,16 @@ var export_ScopedAuthenticationResponse = import_web_api_pb4.ScopedAuthenticatio
|
|
|
34326
34523
|
var export_SocialAuthenticationRequest = import_web_api_pb4.SocialAuthenticationRequest;
|
|
34327
34524
|
var export_StabilityAiService = import_integration_api_pb_service.StabilityAiService;
|
|
34328
34525
|
var export_StabilityAiServiceClient = import_integration_api_pb_service.StabilityAiServiceClient;
|
|
34329
|
-
var export_Tag =
|
|
34526
|
+
var export_Tag = import_common_pb9.Tag;
|
|
34330
34527
|
var export_TalkService = import_talk_api_pb_service2.TalkService;
|
|
34331
34528
|
var export_TalkServiceClient = import_talk_api_pb_service2.TalkServiceClient;
|
|
34332
|
-
var export_Telemetry =
|
|
34333
|
-
var export_TextChatCompletePrompt =
|
|
34334
|
-
var export_TextPrompt =
|
|
34529
|
+
var export_Telemetry = import_common_pb9.Telemetry;
|
|
34530
|
+
var export_TextChatCompletePrompt = import_common_pb9.TextChatCompletePrompt;
|
|
34531
|
+
var export_TextPrompt = import_common_pb9.TextPrompt;
|
|
34335
34532
|
var export_TogetherAiService = import_integration_api_pb_service.TogetherAiService;
|
|
34336
34533
|
var export_TogetherAiServiceClient = import_integration_api_pb_service.TogetherAiServiceClient;
|
|
34337
34534
|
var export_Token = import_web_api_pb4.Token;
|
|
34338
|
-
var export_ToolCall =
|
|
34535
|
+
var export_ToolCall = import_common_pb9.ToolCall;
|
|
34339
34536
|
var export_ToolDefinition = import_integration_api_pb.ToolDefinition;
|
|
34340
34537
|
var export_UpdateAssistantAnalysisRequest = import_assistant_analysis_pb.UpdateAssistantAnalysisRequest;
|
|
34341
34538
|
var export_UpdateAssistantDetailRequest = import_assistant_api_pb.UpdateAssistantDetailRequest;
|
|
@@ -34358,8 +34555,8 @@ var export_UpdateRequest = import_invoker_api_pb.UpdateRequest;
|
|
|
34358
34555
|
var export_UpdateResponse = import_invoker_api_pb.UpdateResponse;
|
|
34359
34556
|
var export_UpdateUserRequest = import_web_api_pb4.UpdateUserRequest;
|
|
34360
34557
|
var export_UpdateUserResponse = import_web_api_pb4.UpdateUserResponse;
|
|
34361
|
-
var export_User =
|
|
34362
|
-
var export_Variable =
|
|
34558
|
+
var export_User = import_common_pb9.User;
|
|
34559
|
+
var export_Variable = import_common_pb9.Variable;
|
|
34363
34560
|
var export_VaultCredential = import_vault_api_pb2.VaultCredential;
|
|
34364
34561
|
var export_VaultService = import_vault_api_pb_service2.VaultService;
|
|
34365
34562
|
var export_VaultServiceClient = import_vault_api_pb_service2.VaultServiceClient;
|
|
@@ -34720,8 +34917,6 @@ export {
|
|
|
34720
34917
|
GetWebhookLog,
|
|
34721
34918
|
Github,
|
|
34722
34919
|
Google,
|
|
34723
|
-
export_GoogleService as GoogleService,
|
|
34724
|
-
export_GoogleServiceClient as GoogleServiceClient,
|
|
34725
34920
|
HEADER_API_KEY,
|
|
34726
34921
|
HEADER_AUTH_ID,
|
|
34727
34922
|
HEADER_COLOR_DEPTH,
|