@otr-app/shared-backend-generated-client 2.3.86 → 2.3.87-manual

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.
Files changed (30) hide show
  1. package/dist/angular/.openapi-generator/FILES +1 -0
  2. package/dist/angular/model/matchCitationModel.ts +15 -0
  3. package/dist/angular/model/matchInnerCaseModel.ts +54 -0
  4. package/dist/angular/model/workflowCaseModel.ts +54 -0
  5. package/dist/angular/model/workflowCitationModel.ts +15 -0
  6. package/dist/typescript/.openapi-generator/VERSION +1 -1
  7. package/dist/typescript/api/api.js +5 -1
  8. package/dist/typescript/index.js +5 -1
  9. package/dist/typescript/model/MatchCitationModel.d.ts +13 -0
  10. package/dist/typescript/model/MatchCitationModel.js +10 -0
  11. package/dist/typescript/model/MatchInnerCaseModel.d.ts +50 -0
  12. package/dist/typescript/model/MatchInnerCaseModel.js +47 -0
  13. package/dist/typescript/model/WorkflowCaseModel.d.ts +50 -0
  14. package/dist/typescript/model/WorkflowCaseModel.js +47 -0
  15. package/dist/typescript/model/WorkflowCitationModel.d.ts +13 -0
  16. package/dist/typescript/model/WorkflowCitationModel.js +10 -0
  17. package/dist/typescript/model/models.js +5 -1
  18. package/package.json +1 -1
  19. package/dist/angular/api/trafficViolationController.service.ts +0 -504
  20. package/dist/angular/model/caseDomain.ts +0 -108
  21. package/dist/angular/model/caseDomainReq.ts +0 -108
  22. package/dist/angular/model/caseDomainRes.ts +0 -108
  23. package/dist/angular/model/citationDomain.ts +0 -134
  24. package/dist/angular/model/citationDomainReq.ts +0 -134
  25. package/dist/angular/model/citationDomainRes.ts +0 -134
  26. package/dist/angular/model/lawfirmCaseDomain.ts +0 -51
  27. package/dist/angular/model/lawfirmCaseDomainReq.ts +0 -51
  28. package/dist/angular/model/lawfirmCaseDomainRes.ts +0 -51
  29. package/dist/angular/model/trafficViolationTypeDomain.ts +0 -89
  30. package/dist/angular/model/workflowStateResponse.ts +0 -19
