@otr-app/shared-backend-generated-client 2.3.95 → 2.3.97
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 +2 -0
- package/dist/angular/model/caseUserDefendantAttributes.ts +21 -0
- package/dist/angular/model/caseUserDetailsModel.ts +39 -0
- package/dist/angular/model/dashboardCaseModel.ts +2 -0
- package/dist/angular/model/lawfirmCaseModel.ts +1 -0
- package/dist/angular/model/lawfirmCaseModelReq.ts +1 -0
- package/dist/angular/model/lawfirmCaseModelRes.ts +1 -0
- package/dist/angular/model/models.ts +2 -0
- package/dist/typescript/model/CaseUserDefendantAttributes.d.ts +18 -0
- package/dist/typescript/model/CaseUserDefendantAttributes.js +13 -0
- package/dist/typescript/model/CaseUserDetailsModel.d.ts +33 -0
- package/dist/typescript/model/CaseUserDetailsModel.js +27 -0
- package/dist/typescript/model/DashboardCaseModel.d.ts +1 -0
- package/dist/typescript/model/LawfirmCaseModel.d.ts +1 -0
- package/dist/typescript/model/LawfirmCaseModelReq.d.ts +1 -0
- package/dist/typescript/model/LawfirmCaseModelRes.d.ts +1 -0
- package/dist/typescript/model/models.d.ts +2 -0
- package/dist/typescript/model/models.js +2 -0
- package/package.json +1 -1
|
@@ -198,7 +198,9 @@ model/caseStatusDomain.ts
|
|
|
198
198
|
model/caseSummaryDomain.ts
|
|
199
199
|
model/caseTransferHistory.ts
|
|
200
200
|
model/caseTransferResponse.ts
|
|
201
|
+
model/caseUserDefendantAttributes.ts
|
|
201
202
|
model/caseUserDefendantAttributesRequest.ts
|
|
203
|
+
model/caseUserDetailsModel.ts
|
|
202
204
|
model/caseUserPermissionAttributes.ts
|
|
203
205
|
model/caseViolationPenalty.ts
|
|
204
206
|
model/caseWithCoverageObtained.ts
|
|
@@ -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
|
+
|
|
14
|
+
export interface CaseUserDefendantAttributes {
|
|
15
|
+
dateOfBirth?: string;
|
|
16
|
+
firstName?: string;
|
|
17
|
+
lastName?: string;
|
|
18
|
+
licenseNumber?: string;
|
|
19
|
+
licenseState?: string;
|
|
20
|
+
}
|
|
21
|
+
|
|
@@ -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
|
+
import { CaseUserDefendantAttributes } from './caseUserDefendantAttributes';
|
|
13
|
+
import { CaseUserPermissionAttributes } from './caseUserPermissionAttributes';
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
export interface CaseUserDetailsModel {
|
|
17
|
+
additionalNote?: string;
|
|
18
|
+
defendantAttributes?: CaseUserDefendantAttributes;
|
|
19
|
+
isBookingAgent?: boolean;
|
|
20
|
+
isDefendant?: boolean;
|
|
21
|
+
isOwner?: boolean;
|
|
22
|
+
ownerUserId?: number;
|
|
23
|
+
permissionAttributes?: CaseUserPermissionAttributes;
|
|
24
|
+
relationshipToClientType?: CaseUserDetailsModel.RelationshipToClientTypeEnum;
|
|
25
|
+
}
|
|
26
|
+
export namespace CaseUserDetailsModel {
|
|
27
|
+
export type RelationshipToClientTypeEnum = 'EMPLOYER' | 'FAMILY_MEMBER' | 'FRIEND' | 'LAWYER' | 'OTHER' | 'SELF' | 'UNKNOWN';
|
|
28
|
+
export const RelationshipToClientTypeEnum = {
|
|
29
|
+
Employer: 'EMPLOYER' as RelationshipToClientTypeEnum,
|
|
30
|
+
FamilyMember: 'FAMILY_MEMBER' as RelationshipToClientTypeEnum,
|
|
31
|
+
Friend: 'FRIEND' as RelationshipToClientTypeEnum,
|
|
32
|
+
Lawyer: 'LAWYER' as RelationshipToClientTypeEnum,
|
|
33
|
+
Other: 'OTHER' as RelationshipToClientTypeEnum,
|
|
34
|
+
Self: 'SELF' as RelationshipToClientTypeEnum,
|
|
35
|
+
Unknown: 'UNKNOWN' as RelationshipToClientTypeEnum
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { DashboardStatusModel } from './dashboardStatusModel';
|
|
13
13
|
import { DashboardCourtModel } from './dashboardCourtModel';
|
|
14
|
+
import { CaseUserDetailsModel } from './caseUserDetailsModel';
|
|
14
15
|
import { DashboardCitationModel } from './dashboardCitationModel';
|
|
15
16
|
import { DashboardAuthorModel } from './dashboardAuthorModel';
|
|
16
17
|
|
|
@@ -19,6 +20,7 @@ export interface DashboardCaseModel {
|
|
|
19
20
|
authorModel?: DashboardAuthorModel;
|
|
20
21
|
bookingConfirmedDate?: string;
|
|
21
22
|
caseId?: string;
|
|
23
|
+
caseUserDetails?: CaseUserDetailsModel;
|
|
22
24
|
citation?: DashboardCitationModel;
|
|
23
25
|
court?: DashboardCourtModel;
|
|
24
26
|
hasLeftLawyerReview?: boolean;
|
|
@@ -18,6 +18,7 @@ export interface LawfirmCaseModel {
|
|
|
18
18
|
clientDeclineTicket?: FreshDeskTicket;
|
|
19
19
|
declineReason?: string;
|
|
20
20
|
isMatchInternal?: boolean;
|
|
21
|
+
isSelected?: boolean;
|
|
21
22
|
lawfirmCaseId?: number;
|
|
22
23
|
lawfirmDecisionDateUtc?: Timestamp;
|
|
23
24
|
lawfirmDeclineTicket?: FreshDeskTicket;
|
|
@@ -18,6 +18,7 @@ export interface LawfirmCaseModelReq {
|
|
|
18
18
|
clientDeclineTicket?: FreshDeskTicketReq;
|
|
19
19
|
declineReason?: string;
|
|
20
20
|
isMatchInternal?: boolean;
|
|
21
|
+
isSelected?: boolean;
|
|
21
22
|
lawfirmCaseId?: number;
|
|
22
23
|
lawfirmDecisionDateUtc?: TimestampReq;
|
|
23
24
|
lawfirmDeclineTicket?: FreshDeskTicketReq;
|
|
@@ -18,6 +18,7 @@ export interface LawfirmCaseModelRes {
|
|
|
18
18
|
clientDeclineTicket?: FreshDeskTicketRes;
|
|
19
19
|
declineReason?: string;
|
|
20
20
|
isMatchInternal?: boolean;
|
|
21
|
+
isSelected?: boolean;
|
|
21
22
|
lawfirmCaseId?: number;
|
|
22
23
|
lawfirmDecisionDateUtc?: TimestampRes;
|
|
23
24
|
lawfirmDeclineTicket?: FreshDeskTicketRes;
|
|
@@ -89,7 +89,9 @@ export * from './caseStatusDomain';
|
|
|
89
89
|
export * from './caseSummaryDomain';
|
|
90
90
|
export * from './caseTransferHistory';
|
|
91
91
|
export * from './caseTransferResponse';
|
|
92
|
+
export * from './caseUserDefendantAttributes';
|
|
92
93
|
export * from './caseUserDefendantAttributesRequest';
|
|
94
|
+
export * from './caseUserDetailsModel';
|
|
93
95
|
export * from './caseUserPermissionAttributes';
|
|
94
96
|
export * from './caseViolationPenalty';
|
|
95
97
|
export * from './caseWithCoverageObtained';
|
|
@@ -0,0 +1,18 @@
|
|
|
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 CaseUserDefendantAttributes {
|
|
13
|
+
"dateOfBirth"?: string;
|
|
14
|
+
"firstName"?: string;
|
|
15
|
+
"lastName"?: string;
|
|
16
|
+
"licenseNumber"?: string;
|
|
17
|
+
"licenseState"?: string;
|
|
18
|
+
}
|
|
@@ -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,33 @@
|
|
|
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 CaseUserDetailsModel {
|
|
14
|
+
"additionalNote"?: string;
|
|
15
|
+
"defendantAttributes"?: models.CaseUserDefendantAttributes;
|
|
16
|
+
"isBookingAgent"?: boolean;
|
|
17
|
+
"isDefendant"?: boolean;
|
|
18
|
+
"isOwner"?: boolean;
|
|
19
|
+
"ownerUserId"?: number;
|
|
20
|
+
"permissionAttributes"?: models.CaseUserPermissionAttributes;
|
|
21
|
+
"relationshipToClientType"?: CaseUserDetailsModel.RelationshipToClientTypeEnum;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace CaseUserDetailsModel {
|
|
24
|
+
enum RelationshipToClientTypeEnum {
|
|
25
|
+
EMPLOYER,
|
|
26
|
+
FAMILYMEMBER,
|
|
27
|
+
FRIEND,
|
|
28
|
+
LAWYER,
|
|
29
|
+
OTHER,
|
|
30
|
+
SELF,
|
|
31
|
+
UNKNOWN
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
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.CaseUserDetailsModel = void 0;
|
|
15
|
+
var CaseUserDetailsModel;
|
|
16
|
+
(function (CaseUserDetailsModel) {
|
|
17
|
+
var RelationshipToClientTypeEnum;
|
|
18
|
+
(function (RelationshipToClientTypeEnum) {
|
|
19
|
+
RelationshipToClientTypeEnum[RelationshipToClientTypeEnum["EMPLOYER"] = 'EMPLOYER'] = "EMPLOYER";
|
|
20
|
+
RelationshipToClientTypeEnum[RelationshipToClientTypeEnum["FAMILYMEMBER"] = 'FAMILY_MEMBER'] = "FAMILYMEMBER";
|
|
21
|
+
RelationshipToClientTypeEnum[RelationshipToClientTypeEnum["FRIEND"] = 'FRIEND'] = "FRIEND";
|
|
22
|
+
RelationshipToClientTypeEnum[RelationshipToClientTypeEnum["LAWYER"] = 'LAWYER'] = "LAWYER";
|
|
23
|
+
RelationshipToClientTypeEnum[RelationshipToClientTypeEnum["OTHER"] = 'OTHER'] = "OTHER";
|
|
24
|
+
RelationshipToClientTypeEnum[RelationshipToClientTypeEnum["SELF"] = 'SELF'] = "SELF";
|
|
25
|
+
RelationshipToClientTypeEnum[RelationshipToClientTypeEnum["UNKNOWN"] = 'UNKNOWN'] = "UNKNOWN";
|
|
26
|
+
})(RelationshipToClientTypeEnum = CaseUserDetailsModel.RelationshipToClientTypeEnum || (CaseUserDetailsModel.RelationshipToClientTypeEnum = {}));
|
|
27
|
+
})(CaseUserDetailsModel = exports.CaseUserDetailsModel || (exports.CaseUserDetailsModel = {}));
|
|
@@ -14,6 +14,7 @@ export interface DashboardCaseModel {
|
|
|
14
14
|
"authorModel"?: models.DashboardAuthorModel;
|
|
15
15
|
"bookingConfirmedDate"?: string;
|
|
16
16
|
"caseId"?: string;
|
|
17
|
+
"caseUserDetails"?: models.CaseUserDetailsModel;
|
|
17
18
|
"citation"?: models.DashboardCitationModel;
|
|
18
19
|
"court"?: models.DashboardCourtModel;
|
|
19
20
|
"hasLeftLawyerReview"?: boolean;
|
|
@@ -15,6 +15,7 @@ export interface LawfirmCaseModel {
|
|
|
15
15
|
"clientDeclineTicket"?: models.FreshDeskTicket;
|
|
16
16
|
"declineReason"?: string;
|
|
17
17
|
"isMatchInternal"?: boolean;
|
|
18
|
+
"isSelected"?: boolean;
|
|
18
19
|
"lawfirmCaseId"?: number;
|
|
19
20
|
"lawfirmDecisionDateUtc"?: models.Timestamp;
|
|
20
21
|
"lawfirmDeclineTicket"?: models.FreshDeskTicket;
|
|
@@ -15,6 +15,7 @@ export interface LawfirmCaseModelReq {
|
|
|
15
15
|
"clientDeclineTicket"?: models.FreshDeskTicketReq;
|
|
16
16
|
"declineReason"?: string;
|
|
17
17
|
"isMatchInternal"?: boolean;
|
|
18
|
+
"isSelected"?: boolean;
|
|
18
19
|
"lawfirmCaseId"?: number;
|
|
19
20
|
"lawfirmDecisionDateUtc"?: models.TimestampReq;
|
|
20
21
|
"lawfirmDeclineTicket"?: models.FreshDeskTicketReq;
|
|
@@ -15,6 +15,7 @@ export interface LawfirmCaseModelRes {
|
|
|
15
15
|
"clientDeclineTicket"?: models.FreshDeskTicketRes;
|
|
16
16
|
"declineReason"?: string;
|
|
17
17
|
"isMatchInternal"?: boolean;
|
|
18
|
+
"isSelected"?: boolean;
|
|
18
19
|
"lawfirmCaseId"?: number;
|
|
19
20
|
"lawfirmDecisionDateUtc"?: models.TimestampRes;
|
|
20
21
|
"lawfirmDeclineTicket"?: models.FreshDeskTicketRes;
|
|
@@ -89,7 +89,9 @@ export * from './CaseStatusDomain';
|
|
|
89
89
|
export * from './CaseSummaryDomain';
|
|
90
90
|
export * from './CaseTransferHistory';
|
|
91
91
|
export * from './CaseTransferResponse';
|
|
92
|
+
export * from './CaseUserDefendantAttributes';
|
|
92
93
|
export * from './CaseUserDefendantAttributesRequest';
|
|
94
|
+
export * from './CaseUserDetailsModel';
|
|
93
95
|
export * from './CaseUserPermissionAttributes';
|
|
94
96
|
export * from './CaseViolationPenalty';
|
|
95
97
|
export * from './CaseWithCoverageObtained';
|
|
@@ -101,7 +101,9 @@ __exportStar(require("./CaseStatusDomain"), exports);
|
|
|
101
101
|
__exportStar(require("./CaseSummaryDomain"), exports);
|
|
102
102
|
__exportStar(require("./CaseTransferHistory"), exports);
|
|
103
103
|
__exportStar(require("./CaseTransferResponse"), exports);
|
|
104
|
+
__exportStar(require("./CaseUserDefendantAttributes"), exports);
|
|
104
105
|
__exportStar(require("./CaseUserDefendantAttributesRequest"), exports);
|
|
106
|
+
__exportStar(require("./CaseUserDetailsModel"), exports);
|
|
105
107
|
__exportStar(require("./CaseUserPermissionAttributes"), exports);
|
|
106
108
|
__exportStar(require("./CaseViolationPenalty"), exports);
|
|
107
109
|
__exportStar(require("./CaseWithCoverageObtained"), exports);
|