From 651a4f920215e99811b81ddba09cdd84a7aa7142 Mon Sep 17 00:00:00 2001 From: superical Date: Wed, 29 Sep 2021 10:05:36 +0800 Subject: [PATCH] fix: import path from document store (#202) --- package-lock.json | 6 +++--- package.json | 2 +- src/verifiers/documentStatus/utils.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 4f6d3be1..591e7555 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1377,9 +1377,9 @@ } }, "@govtechsg/document-store": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/@govtechsg/document-store/-/document-store-2.2.2.tgz", - "integrity": "sha512-JsY+f9kiji1dhOi6H77ji8oj/BZ0KBJVD3VuLHXOsBaieJDwPNzmJpe0r9NSqnV1WxfA2s0U0RhxqTLKUdFtYw==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@govtechsg/document-store/-/document-store-2.2.3.tgz", + "integrity": "sha512-d6D8ku4aCmdPaxHlU8OMwqIa0WHMZ02ZzUvYujlM/FInxTfKU1jUiAA4Jdx54D60hvhvGlBYU8T9jUsTZhBY4g==", "requires": { "lodash": "^4.17.21" } diff --git a/package.json b/package.json index fc450459..10d3ab73 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "license": "Apache-2.0", "dependencies": { "@govtechsg/dnsprove": "^2.1.3", - "@govtechsg/document-store": "^2.2.2", + "@govtechsg/document-store": "^2.2.3", "@govtechsg/open-attestation": "^6.0.5", "@govtechsg/token-registry": "^2.5.3", "axios": "^0.21.1", diff --git a/src/verifiers/documentStatus/utils.ts b/src/verifiers/documentStatus/utils.ts index 6fc36252..85d84fc6 100644 --- a/src/verifiers/documentStatus/utils.ts +++ b/src/verifiers/documentStatus/utils.ts @@ -1,5 +1,5 @@ import { utils } from "@govtechsg/open-attestation"; -import { DocumentStore } from "@govtechsg/document-store/src/contracts/DocumentStore"; +import { DocumentStore } from "@govtechsg/document-store"; import { errors, providers } from "ethers"; import { DocumentStoreFactory } from "@govtechsg/document-store"; import { Hash } from "../../types/core";