@@ -1,51 +0,0 @@
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 { FreshDeskTicket } from './freshDeskTicket';
13
- import { Timestamp } from './timestamp';
14
-
15
-
16
- export interface LawfirmCaseDomain {
17
- caseDecisionStatus?: LawfirmCaseDomain.CaseDecisionStatusEnum;
18
- clientDeclineTicket?: FreshDeskTicket;
19
- declineReason?: string;
20
- lawfirmCaseId?: number;
21
- lawfirmDecisionDateUtc?: Timestamp;
22
- lawfirmDeclineTicket?: FreshDeskTicket;
23
- lawfirmId?: number;
24
- lawfirmName?: string;
25
- lawfirmPrimaryEmail?: string;
26
- lawfirmReceiptDateUtc?: Timestamp;
27
- matchExpirationDateUtc?: string;
28
- obfuscatedPictureUrl?: string;
29
- profilePictureUrl?: string;
30
- refundOwner?: LawfirmCaseDomain.RefundOwnerEnum;
31
- }
32
- export namespace LawfirmCaseDomain {
33
- export type CaseDecisionStatusEnum = 'ACCEPTED' | 'CREATED' | 'DECLINED' | 'EXPIRED' | 'PENDING' | 'REMATCHED' | 'REMATCHED_REFERRAL';
34
- export const CaseDecisionStatusEnum = {
35
- Accepted: 'ACCEPTED' as CaseDecisionStatusEnum,
36
- Created: 'CREATED' as CaseDecisionStatusEnum,
37
- Declined: 'DECLINED' as CaseDecisionStatusEnum,
38
- Expired: 'EXPIRED' as CaseDecisionStatusEnum,
39
- Pending: 'PENDING' as CaseDecisionStatusEnum,
40
- Rematched: 'REMATCHED' as CaseDecisionStatusEnum,
41
- RematchedReferral: 'REMATCHED_REFERRAL' as CaseDecisionStatusEnum
42
- };
43
- export type RefundOwnerEnum = 'LAWFIRM' | 'NONE' | 'OTR';
44
- export const RefundOwnerEnum = {
45
- Lawfirm: 'LAWFIRM' as RefundOwnerEnum,
46
- None: 'NONE' as RefundOwnerEnum,
47
- Otr: 'OTR' as RefundOwnerEnum
48
- };
49
- }
50
-
51
-
@@ -1,51 +0,0 @@
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 { TimestampReq } from './timestampReq';
13
- import { FreshDeskTicketReq } from './freshDeskTicketReq';
14
-
15
-
16
- export interface LawfirmCaseDomainReq {
17
- caseDecisionStatus?: LawfirmCaseDomainReq.CaseDecisionStatusEnum;
18
- clientDeclineTicket?: FreshDeskTicketReq;
19
- declineReason?: string;
20
- lawfirmCaseId?: number;
21
- lawfirmDecisionDateUtc?: TimestampReq;
22
- lawfirmDeclineTicket?: FreshDeskTicketReq;
23
- lawfirmId?: number;
24
- lawfirmName?: string;
25
- lawfirmPrimaryEmail?: string;
26
- lawfirmReceiptDateUtc?: TimestampReq;
27
- matchExpirationDateUtc?: string;
28
- obfuscatedPictureUrl?: string;
29
- profilePictureUrl?: string;
30
- refundOwner?: LawfirmCaseDomainReq.RefundOwnerEnum;
31
- }
32
- export namespace LawfirmCaseDomainReq {
33
- export type CaseDecisionStatusEnum = 'ACCEPTED' | 'CREATED' | 'DECLINED' | 'EXPIRED' | 'PENDING' | 'REMATCHED' | 'REMATCHED_REFERRAL';
34
- export const CaseDecisionStatusEnum = {
35
- Accepted: 'ACCEPTED' as CaseDecisionStatusEnum,
36
- Created: 'CREATED' as CaseDecisionStatusEnum,
37
- Declined: 'DECLINED' as CaseDecisionStatusEnum,
38
- Expired: 'EXPIRED' as CaseDecisionStatusEnum,
39
- Pending: 'PENDING' as CaseDecisionStatusEnum,
40
- Rematched: 'REMATCHED' as CaseDecisionStatusEnum,
41
- RematchedReferral: 'REMATCHED_REFERRAL' as CaseDecisionStatusEnum
42
- };
43
- export type RefundOwnerEnum = 'LAWFIRM' | 'NONE' | 'OTR';
44
- export const RefundOwnerEnum = {
45
- Lawfirm: 'LAWFIRM' as RefundOwnerEnum,
46
- None: 'NONE' as RefundOwnerEnum,
47
- Otr: 'OTR' as RefundOwnerEnum
48
- };
49
- }
50
-
51
-
@@ -1,51 +0,0 @@
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 { TimestampRes } from './timestampRes';
13
- import { FreshDeskTicketRes } from './freshDeskTicketRes';
14
-
15
-
16
- export interface LawfirmCaseDomainRes {
17
- caseDecisionStatus?: LawfirmCaseDomainRes.CaseDecisionStatusEnum;
18
- clientDeclineTicket?: FreshDeskTicketRes;
19
- declineReason?: string;
20
- lawfirmCaseId?: number;
21
- lawfirmDecisionDateUtc?: TimestampRes;
22
- lawfirmDeclineTicket?: FreshDeskTicketRes;
23
- lawfirmId?: number;
24
- lawfirmName?: string;
25
- lawfirmPrimaryEmail?: string;
26
- lawfirmReceiptDateUtc?: TimestampRes;
27
- matchExpirationDateUtc?: string;
28
- obfuscatedPictureUrl?: string;
29
- profilePictureUrl?: string;
30
- refundOwner?: LawfirmCaseDomainRes.RefundOwnerEnum;
31
- }
32
- export namespace LawfirmCaseDomainRes {
33
- export type CaseDecisionStatusEnum = 'ACCEPTED' | 'CREATED' | 'DECLINED' | 'EXPIRED' | 'PENDING' | 'REMATCHED' | 'REMATCHED_REFERRAL';
34
- export const CaseDecisionStatusEnum = {
35
- Accepted: 'ACCEPTED' as CaseDecisionStatusEnum,
36
- Created: 'CREATED' as CaseDecisionStatusEnum,
37
- Declined: 'DECLINED' as CaseDecisionStatusEnum,
38
- Expired: 'EXPIRED' as CaseDecisionStatusEnum,
39
- Pending: 'PENDING' as CaseDecisionStatusEnum,
40
- Rematched: 'REMATCHED' as CaseDecisionStatusEnum,
41
- RematchedReferral: 'REMATCHED_REFERRAL' as CaseDecisionStatusEnum
42
- };
43
- export type RefundOwnerEnum = 'LAWFIRM' | 'NONE' | 'OTR';
44
- export const RefundOwnerEnum = {
45
- Lawfirm: 'LAWFIRM' as RefundOwnerEnum,
46
- None: 'NONE' as RefundOwnerEnum,
47
- Otr: 'OTR' as RefundOwnerEnum
48
- };
49
- }
50
-
51
-
@@ -1,89 +0,0 @@
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 { PenaltyModel } from './penaltyModel';
13
-
14
-
15
- export interface TrafficViolationTypeDomain {
16
- insuranceIncreasePercent?: number;
17
- isMovingViolation?: boolean;
18
- penalties?: Array<PenaltyModel>;
19
- trafficViolationDesc?: string;
20
- trafficViolationTypeId?: number;
21
- userFriendlyName?: string;
22
- userFriendlyShortForm?: string;
23
- violationClassification?: TrafficViolationTypeDomain.ViolationClassificationEnum;
24
- violationCode?: string;
25
- }
26
- export namespace TrafficViolationTypeDomain {
27
- export type ViolationClassificationEnum = 'CLASS_1_FELONY' | 'CLASS_1_MISDEMEANOR' | 'CLASS_2_FELONY' | 'CLASS_2_MISDEMEANOR' | 'CLASS_3_FELONY' | 'CLASS_3_MISDEMEANOR' | 'CLASS_4_FELONY' | 'CLASS_4_MISDEMEANOR' | 'CLASS_5_FELONY' | 'CLASS_6_FELONY' | 'CLASS_A1_MISDEMEANOR' | 'CLASS_A_FELONY' | 'CLASS_A_INFRACTION' | 'CLASS_A_MISDEMEANOR' | 'CLASS_A_VIOLATION' | 'CLASS_B_FELONY' | 'CLASS_B_INFRACTION' | 'CLASS_B_MISDEMEANOR' | 'CLASS_B_VIOLATION' | 'CLASS_C_FELONY' | 'CLASS_C_INFRACTION' | 'CLASS_C_MISDEMEANOR' | 'CLASS_C_VIOLATION' | 'CLASS_D_FELONY' | 'CLASS_D_MISDEMEANOR' | 'CLASS_D_VIOLATION' | 'CLASS_E_FELONY' | 'CLASS_F_FELONY' | 'CLASS_H_FELONY' | 'DISORDERLY_PERSONS_OFFENSE' | 'FELONY' | 'FELONY_1ST_DEGREE' | 'FELONY_2ND_DEGREE' | 'FELONY_3RD_DEGREE' | 'FELONY_4TH_DEGREE' | 'FELONY_5TH_DEGREE' | 'GROSS_MISDEMEANOR' | 'HIGH_AND_AGGRAVATED_MISDEMEANOR' | 'INFRACTION' | 'LEVEL_4_FELONY' | 'LEVEL_5_FELONY' | 'LEVEL_6_FELONY' | 'MINOR_MISDEMEANOR' | 'MISDEMEANOR' | 'MISDEMEANOR_1ST_DEGREE' | 'MISDEMEANOR_2ND_DEGREE' | 'MISDEMEANOR_3RD_DEGREE' | 'MISDEMEANOR_4TH_DEGREE' | 'MISDEMEANOR_WITH_REFUND' | 'NON_MOVING' | 'NON_REPORTABLE' | 'PETTY_MISDEMEANOR' | 'QUASI_CRIMINAL' | 'SUMMARY_OFFENSE' | 'SUMMARY_OFFENSE_NO_REFUND' | 'WOBBLER_TO_FELONY' | 'WOBBLER_TO_MISDEMEANOR';
28
- export const ViolationClassificationEnum = {
29
- Class1Felony: 'CLASS_1_FELONY' as ViolationClassificationEnum,
30
- Class1Misdemeanor: 'CLASS_1_MISDEMEANOR' as ViolationClassificationEnum,
31
- Class2Felony: 'CLASS_2_FELONY' as ViolationClassificationEnum,
32
- Class2Misdemeanor: 'CLASS_2_MISDEMEANOR' as ViolationClassificationEnum,
33
- Class3Felony: 'CLASS_3_FELONY' as ViolationClassificationEnum,
34
- Class3Misdemeanor: 'CLASS_3_MISDEMEANOR' as ViolationClassificationEnum,
35
- Class4Felony: 'CLASS_4_FELONY' as ViolationClassificationEnum,
36
- Class4Misdemeanor: 'CLASS_4_MISDEMEANOR' as ViolationClassificationEnum,
37
- Class5Felony: 'CLASS_5_FELONY' as ViolationClassificationEnum,
38
- Class6Felony: 'CLASS_6_FELONY' as ViolationClassificationEnum,
39
- ClassA1Misdemeanor: 'CLASS_A1_MISDEMEANOR' as ViolationClassificationEnum,
40
- ClassAFelony: 'CLASS_A_FELONY' as ViolationClassificationEnum,
41
- ClassAInfraction: 'CLASS_A_INFRACTION' as ViolationClassificationEnum,
42
- ClassAMisdemeanor: 'CLASS_A_MISDEMEANOR' as ViolationClassificationEnum,
43
- ClassAViolation: 'CLASS_A_VIOLATION' as ViolationClassificationEnum,
44
- ClassBFelony: 'CLASS_B_FELONY' as ViolationClassificationEnum,
45
- ClassBInfraction: 'CLASS_B_INFRACTION' as ViolationClassificationEnum,
46
- ClassBMisdemeanor: 'CLASS_B_MISDEMEANOR' as ViolationClassificationEnum,
47
- ClassBViolation: 'CLASS_B_VIOLATION' as ViolationClassificationEnum,
48
- ClassCFelony: 'CLASS_C_FELONY' as ViolationClassificationEnum,
49
- ClassCInfraction: 'CLASS_C_INFRACTION' as ViolationClassificationEnum,
50
- ClassCMisdemeanor: 'CLASS_C_MISDEMEANOR' as ViolationClassificationEnum,
51
- ClassCViolation: 'CLASS_C_VIOLATION' as ViolationClassificationEnum,
52
- ClassDFelony: 'CLASS_D_FELONY' as ViolationClassificationEnum,
53
- ClassDMisdemeanor: 'CLASS_D_MISDEMEANOR' as ViolationClassificationEnum,
54
- ClassDViolation: 'CLASS_D_VIOLATION' as ViolationClassificationEnum,
55
- ClassEFelony: 'CLASS_E_FELONY' as ViolationClassificationEnum,
56
- ClassFFelony: 'CLASS_F_FELONY' as ViolationClassificationEnum,
57
- ClassHFelony: 'CLASS_H_FELONY' as ViolationClassificationEnum,
58
- DisorderlyPersonsOffense: 'DISORDERLY_PERSONS_OFFENSE' as ViolationClassificationEnum,
59
- Felony: 'FELONY' as ViolationClassificationEnum,
60
- Felony1StDegree: 'FELONY_1ST_DEGREE' as ViolationClassificationEnum,
61
- Felony2NdDegree: 'FELONY_2ND_DEGREE' as ViolationClassificationEnum,
62
- Felony3RdDegree: 'FELONY_3RD_DEGREE' as ViolationClassificationEnum,
63
- Felony4ThDegree: 'FELONY_4TH_DEGREE' as ViolationClassificationEnum,
64
- Felony5ThDegree: 'FELONY_5TH_DEGREE' as ViolationClassificationEnum,
65
- GrossMisdemeanor: 'GROSS_MISDEMEANOR' as ViolationClassificationEnum,
66
- HighAndAggravatedMisdemeanor: 'HIGH_AND_AGGRAVATED_MISDEMEANOR' as ViolationClassificationEnum,
67
- Infraction: 'INFRACTION' as ViolationClassificationEnum,
68
- Level4Felony: 'LEVEL_4_FELONY' as ViolationClassificationEnum,
69
- Level5Felony: 'LEVEL_5_FELONY' as ViolationClassificationEnum,
70
- Level6Felony: 'LEVEL_6_FELONY' as ViolationClassificationEnum,
71
- MinorMisdemeanor: 'MINOR_MISDEMEANOR' as ViolationClassificationEnum,
72
- Misdemeanor: 'MISDEMEANOR' as ViolationClassificationEnum,
73
- Misdemeanor1StDegree: 'MISDEMEANOR_1ST_DEGREE' as ViolationClassificationEnum,
74
- Misdemeanor2NdDegree: 'MISDEMEANOR_2ND_DEGREE' as ViolationClassificationEnum,
75
- Misdemeanor3RdDegree: 'MISDEMEANOR_3RD_DEGREE' as ViolationClassificationEnum,
76
- Misdemeanor4ThDegree: 'MISDEMEANOR_4TH_DEGREE' as ViolationClassificationEnum,
77
- MisdemeanorWithRefund: 'MISDEMEANOR_WITH_REFUND' as ViolationClassificationEnum,
78
- NonMoving: 'NON_MOVING' as ViolationClassificationEnum,
79
- NonReportable: 'NON_REPORTABLE' as ViolationClassificationEnum,
80
- PettyMisdemeanor: 'PETTY_MISDEMEANOR' as ViolationClassificationEnum,
81
- QuasiCriminal: 'QUASI_CRIMINAL' as ViolationClassificationEnum,
82
- SummaryOffense: 'SUMMARY_OFFENSE' as ViolationClassificationEnum,
83
- SummaryOffenseNoRefund: 'SUMMARY_OFFENSE_NO_REFUND' as ViolationClassificationEnum,
84
- WobblerToFelony: 'WOBBLER_TO_FELONY' as ViolationClassificationEnum,
85
- WobblerToMisdemeanor: 'WOBBLER_TO_MISDEMEANOR' as ViolationClassificationEnum
86
- };
87
- }
88
-
89
-
@@ -1,19 +0,0 @@
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 { WorkflowCaseModel } from './workflowCaseModel';
13
-
14
-
15
- export interface WorkflowStateResponse {
16
- projectedInsuranceCostInCents?: number;
17
- theCase?: WorkflowCaseModel;
18
- }
19
-