@matchi/api 0.20260603.1 → 0.20260610.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.
- package/dist/main/index.d.mts +36 -3
- package/dist/main/index.d.ts +36 -3
- package/dist/main/index.js +4 -4
- package/dist/main/index.mjs +4 -4
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -1311,7 +1311,7 @@ type playerRefundInfo = {
|
|
|
1311
1311
|
*/
|
|
1312
1312
|
refundable?: boolean;
|
|
1313
1313
|
/**
|
|
1314
|
-
* Eligibility reason. REFUNDABLE when the player may proceed; all other values indicate why they cannot.
|
|
1314
|
+
* Eligibility reason. REFUNDABLE when the player may proceed; all other values indicate why they cannot. NON_EU_VENUE signals that the EU right of withdrawal does not apply (the venue is outside the EU); clients should typically hide the withdrawal UI entirely in that case.
|
|
1315
1315
|
*/
|
|
1316
1316
|
reason?: playerRefundInfo.reason | null;
|
|
1317
1317
|
/**
|
|
@@ -1325,10 +1325,11 @@ type playerRefundInfo = {
|
|
|
1325
1325
|
};
|
|
1326
1326
|
declare namespace playerRefundInfo {
|
|
1327
1327
|
/**
|
|
1328
|
-
* Eligibility reason. REFUNDABLE when the player may proceed; all other values indicate why they cannot.
|
|
1328
|
+
* Eligibility reason. REFUNDABLE when the player may proceed; all other values indicate why they cannot. NON_EU_VENUE signals that the EU right of withdrawal does not apply (the venue is outside the EU); clients should typically hide the withdrawal UI entirely in that case.
|
|
1329
1329
|
*/
|
|
1330
1330
|
enum reason {
|
|
1331
1331
|
REFUNDABLE = "REFUNDABLE",
|
|
1332
|
+
NON_EU_VENUE = "NON_EU_VENUE",
|
|
1332
1333
|
ALREADY_REFUNDED = "ALREADY_REFUNDED",
|
|
1333
1334
|
INELIGIBLE_PRODUCT_TYPE = "INELIGIBLE_PRODUCT_TYPE",
|
|
1334
1335
|
PAID_AT_VENUE = "PAID_AT_VENUE",
|
|
@@ -1468,6 +1469,22 @@ declare namespace pendingPayment {
|
|
|
1468
1469
|
}
|
|
1469
1470
|
}
|
|
1470
1471
|
|
|
1472
|
+
type phoneRequirementResponse = {
|
|
1473
|
+
required: boolean;
|
|
1474
|
+
dialCode: string;
|
|
1475
|
+
};
|
|
1476
|
+
|
|
1477
|
+
type phoneStatus = {
|
|
1478
|
+
saved: boolean;
|
|
1479
|
+
};
|
|
1480
|
+
|
|
1481
|
+
type phoneUpdate = {
|
|
1482
|
+
facilityId?: number;
|
|
1483
|
+
orderId?: number;
|
|
1484
|
+
telephone: string;
|
|
1485
|
+
saveToProfile?: boolean;
|
|
1486
|
+
};
|
|
1487
|
+
|
|
1471
1488
|
/**
|
|
1472
1489
|
* A key value pair where the key is the level name and the value is the level range (min/max)
|
|
1473
1490
|
*/
|
|
@@ -2310,6 +2327,22 @@ declare class AuthorizedService {
|
|
|
2310
2327
|
* @throws ApiError
|
|
2311
2328
|
*/
|
|
2312
2329
|
static listUserPendingPayments(): CancelablePromise<Array<pendingPayment>>;
|
|
2330
|
+
/**
|
|
2331
|
+
* Check whether the current user must provide a phone number (by venue or by order)
|
|
2332
|
+
* @param facilityId
|
|
2333
|
+
* @param orderId
|
|
2334
|
+
* @param articleType
|
|
2335
|
+
* @returns phoneRequirementResponse Whether a phone number is required, plus the venue dial code
|
|
2336
|
+
* @throws ApiError
|
|
2337
|
+
*/
|
|
2338
|
+
static getUserPhoneRequirement(facilityId?: number, orderId?: number, articleType?: string): CancelablePromise<phoneRequirementResponse>;
|
|
2339
|
+
/**
|
|
2340
|
+
* Save the current user's phone number (venue registry, and optionally profile)
|
|
2341
|
+
* @param requestBody
|
|
2342
|
+
* @returns phoneStatus Phone saved
|
|
2343
|
+
* @throws ApiError
|
|
2344
|
+
*/
|
|
2345
|
+
static setUserPhone(requestBody: phoneUpdate): CancelablePromise<phoneStatus>;
|
|
2313
2346
|
/**
|
|
2314
2347
|
* Get bookings of currently authorized user
|
|
2315
2348
|
* @param offset Number of items to skip before returning the results.
|
|
@@ -11818,4 +11851,4 @@ declare namespace indexV2 {
|
|
|
11818
11851
|
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 };
|
|
11819
11852
|
}
|
|
11820
11853
|
|
|
11821
|
-
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 };
|
|
11854
|
+
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 };
|
package/dist/main/index.d.ts
CHANGED
|
@@ -1311,7 +1311,7 @@ type playerRefundInfo = {
|
|
|
1311
1311
|
*/
|
|
1312
1312
|
refundable?: boolean;
|
|
1313
1313
|
/**
|
|
1314
|
-
* Eligibility reason. REFUNDABLE when the player may proceed; all other values indicate why they cannot.
|
|
1314
|
+
* Eligibility reason. REFUNDABLE when the player may proceed; all other values indicate why they cannot. NON_EU_VENUE signals that the EU right of withdrawal does not apply (the venue is outside the EU); clients should typically hide the withdrawal UI entirely in that case.
|
|
1315
1315
|
*/
|
|
1316
1316
|
reason?: playerRefundInfo.reason | null;
|
|
1317
1317
|
/**
|
|
@@ -1325,10 +1325,11 @@ type playerRefundInfo = {
|
|
|
1325
1325
|
};
|
|
1326
1326
|
declare namespace playerRefundInfo {
|
|
1327
1327
|
/**
|
|
1328
|
-
* Eligibility reason. REFUNDABLE when the player may proceed; all other values indicate why they cannot.
|
|
1328
|
+
* Eligibility reason. REFUNDABLE when the player may proceed; all other values indicate why they cannot. NON_EU_VENUE signals that the EU right of withdrawal does not apply (the venue is outside the EU); clients should typically hide the withdrawal UI entirely in that case.
|
|
1329
1329
|
*/
|
|
1330
1330
|
enum reason {
|
|
1331
1331
|
REFUNDABLE = "REFUNDABLE",
|
|
1332
|
+
NON_EU_VENUE = "NON_EU_VENUE",
|
|
1332
1333
|
ALREADY_REFUNDED = "ALREADY_REFUNDED",
|
|
1333
1334
|
INELIGIBLE_PRODUCT_TYPE = "INELIGIBLE_PRODUCT_TYPE",
|
|
1334
1335
|
PAID_AT_VENUE = "PAID_AT_VENUE",
|
|
@@ -1468,6 +1469,22 @@ declare namespace pendingPayment {
|
|
|
1468
1469
|
}
|
|
1469
1470
|
}
|
|
1470
1471
|
|
|
1472
|
+
type phoneRequirementResponse = {
|
|
1473
|
+
required: boolean;
|
|
1474
|
+
dialCode: string;
|
|
1475
|
+
};
|
|
1476
|
+
|
|
1477
|
+
type phoneStatus = {
|
|
1478
|
+
saved: boolean;
|
|
1479
|
+
};
|
|
1480
|
+
|
|
1481
|
+
type phoneUpdate = {
|
|
1482
|
+
facilityId?: number;
|
|
1483
|
+
orderId?: number;
|
|
1484
|
+
telephone: string;
|
|
1485
|
+
saveToProfile?: boolean;
|
|
1486
|
+
};
|
|
1487
|
+
|
|
1471
1488
|
/**
|
|
1472
1489
|
* A key value pair where the key is the level name and the value is the level range (min/max)
|
|
1473
1490
|
*/
|
|
@@ -2310,6 +2327,22 @@ declare class AuthorizedService {
|
|
|
2310
2327
|
* @throws ApiError
|
|
2311
2328
|
*/
|
|
2312
2329
|
static listUserPendingPayments(): CancelablePromise<Array<pendingPayment>>;
|
|
2330
|
+
/**
|
|
2331
|
+
* Check whether the current user must provide a phone number (by venue or by order)
|
|
2332
|
+
* @param facilityId
|
|
2333
|
+
* @param orderId
|
|
2334
|
+
* @param articleType
|
|
2335
|
+
* @returns phoneRequirementResponse Whether a phone number is required, plus the venue dial code
|
|
2336
|
+
* @throws ApiError
|
|
2337
|
+
*/
|
|
2338
|
+
static getUserPhoneRequirement(facilityId?: number, orderId?: number, articleType?: string): CancelablePromise<phoneRequirementResponse>;
|
|
2339
|
+
/**
|
|
2340
|
+
* Save the current user's phone number (venue registry, and optionally profile)
|
|
2341
|
+
* @param requestBody
|
|
2342
|
+
* @returns phoneStatus Phone saved
|
|
2343
|
+
* @throws ApiError
|
|
2344
|
+
*/
|
|
2345
|
+
static setUserPhone(requestBody: phoneUpdate): CancelablePromise<phoneStatus>;
|
|
2313
2346
|
/**
|
|
2314
2347
|
* Get bookings of currently authorized user
|
|
2315
2348
|
* @param offset Number of items to skip before returning the results.
|
|
@@ -11818,4 +11851,4 @@ declare namespace indexV2 {
|
|
|
11818
11851
|
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 };
|
|
11819
11852
|
}
|
|
11820
11853
|
|
|
11821
|
-
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 };
|
|
11854
|
+
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 };
|