-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor(cb2-10282): Update types definition for new data structure (#158)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Daniel Searle <[email protected]>
- Loading branch information
1 parent
6d56344
commit 99dcdc1
Showing
9 changed files
with
127 additions
and
94 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
json-definitions/iva/defects/enums/euVehicleCategory.enum.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"title": "EU Vehicle Category", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"M1", | ||
"M2", | ||
"M3", | ||
"N1", | ||
"N2", | ||
"N3", | ||
"O1", | ||
"O2", | ||
"O3", | ||
"O4", | ||
"L1E_A", | ||
"l1E", | ||
"L2e", | ||
"L3E", | ||
"L4E", | ||
"L5E", | ||
"L6E", | ||
"L7E" | ||
], | ||
"enum": [ | ||
"m1", | ||
"m2", | ||
"m3", | ||
"n1", | ||
"n2", | ||
"n3", | ||
"o1", | ||
"o2", | ||
"o3", | ||
"o4", | ||
"l1e-a", | ||
"l1e", | ||
"l2e", | ||
"l3e", | ||
"l4e", | ||
"l5e", | ||
"l6e", | ||
"l7e" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
json-schemas/iva/defects/enums/euVehicleCategory.enum.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"title": "EU Vehicle Category", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"M1", | ||
"M2", | ||
"M3", | ||
"N1", | ||
"N2", | ||
"N3", | ||
"O1", | ||
"O2", | ||
"O3", | ||
"O4", | ||
"L1E_A", | ||
"l1E", | ||
"L2e", | ||
"L3E", | ||
"L4E", | ||
"L5E", | ||
"L6E", | ||
"L7E" | ||
], | ||
"enum": [ | ||
"m1", | ||
"m2", | ||
"m3", | ||
"n1", | ||
"n2", | ||
"n3", | ||
"o1", | ||
"o2", | ||
"o3", | ||
"o4", | ||
"l1e-a", | ||
"l1e", | ||
"l2e", | ||
"l3e", | ||
"l4e", | ||
"l5e", | ||
"l6e", | ||
"l7e" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export enum EUVehicleCategory { | ||
M1 = "m1", | ||
M2 = "m2", | ||
M3 = "m3", | ||
N1 = "n1", | ||
N2 = "n2", | ||
N3 = "n3", | ||
O1 = "o1", | ||
O2 = "o2", | ||
O3 = "o3", | ||
O4 = "o4", | ||
L1E_A = "l1e-a", | ||
l1E = "l1e", | ||
L2e = "l2e", | ||
L3E = "l3e", | ||
L4E = "l4e", | ||
L5E = "l5e", | ||
L6E = "l6e", | ||
L7E = "l7e" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters