From 8d9902f85021e9950bb75c44ffb695f1762140e2 Mon Sep 17 00:00:00 2001 From: sayantan-b Date: Mon, 16 Oct 2023 00:20:48 +0530 Subject: [PATCH] Update Dapp schema to add verification details --- .github/workflows/pull_request_template.md | 14 ++++++++++++++ package.json | 2 +- src/interfaces/dAppSchema.ts | 1 + 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/pull_request_template.md diff --git a/.github/workflows/pull_request_template.md b/.github/workflows/pull_request_template.md new file mode 100644 index 0000000..c9a5182 --- /dev/null +++ b/.github/workflows/pull_request_template.md @@ -0,0 +1,14 @@ +**Notes For Reviewers** + +### This PR fixes SKIT- + +### Testing steps- + +### Screenshots (if any) + +### Final Checklists + +- [] Yes, I have added the ticket number in my PR description like `[SKIT-11] Desc` +- [] Yes, I haven't made any secret variables public all are listed in .env file +- [] Yes, I have reviewed my PR once by myself +- [] Yes, I have tested my PR in my local environment and everything is working as expected \ No newline at end of file diff --git a/package.json b/package.json index 3f77045..15d6e16 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@merokudao/dapp-store-registry", - "version": "0.1.97", + "version": "0.1.98", "description": "The dApp Store registry for MerokuDAO dAapp Store", "repository": { "type": "git", diff --git a/src/interfaces/dAppSchema.ts b/src/interfaces/dAppSchema.ts index b1019fd..cd1fc24 100644 --- a/src/interfaces/dAppSchema.ts +++ b/src/interfaces/dAppSchema.ts @@ -181,4 +181,5 @@ export interface DAppSchema { ownerAddress?: string; tokenId?: string; metrics?: object; + verification?: object; }