@matchi/api 0.20260818.1 → 0.20260818.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1624,6 +1624,36 @@ declare namespace playSessionSettings {
1624
1624
  }
1625
1625
  }
1626
1626
 
1627
+ /**
1628
+ * A named place on the court inside a team.
1629
+ * * `SINGLE` - The team's only spot, when each team has one.
1630
+ * * `LEFT` - The left spot, when each team has two.
1631
+ * * `RIGHT` - The right spot, when each team has two.
1632
+ * On a `users` entry (`requestedPosition`) this is the spot the player asked for. It is a preference, not a
1633
+ * reservation: it is resolved against the layout when the request is made and again when the player is confirmed
1634
+ * or approved, and the player may end up on a different spot if this one was taken meanwhile.
1635
+ *
1636
+ */
1637
+ declare enum spotPosition {
1638
+ SINGLE = "SINGLE",
1639
+ LEFT = "LEFT",
1640
+ RIGHT = "RIGHT"
1641
+ }
1642
+
1643
+ /**
1644
+ * The side of the court a team plays on. Stable for the life of the play session — rearranging players never
1645
+ * renames, reorders or swaps the teams themselves.
1646
+ * * `HOME` - The booker's side. The booker always occupies the first position of this team.
1647
+ * * `AWAY` - The opposing side.
1648
+ * On a `users` entry (`requestedTeam`) this is the side the player asked for, which is a preference and not a
1649
+ * reservation — see `requestedPosition`.
1650
+ *
1651
+ */
1652
+ declare enum teamSide {
1653
+ HOME = "HOME",
1654
+ AWAY = "AWAY"
1655
+ }
1656
+
1627
1657
  /**
1628
1658
  * The user is identified with either userId or email
1629
1659
  */
@@ -1642,6 +1672,8 @@ type playSessionUser = {
1642
1672
  *
1643
1673
  */
1644
1674
  joiningMethod?: playSessionUser.joiningMethod;
1675
+ requestedTeam?: teamSide;
1676
+ requestedPosition?: spotPosition;
1645
1677
  };
