Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Make reference_code mandatory #337

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/requests/team.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface CreateTeam {
homepage: string;
submissionEmail?: string;
boundary?: GeoJsonObject;
referenceCode?: string;
referenceCode: string;
}

export class TeamClient {
Expand Down Expand Up @@ -122,8 +122,8 @@ export async function createTeam(
homepage,
},
notifyPersonalisation: defaultNotifyPersonalisation,
referenceCode,
...(boundary && { boundary }),
...(referenceCode && { referenceCode }),
};
const response: { insert_teams_one: { id: number } } = await client.request(
gql`
Expand All @@ -134,7 +134,7 @@ export async function createTeam(
$submissionEmail: String
$notifyPersonalisation: jsonb!
$boundary: jsonb
$referenceCode: String
$referenceCode: String!
) {
insert_teams_one(
object: {
Expand All @@ -143,9 +143,9 @@ export async function createTeam(
settings: $settings
submission_email: $submissionEmail
notify_personalisation: $notifyPersonalisation
reference_code: $referenceCode
# Fall back to default values for optional values
${boundary ? "boundary: $boundary" : ""}
${referenceCode ? "reference_code: $referenceCode" : ""}
# Create empty records for theme and integrations - these can get populated later
theme: { data: {} }
integrations: { data: {} }
Expand Down
Loading