@velocitycareerlabs/server-webwallet 1.27.0-dev-build.1ff2f3e89 → 1.27.0-dev-build.150d4c8c4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@velocitycareerlabs/server-webwallet",
|
|
3
|
-
"version": "1.27.0-dev-build.
|
|
3
|
+
"version": "1.27.0-dev-build.150d4c8c4",
|
|
4
4
|
"description": "Web Wallet application",
|
|
5
5
|
"repository": "https://github.com/velocitycareerlabs/packages",
|
|
6
6
|
"engines": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@fastify/swagger": "^9.0.0",
|
|
35
35
|
"@fastify/swagger-ui": "^5.0.0",
|
|
36
36
|
"@spencejs/spence-mongo-repos": "^0.10.2",
|
|
37
|
-
"@velocitycareerlabs/migrations": "1.27.0-dev-build.
|
|
37
|
+
"@velocitycareerlabs/migrations": "1.27.0-dev-build.150d4c8c4",
|
|
38
38
|
"@verii/auth": "1.0.0",
|
|
39
39
|
"@verii/common-functions": "1.0.0",
|
|
40
40
|
"@verii/common-schemas": "1.0.0",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"nodemon": "3.1.10",
|
|
75
75
|
"prettier": "2.8.8"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "e2ca43661363f89c8ca71ae0f619cc3c44ca2d91"
|
|
78
78
|
}
|
|
@@ -277,7 +277,6 @@ const mapDisclosureForResponse = (disclosure) => {
|
|
|
277
277
|
token: disclosure.token,
|
|
278
278
|
sharedCredentials: disclosure.sharedCredentials,
|
|
279
279
|
type: disclosure.type,
|
|
280
|
-
feed: disclosure.feed,
|
|
281
280
|
createdAt: toIso(disclosure.createdAt),
|
|
282
281
|
updatedAt: toIso(disclosure.updatedAt),
|
|
283
282
|
};
|
|
@@ -17,8 +17,7 @@ const webWalletDisclosureSchema = {
|
|
|
17
17
|
type: 'array',
|
|
18
18
|
items: { type: 'string' },
|
|
19
19
|
},
|
|
20
|
-
type: { type: 'string', enum: ['public', 'linkedin'] },
|
|
21
|
-
feed: { type: 'boolean' },
|
|
20
|
+
type: { type: 'string', enum: ['public', 'linkedin', 'inspection'] },
|
|
22
21
|
createdAt: { type: 'string' },
|
|
23
22
|
updatedAt: { type: 'string' },
|
|
24
23
|
},
|