@otr-app/shared-backend-generated-client 2.4.49 → 2.4.50
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/caseActionDomain.ts +2 -0
- package/dist/angular/model/caseTransferHistory.ts +2 -0
- package/dist/typescript/model/CaseActionDomain.d.ts +2 -0
- package/dist/typescript/model/CaseTransferHistory.d.ts +2 -0
- package/dist/typescript-fetch/models/CaseActionDomain.d.ts +12 -0
- package/dist/typescript-fetch/models/CaseActionDomain.js +4 -0
- package/dist/typescript-fetch/models/CaseTransferHistory.d.ts +12 -0
- package/dist/typescript-fetch/models/CaseTransferHistory.js +4 -0
- package/package.json +1 -1
|
@@ -23,6 +23,8 @@ export interface CaseActionDomain {
|
|
|
23
23
|
courtDateActionNote?: string;
|
|
24
24
|
courtDateActionTitle?: string;
|
|
25
25
|
isDeleted?: boolean;
|
|
26
|
+
label1?: string;
|
|
27
|
+
label2?: string;
|
|
26
28
|
}
|
|
27
29
|
export namespace CaseActionDomain {
|
|
28
30
|
export type ActionTypeEnum = 'CASE_ACCEPT' | 'CASE_COUNTER_ACCEPTED' | 'CASE_COUNTER_DECLINED' | 'CASE_COUNTER_INITIATED' | 'CASE_COUNTER_WITHDRAWN' | 'CASE_DECLINE' | 'CITATION_DATA_EXTRACTED' | 'COURT_DATE_REMOVED' | 'COURT_DATE_SCHEDULED' | 'DISCOVERY_RECEIVED' | 'DISCOVERY_REQUESTED' | 'DISPUTE_FILED' | 'DRIVER_LICENSE_REQUESTED' | 'FAILED_PAYMENT_ATTEMPT' | 'NOTICE_OF_APPEARANCE_FILED' | 'OTHER' | 'OVERDUE_BALANCE_PAID' | 'REVIEWED_BY_LAWFIRM' | 'SOCIAL_MEDIA_ASK' | 'TICKET_MAILED_TO_COURT';
|
|
@@ -14,7 +14,9 @@
|
|
|
14
14
|
export interface CaseTransferHistory {
|
|
15
15
|
decisionDate?: string;
|
|
16
16
|
decisionStatus?: CaseTransferHistory.DecisionStatusEnum;
|
|
17
|
+
declineCategory?: string;
|
|
17
18
|
declineNote?: string;
|
|
19
|
+
declineReasonType?: string;
|
|
18
20
|
discountInCents?: number;
|
|
19
21
|
lawfirmCaseCreationDate?: string;
|
|
20
22
|
lawfirmCaseId?: string;
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
export interface CaseTransferHistory {
|
|
13
13
|
"decisionDate"?: string;
|
|
14
14
|
"decisionStatus"?: CaseTransferHistory.DecisionStatusEnum;
|
|
15
|
+
"declineCategory"?: string;
|
|
15
16
|
"declineNote"?: string;
|
|
17
|
+
"declineReasonType"?: string;
|
|
16
18
|
"discountInCents"?: number;
|
|
17
19
|
"lawfirmCaseCreationDate"?: string;
|
|
18
20
|
"lawfirmCaseId"?: string;
|
|
@@ -76,6 +76,18 @@ export interface CaseActionDomain {
|
|
|
76
76
|
* @memberof CaseActionDomain
|
|
77
77
|
*/
|
|
78
78
|
isDeleted?: boolean;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof CaseActionDomain
|
|
83
|
+
*/
|
|
84
|
+
label1?: string;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof CaseActionDomain
|
|
89
|
+
*/
|
|
90
|
+
label2?: string;
|
|
79
91
|
}
|
|
80
92
|
export declare function CaseActionDomainFromJSON(json: any): CaseActionDomain;
|
|
81
93
|
export declare function CaseActionDomainFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaseActionDomain;
|
|
@@ -31,6 +31,8 @@ export function CaseActionDomainFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
31
31
|
'courtDateActionNote': !exists(json, 'courtDateActionNote') ? undefined : json['courtDateActionNote'],
|
|
32
32
|
'courtDateActionTitle': !exists(json, 'courtDateActionTitle') ? undefined : json['courtDateActionTitle'],
|
|
33
33
|
'isDeleted': !exists(json, 'isDeleted') ? undefined : json['isDeleted'],
|
|
34
|
+
'label1': !exists(json, 'label1') ? undefined : json['label1'],
|
|
35
|
+
'label2': !exists(json, 'label2') ? undefined : json['label2'],
|
|
34
36
|
};
|
|
35
37
|
}
|
|
36
38
|
export function CaseActionDomainToJSON(value) {
|
|
@@ -51,6 +53,8 @@ export function CaseActionDomainToJSON(value) {
|
|
|
51
53
|
'courtDateActionNote': value.courtDateActionNote,
|
|
52
54
|
'courtDateActionTitle': value.courtDateActionTitle,
|
|
53
55
|
'isDeleted': value.isDeleted,
|
|
56
|
+
'label1': value.label1,
|
|
57
|
+
'label2': value.label2,
|
|
54
58
|
};
|
|
55
59
|
}
|
|
56
60
|
/**
|
|
@@ -27,12 +27,24 @@ export interface CaseTransferHistory {
|
|
|
27
27
|
* @memberof CaseTransferHistory
|
|
28
28
|
*/
|
|
29
29
|
decisionStatus?: CaseTransferHistoryDecisionStatusEnum;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CaseTransferHistory
|
|
34
|
+
*/
|
|
35
|
+
declineCategory?: string;
|
|
30
36
|
/**
|
|
31
37
|
*
|
|
32
38
|
* @type {string}
|
|
33
39
|
* @memberof CaseTransferHistory
|
|
34
40
|
*/
|
|
35
41
|
declineNote?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CaseTransferHistory
|
|
46
|
+
*/
|
|
47
|
+
declineReasonType?: string;
|
|
36
48
|
/**
|
|
37
49
|
*
|
|
38
50
|
* @type {number}
|
|
@@ -22,7 +22,9 @@ export function CaseTransferHistoryFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
return {
|
|
23
23
|
'decisionDate': !exists(json, 'decisionDate') ? undefined : (new Date(json['decisionDate'])),
|
|
24
24
|
'decisionStatus': !exists(json, 'decisionStatus') ? undefined : json['decisionStatus'],
|
|
25
|
+
'declineCategory': !exists(json, 'declineCategory') ? undefined : json['declineCategory'],
|
|
25
26
|
'declineNote': !exists(json, 'declineNote') ? undefined : json['declineNote'],
|
|
27
|
+
'declineReasonType': !exists(json, 'declineReasonType') ? undefined : json['declineReasonType'],
|
|
26
28
|
'discountInCents': !exists(json, 'discountInCents') ? undefined : json['discountInCents'],
|
|
27
29
|
'lawfirmCaseCreationDate': !exists(json, 'lawfirmCaseCreationDate') ? undefined : (new Date(json['lawfirmCaseCreationDate'])),
|
|
28
30
|
'lawfirmCaseId': !exists(json, 'lawfirmCaseId') ? undefined : json['lawfirmCaseId'],
|
|
@@ -42,7 +44,9 @@ export function CaseTransferHistoryToJSON(value) {
|
|
|
42
44
|
return {
|
|
43
45
|
'decisionDate': value.decisionDate === undefined ? undefined : (value.decisionDate.toISOString()),
|
|
44
46
|
'decisionStatus': value.decisionStatus,
|
|
47
|
+
'declineCategory': value.declineCategory,
|
|
45
48
|
'declineNote': value.declineNote,
|
|
49
|
+
'declineReasonType': value.declineReasonType,
|
|
46
50
|
'discountInCents': value.discountInCents,
|
|
47
51
|
'lawfirmCaseCreationDate': value.lawfirmCaseCreationDate === undefined ? undefined : (value.lawfirmCaseCreationDate.toISOString()),
|
|
48
52
|
'lawfirmCaseId': value.lawfirmCaseId,
|