@@ -83,14 +83,10 @@ export const UTILS: { [key: string]: UtilValue } = {
83
83
useRpcClient : '__react-query__' ,
84
84
useTendermintClient : '__react-query__' ,
85
85
ReactQueryParams : '__react-query__' ,
86
- VueQueryParams : {
87
- type : 'import' ,
88
- name : 'VueQueryParams' ,
89
- path : '../../../vue-query'
90
- } ,
91
- buildUseMutation :'__react-query__' ,
92
- UseQueryParams :'__react-query__' ,
93
- buildUseQuery :'__react-query__' ,
86
+ VueQueryParams : '__vue-query__' ,
87
+ buildUseMutation : '__react-query__' ,
88
+ UseQueryParams : '__react-query__' ,
89
+ buildUseQuery : '__react-query__' ,
94
90
UseQueryOptions : '@tanstack/react-query' ,
95
91
QueryStore : '__mobx__' ,
96
92
MobxResponse : '__mobx__' ,
@@ -105,19 +101,20 @@ export const UTILS: { [key: string]: UtilValue } = {
105
101
BinaryWriter : '__binary__' ,
106
102
TelescopeGeneratedType : '__types__' ,
107
103
GlobalDecoderRegistry : '__registry__' ,
108
- buildTx :'__helper-func-types__' ,
109
- ISigningClient :'__helper-func-types__' ,
110
- buildQuery :'__helper-func-types__' ,
111
- SigningClientResolver :'__helper-func-types__' ,
112
- RpcResolver :'__helper-func-types__' ,
113
- toConverters :'@interchainjs/cosmos/utils' ,
114
- toEncoders :'@interchainjs/cosmos/utils'
104
+ buildTx : '__helper-func-types__' ,
105
+ ISigningClient : '__helper-func-types__' ,
106
+ buildQuery : '__helper-func-types__' ,
107
+ SigningClientResolver : '__helper-func-types__' ,
108
+ RpcResolver : '__helper-func-types__' ,
109
+ toConverters : '@interchainjs/cosmos/utils' ,
110
+ toEncoders : '@interchainjs/cosmos/utils'
115
111
} ;
116
112
117
113
export const UTIL_HELPERS = [
118
114
'__helpers__' ,
119
115
'__extern__' ,
120
116
'__react-query__' ,
117
+ '__vue-query__' ,
121
118
'__mobx__' ,
122
119
'__binary__' ,
123
120
'__pinia-endpoint__' ,
@@ -137,8 +134,8 @@ export const fixlocalpaths = (imports: ImportObj[]) => {
137
134
...imp ,
138
135
path :
139
136
UTIL_HELPERS . includes ( imp . path ) ||
140
- imp . path . startsWith ( '.' ) ||
141
- imp . path . startsWith ( '@' )
137
+ imp . path . startsWith ( '.' ) ||
138
+ imp . path . startsWith ( '@' )
142
139
? fixedPath
143
140
: `./${ fixedPath } ` ,
144
141
} ;
0 commit comments