diff --git a/json-definitions/v1/enums/activityType.enum.json b/json-definitions/v1/enums/activityType.enum.json index db95e25b..8186dc97 100644 --- a/json-definitions/v1/enums/activityType.enum.json +++ b/json-definitions/v1/enums/activityType.enum.json @@ -8,7 +8,7 @@ ], "enum": [ "visit", - "time", + "wait", "unaccountable time" ] } \ No newline at end of file diff --git a/json-schemas/v1/activity/index.json b/json-schemas/v1/activity/index.json index 3819a55a..78cafa99 100644 --- a/json-schemas/v1/activity/index.json +++ b/json-schemas/v1/activity/index.json @@ -18,7 +18,7 @@ ], "enum": [ "visit", - "time", + "wait", "unaccountable time" ] }, diff --git a/json-schemas/v1/enums/activityType.enum.json b/json-schemas/v1/enums/activityType.enum.json index 78c808ca..0b9e578e 100644 --- a/json-schemas/v1/enums/activityType.enum.json +++ b/json-schemas/v1/enums/activityType.enum.json @@ -8,7 +8,7 @@ ], "enum": [ "visit", - "time", + "wait", "unaccountable time" ] } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index c458a2bc..2ddd65cb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@dvsa/cvs-type-definitions", - "version": "7.0.0", + "version": "7.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@dvsa/cvs-type-definitions", - "version": "7.0.0", + "version": "7.1.0", "license": "ISC", "dependencies": { "ajv": "^8.12.0", diff --git a/package.json b/package.json index acb5b5ef..b6fe4594 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dvsa/cvs-type-definitions", - "version": "7.0.0", + "version": "7.1.0", "description": "type definitions for cvs vta and vtm applications", "main": "index.js", "repository": { diff --git a/types/v1/activity/index.d.ts b/types/v1/activity/index.d.ts index c7067051..90e9f684 100644 --- a/types/v1/activity/index.d.ts +++ b/types/v1/activity/index.d.ts @@ -25,7 +25,7 @@ export interface ActivitySchema { export enum ActivityType { VISIT = "visit", - WAIT = "time", + WAIT = "wait", UNACCOUNTABLE_TIME = "unaccountable time" } export enum TestStationTypes { diff --git a/types/v1/enums/activityType.enum.ts b/types/v1/enums/activityType.enum.ts index 68ad3019..50c3bcce 100644 --- a/types/v1/enums/activityType.enum.ts +++ b/types/v1/enums/activityType.enum.ts @@ -7,6 +7,6 @@ export enum ActivityType { VISIT = "visit", - WAIT = "time", + WAIT = "wait", UNACCOUNTABLE_TIME = "unaccountable time" }