@@ -5,10 +5,10 @@ use std::{collections::HashMap, sync::Arc};
55use neon:: prelude:: * ;
66use tonic:: metadata:: { BinaryMetadataValue , MetadataKey } ;
77
8- use temporal_sdk_core :: { ClientOptions as CoreClientOptions , CoreRuntime , RetryClient } ;
8+ use temporalio_sdk_core :: { ClientOptions as CoreClientOptions , CoreRuntime , RetryClient } ;
99
1010use bridge_macros:: { TryFromJs , js_function} ;
11- use temporal_client :: { ClientInitError , ConfiguredClient , TemporalServiceClient } ;
11+ use temporalio_client :: { ClientInitError , ConfiguredClient , TemporalServiceClient } ;
1212
1313use crate :: runtime:: Runtime ;
1414use crate :: { helpers:: * , runtime:: RuntimeExt as _} ;
@@ -255,7 +255,7 @@ async fn client_invoke_workflow_service(
255255 mut retry_client : CoreClient ,
256256 call : RpcCall ,
257257) -> BridgeResult < Vec < u8 > > {
258- use temporal_client :: WorkflowService ;
258+ use temporalio_client :: WorkflowService ;
259259
260260 match call. rpc . as_str ( ) {
261261 "CountWorkflowExecutions" => {
@@ -519,7 +519,7 @@ async fn client_invoke_operator_service(
519519 mut retry_client : CoreClient ,
520520 call : RpcCall ,
521521) -> BridgeResult < Vec < u8 > > {
522- use temporal_client :: OperatorService ;
522+ use temporalio_client :: OperatorService ;
523523
524524 match call. rpc . as_str ( ) {
525525 "AddOrUpdateRemoteCluster" => {
@@ -557,7 +557,7 @@ async fn client_invoke_test_service(
557557 mut retry_client : CoreClient ,
558558 call : RpcCall ,
559559) -> BridgeResult < Vec < u8 > > {
560- use temporal_client :: TestService ;
560+ use temporalio_client :: TestService ;
561561
562562 match call. rpc . as_str ( ) {
563563 "GetCurrentTime" => rpc_call ! ( retry_client, call, get_current_time) ,
@@ -579,7 +579,7 @@ async fn client_invoke_health_service(
579579 mut retry_client : CoreClient ,
580580 call : RpcCall ,
581581) -> BridgeResult < Vec < u8 > > {
582- use temporal_client :: HealthService ;
582+ use temporalio_client :: HealthService ;
583583
584584 match call. rpc . as_str ( ) {
585585 "Check" => rpc_call ! ( retry_client, call, check) ,
@@ -649,8 +649,8 @@ mod config {
649649
650650 use anyhow:: Context as _;
651651
652- use temporal_client :: HttpConnectProxyOptions ;
653- use temporal_sdk_core :: {
652+ use temporalio_client :: HttpConnectProxyOptions ;
653+ use temporalio_sdk_core :: {
654654 ClientOptions as CoreClientOptions , ClientOptionsBuilder ,
655655 ClientTlsConfig as CoreClientTlsConfig , TlsConfig as CoreTlsConfig , Url ,
656656 } ;
0 commit comments