@otr-app/shared-backend-generated-client 2.2.99 → 2.2.102
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/typescript/api/ConsoleListControllerApi.d.ts +1 -1
- package/dist/typescript/model/ActionByEntityModel.d.ts +17 -0
- package/dist/typescript/model/ActionByEntityModel.js +17 -0
- package/dist/typescript/model/GetCasesWithUncapturedChargesRequest.d.ts +15 -0
- package/dist/typescript/model/GetCasesWithUncapturedChargesRequest.js +13 -0
- package/dist/typescript/model/SocialLoginUser.d.ts +1 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/package.json +1 -1
|
@@ -41,7 +41,7 @@ export declare class ConsoleListControllerApi {
|
|
|
41
41
|
* @summary getCasesWithOverduePayments
|
|
42
42
|
* @param request request
|
|
43
43
|
*/
|
|
44
|
-
getCasesWithOverduePaymentsUsingPOST(request:
|
|
44
|
+
getCasesWithOverduePaymentsUsingPOST(request: models.GetCasesWithUncapturedChargesRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCasesWithOverduePaymentsResponse>;
|
|
45
45
|
/**
|
|
46
46
|
*
|
|
47
47
|
* @summary getCitationPhoneLeads
|
|
@@ -13,6 +13,7 @@ export interface ActionByEntityModel {
|
|
|
13
13
|
"actionDateUtc"?: string;
|
|
14
14
|
"actionId"?: number;
|
|
15
15
|
"actionNote"?: string;
|
|
16
|
+
"actionType"?: ActionByEntityModel.ActionTypeEnum;
|
|
16
17
|
"authorFirstName"?: string;
|
|
17
18
|
"authorLastName"?: string;
|
|
18
19
|
"authorUserId"?: number;
|
|
@@ -25,6 +26,22 @@ export interface ActionByEntityModel {
|
|
|
25
26
|
"profilePictureUrl"?: string;
|
|
26
27
|
}
|
|
27
28
|
export declare namespace ActionByEntityModel {
|
|
29
|
+
enum ActionTypeEnum {
|
|
30
|
+
CASEACCEPT,
|
|
31
|
+
CASEDECLINE,
|
|
32
|
+
CITATIONDATAEXTRACTED,
|
|
33
|
+
COURTDATEREMOVED,
|
|
34
|
+
COURTDATESCHEDULED,
|
|
35
|
+
DISCOVERYRECEIVED,
|
|
36
|
+
DISCOVERYREQUESTED,
|
|
37
|
+
FAILEDPAYMENTATTEMPT,
|
|
38
|
+
NOTICEOFAPPEARANCEFILED,
|
|
39
|
+
OTHER,
|
|
40
|
+
OVERDUEBALANCEPAID,
|
|
41
|
+
REVIEWEDBYLAWFIRM,
|
|
42
|
+
SOCIALMEDIAASK,
|
|
43
|
+
TICKETMAILEDTOCOURT
|
|
44
|
+
}
|
|
28
45
|
enum CaseStatusEnum {
|
|
29
46
|
AMENDEDDOWNWITHINCLASS,
|
|
30
47
|
AMENDEDFULLFINE,
|
|
@@ -14,6 +14,23 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
14
14
|
exports.ActionByEntityModel = void 0;
|
|
15
15
|
var ActionByEntityModel;
|
|
16
16
|
(function (ActionByEntityModel) {
|
|
17
|
+
var ActionTypeEnum;
|
|
18
|
+
(function (ActionTypeEnum) {
|
|
19
|
+
ActionTypeEnum[ActionTypeEnum["CASEACCEPT"] = 'CASE_ACCEPT'] = "CASEACCEPT";
|
|
20
|
+
ActionTypeEnum[ActionTypeEnum["CASEDECLINE"] = 'CASE_DECLINE'] = "CASEDECLINE";
|
|
21
|
+
ActionTypeEnum[ActionTypeEnum["CITATIONDATAEXTRACTED"] = 'CITATION_DATA_EXTRACTED'] = "CITATIONDATAEXTRACTED";
|
|
22
|
+
ActionTypeEnum[ActionTypeEnum["COURTDATEREMOVED"] = 'COURT_DATE_REMOVED'] = "COURTDATEREMOVED";
|
|
23
|
+
ActionTypeEnum[ActionTypeEnum["COURTDATESCHEDULED"] = 'COURT_DATE_SCHEDULED'] = "COURTDATESCHEDULED";
|
|
24
|
+
ActionTypeEnum[ActionTypeEnum["DISCOVERYRECEIVED"] = 'DISCOVERY_RECEIVED'] = "DISCOVERYRECEIVED";
|
|
25
|
+
ActionTypeEnum[ActionTypeEnum["DISCOVERYREQUESTED"] = 'DISCOVERY_REQUESTED'] = "DISCOVERYREQUESTED";
|
|
26
|
+
ActionTypeEnum[ActionTypeEnum["FAILEDPAYMENTATTEMPT"] = 'FAILED_PAYMENT_ATTEMPT'] = "FAILEDPAYMENTATTEMPT";
|
|
27
|
+
ActionTypeEnum[ActionTypeEnum["NOTICEOFAPPEARANCEFILED"] = 'NOTICE_OF_APPEARANCE_FILED'] = "NOTICEOFAPPEARANCEFILED";
|
|
28
|
+
ActionTypeEnum[ActionTypeEnum["OTHER"] = 'OTHER'] = "OTHER";
|
|
29
|
+
ActionTypeEnum[ActionTypeEnum["OVERDUEBALANCEPAID"] = 'OVERDUE_BALANCE_PAID'] = "OVERDUEBALANCEPAID";
|
|
30
|
+
ActionTypeEnum[ActionTypeEnum["REVIEWEDBYLAWFIRM"] = 'REVIEWED_BY_LAWFIRM'] = "REVIEWEDBYLAWFIRM";
|
|
31
|
+
ActionTypeEnum[ActionTypeEnum["SOCIALMEDIAASK"] = 'SOCIAL_MEDIA_ASK'] = "SOCIALMEDIAASK";
|
|
32
|
+
ActionTypeEnum[ActionTypeEnum["TICKETMAILEDTOCOURT"] = 'TICKET_MAILED_TO_COURT'] = "TICKETMAILEDTOCOURT";
|
|
33
|
+
})(ActionTypeEnum = ActionByEntityModel.ActionTypeEnum || (ActionByEntityModel.ActionTypeEnum = {}));
|
|
17
34
|
var CaseStatusEnum;
|
|
18
35
|
(function (CaseStatusEnum) {
|
|
19
36
|
CaseStatusEnum[CaseStatusEnum["AMENDEDDOWNWITHINCLASS"] = 'AMENDED_DOWN_WITHIN_CLASS'] = "AMENDEDDOWNWITHINCLASS";
|
|
@@ -0,0 +1,15 @@
|
|
|
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 GetCasesWithUncapturedChargesRequest {
|
|
13
|
+
"showNegativeBalances"?: boolean;
|
|
14
|
+
"showPositiveBalances"?: boolean;
|
|
15
|
+
}
|
|
@@ -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 });
|
|
@@ -218,6 +218,7 @@ export * from './GetCaseResponse';
|
|
|
218
218
|
export * from './GetCasesWithCoverageObtainedResponse';
|
|
219
219
|
export * from './GetCasesWithMissingLawfirmPayoutsResponse';
|
|
220
220
|
export * from './GetCasesWithOverduePaymentsResponse';
|
|
221
|
+
export * from './GetCasesWithUncapturedChargesRequest';
|
|
221
222
|
export * from './GetCitationPhoneLeadsRequest';
|
|
222
223
|
export * from './GetCitationPhoneLeadsResponse';
|
|
223
224
|
export * from './GetCitationResponse';
|
|
@@ -230,6 +230,7 @@ __exportStar(require("./GetCaseResponse"), exports);
|
|
|
230
230
|
__exportStar(require("./GetCasesWithCoverageObtainedResponse"), exports);
|
|
231
231
|
__exportStar(require("./GetCasesWithMissingLawfirmPayoutsResponse"), exports);
|
|
232
232
|
__exportStar(require("./GetCasesWithOverduePaymentsResponse"), exports);
|
|
233
|
+
__exportStar(require("./GetCasesWithUncapturedChargesRequest"), exports);
|
|
233
234
|
__exportStar(require("./GetCitationPhoneLeadsRequest"), exports);
|
|
234
235
|
__exportStar(require("./GetCitationPhoneLeadsResponse"), exports);
|
|
235
236
|
__exportStar(require("./GetCitationResponse"), exports);
|