@otr-app/shared-backend-generated-client 2.5.136 → 2.5.137

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.
@@ -244,6 +244,7 @@ model/caseUserDefendantAttributes.ts
244
244
  model/caseUserDefendantAttributesRequest.ts
245
245
  model/caseUserDetailsModel.ts
246
246
  model/caseUserPermissionAttributes.ts
247
+ model/caseViolationDto.ts
247
248
  model/caseViolationPenalty.ts
248
249
  model/caseWithCoverageObtained.ts
249
250
  model/changeUserPasswordRequest.ts
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import { CaseStatusDomain } from './caseStatusDomain';
13
13
  import { PureDate } from './pureDate';
14
+ import { CaseViolationDto } from './caseViolationDto';
14
15
 
15
16
 
16
17
  export interface CaseSummaryDomain {
@@ -22,16 +23,21 @@ export interface CaseSummaryDomain {
22
23
  citationIssueDate?: PureDate;
23
24
  citationIssueDateUTC?: string;
24
25
  countyName?: string;
26
+ courtCity?: string;
25
27
  courtDate?: string;
26
28
  courtName?: string;
29
+ courtRegionCode?: string;
27
30
  firstName?: string;
31
+ hasCdl?: boolean;
28
32
  involvesAccident?: boolean;
29
33
  lastName?: string;
34
+ lawfirmReceiptDateUtc?: string;
30
35
  legalFeeInCents?: number;
31
36
  resolutionDateUtc?: string;
32
37
  ticketImageUrl?: string;
33
38
  userId?: number;
34
39
  violationCount?: number;
40
+ violations?: Array<CaseViolationDto>;
35
41
  }
36
42
  export namespace CaseSummaryDomain {
37
43
  export type CaseDecisionStatusEnum = 'ACCEPTED' | 'CREATED' | 'DECLINED' | 'EXPIRED' | 'PENDING' | 'REMATCHED' | 'REMATCHED_REFERRAL';
@@ -0,0 +1,83 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+
14
+ export interface CaseViolationDto {
15
+ isCriminal?: boolean;
16
+ isMoving?: boolean;
17
+ userFriendlyName?: string;
18
+ violationClassification?: CaseViolationDto.ViolationClassificationEnum;
19
+ }
20
+ export namespace CaseViolationDto {
21
+ export type ViolationClassificationEnum = 'CLASS_1_FELONY' | 'CLASS_1_MISDEMEANOR' | 'CLASS_2_FELONY' | 'CLASS_2_MISDEMEANOR' | 'CLASS_3_FELONY' | 'CLASS_3_MISDEMEANOR' | 'CLASS_4_FELONY' | 'CLASS_4_MISDEMEANOR' | 'CLASS_5_FELONY' | 'CLASS_6_FELONY' | 'CLASS_A1_MISDEMEANOR' | 'CLASS_A_FELONY' | 'CLASS_A_INFRACTION' | 'CLASS_A_MISDEMEANOR' | 'CLASS_A_VIOLATION' | 'CLASS_B_FELONY' | 'CLASS_B_INFRACTION' | 'CLASS_B_MISDEMEANOR' | 'CLASS_B_VIOLATION' | 'CLASS_C_FELONY' | 'CLASS_C_INFRACTION' | 'CLASS_C_MISDEMEANOR' | 'CLASS_C_VIOLATION' | 'CLASS_D_FELONY' | 'CLASS_D_MISDEMEANOR' | 'CLASS_D_VIOLATION' | 'CLASS_E_FELONY' | 'CLASS_F_FELONY' | 'CLASS_H_FELONY' | 'DISORDERLY_PERSONS_OFFENSE' | 'FELONY' | 'FELONY_1ST_DEGREE' | 'FELONY_2ND_DEGREE' | 'FELONY_3RD_DEGREE' | 'FELONY_4TH_DEGREE' | 'FELONY_5TH_DEGREE' | 'GROSS_MISDEMEANOR' | 'HIGH_AND_AGGRAVATED_MISDEMEANOR' | 'INFRACTION' | 'LEVEL_4_FELONY' | 'LEVEL_5_FELONY' | 'LEVEL_6_FELONY' | 'MINOR_MISDEMEANOR' | 'MISDEMEANOR' | 'MISDEMEANOR_1ST_DEGREE' | 'MISDEMEANOR_2ND_DEGREE' | 'MISDEMEANOR_3RD_DEGREE' | 'MISDEMEANOR_4TH_DEGREE' | 'MISDEMEANOR_WITH_REFUND' | 'NON_MOVING' | 'NON_REPORTABLE' | 'PETTY_MISDEMEANOR' | 'QUASI_CRIMINAL' | 'SUMMARY_OFFENSE' | 'SUMMARY_OFFENSE_NO_REFUND' | 'WOBBLER_TO_FELONY' | 'WOBBLER_TO_MISDEMEANOR';
22
+ export const ViolationClassificationEnum = {
23
+ Class1Felony: 'CLASS_1_FELONY' as ViolationClassificationEnum,
24
+ Class1Misdemeanor: 'CLASS_1_MISDEMEANOR' as ViolationClassificationEnum,
25
+ Class2Felony: 'CLASS_2_FELONY' as ViolationClassificationEnum,
26
+ Class2Misdemeanor: 'CLASS_2_MISDEMEANOR' as ViolationClassificationEnum,
27
+ Class3Felony: 'CLASS_3_FELONY' as ViolationClassificationEnum,
28
+ Class3Misdemeanor: 'CLASS_3_MISDEMEANOR' as ViolationClassificationEnum,
29
+ Class4Felony: 'CLASS_4_FELONY' as ViolationClassificationEnum,
30
+ Class4Misdemeanor: 'CLASS_4_MISDEMEANOR' as ViolationClassificationEnum,
31
+ Class5Felony: 'CLASS_5_FELONY' as ViolationClassificationEnum,
32
+ Class6Felony: 'CLASS_6_FELONY' as ViolationClassificationEnum,
33
+ ClassA1Misdemeanor: 'CLASS_A1_MISDEMEANOR' as ViolationClassificationEnum,
34
+ ClassAFelony: 'CLASS_A_FELONY' as ViolationClassificationEnum,
35
+ ClassAInfraction: 'CLASS_A_INFRACTION' as ViolationClassificationEnum,
36
+ ClassAMisdemeanor: 'CLASS_A_MISDEMEANOR' as ViolationClassificationEnum,
37
+ ClassAViolation: 'CLASS_A_VIOLATION' as ViolationClassificationEnum,
38
+ ClassBFelony: 'CLASS_B_FELONY' as ViolationClassificationEnum,
39
+ ClassBInfraction: 'CLASS_B_INFRACTION' as ViolationClassificationEnum,
40
+ ClassBMisdemeanor: 'CLASS_B_MISDEMEANOR' as ViolationClassificationEnum,
41
+ ClassBViolation: 'CLASS_B_VIOLATION' as ViolationClassificationEnum,
42
+ ClassCFelony: 'CLASS_C_FELONY' as ViolationClassificationEnum,
43
+ ClassCInfraction: 'CLASS_C_INFRACTION' as ViolationClassificationEnum,
44
+ ClassCMisdemeanor: 'CLASS_C_MISDEMEANOR' as ViolationClassificationEnum,
45
+ ClassCViolation: 'CLASS_C_VIOLATION' as ViolationClassificationEnum,
46
+ ClassDFelony: 'CLASS_D_FELONY' as ViolationClassificationEnum,
47
+ ClassDMisdemeanor: 'CLASS_D_MISDEMEANOR' as ViolationClassificationEnum,
48
+ ClassDViolation: 'CLASS_D_VIOLATION' as ViolationClassificationEnum,
49
+ ClassEFelony: 'CLASS_E_FELONY' as ViolationClassificationEnum,
50
+ ClassFFelony: 'CLASS_F_FELONY' as ViolationClassificationEnum,
51
+ ClassHFelony: 'CLASS_H_FELONY' as ViolationClassificationEnum,
52
+ DisorderlyPersonsOffense: 'DISORDERLY_PERSONS_OFFENSE' as ViolationClassificationEnum,
53
+ Felony: 'FELONY' as ViolationClassificationEnum,
54
+ Felony1StDegree: 'FELONY_1ST_DEGREE' as ViolationClassificationEnum,
55
+ Felony2NdDegree: 'FELONY_2ND_DEGREE' as ViolationClassificationEnum,
56
+ Felony3RdDegree: 'FELONY_3RD_DEGREE' as ViolationClassificationEnum,
57
+ Felony4ThDegree: 'FELONY_4TH_DEGREE' as ViolationClassificationEnum,
58
+ Felony5ThDegree: 'FELONY_5TH_DEGREE' as ViolationClassificationEnum,
59
+ GrossMisdemeanor: 'GROSS_MISDEMEANOR' as ViolationClassificationEnum,
60
+ HighAndAggravatedMisdemeanor: 'HIGH_AND_AGGRAVATED_MISDEMEANOR' as ViolationClassificationEnum,
61
+ Infraction: 'INFRACTION' as ViolationClassificationEnum,
62
+ Level4Felony: 'LEVEL_4_FELONY' as ViolationClassificationEnum,
63
+ Level5Felony: 'LEVEL_5_FELONY' as ViolationClassificationEnum,
64
+ Level6Felony: 'LEVEL_6_FELONY' as ViolationClassificationEnum,
65
+ MinorMisdemeanor: 'MINOR_MISDEMEANOR' as ViolationClassificationEnum,
66
+ Misdemeanor: 'MISDEMEANOR' as ViolationClassificationEnum,
67
+ Misdemeanor1StDegree: 'MISDEMEANOR_1ST_DEGREE' as ViolationClassificationEnum,
68
+ Misdemeanor2NdDegree: 'MISDEMEANOR_2ND_DEGREE' as ViolationClassificationEnum,
69
+ Misdemeanor3RdDegree: 'MISDEMEANOR_3RD_DEGREE' as ViolationClassificationEnum,
70
+ Misdemeanor4ThDegree: 'MISDEMEANOR_4TH_DEGREE' as ViolationClassificationEnum,
71
+ MisdemeanorWithRefund: 'MISDEMEANOR_WITH_REFUND' as ViolationClassificationEnum,
72
+ NonMoving: 'NON_MOVING' as ViolationClassificationEnum,
73
+ NonReportable: 'NON_REPORTABLE' as ViolationClassificationEnum,
74
+ PettyMisdemeanor: 'PETTY_MISDEMEANOR' as ViolationClassificationEnum,
75
+ QuasiCriminal: 'QUASI_CRIMINAL' as ViolationClassificationEnum,
76
+ SummaryOffense: 'SUMMARY_OFFENSE' as ViolationClassificationEnum,
77
+ SummaryOffenseNoRefund: 'SUMMARY_OFFENSE_NO_REFUND' as ViolationClassificationEnum,
78
+ WobblerToFelony: 'WOBBLER_TO_FELONY' as ViolationClassificationEnum,
79
+ WobblerToMisdemeanor: 'WOBBLER_TO_MISDEMEANOR' as ViolationClassificationEnum
80
+ };
81
+ }
82
+
83
+
@@ -16,10 +16,13 @@ export interface GetLawfirmSummaryCasesResponse {
16
16
  activeCasesCount?: number;
17
17
  bookedCasesCount?: number;
18
18
  cases?: Array<CaseSummaryDomain>;
19
+ medianPendingTimeSeconds?: number;
20
+ nationwideMedianPendingTimeSeconds?: number;
19
21
  numMatchingCases?: number;
20
22
  pastDueCasesCount?: number;
21
23
  paymentPlanCasesCount?: number;
22
24
  pendingCasesCount?: number;
23
25
  percentCasesWithPaymentPlan?: number;
26
+ stateMedianPendingTimeSeconds?: number;
24
27
  }
25
28
 
@@ -120,6 +120,7 @@ export * from './caseUserDefendantAttributes';
120
120
  export * from './caseUserDefendantAttributesRequest';
121
121
  export * from './caseUserDetailsModel';
122
122
  export * from './caseUserPermissionAttributes';
123
+ export * from './caseViolationDto';
123
124
  export * from './caseViolationPenalty';
124
125
  export * from './caseWithCoverageObtained';
125
126
  export * from './changeUserPasswordRequest';
@@ -19,16 +19,21 @@ export interface CaseSummaryDomain {
19
19
  "citationIssueDate"?: models.PureDate;
20
20
  "citationIssueDateUTC"?: string;
21
21
  "countyName"?: string;
22
+ "courtCity"?: string;
22
23
  "courtDate"?: string;
23
24
  "courtName"?: string;
25
+ "courtRegionCode"?: string;
24
26
  "firstName"?: string;
27
+ "hasCdl"?: boolean;
25
28
  "involvesAccident"?: boolean;
26
29
  "lastName"?: string;
30
+ "lawfirmReceiptDateUtc"?: string;
27
31
  "legalFeeInCents"?: number;
28
32
  "resolutionDateUtc"?: string;
29
33
  "ticketImageUrl"?: string;
30
34
  "userId"?: number;
31
35
  "violationCount"?: number;
36
+ "violations"?: Array<models.CaseViolationDto>;
32
37
  }
33
38
  export declare namespace CaseSummaryDomain {
34
39
  enum CaseDecisionStatusEnum {
@@ -0,0 +1,78 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface CaseViolationDto {
13
+ "isCriminal"?: boolean;
14
+ "isMoving"?: boolean;
15
+ "userFriendlyName"?: string;
16
+ "violationClassification"?: CaseViolationDto.ViolationClassificationEnum;
17
+ }
18
+ export declare namespace CaseViolationDto {
19
+ enum ViolationClassificationEnum {
20
+ CLASS1FELONY,
21
+ CLASS1MISDEMEANOR,
22
+ CLASS2FELONY,
23
+ CLASS2MISDEMEANOR,
24
+ CLASS3FELONY,
25
+ CLASS3MISDEMEANOR,
26
+ CLASS4FELONY,
27
+ CLASS4MISDEMEANOR,
28
+ CLASS5FELONY,
29
+ CLASS6FELONY,
30
+ CLASSA1MISDEMEANOR,
31
+ CLASSAFELONY,
32
+ CLASSAINFRACTION,
33
+ CLASSAMISDEMEANOR,
34
+ CLASSAVIOLATION,
35
+ CLASSBFELONY,
36
+ CLASSBINFRACTION,
37
+ CLASSBMISDEMEANOR,
38
+ CLASSBVIOLATION,
39
+ CLASSCFELONY,
40
+ CLASSCINFRACTION,
41
+ CLASSCMISDEMEANOR,
42
+ CLASSCVIOLATION,
43
+ CLASSDFELONY,
44
+ CLASSDMISDEMEANOR,
45
+ CLASSDVIOLATION,
46
+ CLASSEFELONY,
47
+ CLASSFFELONY,
48
+ CLASSHFELONY,
49
+ DISORDERLYPERSONSOFFENSE,
50
+ FELONY,
51
+ FELONY1STDEGREE,
52
+ FELONY2NDDEGREE,
53
+ FELONY3RDDEGREE,
54
+ FELONY4THDEGREE,
55
+ FELONY5THDEGREE,
56
+ GROSSMISDEMEANOR,
57
+ HIGHANDAGGRAVATEDMISDEMEANOR,
58
+ INFRACTION,
59
+ LEVEL4FELONY,
60
+ LEVEL5FELONY,
61
+ LEVEL6FELONY,
62
+ MINORMISDEMEANOR,
63
+ MISDEMEANOR,
64
+ MISDEMEANOR1STDEGREE,
65
+ MISDEMEANOR2NDDEGREE,
66
+ MISDEMEANOR3RDDEGREE,
67
+ MISDEMEANOR4THDEGREE,
68
+ MISDEMEANORWITHREFUND,
69
+ NONMOVING,
70
+ NONREPORTABLE,
71
+ PETTYMISDEMEANOR,
72
+ QUASICRIMINAL,
73
+ SUMMARYOFFENSE,
74
+ SUMMARYOFFENSENOREFUND,
75
+ WOBBLERTOFELONY,
76
+ WOBBLERTOMISDEMEANOR
77
+ }
78
+ }
@@ -0,0 +1,74 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export var CaseViolationDto;
13
+ (function (CaseViolationDto) {
14
+ let ViolationClassificationEnum;
15
+ (function (ViolationClassificationEnum) {
16
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASS1FELONY"] = 'CLASS_1_FELONY'] = "CLASS1FELONY";
17
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASS1MISDEMEANOR"] = 'CLASS_1_MISDEMEANOR'] = "CLASS1MISDEMEANOR";
18
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASS2FELONY"] = 'CLASS_2_FELONY'] = "CLASS2FELONY";
19
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASS2MISDEMEANOR"] = 'CLASS_2_MISDEMEANOR'] = "CLASS2MISDEMEANOR";
20
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASS3FELONY"] = 'CLASS_3_FELONY'] = "CLASS3FELONY";
21
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASS3MISDEMEANOR"] = 'CLASS_3_MISDEMEANOR'] = "CLASS3MISDEMEANOR";
22
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASS4FELONY"] = 'CLASS_4_FELONY'] = "CLASS4FELONY";
23
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASS4MISDEMEANOR"] = 'CLASS_4_MISDEMEANOR'] = "CLASS4MISDEMEANOR";
24
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASS5FELONY"] = 'CLASS_5_FELONY'] = "CLASS5FELONY";
25
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASS6FELONY"] = 'CLASS_6_FELONY'] = "CLASS6FELONY";
26
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSA1MISDEMEANOR"] = 'CLASS_A1_MISDEMEANOR'] = "CLASSA1MISDEMEANOR";
27
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSAFELONY"] = 'CLASS_A_FELONY'] = "CLASSAFELONY";
28
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSAINFRACTION"] = 'CLASS_A_INFRACTION'] = "CLASSAINFRACTION";
29
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSAMISDEMEANOR"] = 'CLASS_A_MISDEMEANOR'] = "CLASSAMISDEMEANOR";
30
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSAVIOLATION"] = 'CLASS_A_VIOLATION'] = "CLASSAVIOLATION";
31
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSBFELONY"] = 'CLASS_B_FELONY'] = "CLASSBFELONY";
32
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSBINFRACTION"] = 'CLASS_B_INFRACTION'] = "CLASSBINFRACTION";
33
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSBMISDEMEANOR"] = 'CLASS_B_MISDEMEANOR'] = "CLASSBMISDEMEANOR";
34
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSBVIOLATION"] = 'CLASS_B_VIOLATION'] = "CLASSBVIOLATION";
35
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSCFELONY"] = 'CLASS_C_FELONY'] = "CLASSCFELONY";
36
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSCINFRACTION"] = 'CLASS_C_INFRACTION'] = "CLASSCINFRACTION";
37
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSCMISDEMEANOR"] = 'CLASS_C_MISDEMEANOR'] = "CLASSCMISDEMEANOR";
38
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSCVIOLATION"] = 'CLASS_C_VIOLATION'] = "CLASSCVIOLATION";
39
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSDFELONY"] = 'CLASS_D_FELONY'] = "CLASSDFELONY";
40
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSDMISDEMEANOR"] = 'CLASS_D_MISDEMEANOR'] = "CLASSDMISDEMEANOR";
41
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSDVIOLATION"] = 'CLASS_D_VIOLATION'] = "CLASSDVIOLATION";
42
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSEFELONY"] = 'CLASS_E_FELONY'] = "CLASSEFELONY";
43
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSFFELONY"] = 'CLASS_F_FELONY'] = "CLASSFFELONY";
44
+ ViolationClassificationEnum[ViolationClassificationEnum["CLASSHFELONY"] = 'CLASS_H_FELONY'] = "CLASSHFELONY";
45
+ ViolationClassificationEnum[ViolationClassificationEnum["DISORDERLYPERSONSOFFENSE"] = 'DISORDERLY_PERSONS_OFFENSE'] = "DISORDERLYPERSONSOFFENSE";
46
+ ViolationClassificationEnum[ViolationClassificationEnum["FELONY"] = 'FELONY'] = "FELONY";
47
+ ViolationClassificationEnum[ViolationClassificationEnum["FELONY1STDEGREE"] = 'FELONY_1ST_DEGREE'] = "FELONY1STDEGREE";
48
+ ViolationClassificationEnum[ViolationClassificationEnum["FELONY2NDDEGREE"] = 'FELONY_2ND_DEGREE'] = "FELONY2NDDEGREE";
49
+ ViolationClassificationEnum[ViolationClassificationEnum["FELONY3RDDEGREE"] = 'FELONY_3RD_DEGREE'] = "FELONY3RDDEGREE";
50
+ ViolationClassificationEnum[ViolationClassificationEnum["FELONY4THDEGREE"] = 'FELONY_4TH_DEGREE'] = "FELONY4THDEGREE";
51
+ ViolationClassificationEnum[ViolationClassificationEnum["FELONY5THDEGREE"] = 'FELONY_5TH_DEGREE'] = "FELONY5THDEGREE";
52
+ ViolationClassificationEnum[ViolationClassificationEnum["GROSSMISDEMEANOR"] = 'GROSS_MISDEMEANOR'] = "GROSSMISDEMEANOR";
53
+ ViolationClassificationEnum[ViolationClassificationEnum["HIGHANDAGGRAVATEDMISDEMEANOR"] = 'HIGH_AND_AGGRAVATED_MISDEMEANOR'] = "HIGHANDAGGRAVATEDMISDEMEANOR";
54
+ ViolationClassificationEnum[ViolationClassificationEnum["INFRACTION"] = 'INFRACTION'] = "INFRACTION";
55
+ ViolationClassificationEnum[ViolationClassificationEnum["LEVEL4FELONY"] = 'LEVEL_4_FELONY'] = "LEVEL4FELONY";
56
+ ViolationClassificationEnum[ViolationClassificationEnum["LEVEL5FELONY"] = 'LEVEL_5_FELONY'] = "LEVEL5FELONY";
57
+ ViolationClassificationEnum[ViolationClassificationEnum["LEVEL6FELONY"] = 'LEVEL_6_FELONY'] = "LEVEL6FELONY";
58
+ ViolationClassificationEnum[ViolationClassificationEnum["MINORMISDEMEANOR"] = 'MINOR_MISDEMEANOR'] = "MINORMISDEMEANOR";
59
+ ViolationClassificationEnum[ViolationClassificationEnum["MISDEMEANOR"] = 'MISDEMEANOR'] = "MISDEMEANOR";
60
+ ViolationClassificationEnum[ViolationClassificationEnum["MISDEMEANOR1STDEGREE"] = 'MISDEMEANOR_1ST_DEGREE'] = "MISDEMEANOR1STDEGREE";
61
+ ViolationClassificationEnum[ViolationClassificationEnum["MISDEMEANOR2NDDEGREE"] = 'MISDEMEANOR_2ND_DEGREE'] = "MISDEMEANOR2NDDEGREE";
62
+ ViolationClassificationEnum[ViolationClassificationEnum["MISDEMEANOR3RDDEGREE"] = 'MISDEMEANOR_3RD_DEGREE'] = "MISDEMEANOR3RDDEGREE";
63
+ ViolationClassificationEnum[ViolationClassificationEnum["MISDEMEANOR4THDEGREE"] = 'MISDEMEANOR_4TH_DEGREE'] = "MISDEMEANOR4THDEGREE";
64
+ ViolationClassificationEnum[ViolationClassificationEnum["MISDEMEANORWITHREFUND"] = 'MISDEMEANOR_WITH_REFUND'] = "MISDEMEANORWITHREFUND";
65
+ ViolationClassificationEnum[ViolationClassificationEnum["NONMOVING"] = 'NON_MOVING'] = "NONMOVING";
66
+ ViolationClassificationEnum[ViolationClassificationEnum["NONREPORTABLE"] = 'NON_REPORTABLE'] = "NONREPORTABLE";
67
+ ViolationClassificationEnum[ViolationClassificationEnum["PETTYMISDEMEANOR"] = 'PETTY_MISDEMEANOR'] = "PETTYMISDEMEANOR";
68
+ ViolationClassificationEnum[ViolationClassificationEnum["QUASICRIMINAL"] = 'QUASI_CRIMINAL'] = "QUASICRIMINAL";
69
+ ViolationClassificationEnum[ViolationClassificationEnum["SUMMARYOFFENSE"] = 'SUMMARY_OFFENSE'] = "SUMMARYOFFENSE";
70
+ ViolationClassificationEnum[ViolationClassificationEnum["SUMMARYOFFENSENOREFUND"] = 'SUMMARY_OFFENSE_NO_REFUND'] = "SUMMARYOFFENSENOREFUND";
71
+ ViolationClassificationEnum[ViolationClassificationEnum["WOBBLERTOFELONY"] = 'WOBBLER_TO_FELONY'] = "WOBBLERTOFELONY";
72
+ ViolationClassificationEnum[ViolationClassificationEnum["WOBBLERTOMISDEMEANOR"] = 'WOBBLER_TO_MISDEMEANOR'] = "WOBBLERTOMISDEMEANOR";
73
+ })(ViolationClassificationEnum = CaseViolationDto.ViolationClassificationEnum || (CaseViolationDto.ViolationClassificationEnum = {}));
74
+ })(CaseViolationDto || (CaseViolationDto = {}));
@@ -14,9 +14,12 @@ export interface GetLawfirmSummaryCasesResponse {
14
14
  "activeCasesCount"?: number;
15
15
  "bookedCasesCount"?: number;
16
16
  "cases"?: Array<models.CaseSummaryDomain>;
17
+ "medianPendingTimeSeconds"?: number;
18
+ "nationwideMedianPendingTimeSeconds"?: number;
17
19
  "numMatchingCases"?: number;
18
20
  "pastDueCasesCount"?: number;
19
21
  "paymentPlanCasesCount"?: number;
20
22
  "pendingCasesCount"?: number;
21
23
  "percentCasesWithPaymentPlan"?: number;
24
+ "stateMedianPendingTimeSeconds"?: number;
22
25
  }
@@ -120,6 +120,7 @@ export * from './CaseUserDefendantAttributes';
120
120
  export * from './CaseUserDefendantAttributesRequest';
121
121
  export * from './CaseUserDetailsModel';
122
122
  export * from './CaseUserPermissionAttributes';
123
+ export * from './CaseViolationDto';
123
124
  export * from './CaseViolationPenalty';
124
125
  export * from './CaseWithCoverageObtained';
125
126
  export * from './ChangeUserPasswordRequest';
@@ -120,6 +120,7 @@ export * from './CaseUserDefendantAttributes';
120
120
  export * from './CaseUserDefendantAttributesRequest';
121
121
  export * from './CaseUserDetailsModel';
122
122
  export * from './CaseUserPermissionAttributes';
123
+ export * from './CaseViolationDto';
123
124
  export * from './CaseViolationPenalty';
124
125
  export * from './CaseWithCoverageObtained';
125
126
  export * from './ChangeUserPasswordRequest';
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { CaseStatusDomain, PureDate } from './';
12
+ import { CaseStatusDomain, CaseViolationDto, PureDate } from './';
13
13
  /**
14
14
  *
15
15
  * @export
@@ -64,6 +64,12 @@ export interface CaseSummaryDomain {
64
64
  * @memberof CaseSummaryDomain
65
65
  */
66
66
  countyName?: string;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof CaseSummaryDomain
71
+ */
72
+ courtCity?: string;
67
73
  /**
68
74
  *
69
75
  * @type {Date}
@@ -76,12 +82,24 @@ export interface CaseSummaryDomain {
76
82
  * @memberof CaseSummaryDomain
77
83
  */
78
84
  courtName?: string;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof CaseSummaryDomain
89
+ */
90
+ courtRegionCode?: string;
79
91
  /**
80
92
  *
81
93
  * @type {string}
82
94
  * @memberof CaseSummaryDomain
83
95
  */
84
96
  firstName?: string;
97
+ /**
98
+ *
99
+ * @type {boolean}
100
+ * @memberof CaseSummaryDomain
101
+ */
102
+ hasCdl?: boolean;
85
103
  /**
86
104
  *
87
105
  * @type {boolean}
@@ -94,6 +112,12 @@ export interface CaseSummaryDomain {
94
112
  * @memberof CaseSummaryDomain
95
113
  */
96
114
  lastName?: string;
115
+ /**
116
+ *
117
+ * @type {Date}
118
+ * @memberof CaseSummaryDomain
119
+ */
120
+ lawfirmReceiptDateUtc?: Date;
97
121
  /**
98
122
  *
99
123
  * @type {number}
@@ -124,6 +148,12 @@ export interface CaseSummaryDomain {
124
148
  * @memberof CaseSummaryDomain
125
149
  */
126
150
  violationCount?: number;
151
+ /**
152
+ *
153
+ * @type {Array<CaseViolationDto>}
154
+ * @memberof CaseSummaryDomain
155
+ */
156
+ violations?: Array<CaseViolationDto>;
127
157
  }
128
158
  export declare function CaseSummaryDomainFromJSON(json: any): CaseSummaryDomain;
129
159
  export declare function CaseSummaryDomainFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaseSummaryDomain;
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
  import { exists } from '../runtime';
15
- import { CaseStatusDomainFromJSON, CaseStatusDomainToJSON, PureDateFromJSON, PureDateToJSON, } from './';
15
+ import { CaseStatusDomainFromJSON, CaseStatusDomainToJSON, CaseViolationDtoFromJSON, CaseViolationDtoToJSON, PureDateFromJSON, PureDateToJSON, } from './';
16
16
  export function CaseSummaryDomainFromJSON(json) {
17
17
  return CaseSummaryDomainFromJSONTyped(json, false);
18
18
  }
@@ -29,16 +29,21 @@ export function CaseSummaryDomainFromJSONTyped(json, ignoreDiscriminator) {
29
29
  'citationIssueDate': !exists(json, 'citationIssueDate') ? undefined : PureDateFromJSON(json['citationIssueDate']),
30
30
  'citationIssueDateUTC': !exists(json, 'citationIssueDateUTC') ? undefined : (new Date(json['citationIssueDateUTC'])),
31
31
  'countyName': !exists(json, 'countyName') ? undefined : json['countyName'],
32
+ 'courtCity': !exists(json, 'courtCity') ? undefined : json['courtCity'],
32
33
  'courtDate': !exists(json, 'courtDate') ? undefined : (new Date(json['courtDate'])),
33
34
  'courtName': !exists(json, 'courtName') ? undefined : json['courtName'],
35
+ 'courtRegionCode': !exists(json, 'courtRegionCode') ? undefined : json['courtRegionCode'],
34
36
  'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
37
+ 'hasCdl': !exists(json, 'hasCdl') ? undefined : json['hasCdl'],
35
38
  'involvesAccident': !exists(json, 'involvesAccident') ? undefined : json['involvesAccident'],
36
39
  'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
40
+ 'lawfirmReceiptDateUtc': !exists(json, 'lawfirmReceiptDateUtc') ? undefined : (new Date(json['lawfirmReceiptDateUtc'])),
37
41
  'legalFeeInCents': !exists(json, 'legalFeeInCents') ? undefined : json['legalFeeInCents'],
38
42
  'resolutionDateUtc': !exists(json, 'resolutionDateUtc') ? undefined : (new Date(json['resolutionDateUtc'])),
39
43
  'ticketImageUrl': !exists(json, 'ticketImageUrl') ? undefined : json['ticketImageUrl'],
40
44
  'userId': !exists(json, 'userId') ? undefined : json['userId'],
41
45
  'violationCount': !exists(json, 'violationCount') ? undefined : json['violationCount'],
46
+ 'violations': !exists(json, 'violations') ? undefined : (json['violations'].map(CaseViolationDtoFromJSON)),
42
47
  };
43
48
  }
44
49
  export function CaseSummaryDomainToJSON(value) {
@@ -57,16 +62,21 @@ export function CaseSummaryDomainToJSON(value) {
57
62
  'citationIssueDate': PureDateToJSON(value.citationIssueDate),
58
63
  'citationIssueDateUTC': value.citationIssueDateUTC === undefined ? undefined : (value.citationIssueDateUTC.toISOString()),
59
64
  'countyName': value.countyName,
65
+ 'courtCity': value.courtCity,
60
66
  'courtDate': value.courtDate === undefined ? undefined : (value.courtDate.toISOString()),
61
67
  'courtName': value.courtName,
68
+ 'courtRegionCode': value.courtRegionCode,
62
69
  'firstName': value.firstName,
70
+ 'hasCdl': value.hasCdl,
63
71
  'involvesAccident': value.involvesAccident,
64
72
  'lastName': value.lastName,
73
+ 'lawfirmReceiptDateUtc': value.lawfirmReceiptDateUtc === undefined ? undefined : (value.lawfirmReceiptDateUtc.toISOString()),
65
74
  'legalFeeInCents': value.legalFeeInCents,
66
75
  'resolutionDateUtc': value.resolutionDateUtc === undefined ? undefined : (value.resolutionDateUtc.toISOString()),
67
76
  'ticketImageUrl': value.ticketImageUrl,
68
77
  'userId': value.userId,
69
78
  'violationCount': value.violationCount,
79
+ 'violations': value.violations === undefined ? undefined : (value.violations.map(CaseViolationDtoToJSON)),
70
80
  };
71
81
  }
72
82
  /**
@@ -0,0 +1,108 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CaseViolationDto
16
+ */
17
+ export interface CaseViolationDto {
18
+ /**
19
+ *
20
+ * @type {boolean}
21
+ * @memberof CaseViolationDto
22
+ */
23
+ isCriminal?: boolean;
24
+ /**
25
+ *
26
+ * @type {boolean}
27
+ * @memberof CaseViolationDto
28
+ */
29
+ isMoving?: boolean;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof CaseViolationDto
34
+ */
35
+ userFriendlyName?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof CaseViolationDto
40
+ */
41
+ violationClassification?: CaseViolationDtoViolationClassificationEnum;
42
+ }
43
+ export declare function CaseViolationDtoFromJSON(json: any): CaseViolationDto;
44
+ export declare function CaseViolationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaseViolationDto;
45
+ export declare function CaseViolationDtoToJSON(value?: CaseViolationDto | null): any;
46
+ /**
47
+ * @export
48
+ * @enum {string}
49
+ */
50
+ export declare enum CaseViolationDtoViolationClassificationEnum {
51
+ CLASS1FELONY = "CLASS_1_FELONY",
52
+ CLASS1MISDEMEANOR = "CLASS_1_MISDEMEANOR",
53
+ CLASS2FELONY = "CLASS_2_FELONY",
54
+ CLASS2MISDEMEANOR = "CLASS_2_MISDEMEANOR",
55
+ CLASS3FELONY = "CLASS_3_FELONY",
56
+ CLASS3MISDEMEANOR = "CLASS_3_MISDEMEANOR",
57
+ CLASS4FELONY = "CLASS_4_FELONY",
58
+ CLASS4MISDEMEANOR = "CLASS_4_MISDEMEANOR",
59
+ CLASS5FELONY = "CLASS_5_FELONY",
60
+ CLASS6FELONY = "CLASS_6_FELONY",
61
+ CLASSA1MISDEMEANOR = "CLASS_A1_MISDEMEANOR",
62
+ CLASSAFELONY = "CLASS_A_FELONY",
63
+ CLASSAINFRACTION = "CLASS_A_INFRACTION",
64
+ CLASSAMISDEMEANOR = "CLASS_A_MISDEMEANOR",
65
+ CLASSAVIOLATION = "CLASS_A_VIOLATION",
66
+ CLASSBFELONY = "CLASS_B_FELONY",
67
+ CLASSBINFRACTION = "CLASS_B_INFRACTION",
68
+ CLASSBMISDEMEANOR = "CLASS_B_MISDEMEANOR",
69
+ CLASSBVIOLATION = "CLASS_B_VIOLATION",
70
+ CLASSCFELONY = "CLASS_C_FELONY",
71
+ CLASSCINFRACTION = "CLASS_C_INFRACTION",
72
+ CLASSCMISDEMEANOR = "CLASS_C_MISDEMEANOR",
73
+ CLASSCVIOLATION = "CLASS_C_VIOLATION",
74
+ CLASSDFELONY = "CLASS_D_FELONY",
75
+ CLASSDMISDEMEANOR = "CLASS_D_MISDEMEANOR",
76
+ CLASSDVIOLATION = "CLASS_D_VIOLATION",
77
+ CLASSEFELONY = "CLASS_E_FELONY",
78
+ CLASSFFELONY = "CLASS_F_FELONY",
79
+ CLASSHFELONY = "CLASS_H_FELONY",
80
+ DISORDERLYPERSONSOFFENSE = "DISORDERLY_PERSONS_OFFENSE",
81
+ FELONY = "FELONY",
82
+ FELONY1STDEGREE = "FELONY_1ST_DEGREE",
83
+ FELONY2NDDEGREE = "FELONY_2ND_DEGREE",
84
+ FELONY3RDDEGREE = "FELONY_3RD_DEGREE",
85
+ FELONY4THDEGREE = "FELONY_4TH_DEGREE",
86
+ FELONY5THDEGREE = "FELONY_5TH_DEGREE",
87
+ GROSSMISDEMEANOR = "GROSS_MISDEMEANOR",
88
+ HIGHANDAGGRAVATEDMISDEMEANOR = "HIGH_AND_AGGRAVATED_MISDEMEANOR",
89
+ INFRACTION = "INFRACTION",
90
+ LEVEL4FELONY = "LEVEL_4_FELONY",
91
+ LEVEL5FELONY = "LEVEL_5_FELONY",
92
+ LEVEL6FELONY = "LEVEL_6_FELONY",
93
+ MINORMISDEMEANOR = "MINOR_MISDEMEANOR",
94
+ MISDEMEANOR = "MISDEMEANOR",
95
+ MISDEMEANOR1STDEGREE = "MISDEMEANOR_1ST_DEGREE",
96
+ MISDEMEANOR2NDDEGREE = "MISDEMEANOR_2ND_DEGREE",
97
+ MISDEMEANOR3RDDEGREE = "MISDEMEANOR_3RD_DEGREE",
98
+ MISDEMEANOR4THDEGREE = "MISDEMEANOR_4TH_DEGREE",
99
+ MISDEMEANORWITHREFUND = "MISDEMEANOR_WITH_REFUND",
100
+ NONMOVING = "NON_MOVING",
101
+ NONREPORTABLE = "NON_REPORTABLE",
102
+ PETTYMISDEMEANOR = "PETTY_MISDEMEANOR",
103
+ QUASICRIMINAL = "QUASI_CRIMINAL",
104
+ SUMMARYOFFENSE = "SUMMARY_OFFENSE",
105
+ SUMMARYOFFENSENOREFUND = "SUMMARY_OFFENSE_NO_REFUND",
106
+ WOBBLERTOFELONY = "WOBBLER_TO_FELONY",
107
+ WOBBLERTOMISDEMEANOR = "WOBBLER_TO_MISDEMEANOR"
108
+ }
@@ -0,0 +1,106 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { exists } from '../runtime';
15
+ export function CaseViolationDtoFromJSON(json) {
16
+ return CaseViolationDtoFromJSONTyped(json, false);
17
+ }
18
+ export function CaseViolationDtoFromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'isCriminal': !exists(json, 'isCriminal') ? undefined : json['isCriminal'],
24
+ 'isMoving': !exists(json, 'isMoving') ? undefined : json['isMoving'],
25
+ 'userFriendlyName': !exists(json, 'userFriendlyName') ? undefined : json['userFriendlyName'],
26
+ 'violationClassification': !exists(json, 'violationClassification') ? undefined : json['violationClassification'],
27
+ };
28
+ }
29
+ export function CaseViolationDtoToJSON(value) {
30
+ if (value === undefined) {
31
+ return undefined;
32
+ }
33
+ if (value === null) {
34
+ return null;
35
+ }
36
+ return {
37
+ 'isCriminal': value.isCriminal,
38
+ 'isMoving': value.isMoving,
39
+ 'userFriendlyName': value.userFriendlyName,
40
+ 'violationClassification': value.violationClassification,
41
+ };
42
+ }
43
+ /**
44
+ * @export
45
+ * @enum {string}
46
+ */
47
+ export var CaseViolationDtoViolationClassificationEnum;
48
+ (function (CaseViolationDtoViolationClassificationEnum) {
49
+ CaseViolationDtoViolationClassificationEnum["CLASS1FELONY"] = "CLASS_1_FELONY";
50
+ CaseViolationDtoViolationClassificationEnum["CLASS1MISDEMEANOR"] = "CLASS_1_MISDEMEANOR";
51
+ CaseViolationDtoViolationClassificationEnum["CLASS2FELONY"] = "CLASS_2_FELONY";
52
+ CaseViolationDtoViolationClassificationEnum["CLASS2MISDEMEANOR"] = "CLASS_2_MISDEMEANOR";
53
+ CaseViolationDtoViolationClassificationEnum["CLASS3FELONY"] = "CLASS_3_FELONY";
54
+ CaseViolationDtoViolationClassificationEnum["CLASS3MISDEMEANOR"] = "CLASS_3_MISDEMEANOR";
55
+ CaseViolationDtoViolationClassificationEnum["CLASS4FELONY"] = "CLASS_4_FELONY";
56
+ CaseViolationDtoViolationClassificationEnum["CLASS4MISDEMEANOR"] = "CLASS_4_MISDEMEANOR";
57
+ CaseViolationDtoViolationClassificationEnum["CLASS5FELONY"] = "CLASS_5_FELONY";
58
+ CaseViolationDtoViolationClassificationEnum["CLASS6FELONY"] = "CLASS_6_FELONY";
59
+ CaseViolationDtoViolationClassificationEnum["CLASSA1MISDEMEANOR"] = "CLASS_A1_MISDEMEANOR";
60
+ CaseViolationDtoViolationClassificationEnum["CLASSAFELONY"] = "CLASS_A_FELONY";
61
+ CaseViolationDtoViolationClassificationEnum["CLASSAINFRACTION"] = "CLASS_A_INFRACTION";
62
+ CaseViolationDtoViolationClassificationEnum["CLASSAMISDEMEANOR"] = "CLASS_A_MISDEMEANOR";
63
+ CaseViolationDtoViolationClassificationEnum["CLASSAVIOLATION"] = "CLASS_A_VIOLATION";
64
+ CaseViolationDtoViolationClassificationEnum["CLASSBFELONY"] = "CLASS_B_FELONY";
65
+ CaseViolationDtoViolationClassificationEnum["CLASSBINFRACTION"] = "CLASS_B_INFRACTION";
66
+ CaseViolationDtoViolationClassificationEnum["CLASSBMISDEMEANOR"] = "CLASS_B_MISDEMEANOR";
67
+ CaseViolationDtoViolationClassificationEnum["CLASSBVIOLATION"] = "CLASS_B_VIOLATION";
68
+ CaseViolationDtoViolationClassificationEnum["CLASSCFELONY"] = "CLASS_C_FELONY";
69
+ CaseViolationDtoViolationClassificationEnum["CLASSCINFRACTION"] = "CLASS_C_INFRACTION";
70
+ CaseViolationDtoViolationClassificationEnum["CLASSCMISDEMEANOR"] = "CLASS_C_MISDEMEANOR";
71
+ CaseViolationDtoViolationClassificationEnum["CLASSCVIOLATION"] = "CLASS_C_VIOLATION";
72
+ CaseViolationDtoViolationClassificationEnum["CLASSDFELONY"] = "CLASS_D_FELONY";
73
+ CaseViolationDtoViolationClassificationEnum["CLASSDMISDEMEANOR"] = "CLASS_D_MISDEMEANOR";
74
+ CaseViolationDtoViolationClassificationEnum["CLASSDVIOLATION"] = "CLASS_D_VIOLATION";
75
+ CaseViolationDtoViolationClassificationEnum["CLASSEFELONY"] = "CLASS_E_FELONY";
76
+ CaseViolationDtoViolationClassificationEnum["CLASSFFELONY"] = "CLASS_F_FELONY";
77
+ CaseViolationDtoViolationClassificationEnum["CLASSHFELONY"] = "CLASS_H_FELONY";
78
+ CaseViolationDtoViolationClassificationEnum["DISORDERLYPERSONSOFFENSE"] = "DISORDERLY_PERSONS_OFFENSE";
79
+ CaseViolationDtoViolationClassificationEnum["FELONY"] = "FELONY";
80
+ CaseViolationDtoViolationClassificationEnum["FELONY1STDEGREE"] = "FELONY_1ST_DEGREE";
81
+ CaseViolationDtoViolationClassificationEnum["FELONY2NDDEGREE"] = "FELONY_2ND_DEGREE";
82
+ CaseViolationDtoViolationClassificationEnum["FELONY3RDDEGREE"] = "FELONY_3RD_DEGREE";
83
+ CaseViolationDtoViolationClassificationEnum["FELONY4THDEGREE"] = "FELONY_4TH_DEGREE";
84
+ CaseViolationDtoViolationClassificationEnum["FELONY5THDEGREE"] = "FELONY_5TH_DEGREE";
85
+ CaseViolationDtoViolationClassificationEnum["GROSSMISDEMEANOR"] = "GROSS_MISDEMEANOR";
86
+ CaseViolationDtoViolationClassificationEnum["HIGHANDAGGRAVATEDMISDEMEANOR"] = "HIGH_AND_AGGRAVATED_MISDEMEANOR";
87
+ CaseViolationDtoViolationClassificationEnum["INFRACTION"] = "INFRACTION";
88
+ CaseViolationDtoViolationClassificationEnum["LEVEL4FELONY"] = "LEVEL_4_FELONY";
89
+ CaseViolationDtoViolationClassificationEnum["LEVEL5FELONY"] = "LEVEL_5_FELONY";
90
+ CaseViolationDtoViolationClassificationEnum["LEVEL6FELONY"] = "LEVEL_6_FELONY";
91
+ CaseViolationDtoViolationClassificationEnum["MINORMISDEMEANOR"] = "MINOR_MISDEMEANOR";
92
+ CaseViolationDtoViolationClassificationEnum["MISDEMEANOR"] = "MISDEMEANOR";
93
+ CaseViolationDtoViolationClassificationEnum["MISDEMEANOR1STDEGREE"] = "MISDEMEANOR_1ST_DEGREE";
94
+ CaseViolationDtoViolationClassificationEnum["MISDEMEANOR2NDDEGREE"] = "MISDEMEANOR_2ND_DEGREE";
95
+ CaseViolationDtoViolationClassificationEnum["MISDEMEANOR3RDDEGREE"] = "MISDEMEANOR_3RD_DEGREE";
96
+ CaseViolationDtoViolationClassificationEnum["MISDEMEANOR4THDEGREE"] = "MISDEMEANOR_4TH_DEGREE";
97
+ CaseViolationDtoViolationClassificationEnum["MISDEMEANORWITHREFUND"] = "MISDEMEANOR_WITH_REFUND";
98
+ CaseViolationDtoViolationClassificationEnum["NONMOVING"] = "NON_MOVING";
99
+ CaseViolationDtoViolationClassificationEnum["NONREPORTABLE"] = "NON_REPORTABLE";
100
+ CaseViolationDtoViolationClassificationEnum["PETTYMISDEMEANOR"] = "PETTY_MISDEMEANOR";
101
+ CaseViolationDtoViolationClassificationEnum["QUASICRIMINAL"] = "QUASI_CRIMINAL";
102
+ CaseViolationDtoViolationClassificationEnum["SUMMARYOFFENSE"] = "SUMMARY_OFFENSE";
103
+ CaseViolationDtoViolationClassificationEnum["SUMMARYOFFENSENOREFUND"] = "SUMMARY_OFFENSE_NO_REFUND";
104
+ CaseViolationDtoViolationClassificationEnum["WOBBLERTOFELONY"] = "WOBBLER_TO_FELONY";
105
+ CaseViolationDtoViolationClassificationEnum["WOBBLERTOMISDEMEANOR"] = "WOBBLER_TO_MISDEMEANOR";
106
+ })(CaseViolationDtoViolationClassificationEnum || (CaseViolationDtoViolationClassificationEnum = {}));
@@ -34,6 +34,18 @@ export interface GetLawfirmSummaryCasesResponse {
34
34
  * @memberof GetLawfirmSummaryCasesResponse
35
35
  */
36
36
  cases?: Array<CaseSummaryDomain>;
37
+ /**
38
+ *
39
+ * @type {number}
40
+ * @memberof GetLawfirmSummaryCasesResponse
41
+ */
42
+ medianPendingTimeSeconds?: number;
43
+ /**
44
+ *
45
+ * @type {number}
46
+ * @memberof GetLawfirmSummaryCasesResponse
47
+ */
48
+ nationwideMedianPendingTimeSeconds?: number;
37
49
  /**
38
50
  *
39
51
  * @type {number}
@@ -64,6 +76,12 @@ export interface GetLawfirmSummaryCasesResponse {
64
76
  * @memberof GetLawfirmSummaryCasesResponse
65
77
  */
66
78
  percentCasesWithPaymentPlan?: number;
79
+ /**
80
+ *
81
+ * @type {number}
82
+ * @memberof GetLawfirmSummaryCasesResponse
83
+ */
84
+ stateMedianPendingTimeSeconds?: number;
67
85
  }
