Skip to content

Commit 4c89d5f

Browse files
committed
update orderlineitem type
1 parent 6275c46 commit 4c89d5f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/model/Order.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,13 @@ export type OrderLineItem = {
3535
quantity: string | number;
3636
quantity_formatted?: string;
3737
consumption: string | number;
38+
custom_description?: string;
3839
duration: number;
3940
exclude_from_invoice?: boolean;
4041
id: string;
4142
organization: string | null;
42-
plan_record_id: string;
43-
proration: number;
43+
plan_record_id: string | null;
44+
proration: string | number;
4445
records?: {
4546
duration: number;
4647
end: string;

0 commit comments

Comments
 (0)