1646
1678
  declare namespace playSessionUser {
1647
1679
  /**
@@ -1656,6 +1688,78 @@ declare namespace playSessionUser {
1656
1688
  }
1657
1689
  }
1658
1690
 
1691
+ /**
1692
+ * A spot inside a team, taken or not. `isAssigned` and `isReserved` are never both true, and neither is ever true
1693
+ * at the same time as `isLocked` — a locked spot is always empty.
1694
+ *
1695
+ */
1696
+ type teamSpot = {
1697
+ position: spotPosition;
1698
+ /**
1699
+ * The player holding this spot. Omitted when the spot is empty, when the player has no MATCHi account, and
1700
+ * when the requester is not allowed to see who they are — in the last two cases `isAssigned` or `isReserved`
1701
+ * is still true, because occupancy is public and identity is not. It is therefore never an occupancy check.
1702
+ *
1703
+ */
1704
+ userId?: string;
1705
+ /**
1706
+ * Whether a player firmly holds this spot. Only a player who has confirmed or paid is assigned — someone
1707
+ * who has taken the spot without securing it yet is `isReserved` instead, and a player whose request to
1708
+ * join has not been approved does not appear in the layout at all. True even when the requester is not
1709
+ * allowed to see who the player is, in which case `userId` is omitted.
1710
+ *
1711
+ */
1712
+ isAssigned: boolean;
1713
+ /**
1714
+ * Whether a player has taken this spot without securing it yet — one who still owes a payment or a
1715
+ * confirmation. Nobody else can have it, so a reserved spot is never available. `userId` is set only
1716
+ * for those entitled to know whose it is, which is the booking owner and the player themselves.
1717
+ *
1718
+ */
1719
+ isReserved: boolean;
1720
+ /**
1721
+ * Whether the booking owner is holding this spot back from joiners, for instance to keep the spot next
1722
+ * to them free for a partner. Held back from everybody rather than for somebody, so it names nobody. This is
1723
+ * not a freeze of the team structure.
1724
+ *
1725
+ */
1726
+ isLocked: boolean;
1727
+ /**
1728
+ * Whether a player can take this spot right now. Computed by the server, and not derivable from the
1729
+ * layout alone: beyond occupancy and the lock, it accounts for the remaining capacity of the play session and
1730
+ * for whether the play session is joinable at all.
1731
+ *
1732
+ */
1733
+ isJoinable: boolean;
1734
+ };
1735
+
1736
+ /**
1737
+ * One side of the match and the spots it consists of. A play session with a team layout always has exactly two
1738
+ * teams, one per side, however many spots each of them has.
1739
+ *
1740
+ */
1741
+ type team = {
1742
+ /**
1743
+ * Identifies the team, and is how a spot is addressed together with its `position`. Stable for the life of
1744
+ * the play session.
1745
+ *
1746
+ */
1747
+ teamId: string;
1748
+ side: teamSide;
1749
+ /**
1750
+ * Optional display name. Omitted when the team has none, which is every team today — clients fall back to
1751
+ * naming the teams by their side.
1752
+ *
1753
+ */
1754
+ name?: string;
1755
+ /**
1756
+ * The team's spots, in canonical order. One spot per team in a singles match, two in a doubles match.
1757
+ * Unfilled spots are included.
1758
+ *
1759
+ */
1760
+ positions: Array<teamSpot>;
1761
+ };
1762
+
1659
1763
  type playSession = {
1660
1764
  startDateTime: timeStamp;
1661
1765
  endDateTime: timeStamp;
@@ -1667,6 +1771,14 @@ type playSession = {
1667
1771
  url: string;
1668
1772
  splitPayment: boolean;
1669
1773
  chatId?: string;
1774
+ /**
1775
+ * The team layout of the play session: every team and every spot it consists of, including unfilled ones.
1776
+ * Omitted when team handling does not apply to this play session — an unsupported sport, or more players than
1777
+ * the court layout has spots. Clients fall back to the flat `users` list when it is absent.
1778
+ * Whether the match is singles or doubles is not a field: it follows from how many spots each team has.
1779
+ *
1780
+ */
1781
+ readonly teams?: Array<team>;
1670
1782
  };
1671
1783
 
1672
1784
  type playSessionResponse = {
@@ -12681,4 +12793,4 @@ declare namespace indexV2 {
12681
12793
  export { type indexV2_Channels as Channels, type indexV2_ClientOptions as ClientOptions, type indexV2_CommunityInvitationPayload as CommunityInvitationPayload, type indexV2_FacilityMessagePayload as FacilityMessagePayload, type indexV2_GetNotificationByIdData as GetNotificationByIdData, type indexV2_GetNotificationByIdError as GetNotificationByIdError, type indexV2_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV2_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV2_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV2_GetNotificationsData as GetNotificationsData, type indexV2_GetNotificationsError as GetNotificationsError, type indexV2_GetNotificationsErrors as GetNotificationsErrors, type indexV2_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV2_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV2_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV2_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV2_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV2_GetNotificationsResponse as GetNotificationsResponse, type indexV2_GetNotificationsResponses as GetNotificationsResponses, type indexV2_Localization as Localization, type indexV2_Metadata as Metadata, type indexV2_Notification as Notification, type indexV2_NotificationPayload as NotificationPayload, type indexV2_NotificationRequestBody as NotificationRequestBody, type indexV2_NotificationResourceIcon as NotificationResourceIcon, type indexV2_NotificationSource as NotificationSource, type indexV2_NotificationSourceIdParam as NotificationSourceIdParam, type indexV2_NotificationSourceParam as NotificationSourceParam, type indexV2_NotificationType as NotificationType, type indexV2_NotificationTypeParam as NotificationTypeParam, type indexV2_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV2_NotificationsSummary as NotificationsSummary, type indexV2_Options as Options, type indexV2_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV2_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV2_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV2_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV2_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV2_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV2_Preference as Preference, type indexV2_PreferencesResponse as PreferencesResponse, type indexV2_RegisterDeviceData as RegisterDeviceData, type indexV2_RegisterDeviceError as RegisterDeviceError, type indexV2_RegisterDeviceErrors as RegisterDeviceErrors, type indexV2_RegisterDeviceRequest as RegisterDeviceRequest, type indexV2_RegisterDeviceResponse as RegisterDeviceResponse, type indexV2_RegisterDeviceResponses as RegisterDeviceResponses, type indexV2_SimpleNotificationPayload as SimpleNotificationPayload, type indexV2_Topic as Topic, type indexV2_TopicSource as TopicSource, type indexV2_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV2_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV2_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV2_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV2_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV2_UpdateNotificationData as UpdateNotificationData, type indexV2_UpdateNotificationError as UpdateNotificationError, type indexV2_UpdateNotificationErrors as UpdateNotificationErrors, type indexV2_UpdateNotificationResponse as UpdateNotificationResponse, type indexV2_UpdateNotificationResponses as UpdateNotificationResponses, type indexV2_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV2_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV2_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV2_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV2_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV2_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, indexV2_client as client, indexV2_getNotificationById as getNotificationById, indexV2_getNotifications as getNotifications, indexV2_getNotificationsPreferences as getNotificationsPreferences, reactQuery_gen as queries, indexV2_registerDevice as registerDevice, schemas_gen as schemas, indexV2_updateAllNotifications as updateAllNotifications, indexV2_updateNotification as updateNotification, indexV2_updateNotificationsPreferences as updateNotificationsPreferences };
12682
12794
  }
12683
12795
 
12684
- export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type match, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type phoneRequirementResponse, type phoneStatus, type phoneUpdate, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerRefundInfo, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, type subscriptionLimitParam, type timeOfDay, type timeStamp, type usagePlan, type userCardUsageHistoryItem, userChatStatusParam, userChatTargetParam, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, userRelation, userRelationStatusParam, type userValueCard, indexV1 as v1, indexV2 as v2, type valueCardOutcome };
12796
+ export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type match, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type phoneRequirementResponse, type phoneStatus, type phoneUpdate, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerRefundInfo, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, spotPosition, type subscriptionLimitParam, type team, teamSide, type teamSpot, type timeOfDay, type timeStamp, type usagePlan, type userCardUsageHistoryItem, userChatStatusParam, userChatTargetParam, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, userRelation, userRelationStatusParam, type userValueCard, indexV1 as v1, indexV2 as v2, type valueCardOutcome };
@@ -1624,6 +1624,36 @@ declare namespace playSessionSettings {
1624
1624
  }
1625
1625
  }
