@dvsa/cvs-type-definitions 7.5.1 → 7.6.1

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.
@@ -908,6 +908,31 @@
908
908
  "type": "string",
909
909
  "maxLength": 50
910
910
  },
911
+ "techRecord_manufactureMonth": {
912
+ "anyOf": [
913
+ {
914
+ "title": "Months",
915
+ "type": "string",
916
+ "enum": [
917
+ "January",
918
+ "February",
919
+ "March",
920
+ "April",
921
+ "May",
922
+ "June",
923
+ "July",
924
+ "August",
925
+ "September",
926
+ "October",
927
+ "November",
928
+ "December"
929
+ ]
930
+ },
931
+ {
932
+ "type": "null"
933
+ }
934
+ ]
935
+ },
911
936
  "techRecord_manufactureYear": {
912
937
  "anyOf": [
913
938
  {
@@ -949,6 +949,31 @@
949
949
  ],
950
950
  "maxLength": 50
951
951
  },
952
+ "techRecord_manufactureMonth": {
953
+ "anyOf": [
954
+ {
955
+ "title": "Months",
956
+ "type": "string",
957
+ "enum": [
958
+ "January",
959
+ "February",
960
+ "March",
961
+ "April",
962
+ "May",
963
+ "June",
964
+ "July",
965
+ "August",
966
+ "September",
967
+ "October",
968
+ "November",
969
+ "December"
970
+ ]
971
+ },
972
+ {
973
+ "type": "null"
974
+ }
975
+ ]
976
+ },
952
977
  "techRecord_manufactureYear": {
953
978
  "anyOf": [
954
979
  {
@@ -945,6 +945,31 @@
945
945
  ],
946
946
  "maxLength": 50
947
947
  },
948
+ "techRecord_manufactureMonth": {
949
+ "anyOf": [
950
+ {
951
+ "title": "Months",
952
+ "type": "string",
953
+ "enum": [
954
+ "January",
955
+ "February",
956
+ "March",
957
+ "April",
958
+ "May",
959
+ "June",
960
+ "July",
961
+ "August",
962
+ "September",
963
+ "October",
964
+ "November",
965
+ "December"
966
+ ]
967
+ },
968
+ {
969
+ "type": "null"
970
+ }
971
+ ]
972
+ },
948
973
  "techRecord_manufactureYear": {
949
974
  "anyOf": [
950
975
  {
@@ -888,6 +888,31 @@
888
888
  "type": "string",
889
889
  "maxLength": 50
890
890
  },
891
+ "techRecord_manufactureMonth": {
892
+ "anyOf": [
893
+ {
894
+ "title": "Months",
895
+ "type": "string",
896
+ "enum": [
897
+ "January",
898
+ "February",
899
+ "March",
900
+ "April",
901
+ "May",
902
+ "June",
903
+ "July",
904
+ "August",
905
+ "September",
906
+ "October",
907
+ "November",
908
+ "December"
909
+ ]
910
+ },
911
+ {
912
+ "type": "null"
913
+ }
914
+ ]
915
+ },
891
916
  "techRecord_manufactureYear": {
892
917
  "anyOf": [
893
918
  {
@@ -923,6 +923,31 @@
923
923
  ],
924
924
  "maxLength": 50
925
925
  },
926
+ "techRecord_manufactureMonth": {
927
+ "anyOf": [
928
+ {
929
+ "title": "Months",
930
+ "type": "string",
931
+ "enum": [
932
+ "January",
933
+ "February",
934
+ "March",
935
+ "April",
936
+ "May",
937
+ "June",
938
+ "July",
939
+ "August",
940
+ "September",
941
+ "October",
942
+ "November",
943
+ "December"
944
+ ]
945
+ },
946
+ {
947
+ "type": "null"
948
+ }
949
+ ]
950
+ },
926
951
  "techRecord_manufactureYear": {
927
952
  "anyOf": [
928
953
  {
@@ -925,6 +925,31 @@
925
925
  ],
926
926
  "maxLength": 50
927
927
  },
928
+ "techRecord_manufactureMonth": {
929
+ "anyOf": [
930
+ {
931
+ "title": "Months",
932
+ "type": "string",
933
+ "enum": [
934
+ "January",
935
+ "February",
936
+ "March",
937
+ "April",
938
+ "May",
939
+ "June",
940
+ "July",
941
+ "August",
942
+ "September",
943
+ "October",
944
+ "November",
945
+ "December"
946
+ ]
947
+ },
948
+ {
949
+ "type": "null"
950
+ }
951
+ ]
952
+ },
928
953
  "techRecord_manufactureYear": {
929
954
  "anyOf": [
930
955
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-type-definitions",
3
- "version": "7.5.1",
3
+ "version": "7.6.1",
4
4
  "description": "type definitions for cvs vta and vtm applications",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -279,6 +279,9 @@ export interface TestResultSchema {
279
279
  model?: string | null;
280
280
  bodyType?: BodyTypeSchema;
281
281
  vehicleId?: string | null;
282
+ testHistory?: TestResultSchema[];
283
+ testVersion?: string;
284
+ deletionFlag?: boolean;
282
285
  }
283
286
  export interface TestTypeSchema {
284
287
  testTypeName: string | null;
@@ -58,6 +58,9 @@ export interface TestResultSchema {
58
58
  model?: string | null;
59
59
  bodyType?: BodyTypeSchema;
60
60
  vehicleId?: string | null;
61
+ testHistory?: TestResultSchema[];
62
+ testVersion?: string;
63
+ deletionFlag?: boolean;
61
64
  }
62
65
  export interface VehicleClassSchema {
63
66
  code: string;
@@ -271,6 +271,9 @@ export interface TestResultSchema {
271
271
  model?: string | null;
272
272
  bodyType?: BodyTypeSchema;
273
273
  vehicleId?: string | null;
274
+ testHistory?: TestResultSchema[];
275
+ testVersion?: string;
276
+ deletionFlag?: boolean;
274
277
  }
275
278
  export interface TestTypeSchema {
276
279
  testTypeName: string | null;
@@ -292,6 +292,9 @@ export interface TestResultSchema {
292
292
  model?: string | null;
293
293
  bodyType?: BodyTypeSchema;
294
294
  vehicleId?: string | null;
295
+ testHistory?: TestResultSchema[];
296
+ testVersion?: string;
297
+ deletionFlag?: boolean;
295
298
  }
296
299
  export interface TestTypeSchema {
297
300
  testTypeName: string | null;
@@ -18,6 +18,19 @@ export type FrameDescription =
18
18
  | "U section";
19
19
  export type LetterTypes = "trailer acceptance" | "trailer rejection";
20
20
  export type ParagraphIds = 3 | 4 | 5 | 6 | 7;
21
+ export type Months =
22
+ | "January"
23
+ | "February"
24
+ | "March"
25
+ | "April"
26
+ | "May"
27
+ | "June"
28
+ | "July"
29
+ | "August"
30
+ | "September"
31
+ | "October"
32
+ | "November"
33
+ | "December";
21
34
  export type MicrofilmDocumentType =
22
35
  | "PSV Miscellaneous"
23
36
  | "AAT - Trailer Annual Test"
@@ -194,6 +207,7 @@ export interface TechRecordGETTRLComplete {
194
207
  techRecord_letterOfAuth_paragraphId?: null | ParagraphIds;
195
208
  techRecord_letterOfAuth_letterIssuer?: string | null;
196
209
  techRecord_make: string;
210
+ techRecord_manufactureMonth?: Months | null;
197
211
  techRecord_manufactureYear?: number | null;
198
212
  techRecord_manufacturerDetails?: string | null;
199
213
  techRecord_maxLoadOnCoupling: number;
@@ -18,6 +18,19 @@ export type FrameDescription =
18
18
  | "U section";
19
19
  export type LetterTypes = "trailer acceptance" | "trailer rejection";
20
20
  export type ParagraphIds = 3 | 4 | 5 | 6 | 7;
21
+ export type Months =
22
+ | "January"
23
+ | "February"
24
+ | "March"
25
+ | "April"
26
+ | "May"
27
+ | "June"
28
+ | "July"
29
+ | "August"
30
+ | "September"
31
+ | "October"
32
+ | "November"
33
+ | "December";
21
34
  export type MicrofilmDocumentType =
22
35
  | "PSV Miscellaneous"
23
36
  | "AAT - Trailer Annual Test"
@@ -197,6 +210,7 @@ export interface TechRecordGETTRLSkeleton {
197
210
  techRecord_letterOfAuth_paragraphId?: null | ParagraphIds;
198
211
  techRecord_letterOfAuth_letterIssuer?: string | null;
199
212
  techRecord_make?: string | null;
213
+ techRecord_manufactureMonth?: Months | null;
200
214
  techRecord_manufactureYear?: number | null;
201
215
  techRecord_manufacturerDetails?: string | null;
202
216
  techRecord_maxLoadOnCoupling?: number | null;
@@ -18,6 +18,19 @@ export type FrameDescription =
18
18
  | "U section";
19
19
  export type LetterTypes = "trailer acceptance" | "trailer rejection";
20
20
  export type ParagraphIds = 3 | 4 | 5 | 6 | 7;
21
+ export type Months =
22
+ | "January"
23
+ | "February"
24
+ | "March"
25
+ | "April"
26
+ | "May"
27
+ | "June"
28
+ | "July"
29
+ | "August"
30
+ | "September"
31
+ | "October"
32
+ | "November"
33
+ | "December";
21
34
  export type MicrofilmDocumentType =
22
35
  | "PSV Miscellaneous"
23
36
  | "AAT - Trailer Annual Test"
@@ -197,6 +210,7 @@ export interface TechRecordGETTRLTestable {
197
210
  techRecord_letterOfAuth_paragraphId?: null | ParagraphIds;
198
211
  techRecord_letterOfAuth_letterIssuer?: string | null;
199
212
  techRecord_make?: string | null;
213
+ techRecord_manufactureMonth?: Months | null;
200
214
  techRecord_manufactureYear?: number | null;
201
215
  techRecord_manufacturerDetails?: string | null;
202
216
  techRecord_maxLoadOnCoupling?: number | null;
@@ -18,6 +18,19 @@ export type FrameDescription =
18
18
  | "U section";
19
19
  export type LetterTypes = "trailer acceptance" | "trailer rejection";
20
20
  export type ParagraphIds = 3 | 4 | 5 | 6 | 7;
21
+ export type Months =
22
+ | "January"
23
+ | "February"
24
+ | "March"
25
+ | "April"
26
+ | "May"
27
+ | "June"
28
+ | "July"
29
+ | "August"
30
+ | "September"
31
+ | "October"
32
+ | "November"
33
+ | "December";
21
34
  export type MicrofilmDocumentType =
22
35
  | "PSV Miscellaneous"
23
36
  | "AAT - Trailer Annual Test"
@@ -189,6 +202,7 @@ export interface TechRecordPUTTRLComplete {
189
202
  techRecord_letterOfAuth_paragraphId?: null | ParagraphIds;
190
203
  techRecord_letterOfAuth_letterIssuer?: string | null;
191
204
  techRecord_make: string;
205
+ techRecord_manufactureMonth?: Months | null;
192
206
  techRecord_manufactureYear?: number | null;
193
207
  techRecord_manufacturerDetails?: string | null;
194
208
  techRecord_maxLoadOnCoupling: number;
@@ -18,6 +18,19 @@ export type FrameDescription =
18
18
  | "U section";
19
19
  export type LetterTypes = "trailer acceptance" | "trailer rejection";
20
20
  export type ParagraphIds = 3 | 4 | 5 | 6 | 7;
21
+ export type Months =
22
+ | "January"
23
+ | "February"
24
+ | "March"
25
+ | "April"
26
+ | "May"
27
+ | "June"
28
+ | "July"
29
+ | "August"
30
+ | "September"
31
+ | "October"
32
+ | "November"
33
+ | "December";
21
34
  export type MicrofilmDocumentType =
22
35
  | "PSV Miscellaneous"
23
36
  | "AAT - Trailer Annual Test"
@@ -192,6 +205,7 @@ export interface TechRecordPUTTRLSkeleton {
192
205
  techRecord_letterOfAuth_paragraphId?: null | ParagraphIds;
193
206
  techRecord_letterOfAuth_letterIssuer?: string | null;
194
207
  techRecord_make?: string | null;
208
+ techRecord_manufactureMonth?: Months | null;
195
209
  techRecord_manufactureYear?: number | null;
196
210
  techRecord_manufacturerDetails?: string | null;
197
211
  techRecord_maxLoadOnCoupling?: number | null;
@@ -18,6 +18,19 @@ export type FrameDescription =
18
18
  | "U section";
19
19
  export type LetterTypes = "trailer acceptance" | "trailer rejection";
20
20
  export type ParagraphIds = 3 | 4 | 5 | 6 | 7;
21
+ export type Months =
22
+ | "January"
23
+ | "February"
24
+ | "March"
25
+ | "April"
26
+ | "May"
27
+ | "June"
28
+ | "July"
29
+ | "August"
30
+ | "September"
31
+ | "October"
32
+ | "November"
33
+ | "December";
21
34
  export type MicrofilmDocumentType =
22
35
  | "PSV Miscellaneous"
23
36
  | "AAT - Trailer Annual Test"
@@ -192,6 +205,7 @@ export interface TechRecordPUTTRLTestable {
192
205
  techRecord_letterOfAuth_paragraphId?: null | ParagraphIds;
193
206
  techRecord_letterOfAuth_letterIssuer?: string | null;
194
207
  techRecord_make?: string | null;
208
+ techRecord_manufactureMonth?: Months | null;
195
209
  techRecord_manufactureYear?: number | null;
196
210
  techRecord_manufacturerDetails?: string | null;
197
211
  techRecord_maxLoadOnCoupling?: number | null;