@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.
- package/dist/angular/model/courtEntity.ts +1 -0
- package/dist/typescript/model/CourtEntity.d.ts +1 -0
- package/dist/typescript-fetch/models/CourtEntity.d.ts +6 -0
- package/dist/typescript-fetch/models/CourtEntity.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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 */
|