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 +2 -0
- package/package.json +1 -1
- package/src/main.js +1 -0
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