1626
1626
 
1627
+ /**
1628
+ * A named place on the court inside a team.
1629
+ * * `SINGLE` - The team's only spot, when each team has one.
1630
+ * * `LEFT` - The left spot, when each team has two.
1631
+ * * `RIGHT` - The right spot, when each team has two.
1632
+ * On a `users` entry (`requestedPosition`) this is the spot the player asked for. It is a preference, not a
1633
+ * reservation: it is resolved against the layout when the request is made and again when the player is confirmed
1634
+ * or approved, and the player may end up on a different spot if this one was taken meanwhile.
1635
+ *
1636
+ */
1637
+ declare enum spotPosition {
1638
+ SINGLE = "SINGLE",
1639
+ LEFT = "LEFT",
1640
+ RIGHT = "RIGHT"
1641
+ }
1642
+
1643
+ /**
1644
+ * The side of the court a team plays on. Stable for the life of the play session — rearranging players never
1645
+ * renames, reorders or swaps the teams themselves.
1646
+ * * `HOME` - The booker's side. The booker always occupies the first position of this team.
1647
+ * * `AWAY` - The opposing side.
1648
+ * On a `users` entry (`requestedTeam`) this is the side the player asked for, which is a preference and not a
1649
+ * reservation — see `requestedPosition`.
1650
+ *
1651
+ */
1652
+ declare enum teamSide {
1653
+ HOME = "HOME",
1654
+ AWAY = "AWAY"
1655
+ }
1656
+
1627
1657
  /**
1628
1658
  * The user is identified with either userId or email
1629
1659
  */
@@ -1642,6 +1672,8 @@ type playSessionUser = {
1642
1672
  *
1643
1673
  */
1644
1674
  joiningMethod?: playSessionUser.joiningMethod;
1675
+ requestedTeam?: teamSide;
1676
+ requestedPosition?: spotPosition;
1645
1677
  };
