@otr-app/shared-backend-generated-client 2.4.96 → 2.4.98
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 +4 -0
- package/dist/angular/api/auditLawfirmEventsController.service.ts +4 -4
- package/dist/angular/api/caseUserController.service.ts +73 -0
- package/dist/angular/api/citationAuditController.service.ts +4 -4
- package/dist/angular/api/lawfirmController.service.ts +4 -12
- package/dist/angular/api/listCasesController.service.ts +14 -4
- package/dist/angular/api/userAuditController.service.ts +4 -4
- package/dist/angular/api/userController.service.ts +73 -0
- package/dist/angular/model/citationAuditEventModel.ts +2 -1
- package/dist/angular/model/dashboardCaseModel.ts +1 -0
- package/dist/angular/model/dashboardCaseUserModel.ts +21 -0
- package/dist/angular/model/getLawfirmModel.ts +2 -0
- package/dist/angular/model/lawfirmAuditEventModel.ts +2 -1
- package/dist/angular/model/listDashboardCaseUsersResponse.ts +18 -0
- package/dist/angular/model/models.ts +4 -0
- package/dist/angular/model/sendTextAlertToUserRequest.ts +25 -0
- package/dist/angular/model/supportedStateModel.ts +75 -0
- package/dist/angular/model/userAuditEventModel.ts +4 -2
- package/dist/angular/model/validateDirectMailResponse.ts +3 -1
- package/dist/otrBackendService.js +102 -5
- package/dist/otrBackendService.min.js +4 -4
- package/dist/typescript/api/AuditLawfirmEventsControllerApi.d.ts +1 -1
- package/dist/typescript/api/CaseUserControllerApi.d.ts +8 -0
- package/dist/typescript/api/CaseUserControllerApi.js +33 -0
- package/dist/typescript/api/CitationAuditControllerApi.d.ts +1 -1
- package/dist/typescript/api/LawfirmControllerApi.d.ts +1 -2
- package/dist/typescript/api/LawfirmControllerApi.js +1 -5
- package/dist/typescript/api/ListCasesControllerApi.d.ts +3 -1
- package/dist/typescript/api/ListCasesControllerApi.js +9 -1
- package/dist/typescript/api/UserAuditControllerApi.d.ts +1 -1
- package/dist/typescript/api/UserControllerApi.d.ts +7 -0
- package/dist/typescript/api/UserControllerApi.js +31 -0
- package/dist/typescript/model/CitationAuditEventModel.d.ts +1 -0
- package/dist/typescript/model/CitationAuditEventModel.js +1 -0
- package/dist/typescript/model/DashboardCaseModel.d.ts +1 -0
- package/dist/typescript/model/DashboardCaseUserModel.d.ts +18 -0
- package/dist/typescript/model/DashboardCaseUserModel.js +12 -0
- package/dist/typescript/model/GetLawfirmModel.d.ts +1 -0
- package/dist/typescript/model/LawfirmAuditEventModel.d.ts +1 -0
- package/dist/typescript/model/LawfirmAuditEventModel.js +1 -0
- package/dist/typescript/model/ListDashboardCaseUsersResponse.d.ts +15 -0
- package/dist/typescript/model/ListDashboardCaseUsersResponse.js +12 -0
- package/dist/typescript/model/SendTextAlertToUserRequest.d.ts +20 -0
- package/dist/typescript/model/SendTextAlertToUserRequest.js +18 -0
- package/dist/typescript/model/SupportedStateModel.d.ts +70 -0
- package/dist/typescript/model/SupportedStateModel.js +68 -0
- package/dist/typescript/model/UserAuditEventModel.d.ts +2 -0
- package/dist/typescript/model/UserAuditEventModel.js +2 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +2 -0
- package/dist/typescript/model/ValidateDirectMailResponse.js +2 -0
- package/dist/typescript/model/models.d.ts +4 -0
- package/dist/typescript/model/models.js +4 -0
- package/dist/typescript-fetch/apis/AuditLawfirmEventsControllerApi.d.ts +2 -0
- package/dist/typescript-fetch/apis/AuditLawfirmEventsControllerApi.js +2 -0
- package/dist/typescript-fetch/apis/CaseUserControllerApi.d.ts +14 -1
- package/dist/typescript-fetch/apis/CaseUserControllerApi.js +35 -1
- package/dist/typescript-fetch/apis/CitationAuditControllerApi.d.ts +2 -0
- package/dist/typescript-fetch/apis/CitationAuditControllerApi.js +2 -0
- package/dist/typescript-fetch/apis/LawfirmControllerApi.d.ts +0 -1
- package/dist/typescript-fetch/apis/LawfirmControllerApi.js +0 -3
- package/dist/typescript-fetch/apis/ListCasesControllerApi.d.ts +2 -0
- package/dist/typescript-fetch/apis/ListCasesControllerApi.js +6 -0
- package/dist/typescript-fetch/apis/UserAuditControllerApi.d.ts +2 -0
- package/dist/typescript-fetch/apis/UserAuditControllerApi.js +2 -0
- package/dist/typescript-fetch/apis/UserControllerApi.d.ts +13 -1
- package/dist/typescript-fetch/apis/UserControllerApi.js +33 -1
- package/dist/typescript-fetch/models/CitationAuditEventModel.d.ts +1 -0
- package/dist/typescript-fetch/models/CitationAuditEventModel.js +1 -0
- package/dist/typescript-fetch/models/DashboardCaseModel.d.ts +6 -0
- package/dist/typescript-fetch/models/DashboardCaseModel.js +2 -0
- package/dist/typescript-fetch/models/DashboardCaseUserModel.d.ts +51 -0
- package/dist/typescript-fetch/models/DashboardCaseUserModel.js +44 -0
- package/dist/typescript-fetch/models/GetLawfirmModel.d.ts +7 -1
- package/dist/typescript-fetch/models/GetLawfirmModel.js +3 -1
- package/dist/typescript-fetch/models/LawfirmAuditEventModel.d.ts +1 -0
- package/dist/typescript-fetch/models/LawfirmAuditEventModel.js +1 -0
- package/dist/typescript-fetch/models/ListDashboardCaseUsersResponse.d.ts +28 -0
- package/dist/typescript-fetch/models/ListDashboardCaseUsersResponse.js +37 -0
- package/dist/typescript-fetch/models/SendTextAlertToUserRequest.d.ts +40 -0
- package/dist/typescript-fetch/models/SendTextAlertToUserRequest.js +46 -0
- package/dist/typescript-fetch/models/SupportedStateModel.d.ts +90 -0
- package/dist/typescript-fetch/models/SupportedStateModel.js +96 -0
- package/dist/typescript-fetch/models/UserAuditEventModel.d.ts +2 -0
- package/dist/typescript-fetch/models/UserAuditEventModel.js +2 -0
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.d.ts +2 -0
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.js +2 -0
- package/dist/typescript-fetch/models/index.d.ts +4 -0
- package/dist/typescript-fetch/models/index.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
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 { DashboardCaseUserModel } from './';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListDashboardCaseUsersResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface ListDashboardCaseUsersResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<DashboardCaseUserModel>}
|
|
22
|
+
* @memberof ListDashboardCaseUsersResponse
|
|
23
|
+
*/
|
|
24
|
+
users?: Array<DashboardCaseUserModel>;
|
|
25
|
+
}
|
|
26
|
+
export declare function ListDashboardCaseUsersResponseFromJSON(json: any): ListDashboardCaseUsersResponse;
|
|
27
|
+
export declare function ListDashboardCaseUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListDashboardCaseUsersResponse;
|
|
28
|
+
export declare function ListDashboardCaseUsersResponseToJSON(value?: ListDashboardCaseUsersResponse | null): any;
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
import { DashboardCaseUserModelFromJSON, DashboardCaseUserModelToJSON, } from './';
|
|
16
|
+
export function ListDashboardCaseUsersResponseFromJSON(json) {
|
|
17
|
+
return ListDashboardCaseUsersResponseFromJSONTyped(json, false);
|
|
18
|
+
}
|
|
19
|
+
export function ListDashboardCaseUsersResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
20
|
+
if ((json === undefined) || (json === null)) {
|
|
21
|
+
return json;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'users': !exists(json, 'users') ? undefined : (json['users'].map(DashboardCaseUserModelFromJSON)),
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
export function ListDashboardCaseUsersResponseToJSON(value) {
|
|
28
|
+
if (value === undefined) {
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
31
|
+
if (value === null) {
|
|
32
|
+
return null;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'users': value.users === undefined ? undefined : (value.users.map(DashboardCaseUserModelToJSON)),
|
|
36
|
+
};
|
|
37
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
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 SendTextAlertToUserRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface SendTextAlertToUserRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SendTextAlertToUserRequest
|
|
22
|
+
*/
|
|
23
|
+
rawPhoneNumber?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SendTextAlertToUserRequest
|
|
28
|
+
*/
|
|
29
|
+
textAlertType?: SendTextAlertToUserRequestTextAlertTypeEnum;
|
|
30
|
+
}
|
|
31
|
+
export declare function SendTextAlertToUserRequestFromJSON(json: any): SendTextAlertToUserRequest;
|
|
32
|
+
export declare function SendTextAlertToUserRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendTextAlertToUserRequest;
|
|
33
|
+
export declare function SendTextAlertToUserRequestToJSON(value?: SendTextAlertToUserRequest | null): any;
|
|
34
|
+
/**
|
|
35
|
+
* @export
|
|
36
|
+
* @enum {string}
|
|
37
|
+
*/
|
|
38
|
+
export declare enum SendTextAlertToUserRequestTextAlertTypeEnum {
|
|
39
|
+
DOWNLOADAPP = "DOWNLOAD_APP"
|
|
40
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
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 SendTextAlertToUserRequestFromJSON(json) {
|
|
16
|
+
return SendTextAlertToUserRequestFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function SendTextAlertToUserRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'rawPhoneNumber': !exists(json, 'rawPhoneNumber') ? undefined : json['rawPhoneNumber'],
|
|
24
|
+
'textAlertType': !exists(json, 'textAlertType') ? undefined : json['textAlertType'],
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
export function SendTextAlertToUserRequestToJSON(value) {
|
|
28
|
+
if (value === undefined) {
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
31
|
+
if (value === null) {
|
|
32
|
+
return null;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'rawPhoneNumber': value.rawPhoneNumber,
|
|
36
|
+
'textAlertType': value.textAlertType,
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* @export
|
|
41
|
+
* @enum {string}
|
|
42
|
+
*/
|
|
43
|
+
export var SendTextAlertToUserRequestTextAlertTypeEnum;
|
|
44
|
+
(function (SendTextAlertToUserRequestTextAlertTypeEnum) {
|
|
45
|
+
SendTextAlertToUserRequestTextAlertTypeEnum["DOWNLOADAPP"] = "DOWNLOAD_APP";
|
|
46
|
+
})(SendTextAlertToUserRequestTextAlertTypeEnum || (SendTextAlertToUserRequestTextAlertTypeEnum = {}));
|
|
@@ -0,0 +1,90 @@
|
|
|
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 SupportedStateModel
|
|
16
|
+
*/
|
|
17
|
+
export interface SupportedStateModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof SupportedStateModel
|
|
22
|
+
*/
|
|
23
|
+
newAlgoEnabled?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SupportedStateModel
|
|
28
|
+
*/
|
|
29
|
+
state?: SupportedStateModelStateEnum;
|
|
30
|
+
}
|
|
31
|
+
export declare function SupportedStateModelFromJSON(json: any): SupportedStateModel;
|
|
32
|
+
export declare function SupportedStateModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupportedStateModel;
|
|
33
|
+
export declare function SupportedStateModelToJSON(value?: SupportedStateModel | null): any;
|
|
34
|
+
/**
|
|
35
|
+
* @export
|
|
36
|
+
* @enum {string}
|
|
37
|
+
*/
|
|
38
|
+
export declare enum SupportedStateModelStateEnum {
|
|
39
|
+
AK = "AK",
|
|
40
|
+
AL = "AL",
|
|
41
|
+
AR = "AR",
|
|
42
|
+
AZ = "AZ",
|
|
43
|
+
CA = "CA",
|
|
44
|
+
CO = "CO",
|
|
45
|
+
CT = "CT",
|
|
46
|
+
DC = "DC",
|
|
47
|
+
DE = "DE",
|
|
48
|
+
FL = "FL",
|
|
49
|
+
GA = "GA",
|
|
50
|
+
HI = "HI",
|
|
51
|
+
IA = "IA",
|
|
52
|
+
ID = "ID",
|
|
53
|
+
IL = "IL",
|
|
54
|
+
IN = "IN",
|
|
55
|
+
KS = "KS",
|
|
56
|
+
KY = "KY",
|
|
57
|
+
LA = "LA",
|
|
58
|
+
MA = "MA",
|
|
59
|
+
MD = "MD",
|
|
60
|
+
ME = "ME",
|
|
61
|
+
MI = "MI",
|
|
62
|
+
MN = "MN",
|
|
63
|
+
MO = "MO",
|
|
64
|
+
MS = "MS",
|
|
65
|
+
MT = "MT",
|
|
66
|
+
NC = "NC",
|
|
67
|
+
ND = "ND",
|
|
68
|
+
NE = "NE",
|
|
69
|
+
NH = "NH",
|
|
70
|
+
NJ = "NJ",
|
|
71
|
+
NM = "NM",
|
|
72
|
+
NV = "NV",
|
|
73
|
+
NY = "NY",
|
|
74
|
+
OH = "OH",
|
|
75
|
+
OK = "OK",
|
|
76
|
+
OR = "OR",
|
|
77
|
+
PA = "PA",
|
|
78
|
+
RI = "RI",
|
|
79
|
+
SC = "SC",
|
|
80
|
+
SD = "SD",
|
|
81
|
+
TN = "TN",
|
|
82
|
+
TX = "TX",
|
|
83
|
+
UT = "UT",
|
|
84
|
+
VA = "VA",
|
|
85
|
+
VT = "VT",
|
|
86
|
+
WA = "WA",
|
|
87
|
+
WI = "WI",
|
|
88
|
+
WV = "WV",
|
|
89
|
+
WY = "WY"
|
|
90
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
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 SupportedStateModelFromJSON(json) {
|
|
16
|
+
return SupportedStateModelFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function SupportedStateModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'newAlgoEnabled': !exists(json, 'newAlgoEnabled') ? undefined : json['newAlgoEnabled'],
|
|
24
|
+
'state': !exists(json, 'state') ? undefined : json['state'],
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
export function SupportedStateModelToJSON(value) {
|
|
28
|
+
if (value === undefined) {
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
31
|
+
if (value === null) {
|
|
32
|
+
return null;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'newAlgoEnabled': value.newAlgoEnabled,
|
|
36
|
+
'state': value.state,
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* @export
|
|
41
|
+
* @enum {string}
|
|
42
|
+
*/
|
|
43
|
+
export var SupportedStateModelStateEnum;
|
|
44
|
+
(function (SupportedStateModelStateEnum) {
|
|
45
|
+
SupportedStateModelStateEnum["AK"] = "AK";
|
|
46
|
+
SupportedStateModelStateEnum["AL"] = "AL";
|
|
47
|
+
SupportedStateModelStateEnum["AR"] = "AR";
|
|
48
|
+
SupportedStateModelStateEnum["AZ"] = "AZ";
|
|
49
|
+
SupportedStateModelStateEnum["CA"] = "CA";
|
|
50
|
+
SupportedStateModelStateEnum["CO"] = "CO";
|
|
51
|
+
SupportedStateModelStateEnum["CT"] = "CT";
|
|
52
|
+
SupportedStateModelStateEnum["DC"] = "DC";
|
|
53
|
+
SupportedStateModelStateEnum["DE"] = "DE";
|
|
54
|
+
SupportedStateModelStateEnum["FL"] = "FL";
|
|
55
|
+
SupportedStateModelStateEnum["GA"] = "GA";
|
|
56
|
+
SupportedStateModelStateEnum["HI"] = "HI";
|
|
57
|
+
SupportedStateModelStateEnum["IA"] = "IA";
|
|
58
|
+
SupportedStateModelStateEnum["ID"] = "ID";
|
|
59
|
+
SupportedStateModelStateEnum["IL"] = "IL";
|
|
60
|
+
SupportedStateModelStateEnum["IN"] = "IN";
|
|
61
|
+
SupportedStateModelStateEnum["KS"] = "KS";
|
|
62
|
+
SupportedStateModelStateEnum["KY"] = "KY";
|
|
63
|
+
SupportedStateModelStateEnum["LA"] = "LA";
|
|
64
|
+
SupportedStateModelStateEnum["MA"] = "MA";
|
|
65
|
+
SupportedStateModelStateEnum["MD"] = "MD";
|
|
66
|
+
SupportedStateModelStateEnum["ME"] = "ME";
|
|
67
|
+
SupportedStateModelStateEnum["MI"] = "MI";
|
|
68
|
+
SupportedStateModelStateEnum["MN"] = "MN";
|
|
69
|
+
SupportedStateModelStateEnum["MO"] = "MO";
|
|
70
|
+
SupportedStateModelStateEnum["MS"] = "MS";
|
|
71
|
+
SupportedStateModelStateEnum["MT"] = "MT";
|
|
72
|
+
SupportedStateModelStateEnum["NC"] = "NC";
|
|
73
|
+
SupportedStateModelStateEnum["ND"] = "ND";
|
|
74
|
+
SupportedStateModelStateEnum["NE"] = "NE";
|
|
75
|
+
SupportedStateModelStateEnum["NH"] = "NH";
|
|
76
|
+
SupportedStateModelStateEnum["NJ"] = "NJ";
|
|
77
|
+
SupportedStateModelStateEnum["NM"] = "NM";
|
|
78
|
+
SupportedStateModelStateEnum["NV"] = "NV";
|
|
79
|
+
SupportedStateModelStateEnum["NY"] = "NY";
|
|
80
|
+
SupportedStateModelStateEnum["OH"] = "OH";
|
|
81
|
+
SupportedStateModelStateEnum["OK"] = "OK";
|
|
82
|
+
SupportedStateModelStateEnum["OR"] = "OR";
|
|
83
|
+
SupportedStateModelStateEnum["PA"] = "PA";
|
|
84
|
+
SupportedStateModelStateEnum["RI"] = "RI";
|
|
85
|
+
SupportedStateModelStateEnum["SC"] = "SC";
|
|
86
|
+
SupportedStateModelStateEnum["SD"] = "SD";
|
|
87
|
+
SupportedStateModelStateEnum["TN"] = "TN";
|
|
88
|
+
SupportedStateModelStateEnum["TX"] = "TX";
|
|
89
|
+
SupportedStateModelStateEnum["UT"] = "UT";
|
|
90
|
+
SupportedStateModelStateEnum["VA"] = "VA";
|
|
91
|
+
SupportedStateModelStateEnum["VT"] = "VT";
|
|
92
|
+
SupportedStateModelStateEnum["WA"] = "WA";
|
|
93
|
+
SupportedStateModelStateEnum["WI"] = "WI";
|
|
94
|
+
SupportedStateModelStateEnum["WV"] = "WV";
|
|
95
|
+
SupportedStateModelStateEnum["WY"] = "WY";
|
|
96
|
+
})(SupportedStateModelStateEnum || (SupportedStateModelStateEnum = {}));
|
|
@@ -154,6 +154,7 @@ export declare enum UserAuditEventModelEventEnum {
|
|
|
154
154
|
COURTCOVERAGEADDED = "COURT_COVERAGE_ADDED",
|
|
155
155
|
COURTCOVERAGEREMOVED = "COURT_COVERAGE_REMOVED",
|
|
156
156
|
COURTFEECHANGED = "COURT_FEE_CHANGED",
|
|
157
|
+
CUSTOMERREVIEWADDED = "CUSTOMER_REVIEW_ADDED",
|
|
157
158
|
CUSTOMFEESRESETTODEFAULTFORVIOLATION = "CUSTOM_FEES_RESET_TO_DEFAULT_FOR_VIOLATION",
|
|
158
159
|
DECIDEEXPERIMENTGROUPCOMMAND = "DECIDE_EXPERIMENT_GROUP_COMMAND",
|
|
159
160
|
DEFAULTFEEADDED = "DEFAULT_FEE_ADDED",
|
|
@@ -239,6 +240,7 @@ export declare enum UserAuditEventModelEventTypeEnum {
|
|
|
239
240
|
COURTCOVERAGEADDED = "COURT_COVERAGE_ADDED",
|
|
240
241
|
COURTCOVERAGEREMOVED = "COURT_COVERAGE_REMOVED",
|
|
241
242
|
COURTFEECHANGED = "COURT_FEE_CHANGED",
|
|
243
|
+
CUSTOMERREVIEWADDED = "CUSTOMER_REVIEW_ADDED",
|
|
242
244
|
CUSTOMFEESRESETTODEFAULTFORVIOLATION = "CUSTOM_FEES_RESET_TO_DEFAULT_FOR_VIOLATION",
|
|
243
245
|
DECIDEEXPERIMENTGROUPCOMMAND = "DECIDE_EXPERIMENT_GROUP_COMMAND",
|
|
244
246
|
DEFAULTFEEADDED = "DEFAULT_FEE_ADDED",
|
|
@@ -117,6 +117,7 @@ export var UserAuditEventModelEventEnum;
|
|
|
117
117
|
UserAuditEventModelEventEnum["COURTCOVERAGEADDED"] = "COURT_COVERAGE_ADDED";
|
|
118
118
|
UserAuditEventModelEventEnum["COURTCOVERAGEREMOVED"] = "COURT_COVERAGE_REMOVED";
|
|
119
119
|
UserAuditEventModelEventEnum["COURTFEECHANGED"] = "COURT_FEE_CHANGED";
|
|
120
|
+
UserAuditEventModelEventEnum["CUSTOMERREVIEWADDED"] = "CUSTOMER_REVIEW_ADDED";
|
|
120
121
|
UserAuditEventModelEventEnum["CUSTOMFEESRESETTODEFAULTFORVIOLATION"] = "CUSTOM_FEES_RESET_TO_DEFAULT_FOR_VIOLATION";
|
|
121
122
|
UserAuditEventModelEventEnum["DECIDEEXPERIMENTGROUPCOMMAND"] = "DECIDE_EXPERIMENT_GROUP_COMMAND";
|
|
122
123
|
UserAuditEventModelEventEnum["DEFAULTFEEADDED"] = "DEFAULT_FEE_ADDED";
|
|
@@ -203,6 +204,7 @@ export var UserAuditEventModelEventTypeEnum;
|
|
|
203
204
|
UserAuditEventModelEventTypeEnum["COURTCOVERAGEADDED"] = "COURT_COVERAGE_ADDED";
|
|
204
205
|
UserAuditEventModelEventTypeEnum["COURTCOVERAGEREMOVED"] = "COURT_COVERAGE_REMOVED";
|
|
205
206
|
UserAuditEventModelEventTypeEnum["COURTFEECHANGED"] = "COURT_FEE_CHANGED";
|
|
207
|
+
UserAuditEventModelEventTypeEnum["CUSTOMERREVIEWADDED"] = "CUSTOMER_REVIEW_ADDED";
|
|
206
208
|
UserAuditEventModelEventTypeEnum["CUSTOMFEESRESETTODEFAULTFORVIOLATION"] = "CUSTOM_FEES_RESET_TO_DEFAULT_FOR_VIOLATION";
|
|
207
209
|
UserAuditEventModelEventTypeEnum["DECIDEEXPERIMENTGROUPCOMMAND"] = "DECIDE_EXPERIMENT_GROUP_COMMAND";
|
|
208
210
|
UserAuditEventModelEventTypeEnum["DEFAULTFEEADDED"] = "DEFAULT_FEE_ADDED";
|
|
@@ -168,6 +168,7 @@ export declare enum ValidateDirectMailResponseOtrErrorEnum {
|
|
|
168
168
|
INVALIDSTRIPETRANSACTIONID = "INVALID_STRIPE_TRANSACTION_ID",
|
|
169
169
|
INVALIDSUBSCRIPTIONTYPE = "INVALID_SUBSCRIPTION_TYPE",
|
|
170
170
|
INVALIDTASKID = "INVALID_TASK_ID",
|
|
171
|
+
INVALIDTEXTALERTTYPE = "INVALID_TEXT_ALERT_TYPE",
|
|
171
172
|
INVALIDTICKETID = "INVALID_TICKET_ID",
|
|
172
173
|
INVALIDTICKETREVIEWID = "INVALID_TICKET_REVIEW_ID",
|
|
173
174
|
INVALIDTRAFFICVIOLATION = "INVALID_TRAFFIC_VIOLATION",
|
|
@@ -310,6 +311,7 @@ export declare enum ValidateDirectMailResponseOtrErrorEnum {
|
|
|
310
311
|
UNEXPECTEDNUMBEROFCHARGES = "UNEXPECTED_NUMBER_OF_CHARGES",
|
|
311
312
|
UNKNOWN = "UNKNOWN",
|
|
312
313
|
UNKNOWNCRMERROR = "UNKNOWN_CRM_ERROR",
|
|
314
|
+
UNVERIFIEDPHONENUMBER = "UNVERIFIED_PHONE_NUMBER",
|
|
313
315
|
URLENTITYMISMATCH = "URL_ENTITY_MISMATCH",
|
|
314
316
|
USERALREADYHASSECONDARYACCOUNT = "USER_ALREADY_HAS_SECONDARY_ACCOUNT",
|
|
315
317
|
USERALREADYLOGGEDIN = "USER_ALREADY_LOGGED_IN",
|
|
@@ -178,6 +178,7 @@ export var ValidateDirectMailResponseOtrErrorEnum;
|
|
|
178
178
|
ValidateDirectMailResponseOtrErrorEnum["INVALIDSTRIPETRANSACTIONID"] = "INVALID_STRIPE_TRANSACTION_ID";
|
|
179
179
|
ValidateDirectMailResponseOtrErrorEnum["INVALIDSUBSCRIPTIONTYPE"] = "INVALID_SUBSCRIPTION_TYPE";
|
|
180
180
|
ValidateDirectMailResponseOtrErrorEnum["INVALIDTASKID"] = "INVALID_TASK_ID";
|
|
181
|
+
ValidateDirectMailResponseOtrErrorEnum["INVALIDTEXTALERTTYPE"] = "INVALID_TEXT_ALERT_TYPE";
|
|
181
182
|
ValidateDirectMailResponseOtrErrorEnum["INVALIDTICKETID"] = "INVALID_TICKET_ID";
|
|
182
183
|
ValidateDirectMailResponseOtrErrorEnum["INVALIDTICKETREVIEWID"] = "INVALID_TICKET_REVIEW_ID";
|
|
183
184
|
ValidateDirectMailResponseOtrErrorEnum["INVALIDTRAFFICVIOLATION"] = "INVALID_TRAFFIC_VIOLATION";
|
|
@@ -320,6 +321,7 @@ export var ValidateDirectMailResponseOtrErrorEnum;
|
|
|
320
321
|
ValidateDirectMailResponseOtrErrorEnum["UNEXPECTEDNUMBEROFCHARGES"] = "UNEXPECTED_NUMBER_OF_CHARGES";
|
|
321
322
|
ValidateDirectMailResponseOtrErrorEnum["UNKNOWN"] = "UNKNOWN";
|
|
322
323
|
ValidateDirectMailResponseOtrErrorEnum["UNKNOWNCRMERROR"] = "UNKNOWN_CRM_ERROR";
|
|
324
|
+
ValidateDirectMailResponseOtrErrorEnum["UNVERIFIEDPHONENUMBER"] = "UNVERIFIED_PHONE_NUMBER";
|
|
323
325
|
ValidateDirectMailResponseOtrErrorEnum["URLENTITYMISMATCH"] = "URL_ENTITY_MISMATCH";
|
|
324
326
|
ValidateDirectMailResponseOtrErrorEnum["USERALREADYHASSECONDARYACCOUNT"] = "USER_ALREADY_HAS_SECONDARY_ACCOUNT";
|
|
325
327
|
ValidateDirectMailResponseOtrErrorEnum["USERALREADYLOGGEDIN"] = "USER_ALREADY_LOGGED_IN";
|
|
@@ -194,6 +194,7 @@ export * from './DashboardAddressModel';
|
|
|
194
194
|
export * from './DashboardAuthorModel';
|
|
195
195
|
export * from './DashboardCaseCounterOfferModel';
|
|
196
196
|
export * from './DashboardCaseModel';
|
|
197
|
+
export * from './DashboardCaseUserModel';
|
|
197
198
|
export * from './DashboardCitationModel';
|
|
198
199
|
export * from './DashboardCourtModel';
|
|
199
200
|
export * from './DashboardStatusModel';
|
|
@@ -478,6 +479,7 @@ export * from './ListCitationsRequest';
|
|
|
478
479
|
export * from './ListCitationsResponse';
|
|
479
480
|
export * from './ListContactTimelineResponse';
|
|
480
481
|
export * from './ListCostItemsForCustomerResponse';
|
|
482
|
+
export * from './ListDashboardCaseUsersResponse';
|
|
481
483
|
export * from './ListDashboardCasesResponse';
|
|
482
484
|
export * from './ListEligibleStatusResponse';
|
|
483
485
|
export * from './ListEmployeesResponse';
|
|
@@ -644,6 +646,7 @@ export * from './SendEmailToUsersRequest';
|
|
|
644
646
|
export * from './SendOneTimePasswordRequest';
|
|
645
647
|
export * from './SendPayoutToLawfirmRequest';
|
|
646
648
|
export * from './SendPayoutToLawfirmResponse';
|
|
649
|
+
export * from './SendTextAlertToUserRequest';
|
|
647
650
|
export * from './ServiceLevelAgreement';
|
|
648
651
|
export * from './SetArchiveCaseModel';
|
|
649
652
|
export * from './SetArchiveOnCasesRequest';
|
|
@@ -705,6 +708,7 @@ export * from './SubscriptionDiscountEligibility';
|
|
|
705
708
|
export * from './SubscriptionDiscountEligibilityReq';
|
|
706
709
|
export * from './SubscriptionDiscountEligibilityRes';
|
|
707
710
|
export * from './SubscriptionGuardianModel';
|
|
711
|
+
export * from './SupportedStateModel';
|
|
708
712
|
export * from './SyncStripeChargesRequest';
|
|
709
713
|
export * from './SyncStripeChargesResponse';
|
|
710
714
|
export * from './SyncStripeDisputeResponse';
|
|
@@ -194,6 +194,7 @@ export * from './DashboardAddressModel';
|
|
|
194
194
|
export * from './DashboardAuthorModel';
|
|
195
195
|
export * from './DashboardCaseCounterOfferModel';
|
|
196
196
|
export * from './DashboardCaseModel';
|
|
197
|
+
export * from './DashboardCaseUserModel';
|
|
197
198
|
export * from './DashboardCitationModel';
|
|
198
199
|
export * from './DashboardCourtModel';
|
|
199
200
|
export * from './DashboardStatusModel';
|
|
@@ -478,6 +479,7 @@ export * from './ListCitationsRequest';
|
|
|
478
479
|
export * from './ListCitationsResponse';
|
|
479
480
|
export * from './ListContactTimelineResponse';
|
|
480
481
|
export * from './ListCostItemsForCustomerResponse';
|
|
482
|
+
export * from './ListDashboardCaseUsersResponse';
|
|
481
483
|
export * from './ListDashboardCasesResponse';
|
|
482
484
|
export * from './ListEligibleStatusResponse';
|
|
483
485
|
export * from './ListEmployeesResponse';
|
|
@@ -644,6 +646,7 @@ export * from './SendEmailToUsersRequest';
|
|
|
644
646
|
export * from './SendOneTimePasswordRequest';
|
|
645
647
|
export * from './SendPayoutToLawfirmRequest';
|
|
646
648
|
export * from './SendPayoutToLawfirmResponse';
|
|
649
|
+
export * from './SendTextAlertToUserRequest';
|
|
647
650
|
export * from './ServiceLevelAgreement';
|
|
648
651
|
export * from './SetArchiveCaseModel';
|
|
649
652
|
export * from './SetArchiveOnCasesRequest';
|
|
@@ -705,6 +708,7 @@ export * from './SubscriptionDiscountEligibility';
|
|
|
705
708
|
export * from './SubscriptionDiscountEligibilityReq';
|
|
706
709
|
export * from './SubscriptionDiscountEligibilityRes';
|
|
707
710
|
export * from './SubscriptionGuardianModel';
|
|
711
|
+
export * from './SupportedStateModel';
|
|
708
712
|
export * from './SyncStripeChargesRequest';
|
|
709
713
|
export * from './SyncStripeChargesResponse';
|
|
710
714
|
export * from './SyncStripeDisputeResponse';
|