@otr-app/shared-backend-generated-client 2.4.34 → 2.4.36
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/caseLineItemsSummary.ts +1 -0
- package/dist/angular/model/casePaymentDomain.ts +1 -0
- package/dist/angular/model/existingAccountDetails.ts +1 -0
- package/dist/typescript/model/CaseLineItemsSummary.d.ts +1 -0
- package/dist/typescript/model/CasePaymentDomain.d.ts +1 -0
- package/dist/typescript/model/ExistingAccountDetails.d.ts +1 -0
- package/dist/typescript-fetch/models/CaseLineItemsSummary.d.ts +6 -0
- package/dist/typescript-fetch/models/CaseLineItemsSummary.js +2 -0
- package/dist/typescript-fetch/models/CasePaymentDomain.d.ts +6 -0
- package/dist/typescript-fetch/models/CasePaymentDomain.js +2 -0
- package/dist/typescript-fetch/models/ExistingAccountDetails.d.ts +6 -0
- package/dist/typescript-fetch/models/ExistingAccountDetails.js +2 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
export interface CaseLineItemsSummary {
|
|
13
13
|
"caseBaseCostInCents"?: number;
|
|
14
14
|
"clientTotalCostInCents"?: number;
|
|
15
|
+
"hasPredictedOrAdjustedFee"?: boolean;
|
|
15
16
|
"lawfirmAssumedCostInCents"?: number;
|
|
16
17
|
"lawfirmCaseFees"?: number;
|
|
17
18
|
"lawfirmEarningsForCase"?: number;
|
|
@@ -27,6 +27,12 @@ export interface CaseLineItemsSummary {
|
|
|
27
27
|
* @memberof CaseLineItemsSummary
|
|
28
28
|
*/
|
|
29
29
|
clientTotalCostInCents?: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof CaseLineItemsSummary
|
|
34
|
+
*/
|
|
35
|
+
hasPredictedOrAdjustedFee?: boolean;
|
|
30
36
|
/**
|
|
31
37
|
*
|
|
32
38
|
* @type {number}
|
|
@@ -22,6 +22,7 @@ export function CaseLineItemsSummaryFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
return {
|
|
23
23
|
'caseBaseCostInCents': !exists(json, 'caseBaseCostInCents') ? undefined : json['caseBaseCostInCents'],
|
|
24
24
|
'clientTotalCostInCents': !exists(json, 'clientTotalCostInCents') ? undefined : json['clientTotalCostInCents'],
|
|
25
|
+
'hasPredictedOrAdjustedFee': !exists(json, 'hasPredictedOrAdjustedFee') ? undefined : json['hasPredictedOrAdjustedFee'],
|
|
25
26
|
'lawfirmAssumedCostInCents': !exists(json, 'lawfirmAssumedCostInCents') ? undefined : json['lawfirmAssumedCostInCents'],
|
|
26
27
|
'lawfirmCaseFees': !exists(json, 'lawfirmCaseFees') ? undefined : json['lawfirmCaseFees'],
|
|
27
28
|
'lawfirmEarningsForCase': !exists(json, 'lawfirmEarningsForCase') ? undefined : json['lawfirmEarningsForCase'],
|
|
@@ -45,6 +46,7 @@ export function CaseLineItemsSummaryToJSON(value) {
|
|
|
45
46
|
return {
|
|
46
47
|
'caseBaseCostInCents': value.caseBaseCostInCents,
|
|
47
48
|
'clientTotalCostInCents': value.clientTotalCostInCents,
|
|
49
|
+
'hasPredictedOrAdjustedFee': value.hasPredictedOrAdjustedFee,
|
|
48
50
|
'lawfirmAssumedCostInCents': value.lawfirmAssumedCostInCents,
|
|
49
51
|
'lawfirmCaseFees': value.lawfirmCaseFees,
|
|
50
52
|
'lawfirmEarningsForCase': value.lawfirmEarningsForCase,
|
|
@@ -27,6 +27,7 @@ export function CasePaymentDomainFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
27
27
|
'clientTotalCost': !exists(json, 'clientTotalCost') ? undefined : json['clientTotalCost'],
|
|
28
28
|
'creationDateUTC': !exists(json, 'creationDateUTC') ? undefined : TimestampFromJSON(json['creationDateUTC']),
|
|
29
29
|
'dueDate': !exists(json, 'dueDate') ? undefined : (new Date(json['dueDate'])),
|
|
30
|
+
'hasPredictedOrAdjustedFee': !exists(json, 'hasPredictedOrAdjustedFee') ? undefined : json['hasPredictedOrAdjustedFee'],
|
|
30
31
|
'isLocked': !exists(json, 'isLocked') ? undefined : json['isLocked'],
|
|
31
32
|
'isPaymentActive': !exists(json, 'isPaymentActive') ? undefined : json['isPaymentActive'],
|
|
32
33
|
'lastAttemptDate': !exists(json, 'lastAttemptDate') ? undefined : (new Date(json['lastAttemptDate'])),
|
|
@@ -65,6 +66,7 @@ export function CasePaymentDomainToJSON(value) {
|
|
|
65
66
|
'clientTotalCost': value.clientTotalCost,
|
|
66
67
|
'creationDateUTC': TimestampToJSON(value.creationDateUTC),
|
|
67
68
|
'dueDate': value.dueDate === undefined ? undefined : (value.dueDate.toISOString()),
|
|
69
|
+
'hasPredictedOrAdjustedFee': value.hasPredictedOrAdjustedFee,
|
|
68
70
|
'isLocked': value.isLocked,
|
|
69
71
|
'isPaymentActive': value.isPaymentActive,
|
|
70
72
|
'lastAttemptDate': value.lastAttemptDate === undefined ? undefined : (value.lastAttemptDate.toISOString()),
|
|
@@ -22,6 +22,7 @@ export function ExistingAccountDetailsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
return {
|
|
23
23
|
'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
|
|
24
24
|
'ghostAccount': !exists(json, 'ghostAccount') ? undefined : json['ghostAccount'],
|
|
25
|
+
'hasActiveCase': !exists(json, 'hasActiveCase') ? undefined : json['hasActiveCase'],
|
|
25
26
|
'isPhoneVerified': !exists(json, 'isPhoneVerified') ? undefined : json['isPhoneVerified'],
|
|
26
27
|
'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
|
|
27
28
|
'obfuscatedEmailAddress': !exists(json, 'obfuscatedEmailAddress') ? undefined : json['obfuscatedEmailAddress'],
|
|
@@ -40,6 +41,7 @@ export function ExistingAccountDetailsToJSON(value) {
|
|
|
40
41
|
return {
|
|
41
42
|
'firstName': value.firstName,
|
|
42
43
|
'ghostAccount': value.ghostAccount,
|
|
44
|
+
'hasActiveCase': value.hasActiveCase,
|
|
43
45
|
'isPhoneVerified': value.isPhoneVerified,
|
|
44
46
|
'lastName': value.lastName,
|
|
45
47
|
'obfuscatedEmailAddress': value.obfuscatedEmailAddress,
|