@rapidaai/nodejs 1.0.15 → 1.0.16

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/index.mjs CHANGED
@@ -57048,7 +57048,7 @@ var ConnectionConfig = class _ConnectionConfig {
57048
57048
  }
57049
57049
  get assistantClient() {
57050
57050
  return new import_assistant_api_grpc_pb.AssistantServiceClient(
57051
- this._endpoint.web,
57051
+ this._endpoint.assistant,
57052
57052
  this._debug ? credentials.createInsecure() : credentials.createSsl()
57053
57053
  );
57054
57054
  }
@@ -57060,25 +57060,25 @@ var ConnectionConfig = class _ConnectionConfig {
57060
57060
  }
57061
57061
  get knowledgeClient() {
57062
57062
  return new import_knowledge_api_grpc_pb.KnowledgeServiceClient(
57063
- this._endpoint.web,
57063
+ this._endpoint.assistant,
57064
57064
  this._debug ? credentials.createInsecure() : credentials.createSsl()
57065
57065
  );
57066
57066
  }
57067
57067
  get deploymentClient() {
57068
57068
  return new import_invoker_api_grpc_pb.DeploymentClient(
57069
- this._endpoint.web,
57069
+ this._endpoint.endpoint,
57070
57070
  this._debug ? credentials.createInsecure() : credentials.createSsl()
57071
57071
  );
57072
57072
  }
57073
57073
  get marketplaceClient() {
57074
57074
  return new import_marketplace_api_grpc_pb.MarketplaceServiceClient(
57075
- this._endpoint.web,
57075
+ this._endpoint.endpoint,
57076
57076
  this._debug ? credentials.createInsecure() : credentials.createSsl()
57077
57077
  );
57078
57078
  }
57079
57079
  get documentClient() {
57080
57080
  return new import_document_api_grpc_pb.DocumentServiceClient(
57081
- this._endpoint.web,
57081
+ this._endpoint.assistant,
57082
57082
  this._debug ? credentials.createInsecure() : credentials.createSsl()
57083
57083
  );
57084
57084
  }
@@ -57090,7 +57090,7 @@ var ConnectionConfig = class _ConnectionConfig {
57090
57090
  }
57091
57091
  get endpointClient() {
57092
57092
  return new import_endpoint_api_grpc_pb.EndpointServiceClient(
57093
- this._endpoint.web,
57093
+ this._endpoint.endpoint,
57094
57094
  this._debug ? credentials.createInsecure() : credentials.createSsl()
57095
57095
  );
57096
57096
  }
@@ -57102,7 +57102,7 @@ var ConnectionConfig = class _ConnectionConfig {
57102
57102
  }
57103
57103
  get assistantDeploymentClient() {
57104
57104
  return new import_assistant_deployment_grpc_pb.AssistantDeploymentServiceClient(
57105
- this._endpoint.web,
57105
+ this._endpoint.assistant,
57106
57106
  this._debug ? credentials.createInsecure() : credentials.createSsl()
57107
57107
  );
57108
57108
  }