Skip to content

Commit

Permalink
feat: add custom fields
Browse files Browse the repository at this point in the history
  • Loading branch information
kaioken committed Dec 20, 2024
1 parent 230b47e commit 7ce4741
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/types/commerce.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { CompanyInterface } from "./companies";
import { CustomFieldInput } from "./custom-fields";
import { PaginatorInfo } from "./paginator";
import { PeopleInterface } from "./people";
import { UserInterface } from "./users";
Expand Down Expand Up @@ -35,7 +36,7 @@ export interface Order {
weight?: number;
checkout_token?: string;
currency: string;
metadata: string;
metadata: string;
private_metadata?: string;
is_deleted: boolean;
created_at: string;
Expand Down Expand Up @@ -77,6 +78,7 @@ export interface AppleInAppPurchaseReceipt {
receipt: string;
transaction_date: string;
region_id?: number;
custom_fields?: CustomFieldInput[];
};
}

Expand Down

0 comments on commit 7ce4741

Please sign in to comment.