Skip to content

Commit

Permalink
feat(order-model): references could be empty when send as response
Browse files Browse the repository at this point in the history
  • Loading branch information
lrosenfeldt committed Aug 12, 2024
1 parent a593dbb commit 1dd2d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/Order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { ShoppingCartInput } from './ShoppingCartInput.js';
export interface Order {
amountOfMoney?: AmountOfMoney;
customer?: Customer;
references: References;
references?: References;
shipping?: Shipping;
shoppingCart?: ShoppingCartInput;
}

0 comments on commit 1dd2d51

Please sign in to comment.