Skip to content

Commit

Permalink
chore: Fix missing custom fields
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Feb 2, 2023
1 parent 081a01a commit feb4a7e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -785,6 +785,9 @@ export const GET_SERVER_CONFIG = gql`
ShippingMethod {
...CustomFields
}
StockLocation {
...CustomFields
}
TaxCategory {
...CustomFields
}
Expand Down
3 changes: 2 additions & 1 deletion packages/core/e2e/graphql/generated-e2e-admin-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8415,7 +8415,8 @@ export type AttemptLoginMutation = {
identifier: string;
channels: Array<{ code: string; token: string; permissions: Array<Permission> }>;
}
| {};
| { errorCode: ErrorCode; message: string }
| { errorCode: ErrorCode; message: string };
};

export type GetCountryListQueryVariables = Exact<{
Expand Down

0 comments on commit feb4a7e

Please sign in to comment.