Skip to content

Commit

Permalink
feat: added custom_fields prop to Package
Browse files Browse the repository at this point in the history
  • Loading branch information
klevytskyi committed Jun 9, 2023
1 parent 0fa9d95 commit a3f69b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/types/package.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { CustomField } from "./customField";

export type ListPackage = Pick<
Package,
| "package_id"
Expand Down Expand Up @@ -195,6 +197,8 @@ export type Package = {
salesorder_number: string;

notes: string;

custom_fields?: CustomField[];
};

export type PackageShortList = Pick<
Expand Down

0 comments on commit a3f69b7

Please sign in to comment.