@matchi/api 0.20260821.5 → 0.20260825.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 +72 -47
- package/dist/main/index.d.ts +72 -47
- package/dist/main/index.js +22 -21
- package/dist/main/index.mjs +22 -21
- package/package.json +1 -1
package/dist/main/index.d.ts
CHANGED
|
@@ -1643,7 +1643,8 @@ declare enum spotPosition {
|
|
|
1643
1643
|
/**
|
|
1644
1644
|
* The side of the court a team plays on. Stable for the life of the play session — rearranging players never
|
|
1645
1645
|
* renames, reorders or swaps the teams themselves.
|
|
1646
|
-
* * `HOME` - The booker's side
|
|
1646
|
+
* * `HOME` - The booker's side, which is where the booker is seated when the layout is first laid
|
|
1647
|
+
* out. They can be moved off it afterwards like any other player.
|
|
1647
1648
|
* * `AWAY` - The opposing side.
|
|
1648
1649
|
* On a `users` entry (`requestedTeam`) this is the side the player asked for, which is a preference and not a
|
|
1649
1650
|
* reservation — see `requestedPosition`.
|
|
@@ -1879,52 +1880,46 @@ type resource = {
|
|
|
1879
1880
|
};
|
|
1880
1881
|
|
|
1881
1882
|
/**
|
|
1882
|
-
*
|
|
1883
|
+
* One spot on the layout, addressed the way the layout serves it.
|
|
1883
1884
|
*/
|
|
1884
|
-
type
|
|
1885
|
+
type teamSpotRef = {
|
|
1886
|
+
/**
|
|
1887
|
+
* The team's id, exactly as served in the play session's `teams`. Never a new one.
|
|
1888
|
+
*/
|
|
1889
|
+
teamId: string;
|
|
1890
|
+
position: spotPosition;
|
|
1891
|
+
};
|
|
1885
1892
|
|
|
1886
1893
|
/**
|
|
1887
|
-
* One
|
|
1888
|
-
*
|
|
1889
|
-
*
|
|
1894
|
+
* One move: the spot a player sits on now, and the spot they should sit on instead. Both spots must exist on
|
|
1895
|
+
* the layout, and `from` must be occupied — a move off an empty spot means the layout has changed since the
|
|
1896
|
+
* client read it.
|
|
1890
1897
|
*
|
|
1891
1898
|
*/
|
|
1892
|
-
type
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
* The player to seat here, for a participant with a MATCHi account.
|
|
1896
|
-
*/
|
|
1897
|
-
userId?: string;
|
|
1898
|
-
/**
|
|
1899
|
-
* The player to seat here, for a participant without a MATCHi account. Matched against the participant's
|
|
1900
|
-
* email case-insensitively.
|
|
1901
|
-
*
|
|
1902
|
-
*/
|
|
1903
|
-
email?: string;
|
|
1899
|
+
type spotMove = {
|
|
1900
|
+
from: teamSpotRef;
|
|
1901
|
+
to: teamSpotRef;
|
|
1904
1902
|
};
|
|
1905
1903
|
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
teamId: string;
|
|
1911
|
-
/**
|
|
1912
|
-
* Every position of the team, filled or left empty. None may be missing, added or repeated.
|
|
1913
|
-
*/
|
|
1914
|
-
positions: Array<teamSpotArrangement>;
|
|
1915
|
-
};
|
|
1904
|
+
/**
|
|
1905
|
+
* Maximum number of items to return.
|
|
1906
|
+
*/
|
|
1907
|
+
type subscriptionLimitParam = number;
|
|
1916
1908
|
|
|
1917
1909
|
/**
|
|
1918
|
-
*
|
|
1919
|
-
*
|
|
1920
|
-
*
|
|
1910
|
+
* A batch of spot-to-spot moves, as the rearrange endpoint takes it. Applied atomically and validated against
|
|
1911
|
+
* the end state, so a whole swap or rotation travels in one request.
|
|
1912
|
+
*
|
|
1913
|
+
* A move carries no player identity on purpose: whoever holds the `from` spot when the request is applied is
|
|
1914
|
+
* the one who moves. That is what makes every occupant movable, including a participant without a MATCHi
|
|
1915
|
+
* account, whom the layout seats but never names.
|
|
1921
1916
|
*
|
|
1922
1917
|
*/
|
|
1923
|
-
type
|
|
1918
|
+
type teamRearrangement = {
|
|
1924
1919
|
/**
|
|
1925
|
-
*
|
|
1920
|
+
* The moves to apply. Order does not matter — they are validated and applied as one end state.
|
|
1926
1921
|
*/
|
|
1927
|
-
|
|
1922
|
+
moves: Array<spotMove>;
|
|
1928
1923
|
};
|
|
1929
1924
|
|
|
1930
1925
|
/**
|
|
@@ -3254,21 +3249,27 @@ declare class PlaySessionServiceV1Service {
|
|
|
3254
3249
|
static updatePlaySessionSettings(sessionId: string, requestBody: playSessionSettings): CancelablePromise<playSession>;
|
|
3255
3250
|
/**
|
|
3256
3251
|
* Rearrange the players across the team layout (booking owner only)
|
|
3257
|
-
*
|
|
3258
|
-
*
|
|
3259
|
-
*
|
|
3260
|
-
*
|
|
3261
|
-
*
|
|
3262
|
-
*
|
|
3263
|
-
*
|
|
3264
|
-
*
|
|
3252
|
+
* Moves players between the positions of the layout. The payload carries a batch of spot-to-spot moves, applied
|
|
3253
|
+
* atomically: each move names the spot a player sits on now and the spot they should sit on instead, and the
|
|
3254
|
+
* batch is validated against the end state rather than in order, so a whole swap or rotation travels in one
|
|
3255
|
+
* request. Players nobody moved keep their spots.
|
|
3256
|
+
*
|
|
3257
|
+
* A move names spots, never players. Whoever holds the `from` spot when the request is applied is the one who
|
|
3258
|
+
* moves, which is what makes every occupant movable — including a participant without a MATCHi account, whom
|
|
3259
|
+
* the layout seats but never names. Any player can be moved to any position, the booking owner included.
|
|
3260
|
+
*
|
|
3261
|
+
* A move off an empty spot, or onto a spot held by somebody who is not themselves moving, means the layout has
|
|
3262
|
+
* changed since the client read it: `409`, refresh the play session and rebuild the batch. Moving a player onto
|
|
3263
|
+
* a locked position releases that lock — this endpoint is how the booking owner fills a spot that was held
|
|
3264
|
+
* back. Seating a player who holds no spot at all is not a move and is not done here; a spot is claimed when
|
|
3265
|
+
* the player joins.
|
|
3265
3266
|
*
|
|
3266
3267
|
* @param sessionId Play Session ID
|
|
3267
3268
|
* @param requestBody
|
|
3268
3269
|
* @returns playSession The updated play session, its team layout rearranged
|
|
3269
3270
|
* @throws ApiError
|
|
3270
3271
|
*/
|
|
3271
|
-
static rearrangePlaySessionTeams(sessionId: string, requestBody:
|
|
3272
|
+
static rearrangePlaySessionTeams(sessionId: string, requestBody: teamRearrangement): CancelablePromise<playSession>;
|
|
3272
3273
|
/**
|
|
3273
3274
|
* Lock a court position, holding it back from joiners (booking owner only)
|
|
3274
3275
|
* Holds the spot back from joiners, for instance to keep the spot next to you free for a partner. Only the
|
|
@@ -4226,6 +4227,7 @@ type MatchOccasion = {
|
|
|
4226
4227
|
* Min required skill level (1-10) with one-decimal precision.
|
|
4227
4228
|
*/
|
|
4228
4229
|
level_min?: number | null;
|
|
4230
|
+
match_type: MatchType;
|
|
4229
4231
|
members_only: boolean;
|
|
4230
4232
|
message?: string | null;
|
|
4231
4233
|
participants: MatchParticipants;
|
|
@@ -4357,6 +4359,19 @@ type MatchTeamSpot = {
|
|
|
4357
4359
|
type MatchTeamsResponse = {
|
|
4358
4360
|
teams: Array<MatchTeam>;
|
|
4359
4361
|
};
|
|
4362
|
+
/**
|
|
4363
|
+
* How the match is classified. Drives result visibility and, in future, rating input. Always present — matches created before the field existed read as FRIENDLY.
|
|
4364
|
+
*
|
|
4365
|
+
*/
|
|
4366
|
+
declare const MatchType: {
|
|
4367
|
+
readonly FRIENDLY: "FRIENDLY";
|
|
4368
|
+
readonly COMPETITIVE: "COMPETITIVE";
|
|
4369
|
+
};
|
|
4370
|
+
/**
|
|
4371
|
+
* How the match is classified. Drives result visibility and, in future, rating input. Always present — matches created before the field existed read as FRIENDLY.
|
|
4372
|
+
*
|
|
4373
|
+
*/
|
|
4374
|
+
type MatchType = typeof MatchType[keyof typeof MatchType];
|
|
4360
4375
|
type MatchUserPrice = {
|
|
4361
4376
|
applied_category: string;
|
|
4362
4377
|
can_use_promo_code: boolean;
|
|
@@ -8065,6 +8080,9 @@ declare const MatchOccasionSchema: {
|
|
|
8065
8080
|
readonly nullable: true;
|
|
8066
8081
|
readonly type: "number";
|
|
8067
8082
|
};
|
|
8083
|
+
readonly match_type: {
|
|
8084
|
+
readonly $ref: "#/components/schemas/MatchType";
|
|
8085
|
+
};
|
|
8068
8086
|
readonly members_only: {
|
|
8069
8087
|
readonly type: "boolean";
|
|
8070
8088
|
};
|
|
@@ -8094,7 +8112,7 @@ declare const MatchOccasionSchema: {
|
|
|
8094
8112
|
readonly type: "string";
|
|
8095
8113
|
};
|
|
8096
8114
|
};
|
|
8097
|
-
readonly required: readonly ["id", "start_date_time", "end_date_time", "courts", "participants", "price", "is_bookable", "is_participating", "has_opened_registration", "has_not_closed_registration", "members_only", "auto_cancel_enabled"];
|
|
8115
|
+
readonly required: readonly ["id", "start_date_time", "end_date_time", "courts", "participants", "price", "is_bookable", "is_participating", "has_opened_registration", "has_not_closed_registration", "members_only", "auto_cancel_enabled", "match_type"];
|
|
8098
8116
|
readonly type: "object";
|
|
8099
8117
|
};
|
|
8100
8118
|
declare const MatchOccasionDetailSchema: {
|
|
@@ -8264,6 +8282,11 @@ declare const MatchTeamsResponseSchema: {
|
|
|
8264
8282
|
readonly required: readonly ["teams"];
|
|
8265
8283
|
readonly type: "object";
|
|
8266
8284
|
};
|
|
8285
|
+
declare const MatchTypeSchema: {
|
|
8286
|
+
readonly description: "How the match is classified. Drives result visibility and, in future, rating input. Always present — matches created before the field existed read as FRIENDLY.\n";
|
|
8287
|
+
readonly enum: readonly ["FRIENDLY", "COMPETITIVE"];
|
|
8288
|
+
readonly type: "string";
|
|
8289
|
+
};
|
|
8267
8290
|
declare const MatchUserPriceSchema: {
|
|
8268
8291
|
readonly properties: {
|
|
8269
8292
|
readonly applied_category: {
|
|
@@ -9563,6 +9586,7 @@ declare const schemas_gen$1_MatchStatusSchema: typeof MatchStatusSchema;
|
|
|
9563
9586
|
declare const schemas_gen$1_MatchTeamSchema: typeof MatchTeamSchema;
|
|
9564
9587
|
declare const schemas_gen$1_MatchTeamSpotSchema: typeof MatchTeamSpotSchema;
|
|
9565
9588
|
declare const schemas_gen$1_MatchTeamsResponseSchema: typeof MatchTeamsResponseSchema;
|
|
9589
|
+
declare const schemas_gen$1_MatchTypeSchema: typeof MatchTypeSchema;
|
|
9566
9590
|
declare const schemas_gen$1_MatchUserPriceSchema: typeof MatchUserPriceSchema;
|
|
9567
9591
|
declare const schemas_gen$1_MemberListResponseSchema: typeof MemberListResponseSchema;
|
|
9568
9592
|
declare const schemas_gen$1_MemberRelationSchema: typeof MemberRelationSchema;
|
|
@@ -9615,7 +9639,7 @@ declare const schemas_gen$1_VisibilitySchema: typeof VisibilitySchema;
|
|
|
9615
9639
|
declare const schemas_gen$1_pkgOpenapiSharedFilterableStringSchema: typeof pkgOpenapiSharedFilterableStringSchema;
|
|
9616
9640
|
declare const schemas_gen$1_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
9617
9641
|
declare namespace schemas_gen$1 {
|
|
9618
|
-
export { schemas_gen$1_AddressSchema as AddressSchema, schemas_gen$1_AuthorSchema as AuthorSchema, ChannelsSchema$1 as ChannelsSchema, schemas_gen$1_CommentListResponseSchema as CommentListResponseSchema, schemas_gen$1_CommentSchema as CommentSchema, schemas_gen$1_CommunityItemSchema as CommunityItemSchema, schemas_gen$1_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen$1_ConflictDetailsSchema as ConflictDetailsSchema, schemas_gen$1_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen$1_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen$1_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen$1_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen$1_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen$1_ExternalServiceSchema as ExternalServiceSchema, schemas_gen$1_FacilityListSchema as FacilityListSchema, FacilityMessagePayloadSchema$1 as FacilityMessagePayloadSchema, schemas_gen$1_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen$1_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen$1_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen$1_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen$1_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen$1_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen$1_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen$1_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen$1_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen$1_FacilityOfferSchema as FacilityOfferSchema, schemas_gen$1_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen$1_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen$1_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen$1_FacilitySchema as FacilitySchema, schemas_gen$1_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen$1_GenderSchema as GenderSchema, schemas_gen$1_JoinCommunityResponseSchema as JoinCommunityResponseSchema, schemas_gen$1_LinkTypeSchema as LinkTypeSchema, schemas_gen$1_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen$1_MatchCourtSchema as MatchCourtSchema, schemas_gen$1_MatchDetailSchema as MatchDetailSchema, schemas_gen$1_MatchEventSchema as MatchEventSchema, schemas_gen$1_MatchListSchema as MatchListSchema, schemas_gen$1_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen$1_MatchOccasionSchema as MatchOccasionSchema, schemas_gen$1_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen$1_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen$1_MatchSchema as MatchSchema, schemas_gen$1_MatchStatusSchema as MatchStatusSchema, schemas_gen$1_MatchTeamSchema as MatchTeamSchema, schemas_gen$1_MatchTeamSpotSchema as MatchTeamSpotSchema, schemas_gen$1_MatchTeamsResponseSchema as MatchTeamsResponseSchema, schemas_gen$1_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen$1_MemberListResponseSchema as MemberListResponseSchema, schemas_gen$1_MemberRelationSchema as MemberRelationSchema, schemas_gen$1_MemberSchema as MemberSchema, schemas_gen$1_MembershipStatusSchema as MembershipStatusSchema, MetadataSchema$1 as MetadataSchema, NotificationPayloadSchema$1 as NotificationPayloadSchema, NotificationRequestBodySchema$1 as NotificationRequestBodySchema, NotificationSchema$1 as NotificationSchema, schemas_gen$1_NotificationsFilterSchema as NotificationsFilterSchema, NotificationsPaginatedResponseSchema$1 as NotificationsPaginatedResponseSchema, NotificationsSummarySchema$1 as NotificationsSummarySchema, schemas_gen$1_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen$1_PaginationMetaSchema as PaginationMetaSchema, schemas_gen$1_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen$1_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen$1_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen$1_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen$1_PaymentCommandSchema as PaymentCommandSchema, schemas_gen$1_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen$1_PositionSchema as PositionSchema, schemas_gen$1_PostLinkSchema as PostLinkSchema, schemas_gen$1_PostListResponseSchema as PostListResponseSchema, schemas_gen$1_PostSchema as PostSchema, schemas_gen$1_PostingPermissionSchema as PostingPermissionSchema, PreferenceSchema$1 as PreferenceSchema, PreferencesResponseSchema$1 as PreferencesResponseSchema, schemas_gen$1_PrivateParticipantDetailSchema as PrivateParticipantDetailSchema, schemas_gen$1_PrivateParticipantSummarySchema as PrivateParticipantSummarySchema, schemas_gen$1_PublicParticipantDetailSchema as PublicParticipantDetailSchema, schemas_gen$1_PublicParticipantSummarySchema as PublicParticipantSummarySchema, schemas_gen$1_ReactionGroupSchema as ReactionGroupSchema, schemas_gen$1_ReactionRequestSchema as ReactionRequestSchema, schemas_gen$1_ReactionTypeSchema as ReactionTypeSchema, schemas_gen$1_RearrangeMatchTeamsRequestSchema as RearrangeMatchTeamsRequestSchema, schemas_gen$1_RecommendationListSchema as RecommendationListSchema, schemas_gen$1_RecommendationSchema as RecommendationSchema, schemas_gen$1_RefundPolicySchema as RefundPolicySchema, RegisterDeviceRequestSchema$1 as RegisterDeviceRequestSchema, schemas_gen$1_ResourceSchema as ResourceSchema, schemas_gen$1_SourceSchema as SourceSchema, schemas_gen$1_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen$1_SportAuthoritySchema as SportAuthoritySchema, schemas_gen$1_SportLevelSchema as SportLevelSchema, schemas_gen$1_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen$1_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen$1_SportProfileSchema as SportProfileSchema, schemas_gen$1_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen$1_SpotMoveSchema as SpotMoveSchema, schemas_gen$1_SpotPositionSchema as SpotPositionSchema, schemas_gen$1_SpotRefSchema as SpotRefSchema, TopicSchema$1 as TopicSchema, UpdatePreferencesRequestBodySchema$1 as UpdatePreferencesRequestBodySchema, schemas_gen$1_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen$1_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen$1_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen$1_UserProfileSchema as UserProfileSchema, schemas_gen$1_UserRelationSchema as UserRelationSchema, schemas_gen$1_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen$1_VisibilitySchema as VisibilitySchema, pkgOpenapiSharedCursorPaginatedResultSetSchema$1 as pkgOpenapiSharedCursorPaginatedResultSetSchema, pkgOpenapiSharedErrorSchema$1 as pkgOpenapiSharedErrorSchema, pkgOpenapiSharedErrorsSchema$1 as pkgOpenapiSharedErrorsSchema, schemas_gen$1_pkgOpenapiSharedFilterableStringSchema as pkgOpenapiSharedFilterableStringSchema, schemas_gen$1_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, pkgOpenapiSharedProblemDetailsSchema$1 as pkgOpenapiSharedProblemDetailsSchema };
|
|
9642
|
+
export { schemas_gen$1_AddressSchema as AddressSchema, schemas_gen$1_AuthorSchema as AuthorSchema, ChannelsSchema$1 as ChannelsSchema, schemas_gen$1_CommentListResponseSchema as CommentListResponseSchema, schemas_gen$1_CommentSchema as CommentSchema, schemas_gen$1_CommunityItemSchema as CommunityItemSchema, schemas_gen$1_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen$1_ConflictDetailsSchema as ConflictDetailsSchema, schemas_gen$1_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen$1_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen$1_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen$1_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen$1_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen$1_ExternalServiceSchema as ExternalServiceSchema, schemas_gen$1_FacilityListSchema as FacilityListSchema, FacilityMessagePayloadSchema$1 as FacilityMessagePayloadSchema, schemas_gen$1_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen$1_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen$1_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen$1_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen$1_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen$1_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen$1_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen$1_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen$1_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen$1_FacilityOfferSchema as FacilityOfferSchema, schemas_gen$1_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen$1_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen$1_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen$1_FacilitySchema as FacilitySchema, schemas_gen$1_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen$1_GenderSchema as GenderSchema, schemas_gen$1_JoinCommunityResponseSchema as JoinCommunityResponseSchema, schemas_gen$1_LinkTypeSchema as LinkTypeSchema, schemas_gen$1_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen$1_MatchCourtSchema as MatchCourtSchema, schemas_gen$1_MatchDetailSchema as MatchDetailSchema, schemas_gen$1_MatchEventSchema as MatchEventSchema, schemas_gen$1_MatchListSchema as MatchListSchema, schemas_gen$1_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen$1_MatchOccasionSchema as MatchOccasionSchema, schemas_gen$1_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen$1_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen$1_MatchSchema as MatchSchema, schemas_gen$1_MatchStatusSchema as MatchStatusSchema, schemas_gen$1_MatchTeamSchema as MatchTeamSchema, schemas_gen$1_MatchTeamSpotSchema as MatchTeamSpotSchema, schemas_gen$1_MatchTeamsResponseSchema as MatchTeamsResponseSchema, schemas_gen$1_MatchTypeSchema as MatchTypeSchema, schemas_gen$1_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen$1_MemberListResponseSchema as MemberListResponseSchema, schemas_gen$1_MemberRelationSchema as MemberRelationSchema, schemas_gen$1_MemberSchema as MemberSchema, schemas_gen$1_MembershipStatusSchema as MembershipStatusSchema, MetadataSchema$1 as MetadataSchema, NotificationPayloadSchema$1 as NotificationPayloadSchema, NotificationRequestBodySchema$1 as NotificationRequestBodySchema, NotificationSchema$1 as NotificationSchema, schemas_gen$1_NotificationsFilterSchema as NotificationsFilterSchema, NotificationsPaginatedResponseSchema$1 as NotificationsPaginatedResponseSchema, NotificationsSummarySchema$1 as NotificationsSummarySchema, schemas_gen$1_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen$1_PaginationMetaSchema as PaginationMetaSchema, schemas_gen$1_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen$1_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen$1_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen$1_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen$1_PaymentCommandSchema as PaymentCommandSchema, schemas_gen$1_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen$1_PositionSchema as PositionSchema, schemas_gen$1_PostLinkSchema as PostLinkSchema, schemas_gen$1_PostListResponseSchema as PostListResponseSchema, schemas_gen$1_PostSchema as PostSchema, schemas_gen$1_PostingPermissionSchema as PostingPermissionSchema, PreferenceSchema$1 as PreferenceSchema, PreferencesResponseSchema$1 as PreferencesResponseSchema, schemas_gen$1_PrivateParticipantDetailSchema as PrivateParticipantDetailSchema, schemas_gen$1_PrivateParticipantSummarySchema as PrivateParticipantSummarySchema, schemas_gen$1_PublicParticipantDetailSchema as PublicParticipantDetailSchema, schemas_gen$1_PublicParticipantSummarySchema as PublicParticipantSummarySchema, schemas_gen$1_ReactionGroupSchema as ReactionGroupSchema, schemas_gen$1_ReactionRequestSchema as ReactionRequestSchema, schemas_gen$1_ReactionTypeSchema as ReactionTypeSchema, schemas_gen$1_RearrangeMatchTeamsRequestSchema as RearrangeMatchTeamsRequestSchema, schemas_gen$1_RecommendationListSchema as RecommendationListSchema, schemas_gen$1_RecommendationSchema as RecommendationSchema, schemas_gen$1_RefundPolicySchema as RefundPolicySchema, RegisterDeviceRequestSchema$1 as RegisterDeviceRequestSchema, schemas_gen$1_ResourceSchema as ResourceSchema, schemas_gen$1_SourceSchema as SourceSchema, schemas_gen$1_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen$1_SportAuthoritySchema as SportAuthoritySchema, schemas_gen$1_SportLevelSchema as SportLevelSchema, schemas_gen$1_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen$1_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen$1_SportProfileSchema as SportProfileSchema, schemas_gen$1_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen$1_SpotMoveSchema as SpotMoveSchema, schemas_gen$1_SpotPositionSchema as SpotPositionSchema, schemas_gen$1_SpotRefSchema as SpotRefSchema, TopicSchema$1 as TopicSchema, UpdatePreferencesRequestBodySchema$1 as UpdatePreferencesRequestBodySchema, schemas_gen$1_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen$1_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen$1_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen$1_UserProfileSchema as UserProfileSchema, schemas_gen$1_UserRelationSchema as UserRelationSchema, schemas_gen$1_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen$1_VisibilitySchema as VisibilitySchema, pkgOpenapiSharedCursorPaginatedResultSetSchema$1 as pkgOpenapiSharedCursorPaginatedResultSetSchema, pkgOpenapiSharedErrorSchema$1 as pkgOpenapiSharedErrorSchema, pkgOpenapiSharedErrorsSchema$1 as pkgOpenapiSharedErrorsSchema, schemas_gen$1_pkgOpenapiSharedFilterableStringSchema as pkgOpenapiSharedFilterableStringSchema, schemas_gen$1_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, pkgOpenapiSharedProblemDetailsSchema$1 as pkgOpenapiSharedProblemDetailsSchema };
|
|
9619
9643
|
}
|
|
9620
9644
|
|
|
9621
9645
|
type Options$2<TData extends TDataShape$1 = TDataShape$1, ThrowOnError extends boolean = boolean> = Options$3<TData, ThrowOnError> & {
|
|
@@ -11492,6 +11516,7 @@ type indexV1_MatchStatus = MatchStatus;
|
|
|
11492
11516
|
type indexV1_MatchTeam = MatchTeam;
|
|
11493
11517
|
type indexV1_MatchTeamSpot = MatchTeamSpot;
|
|
11494
11518
|
type indexV1_MatchTeamsResponse = MatchTeamsResponse;
|
|
11519
|
+
type indexV1_MatchType = MatchType;
|
|
11495
11520
|
type indexV1_MatchUserPrice = MatchUserPrice;
|
|
11496
11521
|
type indexV1_Member = Member;
|
|
11497
11522
|
type indexV1_MemberListResponse = MemberListResponse;
|
|
@@ -11627,7 +11652,7 @@ declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfile
|
|
|
11627
11652
|
declare const indexV1_upsertCommentReaction: typeof upsertCommentReaction;
|
|
11628
11653
|
declare const indexV1_upsertPostReaction: typeof upsertPostReaction;
|
|
11629
11654
|
declare namespace indexV1 {
|
|
11630
|
-
export { type indexV1_AcceptInvitationData as AcceptInvitationData, type indexV1_AcceptInvitationError as AcceptInvitationError, type indexV1_AcceptInvitationErrors as AcceptInvitationErrors, type indexV1_AcceptInvitationResponse as AcceptInvitationResponse, type indexV1_AcceptInvitationResponses as AcceptInvitationResponses, type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Address as Address, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type Channels$1 as Channels, type ClientOptions$2 as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_ConflictDetails as ConflictDetails, type indexV1_CreateCommentData as CreateCommentData, type indexV1_CreateCommentError as CreateCommentError, type indexV1_CreateCommentErrors as CreateCommentErrors, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateCommentResponse as CreateCommentResponse, type indexV1_CreateCommentResponses as CreateCommentResponses, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreateMatchParticipationData as CreateMatchParticipationData, type indexV1_CreateMatchParticipationError as CreateMatchParticipationError, type indexV1_CreateMatchParticipationErrors as CreateMatchParticipationErrors, type indexV1_CreateMatchParticipationRequest as CreateMatchParticipationRequest, type indexV1_CreateMatchParticipationResponse as CreateMatchParticipationResponse, type indexV1_CreateMatchParticipationResponses as CreateMatchParticipationResponses, type indexV1_CreatePostData as CreatePostData, type indexV1_CreatePostError as CreatePostError, type indexV1_CreatePostErrors as CreatePostErrors, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreatePostResponse as CreatePostResponse, type indexV1_CreatePostResponses as CreatePostResponses, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteCommentData as DeleteCommentData, type indexV1_DeleteCommentError as DeleteCommentError, type indexV1_DeleteCommentErrors as DeleteCommentErrors, type indexV1_DeleteCommentReactionData as DeleteCommentReactionData, type indexV1_DeleteCommentReactionError as DeleteCommentReactionError, type indexV1_DeleteCommentReactionErrors as DeleteCommentReactionErrors, type indexV1_DeleteCommentReactionResponse as DeleteCommentReactionResponse, type indexV1_DeleteCommentReactionResponses as DeleteCommentReactionResponses, type indexV1_DeleteCommentResponse as DeleteCommentResponse, type indexV1_DeleteCommentResponses as DeleteCommentResponses, type indexV1_DeleteMatchParticipationData as DeleteMatchParticipationData, type indexV1_DeleteMatchParticipationError as DeleteMatchParticipationError, type indexV1_DeleteMatchParticipationErrors as DeleteMatchParticipationErrors, type indexV1_DeleteMatchParticipationResponse as DeleteMatchParticipationResponse, type indexV1_DeleteMatchParticipationResponses as DeleteMatchParticipationResponses, type indexV1_DeletePostData as DeletePostData, type indexV1_DeletePostError as DeletePostError, type indexV1_DeletePostErrors as DeletePostErrors, type indexV1_DeletePostReactionData as DeletePostReactionData, type indexV1_DeletePostReactionError as DeletePostReactionError, type indexV1_DeletePostReactionErrors as DeletePostReactionErrors, type indexV1_DeletePostReactionResponse as DeletePostReactionResponse, type indexV1_DeletePostReactionResponses as DeletePostReactionResponses, type indexV1_DeletePostResponse as DeletePostResponse, type indexV1_DeletePostResponses as DeletePostResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_ExternalService as ExternalService, type indexV1_Facility as Facility, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityList as FacilityList, type FacilityMessagePayload$1 as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetCommunityData as GetCommunityData, type indexV1_GetCommunityError as GetCommunityError, type indexV1_GetCommunityErrors as GetCommunityErrors, type indexV1_GetCommunityResponse as GetCommunityResponse, type indexV1_GetCommunityResponses as GetCommunityResponses, type indexV1_GetFacilityData as GetFacilityData, type indexV1_GetFacilityError as GetFacilityError, type indexV1_GetFacilityErrors as GetFacilityErrors, type indexV1_GetFacilityResponse as GetFacilityResponse, type indexV1_GetFacilityResponses as GetFacilityResponses, type indexV1_GetMatchData as GetMatchData, type indexV1_GetMatchError as GetMatchError, type indexV1_GetMatchErrors as GetMatchErrors, type indexV1_GetMatchResponse as GetMatchResponse, type indexV1_GetMatchResponses as GetMatchResponses, type indexV1_GetMatchTeamsData as GetMatchTeamsData, type indexV1_GetMatchTeamsError as GetMatchTeamsError, type indexV1_GetMatchTeamsErrors as GetMatchTeamsErrors, type indexV1_GetMatchTeamsResponse as GetMatchTeamsResponse, type indexV1_GetMatchTeamsResponses as GetMatchTeamsResponses, type indexV1_GetMatchUserPriceData as GetMatchUserPriceData, type indexV1_GetMatchUserPriceError as GetMatchUserPriceError, type indexV1_GetMatchUserPriceErrors as GetMatchUserPriceErrors, type indexV1_GetMatchUserPriceResponse as GetMatchUserPriceResponse, type indexV1_GetMatchUserPriceResponses as GetMatchUserPriceResponses, type GetNotificationByIdData$1 as GetNotificationByIdData, type GetNotificationByIdError$1 as GetNotificationByIdError, type GetNotificationByIdErrors$1 as GetNotificationByIdErrors, type GetNotificationByIdResponse$1 as GetNotificationByIdResponse, type GetNotificationByIdResponses$1 as GetNotificationByIdResponses, type GetNotificationsData$1 as GetNotificationsData, type GetNotificationsError$1 as GetNotificationsError, type GetNotificationsErrors$1 as GetNotificationsErrors, type GetNotificationsPreferencesData$1 as GetNotificationsPreferencesData, type GetNotificationsPreferencesError$1 as GetNotificationsPreferencesError, type GetNotificationsPreferencesErrors$1 as GetNotificationsPreferencesErrors, type GetNotificationsPreferencesResponse$1 as GetNotificationsPreferencesResponse, type GetNotificationsPreferencesResponses$1 as GetNotificationsPreferencesResponses, type GetNotificationsResponse$1 as GetNotificationsResponse, type GetNotificationsResponses$1 as GetNotificationsResponses, type indexV1_GetPostData as GetPostData, type indexV1_GetPostError as GetPostError, type indexV1_GetPostErrors as GetPostErrors, type indexV1_GetPostResponse as GetPostResponse, type indexV1_GetPostResponses as GetPostResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetResourceData as GetResourceData, type indexV1_GetResourceError as GetResourceError, type indexV1_GetResourceErrors as GetResourceErrors, type indexV1_GetResourceResponse as GetResourceResponse, type indexV1_GetResourceResponses as GetResourceResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_JoinCommunityData as JoinCommunityData, type indexV1_JoinCommunityError as JoinCommunityError, type indexV1_JoinCommunityErrors as JoinCommunityErrors, type indexV1_JoinCommunityResponse as JoinCommunityResponse, type indexV1_JoinCommunityResponse2 as JoinCommunityResponse2, type indexV1_JoinCommunityResponses as JoinCommunityResponses, type indexV1_LeaveCommunityData as LeaveCommunityData, type indexV1_LeaveCommunityError as LeaveCommunityError, type indexV1_LeaveCommunityErrors as LeaveCommunityErrors, type indexV1_LeaveCommunityResponse as LeaveCommunityResponse, type indexV1_LeaveCommunityResponses as LeaveCommunityResponses, type indexV1_LinkType as LinkType, type indexV1_ListCommentsData as ListCommentsData, type indexV1_ListCommentsError as ListCommentsError, type indexV1_ListCommentsErrors as ListCommentsErrors, type indexV1_ListCommentsResponse as ListCommentsResponse, type indexV1_ListCommentsResponses as ListCommentsResponses, type indexV1_ListCommunitiesData as ListCommunitiesData, type indexV1_ListCommunitiesError as ListCommunitiesError, type indexV1_ListCommunitiesErrors as ListCommunitiesErrors, type indexV1_ListCommunitiesResponse as ListCommunitiesResponse, type indexV1_ListCommunitiesResponses as ListCommunitiesResponses, type indexV1_ListFacilitiesData as ListFacilitiesData, type indexV1_ListFacilitiesError as ListFacilitiesError, type indexV1_ListFacilitiesErrors as ListFacilitiesErrors, type indexV1_ListFacilitiesResponse as ListFacilitiesResponse, type indexV1_ListFacilitiesResponses as ListFacilitiesResponses, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_ListFacilityResourcesData as ListFacilityResourcesData, type indexV1_ListFacilityResourcesError as ListFacilityResourcesError, type indexV1_ListFacilityResourcesErrors as ListFacilityResourcesErrors, type indexV1_ListFacilityResourcesResponse as ListFacilityResourcesResponse, type indexV1_ListFacilityResourcesResponses as ListFacilityResourcesResponses, type indexV1_ListMatchesData as ListMatchesData, type indexV1_ListMatchesError as ListMatchesError, type indexV1_ListMatchesErrors as ListMatchesErrors, type indexV1_ListMatchesResponse as ListMatchesResponse, type indexV1_ListMatchesResponses as ListMatchesResponses, type indexV1_ListMembersData as ListMembersData, type indexV1_ListMembersError as ListMembersError, type indexV1_ListMembersErrors as ListMembersErrors, type indexV1_ListMembersResponse as ListMembersResponse, type indexV1_ListMembersResponses as ListMembersResponses, type indexV1_ListPostsData as ListPostsData, type indexV1_ListPostsError as ListPostsError, type indexV1_ListPostsErrors as ListPostsErrors, type indexV1_ListPostsResponse as ListPostsResponse, type indexV1_ListPostsResponses as ListPostsResponses, type indexV1_MarkCommentReadData as MarkCommentReadData, type indexV1_MarkCommentReadError as MarkCommentReadError, type indexV1_MarkCommentReadErrors as MarkCommentReadErrors, type indexV1_MarkCommentReadResponse as MarkCommentReadResponse, type indexV1_MarkCommentReadResponses as MarkCommentReadResponses, type indexV1_MarkPostReadData as MarkPostReadData, type indexV1_MarkPostReadError as MarkPostReadError, type indexV1_MarkPostReadErrors as MarkPostReadErrors, type indexV1_MarkPostReadResponse as MarkPostReadResponse, type indexV1_MarkPostReadResponses as MarkPostReadResponses, type indexV1_Match as Match, type indexV1_MatchBasePrice as MatchBasePrice, type indexV1_MatchCourt as MatchCourt, type indexV1_MatchDetail as MatchDetail, type indexV1_MatchEvent as MatchEvent, type indexV1_MatchList as MatchList, type indexV1_MatchOccasion as MatchOccasion, type indexV1_MatchOccasionDetail as MatchOccasionDetail, type indexV1_MatchParticipants as MatchParticipants, type indexV1_MatchPriceListEntry as MatchPriceListEntry, type indexV1_MatchStatus as MatchStatus, type indexV1_MatchTeam as MatchTeam, type indexV1_MatchTeamSpot as MatchTeamSpot, type indexV1_MatchTeamsResponse as MatchTeamsResponse, type indexV1_MatchUserPrice as MatchUserPrice, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type Metadata$1 as Metadata, type Notification$1 as Notification, type NotificationPayload$1 as NotificationPayload, type NotificationRequestBody$1 as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type NotificationsPaginatedResponse$1 as NotificationsPaginatedResponse, type NotificationsSummary$1 as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type Options$2 as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_ParticipantDetail as ParticipantDetail, type indexV1_ParticipantSummary as ParticipantSummary, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PaymentCommand as PaymentCommand, type indexV1_PaymentDetails as PaymentDetails, type PkgOpenapiSharedCursorLimitParam$1 as PkgOpenapiSharedCursorLimitParam, type PkgOpenapiSharedCursorPaginatedResultSet$1 as PkgOpenapiSharedCursorPaginatedResultSet, type PkgOpenapiSharedCursorParam$1 as PkgOpenapiSharedCursorParam, type PkgOpenapiSharedError$1 as PkgOpenapiSharedError, type PkgOpenapiSharedErrors$1 as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedFilterableString as PkgOpenapiSharedFilterableString, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type PkgOpenapiSharedProblemDetails$1 as PkgOpenapiSharedProblemDetails, type indexV1_Position as Position, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type Preference$1 as Preference, type PreferencesResponse$1 as PreferencesResponse, type indexV1_PrivateParticipantDetail as PrivateParticipantDetail, type indexV1_PrivateParticipantSummary as PrivateParticipantSummary, type indexV1_PublicParticipantDetail as PublicParticipantDetail, type indexV1_PublicParticipantSummary as PublicParticipantSummary, type indexV1_ReactionGroup as ReactionGroup, type indexV1_ReactionRequest as ReactionRequest, type indexV1_ReactionType as ReactionType, type indexV1_RearrangeMatchTeamsData as RearrangeMatchTeamsData, type indexV1_RearrangeMatchTeamsError as RearrangeMatchTeamsError, type indexV1_RearrangeMatchTeamsErrors as RearrangeMatchTeamsErrors, type indexV1_RearrangeMatchTeamsRequest as RearrangeMatchTeamsRequest, type indexV1_RearrangeMatchTeamsResponse as RearrangeMatchTeamsResponse, type indexV1_RearrangeMatchTeamsResponses as RearrangeMatchTeamsResponses, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type RegisterDeviceData$1 as RegisterDeviceData, type RegisterDeviceError$1 as RegisterDeviceError, type RegisterDeviceErrors$1 as RegisterDeviceErrors, type RegisterDeviceRequest$1 as RegisterDeviceRequest, type RegisterDeviceResponse$1 as RegisterDeviceResponse, type RegisterDeviceResponses$1 as RegisterDeviceResponses, type indexV1_Resource as Resource, type indexV1_ResourceIdPath as ResourceIdPath, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_SpotMove as SpotMove, type indexV1_SpotPosition as SpotPosition, type indexV1_SpotRef as SpotRef, Topic$1 as Topic, type UpdateAllNotificationsData$1 as UpdateAllNotificationsData, type UpdateAllNotificationsError$1 as UpdateAllNotificationsError, type UpdateAllNotificationsErrors$1 as UpdateAllNotificationsErrors, type UpdateAllNotificationsResponse$1 as UpdateAllNotificationsResponse, type UpdateAllNotificationsResponses$1 as UpdateAllNotificationsResponses, type UpdateNotificationData$1 as UpdateNotificationData, type UpdateNotificationError$1 as UpdateNotificationError, type UpdateNotificationErrors$1 as UpdateNotificationErrors, type UpdateNotificationResponse$1 as UpdateNotificationResponse, type UpdateNotificationResponses$1 as UpdateNotificationResponses, type UpdateNotificationsPreferencesData$1 as UpdateNotificationsPreferencesData, type UpdateNotificationsPreferencesError$1 as UpdateNotificationsPreferencesError, type UpdateNotificationsPreferencesErrors$1 as UpdateNotificationsPreferencesErrors, type UpdateNotificationsPreferencesResponse$1 as UpdateNotificationsPreferencesResponse, type UpdateNotificationsPreferencesResponses$1 as UpdateNotificationsPreferencesResponses, type UpdatePreferencesRequestBody$1 as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UpsertCommentReactionData as UpsertCommentReactionData, type indexV1_UpsertCommentReactionError as UpsertCommentReactionError, type indexV1_UpsertCommentReactionErrors as UpsertCommentReactionErrors, type indexV1_UpsertCommentReactionResponse as UpsertCommentReactionResponse, type indexV1_UpsertCommentReactionResponses as UpsertCommentReactionResponses, type indexV1_UpsertPostReactionData as UpsertPostReactionData, type indexV1_UpsertPostReactionError as UpsertPostReactionError, type indexV1_UpsertPostReactionErrors as UpsertPostReactionErrors, type indexV1_UpsertPostReactionResponse as UpsertPostReactionResponse, type indexV1_UpsertPostReactionResponses as UpsertPostReactionResponses, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserParticipationStatus as UserParticipationStatus, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_acceptInvitation as acceptInvitation, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, client$1 as client, indexV1_createComment as createComment, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createMatchParticipation as createMatchParticipation, indexV1_createPost as createPost, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteComment as deleteComment, indexV1_deleteCommentReaction as deleteCommentReaction, indexV1_deleteMatchParticipation as deleteMatchParticipation, indexV1_deletePost as deletePost, indexV1_deletePostReaction as deletePostReaction, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getCommunity as getCommunity, indexV1_getFacility as getFacility, indexV1_getMatch as getMatch, indexV1_getMatchTeams as getMatchTeams, indexV1_getMatchUserPrice as getMatchUserPrice, getNotificationById$1 as getNotificationById, getNotifications$1 as getNotifications, getNotificationsPreferences$1 as getNotificationsPreferences, indexV1_getPost as getPost, indexV1_getRecommendations as getRecommendations, indexV1_getResource as getResource, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_joinCommunity as joinCommunity, indexV1_leaveCommunity as leaveCommunity, indexV1_listComments as listComments, indexV1_listCommunities as listCommunities, indexV1_listFacilities as listFacilities, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listFacilityResources as listFacilityResources, indexV1_listMatches as listMatches, indexV1_listMembers as listMembers, indexV1_listPosts as listPosts, indexV1_markCommentRead as markCommentRead, indexV1_markPostRead as markPostRead, reactQuery_gen$1 as queries, indexV1_rearrangeMatchTeams as rearrangeMatchTeams, registerDevice$1 as registerDevice, schemas_gen$1 as schemas, indexV1_searchUsers as searchUsers, updateAllNotifications$1 as updateAllNotifications, updateNotification$1 as updateNotification, updateNotificationsPreferences$1 as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel, indexV1_upsertCommentReaction as upsertCommentReaction, indexV1_upsertPostReaction as upsertPostReaction };
|
|
11655
|
+
export { type indexV1_AcceptInvitationData as AcceptInvitationData, type indexV1_AcceptInvitationError as AcceptInvitationError, type indexV1_AcceptInvitationErrors as AcceptInvitationErrors, type indexV1_AcceptInvitationResponse as AcceptInvitationResponse, type indexV1_AcceptInvitationResponses as AcceptInvitationResponses, type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Address as Address, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type Channels$1 as Channels, type ClientOptions$2 as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_ConflictDetails as ConflictDetails, type indexV1_CreateCommentData as CreateCommentData, type indexV1_CreateCommentError as CreateCommentError, type indexV1_CreateCommentErrors as CreateCommentErrors, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateCommentResponse as CreateCommentResponse, type indexV1_CreateCommentResponses as CreateCommentResponses, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreateMatchParticipationData as CreateMatchParticipationData, type indexV1_CreateMatchParticipationError as CreateMatchParticipationError, type indexV1_CreateMatchParticipationErrors as CreateMatchParticipationErrors, type indexV1_CreateMatchParticipationRequest as CreateMatchParticipationRequest, type indexV1_CreateMatchParticipationResponse as CreateMatchParticipationResponse, type indexV1_CreateMatchParticipationResponses as CreateMatchParticipationResponses, type indexV1_CreatePostData as CreatePostData, type indexV1_CreatePostError as CreatePostError, type indexV1_CreatePostErrors as CreatePostErrors, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreatePostResponse as CreatePostResponse, type indexV1_CreatePostResponses as CreatePostResponses, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteCommentData as DeleteCommentData, type indexV1_DeleteCommentError as DeleteCommentError, type indexV1_DeleteCommentErrors as DeleteCommentErrors, type indexV1_DeleteCommentReactionData as DeleteCommentReactionData, type indexV1_DeleteCommentReactionError as DeleteCommentReactionError, type indexV1_DeleteCommentReactionErrors as DeleteCommentReactionErrors, type indexV1_DeleteCommentReactionResponse as DeleteCommentReactionResponse, type indexV1_DeleteCommentReactionResponses as DeleteCommentReactionResponses, type indexV1_DeleteCommentResponse as DeleteCommentResponse, type indexV1_DeleteCommentResponses as DeleteCommentResponses, type indexV1_DeleteMatchParticipationData as DeleteMatchParticipationData, type indexV1_DeleteMatchParticipationError as DeleteMatchParticipationError, type indexV1_DeleteMatchParticipationErrors as DeleteMatchParticipationErrors, type indexV1_DeleteMatchParticipationResponse as DeleteMatchParticipationResponse, type indexV1_DeleteMatchParticipationResponses as DeleteMatchParticipationResponses, type indexV1_DeletePostData as DeletePostData, type indexV1_DeletePostError as DeletePostError, type indexV1_DeletePostErrors as DeletePostErrors, type indexV1_DeletePostReactionData as DeletePostReactionData, type indexV1_DeletePostReactionError as DeletePostReactionError, type indexV1_DeletePostReactionErrors as DeletePostReactionErrors, type indexV1_DeletePostReactionResponse as DeletePostReactionResponse, type indexV1_DeletePostReactionResponses as DeletePostReactionResponses, type indexV1_DeletePostResponse as DeletePostResponse, type indexV1_DeletePostResponses as DeletePostResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_ExternalService as ExternalService, type indexV1_Facility as Facility, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityList as FacilityList, type FacilityMessagePayload$1 as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetCommunityData as GetCommunityData, type indexV1_GetCommunityError as GetCommunityError, type indexV1_GetCommunityErrors as GetCommunityErrors, type indexV1_GetCommunityResponse as GetCommunityResponse, type indexV1_GetCommunityResponses as GetCommunityResponses, type indexV1_GetFacilityData as GetFacilityData, type indexV1_GetFacilityError as GetFacilityError, type indexV1_GetFacilityErrors as GetFacilityErrors, type indexV1_GetFacilityResponse as GetFacilityResponse, type indexV1_GetFacilityResponses as GetFacilityResponses, type indexV1_GetMatchData as GetMatchData, type indexV1_GetMatchError as GetMatchError, type indexV1_GetMatchErrors as GetMatchErrors, type indexV1_GetMatchResponse as GetMatchResponse, type indexV1_GetMatchResponses as GetMatchResponses, type indexV1_GetMatchTeamsData as GetMatchTeamsData, type indexV1_GetMatchTeamsError as GetMatchTeamsError, type indexV1_GetMatchTeamsErrors as GetMatchTeamsErrors, type indexV1_GetMatchTeamsResponse as GetMatchTeamsResponse, type indexV1_GetMatchTeamsResponses as GetMatchTeamsResponses, type indexV1_GetMatchUserPriceData as GetMatchUserPriceData, type indexV1_GetMatchUserPriceError as GetMatchUserPriceError, type indexV1_GetMatchUserPriceErrors as GetMatchUserPriceErrors, type indexV1_GetMatchUserPriceResponse as GetMatchUserPriceResponse, type indexV1_GetMatchUserPriceResponses as GetMatchUserPriceResponses, type GetNotificationByIdData$1 as GetNotificationByIdData, type GetNotificationByIdError$1 as GetNotificationByIdError, type GetNotificationByIdErrors$1 as GetNotificationByIdErrors, type GetNotificationByIdResponse$1 as GetNotificationByIdResponse, type GetNotificationByIdResponses$1 as GetNotificationByIdResponses, type GetNotificationsData$1 as GetNotificationsData, type GetNotificationsError$1 as GetNotificationsError, type GetNotificationsErrors$1 as GetNotificationsErrors, type GetNotificationsPreferencesData$1 as GetNotificationsPreferencesData, type GetNotificationsPreferencesError$1 as GetNotificationsPreferencesError, type GetNotificationsPreferencesErrors$1 as GetNotificationsPreferencesErrors, type GetNotificationsPreferencesResponse$1 as GetNotificationsPreferencesResponse, type GetNotificationsPreferencesResponses$1 as GetNotificationsPreferencesResponses, type GetNotificationsResponse$1 as GetNotificationsResponse, type GetNotificationsResponses$1 as GetNotificationsResponses, type indexV1_GetPostData as GetPostData, type indexV1_GetPostError as GetPostError, type indexV1_GetPostErrors as GetPostErrors, type indexV1_GetPostResponse as GetPostResponse, type indexV1_GetPostResponses as GetPostResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetResourceData as GetResourceData, type indexV1_GetResourceError as GetResourceError, type indexV1_GetResourceErrors as GetResourceErrors, type indexV1_GetResourceResponse as GetResourceResponse, type indexV1_GetResourceResponses as GetResourceResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_JoinCommunityData as JoinCommunityData, type indexV1_JoinCommunityError as JoinCommunityError, type indexV1_JoinCommunityErrors as JoinCommunityErrors, type indexV1_JoinCommunityResponse as JoinCommunityResponse, type indexV1_JoinCommunityResponse2 as JoinCommunityResponse2, type indexV1_JoinCommunityResponses as JoinCommunityResponses, type indexV1_LeaveCommunityData as LeaveCommunityData, type indexV1_LeaveCommunityError as LeaveCommunityError, type indexV1_LeaveCommunityErrors as LeaveCommunityErrors, type indexV1_LeaveCommunityResponse as LeaveCommunityResponse, type indexV1_LeaveCommunityResponses as LeaveCommunityResponses, type indexV1_LinkType as LinkType, type indexV1_ListCommentsData as ListCommentsData, type indexV1_ListCommentsError as ListCommentsError, type indexV1_ListCommentsErrors as ListCommentsErrors, type indexV1_ListCommentsResponse as ListCommentsResponse, type indexV1_ListCommentsResponses as ListCommentsResponses, type indexV1_ListCommunitiesData as ListCommunitiesData, type indexV1_ListCommunitiesError as ListCommunitiesError, type indexV1_ListCommunitiesErrors as ListCommunitiesErrors, type indexV1_ListCommunitiesResponse as ListCommunitiesResponse, type indexV1_ListCommunitiesResponses as ListCommunitiesResponses, type indexV1_ListFacilitiesData as ListFacilitiesData, type indexV1_ListFacilitiesError as ListFacilitiesError, type indexV1_ListFacilitiesErrors as ListFacilitiesErrors, type indexV1_ListFacilitiesResponse as ListFacilitiesResponse, type indexV1_ListFacilitiesResponses as ListFacilitiesResponses, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_ListFacilityResourcesData as ListFacilityResourcesData, type indexV1_ListFacilityResourcesError as ListFacilityResourcesError, type indexV1_ListFacilityResourcesErrors as ListFacilityResourcesErrors, type indexV1_ListFacilityResourcesResponse as ListFacilityResourcesResponse, type indexV1_ListFacilityResourcesResponses as ListFacilityResourcesResponses, type indexV1_ListMatchesData as ListMatchesData, type indexV1_ListMatchesError as ListMatchesError, type indexV1_ListMatchesErrors as ListMatchesErrors, type indexV1_ListMatchesResponse as ListMatchesResponse, type indexV1_ListMatchesResponses as ListMatchesResponses, type indexV1_ListMembersData as ListMembersData, type indexV1_ListMembersError as ListMembersError, type indexV1_ListMembersErrors as ListMembersErrors, type indexV1_ListMembersResponse as ListMembersResponse, type indexV1_ListMembersResponses as ListMembersResponses, type indexV1_ListPostsData as ListPostsData, type indexV1_ListPostsError as ListPostsError, type indexV1_ListPostsErrors as ListPostsErrors, type indexV1_ListPostsResponse as ListPostsResponse, type indexV1_ListPostsResponses as ListPostsResponses, type indexV1_MarkCommentReadData as MarkCommentReadData, type indexV1_MarkCommentReadError as MarkCommentReadError, type indexV1_MarkCommentReadErrors as MarkCommentReadErrors, type indexV1_MarkCommentReadResponse as MarkCommentReadResponse, type indexV1_MarkCommentReadResponses as MarkCommentReadResponses, type indexV1_MarkPostReadData as MarkPostReadData, type indexV1_MarkPostReadError as MarkPostReadError, type indexV1_MarkPostReadErrors as MarkPostReadErrors, type indexV1_MarkPostReadResponse as MarkPostReadResponse, type indexV1_MarkPostReadResponses as MarkPostReadResponses, type indexV1_Match as Match, type indexV1_MatchBasePrice as MatchBasePrice, type indexV1_MatchCourt as MatchCourt, type indexV1_MatchDetail as MatchDetail, type indexV1_MatchEvent as MatchEvent, type indexV1_MatchList as MatchList, type indexV1_MatchOccasion as MatchOccasion, type indexV1_MatchOccasionDetail as MatchOccasionDetail, type indexV1_MatchParticipants as MatchParticipants, type indexV1_MatchPriceListEntry as MatchPriceListEntry, type indexV1_MatchStatus as MatchStatus, type indexV1_MatchTeam as MatchTeam, type indexV1_MatchTeamSpot as MatchTeamSpot, type indexV1_MatchTeamsResponse as MatchTeamsResponse, type indexV1_MatchType as MatchType, type indexV1_MatchUserPrice as MatchUserPrice, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type Metadata$1 as Metadata, type Notification$1 as Notification, type NotificationPayload$1 as NotificationPayload, type NotificationRequestBody$1 as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type NotificationsPaginatedResponse$1 as NotificationsPaginatedResponse, type NotificationsSummary$1 as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type Options$2 as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_ParticipantDetail as ParticipantDetail, type indexV1_ParticipantSummary as ParticipantSummary, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PaymentCommand as PaymentCommand, type indexV1_PaymentDetails as PaymentDetails, type PkgOpenapiSharedCursorLimitParam$1 as PkgOpenapiSharedCursorLimitParam, type PkgOpenapiSharedCursorPaginatedResultSet$1 as PkgOpenapiSharedCursorPaginatedResultSet, type PkgOpenapiSharedCursorParam$1 as PkgOpenapiSharedCursorParam, type PkgOpenapiSharedError$1 as PkgOpenapiSharedError, type PkgOpenapiSharedErrors$1 as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedFilterableString as PkgOpenapiSharedFilterableString, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type PkgOpenapiSharedProblemDetails$1 as PkgOpenapiSharedProblemDetails, type indexV1_Position as Position, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type Preference$1 as Preference, type PreferencesResponse$1 as PreferencesResponse, type indexV1_PrivateParticipantDetail as PrivateParticipantDetail, type indexV1_PrivateParticipantSummary as PrivateParticipantSummary, type indexV1_PublicParticipantDetail as PublicParticipantDetail, type indexV1_PublicParticipantSummary as PublicParticipantSummary, type indexV1_ReactionGroup as ReactionGroup, type indexV1_ReactionRequest as ReactionRequest, type indexV1_ReactionType as ReactionType, type indexV1_RearrangeMatchTeamsData as RearrangeMatchTeamsData, type indexV1_RearrangeMatchTeamsError as RearrangeMatchTeamsError, type indexV1_RearrangeMatchTeamsErrors as RearrangeMatchTeamsErrors, type indexV1_RearrangeMatchTeamsRequest as RearrangeMatchTeamsRequest, type indexV1_RearrangeMatchTeamsResponse as RearrangeMatchTeamsResponse, type indexV1_RearrangeMatchTeamsResponses as RearrangeMatchTeamsResponses, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type RegisterDeviceData$1 as RegisterDeviceData, type RegisterDeviceError$1 as RegisterDeviceError, type RegisterDeviceErrors$1 as RegisterDeviceErrors, type RegisterDeviceRequest$1 as RegisterDeviceRequest, type RegisterDeviceResponse$1 as RegisterDeviceResponse, type RegisterDeviceResponses$1 as RegisterDeviceResponses, type indexV1_Resource as Resource, type indexV1_ResourceIdPath as ResourceIdPath, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_SpotMove as SpotMove, type indexV1_SpotPosition as SpotPosition, type indexV1_SpotRef as SpotRef, Topic$1 as Topic, type UpdateAllNotificationsData$1 as UpdateAllNotificationsData, type UpdateAllNotificationsError$1 as UpdateAllNotificationsError, type UpdateAllNotificationsErrors$1 as UpdateAllNotificationsErrors, type UpdateAllNotificationsResponse$1 as UpdateAllNotificationsResponse, type UpdateAllNotificationsResponses$1 as UpdateAllNotificationsResponses, type UpdateNotificationData$1 as UpdateNotificationData, type UpdateNotificationError$1 as UpdateNotificationError, type UpdateNotificationErrors$1 as UpdateNotificationErrors, type UpdateNotificationResponse$1 as UpdateNotificationResponse, type UpdateNotificationResponses$1 as UpdateNotificationResponses, type UpdateNotificationsPreferencesData$1 as UpdateNotificationsPreferencesData, type UpdateNotificationsPreferencesError$1 as UpdateNotificationsPreferencesError, type UpdateNotificationsPreferencesErrors$1 as UpdateNotificationsPreferencesErrors, type UpdateNotificationsPreferencesResponse$1 as UpdateNotificationsPreferencesResponse, type UpdateNotificationsPreferencesResponses$1 as UpdateNotificationsPreferencesResponses, type UpdatePreferencesRequestBody$1 as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UpsertCommentReactionData as UpsertCommentReactionData, type indexV1_UpsertCommentReactionError as UpsertCommentReactionError, type indexV1_UpsertCommentReactionErrors as UpsertCommentReactionErrors, type indexV1_UpsertCommentReactionResponse as UpsertCommentReactionResponse, type indexV1_UpsertCommentReactionResponses as UpsertCommentReactionResponses, type indexV1_UpsertPostReactionData as UpsertPostReactionData, type indexV1_UpsertPostReactionError as UpsertPostReactionError, type indexV1_UpsertPostReactionErrors as UpsertPostReactionErrors, type indexV1_UpsertPostReactionResponse as UpsertPostReactionResponse, type indexV1_UpsertPostReactionResponses as UpsertPostReactionResponses, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserParticipationStatus as UserParticipationStatus, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_acceptInvitation as acceptInvitation, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, client$1 as client, indexV1_createComment as createComment, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createMatchParticipation as createMatchParticipation, indexV1_createPost as createPost, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteComment as deleteComment, indexV1_deleteCommentReaction as deleteCommentReaction, indexV1_deleteMatchParticipation as deleteMatchParticipation, indexV1_deletePost as deletePost, indexV1_deletePostReaction as deletePostReaction, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getCommunity as getCommunity, indexV1_getFacility as getFacility, indexV1_getMatch as getMatch, indexV1_getMatchTeams as getMatchTeams, indexV1_getMatchUserPrice as getMatchUserPrice, getNotificationById$1 as getNotificationById, getNotifications$1 as getNotifications, getNotificationsPreferences$1 as getNotificationsPreferences, indexV1_getPost as getPost, indexV1_getRecommendations as getRecommendations, indexV1_getResource as getResource, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_joinCommunity as joinCommunity, indexV1_leaveCommunity as leaveCommunity, indexV1_listComments as listComments, indexV1_listCommunities as listCommunities, indexV1_listFacilities as listFacilities, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listFacilityResources as listFacilityResources, indexV1_listMatches as listMatches, indexV1_listMembers as listMembers, indexV1_listPosts as listPosts, indexV1_markCommentRead as markCommentRead, indexV1_markPostRead as markPostRead, reactQuery_gen$1 as queries, indexV1_rearrangeMatchTeams as rearrangeMatchTeams, registerDevice$1 as registerDevice, schemas_gen$1 as schemas, indexV1_searchUsers as searchUsers, updateAllNotifications$1 as updateAllNotifications, updateNotification$1 as updateNotification, updateNotificationsPreferences$1 as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel, indexV1_upsertCommentReaction as upsertCommentReaction, indexV1_upsertPostReaction as upsertPostReaction };
|
|
11631
11656
|
}
|
|
11632
11657
|
|
|
11633
11658
|
type AuthToken = string | undefined;
|
|
@@ -13070,4 +13095,4 @@ declare namespace indexV2 {
|
|
|
13070
13095
|
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 };
|
|
13071
13096
|
}
|
|
13072
13097
|
|
|
13073
|
-
export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type match, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type phoneRequirementResponse, type phoneStatus, type phoneUpdate, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerRefundInfo, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, spotPosition, type subscriptionLimitParam, type team, type
|
|
13098
|
+
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 spotMove, spotPosition, type subscriptionLimitParam, type team, type teamRearrangement, teamSide, type teamSpot, type teamSpotRef, 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 };
|