Skip to content

Commit

Permalink
fix: gql-types after AccessTypes no longer includes MULTIVALUE
Browse files Browse the repository at this point in the history
  • Loading branch information
vincit-matu authored and joonatank committed Mar 6, 2025
1 parent b51df14 commit de92ac7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/ui/gql/gql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export type AbilityGroupNode = Node & {
/** How is the reservee able to enter the space in their reservation unit? */
export enum AccessType {
AccessCode = "ACCESS_CODE",
Multivalued = "MULTIVALUED",
OpenedByStaff = "OPENED_BY_STAFF",
PhysicalKey = "PHYSICAL_KEY",
Unrestricted = "UNRESTRICTED",
Expand Down Expand Up @@ -6520,6 +6519,7 @@ export type AccessCodeQueryVariables = Exact<{

export type AccessCodeQuery = {
reservation?: {
id: string;
pindoraInfo?: {
accessCode: string;
accessCodeBeginsAt: string;
Expand Down Expand Up @@ -11371,6 +11371,7 @@ export type RefreshOrderMutationOptions = Apollo.BaseMutationOptions<
export const AccessCodeDocument = gql`
query AccessCode($id: ID!) {
reservation(id: $id) {
id
pindoraInfo {
accessCode
accessCodeBeginsAt
Expand Down

0 comments on commit de92ac7

Please sign in to comment.