@otr-app/shared-backend-generated-client 2.5.86 → 2.5.87

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.
@@ -18,6 +18,7 @@ export interface WorkflowFinancials {
18
18
  payments?: Array<WorkflowCasePaymentModel>;
19
19
  totalClientBaseCostInCents?: number;
20
20
  totalClientCostInCents?: number;
21
+ totalLegalFeeInCents?: number;
21
22
  totalRefCodeAdjustmentInCents?: number;
22
23
  }
23
24
 
@@ -15,5 +15,6 @@ export interface WorkflowFinancials {
15
15
  "payments"?: Array<models.WorkflowCasePaymentModel>;
16
16
  "totalClientBaseCostInCents"?: number;
17
17
  "totalClientCostInCents"?: number;
18
+ "totalLegalFeeInCents"?: number;
18
19
  "totalRefCodeAdjustmentInCents"?: number;
19
20
  }
@@ -40,6 +40,12 @@ export interface WorkflowFinancials {
40
40
  * @memberof WorkflowFinancials
41
41
  */
42
42
  totalClientCostInCents?: number;
43
+ /**
44
+ *
45
+ * @type {number}
46
+ * @memberof WorkflowFinancials
47
+ */
48
+ totalLegalFeeInCents?: number;
43
49
  /**
44
50
  *
45
51
  * @type {number}
@@ -25,6 +25,7 @@ export function WorkflowFinancialsFromJSONTyped(json, ignoreDiscriminator) {
25
25
  'payments': !exists(json, 'payments') ? undefined : (json['payments'].map(WorkflowCasePaymentModelFromJSON)),
26
26
  'totalClientBaseCostInCents': !exists(json, 'totalClientBaseCostInCents') ? undefined : json['totalClientBaseCostInCents'],
27
27
  'totalClientCostInCents': !exists(json, 'totalClientCostInCents') ? undefined : json['totalClientCostInCents'],
28
+ 'totalLegalFeeInCents': !exists(json, 'totalLegalFeeInCents') ? undefined : json['totalLegalFeeInCents'],
28
29
  'totalRefCodeAdjustmentInCents': !exists(json, 'totalRefCodeAdjustmentInCents') ? undefined : json['totalRefCodeAdjustmentInCents'],
29
30
  };
30
31
  }
@@ -40,6 +41,7 @@ export function WorkflowFinancialsToJSON(value) {
40
41
  'payments': value.payments === undefined ? undefined : (value.payments.map(WorkflowCasePaymentModelToJSON)),
41
42
  'totalClientBaseCostInCents': value.totalClientBaseCostInCents,
42
43
  'totalClientCostInCents': value.totalClientCostInCents,
44
+ 'totalLegalFeeInCents': value.totalLegalFeeInCents,
43
45
  'totalRefCodeAdjustmentInCents': value.totalRefCodeAdjustmentInCents,
44
46
  };
45
47
  }
@@ -16537,6 +16537,8 @@ export interface components {
16537
16537
  /** Format: int32 */
16538
16538
  totalClientCostInCents?: number;
16539
16539
  /** Format: int32 */
16540
+ totalLegalFeeInCents?: number;
16541
+ /** Format: int32 */
16540
16542
  totalRefCodeAdjustmentInCents?: number;
16541
16543
  };
16542
16544
  /** WorkflowLineItemModel */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.86",
3
+ "version": "2.5.87",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"