File tree Expand file tree Collapse file tree
services/libs/data-access-layer/src/members Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ const getOrderClause = (orderBy: string, withAggregates: boolean): string => {
173173
174174const buildSearchCTE = (
175175 search : string ,
176- ) : { cte : string ; join : string ; params : Record < string , any > } => {
176+ ) : { cte : string ; join : string ; params : Record < string , string > } => {
177177 if ( ! search ?. trim ( ) ) {
178178 return { cte : '' , join : '' , params : { } }
179179 }
@@ -335,7 +335,7 @@ export async function queryMembersAdvanced(
335335 qx : QueryExecutor ,
336336 redis : RedisClient ,
337337 {
338- filter = { } as any ,
338+ filter = { } ,
339339 search = null ,
340340 limit = 20 ,
341341 offset = 0 ,
@@ -603,7 +603,7 @@ export async function moveAffiliationsBetweenMembers(
603603 fromMemberId : string ,
604604 toMemberId : string ,
605605) : Promise < void > {
606- const params : any = {
606+ const params : Record < string , string > = {
607607 fromMemberId,
608608 toMemberId,
609609 }
You can’t perform that action at this time.
0 commit comments