@velocitycareerlabs/server-webwallet 1.27.0-dev-build.1a835204a → 1.27.0-dev-build.1b0c27080

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.1a835204a",
3
+ "version": "1.27.0-dev-build.1b0c27080",
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.1a835204a",
37
+ "@velocitycareerlabs/migrations": "1.27.0-dev-build.1b0c27080",
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": "32339d85f95a7c018392e46b3bf27a2c62600076"
77
+ "gitHead": "992c088b9adbfe2f7f0c3717edc5c24d754814f6"
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
  },