Skip to content

Commit

Permalink
minor(cb2-12689): update activityType enum (#175)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
LGin-BJSS and github-actions[bot] authored Jul 1, 2024
1 parent f4f6334 commit e5c7210
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion json-definitions/v1/enums/activityType.enum.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"enum": [
"visit",
"time",
"wait",
"unaccountable time"
]
}
2 changes: 1 addition & 1 deletion json-schemas/v1/activity/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"enum": [
"visit",
"time",
"wait",
"unaccountable time"
]
},
Expand Down
2 changes: 1 addition & 1 deletion json-schemas/v1/enums/activityType.enum.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"enum": [
"visit",
"time",
"wait",
"unaccountable time"
]
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion types/v1/activity/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface ActivitySchema {

export enum ActivityType {
VISIT = "visit",
WAIT = "time",
WAIT = "wait",
UNACCOUNTABLE_TIME = "unaccountable time"
}
export enum TestStationTypes {
Expand Down
2 changes: 1 addition & 1 deletion types/v1/enums/activityType.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

export enum ActivityType {
VISIT = "visit",
WAIT = "time",
WAIT = "wait",
UNACCOUNTABLE_TIME = "unaccountable time"
}

0 comments on commit e5c7210

Please sign in to comment.