68
86
  export declare function GetLawfirmSummaryCasesResponseFromJSON(json: any): GetLawfirmSummaryCasesResponse;
69
87
  export declare function GetLawfirmSummaryCasesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetLawfirmSummaryCasesResponse;
@@ -24,11 +24,14 @@ export function GetLawfirmSummaryCasesResponseFromJSONTyped(json, ignoreDiscrimi
24
24
  'activeCasesCount': !exists(json, 'activeCasesCount') ? undefined : json['activeCasesCount'],
25
25
  'bookedCasesCount': !exists(json, 'bookedCasesCount') ? undefined : json['bookedCasesCount'],
26
26
  'cases': !exists(json, 'cases') ? undefined : (json['cases'].map(CaseSummaryDomainFromJSON)),
27
+ 'medianPendingTimeSeconds': !exists(json, 'medianPendingTimeSeconds') ? undefined : json['medianPendingTimeSeconds'],
28
+ 'nationwideMedianPendingTimeSeconds': !exists(json, 'nationwideMedianPendingTimeSeconds') ? undefined : json['nationwideMedianPendingTimeSeconds'],
27
29
  'numMatchingCases': !exists(json, 'numMatchingCases') ? undefined : json['numMatchingCases'],
28
30
  'pastDueCasesCount': !exists(json, 'pastDueCasesCount') ? undefined : json['pastDueCasesCount'],
29
31
  'paymentPlanCasesCount': !exists(json, 'paymentPlanCasesCount') ? undefined : json['paymentPlanCasesCount'],
30
32
  'pendingCasesCount': !exists(json, 'pendingCasesCount') ? undefined : json['pendingCasesCount'],
31
33
  'percentCasesWithPaymentPlan': !exists(json, 'percentCasesWithPaymentPlan') ? undefined : json['percentCasesWithPaymentPlan'],
34
+ 'stateMedianPendingTimeSeconds': !exists(json, 'stateMedianPendingTimeSeconds') ? undefined : json['stateMedianPendingTimeSeconds'],
32
35
  };
