@openid4vc/openid4vci 0.3.0-alpha-20251021082313 → 0.3.0-alpha-20251029091020

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.
package/dist/index.mjs CHANGED
@@ -843,7 +843,7 @@ function getCredentialConfigurationsMatchingRequestFormat({ requestFormat, crede
843
843
  //#region src/error/Openid4vciError.ts
844
844
  var Openid4vciError = class extends Error {
845
845
  constructor(message, options) {
846
- const errorMessage = message ?? "Unknown error occured.";
846
+ const errorMessage = message ?? "Unknown error occurred.";
847
847
  const causeMessage = options?.cause instanceof Error ? ` ${options.cause.message}` : options?.cause ? ` ${options?.cause}` : "";
848
848
  super(`${errorMessage}${causeMessage}`);
849
849
  this.cause = options?.cause;