Skip to content

Commit

Permalink
feat(accept-blue): nullable readonly customerid
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnvdbrug committed Nov 21, 2024
1 parent e43d2e7 commit f456ceb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/vendure-plugin-accept-blue/src/accept-blue-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,13 @@ export type AcceptBluePluginOptions = Required<AcceptBluePluginOptionsInput>;
name: 'acceptBlueSubscriptionIds',
type: 'int',
list: true,
nullable: true,
readonly: true,
});
config.customFields.Customer.push({
name: 'acceptBlueCustomerId',
nullable: true,
readonly: true,
type: 'int',
});
return config;
Expand Down

0 comments on commit f456ceb

Please sign in to comment.