33
36
  }
34
37
  export function GetLawfirmSummaryCasesResponseToJSON(value) {
@@ -42,10 +45,13 @@ export function GetLawfirmSummaryCasesResponseToJSON(value) {
42
45
  'activeCasesCount': value.activeCasesCount,
43
46
  'bookedCasesCount': value.bookedCasesCount,
44
47
  'cases': value.cases === undefined ? undefined : (value.cases.map(CaseSummaryDomainToJSON)),
48
+ 'medianPendingTimeSeconds': value.medianPendingTimeSeconds,
49
+ 'nationwideMedianPendingTimeSeconds': value.nationwideMedianPendingTimeSeconds,
45
50
  'numMatchingCases': value.numMatchingCases,
46
51
  'pastDueCasesCount': value.pastDueCasesCount,
47
52
  'paymentPlanCasesCount': value.paymentPlanCasesCount,
48
53
  'pendingCasesCount': value.pendingCasesCount,
49
54
  'percentCasesWithPaymentPlan': value.percentCasesWithPaymentPlan,
55
+ 'stateMedianPendingTimeSeconds': value.stateMedianPendingTimeSeconds,
50
56
  };
51
57
  }
@@ -120,6 +120,7 @@ export * from './CaseUserDefendantAttributes';
120
120
  export * from './CaseUserDefendantAttributesRequest';
