@otr-app/shared-backend-generated-client 2.3.124 → 2.3.126
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 +11 -2
- package/dist/angular/api/api.ts +5 -3
- package/dist/angular/api/auditLogController.service.ts +170 -0
- package/dist/angular/api/watchlistsController.service.ts +243 -0
- package/dist/angular/api.module.ts +2 -1
- package/dist/angular/model/addressEntity.ts +47 -0
- package/dist/angular/model/auditLog.ts +29 -0
- package/dist/angular/model/caseItem.ts +65 -0
- package/dist/angular/model/citationAuditLog.ts +35 -0
- package/dist/angular/model/countyEntity.ts +76 -0
- package/dist/angular/model/courtEntity.ts +42 -0
- package/dist/angular/model/getCitationAuditLogsResponse.ts +19 -0
- package/dist/angular/model/lawfirmItem.ts +78 -0
- package/dist/angular/model/listUserWatchlistsResponse.ts +3 -2
- package/dist/angular/model/models.ts +9 -1
- package/dist/angular/model/userItem.ts +20 -0
- package/dist/angular/model/watchlistItemsModel.ts +13 -1
- package/dist/otrBackendService.js +54 -0
- package/dist/otrBackendService.min.js +5 -5
- package/dist/typescript/api/AuditLogControllerApi.d.ts +30 -0
- package/dist/typescript/api/AuditLogControllerApi.js +66 -0
- package/dist/typescript/api/AuditLogControllerApi.ts +73 -0
- package/dist/typescript/api/WatchlistsControllerApi.d.ts +37 -0
- package/dist/typescript/api/WatchlistsControllerApi.js +97 -0
- package/dist/typescript/api/WatchlistsControllerApi.ts +109 -0
- package/dist/typescript/api/api.d.ts +5 -3
- package/dist/typescript/api/api.js +5 -3
- package/dist/typescript/api/api.ts +5 -3
- package/dist/typescript/api.module.js +2 -1
- package/dist/typescript/api.module.ts +2 -1
- package/dist/typescript/model/AddressEntity.d.ts +42 -0
- package/dist/typescript/model/AddressEntity.js +30 -0
- package/dist/typescript/model/AddressEntity.ts +45 -0
- package/dist/typescript/model/AuditLog.d.ts +24 -0
- package/dist/typescript/model/AuditLog.js +22 -0
- package/dist/typescript/model/AuditLog.ts +28 -0
- package/dist/typescript/model/CaseItem.d.ts +60 -0
- package/dist/typescript/model/CaseItem.js +57 -0
- package/dist/typescript/model/CaseItem.ts +63 -0
- package/dist/typescript/model/CitationAuditLog.d.ts +29 -0
- package/dist/typescript/model/CitationAuditLog.js +26 -0
- package/dist/typescript/model/CitationAuditLog.ts +32 -0
- package/dist/typescript/model/CountyEntity.d.ts +71 -0
- package/dist/typescript/model/CountyEntity.js +71 -0
- package/dist/typescript/model/CountyEntity.ts +75 -0
- package/dist/typescript/model/CourtEntity.d.ts +36 -0
- package/dist/typescript/model/CourtEntity.js +28 -0
- package/dist/typescript/model/CourtEntity.ts +39 -0
- package/dist/typescript/model/GetCitationAuditLogsResponse.d.ts +16 -0
- package/dist/typescript/model/GetCitationAuditLogsResponse.js +13 -0
- package/dist/typescript/model/GetCitationAuditLogsResponse.ts +19 -0
- package/dist/typescript/model/LawfirmItem.d.ts +73 -0
- package/dist/typescript/model/LawfirmItem.js +71 -0
- package/dist/typescript/model/LawfirmItem.ts +77 -0
- package/dist/typescript/model/ListUserWatchlistsResponse.d.ts +2 -1
- package/dist/typescript/model/ListUserWatchlistsResponse.ts +2 -1
- package/dist/typescript/model/UserItem.d.ts +17 -0
- package/dist/typescript/model/UserItem.js +13 -0
- package/dist/typescript/model/UserItem.ts +21 -0
- package/dist/typescript/model/WatchlistItemsModel.d.ts +10 -1
- package/dist/typescript/model/WatchlistItemsModel.js +6 -0
- package/dist/typescript/model/WatchlistItemsModel.ts +9 -1
- package/dist/typescript/model/models.d.ts +9 -1
- package/dist/typescript/model/models.js +9 -1
- package/dist/typescript/model/models.ts +9 -1
- package/package.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.CourtEntity = void 0;
|
|
15
|
+
var CourtEntity;
|
|
16
|
+
(function (CourtEntity) {
|
|
17
|
+
var CourtTypeEnum;
|
|
18
|
+
(function (CourtTypeEnum) {
|
|
19
|
+
CourtTypeEnum[CourtTypeEnum["CIRCUIT"] = 'CIRCUIT'] = "CIRCUIT";
|
|
20
|
+
CourtTypeEnum[CourtTypeEnum["COUNTYCLERK"] = 'COUNTY_CLERK'] = "COUNTYCLERK";
|
|
21
|
+
CourtTypeEnum[CourtTypeEnum["DISTRICT"] = 'DISTRICT'] = "DISTRICT";
|
|
22
|
+
CourtTypeEnum[CourtTypeEnum["JUVENILE"] = 'JUVENILE'] = "JUVENILE";
|
|
23
|
+
CourtTypeEnum[CourtTypeEnum["MUNICIPAL"] = 'MUNICIPAL'] = "MUNICIPAL";
|
|
24
|
+
CourtTypeEnum[CourtTypeEnum["PROBATION"] = 'PROBATION'] = "PROBATION";
|
|
25
|
+
CourtTypeEnum[CourtTypeEnum["SUPERIOR"] = 'SUPERIOR'] = "SUPERIOR";
|
|
26
|
+
CourtTypeEnum[CourtTypeEnum["VIOLATIONSBUREAU"] = 'VIOLATIONS_BUREAU'] = "VIOLATIONSBUREAU";
|
|
27
|
+
})(CourtTypeEnum = CourtEntity.CourtTypeEnum || (CourtEntity.CourtTypeEnum = {}));
|
|
28
|
+
})(CourtEntity = exports.CourtEntity || (exports.CourtEntity = {}));
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
import * as models from './models';
|
|
14
|
+
|
|
15
|
+
export interface CourtEntity {
|
|
16
|
+
"address"?: models.AddressEntity;
|
|
17
|
+
"county"?: models.CountyEntity;
|
|
18
|
+
"courtCode"?: string;
|
|
19
|
+
"courtId"?: number;
|
|
20
|
+
"courtName"?: string;
|
|
21
|
+
"courtNameAdditional"?: string;
|
|
22
|
+
"courtType"?: CourtEntity.CourtTypeEnum;
|
|
23
|
+
"lookupCaseInfoLink"?: string;
|
|
24
|
+
"otrTargetFee"?: number;
|
|
25
|
+
"website"?: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export namespace CourtEntity {
|
|
29
|
+
export enum CourtTypeEnum {
|
|
30
|
+
CIRCUIT = <any> 'CIRCUIT',
|
|
31
|
+
COUNTYCLERK = <any> 'COUNTY_CLERK',
|
|
32
|
+
DISTRICT = <any> 'DISTRICT',
|
|
33
|
+
JUVENILE = <any> 'JUVENILE',
|
|
34
|
+
MUNICIPAL = <any> 'MUNICIPAL',
|
|
35
|
+
PROBATION = <any> 'PROBATION',
|
|
36
|
+
SUPERIOR = <any> 'SUPERIOR',
|
|
37
|
+
VIOLATIONSBUREAU = <any> 'VIOLATIONS_BUREAU'
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import * as models from './models';
|
|
13
|
+
export interface GetCitationAuditLogsResponse {
|
|
14
|
+
"auditLogs"?: Array<models.CitationAuditLog>;
|
|
15
|
+
"citationId"?: number;
|
|
16
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
import * as models from './models';
|
|
14
|
+
|
|
15
|
+
export interface GetCitationAuditLogsResponse {
|
|
16
|
+
"auditLogs"?: Array<models.CitationAuditLog>;
|
|
17
|
+
"citationId"?: number;
|
|
18
|
+
}
|
|
19
|
+
|
|
@@ -0,0 +1,73 @@
|
|
|
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 LawfirmItem {
|
|
13
|
+
"lawfirmName"?: string;
|
|
14
|
+
"lawfirmStatus"?: string;
|
|
15
|
+
"profilePictureUrl"?: string;
|
|
16
|
+
"statesServed"?: Array<LawfirmItem.StatesServedEnum>;
|
|
17
|
+
"vacationMode"?: boolean;
|
|
18
|
+
}
|
|
19
|
+
export declare namespace LawfirmItem {
|
|
20
|
+
enum StatesServedEnum {
|
|
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
|
+
}
|
|
73
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.LawfirmItem = void 0;
|
|
15
|
+
var LawfirmItem;
|
|
16
|
+
(function (LawfirmItem) {
|
|
17
|
+
var StatesServedEnum;
|
|
18
|
+
(function (StatesServedEnum) {
|
|
19
|
+
StatesServedEnum[StatesServedEnum["AK"] = 'AK'] = "AK";
|
|
20
|
+
StatesServedEnum[StatesServedEnum["AL"] = 'AL'] = "AL";
|
|
21
|
+
StatesServedEnum[StatesServedEnum["AR"] = 'AR'] = "AR";
|
|
22
|
+
StatesServedEnum[StatesServedEnum["AZ"] = 'AZ'] = "AZ";
|
|
23
|
+
StatesServedEnum[StatesServedEnum["CA"] = 'CA'] = "CA";
|
|
24
|
+
StatesServedEnum[StatesServedEnum["CO"] = 'CO'] = "CO";
|
|
25
|
+
StatesServedEnum[StatesServedEnum["CT"] = 'CT'] = "CT";
|
|
26
|
+
StatesServedEnum[StatesServedEnum["DC"] = 'DC'] = "DC";
|
|
27
|
+
StatesServedEnum[StatesServedEnum["DE"] = 'DE'] = "DE";
|
|
28
|
+
StatesServedEnum[StatesServedEnum["FL"] = 'FL'] = "FL";
|
|
29
|
+
StatesServedEnum[StatesServedEnum["GA"] = 'GA'] = "GA";
|
|
30
|
+
StatesServedEnum[StatesServedEnum["HI"] = 'HI'] = "HI";
|
|
31
|
+
StatesServedEnum[StatesServedEnum["IA"] = 'IA'] = "IA";
|
|
32
|
+
StatesServedEnum[StatesServedEnum["ID"] = 'ID'] = "ID";
|
|
33
|
+
StatesServedEnum[StatesServedEnum["IL"] = 'IL'] = "IL";
|
|
34
|
+
StatesServedEnum[StatesServedEnum["IN"] = 'IN'] = "IN";
|
|
35
|
+
StatesServedEnum[StatesServedEnum["KS"] = 'KS'] = "KS";
|
|
36
|
+
StatesServedEnum[StatesServedEnum["KY"] = 'KY'] = "KY";
|
|
37
|
+
StatesServedEnum[StatesServedEnum["LA"] = 'LA'] = "LA";
|
|
38
|
+
StatesServedEnum[StatesServedEnum["MA"] = 'MA'] = "MA";
|
|
39
|
+
StatesServedEnum[StatesServedEnum["MD"] = 'MD'] = "MD";
|
|
40
|
+
StatesServedEnum[StatesServedEnum["ME"] = 'ME'] = "ME";
|
|
41
|
+
StatesServedEnum[StatesServedEnum["MI"] = 'MI'] = "MI";
|
|
42
|
+
StatesServedEnum[StatesServedEnum["MN"] = 'MN'] = "MN";
|
|
43
|
+
StatesServedEnum[StatesServedEnum["MO"] = 'MO'] = "MO";
|
|
44
|
+
StatesServedEnum[StatesServedEnum["MS"] = 'MS'] = "MS";
|
|
45
|
+
StatesServedEnum[StatesServedEnum["MT"] = 'MT'] = "MT";
|
|
46
|
+
StatesServedEnum[StatesServedEnum["NC"] = 'NC'] = "NC";
|
|
47
|
+
StatesServedEnum[StatesServedEnum["ND"] = 'ND'] = "ND";
|
|
48
|
+
StatesServedEnum[StatesServedEnum["NE"] = 'NE'] = "NE";
|
|
49
|
+
StatesServedEnum[StatesServedEnum["NH"] = 'NH'] = "NH";
|
|
50
|
+
StatesServedEnum[StatesServedEnum["NJ"] = 'NJ'] = "NJ";
|
|
51
|
+
StatesServedEnum[StatesServedEnum["NM"] = 'NM'] = "NM";
|
|
52
|
+
StatesServedEnum[StatesServedEnum["NV"] = 'NV'] = "NV";
|
|
53
|
+
StatesServedEnum[StatesServedEnum["NY"] = 'NY'] = "NY";
|
|
54
|
+
StatesServedEnum[StatesServedEnum["OH"] = 'OH'] = "OH";
|
|
55
|
+
StatesServedEnum[StatesServedEnum["OK"] = 'OK'] = "OK";
|
|
56
|
+
StatesServedEnum[StatesServedEnum["OR"] = 'OR'] = "OR";
|
|
57
|
+
StatesServedEnum[StatesServedEnum["PA"] = 'PA'] = "PA";
|
|
58
|
+
StatesServedEnum[StatesServedEnum["RI"] = 'RI'] = "RI";
|
|
59
|
+
StatesServedEnum[StatesServedEnum["SC"] = 'SC'] = "SC";
|
|
60
|
+
StatesServedEnum[StatesServedEnum["SD"] = 'SD'] = "SD";
|
|
61
|
+
StatesServedEnum[StatesServedEnum["TN"] = 'TN'] = "TN";
|
|
62
|
+
StatesServedEnum[StatesServedEnum["TX"] = 'TX'] = "TX";
|
|
63
|
+
StatesServedEnum[StatesServedEnum["UT"] = 'UT'] = "UT";
|
|
64
|
+
StatesServedEnum[StatesServedEnum["VA"] = 'VA'] = "VA";
|
|
65
|
+
StatesServedEnum[StatesServedEnum["VT"] = 'VT'] = "VT";
|
|
66
|
+
StatesServedEnum[StatesServedEnum["WA"] = 'WA'] = "WA";
|
|
67
|
+
StatesServedEnum[StatesServedEnum["WI"] = 'WI'] = "WI";
|
|
68
|
+
StatesServedEnum[StatesServedEnum["WV"] = 'WV'] = "WV";
|
|
69
|
+
StatesServedEnum[StatesServedEnum["WY"] = 'WY'] = "WY";
|
|
70
|
+
})(StatesServedEnum = LawfirmItem.StatesServedEnum || (LawfirmItem.StatesServedEnum = {}));
|
|
71
|
+
})(LawfirmItem = exports.LawfirmItem || (exports.LawfirmItem = {}));
|
|
@@ -0,0 +1,77 @@
|
|
|
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
|
+
import * as models from './models';
|
|
14
|
+
|
|
15
|
+
export interface LawfirmItem {
|
|
16
|
+
"lawfirmName"?: string;
|
|
17
|
+
"lawfirmStatus"?: string;
|
|
18
|
+
"profilePictureUrl"?: string;
|
|
19
|
+
"statesServed"?: Array<LawfirmItem.StatesServedEnum>;
|
|
20
|
+
"vacationMode"?: boolean;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export namespace LawfirmItem {
|
|
24
|
+
export enum StatesServedEnum {
|
|
25
|
+
AK = <any> 'AK',
|
|
26
|
+
AL = <any> 'AL',
|
|
27
|
+
AR = <any> 'AR',
|
|
28
|
+
AZ = <any> 'AZ',
|
|
29
|
+
CA = <any> 'CA',
|
|
30
|
+
CO = <any> 'CO',
|
|
31
|
+
CT = <any> 'CT',
|
|
32
|
+
DC = <any> 'DC',
|
|
33
|
+
DE = <any> 'DE',
|
|
34
|
+
FL = <any> 'FL',
|
|
35
|
+
GA = <any> 'GA',
|
|
36
|
+
HI = <any> 'HI',
|
|
37
|
+
IA = <any> 'IA',
|
|
38
|
+
ID = <any> 'ID',
|
|
39
|
+
IL = <any> 'IL',
|
|
40
|
+
IN = <any> 'IN',
|
|
41
|
+
KS = <any> 'KS',
|
|
42
|
+
KY = <any> 'KY',
|
|
43
|
+
LA = <any> 'LA',
|
|
44
|
+
MA = <any> 'MA',
|
|
45
|
+
MD = <any> 'MD',
|
|
46
|
+
ME = <any> 'ME',
|
|
47
|
+
MI = <any> 'MI',
|
|
48
|
+
MN = <any> 'MN',
|
|
49
|
+
MO = <any> 'MO',
|
|
50
|
+
MS = <any> 'MS',
|
|
51
|
+
MT = <any> 'MT',
|
|
52
|
+
NC = <any> 'NC',
|
|
53
|
+
ND = <any> 'ND',
|
|
54
|
+
NE = <any> 'NE',
|
|
55
|
+
NH = <any> 'NH',
|
|
56
|
+
NJ = <any> 'NJ',
|
|
57
|
+
NM = <any> 'NM',
|
|
58
|
+
NV = <any> 'NV',
|
|
59
|
+
NY = <any> 'NY',
|
|
60
|
+
OH = <any> 'OH',
|
|
61
|
+
OK = <any> 'OK',
|
|
62
|
+
OR = <any> 'OR',
|
|
63
|
+
PA = <any> 'PA',
|
|
64
|
+
RI = <any> 'RI',
|
|
65
|
+
SC = <any> 'SC',
|
|
66
|
+
SD = <any> 'SD',
|
|
67
|
+
TN = <any> 'TN',
|
|
68
|
+
TX = <any> 'TX',
|
|
69
|
+
UT = <any> 'UT',
|
|
70
|
+
VA = <any> 'VA',
|
|
71
|
+
VT = <any> 'VT',
|
|
72
|
+
WA = <any> 'WA',
|
|
73
|
+
WI = <any> 'WI',
|
|
74
|
+
WV = <any> 'WV',
|
|
75
|
+
WY = <any> 'WY'
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 UserItem {
|
|
13
|
+
"firstName"?: string;
|
|
14
|
+
"isGhost"?: boolean;
|
|
15
|
+
"lastName"?: string;
|
|
16
|
+
"profilePictureUrl"?: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
import * as models from './models';
|
|
14
|
+
|
|
15
|
+
export interface UserItem {
|
|
16
|
+
"firstName"?: string;
|
|
17
|
+
"isGhost"?: boolean;
|
|
18
|
+
"lastName"?: string;
|
|
19
|
+
"profilePictureUrl"?: string;
|
|
20
|
+
}
|
|
21
|
+
|
|
@@ -9,15 +9,24 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import * as models from './models';
|
|
12
13
|
export interface WatchlistItemsModel {
|
|
14
|
+
"caseItem"?: models.CaseItem;
|
|
13
15
|
"entityId"?: string;
|
|
14
|
-
"entityType"?:
|
|
16
|
+
"entityType"?: WatchlistItemsModel.EntityTypeEnum;
|
|
15
17
|
"isDeleted"?: boolean;
|
|
18
|
+
"lawfirmItem"?: models.LawfirmItem;
|
|
16
19
|
"note"?: string;
|
|
17
20
|
"priority"?: WatchlistItemsModel.PriorityEnum;
|
|
21
|
+
"userItem"?: models.UserItem;
|
|
18
22
|
"watchlistItemId"?: number;
|
|
19
23
|
}
|
|
20
24
|
export declare namespace WatchlistItemsModel {
|
|
25
|
+
enum EntityTypeEnum {
|
|
26
|
+
CASE,
|
|
27
|
+
LAWFIRM,
|
|
28
|
+
USER
|
|
29
|
+
}
|
|
21
30
|
enum PriorityEnum {
|
|
22
31
|
HIGH,
|
|
23
32
|
LOW,
|
|
@@ -14,6 +14,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
14
14
|
exports.WatchlistItemsModel = void 0;
|
|
15
15
|
var WatchlistItemsModel;
|
|
16
16
|
(function (WatchlistItemsModel) {
|
|
17
|
+
var EntityTypeEnum;
|
|
18
|
+
(function (EntityTypeEnum) {
|
|
19
|
+
EntityTypeEnum[EntityTypeEnum["CASE"] = 'CASE'] = "CASE";
|
|
20
|
+
EntityTypeEnum[EntityTypeEnum["LAWFIRM"] = 'LAWFIRM'] = "LAWFIRM";
|
|
21
|
+
EntityTypeEnum[EntityTypeEnum["USER"] = 'USER'] = "USER";
|
|
22
|
+
})(EntityTypeEnum = WatchlistItemsModel.EntityTypeEnum || (WatchlistItemsModel.EntityTypeEnum = {}));
|
|
17
23
|
var PriorityEnum;
|
|
18
24
|
(function (PriorityEnum) {
|
|
19
25
|
PriorityEnum[PriorityEnum["HIGH"] = 'HIGH'] = "HIGH";
|
|
@@ -13,15 +13,23 @@
|
|
|
13
13
|
import * as models from './models';
|
|
14
14
|
|
|
15
15
|
export interface WatchlistItemsModel {
|
|
16
|
+
"caseItem"?: models.CaseItem;
|
|
16
17
|
"entityId"?: string;
|
|
17
|
-
"entityType"?:
|
|
18
|
+
"entityType"?: WatchlistItemsModel.EntityTypeEnum;
|
|
18
19
|
"isDeleted"?: boolean;
|
|
20
|
+
"lawfirmItem"?: models.LawfirmItem;
|
|
19
21
|
"note"?: string;
|
|
20
22
|
"priority"?: WatchlistItemsModel.PriorityEnum;
|
|
23
|
+
"userItem"?: models.UserItem;
|
|
21
24
|
"watchlistItemId"?: number;
|
|
22
25
|
}
|
|
23
26
|
|
|
24
27
|
export namespace WatchlistItemsModel {
|
|
28
|
+
export enum EntityTypeEnum {
|
|
29
|
+
CASE = <any> 'CASE',
|
|
30
|
+
LAWFIRM = <any> 'LAWFIRM',
|
|
31
|
+
USER = <any> 'USER'
|
|
32
|
+
}
|
|
25
33
|
export enum PriorityEnum {
|
|
26
34
|
HIGH = <any> 'HIGH',
|
|
27
35
|
LOW = <any> 'LOW',
|
|
@@ -27,6 +27,7 @@ export * from './AddViolationsToCitationRequest';
|
|
|
27
27
|
export * from './AddressDomain';
|
|
28
28
|
export * from './AddressDomainReq';
|
|
29
29
|
export * from './AddressDomainRes';
|
|
30
|
+
export * from './AddressEntity';
|
|
30
31
|
export * from './AgentBookingStats';
|
|
31
32
|
export * from './AgentBookingsSummary';
|
|
32
33
|
export * from './AggregateBySource';
|
|
@@ -39,6 +40,7 @@ export * from './AppEventCreateRequest';
|
|
|
39
40
|
export * from './AppearanceAttorneyDomain';
|
|
40
41
|
export * from './AppleLoginRequest';
|
|
41
42
|
export * from './AssignCitationOwnerRequest';
|
|
43
|
+
export * from './AuditLog';
|
|
42
44
|
export * from './AuthorModel';
|
|
43
45
|
export * from './AuthorizeChargeForCasePaymentRequest';
|
|
44
46
|
export * from './AuthorizeChargeForCasePaymentResponse';
|
|
@@ -74,6 +76,7 @@ export * from './CaseAlert';
|
|
|
74
76
|
export * from './CaseBookingsStats';
|
|
75
77
|
export * from './CaseChargeResponsePojo';
|
|
76
78
|
export * from './CaseCreationRequest';
|
|
79
|
+
export * from './CaseItem';
|
|
77
80
|
export * from './CaseLineItemDomainReq';
|
|
78
81
|
export * from './CaseLineItemDomainRes';
|
|
79
82
|
export * from './CaseLineItemsSummary';
|
|
@@ -99,6 +102,7 @@ export * from './ChangeUserPasswordRequest';
|
|
|
99
102
|
export * from './ChargeFeeToLawfirmRequest';
|
|
100
103
|
export * from './ChargeFeeToLawfirmResponse';
|
|
101
104
|
export * from './CitationAuditEventModel';
|
|
105
|
+
export * from './CitationAuditLog';
|
|
102
106
|
export * from './CitationInputRequest';
|
|
103
107
|
export * from './CitationModel';
|
|
104
108
|
export * from './CitationModelReq';
|
|
@@ -119,12 +123,14 @@ export * from './ConvertPdfToImageResponse';
|
|
|
119
123
|
export * from './CountryDomain';
|
|
120
124
|
export * from './CountryRegion';
|
|
121
125
|
export * from './CountyDomain';
|
|
126
|
+
export * from './CountyEntity';
|
|
122
127
|
export * from './CourtCoverageCountyRecord';
|
|
123
128
|
export * from './CourtCoverageRecord';
|
|
124
129
|
export * from './CourtCoverageStateRecord';
|
|
125
130
|
export * from './CourtDomain';
|
|
126
131
|
export * from './CourtDomainReq';
|
|
127
132
|
export * from './CourtDomainRes';
|
|
133
|
+
export * from './CourtEntity';
|
|
128
134
|
export * from './CourtInputRequest';
|
|
129
135
|
export * from './CourtResponseModel';
|
|
130
136
|
export * from './CoverageToRemove';
|
|
@@ -235,6 +241,7 @@ export * from './GetCasesWithCoverageObtainedResponse';
|
|
|
235
241
|
export * from './GetCasesWithMissingLawfirmPayoutsResponse';
|
|
236
242
|
export * from './GetCasesWithOverduePaymentsResponse';
|
|
237
243
|
export * from './GetCasesWithUncapturedChargesRequest';
|
|
244
|
+
export * from './GetCitationAuditLogsResponse';
|
|
238
245
|
export * from './GetCitationPhoneLeadsRequest';
|
|
239
246
|
export * from './GetCitationPhoneLeadsResponse';
|
|
240
247
|
export * from './GetCitationResponse';
|
|
@@ -368,6 +375,7 @@ export * from './LawfirmDocumentTemplate';
|
|
|
368
375
|
export * from './LawfirmDocumentTemplateResponse';
|
|
369
376
|
export * from './LawfirmFeeDomain';
|
|
370
377
|
export * from './LawfirmInboxMessageDomain';
|
|
378
|
+
export * from './LawfirmItem';
|
|
371
379
|
export * from './LawfirmLeadDomain';
|
|
372
380
|
export * from './LawfirmPayoutDomain';
|
|
373
381
|
export * from './LawfirmPictureRequest';
|
|
@@ -648,6 +656,7 @@ export * from './UserDetails';
|
|
|
648
656
|
export * from './UserDomain';
|
|
649
657
|
export * from './UserDomainReq';
|
|
650
658
|
export * from './UserDomainRes';
|
|
659
|
+
export * from './UserItem';
|
|
651
660
|
export * from './UserRefLinkDomain';
|
|
652
661
|
export * from './UserReferralSourceTypeModel';
|
|
653
662
|
export * from './UserRegistrationStats';
|
|
@@ -657,7 +666,6 @@ export * from './UserSubscriptionPlanModelReq';
|
|
|
657
666
|
export * from './UserSubscriptionPlanModelRes';
|
|
658
667
|
export * from './UserToContact';
|
|
659
668
|
export * from './UserWatchlistsModel';
|
|
660
|
-
export * from './UserWatchlistsResponseModel';
|
|
661
669
|
export * from './ValidateDirectMailRequest';
|
|
662
670
|
export * from './ValidateDirectMailResponse';
|
|
663
671
|
export * from './ValidateUserEmailResponse';
|
|
@@ -39,6 +39,7 @@ __exportStar(require("./AddViolationsToCitationRequest"), exports);
|
|
|
39
39
|
__exportStar(require("./AddressDomain"), exports);
|
|
40
40
|
__exportStar(require("./AddressDomainReq"), exports);
|
|
41
41
|
__exportStar(require("./AddressDomainRes"), exports);
|
|
42
|
+
__exportStar(require("./AddressEntity"), exports);
|
|
42
43
|
__exportStar(require("./AgentBookingStats"), exports);
|
|
43
44
|
__exportStar(require("./AgentBookingsSummary"), exports);
|
|
44
45
|
__exportStar(require("./AggregateBySource"), exports);
|
|
@@ -51,6 +52,7 @@ __exportStar(require("./AppEventCreateRequest"), exports);
|
|
|
51
52
|
__exportStar(require("./AppearanceAttorneyDomain"), exports);
|
|
52
53
|
__exportStar(require("./AppleLoginRequest"), exports);
|
|
53
54
|
__exportStar(require("./AssignCitationOwnerRequest"), exports);
|
|
55
|
+
__exportStar(require("./AuditLog"), exports);
|
|
54
56
|
__exportStar(require("./AuthorModel"), exports);
|
|
55
57
|
__exportStar(require("./AuthorizeChargeForCasePaymentRequest"), exports);
|
|
56
58
|
__exportStar(require("./AuthorizeChargeForCasePaymentResponse"), exports);
|
|
@@ -86,6 +88,7 @@ __exportStar(require("./CaseAlert"), exports);
|
|
|
86
88
|
__exportStar(require("./CaseBookingsStats"), exports);
|
|
87
89
|
__exportStar(require("./CaseChargeResponsePojo"), exports);
|
|
88
90
|
__exportStar(require("./CaseCreationRequest"), exports);
|
|
91
|
+
__exportStar(require("./CaseItem"), exports);
|
|
89
92
|
__exportStar(require("./CaseLineItemDomainReq"), exports);
|
|
90
93
|
__exportStar(require("./CaseLineItemDomainRes"), exports);
|
|
91
94
|
__exportStar(require("./CaseLineItemsSummary"), exports);
|
|
@@ -111,6 +114,7 @@ __exportStar(require("./ChangeUserPasswordRequest"), exports);
|
|
|
111
114
|
__exportStar(require("./ChargeFeeToLawfirmRequest"), exports);
|
|
112
115
|
__exportStar(require("./ChargeFeeToLawfirmResponse"), exports);
|
|
113
116
|
__exportStar(require("./CitationAuditEventModel"), exports);
|
|
117
|
+
__exportStar(require("./CitationAuditLog"), exports);
|
|
114
118
|
__exportStar(require("./CitationInputRequest"), exports);
|
|
115
119
|
__exportStar(require("./CitationModel"), exports);
|
|
116
120
|
__exportStar(require("./CitationModelReq"), exports);
|
|
@@ -131,12 +135,14 @@ __exportStar(require("./ConvertPdfToImageResponse"), exports);
|
|
|
131
135
|
__exportStar(require("./CountryDomain"), exports);
|
|
132
136
|
__exportStar(require("./CountryRegion"), exports);
|
|
133
137
|
__exportStar(require("./CountyDomain"), exports);
|
|
138
|
+
__exportStar(require("./CountyEntity"), exports);
|
|
134
139
|
__exportStar(require("./CourtCoverageCountyRecord"), exports);
|
|
135
140
|
__exportStar(require("./CourtCoverageRecord"), exports);
|
|
136
141
|
__exportStar(require("./CourtCoverageStateRecord"), exports);
|
|
137
142
|
__exportStar(require("./CourtDomain"), exports);
|
|
138
143
|
__exportStar(require("./CourtDomainReq"), exports);
|
|
139
144
|
__exportStar(require("./CourtDomainRes"), exports);
|
|
145
|
+
__exportStar(require("./CourtEntity"), exports);
|
|
140
146
|
__exportStar(require("./CourtInputRequest"), exports);
|
|
141
147
|
__exportStar(require("./CourtResponseModel"), exports);
|
|
142
148
|
__exportStar(require("./CoverageToRemove"), exports);
|
|
@@ -247,6 +253,7 @@ __exportStar(require("./GetCasesWithCoverageObtainedResponse"), exports);
|
|
|
247
253
|
__exportStar(require("./GetCasesWithMissingLawfirmPayoutsResponse"), exports);
|
|
248
254
|
__exportStar(require("./GetCasesWithOverduePaymentsResponse"), exports);
|
|
249
255
|
__exportStar(require("./GetCasesWithUncapturedChargesRequest"), exports);
|
|
256
|
+
__exportStar(require("./GetCitationAuditLogsResponse"), exports);
|
|
250
257
|
__exportStar(require("./GetCitationPhoneLeadsRequest"), exports);
|
|
251
258
|
__exportStar(require("./GetCitationPhoneLeadsResponse"), exports);
|
|
252
259
|
__exportStar(require("./GetCitationResponse"), exports);
|
|
@@ -380,6 +387,7 @@ __exportStar(require("./LawfirmDocumentTemplate"), exports);
|
|
|
380
387
|
__exportStar(require("./LawfirmDocumentTemplateResponse"), exports);
|
|
381
388
|
__exportStar(require("./LawfirmFeeDomain"), exports);
|
|
382
389
|
__exportStar(require("./LawfirmInboxMessageDomain"), exports);
|
|
390
|
+
__exportStar(require("./LawfirmItem"), exports);
|
|
383
391
|
__exportStar(require("./LawfirmLeadDomain"), exports);
|
|
384
392
|
__exportStar(require("./LawfirmPayoutDomain"), exports);
|
|
385
393
|
__exportStar(require("./LawfirmPictureRequest"), exports);
|
|
@@ -660,6 +668,7 @@ __exportStar(require("./UserDetails"), exports);
|
|
|
660
668
|
__exportStar(require("./UserDomain"), exports);
|
|
661
669
|
__exportStar(require("./UserDomainReq"), exports);
|
|
662
670
|
__exportStar(require("./UserDomainRes"), exports);
|
|
671
|
+
__exportStar(require("./UserItem"), exports);
|
|
663
672
|
__exportStar(require("./UserRefLinkDomain"), exports);
|
|
664
673
|
__exportStar(require("./UserReferralSourceTypeModel"), exports);
|
|
665
674
|
__exportStar(require("./UserRegistrationStats"), exports);
|
|
@@ -669,7 +678,6 @@ __exportStar(require("./UserSubscriptionPlanModelReq"), exports);
|
|
|
669
678
|
__exportStar(require("./UserSubscriptionPlanModelRes"), exports);
|
|
670
679
|
__exportStar(require("./UserToContact"), exports);
|
|
671
680
|
__exportStar(require("./UserWatchlistsModel"), exports);
|
|
672
|
-
__exportStar(require("./UserWatchlistsResponseModel"), exports);
|
|
673
681
|
__exportStar(require("./ValidateDirectMailRequest"), exports);
|
|
674
682
|
__exportStar(require("./ValidateDirectMailResponse"), exports);
|
|
675
683
|
__exportStar(require("./ValidateUserEmailResponse"), exports);
|