@ocap/config 1.23.1 → 1.24.0

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
@@ -137,7 +137,7 @@ module.exports = {
137
137
  },
138
138
  vaults: {},
139
139
  accounts: [],
140
- internalSymbols: ['TBA'],
140
+ reservedSymbols: ['TBA'],
141
141
  token: {
142
142
  name: 'TestChainToken',
143
143
  decimal: 18,
package/lib/schema.js CHANGED
@@ -70,7 +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
+ reservedSymbols: Joi.array().items(Joi.string()).optional(),
74
74
  }).options({ stripUnknown: true });
75
75
 
76
76
  module.exports = configSchema;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.23.1",
6
+ "version": "1.24.0",
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.23.1",
24
- "@arcblock/validator": "1.23.1",
25
- "@ocap/util": "1.23.1",
26
- "@arcblock/did-util": "1.23.1"
23
+ "@arcblock/did": "1.24.0",
24
+ "@arcblock/did-util": "1.24.0",
25
+ "@arcblock/validator": "1.24.0",
26
+ "@ocap/util": "1.24.0"
27
27
  },
28
28
  "scripts": {
29
29
  "lint": "eslint tests lib",