@@ -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 _} ;
@@ -257,7 +257,7 @@ async fn client_invoke_workflow_service(
257257 mut retry_client : CoreClient ,
258258 call : RpcCall ,
259259) -> BridgeResult < Vec < u8 > > {
260- use temporal_client :: WorkflowService ;
260+ use temporalio_client :: WorkflowService ;
261261
262262 match call. rpc . as_str ( ) {
263263 "CountWorkflowExecutions" => {
@@ -522,7 +522,7 @@ async fn client_invoke_operator_service(
522522 mut retry_client : CoreClient ,
523523 call : RpcCall ,
524524) -> BridgeResult < Vec < u8 > > {
525- use temporal_client :: OperatorService ;
525+ use temporalio_client :: OperatorService ;
526526
527527 match call. rpc . as_str ( ) {
528528 "AddOrUpdateRemoteCluster" => {
@@ -560,7 +560,7 @@ async fn client_invoke_test_service(
560560 mut retry_client : CoreClient ,
561561 call : RpcCall ,
562562) -> BridgeResult < Vec < u8 > > {
563- use temporal_client :: TestService ;
563+ use temporalio_client :: TestService ;
564564
565565 match call. rpc . as_str ( ) {
566566 "GetCurrentTime" => rpc_call ! ( retry_client, call, get_current_time) ,
@@ -582,7 +582,7 @@ async fn client_invoke_health_service(
582582 mut retry_client : CoreClient ,
583583 call : RpcCall ,
584584) -> BridgeResult < Vec < u8 > > {
585- use temporal_client :: HealthService ;
585+ use temporalio_client :: HealthService ;
586586
587587 match call. rpc . as_str ( ) {
588588 "Check" => rpc_call ! ( retry_client, call, check) ,
@@ -652,8 +652,8 @@ mod config {
652652
653653 use anyhow:: Context as _;
654654
655- use temporal_client :: HttpConnectProxyOptions ;
656- use temporal_sdk_core :: {
655+ use temporalio_client :: HttpConnectProxyOptions ;
656+ use temporalio_sdk_core :: {
657657 ClientOptions as CoreClientOptions , ClientOptionsBuilder ,
658658 ClientTlsConfig as CoreClientTlsConfig , TlsConfig as CoreTlsConfig , Url ,
659659 } ;
0 commit comments