@@ -20,7 +20,7 @@ export async function getResource(
20
20
resourceName : ResourceType ,
21
21
resourceId : string ,
22
22
// eslint-disable-next-line
23
- options ?: QueryOptions
23
+ _options ?: QueryOptions
24
24
) {
25
25
try {
26
26
elizaLogger . log (
@@ -37,16 +37,16 @@ export async function getResource(
37
37
if ( res . ok ) {
38
38
elizaLogger . log ( "Response is ok" ) ;
39
39
return res . json ( ) ;
40
- } else {
41
- elizaLogger . log ( "Response is not ok" ) ;
42
- elizaLogger . log ( JSON . stringify ( res ) ) ;
43
- throw new Error ( `HTTP error! status: ${ res . status } ` ) ;
44
40
}
41
+ elizaLogger . log ( "Response is not ok" ) ;
42
+ elizaLogger . log ( JSON . stringify ( res ) ) ;
43
+ throw new Error ( `HTTP error! status: ${ res . status } ` ) ;
45
44
} catch ( error ) {
46
45
console . error ( error ) ;
47
46
}
48
47
}
49
48
49
+
50
50
export async function listResource (
51
51
resourceName : ResourceType ,
52
52
options ?: QueryOptions
@@ -80,11 +80,10 @@ export async function listResource(
80
80
elizaLogger . log ( "Response is ok" ) ;
81
81
elizaLogger . log ( res . ok ) ;
82
82
return res . json ( ) ;
83
- } else {
84
- elizaLogger . log ( "Response is not ok" ) ;
85
- elizaLogger . log ( res ) ;
86
- return res ;
87
83
}
84
+ elizaLogger . log ( "Response is not ok" ) ;
85
+ elizaLogger . log ( res ) ;
86
+ return res ;
88
87
} catch ( error ) {
89
88
elizaLogger . log ( "List resource Error" ) ;
90
89
console . error ( error ) ;
@@ -119,7 +118,7 @@ export function convertLicenseTermObject(licenseTerms: Trait[]): LicenseTerms {
119
118
? true
120
119
: option . value === "false"
121
120
? false
122
- : ( option . value as any ) ;
121
+ : option . value as string | number ; // Replaced any with string | number
123
122
return acc as LicenseTerms ;
124
123
} , { } ) ;
125
124
}
0 commit comments