@otr-app/shared-backend-generated-client 2.3.96 → 2.3.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.
@@ -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;
@@ -14,6 +14,7 @@
14
14
  export interface GetCitationsWithMissingFieldsRequest {
15
15
  caseStatuses?: Array<GetCitationsWithMissingFieldsRequest.CaseStatusesEnum>;
16
16
  endDate?: string;
17
+ ignoreDataBackfill?: boolean;
17
18
  maxRecords?: number;
18
19
  selectedStates?: Array<GetCitationsWithMissingFieldsRequest.SelectedStatesEnum>;
19
20
  showMissingCourtRecords?: boolean;
@@ -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;
@@ -12,6 +12,7 @@
12
12
  export interface GetCitationsWithMissingFieldsRequest {
13
13
  "caseStatuses"?: Array<GetCitationsWithMissingFieldsRequest.CaseStatusesEnum>;
14
14
  "endDate"?: string;
15
+ "ignoreDataBackfill"?: boolean;
15
16
  "maxRecords"?: number;
16
17
  "selectedStates"?: Array<GetCitationsWithMissingFieldsRequest.SelectedStatesEnum>;
17
18
  "showMissingCourtRecords"?: boolean;
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.96",
3
+ "version": "2.3.98",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"