@otr-app/shared-backend-generated-client 2.5.116 → 2.5.117
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/workflowFinancials.ts +1 -0
- package/dist/typescript/model/WorkflowFinancials.d.ts +1 -0
- package/dist/typescript-fetch/models/WorkflowFinancials.d.ts +6 -0
- package/dist/typescript-fetch/models/WorkflowFinancials.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +2 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ import { WorkflowLineItemModel } from './workflowLineItemModel';
|
|
|
16
16
|
export interface WorkflowFinancials {
|
|
17
17
|
lineItems?: Array<WorkflowLineItemModel>;
|
|
18
18
|
payments?: Array<WorkflowCasePaymentModel>;
|
|
19
|
+
totalCaseCostInCents?: number;
|
|
19
20
|
totalClientBaseCostInCents?: number;
|
|
20
21
|
totalClientCostInCents?: number;
|
|
21
22
|
totalLegalFeeInCents?: number;
|
|
@@ -13,6 +13,7 @@ import * as models from './models';
|
|
|
13
13
|
export interface WorkflowFinancials {
|
|
14
14
|
"lineItems"?: Array<models.WorkflowLineItemModel>;
|
|
15
15
|
"payments"?: Array<models.WorkflowCasePaymentModel>;
|
|
16
|
+
"totalCaseCostInCents"?: number;
|
|
16
17
|
"totalClientBaseCostInCents"?: number;
|
|
17
18
|
"totalClientCostInCents"?: number;
|
|
18
19
|
"totalLegalFeeInCents"?: number;
|
|
@@ -28,6 +28,12 @@ export interface WorkflowFinancials {
|
|
|
28
28
|
* @memberof WorkflowFinancials
|
|
29
29
|
*/
|
|
30
30
|
payments?: Array<WorkflowCasePaymentModel>;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof WorkflowFinancials
|
|
35
|
+
*/
|
|
36
|
+
totalCaseCostInCents?: number;
|
|
31
37
|
/**
|
|
32
38
|
*
|
|
33
39
|
* @type {number}
|
|
@@ -23,6 +23,7 @@ export function WorkflowFinancialsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
return {
|
|
24
24
|
'lineItems': !exists(json, 'lineItems') ? undefined : (json['lineItems'].map(WorkflowLineItemModelFromJSON)),
|
|
25
25
|
'payments': !exists(json, 'payments') ? undefined : (json['payments'].map(WorkflowCasePaymentModelFromJSON)),
|
|
26
|
+
'totalCaseCostInCents': !exists(json, 'totalCaseCostInCents') ? undefined : json['totalCaseCostInCents'],
|
|
26
27
|
'totalClientBaseCostInCents': !exists(json, 'totalClientBaseCostInCents') ? undefined : json['totalClientBaseCostInCents'],
|
|
27
28
|
'totalClientCostInCents': !exists(json, 'totalClientCostInCents') ? undefined : json['totalClientCostInCents'],
|
|
28
29
|
'totalLegalFeeInCents': !exists(json, 'totalLegalFeeInCents') ? undefined : json['totalLegalFeeInCents'],
|
|
@@ -39,6 +40,7 @@ export function WorkflowFinancialsToJSON(value) {
|
|
|
39
40
|
return {
|
|
40
41
|
'lineItems': value.lineItems === undefined ? undefined : (value.lineItems.map(WorkflowLineItemModelToJSON)),
|
|
41
42
|
'payments': value.payments === undefined ? undefined : (value.payments.map(WorkflowCasePaymentModelToJSON)),
|
|
43
|
+
'totalCaseCostInCents': value.totalCaseCostInCents,
|
|
42
44
|
'totalClientBaseCostInCents': value.totalClientBaseCostInCents,
|
|
43
45
|
'totalClientCostInCents': value.totalClientCostInCents,
|
|
44
46
|
'totalLegalFeeInCents': value.totalLegalFeeInCents,
|
|
@@ -16770,6 +16770,8 @@ export interface components {
|
|
|
16770
16770
|
lineItems?: components["schemas"]["WorkflowLineItemModel"][];
|
|
16771
16771
|
payments?: components["schemas"]["WorkflowCasePaymentModel"][];
|
|
16772
16772
|
/** Format: int32 */
|
|
16773
|
+
totalCaseCostInCents?: number;
|
|
16774
|
+
/** Format: int32 */
|
|
16773
16775
|
totalClientBaseCostInCents?: number;
|
|
16774
16776
|
/** Format: int32 */
|
|
16775
16777
|
totalClientCostInCents?: number;
|