@otr-app/shared-backend-generated-client 2.3.123 → 2.3.125
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 +7 -2
- package/dist/angular/api/api.ts +3 -3
- package/dist/angular/api/watchlistsController.service.ts +243 -0
- package/dist/angular/api.module.ts +1 -1
- package/dist/angular/model/addressEntity.ts +47 -0
- package/dist/angular/model/caseItem.ts +65 -0
- package/dist/angular/model/countyEntity.ts +76 -0
- package/dist/angular/model/courtEntity.ts +42 -0
- package/dist/angular/model/customerOverduePayment.ts +1 -0
- package/dist/angular/model/lawfirmItem.ts +78 -0
- package/dist/angular/model/listUserWatchlistsResponse.ts +3 -2
- package/dist/angular/model/models.ts +6 -1
- package/dist/angular/model/userItem.ts +20 -0
- package/dist/angular/model/watchlistItemsModel.ts +13 -1
- package/dist/otrBackendService.js +5 -0
- package/dist/otrBackendService.min.js +1 -1
- 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 +3 -3
- package/dist/typescript/api/api.js +3 -3
- package/dist/typescript/api/api.ts +3 -3
- package/dist/typescript/api.module.js +1 -1
- package/dist/typescript/api.module.ts +1 -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/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/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/CustomerOverduePayment.d.ts +1 -0
- package/dist/typescript/model/CustomerOverduePayment.ts +1 -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 +6 -1
- package/dist/typescript/model/models.js +6 -1
- package/dist/typescript/model/models.ts +6 -1
- package/package.json +1 -1
|
@@ -0,0 +1,71 @@
|
|
|
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 CountyEntity {
|
|
13
|
+
"countyId"?: number;
|
|
14
|
+
"countyName"?: string;
|
|
15
|
+
"state"?: CountyEntity.StateEnum;
|
|
16
|
+
}
|
|
17
|
+
export declare namespace CountyEntity {
|
|
18
|
+
enum StateEnum {
|
|
19
|
+
AK,
|
|
20
|
+
AL,
|
|
21
|
+
AR,
|
|
22
|
+
AZ,
|
|
23
|
+
CA,
|
|
24
|
+
CO,
|
|
25
|
+
CT,
|
|
26
|
+
DC,
|
|
27
|
+
DE,
|
|
28
|
+
FL,
|
|
29
|
+
GA,
|
|
30
|
+
HI,
|
|
31
|
+
IA,
|
|
32
|
+
ID,
|
|
33
|
+
IL,
|
|
34
|
+
IN,
|
|
35
|
+
KS,
|
|
36
|
+
KY,
|
|
37
|
+
LA,
|
|
38
|
+
MA,
|
|
39
|
+
MD,
|
|
40
|
+
ME,
|
|
41
|
+
MI,
|
|
42
|
+
MN,
|
|
43
|
+
MO,
|
|
44
|
+
MS,
|
|
45
|
+
MT,
|
|
46
|
+
NC,
|
|
47
|
+
ND,
|
|
48
|
+
NE,
|
|
49
|
+
NH,
|
|
50
|
+
NJ,
|
|
51
|
+
NM,
|
|
52
|
+
NV,
|
|
53
|
+
NY,
|
|
54
|
+
OH,
|
|
55
|
+
OK,
|
|
56
|
+
OR,
|
|
57
|
+
PA,
|
|
58
|
+
RI,
|
|
59
|
+
SC,
|
|
60
|
+
SD,
|
|
61
|
+
TN,
|
|
62
|
+
TX,
|
|
63
|
+
UT,
|
|
64
|
+
VA,
|
|
65
|
+
VT,
|
|
66
|
+
WA,
|
|
67
|
+
WI,
|
|
68
|
+
WV,
|
|
69
|
+
WY
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -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.CountyEntity = void 0;
|
|
15
|
+
var CountyEntity;
|
|
16
|
+
(function (CountyEntity) {
|
|
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 = CountyEntity.StateEnum || (CountyEntity.StateEnum = {}));
|
|
71
|
+
})(CountyEntity = exports.CountyEntity || (exports.CountyEntity = {}));
|
|
@@ -0,0 +1,75 @@
|
|
|
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 CountyEntity {
|
|
16
|
+
"countyId"?: number;
|
|
17
|
+
"countyName"?: string;
|
|
18
|
+
"state"?: CountyEntity.StateEnum;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export namespace CountyEntity {
|
|
22
|
+
export enum StateEnum {
|
|
23
|
+
AK = <any> 'AK',
|
|
24
|
+
AL = <any> 'AL',
|
|
25
|
+
AR = <any> 'AR',
|
|
26
|
+
AZ = <any> 'AZ',
|
|
27
|
+
CA = <any> 'CA',
|
|
28
|
+
CO = <any> 'CO',
|
|
29
|
+
CT = <any> 'CT',
|
|
30
|
+
DC = <any> 'DC',
|
|
31
|
+
DE = <any> 'DE',
|
|
32
|
+
FL = <any> 'FL',
|
|
33
|
+
GA = <any> 'GA',
|
|
34
|
+
HI = <any> 'HI',
|
|
35
|
+
IA = <any> 'IA',
|
|
36
|
+
ID = <any> 'ID',
|
|
37
|
+
IL = <any> 'IL',
|
|
38
|
+
IN = <any> 'IN',
|
|
39
|
+
KS = <any> 'KS',
|
|
40
|
+
KY = <any> 'KY',
|
|
41
|
+
LA = <any> 'LA',
|
|
42
|
+
MA = <any> 'MA',
|
|
43
|
+
MD = <any> 'MD',
|
|
44
|
+
ME = <any> 'ME',
|
|
45
|
+
MI = <any> 'MI',
|
|
46
|
+
MN = <any> 'MN',
|
|
47
|
+
MO = <any> 'MO',
|
|
48
|
+
MS = <any> 'MS',
|
|
49
|
+
MT = <any> 'MT',
|
|
50
|
+
NC = <any> 'NC',
|
|
51
|
+
ND = <any> 'ND',
|
|
52
|
+
NE = <any> 'NE',
|
|
53
|
+
NH = <any> 'NH',
|
|
54
|
+
NJ = <any> 'NJ',
|
|
55
|
+
NM = <any> 'NM',
|
|
56
|
+
NV = <any> 'NV',
|
|
57
|
+
NY = <any> 'NY',
|
|
58
|
+
OH = <any> 'OH',
|
|
59
|
+
OK = <any> 'OK',
|
|
60
|
+
OR = <any> 'OR',
|
|
61
|
+
PA = <any> 'PA',
|
|
62
|
+
RI = <any> 'RI',
|
|
63
|
+
SC = <any> 'SC',
|
|
64
|
+
SD = <any> 'SD',
|
|
65
|
+
TN = <any> 'TN',
|
|
66
|
+
TX = <any> 'TX',
|
|
67
|
+
UT = <any> 'UT',
|
|
68
|
+
VA = <any> 'VA',
|
|
69
|
+
VT = <any> 'VT',
|
|
70
|
+
WA = <any> 'WA',
|
|
71
|
+
WI = <any> 'WI',
|
|
72
|
+
WV = <any> 'WV',
|
|
73
|
+
WY = <any> 'WY'
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 CourtEntity {
|
|
14
|
+
"address"?: models.AddressEntity;
|
|
15
|
+
"county"?: models.CountyEntity;
|
|
16
|
+
"courtCode"?: string;
|
|
17
|
+
"courtId"?: number;
|
|
18
|
+
"courtName"?: string;
|
|
19
|
+
"courtNameAdditional"?: string;
|
|
20
|
+
"courtType"?: CourtEntity.CourtTypeEnum;
|
|
21
|
+
"lookupCaseInfoLink"?: string;
|
|
22
|
+
"otrTargetFee"?: number;
|
|
23
|
+
"website"?: string;
|
|
24
|
+
}
|
|
25
|
+
export declare namespace CourtEntity {
|
|
26
|
+
enum CourtTypeEnum {
|
|
27
|
+
CIRCUIT,
|
|
28
|
+
COUNTYCLERK,
|
|
29
|
+
DISTRICT,
|
|
30
|
+
JUVENILE,
|
|
31
|
+
MUNICIPAL,
|
|
32
|
+
PROBATION,
|
|
33
|
+
SUPERIOR,
|
|
34
|
+
VIOLATIONSBUREAU
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -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,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,
|