@zeke-02/tinfoil 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -124,6 +124,7 @@ export class SecureClient {
124
124
  }
125
125
  catch (error) {
126
126
  if (this.verificationDocument) {
127
+ console.log("secure-client error", error);
127
128
  const errorMessage = error.message;
128
129
  if (errorMessage.includes("HPKE public key mismatch")) {
129
130
  this.verificationDocument.steps.verifyHPKEKey = {
@@ -127,6 +127,7 @@ class SecureClient {
127
127
  }
128
128
  catch (error) {
129
129
  if (this.verificationDocument) {
130
+ console.log("secure-client error", error);
130
131
  const errorMessage = error.message;
131
132
  if (errorMessage.includes("HPKE public key mismatch")) {
132
133
  this.verificationDocument.steps.verifyHPKEKey = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeke-02/tinfoil",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Tinfoil secure OpenAI client wrapper for Tauri v2",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/esm/index.mjs",