Skip to content

Commit

Permalink
Hotfix/fix logform dep (#1774)
Browse files Browse the repository at this point in the history
* update Dovu policy (fix schemas)

* update validation errors

Signed-off-by: Stepan Kiryakov <[email protected]>

* update validation errors

Signed-off-by: Stepan Kiryakov <[email protected]>

* fix

Signed-off-by: Stepan Kiryakov <[email protected]>

* GitBook: [#213] Added GroupByFields property in aggregateBlock

* GitBook: [#214] Setting up local IPFS Node

* Setting Local IPFS node updated in ReadMe

* GitBook: [#215] Added Multi Policy APIs

* skipLibCheck

Signed-off-by: simvalery <[email protected]>

* up version

Signed-off-by: simvalery <[email protected]>

---------

Signed-off-by: Stepan Kiryakov <[email protected]>
Signed-off-by: simvalery <[email protected]>
Co-authored-by: Stepan Kiryakov <[email protected]>
Co-authored-by: prernaa.agarwal <[email protected]>
Co-authored-by: prernaadev01 <[email protected]>
  • Loading branch information
4 people authored Feb 7, 2023
1 parent 9c373d9 commit badad31
Show file tree
Hide file tree
Showing 23 changed files with 56 additions and 50 deletions.
2 changes: 1 addition & 1 deletion api-docs/api/swagger/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: "Guardian"
description: "The Guardian is a modular open-source solution that includes best-in-class identity management and decentralized ledger technology (DLT) libraries. At the heart of the Guardian solution is a sophisticated Policy Workflow Engine (PWE) that enables applications to offer a requirements-based tokenization implementation."
version: "2.9.2"
version: "2.9.3"
contact:
name: "API developer"
url: "https://envisionblockchain.com"
Expand Down
2 changes: 1 addition & 1 deletion api-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api-docs",
"version": "2.9.2",
"version": "2.9.3",
"description": "Swagger Documentation",
"main": "dist/index.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions api-gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
},
"author": "Envision Blockchain Solutions <[email protected]>",
"dependencies": {
"@guardian/common": "^2.9.2",
"@guardian/interfaces": "^2.9.2",
"@guardian/common": "^2.9.3",
"@guardian/interfaces": "^2.9.3",
"@types/express-fileupload": "^1.4.1",
"dotenv": "^16.0.0",
"express": "^4.17.1",
Expand Down Expand Up @@ -52,5 +52,5 @@
"start": "node dist/index.js",
"test": "mocha tests/**/*.test.js --reporter mocha-junit-reporter --reporter-options mochaFile=../test_results/ui-service.xml"
},
"version": "2.9.2"
"version": "2.9.3"
}
2 changes: 1 addition & 1 deletion api-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api-tests",
"version": "2.9.2",
"version": "2.9.3",
"description": "API Tests",
"main": "index.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions auth-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
},
"author": "Envision Blockchain Solutions <[email protected]>",
"dependencies": {
"@guardian/common": "^2.9.2",
"@guardian/interfaces": "^2.9.2",
"@guardian/common": "^2.9.3",
"@guardian/interfaces": "^2.9.3",
"@mikro-orm/core": "~5.3.0",
"@mikro-orm/mongodb": "~5.3.0",
"dotenv": "^16.0.0",
Expand Down Expand Up @@ -47,5 +47,5 @@
"start": "node dist/index.js",
"test": "mocha tests/**/*.test.js --reporter mocha-junit-reporter --reporter-options mochaFile=../test_results/ui-service.xml"
},
"version": "2.9.2"
"version": "2.9.3"
}
1 change: 1 addition & 0 deletions auth-service/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"inlineSourceMap": true,
"lib": [
"dom",
Expand Down
1 change: 1 addition & 0 deletions auth-service/tsconfig.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"inlineSourceMap": false,
"lib": [
"dom",
Expand Down
4 changes: 2 additions & 2 deletions common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Envision Blockchain Solutions <[email protected]>",
"dependencies": {
"@guardian/interfaces": "^2.9.2",
"@guardian/interfaces": "^2.9.3",
"@mikro-orm/core": "~5.3.0",
"@mikro-orm/migrations-mongodb": "~5.3.0",
"@mikro-orm/mongodb": "~5.3.0",
Expand Down Expand Up @@ -35,5 +35,5 @@
"prepack": "npm run build:prod",
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "2.9.2"
"version": "2.9.3"
}
3 changes: 2 additions & 1 deletion common/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": [
"src/**/*"
Expand Down
3 changes: 2 additions & 1 deletion common/tsconfig.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": [
"src/**/*"
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@
"test": "ng test",
"watch": "ng build --watch --configuration development --output-path ../www-data"
},
"version": "2.9.2"
"version": "2.9.3"
}
6 changes: 3 additions & 3 deletions guardian-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
},
"author": "Envision Blockchain Solutions <[email protected]>",
"dependencies": {
"@guardian/common": "^2.9.2",
"@guardian/interfaces": "^2.9.2",
"@guardian/common": "^2.9.3",
"@guardian/interfaces": "^2.9.3",
"@hashgraph/sdk": "^2.19.2",
"@mikro-orm/core": "~5.3.0",
"@mikro-orm/mongodb": "~5.3.0",
Expand Down Expand Up @@ -76,5 +76,5 @@
"test:local": "mocha tests/**/*.test.js",
"test:stability": "mocha tests/stability.test.js"
},
"version": "2.9.2"
"version": "2.9.3"
}
2 changes: 1 addition & 1 deletion interfaces/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
"prepack": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "2.9.2"
"version": "2.9.3"
}
6 changes: 3 additions & 3 deletions logger-service/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"author": "Envision Blockchain Solutions <[email protected]>",
"dependencies": {
"@guardian/common": "^2.9.2",
"@guardian/interfaces": "^2.9.2",
"@guardian/common": "^2.9.3",
"@guardian/interfaces": "^2.9.3",
"@mikro-orm/core": "~5.3.0",
"@mikro-orm/mongodb": "~5.3.0",
"@web-std/fetch": "3.0.0",
Expand Down Expand Up @@ -37,5 +37,5 @@
"start": "node dist/index.js",
"watch": "nodemon src/index.ts"
},
"version": "2.9.2"
"version": "2.9.3"
}
4 changes: 2 additions & 2 deletions mrv-sender/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Envision Blockchain Solutions <[email protected]>",
"dependencies": {
"@guardian/common": "^2.9.2",
"@guardian/common": "^2.9.3",
"@transmute/credentials-context": "0.7.0-unstable.80",
"@transmute/did-context": "0.7.0-unstable.80",
"@transmute/ed25519-signature-2018": "0.7.0-unstable.80",
Expand Down Expand Up @@ -30,5 +30,5 @@
"dev:docker": "nodemon .",
"start": "node dist/index.js"
},
"version": "2.9.2"
"version": "2.9.3"
}
3 changes: 2 additions & 1 deletion mrv-sender/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"outDir": "dist/",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true
"esModuleInterop": true,
"skipLibCheck": true
},
"include": [
"src/**/*"
Expand Down
3 changes: 2 additions & 1 deletion mrv-sender/tsconfig.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"outDir": "dist/",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true
"esModuleInterop": true,
"skipLibCheck": true
},
"include": [
"src/**/*"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"worker-service",
"policy-service"
],
"version": "2.9.2"
"version": "2.9.3"
}
6 changes: 3 additions & 3 deletions policy-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"author": "Envision Blockchain Solutions <[email protected]>",
"dependencies": {
"@guardian/common": "^2.9.2",
"@guardian/interfaces": "^2.9.2",
"@guardian/common": "^2.9.3",
"@guardian/interfaces": "^2.9.3",
"@hashgraph/sdk": "^2.19.2",
"@mikro-orm/core": "~5.3.0",
"@mikro-orm/mongodb": "~5.3.0",
Expand Down Expand Up @@ -75,5 +75,5 @@
"test:local": "mocha tests/**/*.test.js",
"test:stability": "mocha tests/stability.test.js"
},
"version": "2.9.2"
"version": "2.9.3"
}
2 changes: 1 addition & 1 deletion topic-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"dev": "tsc -w",
"start": "node dist/index.js"
},
"version": "2.9.2"
"version": "2.9.3"
}
2 changes: 1 addition & 1 deletion tree-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"dev": "tsc -w",
"start": "node dist/index.js"
},
"version": "2.9.2"
"version": "2.9.3"
}
6 changes: 3 additions & 3 deletions worker-service/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"author": "Envision Blockchain Solutions <[email protected]>",
"dependencies": {
"@guardian/common": "^2.9.2",
"@guardian/interfaces": "^2.9.2",
"@guardian/common": "^2.9.3",
"@guardian/interfaces": "^2.9.3",
"@hashgraph/sdk": "^2.19.2",
"@transmute/credentials-context": "^0.7.0-unstable.80",
"@transmute/did-context": "^0.7.0-unstable.80",
Expand Down Expand Up @@ -48,5 +48,5 @@
"start": "node dist/index.js",
"test": "mocha tests/**/*.test.js --reporter mocha-junit-reporter --reporter-options mochaFile=../test_results/worker-service.xml --exit"
},
"version": "2.9.2"
"version": "2.9.3"
}
32 changes: 16 additions & 16 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,11 @@ __metadata:
languageName: node
linkType: hard

