@otr-app/shared-backend-generated-client 2.5.113 → 2.5.114
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/dist/angular/model/violationModel.ts +1 -0
- package/dist/typescript/model/ViolationModel.d.ts +1 -0
- package/dist/typescript-fetch/models/ViolationModel.d.ts +6 -0
- package/dist/typescript-fetch/models/ViolationModel.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +2 -0
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ export interface ViolationModel {
|
|
|
21
21
|
penalties?: Array<ViolationPenaltyModel>;
|
|
22
22
|
trafficViolationDesc?: string;
|
|
23
23
|
trafficViolationTypeId?: number;
|
|
24
|
+
uniqueId?: string;
|
|
24
25
|
userFriendlyName?: string;
|
|
25
26
|
userFriendlyShortForm?: string;
|
|
26
27
|
violationClassification?: ViolationModel.ViolationClassificationEnum;
|
|
@@ -19,6 +19,7 @@ export interface ViolationModel {
|
|
|
19
19
|
"penalties"?: Array<models.ViolationPenaltyModel>;
|
|
20
20
|
"trafficViolationDesc"?: string;
|
|
21
21
|
"trafficViolationTypeId"?: number;
|
|
22
|
+
"uniqueId"?: string;
|
|
22
23
|
"userFriendlyName"?: string;
|
|
23
24
|
"userFriendlyShortForm"?: string;
|
|
24
25
|
"violationClassification"?: ViolationModel.ViolationClassificationEnum;
|
|
@@ -29,6 +29,7 @@ export function ViolationModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
29
29
|
'penalties': !exists(json, 'penalties') ? undefined : (json['penalties'].map(ViolationPenaltyModelFromJSON)),
|
|
30
30
|
'trafficViolationDesc': !exists(json, 'trafficViolationDesc') ? undefined : json['trafficViolationDesc'],
|
|
31
31
|
'trafficViolationTypeId': !exists(json, 'trafficViolationTypeId') ? undefined : json['trafficViolationTypeId'],
|
|
32
|
+
'uniqueId': !exists(json, 'uniqueId') ? undefined : json['uniqueId'],
|
|
32
33
|
'userFriendlyName': !exists(json, 'userFriendlyName') ? undefined : json['userFriendlyName'],
|
|
33
34
|
'userFriendlyShortForm': !exists(json, 'userFriendlyShortForm') ? undefined : json['userFriendlyShortForm'],
|
|
34
35
|
'violationClassification': !exists(json, 'violationClassification') ? undefined : json['violationClassification'],
|
|
@@ -51,6 +52,7 @@ export function ViolationModelToJSON(value) {
|
|
|
51
52
|
'penalties': value.penalties === undefined ? undefined : (value.penalties.map(ViolationPenaltyModelToJSON)),
|
|
52
53
|
'trafficViolationDesc': value.trafficViolationDesc,
|
|
53
54
|
'trafficViolationTypeId': value.trafficViolationTypeId,
|
|
55
|
+
'uniqueId': value.uniqueId,
|
|
54
56
|
'userFriendlyName': value.userFriendlyName,
|
|
55
57
|
'userFriendlyShortForm': value.userFriendlyShortForm,
|
|
56
58
|
'violationClassification': value.violationClassification,
|
|
@@ -16632,6 +16632,8 @@ export interface components {
|
|
|
16632
16632
|
trafficViolationDesc?: string;
|
|
16633
16633
|
/** Format: int64 */
|
|
16634
16634
|
trafficViolationTypeId?: number;
|
|
16635
|
+
/** Format: uuid */
|
|
16636
|
+
uniqueId?: string;
|
|
16635
16637
|
userFriendlyName?: string;
|
|
16636
16638
|
userFriendlyShortForm?: string;
|
|
16637
16639
|
/** @enum {string} */
|