tango-app-api-client 3.6.5-vms.6 → 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 +2 -2
- package/src/dtos/client.dtos.js +4 -1
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tango-app-api-client",
|
|
3
|
-
"version": "3.6.5-vms.
|
|
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
|
|
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"
|
package/src/dtos/client.dtos.js
CHANGED
|
@@ -360,12 +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().
|
|
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(),
|
|
366
368
|
type: joi.string().required(),
|
|
367
369
|
value: joi.number().required(),
|
|
368
370
|
unit: joi.string().required(),
|
|
371
|
+
key: joi.string().required(),
|
|
369
372
|
} ) ).optional(),
|
|
370
373
|
|
|
371
374
|
} );
|