"@guardian/common@^2.9.2, @guardian/common@workspace:common":
"@guardian/common@^2.9.3, @guardian/common@workspace:common":
version: 0.0.0-use.local
resolution: "@guardian/common@workspace:common"
dependencies:
"@guardian/interfaces": ^2.9.2
"@guardian/interfaces": ^2.9.3
"@mikro-orm/core": ~5.3.0
"@mikro-orm/migrations-mongodb": ~5.3.0
"@mikro-orm/mongodb": ~5.3.0
Expand All @@ -209,7 +209,7 @@ __metadata:
languageName: unknown
linkType: soft

"@guardian/interfaces@^2.9.2, @guardian/interfaces@workspace:interfaces":
"@guardian/interfaces@^2.9.3, @guardian/interfaces@workspace:interfaces":
version: 0.0.0-use.local
resolution: "@guardian/interfaces@workspace:interfaces"
dependencies:
Expand Down Expand Up @@ -1726,8 +1726,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "api-gateway@workspace:api-gateway"
dependencies:
"@guardian/common": ^2.9.2
"@guardian/interfaces": ^2.9.2
"@guardian/common": ^2.9.3
"@guardian/interfaces": ^2.9.3
"@types/express": ^4.17.13
"@types/express-fileupload": ^1.4.1
"@types/jszip": ^3.4.1
Expand Down Expand Up @@ -1865,8 +1865,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "auth-service@workspace:auth-service"
dependencies:
"@guardian/common": ^2.9.2
"@guardian/interfaces": ^2.9.2
"@guardian/common": ^2.9.3
"@guardian/interfaces": ^2.9.3
"@mikro-orm/core": ~5.3.0
"@mikro-orm/mongodb": ~5.3.0
"@types/jsonwebtoken": ^8.5.4
Expand Down Expand Up @@ -4146,8 +4146,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "guardian-service@workspace:guardian-service"
dependencies:
"@guardian/common": ^2.9.2
"@guardian/interfaces": ^2.9.2
"@guardian/common": ^2.9.3
"@guardian/interfaces": ^2.9.3
"@hashgraph/sdk": ^2.19.2
"@mikro-orm/core": ~5.3.0
"@mikro-orm/mongodb": ~5.3.0
Expand Down Expand Up @@ -6018,8 +6018,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "logger-service@workspace:logger-service"
dependencies:
"@guardian/common": ^2.9.2
"@guardian/interfaces": ^2.9.2
"@guardian/common": ^2.9.3
"@guardian/interfaces": ^2.9.3
"@mikro-orm/core": ~5.3.0
"@mikro-orm/mongodb": ~5.3.0
"@types/fs-extra": ^9.0.12
Expand Down Expand Up @@ -6573,7 +6573,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "mrv-sender@workspace:mrv-sender"
dependencies:
"@guardian/common": ^2.9.2
"@guardian/common": ^2.9.3
"@transmute/credentials-context": 0.7.0-unstable.80
"@transmute/did-context": 0.7.0-unstable.80
"@transmute/ed25519-signature-2018": 0.7.0-unstable.80
Expand Down Expand Up @@ -7293,8 +7293,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "policy-service@workspace:policy-service"
dependencies:
"@guardian/common": ^2.9.2
"@guardian/interfaces": ^2.9.2
"@guardian/common": ^2.9.3
"@guardian/interfaces": ^2.9.3
"@hashgraph/sdk": ^2.19.2
"@mikro-orm/core": ~5.3.0
"@mikro-orm/mongodb": ~5.3.0
Expand Down Expand Up @@ -9400,8 +9400,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "worker-service@workspace:worker-service"
dependencies:
"@guardian/common": ^2.9.2
"@guardian/interfaces": ^2.9.2
"@guardian/common": ^2.9.3
"@guardian/interfaces": ^2.9.3
"@hashgraph/sdk": ^2.19.2
"@transmute/credentials-context": ^0.7.0-unstable.80
"@transmute/did-context": ^0.7.0-unstable.80
Expand Down

0 comments on commit badad31

Please sign in to comment.