@otr-app/shared-backend-generated-client 2.3.141 → 2.3.142
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/model/caseModel.ts +2 -0
- package/dist/angular/model/caseModelReq.ts +2 -0
- package/dist/angular/model/caseModelRes.ts +2 -0
- package/dist/typescript/model/CaseModel.d.ts +1 -0
- package/dist/typescript/model/CaseModelReq.d.ts +1 -0
- package/dist/typescript/model/CaseModelRes.d.ts +1 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { CitationModel } from './citationModel';
|
|
13
13
|
import { LawfirmCaseModel } from './lawfirmCaseModel';
|
|
14
14
|
import { CaseStatusDomain } from './caseStatusDomain';
|
|
15
|
+
import { CaseViolationPenalty } from './caseViolationPenalty';
|
|
15
16
|
import { UserDomain } from './userDomain';
|
|
16
17
|
import { CaseActionDomain } from './caseActionDomain';
|
|
17
18
|
import { LetterOfEngagement } from './letterOfEngagement';
|
|
@@ -42,6 +43,7 @@ export interface CaseModel {
|
|
|
42
43
|
lawfirmCaseDecision?: LawfirmCaseModel;
|
|
43
44
|
lawfirmCodeApplied?: boolean;
|
|
44
45
|
letterOfEngagement?: LetterOfEngagement;
|
|
46
|
+
maxPenalties?: Array<CaseViolationPenalty>;
|
|
45
47
|
paymentPlanTypeModel?: PaymentPlanTypeModel;
|
|
46
48
|
referralCode?: string;
|
|
47
49
|
refundEligibility?: CaseModel.RefundEligibilityEnum;
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { LawfirmCaseModelReq } from './lawfirmCaseModelReq';
|
|
13
13
|
import { CaseStatusDomain } from './caseStatusDomain';
|
|
14
14
|
import { CancelationDetailsReq } from './cancelationDetailsReq';
|
|
15
|
+
import { CaseViolationPenalty } from './caseViolationPenalty';
|
|
15
16
|
import { TimestampReq } from './timestampReq';
|
|
16
17
|
import { UserDomainReq } from './userDomainReq';
|
|
17
18
|
import { CaseActionDomain } from './caseActionDomain';
|
|
@@ -42,6 +43,7 @@ export interface CaseModelReq {
|
|
|
42
43
|
lawfirmCaseDecision?: LawfirmCaseModelReq;
|
|
43
44
|
lawfirmCodeApplied?: boolean;
|
|
44
45
|
letterOfEngagement?: LetterOfEngagement;
|
|
46
|
+
maxPenalties?: Array<CaseViolationPenalty>;
|
|
45
47
|
paymentPlanTypeModel?: PaymentPlanTypeModelReq;
|
|
46
48
|
referralCode?: string;
|
|
47
49
|
refundEligibility?: CaseModelReq.RefundEligibilityEnum;
|
|
@@ -14,6 +14,7 @@ import { CaseStatusDomain } from './caseStatusDomain';
|
|
|
14
14
|
import { UserDomainRes } from './userDomainRes';
|
|
15
15
|
import { PaymentPlanTypeModelRes } from './paymentPlanTypeModelRes';
|
|
16
16
|
import { CancelationDetailsRes } from './cancelationDetailsRes';
|
|
17
|
+
import { CaseViolationPenalty } from './caseViolationPenalty';
|
|
17
18
|
import { TimestampRes } from './timestampRes';
|
|
18
19
|
import { CaseActionDomain } from './caseActionDomain';
|
|
19
20
|
import { LetterOfEngagement } from './letterOfEngagement';
|
|
@@ -42,6 +43,7 @@ export interface CaseModelRes {
|
|
|
42
43
|
lawfirmCaseDecision?: LawfirmCaseModelRes;
|
|
43
44
|
lawfirmCodeApplied?: boolean;
|
|
44
45
|
letterOfEngagement?: LetterOfEngagement;
|
|
46
|
+
maxPenalties?: Array<CaseViolationPenalty>;
|
|
45
47
|
paymentPlanTypeModel?: PaymentPlanTypeModelRes;
|
|
46
48
|
referralCode?: string;
|
|
47
49
|
refundEligibility?: CaseModelRes.RefundEligibilityEnum;
|
|
@@ -32,6 +32,7 @@ export interface CaseModel {
|
|
|
32
32
|
"lawfirmCaseDecision"?: models.LawfirmCaseModel;
|
|
33
33
|
"lawfirmCodeApplied"?: boolean;
|
|
34
34
|
"letterOfEngagement"?: models.LetterOfEngagement;
|
|
35
|
+
"maxPenalties"?: Array<models.CaseViolationPenalty>;
|
|
35
36
|
"paymentPlanTypeModel"?: models.PaymentPlanTypeModel;
|
|
36
37
|
"referralCode"?: string;
|
|
37
38
|
"refundEligibility"?: CaseModel.RefundEligibilityEnum;
|
|
@@ -32,6 +32,7 @@ export interface CaseModelReq {
|
|
|
32
32
|
"lawfirmCaseDecision"?: models.LawfirmCaseModelReq;
|
|
33
33
|
"lawfirmCodeApplied"?: boolean;
|
|
34
34
|
"letterOfEngagement"?: models.LetterOfEngagement;
|
|
35
|
+
"maxPenalties"?: Array<models.CaseViolationPenalty>;
|
|
35
36
|
"paymentPlanTypeModel"?: models.PaymentPlanTypeModelReq;
|
|
36
37
|
"referralCode"?: string;
|
|
37
38
|
"refundEligibility"?: CaseModelReq.RefundEligibilityEnum;
|
|
@@ -32,6 +32,7 @@ export interface CaseModelRes {
|
|
|
32
32
|
"lawfirmCaseDecision"?: models.LawfirmCaseModelRes;
|
|
33
33
|
"lawfirmCodeApplied"?: boolean;
|
|
34
34
|
"letterOfEngagement"?: models.LetterOfEngagement;
|
|
35
|
+
"maxPenalties"?: Array<models.CaseViolationPenalty>;
|
|
35
36
|
"paymentPlanTypeModel"?: models.PaymentPlanTypeModelRes;
|
|
36
37
|
"referralCode"?: string;
|
|
37
38
|
"refundEligibility"?: CaseModelRes.RefundEligibilityEnum;
|