ecwt 0.1.1-beta.101 → 0.2.0-beta.2

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/ecwt.cjs CHANGED
@@ -33,6 +33,7 @@ __export(main_exports, {
33
33
  EcwtExpiredError: () => EcwtExpiredError,
34
34
  EcwtFactory: () => EcwtFactory,
35
35
  EcwtInvalidError: () => EcwtInvalidError,
36
+ EcwtParseError: () => EcwtParseError,
36
37
  EcwtRevokedError: () => EcwtRevokedError
37
38
  });
38
39
  module.exports = __toCommonJS(main_exports);
@@ -453,5 +454,6 @@ var EcwtFactory = class {
453
454
  EcwtExpiredError,
454
455
  EcwtFactory,
455
456
  EcwtInvalidError,
457
+ EcwtParseError,
456
458
  EcwtRevokedError
457
459
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecwt",
3
- "version": "0.1.1-beta.101",
3
+ "version": "0.2.0-beta.2",
4
4
  "description": "Encrypted CBOR-encoded Web Token",
5
5
  "main": "src/main.js",
6
6
  "type": "module",
package/src/main.js CHANGED
@@ -2,6 +2,7 @@
2
2
  export { EcwtFactory } from './factory.js';
3
3
  export { Ecwt } from './token.js';
4
4
  export {
5
+ EcwtParseError,
5
6
  EcwtInvalidError,
6
7
  EcwtExpiredError,
7
8
  EcwtRevokedError,