From 4c89d5fba44259f063fcd6d694dba2c8d5c7e3de Mon Sep 17 00:00:00 2001 From: "tim.anderson" Date: Tue, 31 Dec 2024 13:34:09 -0700 Subject: [PATCH] update orderlineitem type --- src/model/Order.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/model/Order.ts b/src/model/Order.ts index 4b33184..bdb26bb 100644 --- a/src/model/Order.ts +++ b/src/model/Order.ts @@ -35,12 +35,13 @@ export type OrderLineItem = { quantity: string | number; quantity_formatted?: string; consumption: string | number; + custom_description?: string; duration: number; exclude_from_invoice?: boolean; id: string; organization: string | null; - plan_record_id: string; - proration: number; + plan_record_id: string | null; + proration: string | number; records?: { duration: number; end: string;