@therms/rpc-telemetry-client
Advanced tools
Comparing version 2.4.1 to 2.4.2
@@ -0,1 +1,8 @@ | ||
## [2.4.2](http://bitbucket.org/thermsio/rpc-telemetry-client/compare/v2.4.1...v2.4.2) (2023-12-18) | ||
### Bug Fixes | ||
* add better logging to useDownloadTSConvertedSchema() when it errors ([a1b1e28](http://bitbucket.org/thermsio/rpc-telemetry-client/commits/a1b1e28dce8bf89c9db5a6e8279630506c472f70)) | ||
## [2.4.1](http://bitbucket.org/thermsio/rpc-telemetry-client/compare/v2.4.0...v2.4.1) (2023-11-08) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@therms/rpc-telemetry-client", | ||
"version": "2.4.1", | ||
"version": "2.4.2", | ||
"browser": true, | ||
@@ -5,0 +5,0 @@ "description": "An HTML site for display THERMS RPC framework telemetry data", |
@@ -68,2 +68,13 @@ import { useCallback } from 'react'; | ||
jsonSchemaString: JSON.stringify(version.args), | ||
}).catch((err) => { | ||
console.warn( | ||
`quicktypeJSONSchema() unable to convert: ${scope}::${procedure}::v${version.version}::Args`, | ||
{ | ||
scope, | ||
procedure, | ||
version, | ||
}, | ||
); | ||
throw err; | ||
}); | ||
@@ -81,2 +92,13 @@ | ||
jsonSchemaString: JSON.stringify(version.data), | ||
}).catch((err) => { | ||
console.warn( | ||
`quicktypeJSONSchema() unable to convert: ${scope}::${procedure}::v${version.version}::Data`, | ||
{ | ||
scope, | ||
procedure, | ||
version, | ||
}, | ||
); | ||
throw err; | ||
}); | ||
@@ -83,0 +105,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
16692120
17058