@ocap/config 1.22.1 → 1.22.3

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/lib/default.js CHANGED
@@ -128,6 +128,7 @@ module.exports = {
128
128
  },
129
129
  vaults: {},
130
130
  accounts: [],
131
+ internalSymbols: ['TBA'],
131
132
  token: {
132
133
  name: 'TestChainToken',
133
134
  decimal: 18,
package/lib/schema.js CHANGED
@@ -70,6 +70,7 @@ const configSchema = Joi.object({
70
70
  })
71
71
  .optional()
72
72
  .default(defaultConfig.token),
73
+ internalSymbols: Joi.array().items(Joi.string()).optional(),
73
74
  }).options({ stripUnknown: true });
74
75
 
75
76
  module.exports = configSchema;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.22.1",
6
+ "version": "1.22.3",
7
7
  "description": "OCAP config parsing/validation and default",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -20,10 +20,10 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "lodash": "^4.17.21",
23
- "@arcblock/did": "1.22.1",
24
- "@arcblock/did-util": "1.22.1",
25
- "@arcblock/validator": "1.22.1",
26
- "@ocap/util": "1.22.1"
23
+ "@arcblock/did": "1.22.3",
24
+ "@arcblock/did-util": "1.22.3",
25
+ "@arcblock/validator": "1.22.3",
26
+ "@ocap/util": "1.22.3"
27
27
  },
28
28
  "scripts": {
29
29
  "lint": "eslint tests lib",