1646
1678
  declare namespace playSessionUser {
1647
1679
  /**
@@ -1656,6 +1688,78 @@ declare namespace playSessionUser {
1656
1688
  }
1657
1689
  }
1658
1690
 
1691
+ /**
1692
+ * A spot inside a team, taken or not. `isAssigned` and `isReserved` are never both true, and neither is ever true
1693
+ * at the same time as `isLocked` — a locked spot is always empty.
1694
+ *
1695
+ */
1696
+ type teamSpot = {
1697
+ position: spotPosition;
1698
+ /**
1699
+ * The player holding this spot. Omitted when the spot is empty, when the player has no MATCHi account, and
1700
+ * when the requester is not allowed to see who they are — in the last two cases `isAssigned` or `isReserved`
1701
+ * is still true, because occupancy is public and identity is not. It is therefore never an occupancy check.
1702
+ *
1703
+ */
1704
+ userId?: string;
1705
+ /**
1706
+ * Whether a player firmly holds this spot. Only a player who has confirmed or paid is assigned — someone
1707
+ * who has taken the spot without securing it yet is `isReserved` instead, and a player whose request to
1708
+ * join has not been approved does not appear in the layout at all. True even when the requester is not
1709
+ * allowed to see who the player is, in which case `userId` is omitted.
1710
+ *
1711
+ */
1712
+ isAssigned: boolean;
1713
+ /**
1714
+ * Whether a player has taken this spot without securing it yet — one who still owes a payment or a
1715
+ * confirmation. Nobody else can have it, so a reserved spot is never available. `userId` is set only
1716
+ * for those entitled to know whose it is, which is the booking owner and the player themselves.
1717
+ *
1718
+ */
1719
+ isReserved: boolean;
1720
+ /**
1721
+ * Whether the booking owner is holding this spot back from joiners, for instance to keep the spot next
1722
+ * to them free for a partner. Held back from everybody rather than for somebody, so it names nobody. This is
1723
+ * not a freeze of the team structure.
1724
+ *
1725
+ */
1726
+ isLocked: boolean;
1727
+ /**
1728
+ * Whether a player can take this spot right now. Computed by the server, and not derivable from the
1729
+ * layout alone: beyond occupancy and the lock, it accounts for the remaining capacity of the play session and
1730
+ * for whether the play session is joinable at all.
1731
+ *
1732
+ */
1733
+ isJoinable: boolean;
1734
+ };
1735
+
1736
+ /**
1737
+ * One side of the match and the spots it consists of. A play session with a team layout always has exactly two
1738
+ * teams, one per side, however many spots each of them has.
1739
+ *
1740
+ */
1741
+ type team = {
1742
+ /**
1743
+ * Identifies the team, and is how a spot is addressed together with its `position`. Stable for the life of
1744
+ * the play session.
1745
+ *
1746
+ */
1747
+ teamId: string;
1748
+ side: teamSide;
1749
+ /**
1750
+ * Optional display name. Omitted when the team has none, which is every team today — clients fall back to
1751
+ * naming the teams by their side.
1752
+ *
1753
+ */
1754
+ name?: string;
1755
+ /**
1756
+ * The team's spots, in canonical order. One spot per team in a singles match, two in a doubles match.
1757
+ * Unfilled spots are included.
1758
+ *
1759
+ */
1760
+ positions: Array<teamSpot>;
1761
+ };
1762
+
1659
1763
  type playSession = {
1660
1764
  startDateTime: timeStamp;
1661
1765
  endDateTime: timeStamp;
@@ -1667,6 +1771,14 @@ type playSession = {
1667
1771
  url: string;
1668
1772
  splitPayment: boolean;
1669
1773
  chatId?: string;
1774
+ /**
1775
+ * The team layout of the play session: every team and every spot it consists of, including unfilled ones.
1776
+ * Omitted when team handling does not apply to this play session — an unsupported sport, or more players than
1777
+ * the court layout has spots. Clients fall back to the flat `users` list when it is absent.
1778
+ * Whether the match is singles or doubles is not a field: it follows from how many spots each team has.
1779
+ *
1780
+ */
1781
+ readonly teams?: Array<team>;
1670
1782
  };
1671
1783
 
1672
1784
  type playSessionResponse = {
@@ -12681,4 +12793,4 @@ declare namespace indexV2 {
12681
12793
  export { type indexV2_Channels as Channels, type indexV2_ClientOptions as ClientOptions, type indexV2_CommunityInvitationPayload as CommunityInvitationPayload, type indexV2_FacilityMessagePayload as FacilityMessagePayload, type indexV2_GetNotificationByIdData as GetNotificationByIdData, type indexV2_GetNotificationByIdError as GetNotificationByIdError, type indexV2_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV2_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV2_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV2_GetNotificationsData as GetNotificationsData, type indexV2_GetNotificationsError as GetNotificationsError, type indexV2_GetNotificationsErrors as GetNotificationsErrors, type indexV2_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV2_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV2_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV2_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV2_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV2_GetNotificationsResponse as GetNotificationsResponse, type indexV2_GetNotificationsResponses as GetNotificationsResponses, type indexV2_Localization as Localization, type indexV2_Metadata as Metadata, type indexV2_Notification as Notification, type indexV2_NotificationPayload as NotificationPayload, type indexV2_NotificationRequestBody as NotificationRequestBody, type indexV2_NotificationResourceIcon as NotificationResourceIcon, type indexV2_NotificationSource as NotificationSource, type indexV2_NotificationSourceIdParam as NotificationSourceIdParam, type indexV2_NotificationSourceParam as NotificationSourceParam, type indexV2_NotificationType as NotificationType, type indexV2_NotificationTypeParam as NotificationTypeParam, type indexV2_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV2_NotificationsSummary as NotificationsSummary, type indexV2_Options as Options, type indexV2_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV2_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV2_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV2_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV2_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV2_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV2_Preference as Preference, type indexV2_PreferencesResponse as PreferencesResponse, type indexV2_RegisterDeviceData as RegisterDeviceData, type indexV2_RegisterDeviceError as RegisterDeviceError, type indexV2_RegisterDeviceErrors as RegisterDeviceErrors, type indexV2_RegisterDeviceRequest as RegisterDeviceRequest, type indexV2_RegisterDeviceResponse as RegisterDeviceResponse, type indexV2_RegisterDeviceResponses as RegisterDeviceResponses, type indexV2_SimpleNotificationPayload as SimpleNotificationPayload, type indexV2_Topic as Topic, type indexV2_TopicSource as TopicSource, type indexV2_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV2_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV2_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV2_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV2_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV2_UpdateNotificationData as UpdateNotificationData, type indexV2_UpdateNotificationError as UpdateNotificationError, type indexV2_UpdateNotificationErrors as UpdateNotificationErrors, type indexV2_UpdateNotificationResponse as UpdateNotificationResponse, type indexV2_UpdateNotificationResponses as UpdateNotificationResponses, type indexV2_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV2_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV2_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV2_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV2_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV2_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, indexV2_client as client, indexV2_getNotificationById as getNotificationById, indexV2_getNotifications as getNotifications, indexV2_getNotificationsPreferences as getNotificationsPreferences, reactQuery_gen as queries, indexV2_registerDevice as registerDevice, schemas_gen as schemas, indexV2_updateAllNotifications as updateAllNotifications, indexV2_updateNotification as updateNotification, indexV2_updateNotificationsPreferences as updateNotificationsPreferences };
12682
12794
  }
12683
12795
 
12684
- export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type match, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type phoneRequirementResponse, type phoneStatus, type phoneUpdate, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerRefundInfo, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, type subscriptionLimitParam, type timeOfDay, type timeStamp, type usagePlan, type userCardUsageHistoryItem, userChatStatusParam, userChatTargetParam, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, userRelation, userRelationStatusParam, type userValueCard, indexV1 as v1, indexV2 as v2, type valueCardOutcome };
12796
+ export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type match, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type phoneRequirementResponse, type phoneStatus, type phoneUpdate, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerRefundInfo, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, spotPosition, type subscriptionLimitParam, type team, teamSide, type teamSpot, type timeOfDay, type timeStamp, type usagePlan, type userCardUsageHistoryItem, userChatStatusParam, userChatTargetParam, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, userRelation, userRelationStatusParam, type userValueCard, indexV1 as v1, indexV2 as v2, type valueCardOutcome };