diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a8c8b2..4946381 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.4.1 + +- Export Private Data types + ## 2.4.0 - Delegated Attestations: if nonce isn't provided, try retrieving it onchain diff --git a/dist/index.d.ts b/dist/index.d.ts index 707725b..0ea9035 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -6,3 +6,4 @@ export * from './schema-encoder'; export * from './schema-registry'; export * from './transaction'; export * from './utils'; +export * from './private-data'; diff --git a/dist/index.js b/dist/index.js index aa144db..757ace1 100644 --- a/dist/index.js +++ b/dist/index.js @@ -10,4 +10,5 @@ tslib_1.__exportStar(require("./schema-encoder"), exports); tslib_1.__exportStar(require("./schema-registry"), exports); tslib_1.__exportStar(require("./transaction"), exports); tslib_1.__exportStar(require("./utils"), exports); +tslib_1.__exportStar(require("./private-data"), exports); //# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/dist/index.js.map b/dist/index.js.map index f8bd4e4..1ba2739 100644 --- a/dist/index.js.map +++ b/dist/index.js.map @@ -1 +1 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAAA,iGAAyE;AACzE,gDAAsB;AACtB,qDAA2B;AAC3B,oDAA0B;AAC1B,2DAAiC;AACjC,4DAAkC;AAClC,wDAA8B;AAC9B,kDAAwB"} \ No newline at end of file +{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAAA,iGAAyE;AACzE,gDAAsB;AACtB,qDAA2B;AAC3B,oDAA0B;AAC1B,2DAAiC;AACjC,4DAAkC;AAClC,wDAA8B;AAC9B,kDAAwB;AACxB,yDAA+B"} \ No newline at end of file diff --git a/package.json b/package.json index af3f24c..2f3b44d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ethereum-attestation-service/eas-sdk", - "version": "2.4.0", + "version": "2.4.1", "description": "Ethereum Attestation Service - TypeScript/JavaScript SDK", "repository": "git@github.com:ethereum-attestation-service/eas-sdk.git", "author": "Leonid Beder ", diff --git a/src/index.ts b/src/index.ts index 707725b..0ea9035 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,3 +6,4 @@ export * from './schema-encoder'; export * from './schema-registry'; export * from './transaction'; export * from './utils'; +export * from './private-data';