Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skit 347 : .dev migration #164

Merged
merged 2 commits into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -86,7 +86,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;
}
Loading