@otr-app/shared-backend-generated-client 2.5.118 → 2.5.119

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.
@@ -20,6 +20,7 @@ export interface WorkflowViolationModel {
20
20
  penalties?: Array<ViolationPenaltyModel>;
21
21
  trafficViolationDesc?: string;
22
22
  trafficViolationTypeId?: number;
23
+ uniqueId?: string;
23
24
  violationClassification?: WorkflowViolationModel.ViolationClassificationEnum;
24
25
  violationCode?: string;
25
26
  wobblerToCriminal?: boolean;
@@ -18,6 +18,7 @@ export interface WorkflowViolationModel {
18
18
  "penalties"?: Array<models.ViolationPenaltyModel>;
19
19
  "trafficViolationDesc"?: string;
20
20
  "trafficViolationTypeId"?: number;
21
+ "uniqueId"?: string;
21
22
  "violationClassification"?: WorkflowViolationModel.ViolationClassificationEnum;
22
23
  "violationCode"?: string;
23
24
  "wobblerToCriminal"?: boolean;
@@ -58,6 +58,12 @@ export interface WorkflowViolationModel {
58
58
  * @memberof WorkflowViolationModel
59
59
  */
60
60
  trafficViolationTypeId?: number;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof WorkflowViolationModel
65
+ */
66
+ uniqueId?: string;
61
67
  /**
62
68
  *
63
69
  * @type {string}
@@ -28,6 +28,7 @@ export function WorkflowViolationModelFromJSONTyped(json, ignoreDiscriminator) {
28
28
  'penalties': !exists(json, 'penalties') ? undefined : (json['penalties'].map(ViolationPenaltyModelFromJSON)),
29
29
  'trafficViolationDesc': !exists(json, 'trafficViolationDesc') ? undefined : json['trafficViolationDesc'],
30
30
  'trafficViolationTypeId': !exists(json, 'trafficViolationTypeId') ? undefined : json['trafficViolationTypeId'],
31
+ 'uniqueId': !exists(json, 'uniqueId') ? undefined : json['uniqueId'],
31
32
  'violationClassification': !exists(json, 'violationClassification') ? undefined : json['violationClassification'],
32
33
  'violationCode': !exists(json, 'violationCode') ? undefined : json['violationCode'],
33
34
  'wobblerToCriminal': !exists(json, 'wobblerToCriminal') ? undefined : json['wobblerToCriminal'],
@@ -48,6 +49,7 @@ export function WorkflowViolationModelToJSON(value) {
48
49
  'penalties': value.penalties === undefined ? undefined : (value.penalties.map(ViolationPenaltyModelToJSON)),
49
50
  'trafficViolationDesc': value.trafficViolationDesc,
50
51
  'trafficViolationTypeId': value.trafficViolationTypeId,
52
+ 'uniqueId': value.uniqueId,
51
53
  'violationClassification': value.violationClassification,
52
54
  'violationCode': value.violationCode,
53
55
  'wobblerToCriminal': value.wobblerToCriminal,
@@ -16795,6 +16795,7 @@ export interface components {
16795
16795
  trafficViolationDesc?: string;
16796
16796
  /** Format: int64 */
16797
16797
  trafficViolationTypeId?: number;
16798
+ uniqueId?: string;
16798
16799
  /** @enum {string} */
16799
16800
  violationClassification?: PathsApiV1LawfirmsLawfirmIdAccountFeesDeleteParametersQueryClassification;
16800
16801
  violationCode?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.118",
3
+ "version": "2.5.119",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"