Skip to content

Commit

Permalink
feat: CLI upgraded to the latest API
Browse files Browse the repository at this point in the history
  • Loading branch information
simonas-notcat authored and mirceanis committed Sep 7, 2020
1 parent f04920f commit b440dd1
Show file tree
Hide file tree
Showing 18 changed files with 2,436 additions and 1,299 deletions.
2 changes: 1 addition & 1 deletion docs/api/daf-typeorm.entities.md
Expand Up @@ -7,5 +7,5 @@
<b>Signature:</b>

```typescript
Entities: (typeof Credential | typeof Identity | typeof Claim | typeof Presentation | typeof Message | typeof Key | typeof Service)[]
Entities: (typeof Key | typeof Identity | typeof Service | typeof Claim | typeof Credential | typeof Presentation | typeof Message)[]
```
36 changes: 27 additions & 9 deletions packages/daf-cli/CHANGELOG.md
Expand Up @@ -3,38 +3,56 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [6.3.0](https://github.com/uport-project/daf/compare/v6.1.1...v6.3.0) (2020-09-04)
## [6.1.6](https://github.com/uport-project/daf/compare/v6.1.5...v6.1.6) (2020-07-20)

**Note:** Version bump only for package daf-cli

### Features

* **release:** Fix package descriptions and trigger new minor release ([#233](https://github.com/uport-project/daf/issues/233)) ([e67f4da](https://github.com/uport-project/daf/commit/e67f4da055d1f0b1b0ba4205726b79979d234a06))
* **release:** Trigger a new minor release ([#234](https://github.com/uport-project/daf/issues/234)) ([7c905e1](https://github.com/uport-project/daf/commit/7c905e1ea7c4851f7f06e87e06efe34d4eac7b0f))



## [6.1.5](https://github.com/uport-project/daf/compare/v6.1.4...v6.1.5) (2020-07-15)


# [6.2.0](https://github.com/uport-project/daf/compare/v6.1.2...v6.2.0) (2020-09-04)
### Bug Fixes

* **deps:** update dependency console-table-printer to v2 ([#49](https://github.com/uport-project/daf/issues/49)) ([31c926c](https://github.com/uport-project/daf/commit/31c926cb7c6c94abc19b13cdae9d71f7f2af8a2d))





## [6.1.4](https://github.com/uport-project/daf/compare/v6.1.3...v6.1.4) (2020-07-08)

### Features

* **release:** Fix package descriptions and trigger new minor release ([#233](https://github.com/uport-project/daf/issues/233)) ([e67f4da](https://github.com/uport-project/daf/commit/e67f4da055d1f0b1b0ba4205726b79979d234a06))
### Bug Fixes

* **deps:** update dependency commander to v5 ([#20](https://github.com/uport-project/daf/issues/20)) ([d67cb78](https://github.com/uport-project/daf/commit/d67cb78982b4251c29c57731c823921a2a385870))
* **deps:** update dependency graphql to v15 ([#45](https://github.com/uport-project/daf/issues/45)) ([840a39d](https://github.com/uport-project/daf/commit/840a39d4a85e9af668c8f0afb48506bd0fe70c87))
* **deps:** update dependency graphql-tools to v6 ([#22](https://github.com/uport-project/daf/issues/22)) ([50f3267](https://github.com/uport-project/daf/commit/50f32674e129076eb5dc7d658c265dd0b1d8c70c))
* **deps:** update dependency sqlite3 to v5 ([#39](https://github.com/uport-project/daf/issues/39)) ([efb3f58](https://github.com/uport-project/daf/commit/efb3f58e847e7857125ca88424c95f187a90b9ae))





## [6.1.3](https://github.com/uport-project/daf/compare/v6.1.2...v6.1.3) (2020-06-11)

**Note:** Version bump only for package daf-cli





## [6.1.2](https://github.com/uport-project/daf/compare/v6.1.1...v6.1.2) (2020-09-03)
## [6.1.2](https://github.com/uport-project/daf/compare/v6.1.1...v6.1.2) (2020-06-10)

**Note:** Version bump only for package daf-cli





## [6.1.1](https://github.com/uport-project/daf/compare/v6.1.0...v6.1.1) (2020-07-06)
## [6.1.1](https://github.com/uport-project/daf/compare/v6.1.0...v6.1.1) (2020-06-10)

**Note:** Version bump only for package daf-cli

Expand Down
58 changes: 31 additions & 27 deletions packages/daf-cli/package.json
@@ -1,52 +1,56 @@
{
"name": "daf-cli",
"description": "DAF command line application.",
"version": "6.3.0",
"description": "DAF command line tool",
"version": "7.0.0-beta.17",
"main": "build/cli.js",
"types": "build/cli.d.ts",
"bin": {
"daf": "bin/daf.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -b --watch"
"watch": "tsc -b --watch",
"update-daf-beta": "yarn add daf-core@beta daf-resolver@beta daf-did-jwt@beta daf-w3c@beta daf-ethr-did@beta daf-web-did@beta daf-did-comm@beta daf-libsodium@beta daf-selective-disclosure@beta daf-typeorm@beta daf-key-manager@beta daf-message-handler@beta daf-identity-manager@beta daf-resolver-universal@beta daf-url@beta daf-graphql@beta"
},
"dependencies": {
"apollo-server": "^2.9.12",
"commander": "^4.0.1",
"console-table-printer": "^1.1.15",
"daf-core": "^6.3.0",
"daf-did-comm": "^6.3.0",
"daf-did-jwt": "^6.3.0",
"daf-ethr-did": "^6.3.0",
"daf-fs": "^6.3.0",
"daf-libsodium": "^6.3.0",
"daf-resolver": "^6.3.0",
"daf-resolver-universal": "^6.3.0",
"daf-selective-disclosure": "^6.3.0",
"daf-trust-graph": "^6.3.0",
"daf-url": "^6.3.0",
"daf-w3c": "^6.3.0",
"daf-web-did": "^6.3.0",
"commander": "^5.0.0",
"console-table-printer": "^2.0.0",
"daf-core": "^7.0.0-beta.17",
"daf-did-comm": "^7.0.0-beta.17",
"daf-did-jwt": "^7.0.0-beta.17",
"daf-ethr-did": "^7.0.0-beta.17",
"daf-graphql": "^7.0.0-beta.17",
"daf-identity-manager": "^7.0.0-beta.17",
"daf-key-manager": "^7.0.0-beta.17",
"daf-libsodium": "^7.0.0-beta.17",
"daf-message-handler": "^7.0.0-beta.17",
"daf-resolver": "^7.0.0-beta.17",
"daf-resolver-universal": "^7.0.0-beta.17",
"daf-selective-disclosure": "^7.0.0-beta.17",
"daf-typeorm": "^7.0.0-beta.17",
"daf-url": "^7.0.0-beta.17",
"daf-w3c": "^7.0.0-beta.17",
"daf-web-did": "^7.0.0-beta.17",
"date-fns": "^2.8.1",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"graphql": "^14.5.8",
"graphql-tools": "^5.0.0",
"graphql": "^15.0.0",
"graphql-tools": "^6.0.0",
"inquirer": "^7.0.0",
"lodash.merge": "^4.6.2",
"pg": "^8.2.0",
"qrcode-terminal": "^0.12.0",
"sqlite3": "^4.2.0",
"sqlite3": "^5.0.0",
"typeorm": "^0.2.24",
"ws": "^7.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/inquirer": "^6.5.0",
"@types/lodash.merge": "^4.6.6",
"@types/node-fetch": "^2.5.4",
"@types/ws": "^6.0.3",
"@types/debug": "4.1.5",
"@types/inquirer": "7.3.1",
"@types/lodash.merge": "4.6.6",
"@types/node-fetch": "2.5.7",
"@types/ws": "7.2.6",
"typescript": "^3.8.3"
},
"peerDependencies": {
Expand All @@ -64,5 +68,5 @@
"author": "Simonas Karuzas <simonas.karuzas@consensys.net>",
"license": "Apache-2.0",
"keywords": [],
"gitHead": "b77c5c740ac96a2bb5fb2ca17348f0ffdedc5d9a"
"gitHead": "63dd12da63b2245d32379b435a7a774a56a1f019"
}
1 change: 0 additions & 1 deletion packages/daf-cli/src/cli.ts
Expand Up @@ -2,7 +2,6 @@ import program from 'commander'
import './identity-manager'
import './did-resolver'
import './credential'
import './services'
import './data-explorer'
import './graphql'
import './sdr'
Expand Down

0 comments on commit b440dd1

Please sign in to comment.