Skip to content

Commit

Permalink
Skit 347 : .dev migration (#164)
Browse files Browse the repository at this point in the history
* added new fields in DeveloperSearchPayload and DeveloperSchema

* increses the timeout for unit test
  • Loading branch information
rishikesh-y authored Oct 13, 2023
1 parent ba4042f commit e6f1607
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -88,7 +88,7 @@
"scripts": {
"clean": "rm -rf ./dist",
"doc": "typedoc src/ --out docs",
"test:unit": "mocha --timeout 10000",
"test:unit": "mocha --timeout 20000",
"test:prettier": "prettier 'src/**/*.ts' --list-different",
"test:lint": "eslint src --ext .ts",
"test": "run-s build test:*",
Expand Down
5 changes: 5 additions & 0 deletions src/interfaces/developerSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,9 @@ export interface DeveloperSchema {
value: string;
display_type: string;
}[];
expiryDate?: string;
minted?: boolean;
ownerAddress?: string;
tokenId?: string;
email?: string;
}
1 change: 1 addition & 0 deletions src/interfaces/searchOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,5 @@ export interface DeveloperSearchPayload {
_source?: string[];
credentialsId?: string;
credentialsType?: string;
isMinted?: boolean | string;
}

0 comments on commit e6f1607

Please sign in to comment.