Skip to content

Commit e8561c9

Browse files
committed
fix(triggers): replace any with Record<string, unknown> in confluence extract functions
1 parent 48e69b3 commit e8561c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/sim/triggers/confluence/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ export function extractLabelData(body: any) {
349349
}
350350
}
351351

352-
export function extractPagePermissionsData(body: any) {
352+
export function extractPagePermissionsData(body: Record<string, unknown>) {
353353
return {
354354
timestamp: body.timestamp,
355355
userAccountId: body.userAccountId,
@@ -358,7 +358,7 @@ export function extractPagePermissionsData(body: any) {
358358
}
359359
}
360360

361-
export function extractUserData(body: any) {
361+
export function extractUserData(body: Record<string, unknown>) {
362362
return {
363363
timestamp: body.timestamp,
364364
userAccountId: body.userAccountId,

0 commit comments

Comments
 (0)