@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.
@@ -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;
@@ -64,6 +64,12 @@ export interface ViolationModel {
64
64
  * @memberof ViolationModel
65
65
  */
66
66
  trafficViolationTypeId?: number;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof ViolationModel
71
+ */
72
+ uniqueId?: string;
67
73
  /**
68
74
  *
69
75
  * @type {string}
@@ -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} */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.113",
3
+ "version": "2.5.114",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"