@matchi/api 0.20260602.1 → 0.20260609.1

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.
@@ -1394,6 +1394,15 @@ type paymentDetails = {
1394
1394
  checkoutSessionData?: string;
1395
1395
  checkoutToken?: string;
1396
1396
  checkoutUrl?: string;
1397
+ /**
1398
+ * URL to the remote payment page for this order. Only present while the order
1399
+ * has an active payment link (e.g. a venue admin added the participant with
1400
+ * "send payment link"). Absent when the venue marked the participant as
1401
+ * "not paid" (to be settled at the venue), so clients can use this field to
1402
+ * decide whether to offer a pay action for an unpaid order.
1403
+ *
1404
+ */
1405
+ payLaterUrl?: string;
1397
1406
  /**
1398
1407
  * If this is a booking payment, this is the ID of the booking
1399
1408
  */
@@ -1459,6 +1468,22 @@ declare namespace pendingPayment {
1459
1468
  }
1460
1469
  }
1461
1470
 
1471
+ type phoneRequirementResponse = {
1472
+ required: boolean;
1473
+ dialCode: string;
1474
+ };
1475
+
1476
+ type phoneStatus = {
1477
+ saved: boolean;
1478
+ };
1479
+
1480
+ type phoneUpdate = {
1481
+ facilityId?: number;
1482
+ orderId?: number;
1483
+ telephone: string;
1484
+ saveToProfile?: boolean;
1485
+ };
1486
+
1462
1487
  /**
1463
1488
  * A key value pair where the key is the level name and the value is the level range (min/max)
1464
1489
  */
@@ -2301,6 +2326,22 @@ declare class AuthorizedService {
2301
2326
  * @throws ApiError
2302
2327
  */
2303
2328
  static listUserPendingPayments(): CancelablePromise<Array<pendingPayment>>;
2329
+ /**
2330
+ * Check whether the current user must provide a phone number (by venue or by order)
2331
+ * @param facilityId
2332
+ * @param orderId
2333
+ * @param articleType
2334
+ * @returns phoneRequirementResponse Whether a phone number is required, plus the venue dial code
2335
+ * @throws ApiError
2336
+ */
2337
+ static getUserPhoneRequirement(facilityId?: number, orderId?: number, articleType?: string): CancelablePromise<phoneRequirementResponse>;
2338
+ /**
2339
+ * Save the current user's phone number (venue registry, and optionally profile)
2340
+ * @param requestBody
2341
+ * @returns phoneStatus Phone saved
2342
+ * @throws ApiError
2343
+ */
2344
+ static setUserPhone(requestBody: phoneUpdate): CancelablePromise<phoneStatus>;
2304
2345
  /**
2305
2346
  * Get bookings of currently authorized user
2306
2347
  * @param offset Number of items to skip before returning the results.
@@ -11809,4 +11850,4 @@ declare namespace indexV2 {
11809
11850
  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 };
11810
11851
  }
11811
11852
 
11812
- 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 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 timeOfDay, type timeStamp, type usagePlan, 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 };
11853
+ 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 timeOfDay, type timeStamp, type usagePlan, 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 };
@@ -1394,6 +1394,15 @@ type paymentDetails = {
1394
1394
  checkoutSessionData?: string;
1395
1395
  checkoutToken?: string;
1396
1396
  checkoutUrl?: string;
1397
+ /**
1398
+ * URL to the remote payment page for this order. Only present while the order
1399
+ * has an active payment link (e.g. a venue admin added the participant with
1400
+ * "send payment link"). Absent when the venue marked the participant as
1401
+ * "not paid" (to be settled at the venue), so clients can use this field to
1402
+ * decide whether to offer a pay action for an unpaid order.
1403
+ *
1404
+ */
1405
+ payLaterUrl?: string;
1397
1406
  /**
1398
1407
  * If this is a booking payment, this is the ID of the booking
1399
1408
  */
@@ -1459,6 +1468,22 @@ declare namespace pendingPayment {
1459
1468
  }
1460
1469
  }
1461
1470
 
1471
+ type phoneRequirementResponse = {
1472
+ required: boolean;
1473
+ dialCode: string;
1474
+ };
1475
+
1476
+ type phoneStatus = {
1477
+ saved: boolean;
1478
+ };
1479
+
1480
+ type phoneUpdate = {
1481
+ facilityId?: number;
1482
+ orderId?: number;
1483
+ telephone: string;
1484
+ saveToProfile?: boolean;
1485
+ };
1486
+
1462
1487
  /**
1463
1488
  * A key value pair where the key is the level name and the value is the level range (min/max)
1464
1489
  */
@@ -2301,6 +2326,22 @@ declare class AuthorizedService {
2301
2326
  * @throws ApiError
2302
2327
  */
2303
2328
  static listUserPendingPayments(): CancelablePromise<Array<pendingPayment>>;
2329
+ /**
2330
+ * Check whether the current user must provide a phone number (by venue or by order)
2331
+ * @param facilityId
2332
+ * @param orderId
2333
+ * @param articleType
2334
+ * @returns phoneRequirementResponse Whether a phone number is required, plus the venue dial code
2335
+ * @throws ApiError
2336
+ */
2337
+ static getUserPhoneRequirement(facilityId?: number, orderId?: number, articleType?: string): CancelablePromise<phoneRequirementResponse>;
2338
+ /**
2339
+ * Save the current user's phone number (venue registry, and optionally profile)
2340
+ * @param requestBody
2341
+ * @returns phoneStatus Phone saved
2342
+ * @throws ApiError
2343
+ */
2344
+ static setUserPhone(requestBody: phoneUpdate): CancelablePromise<phoneStatus>;
2304
2345
  /**
2305
2346
  * Get bookings of currently authorized user
2306
2347
  * @param offset Number of items to skip before returning the results.
@@ -11809,4 +11850,4 @@ declare namespace indexV2 {
11809
11850
  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 };
11810
11851
  }
11811
11852
 
11812
- 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 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 timeOfDay, type timeStamp, type usagePlan, 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 };
11853
+ 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 timeOfDay, type timeStamp, type usagePlan, 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 };