tango-app-api-client 3.6.5-vms.7 → 3.6.5-vms.8

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,11 +1,11 @@
1
1
  {
2
2
  "name": "tango-app-api-client",
3
- "version": "3.6.5-vms.7",
3
+ "version": "3.6.5-vms.8",
4
4
  "description": "client",
5
5
  "main": "index.js",
6
6
  "type": "module",
7
7
  "scripts": {
8
- "start": "nodemon --exec \"eslint --fix . && node index.js\"",
8
+ "start": "nodemon --exec \"eslint --fix . && node app.js\"",
9
9
  "build:patch": "node build.js patch && npm publish",
10
10
  "build:minor": "node build.js minor && npm publish",
11
11
  "build:major": "node build.js major && npm publish"
@@ -360,14 +360,15 @@ export const updateFDConfigBodySchema = joi.object( {
360
360
  tangoReview: joi.string().optional(),
361
361
  revision: joi.array().items( joi.object( {
362
362
  actionType: joi.string().required(),
363
- isChecked: joi.boolean().optional().default(false),
363
+ isChecked: joi.boolean().optional().default( false ),
364
364
  } ) ).optional(),
365
365
  taggingLimitation: joi.array().items( joi.object( {
366
- iconName:joi.string().optional(),
367
- name:joi.string().optional(),
368
- type: joi.string().required(),
366
+ iconName: joi.string().optional(),
367
+ name: joi.string().optional(),
368
+ type: joi.string().required(),
369
369
  value: joi.number().required(),
370
370
  unit: joi.string().required(),
371
+ key: joi.string().required(),
371
372
  } ) ).optional(),
372
373
 
373
374
  } );