@otr-app/shared-backend-generated-client 2.5.127 → 2.5.128

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.
@@ -22,6 +22,7 @@ export interface CourtEntity {
22
22
  courtNameAdditional?: string;
23
23
  courtType?: CourtEntity.CourtTypeEnum;
24
24
  lookupCaseInfoLink?: string;
25
+ offenseCategoryId?: number;
25
26
  otrTargetFee?: number;
26
27
  similarityScore?: number;
27
28
  website?: string;
@@ -19,6 +19,7 @@ export interface CourtEntity {
19
19
  "courtNameAdditional"?: string;
20
20
  "courtType"?: CourtEntity.CourtTypeEnum;
21
21
  "lookupCaseInfoLink"?: string;
22
+ "offenseCategoryId"?: number;
22
23
  "otrTargetFee"?: number;
23
24
  "similarityScore"?: number;
24
25
  "website"?: string;
@@ -64,6 +64,12 @@ export interface CourtEntity {
64
64
  * @memberof CourtEntity
65
65
  */
66
66
  lookupCaseInfoLink?: string;
67
+ /**
68
+ *
69
+ * @type {number}
70
+ * @memberof CourtEntity
71
+ */
72
+ offenseCategoryId?: number;
67
73
  /**
68
74
  *
69
75
  * @type {number}
@@ -29,6 +29,7 @@ export function CourtEntityFromJSONTyped(json, ignoreDiscriminator) {
29
29
  'courtNameAdditional': !exists(json, 'courtNameAdditional') ? undefined : json['courtNameAdditional'],
30
30
  'courtType': !exists(json, 'courtType') ? undefined : json['courtType'],
31
31
  'lookupCaseInfoLink': !exists(json, 'lookupCaseInfoLink') ? undefined : json['lookupCaseInfoLink'],
32
+ 'offenseCategoryId': !exists(json, 'offenseCategoryId') ? undefined : json['offenseCategoryId'],
32
33
  'otrTargetFee': !exists(json, 'otrTargetFee') ? undefined : json['otrTargetFee'],
33
34
  'similarityScore': !exists(json, 'similarityScore') ? undefined : json['similarityScore'],
34
35
  'website': !exists(json, 'website') ? undefined : json['website'],
@@ -50,6 +51,7 @@ export function CourtEntityToJSON(value) {
50
51
  'courtNameAdditional': value.courtNameAdditional,
51
52
  'courtType': value.courtType,
52
53
  'lookupCaseInfoLink': value.lookupCaseInfoLink,
54
+ 'offenseCategoryId': value.offenseCategoryId,
53
55
  'otrTargetFee': value.otrTargetFee,
54
56
  'similarityScore': value.similarityScore,
55
57
  'website': value.website,
@@ -9496,6 +9496,8 @@ export interface components {
9496
9496
  /** @enum {string} */
9497
9497
  courtType?: AddInnerCourtCourtType;
9498
9498
  lookupCaseInfoLink?: string;
9499
+ /** Format: int64 */
9500
+ offenseCategoryId?: number;
9499
9501
  /** Format: int32 */
9500
9502
  otrTargetFee?: number;
9501
9503
  /** Format: double */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.127",
3
+ "version": "2.5.128",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"