@otr-app/shared-backend-generated-client 2.0.8 → 2.2.0
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/otrBackendService.js +98 -33
- package/dist/otrBackendService.min.js +6 -5
- package/dist/typescript/api/LawfirmControllerApi.d.ts +4 -3
- package/dist/typescript/api/LawfirmControllerApi.js +11 -7
- package/dist/typescript/api/ListCasesControllerApi.d.ts +1 -1
- package/dist/typescript/model/CitationWithMissingFields.d.ts +56 -0
- package/dist/typescript/model/CitationWithMissingFields.js +58 -0
- package/dist/typescript/model/CoverageToRemove.d.ts +58 -0
- package/dist/typescript/model/CoverageToRemove.js +60 -0
- package/dist/typescript/model/FinancialTransaction.d.ts +1 -0
- package/dist/typescript/model/GetCitationsWithMissingFieldsRequest.d.ts +60 -1
- package/dist/typescript/model/GetCitationsWithMissingFieldsRequest.js +58 -0
- package/dist/typescript/model/GetCitationsWithMissingFieldsResponse.d.ts +4 -0
- package/dist/typescript/model/LawfirmInboxMessageDomain.d.ts +5 -0
- package/dist/typescript/model/LawfirmPictureRequest.d.ts +1 -0
- package/dist/typescript/model/LawfirmSettingsDomainReq.d.ts +1 -0
- package/dist/typescript/model/LawfirmSettingsDomainRes.d.ts +1 -0
- package/package.json +4 -5
|
@@ -66,10 +66,11 @@ export declare class LawfirmControllerApi {
|
|
|
66
66
|
*
|
|
67
67
|
* @summary getLawfirmInboxMessages
|
|
68
68
|
* @param lawfirmId lawfirmId
|
|
69
|
+
* @param caseId caseId
|
|
69
70
|
* @param length length
|
|
70
71
|
* @param page page
|
|
71
72
|
*/
|
|
72
|
-
getLawfirmInboxMessagesUsingGET(lawfirmId: number, length?: number, page?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmInboxMessagesResponse>;
|
|
73
|
+
getLawfirmInboxMessagesUsingGET(lawfirmId: number, caseId?: string, length?: number, page?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmInboxMessagesResponse>;
|
|
73
74
|
/**
|
|
74
75
|
*
|
|
75
76
|
* @summary getLawfirmJobTitles
|
|
@@ -162,9 +163,9 @@ export declare class LawfirmControllerApi {
|
|
|
162
163
|
*
|
|
163
164
|
* @summary updateLawfirmWithPicture
|
|
164
165
|
* @param lawfirmId lawfirmId
|
|
165
|
-
* @param
|
|
166
|
+
* @param request request
|
|
166
167
|
*/
|
|
167
|
-
updateLawfirmWithPictureUsingPUT(lawfirmId: string,
|
|
168
|
+
updateLawfirmWithPictureUsingPUT(lawfirmId: string, request: models.LawfirmPictureRequest, extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
168
169
|
/**
|
|
169
170
|
*
|
|
170
171
|
* @summary updatePaymentModel
|
|
@@ -216,10 +216,11 @@ var LawfirmControllerApi = /** @class */ (function () {
|
|
|
216
216
|
*
|
|
217
217
|
* @summary getLawfirmInboxMessages
|
|
218
218
|
* @param lawfirmId lawfirmId
|
|
219
|
+
* @param caseId caseId
|
|
219
220
|
* @param length length
|
|
220
221
|
* @param page page
|
|
221
222
|
*/
|
|
222
|
-
LawfirmControllerApi.prototype.getLawfirmInboxMessagesUsingGET = function (lawfirmId, length, page, extraHttpRequestParams) {
|
|
223
|
+
LawfirmControllerApi.prototype.getLawfirmInboxMessagesUsingGET = function (lawfirmId, caseId, length, page, extraHttpRequestParams) {
|
|
223
224
|
var localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/messages'
|
|
224
225
|
.replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
|
|
225
226
|
var queryParameters = {};
|
|
@@ -228,6 +229,9 @@ var LawfirmControllerApi = /** @class */ (function () {
|
|
|
228
229
|
if (lawfirmId === null || lawfirmId === undefined) {
|
|
229
230
|
throw new Error('Required parameter lawfirmId was null or undefined when calling getLawfirmInboxMessagesUsingGET.');
|
|
230
231
|
}
|
|
232
|
+
if (caseId !== undefined) {
|
|
233
|
+
queryParameters['caseId'] = caseId;
|
|
234
|
+
}
|
|
231
235
|
if (length !== undefined) {
|
|
232
236
|
queryParameters['length'] = length;
|
|
233
237
|
}
|
|
@@ -618,9 +622,9 @@ var LawfirmControllerApi = /** @class */ (function () {
|
|
|
618
622
|
*
|
|
619
623
|
* @summary updateLawfirmWithPicture
|
|
620
624
|
* @param lawfirmId lawfirmId
|
|
621
|
-
* @param
|
|
625
|
+
* @param request request
|
|
622
626
|
*/
|
|
623
|
-
LawfirmControllerApi.prototype.updateLawfirmWithPictureUsingPUT = function (lawfirmId,
|
|
627
|
+
LawfirmControllerApi.prototype.updateLawfirmWithPictureUsingPUT = function (lawfirmId, request, extraHttpRequestParams) {
|
|
624
628
|
var localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/picture'
|
|
625
629
|
.replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
|
|
626
630
|
var queryParameters = {};
|
|
@@ -629,14 +633,14 @@ var LawfirmControllerApi = /** @class */ (function () {
|
|
|
629
633
|
if (lawfirmId === null || lawfirmId === undefined) {
|
|
630
634
|
throw new Error('Required parameter lawfirmId was null or undefined when calling updateLawfirmWithPictureUsingPUT.');
|
|
631
635
|
}
|
|
632
|
-
// verify required parameter '
|
|
633
|
-
if (
|
|
634
|
-
throw new Error('Required parameter
|
|
636
|
+
// verify required parameter 'request' is not null or undefined
|
|
637
|
+
if (request === null || request === undefined) {
|
|
638
|
+
throw new Error('Required parameter request was null or undefined when calling updateLawfirmWithPictureUsingPUT.');
|
|
635
639
|
}
|
|
636
640
|
var httpRequestParams = {
|
|
637
641
|
method: 'PUT',
|
|
638
642
|
url: localVarPath,
|
|
639
|
-
data:
|
|
643
|
+
data: request,
|
|
640
644
|
params: queryParameters,
|
|
641
645
|
headers: headerParams
|
|
642
646
|
};
|
|
@@ -39,5 +39,5 @@ export declare class ListCasesControllerApi {
|
|
|
39
39
|
* @param sortBy sortBy
|
|
40
40
|
* @param statusCategories statusCategories
|
|
41
41
|
*/
|
|
42
|
-
listDashboardCasesUsingGET(userId: number, limit?: number, previousPageToken?: string, sortBy?: 'BOOKING_CONFIRMED_DATE' | 'CITATION_ISSUE_DATE', statusCategories?: 'ACTIVE' | 'CANCELLED' | 'RESOLVED' | 'UNCONFIRMED', extraHttpRequestParams?: any): ng.IHttpPromise<models.ListDashboardCasesResponse>;
|
|
42
|
+
listDashboardCasesUsingGET(userId: number, limit?: number, previousPageToken?: string, sortBy?: 'BOOKING_CONFIRMED_DATE' | 'CITATION_CREATION_DATE' | 'CITATION_ISSUE_DATE', statusCategories?: 'ACTIVE' | 'CANCELLED' | 'RESOLVED' | 'UNCONFIRMED', extraHttpRequestParams?: any): ng.IHttpPromise<models.ListDashboardCasesResponse>;
|
|
43
43
|
}
|
|
@@ -16,6 +16,62 @@ export interface CitationWithMissingFields {
|
|
|
16
16
|
"clientEmailAddress"?: string;
|
|
17
17
|
"clientFirstName"?: string;
|
|
18
18
|
"courtId"?: number;
|
|
19
|
+
"state"?: CitationWithMissingFields.StateEnum;
|
|
19
20
|
"ticketImageUrl"?: string;
|
|
20
21
|
"userId"?: number;
|
|
21
22
|
}
|
|
23
|
+
export declare namespace CitationWithMissingFields {
|
|
24
|
+
enum StateEnum {
|
|
25
|
+
AK,
|
|
26
|
+
AL,
|
|
27
|
+
AR,
|
|
28
|
+
AZ,
|
|
29
|
+
CA,
|
|
30
|
+
CO,
|
|
31
|
+
CT,
|
|
32
|
+
DC,
|
|
33
|
+
DE,
|
|
34
|
+
FL,
|
|
35
|
+
GA,
|
|
36
|
+
HI,
|
|
37
|
+
IA,
|
|
38
|
+
ID,
|
|
39
|
+
IL,
|
|
40
|
+
IN,
|
|
41
|
+
KS,
|
|
42
|
+
KY,
|
|
43
|
+
LA,
|
|
44
|
+
MA,
|
|
45
|
+
MD,
|
|
46
|
+
ME,
|
|
47
|
+
MI,
|
|
48
|
+
MN,
|
|
49
|
+
MO,
|
|
50
|
+
MS,
|
|
51
|
+
MT,
|
|
52
|
+
NC,
|
|
53
|
+
ND,
|
|
54
|
+
NE,
|
|
55
|
+
NH,
|
|
56
|
+
NJ,
|
|
57
|
+
NM,
|
|
58
|
+
NV,
|
|
59
|
+
NY,
|
|
60
|
+
OH,
|
|
61
|
+
OK,
|
|
62
|
+
OR,
|
|
63
|
+
PA,
|
|
64
|
+
RI,
|
|
65
|
+
SC,
|
|
66
|
+
SD,
|
|
67
|
+
TN,
|
|
68
|
+
TX,
|
|
69
|
+
UT,
|
|
70
|
+
VA,
|
|
71
|
+
VT,
|
|
72
|
+
WA,
|
|
73
|
+
WI,
|
|
74
|
+
WV,
|
|
75
|
+
WY
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -11,3 +11,61 @@
|
|
|
11
11
|
* Do not edit the class manually.
|
|
12
12
|
*/
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.CitationWithMissingFields = void 0;
|
|
15
|
+
var CitationWithMissingFields;
|
|
16
|
+
(function (CitationWithMissingFields) {
|
|
17
|
+
var StateEnum;
|
|
18
|
+
(function (StateEnum) {
|
|
19
|
+
StateEnum[StateEnum["AK"] = 'AK'] = "AK";
|
|
20
|
+
StateEnum[StateEnum["AL"] = 'AL'] = "AL";
|
|
21
|
+
StateEnum[StateEnum["AR"] = 'AR'] = "AR";
|
|
22
|
+
StateEnum[StateEnum["AZ"] = 'AZ'] = "AZ";
|
|
23
|
+
StateEnum[StateEnum["CA"] = 'CA'] = "CA";
|
|
24
|
+
StateEnum[StateEnum["CO"] = 'CO'] = "CO";
|
|
25
|
+
StateEnum[StateEnum["CT"] = 'CT'] = "CT";
|
|
26
|
+
StateEnum[StateEnum["DC"] = 'DC'] = "DC";
|
|
27
|
+
StateEnum[StateEnum["DE"] = 'DE'] = "DE";
|
|
28
|
+
StateEnum[StateEnum["FL"] = 'FL'] = "FL";
|
|
29
|
+
StateEnum[StateEnum["GA"] = 'GA'] = "GA";
|
|
30
|
+
StateEnum[StateEnum["HI"] = 'HI'] = "HI";
|
|
31
|
+
StateEnum[StateEnum["IA"] = 'IA'] = "IA";
|
|
32
|
+
StateEnum[StateEnum["ID"] = 'ID'] = "ID";
|
|
33
|
+
StateEnum[StateEnum["IL"] = 'IL'] = "IL";
|
|
34
|
+
StateEnum[StateEnum["IN"] = 'IN'] = "IN";
|
|
35
|
+
StateEnum[StateEnum["KS"] = 'KS'] = "KS";
|
|
36
|
+
StateEnum[StateEnum["KY"] = 'KY'] = "KY";
|
|
37
|
+
StateEnum[StateEnum["LA"] = 'LA'] = "LA";
|
|
38
|
+
StateEnum[StateEnum["MA"] = 'MA'] = "MA";
|
|
39
|
+
StateEnum[StateEnum["MD"] = 'MD'] = "MD";
|
|
40
|
+
StateEnum[StateEnum["ME"] = 'ME'] = "ME";
|
|
41
|
+
StateEnum[StateEnum["MI"] = 'MI'] = "MI";
|
|
42
|
+
StateEnum[StateEnum["MN"] = 'MN'] = "MN";
|
|
43
|
+
StateEnum[StateEnum["MO"] = 'MO'] = "MO";
|
|
44
|
+
StateEnum[StateEnum["MS"] = 'MS'] = "MS";
|
|
45
|
+
StateEnum[StateEnum["MT"] = 'MT'] = "MT";
|
|
46
|
+
StateEnum[StateEnum["NC"] = 'NC'] = "NC";
|
|
47
|
+
StateEnum[StateEnum["ND"] = 'ND'] = "ND";
|
|
48
|
+
StateEnum[StateEnum["NE"] = 'NE'] = "NE";
|
|
49
|
+
StateEnum[StateEnum["NH"] = 'NH'] = "NH";
|
|
50
|
+
StateEnum[StateEnum["NJ"] = 'NJ'] = "NJ";
|
|
51
|
+
StateEnum[StateEnum["NM"] = 'NM'] = "NM";
|
|
52
|
+
StateEnum[StateEnum["NV"] = 'NV'] = "NV";
|
|
53
|
+
StateEnum[StateEnum["NY"] = 'NY'] = "NY";
|
|
54
|
+
StateEnum[StateEnum["OH"] = 'OH'] = "OH";
|
|
55
|
+
StateEnum[StateEnum["OK"] = 'OK'] = "OK";
|
|
56
|
+
StateEnum[StateEnum["OR"] = 'OR'] = "OR";
|
|
57
|
+
StateEnum[StateEnum["PA"] = 'PA'] = "PA";
|
|
58
|
+
StateEnum[StateEnum["RI"] = 'RI'] = "RI";
|
|
59
|
+
StateEnum[StateEnum["SC"] = 'SC'] = "SC";
|
|
60
|
+
StateEnum[StateEnum["SD"] = 'SD'] = "SD";
|
|
61
|
+
StateEnum[StateEnum["TN"] = 'TN'] = "TN";
|
|
62
|
+
StateEnum[StateEnum["TX"] = 'TX'] = "TX";
|
|
63
|
+
StateEnum[StateEnum["UT"] = 'UT'] = "UT";
|
|
64
|
+
StateEnum[StateEnum["VA"] = 'VA'] = "VA";
|
|
65
|
+
StateEnum[StateEnum["VT"] = 'VT'] = "VT";
|
|
66
|
+
StateEnum[StateEnum["WA"] = 'WA'] = "WA";
|
|
67
|
+
StateEnum[StateEnum["WI"] = 'WI'] = "WI";
|
|
68
|
+
StateEnum[StateEnum["WV"] = 'WV'] = "WV";
|
|
69
|
+
StateEnum[StateEnum["WY"] = 'WY'] = "WY";
|
|
70
|
+
})(StateEnum = CitationWithMissingFields.StateEnum || (CitationWithMissingFields.StateEnum = {}));
|
|
71
|
+
})(CitationWithMissingFields = exports.CitationWithMissingFields || (exports.CitationWithMissingFields = {}));
|
|
@@ -10,6 +10,64 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export interface CoverageToRemove {
|
|
13
|
+
"classification"?: CoverageToRemove.ClassificationEnum;
|
|
13
14
|
"courtId"?: number;
|
|
14
15
|
"violationId"?: number;
|
|
15
16
|
}
|
|
17
|
+
export declare namespace CoverageToRemove {
|
|
18
|
+
enum ClassificationEnum {
|
|
19
|
+
CLASS1FELONY,
|
|
20
|
+
CLASS1MISDEMEANOR,
|
|
21
|
+
CLASS2FELONY,
|
|
22
|
+
CLASS2MISDEMEANOR,
|
|
23
|
+
CLASS3FELONY,
|
|
24
|
+
CLASS3MISDEMEANOR,
|
|
25
|
+
CLASS4FELONY,
|
|
26
|
+
CLASS4MISDEMEANOR,
|
|
27
|
+
CLASS5FELONY,
|
|
28
|
+
CLASS6FELONY,
|
|
29
|
+
CLASSA1MISDEMEANOR,
|
|
30
|
+
CLASSAFELONY,
|
|
31
|
+
CLASSAINFRACTION,
|
|
32
|
+
CLASSAMISDEMEANOR,
|
|
33
|
+
CLASSAVIOLATION,
|
|
34
|
+
CLASSBFELONY,
|
|
35
|
+
CLASSBINFRACTION,
|
|
36
|
+
CLASSBMISDEMEANOR,
|
|
37
|
+
CLASSBVIOLATION,
|
|
38
|
+
CLASSCFELONY,
|
|
39
|
+
CLASSCMISDEMEANOR,
|
|
40
|
+
CLASSCVIOLATION,
|
|
41
|
+
CLASSDFELONY,
|
|
42
|
+
CLASSDMISDEMEANOR,
|
|
43
|
+
CLASSDVIOLATION,
|
|
44
|
+
CLASSEFELONY,
|
|
45
|
+
CLASSFFELONY,
|
|
46
|
+
CLASSHFELONY,
|
|
47
|
+
DISORDERLYPERSONSOFFENSE,
|
|
48
|
+
FELONY,
|
|
49
|
+
FELONY1STDEGREE,
|
|
50
|
+
FELONY2NDDEGREE,
|
|
51
|
+
FELONY3RDDEGREE,
|
|
52
|
+
FELONY4THDEGREE,
|
|
53
|
+
FELONY5THDEGREE,
|
|
54
|
+
GROSSMISDEMEANOR,
|
|
55
|
+
HIGHANDAGGRAVATEDMISDEMEANOR,
|
|
56
|
+
INFRACTION,
|
|
57
|
+
MINORMISDEMEANOR,
|
|
58
|
+
MISDEMEANOR,
|
|
59
|
+
MISDEMEANOR1STDEGREE,
|
|
60
|
+
MISDEMEANOR2NDDEGREE,
|
|
61
|
+
MISDEMEANOR3RDDEGREE,
|
|
62
|
+
MISDEMEANOR4THDEGREE,
|
|
63
|
+
MISDEMEANORWITHREFUND,
|
|
64
|
+
NONMOVING,
|
|
65
|
+
NONREPORTABLE,
|
|
66
|
+
PETTYMISDEMEANOR,
|
|
67
|
+
QUASICRIMINAL,
|
|
68
|
+
SUMMARYOFFENSE,
|
|
69
|
+
SUMMARYOFFENSENOREFUND,
|
|
70
|
+
WOBBLERTOFELONY,
|
|
71
|
+
WOBBLERTOMISDEMEANOR
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -11,3 +11,63 @@
|
|
|
11
11
|
* Do not edit the class manually.
|
|
12
12
|
*/
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.CoverageToRemove = void 0;
|
|
15
|
+
var CoverageToRemove;
|
|
16
|
+
(function (CoverageToRemove) {
|
|
17
|
+
var ClassificationEnum;
|
|
18
|
+
(function (ClassificationEnum) {
|
|
19
|
+
ClassificationEnum[ClassificationEnum["CLASS1FELONY"] = 'CLASS_1_FELONY'] = "CLASS1FELONY";
|
|
20
|
+
ClassificationEnum[ClassificationEnum["CLASS1MISDEMEANOR"] = 'CLASS_1_MISDEMEANOR'] = "CLASS1MISDEMEANOR";
|
|
21
|
+
ClassificationEnum[ClassificationEnum["CLASS2FELONY"] = 'CLASS_2_FELONY'] = "CLASS2FELONY";
|
|
22
|
+
ClassificationEnum[ClassificationEnum["CLASS2MISDEMEANOR"] = 'CLASS_2_MISDEMEANOR'] = "CLASS2MISDEMEANOR";
|
|
23
|
+
ClassificationEnum[ClassificationEnum["CLASS3FELONY"] = 'CLASS_3_FELONY'] = "CLASS3FELONY";
|
|
24
|
+
ClassificationEnum[ClassificationEnum["CLASS3MISDEMEANOR"] = 'CLASS_3_MISDEMEANOR'] = "CLASS3MISDEMEANOR";
|
|
25
|
+
ClassificationEnum[ClassificationEnum["CLASS4FELONY"] = 'CLASS_4_FELONY'] = "CLASS4FELONY";
|
|
26
|
+
ClassificationEnum[ClassificationEnum["CLASS4MISDEMEANOR"] = 'CLASS_4_MISDEMEANOR'] = "CLASS4MISDEMEANOR";
|
|
27
|
+
ClassificationEnum[ClassificationEnum["CLASS5FELONY"] = 'CLASS_5_FELONY'] = "CLASS5FELONY";
|
|
28
|
+
ClassificationEnum[ClassificationEnum["CLASS6FELONY"] = 'CLASS_6_FELONY'] = "CLASS6FELONY";
|
|
29
|
+
ClassificationEnum[ClassificationEnum["CLASSA1MISDEMEANOR"] = 'CLASS_A1_MISDEMEANOR'] = "CLASSA1MISDEMEANOR";
|
|
30
|
+
ClassificationEnum[ClassificationEnum["CLASSAFELONY"] = 'CLASS_A_FELONY'] = "CLASSAFELONY";
|
|
31
|
+
ClassificationEnum[ClassificationEnum["CLASSAINFRACTION"] = 'CLASS_A_INFRACTION'] = "CLASSAINFRACTION";
|
|
32
|
+
ClassificationEnum[ClassificationEnum["CLASSAMISDEMEANOR"] = 'CLASS_A_MISDEMEANOR'] = "CLASSAMISDEMEANOR";
|
|
33
|
+
ClassificationEnum[ClassificationEnum["CLASSAVIOLATION"] = 'CLASS_A_VIOLATION'] = "CLASSAVIOLATION";
|
|
34
|
+
ClassificationEnum[ClassificationEnum["CLASSBFELONY"] = 'CLASS_B_FELONY'] = "CLASSBFELONY";
|
|
35
|
+
ClassificationEnum[ClassificationEnum["CLASSBINFRACTION"] = 'CLASS_B_INFRACTION'] = "CLASSBINFRACTION";
|
|
36
|
+
ClassificationEnum[ClassificationEnum["CLASSBMISDEMEANOR"] = 'CLASS_B_MISDEMEANOR'] = "CLASSBMISDEMEANOR";
|
|
37
|
+
ClassificationEnum[ClassificationEnum["CLASSBVIOLATION"] = 'CLASS_B_VIOLATION'] = "CLASSBVIOLATION";
|
|
38
|
+
ClassificationEnum[ClassificationEnum["CLASSCFELONY"] = 'CLASS_C_FELONY'] = "CLASSCFELONY";
|
|
39
|
+
ClassificationEnum[ClassificationEnum["CLASSCMISDEMEANOR"] = 'CLASS_C_MISDEMEANOR'] = "CLASSCMISDEMEANOR";
|
|
40
|
+
ClassificationEnum[ClassificationEnum["CLASSCVIOLATION"] = 'CLASS_C_VIOLATION'] = "CLASSCVIOLATION";
|
|
41
|
+
ClassificationEnum[ClassificationEnum["CLASSDFELONY"] = 'CLASS_D_FELONY'] = "CLASSDFELONY";
|
|
42
|
+
ClassificationEnum[ClassificationEnum["CLASSDMISDEMEANOR"] = 'CLASS_D_MISDEMEANOR'] = "CLASSDMISDEMEANOR";
|
|
43
|
+
ClassificationEnum[ClassificationEnum["CLASSDVIOLATION"] = 'CLASS_D_VIOLATION'] = "CLASSDVIOLATION";
|
|
44
|
+
ClassificationEnum[ClassificationEnum["CLASSEFELONY"] = 'CLASS_E_FELONY'] = "CLASSEFELONY";
|
|
45
|
+
ClassificationEnum[ClassificationEnum["CLASSFFELONY"] = 'CLASS_F_FELONY'] = "CLASSFFELONY";
|
|
46
|
+
ClassificationEnum[ClassificationEnum["CLASSHFELONY"] = 'CLASS_H_FELONY'] = "CLASSHFELONY";
|
|
47
|
+
ClassificationEnum[ClassificationEnum["DISORDERLYPERSONSOFFENSE"] = 'DISORDERLY_PERSONS_OFFENSE'] = "DISORDERLYPERSONSOFFENSE";
|
|
48
|
+
ClassificationEnum[ClassificationEnum["FELONY"] = 'FELONY'] = "FELONY";
|
|
49
|
+
ClassificationEnum[ClassificationEnum["FELONY1STDEGREE"] = 'FELONY_1ST_DEGREE'] = "FELONY1STDEGREE";
|
|
50
|
+
ClassificationEnum[ClassificationEnum["FELONY2NDDEGREE"] = 'FELONY_2ND_DEGREE'] = "FELONY2NDDEGREE";
|
|
51
|
+
ClassificationEnum[ClassificationEnum["FELONY3RDDEGREE"] = 'FELONY_3RD_DEGREE'] = "FELONY3RDDEGREE";
|
|
52
|
+
ClassificationEnum[ClassificationEnum["FELONY4THDEGREE"] = 'FELONY_4TH_DEGREE'] = "FELONY4THDEGREE";
|
|
53
|
+
ClassificationEnum[ClassificationEnum["FELONY5THDEGREE"] = 'FELONY_5TH_DEGREE'] = "FELONY5THDEGREE";
|
|
54
|
+
ClassificationEnum[ClassificationEnum["GROSSMISDEMEANOR"] = 'GROSS_MISDEMEANOR'] = "GROSSMISDEMEANOR";
|
|
55
|
+
ClassificationEnum[ClassificationEnum["HIGHANDAGGRAVATEDMISDEMEANOR"] = 'HIGH_AND_AGGRAVATED_MISDEMEANOR'] = "HIGHANDAGGRAVATEDMISDEMEANOR";
|
|
56
|
+
ClassificationEnum[ClassificationEnum["INFRACTION"] = 'INFRACTION'] = "INFRACTION";
|
|
57
|
+
ClassificationEnum[ClassificationEnum["MINORMISDEMEANOR"] = 'MINOR_MISDEMEANOR'] = "MINORMISDEMEANOR";
|
|
58
|
+
ClassificationEnum[ClassificationEnum["MISDEMEANOR"] = 'MISDEMEANOR'] = "MISDEMEANOR";
|
|
59
|
+
ClassificationEnum[ClassificationEnum["MISDEMEANOR1STDEGREE"] = 'MISDEMEANOR_1ST_DEGREE'] = "MISDEMEANOR1STDEGREE";
|
|
60
|
+
ClassificationEnum[ClassificationEnum["MISDEMEANOR2NDDEGREE"] = 'MISDEMEANOR_2ND_DEGREE'] = "MISDEMEANOR2NDDEGREE";
|
|
61
|
+
ClassificationEnum[ClassificationEnum["MISDEMEANOR3RDDEGREE"] = 'MISDEMEANOR_3RD_DEGREE'] = "MISDEMEANOR3RDDEGREE";
|
|
62
|
+
ClassificationEnum[ClassificationEnum["MISDEMEANOR4THDEGREE"] = 'MISDEMEANOR_4TH_DEGREE'] = "MISDEMEANOR4THDEGREE";
|
|
63
|
+
ClassificationEnum[ClassificationEnum["MISDEMEANORWITHREFUND"] = 'MISDEMEANOR_WITH_REFUND'] = "MISDEMEANORWITHREFUND";
|
|
64
|
+
ClassificationEnum[ClassificationEnum["NONMOVING"] = 'NON_MOVING'] = "NONMOVING";
|
|
65
|
+
ClassificationEnum[ClassificationEnum["NONREPORTABLE"] = 'NON_REPORTABLE'] = "NONREPORTABLE";
|
|
66
|
+
ClassificationEnum[ClassificationEnum["PETTYMISDEMEANOR"] = 'PETTY_MISDEMEANOR'] = "PETTYMISDEMEANOR";
|
|
67
|
+
ClassificationEnum[ClassificationEnum["QUASICRIMINAL"] = 'QUASI_CRIMINAL'] = "QUASICRIMINAL";
|
|
68
|
+
ClassificationEnum[ClassificationEnum["SUMMARYOFFENSE"] = 'SUMMARY_OFFENSE'] = "SUMMARYOFFENSE";
|
|
69
|
+
ClassificationEnum[ClassificationEnum["SUMMARYOFFENSENOREFUND"] = 'SUMMARY_OFFENSE_NO_REFUND'] = "SUMMARYOFFENSENOREFUND";
|
|
70
|
+
ClassificationEnum[ClassificationEnum["WOBBLERTOFELONY"] = 'WOBBLER_TO_FELONY'] = "WOBBLERTOFELONY";
|
|
71
|
+
ClassificationEnum[ClassificationEnum["WOBBLERTOMISDEMEANOR"] = 'WOBBLER_TO_MISDEMEANOR'] = "WOBBLERTOMISDEMEANOR";
|
|
72
|
+
})(ClassificationEnum = CoverageToRemove.ClassificationEnum || (CoverageToRemove.ClassificationEnum = {}));
|
|
73
|
+
})(CoverageToRemove = exports.CoverageToRemove || (exports.CoverageToRemove = {}));
|
|
@@ -10,5 +10,64 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export interface GetCitationsWithMissingFieldsRequest {
|
|
13
|
-
"
|
|
13
|
+
"maxRecords"?: number;
|
|
14
|
+
"selectedStates"?: Array<GetCitationsWithMissingFieldsRequest.SelectedStatesEnum>;
|
|
15
|
+
"showMissingCourtRecords"?: boolean;
|
|
16
|
+
"showMissingNameRecords"?: boolean;
|
|
17
|
+
"trailingDays"?: number;
|
|
18
|
+
}
|
|
19
|
+
export declare namespace GetCitationsWithMissingFieldsRequest {
|
|
20
|
+
enum SelectedStatesEnum {
|
|
21
|
+
AK,
|
|
22
|
+
AL,
|
|
23
|
+
AR,
|
|
24
|
+
AZ,
|
|
25
|
+
CA,
|
|
26
|
+
CO,
|
|
27
|
+
CT,
|
|
28
|
+
DC,
|
|
29
|
+
DE,
|
|
30
|
+
FL,
|
|
31
|
+
GA,
|
|
32
|
+
HI,
|
|
33
|
+
IA,
|
|
34
|
+
ID,
|
|
35
|
+
IL,
|
|
36
|
+
IN,
|
|
37
|
+
KS,
|
|
38
|
+
KY,
|
|
39
|
+
LA,
|
|
40
|
+
MA,
|
|
41
|
+
MD,
|
|
42
|
+
ME,
|
|
43
|
+
MI,
|
|
44
|
+
MN,
|
|
45
|
+
MO,
|
|
46
|
+
MS,
|
|
47
|
+
MT,
|
|
48
|
+
NC,
|
|
49
|
+
ND,
|
|
50
|
+
NE,
|
|
51
|
+
NH,
|
|
52
|
+
NJ,
|
|
53
|
+
NM,
|
|
54
|
+
NV,
|
|
55
|
+
NY,
|
|
56
|
+
OH,
|
|
57
|
+
OK,
|
|
58
|
+
OR,
|
|
59
|
+
PA,
|
|
60
|
+
RI,
|
|
61
|
+
SC,
|
|
62
|
+
SD,
|
|
63
|
+
TN,
|
|
64
|
+
TX,
|
|
65
|
+
UT,
|
|
66
|
+
VA,
|
|
67
|
+
VT,
|
|
68
|
+
WA,
|
|
69
|
+
WI,
|
|
70
|
+
WV,
|
|
71
|
+
WY
|
|
72
|
+
}
|
|
14
73
|
}
|
|
@@ -11,3 +11,61 @@
|
|
|
11
11
|
* Do not edit the class manually.
|
|
12
12
|
*/
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.GetCitationsWithMissingFieldsRequest = void 0;
|
|
15
|
+
var GetCitationsWithMissingFieldsRequest;
|
|
16
|
+
(function (GetCitationsWithMissingFieldsRequest) {
|
|
17
|
+
var SelectedStatesEnum;
|
|
18
|
+
(function (SelectedStatesEnum) {
|
|
19
|
+
SelectedStatesEnum[SelectedStatesEnum["AK"] = 'AK'] = "AK";
|
|
20
|
+
SelectedStatesEnum[SelectedStatesEnum["AL"] = 'AL'] = "AL";
|
|
21
|
+
SelectedStatesEnum[SelectedStatesEnum["AR"] = 'AR'] = "AR";
|
|
22
|
+
SelectedStatesEnum[SelectedStatesEnum["AZ"] = 'AZ'] = "AZ";
|
|
23
|
+
SelectedStatesEnum[SelectedStatesEnum["CA"] = 'CA'] = "CA";
|
|
24
|
+
SelectedStatesEnum[SelectedStatesEnum["CO"] = 'CO'] = "CO";
|
|
25
|
+
SelectedStatesEnum[SelectedStatesEnum["CT"] = 'CT'] = "CT";
|
|
26
|
+
SelectedStatesEnum[SelectedStatesEnum["DC"] = 'DC'] = "DC";
|
|
27
|
+
SelectedStatesEnum[SelectedStatesEnum["DE"] = 'DE'] = "DE";
|
|
28
|
+
SelectedStatesEnum[SelectedStatesEnum["FL"] = 'FL'] = "FL";
|
|
29
|
+
SelectedStatesEnum[SelectedStatesEnum["GA"] = 'GA'] = "GA";
|
|
30
|
+
SelectedStatesEnum[SelectedStatesEnum["HI"] = 'HI'] = "HI";
|
|
31
|
+
SelectedStatesEnum[SelectedStatesEnum["IA"] = 'IA'] = "IA";
|
|
32
|
+
SelectedStatesEnum[SelectedStatesEnum["ID"] = 'ID'] = "ID";
|
|
33
|
+
SelectedStatesEnum[SelectedStatesEnum["IL"] = 'IL'] = "IL";
|
|
34
|
+
SelectedStatesEnum[SelectedStatesEnum["IN"] = 'IN'] = "IN";
|
|
35
|
+
SelectedStatesEnum[SelectedStatesEnum["KS"] = 'KS'] = "KS";
|
|
36
|
+
SelectedStatesEnum[SelectedStatesEnum["KY"] = 'KY'] = "KY";
|
|
37
|
+
SelectedStatesEnum[SelectedStatesEnum["LA"] = 'LA'] = "LA";
|
|
38
|
+
SelectedStatesEnum[SelectedStatesEnum["MA"] = 'MA'] = "MA";
|
|
39
|
+
SelectedStatesEnum[SelectedStatesEnum["MD"] = 'MD'] = "MD";
|
|
40
|
+
SelectedStatesEnum[SelectedStatesEnum["ME"] = 'ME'] = "ME";
|
|
41
|
+
SelectedStatesEnum[SelectedStatesEnum["MI"] = 'MI'] = "MI";
|
|
42
|
+
SelectedStatesEnum[SelectedStatesEnum["MN"] = 'MN'] = "MN";
|
|
43
|
+
SelectedStatesEnum[SelectedStatesEnum["MO"] = 'MO'] = "MO";
|
|
44
|
+
SelectedStatesEnum[SelectedStatesEnum["MS"] = 'MS'] = "MS";
|
|
45
|
+
SelectedStatesEnum[SelectedStatesEnum["MT"] = 'MT'] = "MT";
|
|
46
|
+
SelectedStatesEnum[SelectedStatesEnum["NC"] = 'NC'] = "NC";
|
|
47
|
+
SelectedStatesEnum[SelectedStatesEnum["ND"] = 'ND'] = "ND";
|
|
48
|
+
SelectedStatesEnum[SelectedStatesEnum["NE"] = 'NE'] = "NE";
|
|
49
|
+
SelectedStatesEnum[SelectedStatesEnum["NH"] = 'NH'] = "NH";
|
|
50
|
+
SelectedStatesEnum[SelectedStatesEnum["NJ"] = 'NJ'] = "NJ";
|
|
51
|
+
SelectedStatesEnum[SelectedStatesEnum["NM"] = 'NM'] = "NM";
|
|
52
|
+
SelectedStatesEnum[SelectedStatesEnum["NV"] = 'NV'] = "NV";
|
|
53
|
+
SelectedStatesEnum[SelectedStatesEnum["NY"] = 'NY'] = "NY";
|
|
54
|
+
SelectedStatesEnum[SelectedStatesEnum["OH"] = 'OH'] = "OH";
|
|
55
|
+
SelectedStatesEnum[SelectedStatesEnum["OK"] = 'OK'] = "OK";
|
|
56
|
+
SelectedStatesEnum[SelectedStatesEnum["OR"] = 'OR'] = "OR";
|
|
57
|
+
SelectedStatesEnum[SelectedStatesEnum["PA"] = 'PA'] = "PA";
|
|
58
|
+
SelectedStatesEnum[SelectedStatesEnum["RI"] = 'RI'] = "RI";
|
|
59
|
+
SelectedStatesEnum[SelectedStatesEnum["SC"] = 'SC'] = "SC";
|
|
60
|
+
SelectedStatesEnum[SelectedStatesEnum["SD"] = 'SD'] = "SD";
|
|
61
|
+
SelectedStatesEnum[SelectedStatesEnum["TN"] = 'TN'] = "TN";
|
|
62
|
+
SelectedStatesEnum[SelectedStatesEnum["TX"] = 'TX'] = "TX";
|
|
63
|
+
SelectedStatesEnum[SelectedStatesEnum["UT"] = 'UT'] = "UT";
|
|
64
|
+
SelectedStatesEnum[SelectedStatesEnum["VA"] = 'VA'] = "VA";
|
|
65
|
+
SelectedStatesEnum[SelectedStatesEnum["VT"] = 'VT'] = "VT";
|
|
66
|
+
SelectedStatesEnum[SelectedStatesEnum["WA"] = 'WA'] = "WA";
|
|
67
|
+
SelectedStatesEnum[SelectedStatesEnum["WI"] = 'WI'] = "WI";
|
|
68
|
+
SelectedStatesEnum[SelectedStatesEnum["WV"] = 'WV'] = "WV";
|
|
69
|
+
SelectedStatesEnum[SelectedStatesEnum["WY"] = 'WY'] = "WY";
|
|
70
|
+
})(SelectedStatesEnum = GetCitationsWithMissingFieldsRequest.SelectedStatesEnum || (GetCitationsWithMissingFieldsRequest.SelectedStatesEnum = {}));
|
|
71
|
+
})(GetCitationsWithMissingFieldsRequest = exports.GetCitationsWithMissingFieldsRequest || (exports.GetCitationsWithMissingFieldsRequest = {}));
|
|
@@ -12,4 +12,8 @@
|
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface GetCitationsWithMissingFieldsResponse {
|
|
14
14
|
"citations"?: Array<models.CitationWithMissingFields>;
|
|
15
|
+
"citationsWithMissingClientName"?: Array<models.CitationWithMissingFields>;
|
|
16
|
+
"citationsWithMissingCourt"?: Array<models.CitationWithMissingFields>;
|
|
17
|
+
"missingClientNameCount"?: number;
|
|
18
|
+
"missingCourtCount"?: number;
|
|
15
19
|
}
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface LawfirmInboxMessageDomain {
|
|
14
|
+
"authorFirstName"?: string;
|
|
15
|
+
"authorLastName"?: string;
|
|
14
16
|
"caseId"?: string;
|
|
15
17
|
"caseStatus"?: LawfirmInboxMessageDomain.CaseStatusEnum;
|
|
16
18
|
"caseStatusCategory"?: LawfirmInboxMessageDomain.CaseStatusCategoryEnum;
|
|
@@ -18,7 +20,10 @@ export interface LawfirmInboxMessageDomain {
|
|
|
18
20
|
"citationIssueDateUtc"?: models.TimestampRes;
|
|
19
21
|
"clientFirstName"?: string;
|
|
20
22
|
"clientLastName"?: string;
|
|
23
|
+
"courtDateUtc"?: string;
|
|
21
24
|
"courtName"?: string;
|
|
25
|
+
"customerFirstName"?: string;
|
|
26
|
+
"customerLastName"?: string;
|
|
22
27
|
"lawfirmCaseDecisionStatus"?: LawfirmInboxMessageDomain.LawfirmCaseDecisionStatusEnum;
|
|
23
28
|
"messageBody"?: string;
|
|
24
29
|
"messageSentDateUtc"?: models.TimestampRes;
|
|
@@ -14,6 +14,7 @@ export interface LawfirmSettingsDomainReq {
|
|
|
14
14
|
"acceptsAccidents"?: boolean;
|
|
15
15
|
"acceptsPastDue"?: boolean;
|
|
16
16
|
"acceptsPaymentPlans"?: boolean;
|
|
17
|
+
"allowReviewReplies"?: boolean;
|
|
17
18
|
"defaultTrafficTicketFee"?: number;
|
|
18
19
|
"isVacationMode"?: boolean;
|
|
19
20
|
"latestCaseAssignmentDateUtc"?: models.TimestampReq;
|
|
@@ -14,6 +14,7 @@ export interface LawfirmSettingsDomainRes {
|
|
|
14
14
|
"acceptsAccidents"?: boolean;
|
|
15
15
|
"acceptsPastDue"?: boolean;
|
|
16
16
|
"acceptsPaymentPlans"?: boolean;
|
|
17
|
+
"allowReviewReplies"?: boolean;
|
|
17
18
|
"defaultTrafficTicketFee"?: number;
|
|
18
19
|
"isVacationMode"?: boolean;
|
|
19
20
|
"latestCaseAssignmentDateUtc"?: models.TimestampRes;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otr-app/shared-backend-generated-client",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"main": "dist/otrBackendService.min.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"/dist"
|
|
@@ -15,10 +15,9 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"download:devo": "curl https://otr-backend-service-us-devo.offtherecord.com/v2/api-docs -o api/otr-service.json",
|
|
17
17
|
"clean-source": "find dist/typescript -type f | grep -v \"\\.d\\.ts\\|\\.js\" | xargs rm",
|
|
18
|
-
"generate:devo
|
|
19
|
-
"generate:
|
|
20
|
-
"
|
|
21
|
-
"preinstall": "npm i @openapitools/openapi-generator-cli -g && openapi-generator-cli version-manager set 4.3.1"
|
|
18
|
+
"generate:devo": "npm run download:devo && gulp codegen && openapi-generator-cli generate -i api/otr-service.json -o dist/typescript -g typescript-angularjs && tsc && npm run clean-source",
|
|
19
|
+
"generate:local": "curl http://localhost:8080/v2/api-docs -o api/otr-service.json && gulp codegen && openapi-generator-cli generate -i api/otr-service.json -o dist/typescript -g typescript-angularjs && tsc && npm run clean-source",
|
|
20
|
+
"bootstrap": "npm i @openapitools/openapi-generator-cli -g && openapi-generator-cli version-manager set 4.3.1"
|
|
22
21
|
},
|
|
23
22
|
"devDependencies": {
|
|
24
23
|
"@types/node": "^18.0.3",
|