Skip to content

Commit

Permalink
feat(checkout): accept group field on customer object
Browse files Browse the repository at this point in the history
  • Loading branch information
leomp12 committed Jan 25, 2025
1 parent d2891f9 commit f73a520
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions routes/@checkout.js
Original file line number Diff line number Diff line change
Expand Up @@ -1042,6 +1042,12 @@ const schema = {
'type': 'string',
'pattern': '^[a-f0-9]{24}$',
'description': 'ID of customer who invited the new customer, if he was invited by another account'
},
'group': {
'type': 'string',
'minLength': 2,
'maxLength': 100,
'description': 'Customer group indentifier'
}
},
'description': 'Customer object'
Expand Down

0 comments on commit f73a520

Please sign in to comment.