@otr-app/shared-backend-generated-client 2.5.136 → 2.5.138
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/.openapi-generator/FILES +1 -0
- package/dist/angular/api/lawfirmController.service.ts +29 -4
- package/dist/angular/model/caseSummaryDomain.ts +6 -0
- package/dist/angular/model/caseViolationDto.ts +83 -0
- package/dist/angular/model/getLawfirmSummaryCasesResponse.ts +3 -0
- package/dist/angular/model/models.ts +1 -0
- package/dist/otrBackendService.js +25 -0
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/LawfirmControllerApi.d.ts +6 -1
- package/dist/typescript/api/LawfirmControllerApi.js +21 -1
- package/dist/typescript/model/CaseSummaryDomain.d.ts +5 -0
- package/dist/typescript/model/CaseViolationDto.d.ts +78 -0
- package/dist/typescript/model/CaseViolationDto.js +74 -0
- package/dist/typescript/model/GetLawfirmSummaryCasesResponse.d.ts +3 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/dist/typescript-fetch/apis/LawfirmControllerApi.d.ts +85 -0
- package/dist/typescript-fetch/apis/LawfirmControllerApi.js +98 -0
- package/dist/typescript-fetch/models/CaseSummaryDomain.d.ts +31 -1
- package/dist/typescript-fetch/models/CaseSummaryDomain.js +11 -1
- package/dist/typescript-fetch/models/CaseViolationDto.d.ts +108 -0
- package/dist/typescript-fetch/models/CaseViolationDto.js +106 -0
- package/dist/typescript-fetch/models/GetLawfirmSummaryCasesResponse.d.ts +18 -0
- package/dist/typescript-fetch/models/GetLawfirmSummaryCasesResponse.js +6 -0
- package/dist/typescript-fetch/models/index.d.ts +1 -0
- package/dist/typescript-fetch/models/index.js +1 -0
- package/dist/typescript-open-api/otr-backend.d.ts +53 -23
- package/dist/typescript-open-api/otr-backend.js +17 -17
- package/package.json +1 -1
|
@@ -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';
|
|
@@ -8769,7 +8769,7 @@ export interface components {
|
|
|
8769
8769
|
/** Format: date-time */
|
|
8770
8770
|
bookingConfirmedDate?: string;
|
|
8771
8771
|
/** @enum {string} */
|
|
8772
|
-
caseDecisionStatus?:
|
|
8772
|
+
caseDecisionStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
|
|
8773
8773
|
caseId?: string;
|
|
8774
8774
|
caseStatusDomain?: components["schemas"]["CaseStatusDomain"];
|
|
8775
8775
|
/** Format: int64 */
|
|
@@ -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,13 +8798,14 @@ 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: {
|
|
8799
8805
|
/** Format: date-time */
|
|
8800
8806
|
decisionDate?: string;
|
|
8801
8807
|
/** @enum {string} */
|
|
8802
|
-
decisionStatus?:
|
|
8808
|
+
decisionStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
|
|
8803
8809
|
declineCategory?: string;
|
|
8804
8810
|
declineNote?: string;
|
|
8805
8811
|
declineReasonType?: string;
|
|
@@ -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;
|
|
@@ -9862,7 +9876,7 @@ export interface components {
|
|
|
9862
9876
|
/** Format: int32 */
|
|
9863
9877
|
counterOfferAmountInCents?: number;
|
|
9864
9878
|
/** @enum {string} */
|
|
9865
|
-
counterOfferStatus?:
|
|
9879
|
+
counterOfferStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses;
|
|
9866
9880
|
};
|
|
9867
9881
|
/** DashboardCaseCountsDto */
|
|
9868
9882
|
DashboardCaseCountsDto: {
|
|
@@ -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: {
|
|
@@ -12166,7 +12186,7 @@ export interface components {
|
|
|
12166
12186
|
LawfirmCaseModel: {
|
|
12167
12187
|
caseArchivedByLawfirm?: boolean;
|
|
12168
12188
|
/** @enum {string} */
|
|
12169
|
-
caseDecisionStatus?:
|
|
12189
|
+
caseDecisionStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
|
|
12170
12190
|
clientDeclineTicket?: components["schemas"]["FreshDeskTicket"];
|
|
12171
12191
|
declineReason?: string;
|
|
12172
12192
|
isMatchInternal?: boolean;
|
|
@@ -12194,7 +12214,7 @@ export interface components {
|
|
|
12194
12214
|
LawfirmCaseModelReq: {
|
|
12195
12215
|
caseArchivedByLawfirm?: boolean;
|
|
12196
12216
|
/** @enum {string} */
|
|
12197
|
-
caseDecisionStatus?:
|
|
12217
|
+
caseDecisionStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
|
|
12198
12218
|
clientDeclineTicket?: components["schemas"]["FreshDeskTicketReq"];
|
|
12199
12219
|
declineReason?: string;
|
|
12200
12220
|
isMatchInternal?: boolean;
|
|
@@ -12222,7 +12242,7 @@ export interface components {
|
|
|
12222
12242
|
LawfirmCaseModelRes: {
|
|
12223
12243
|
caseArchivedByLawfirm?: boolean;
|
|
12224
12244
|
/** @enum {string} */
|
|
12225
|
-
caseDecisionStatus?:
|
|
12245
|
+
caseDecisionStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
|
|
12226
12246
|
clientDeclineTicket?: components["schemas"]["FreshDeskTicketRes"];
|
|
12227
12247
|
declineReason?: string;
|
|
12228
12248
|
isMatchInternal?: boolean;
|
|
@@ -12384,7 +12404,7 @@ export interface components {
|
|
|
12384
12404
|
hasFlagMessage?: boolean;
|
|
12385
12405
|
hasStarMessage?: boolean;
|
|
12386
12406
|
/** @enum {string} */
|
|
12387
|
-
lawfirmCaseDecisionStatus?:
|
|
12407
|
+
lawfirmCaseDecisionStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
|
|
12388
12408
|
/** Format: date-time */
|
|
12389
12409
|
lawfirmReceiptDateUtc?: string;
|
|
12390
12410
|
messageBody?: string;
|
|
@@ -14743,7 +14763,7 @@ export interface components {
|
|
|
14743
14763
|
/** SetLawfirmCaseDecisionRequest */
|
|
14744
14764
|
SetLawfirmCaseDecisionRequest: {
|
|
14745
14765
|
/** @enum {string} */
|
|
14746
|
-
caseDecisionStatus?:
|
|
14766
|
+
caseDecisionStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
|
|
14747
14767
|
declineCategoryType?: components["schemas"]["DeclineCategory"];
|
|
14748
14768
|
declineReasonType?: components["schemas"]["DeclineReason"];
|
|
14749
14769
|
reason?: string;
|
|
@@ -28580,6 +28600,16 @@ export interface operations {
|
|
|
28580
28600
|
statusCategories?: PathsApiV1CaseStatusesGetParametersQueryCategories;
|
|
28581
28601
|
/** @description caseStatuses */
|
|
28582
28602
|
caseStatuses?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseStatuses;
|
|
28603
|
+
/** @description lawfirmCaseDecisionStatus */
|
|
28604
|
+
lawfirmCaseDecisionStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
|
|
28605
|
+
/** @description caseCounterOfferStatuses */
|
|
28606
|
+
caseCounterOfferStatuses?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses;
|
|
28607
|
+
/** @description courtId */
|
|
28608
|
+
courtId?: number;
|
|
28609
|
+
/** @description countyId */
|
|
28610
|
+
countyId?: number;
|
|
28611
|
+
/** @description regionCode */
|
|
28612
|
+
regionCode?: PathsApiV1CitationsCitationIdCourtMissingPostParametersQueryState;
|
|
28583
28613
|
/** @description courtDateFilter */
|
|
28584
28614
|
courtDateFilter?: PathsApiV2LawfirmLawfirmIdStringCasesPostParametersQueryCourtDateFilter;
|
|
28585
28615
|
/** @description latestMessageBy */
|
|
@@ -40773,6 +40803,21 @@ export declare enum PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCa
|
|
|
40773
40803
|
TRAFFIC_SCHOOL = "TRAFFIC_SCHOOL",
|
|
40774
40804
|
UNCONFIRMED = "UNCONFIRMED"
|
|
40775
40805
|
}
|
|
40806
|
+
export declare enum PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus {
|
|
40807
|
+
ACCEPTED = "ACCEPTED",
|
|
40808
|
+
CREATED = "CREATED",
|
|
40809
|
+
DECLINED = "DECLINED",
|
|
40810
|
+
EXPIRED = "EXPIRED",
|
|
40811
|
+
PENDING = "PENDING",
|
|
40812
|
+
REMATCHED = "REMATCHED",
|
|
40813
|
+
REMATCHED_REFERRAL = "REMATCHED_REFERRAL"
|
|
40814
|
+
}
|
|
40815
|
+
export declare enum PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses {
|
|
40816
|
+
ACCEPTED = "ACCEPTED",
|
|
40817
|
+
DECLINED = "DECLINED",
|
|
40818
|
+
PENDING = "PENDING",
|
|
40819
|
+
WITHDRAWN = "WITHDRAWN"
|
|
40820
|
+
}
|
|
40776
40821
|
export declare enum PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLatestMessageBy {
|
|
40777
40822
|
ADMIN = "ADMIN",
|
|
40778
40823
|
CLIENT = "CLIENT",
|
|
@@ -41119,15 +41164,6 @@ export declare enum CasePaymentDomainTransactionMethod {
|
|
|
41119
41164
|
WIRE_TRANSFER = "WIRE_TRANSFER",
|
|
41120
41165
|
ZELLE = "ZELLE"
|
|
41121
41166
|
}
|
|
41122
|
-
export declare enum CaseSummaryDomainCaseDecisionStatus {
|
|
41123
|
-
ACCEPTED = "ACCEPTED",
|
|
41124
|
-
CREATED = "CREATED",
|
|
41125
|
-
DECLINED = "DECLINED",
|
|
41126
|
-
EXPIRED = "EXPIRED",
|
|
41127
|
-
PENDING = "PENDING",
|
|
41128
|
-
REMATCHED = "REMATCHED",
|
|
41129
|
-
REMATCHED_REFERRAL = "REMATCHED_REFERRAL"
|
|
41130
|
-
}
|
|
41131
41167
|
export declare enum CaseTransferHistoryRefundOwner {
|
|
41132
41168
|
LAWFIRM = "LAWFIRM",
|
|
41133
41169
|
NONE = "NONE",
|
|
@@ -41226,12 +41262,6 @@ export declare enum CustomerReviewNameSetting {
|
|
|
41226
41262
|
FIRST_NAME_LAST_INITIAL = "FIRST_NAME_LAST_INITIAL",
|
|
41227
41263
|
FULL_NAME = "FULL_NAME"
|
|
41228
41264
|
}
|
|
41229
|
-
export declare enum DashboardCaseCounterOfferModelCounterOfferStatus {
|
|
41230
|
-
ACCEPTED = "ACCEPTED",
|
|
41231
|
-
DECLINED = "DECLINED",
|
|
41232
|
-
PENDING = "PENDING",
|
|
41233
|
-
WITHDRAWN = "WITHDRAWN"
|
|
41234
|
-
}
|
|
41235
41265
|
export declare enum DashboardCaseModelLastMessageType {
|
|
41236
41266
|
action = "action",
|
|
41237
41267
|
attachment = "attachment",
|
|
@@ -341,6 +341,23 @@ export var PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseStatuse
|
|
|
341
341
|
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseStatuses["TRAFFIC_SCHOOL"] = "TRAFFIC_SCHOOL";
|
|
342
342
|
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseStatuses["UNCONFIRMED"] = "UNCONFIRMED";
|
|
343
343
|
})(PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseStatuses || (PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseStatuses = {}));
|
|
344
|
+
export var PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
|
|
345
|
+
(function (PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus) {
|
|
346
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus["ACCEPTED"] = "ACCEPTED";
|
|
347
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus["CREATED"] = "CREATED";
|
|
348
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus["DECLINED"] = "DECLINED";
|
|
349
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus["EXPIRED"] = "EXPIRED";
|
|
350
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus["PENDING"] = "PENDING";
|
|
351
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus["REMATCHED"] = "REMATCHED";
|
|
352
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus["REMATCHED_REFERRAL"] = "REMATCHED_REFERRAL";
|
|
353
|
+
})(PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus || (PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus = {}));
|
|
354
|
+
export var PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses;
|
|
355
|
+
(function (PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses) {
|
|
356
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses["ACCEPTED"] = "ACCEPTED";
|
|
357
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses["DECLINED"] = "DECLINED";
|
|
358
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses["PENDING"] = "PENDING";
|
|
359
|
+
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses["WITHDRAWN"] = "WITHDRAWN";
|
|
360
|
+
})(PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses || (PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseCounterOfferStatuses = {}));
|
|
344
361
|
export var PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLatestMessageBy;
|
|
345
362
|
(function (PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLatestMessageBy) {
|
|
346
363
|
PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLatestMessageBy["ADMIN"] = "ADMIN";
|
|
@@ -726,16 +743,6 @@ export var CasePaymentDomainTransactionMethod;
|
|
|
726
743
|
CasePaymentDomainTransactionMethod["WIRE_TRANSFER"] = "WIRE_TRANSFER";
|
|
727
744
|
CasePaymentDomainTransactionMethod["ZELLE"] = "ZELLE";
|
|
728
745
|
})(CasePaymentDomainTransactionMethod || (CasePaymentDomainTransactionMethod = {}));
|
|
729
|
-
export var CaseSummaryDomainCaseDecisionStatus;
|
|
730
|
-
(function (CaseSummaryDomainCaseDecisionStatus) {
|
|
731
|
-
CaseSummaryDomainCaseDecisionStatus["ACCEPTED"] = "ACCEPTED";
|
|
732
|
-
CaseSummaryDomainCaseDecisionStatus["CREATED"] = "CREATED";
|
|
733
|
-
CaseSummaryDomainCaseDecisionStatus["DECLINED"] = "DECLINED";
|
|
734
|
-
CaseSummaryDomainCaseDecisionStatus["EXPIRED"] = "EXPIRED";
|
|
735
|
-
CaseSummaryDomainCaseDecisionStatus["PENDING"] = "PENDING";
|
|
736
|
-
CaseSummaryDomainCaseDecisionStatus["REMATCHED"] = "REMATCHED";
|
|
737
|
-
CaseSummaryDomainCaseDecisionStatus["REMATCHED_REFERRAL"] = "REMATCHED_REFERRAL";
|
|
738
|
-
})(CaseSummaryDomainCaseDecisionStatus || (CaseSummaryDomainCaseDecisionStatus = {}));
|
|
739
746
|
export var CaseTransferHistoryRefundOwner;
|
|
740
747
|
(function (CaseTransferHistoryRefundOwner) {
|
|
741
748
|
CaseTransferHistoryRefundOwner["LAWFIRM"] = "LAWFIRM";
|
|
@@ -849,13 +856,6 @@ export var CustomerReviewNameSetting;
|
|
|
849
856
|
CustomerReviewNameSetting["FIRST_NAME_LAST_INITIAL"] = "FIRST_NAME_LAST_INITIAL";
|
|
850
857
|
CustomerReviewNameSetting["FULL_NAME"] = "FULL_NAME";
|
|
851
858
|
})(CustomerReviewNameSetting || (CustomerReviewNameSetting = {}));
|
|
852
|
-
export var DashboardCaseCounterOfferModelCounterOfferStatus;
|
|
853
|
-
(function (DashboardCaseCounterOfferModelCounterOfferStatus) {
|
|
854
|
-
DashboardCaseCounterOfferModelCounterOfferStatus["ACCEPTED"] = "ACCEPTED";
|
|
855
|
-
DashboardCaseCounterOfferModelCounterOfferStatus["DECLINED"] = "DECLINED";
|
|
856
|
-
DashboardCaseCounterOfferModelCounterOfferStatus["PENDING"] = "PENDING";
|
|
857
|
-
DashboardCaseCounterOfferModelCounterOfferStatus["WITHDRAWN"] = "WITHDRAWN";
|
|
858
|
-
})(DashboardCaseCounterOfferModelCounterOfferStatus || (DashboardCaseCounterOfferModelCounterOfferStatus = {}));
|
|
859
859
|
export var DashboardCaseModelLastMessageType;
|
|
860
860
|
(function (DashboardCaseModelLastMessageType) {
|
|
861
861
|
DashboardCaseModelLastMessageType["action"] = "action";
|