@matchi/api 0.20260610.3 → 0.20260611.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.
- package/dist/main/index.d.mts +22 -4
- package/dist/main/index.d.ts +22 -4
- package/dist/main/index.js +11 -11
- package/dist/main/index.mjs +7 -7
- 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. 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.
|
|
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. MEMBERSHIP_RENEWAL signals that the purchase is an automatic membership renewal rather than the original sign-up; the 14-day right of withdrawal applies to sign-up only, not renewals.
|
|
1315
1315
|
*/
|
|
1316
1316
|
reason?: playerRefundInfo.reason | null;
|
|
1317
1317
|
/**
|
|
@@ -1325,7 +1325,7 @@ 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. 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.
|
|
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. MEMBERSHIP_RENEWAL signals that the purchase is an automatic membership renewal rather than the original sign-up; the 14-day right of withdrawal applies to sign-up only, not renewals.
|
|
1329
1329
|
*/
|
|
1330
1330
|
enum reason {
|
|
1331
1331
|
REFUNDABLE = "REFUNDABLE",
|
|
@@ -1333,7 +1333,8 @@ declare namespace playerRefundInfo {
|
|
|
1333
1333
|
ALREADY_REFUNDED = "ALREADY_REFUNDED",
|
|
1334
1334
|
INELIGIBLE_PRODUCT_TYPE = "INELIGIBLE_PRODUCT_TYPE",
|
|
1335
1335
|
PAID_AT_VENUE = "PAID_AT_VENUE",
|
|
1336
|
-
OLDER_THAN_14_DAYS = "OLDER_THAN_14_DAYS"
|
|
1336
|
+
OLDER_THAN_14_DAYS = "OLDER_THAN_14_DAYS",
|
|
1337
|
+
MEMBERSHIP_RENEWAL = "MEMBERSHIP_RENEWAL"
|
|
1337
1338
|
}
|
|
1338
1339
|
}
|
|
1339
1340
|
|
|
@@ -1747,6 +1748,21 @@ type resource = {
|
|
|
1747
1748
|
attributes: Record<string, string>;
|
|
1748
1749
|
};
|
|
1749
1750
|
|
|
1751
|
+
/**
|
|
1752
|
+
* A single entry in a card's usage history, mirroring what the web shows when a player opens a card's usage history.
|
|
1753
|
+
*/
|
|
1754
|
+
type userCardUsageHistoryItem = {
|
|
1755
|
+
/**
|
|
1756
|
+
* Signed change to the card balance, e.g. "+10000.00", "-190.00", "+10", "-1".
|
|
1757
|
+
*/
|
|
1758
|
+
credits: string;
|
|
1759
|
+
date: string;
|
|
1760
|
+
/**
|
|
1761
|
+
* Localized, display-ready description of the ledger entry.
|
|
1762
|
+
*/
|
|
1763
|
+
description: string;
|
|
1764
|
+
};
|
|
1765
|
+
|
|
1750
1766
|
/**
|
|
1751
1767
|
* If provided, only returns user chats which match this user chat status:
|
|
1752
1768
|
* * `ALL` - Default: No filtering.
|
|
@@ -1822,6 +1838,7 @@ type userPunchCard = {
|
|
|
1822
1838
|
facilityName: string;
|
|
1823
1839
|
facilityId: number;
|
|
1824
1840
|
paymentId?: number | null;
|
|
1841
|
+
usageHistory: Array<userCardUsageHistoryItem>;
|
|
1825
1842
|
};
|
|
1826
1843
|
declare namespace userPunchCard {
|
|
1827
1844
|
enum type {
|
|
@@ -1843,6 +1860,7 @@ type userValueCard = {
|
|
|
1843
1860
|
facilityId: number;
|
|
1844
1861
|
facilityName: string;
|
|
1845
1862
|
paymentId?: number | null;
|
|
1863
|
+
usageHistory: Array<userCardUsageHistoryItem>;
|
|
1846
1864
|
};
|
|
1847
1865
|
|
|
1848
1866
|
type userOfferValueCardsResponse = {
|
|
@@ -12151,4 +12169,4 @@ declare namespace indexV2 {
|
|
|
12151
12169
|
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 };
|
|
12152
12170
|
}
|
|
12153
12171
|
|
|
12154
|
-
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 };
|
|
12172
|
+
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, 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 };
|
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. 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.
|
|
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. MEMBERSHIP_RENEWAL signals that the purchase is an automatic membership renewal rather than the original sign-up; the 14-day right of withdrawal applies to sign-up only, not renewals.
|
|
1315
1315
|
*/
|
|
1316
1316
|
reason?: playerRefundInfo.reason | null;
|
|
1317
1317
|
/**
|
|
@@ -1325,7 +1325,7 @@ 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. 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.
|
|
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. MEMBERSHIP_RENEWAL signals that the purchase is an automatic membership renewal rather than the original sign-up; the 14-day right of withdrawal applies to sign-up only, not renewals.
|
|
1329
1329
|
*/
|
|
1330
1330
|
enum reason {
|
|
1331
1331
|
REFUNDABLE = "REFUNDABLE",
|
|
@@ -1333,7 +1333,8 @@ declare namespace playerRefundInfo {
|
|
|
1333
1333
|
ALREADY_REFUNDED = "ALREADY_REFUNDED",
|
|
1334
1334
|
INELIGIBLE_PRODUCT_TYPE = "INELIGIBLE_PRODUCT_TYPE",
|
|
1335
1335
|
PAID_AT_VENUE = "PAID_AT_VENUE",
|
|
1336
|
-
OLDER_THAN_14_DAYS = "OLDER_THAN_14_DAYS"
|
|
1336
|
+
OLDER_THAN_14_DAYS = "OLDER_THAN_14_DAYS",
|
|
1337
|
+
MEMBERSHIP_RENEWAL = "MEMBERSHIP_RENEWAL"
|
|
1337
1338
|
}
|
|
1338
1339
|
}
|
|
1339
1340
|
|
|
@@ -1747,6 +1748,21 @@ type resource = {
|
|
|
1747
1748
|
attributes: Record<string, string>;
|
|
1748
1749
|
};
|
|
1749
1750
|
|
|
1751
|
+
/**
|
|
1752
|
+
* A single entry in a card's usage history, mirroring what the web shows when a player opens a card's usage history.
|
|
1753
|
+
*/
|
|
1754
|
+
type userCardUsageHistoryItem = {
|
|
1755
|
+
/**
|
|
1756
|
+
* Signed change to the card balance, e.g. "+10000.00", "-190.00", "+10", "-1".
|
|
1757
|
+
*/
|
|
1758
|
+
credits: string;
|
|
1759
|
+
date: string;
|
|
1760
|
+
/**
|
|
1761
|
+
* Localized, display-ready description of the ledger entry.
|
|
1762
|
+
*/
|
|
1763
|
+
description: string;
|
|
1764
|
+
};
|
|
1765
|
+
|
|
1750
1766
|
/**
|
|
1751
1767
|
* If provided, only returns user chats which match this user chat status:
|
|
1752
1768
|
* * `ALL` - Default: No filtering.
|
|
@@ -1822,6 +1838,7 @@ type userPunchCard = {
|
|
|
1822
1838
|
facilityName: string;
|
|
1823
1839
|
facilityId: number;
|
|
1824
1840
|
paymentId?: number | null;
|
|
1841
|
+
usageHistory: Array<userCardUsageHistoryItem>;
|
|
1825
1842
|
};
|
|
1826
1843
|
declare namespace userPunchCard {
|
|
1827
1844
|
enum type {
|
|
@@ -1843,6 +1860,7 @@ type userValueCard = {
|
|
|
1843
1860
|
facilityId: number;
|
|
1844
1861
|
facilityName: string;
|
|
1845
1862
|
paymentId?: number | null;
|
|
1863
|
+
usageHistory: Array<userCardUsageHistoryItem>;
|
|
1846
1864
|
};
|
|
1847
1865
|
|
|
1848
1866
|
type userOfferValueCardsResponse = {
|
|
@@ -12151,4 +12169,4 @@ declare namespace indexV2 {
|
|
|
12151
12169
|
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 };
|
|
12152
12170
|
}
|
|
12153
12171
|
|
|
12154
|
-
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 };
|
|
12172
|
+
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, 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 };
|