@otr-app/shared-backend-generated-client 2.4.50 → 2.4.51

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.
@@ -28,6 +28,7 @@ export interface MatchCitationModel {
28
28
  court?: CourtDomain;
29
29
  documentUrlToConvert?: string;
30
30
  fineAmount?: number;
31
+ hasCitationImage?: boolean;
31
32
  involvesAccident?: boolean;
32
33
  isDeleted?: boolean;
33
34
  regionCode?: string;
@@ -22,6 +22,7 @@ export interface MatchCitationModel {
22
22
  "court"?: models.CourtDomain;
23
23
  "documentUrlToConvert"?: string;
24
24
  "fineAmount"?: number;
25
+ "hasCitationImage"?: boolean;
25
26
  "involvesAccident"?: boolean;
26
27
  "isDeleted"?: boolean;
27
28
  "regionCode"?: string;
@@ -82,6 +82,12 @@ export interface MatchCitationModel {
82
82
  * @memberof MatchCitationModel
83
83
  */
84
84
  fineAmount?: number;
85
+ /**
86
+ *
87
+ * @type {boolean}
88
+ * @memberof MatchCitationModel
89
+ */
90
+ hasCitationImage?: boolean;
85
91
  /**
86
92
  *
87
93
  * @type {boolean}
@@ -32,6 +32,7 @@ export function MatchCitationModelFromJSONTyped(json, ignoreDiscriminator) {
32
32
  'court': !exists(json, 'court') ? undefined : CourtDomainFromJSON(json['court']),
33
33
  'documentUrlToConvert': !exists(json, 'documentUrlToConvert') ? undefined : json['documentUrlToConvert'],
34
34
  'fineAmount': !exists(json, 'fineAmount') ? undefined : json['fineAmount'],
35
+ 'hasCitationImage': !exists(json, 'hasCitationImage') ? undefined : json['hasCitationImage'],
35
36
  'involvesAccident': !exists(json, 'involvesAccident') ? undefined : json['involvesAccident'],
36
37
  'isDeleted': !exists(json, 'isDeleted') ? undefined : json['isDeleted'],
37
38
  'regionCode': !exists(json, 'regionCode') ? undefined : json['regionCode'],
@@ -61,6 +62,7 @@ export function MatchCitationModelToJSON(value) {
61
62
  'court': CourtDomainToJSON(value.court),
62
63
  'documentUrlToConvert': value.documentUrlToConvert,
63
64
  'fineAmount': value.fineAmount,
65
+ 'hasCitationImage': value.hasCitationImage,
64
66
  'involvesAccident': value.involvesAccident,
65
67
  'isDeleted': value.isDeleted,
66
68
  'regionCode': value.regionCode,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.4.50",
3
+ "version": "2.4.51",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"