121
121
  export * from './CaseUserDetailsModel';
122
122
  export * from './CaseUserPermissionAttributes';
123
+ export * from './CaseViolationDto';
123
124
  export * from './CaseViolationPenalty';
124
125
  export * from './CaseWithCoverageObtained';
125
126
  export * from './ChangeUserPasswordRequest';
@@ -120,6 +120,7 @@ export * from './CaseUserDefendantAttributes';
120
120
  export * from './CaseUserDefendantAttributesRequest';
121
121
  export * from './CaseUserDetailsModel';
122
122
  export * from './CaseUserPermissionAttributes';
123
+ export * from './CaseViolationDto';
123
124
  export * from './CaseViolationPenalty';
124
125
  export * from './CaseWithCoverageObtained';
125
126
  export * from './ChangeUserPasswordRequest';
@@ -8778,12 +8778,17 @@ export interface components {
8778
8778
  /** Format: date-time */
8779
8779
  citationIssueDateUTC?: string;
8780
8780
  countyName?: string;
8781
+ courtCity?: string;
8781
8782
  /** Format: date-time */
8782
8783
  courtDate?: string;
8783
8784
  courtName?: string;
8785
+ courtRegionCode?: string;
8784
8786
  firstName?: string;
8787
+ hasCdl?: boolean;
8785
8788
  involvesAccident?: boolean;
8786
8789
  lastName?: string;
8790
+ /** Format: date-time */
8791
+ lawfirmReceiptDateUtc?: string;
8787
8792
  /** Format: int32 */
8788
8793
  legalFeeInCents?: number;
8789
8794
  /** Format: date-time */
@@ -8793,6 +8798,7 @@ export interface components {
8793
8798
  userId?: number;
8794
8799
  /** Format: int32 */
8795
8800
  violationCount?: number;
8801
+ violations?: components["schemas"]["CaseViolationDto"][];
8796
8802
  };
8797
8803
  /** CaseTransferHistory */
8798
8804
  CaseTransferHistory: {
@@ -8855,6 +8861,14 @@ export interface components {
8855
8861
  CaseUserPermissionAttributes: {
8856
8862
  hasFinancialAccess?: boolean;
8857
8863
  };
8864
+ /** CaseViolationDto */
8865
+ CaseViolationDto: {
8866
+ isCriminal?: boolean;
8867
+ isMoving?: boolean;
8868
+ userFriendlyName?: string;
8869
+ /** @enum {string} */
8870
+ violationClassification?: PathsApiV1LawfirmsLawfirmIdAccountFeesDeleteParametersQueryClassification;
8871
+ };
8858
8872
  /** CaseViolationPenalty */
8859
8873
  CaseViolationPenalty: {
8860
8874
  penaltyFriendlyDescription?: string;
@@ -11341,6 +11355,10 @@ export interface components {
11341
11355
  /** Format: int32 */
11342
11356
  bookedCasesCount?: number;
11343
11357
  cases?: components["schemas"]["CaseSummaryDomain"][];
11358
+ /** Format: int64 */
11359
+ medianPendingTimeSeconds?: number;
11360
+ /** Format: int64 */
11361
+ nationwideMedianPendingTimeSeconds?: number;
11344
11362
  /** Format: int32 */
11345
11363
  numMatchingCases?: number;
11346
11364
  /** Format: int32 */
@@ -11351,6 +11369,8 @@ export interface components {
11351
11369
  pendingCasesCount?: number;
11352
11370
  /** Format: double */
11353
11371
  percentCasesWithPaymentPlan?: number;
11372
+ /** Format: int64 */
11373
+ stateMedianPendingTimeSeconds?: number;
11354
11374
  };
11355
11375
  /** GetLawfirmSupportedStatesResponse */
11356
11376
  GetLawfirmSupportedStatesResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.136",
3
+ "version": "2.5.137",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"