@matchi/api 0.20260610.1 → 0.20260610.3
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 +303 -3
- package/dist/main/index.d.ts +303 -3
- package/dist/main/index.js +17 -16
- package/dist/main/index.mjs +15 -14
- package/package.json +1 -1
package/dist/main/index.d.ts
CHANGED
|
@@ -3656,6 +3656,7 @@ type Comment = {
|
|
|
3656
3656
|
created_at: string;
|
|
3657
3657
|
is_read: boolean;
|
|
3658
3658
|
post_id: string;
|
|
3659
|
+
reactions?: Array<ReactionGroup>;
|
|
3659
3660
|
};
|
|
3660
3661
|
type CommentListResponse = {
|
|
3661
3662
|
items: Array<Comment>;
|
|
@@ -3918,6 +3919,11 @@ type MatchOccasion = {
|
|
|
3918
3919
|
*
|
|
3919
3920
|
*/
|
|
3920
3921
|
type MatchOccasionDetail = MatchOccasion & {
|
|
3922
|
+
/**
|
|
3923
|
+
* Venue door/gate access code for the match. Display-only and informational — it does not gate anything. Returned only when the requesting user has joined the match (user_status == PARTICIPATING) and the match has access codes enabled; null otherwise. Surface verbatim: the value may be a real code (e.g. "0666") or, while a code is still being provisioned, a short localized placeholder sentence — do not parse or validate it.
|
|
3924
|
+
*
|
|
3925
|
+
*/
|
|
3926
|
+
access_code?: string | null;
|
|
3921
3927
|
can_be_cancelled_by_user: boolean;
|
|
3922
3928
|
event: MatchEvent;
|
|
3923
3929
|
external_services: Array<ExternalService>;
|
|
@@ -4119,6 +4125,7 @@ type Post = {
|
|
|
4119
4125
|
is_read: boolean;
|
|
4120
4126
|
links?: Array<PostLink>;
|
|
4121
4127
|
post_id: string;
|
|
4128
|
+
reactions?: Array<ReactionGroup>;
|
|
4122
4129
|
unread_comment_count: number;
|
|
4123
4130
|
updated_at: string;
|
|
4124
4131
|
};
|
|
@@ -4184,6 +4191,22 @@ type PublicParticipantSummary = {
|
|
|
4184
4191
|
*/
|
|
4185
4192
|
user_id?: string | null;
|
|
4186
4193
|
};
|
|
4194
|
+
type ReactionGroup = {
|
|
4195
|
+
authors: Array<Author>;
|
|
4196
|
+
reaction_type: ReactionType;
|
|
4197
|
+
};
|
|
4198
|
+
type ReactionRequest = {
|
|
4199
|
+
reaction_type: ReactionType;
|
|
4200
|
+
};
|
|
4201
|
+
declare const ReactionType: {
|
|
4202
|
+
readonly THUMBS_UP: "THUMBS_UP";
|
|
4203
|
+
readonly HEART: "HEART";
|
|
4204
|
+
readonly SWEAT_SMILE: "SWEAT_SMILE";
|
|
4205
|
+
readonly LAUGHING: "LAUGHING";
|
|
4206
|
+
readonly HUSHED: "HUSHED";
|
|
4207
|
+
readonly FIRE: "FIRE";
|
|
4208
|
+
};
|
|
4209
|
+
type ReactionType = typeof ReactionType[keyof typeof ReactionType];
|
|
4187
4210
|
/**
|
|
4188
4211
|
* A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.
|
|
4189
4212
|
*
|
|
@@ -5149,6 +5172,156 @@ type MarkCommentReadResponses = {
|
|
|
5149
5172
|
200: Comment;
|
|
5150
5173
|
};
|
|
5151
5174
|
type MarkCommentReadResponse = MarkCommentReadResponses[keyof MarkCommentReadResponses];
|
|
5175
|
+
type DeleteCommentReactionData = {
|
|
5176
|
+
body?: never;
|
|
5177
|
+
path: {
|
|
5178
|
+
communityId: string;
|
|
5179
|
+
postId: string;
|
|
5180
|
+
commentId: string;
|
|
5181
|
+
};
|
|
5182
|
+
query?: never;
|
|
5183
|
+
url: '/communities/{communityId}/posts/{postId}/comments/{commentId}/reactions';
|
|
5184
|
+
};
|
|
5185
|
+
type DeleteCommentReactionErrors = {
|
|
5186
|
+
/**
|
|
5187
|
+
* Access token is not set or invalid.
|
|
5188
|
+
*/
|
|
5189
|
+
401: PkgOpenapiSharedProblemDetails$1;
|
|
5190
|
+
/**
|
|
5191
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
5192
|
+
*/
|
|
5193
|
+
403: PkgOpenapiSharedProblemDetails$1;
|
|
5194
|
+
/**
|
|
5195
|
+
* The requested resource was not found.
|
|
5196
|
+
*/
|
|
5197
|
+
404: PkgOpenapiSharedProblemDetails$1;
|
|
5198
|
+
/**
|
|
5199
|
+
* The server encountered an unexpected error
|
|
5200
|
+
*/
|
|
5201
|
+
500: PkgOpenapiSharedProblemDetails$1;
|
|
5202
|
+
};
|
|
5203
|
+
type DeleteCommentReactionError = DeleteCommentReactionErrors[keyof DeleteCommentReactionErrors];
|
|
5204
|
+
type DeleteCommentReactionResponses = {
|
|
5205
|
+
/**
|
|
5206
|
+
* Updated comment
|
|
5207
|
+
*/
|
|
5208
|
+
200: Comment;
|
|
5209
|
+
};
|
|
5210
|
+
type DeleteCommentReactionResponse = DeleteCommentReactionResponses[keyof DeleteCommentReactionResponses];
|
|
5211
|
+
type UpsertCommentReactionData = {
|
|
5212
|
+
body: ReactionRequest;
|
|
5213
|
+
path: {
|
|
5214
|
+
communityId: string;
|
|
5215
|
+
postId: string;
|
|
5216
|
+
commentId: string;
|
|
5217
|
+
};
|
|
5218
|
+
query?: never;
|
|
5219
|
+
url: '/communities/{communityId}/posts/{postId}/comments/{commentId}/reactions';
|
|
5220
|
+
};
|
|
5221
|
+
type UpsertCommentReactionErrors = {
|
|
5222
|
+
/**
|
|
5223
|
+
* The request was malformed or could not be processed.
|
|
5224
|
+
*/
|
|
5225
|
+
400: PkgOpenapiSharedProblemDetails$1;
|
|
5226
|
+
/**
|
|
5227
|
+
* Access token is not set or invalid.
|
|
5228
|
+
*/
|
|
5229
|
+
401: PkgOpenapiSharedProblemDetails$1;
|
|
5230
|
+
/**
|
|
5231
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
5232
|
+
*/
|
|
5233
|
+
403: PkgOpenapiSharedProblemDetails$1;
|
|
5234
|
+
/**
|
|
5235
|
+
* The requested resource was not found.
|
|
5236
|
+
*/
|
|
5237
|
+
404: PkgOpenapiSharedProblemDetails$1;
|
|
5238
|
+
/**
|
|
5239
|
+
* The server encountered an unexpected error
|
|
5240
|
+
*/
|
|
5241
|
+
500: PkgOpenapiSharedProblemDetails$1;
|
|
5242
|
+
};
|
|
5243
|
+
type UpsertCommentReactionError = UpsertCommentReactionErrors[keyof UpsertCommentReactionErrors];
|
|
5244
|
+
type UpsertCommentReactionResponses = {
|
|
5245
|
+
/**
|
|
5246
|
+
* Updated comment
|
|
5247
|
+
*/
|
|
5248
|
+
200: Comment;
|
|
5249
|
+
};
|
|
5250
|
+
type UpsertCommentReactionResponse = UpsertCommentReactionResponses[keyof UpsertCommentReactionResponses];
|
|
5251
|
+
type DeletePostReactionData = {
|
|
5252
|
+
body?: never;
|
|
5253
|
+
path: {
|
|
5254
|
+
communityId: string;
|
|
5255
|
+
postId: string;
|
|
5256
|
+
};
|
|
5257
|
+
query?: never;
|
|
5258
|
+
url: '/communities/{communityId}/posts/{postId}/reactions';
|
|
5259
|
+
};
|
|
5260
|
+
type DeletePostReactionErrors = {
|
|
5261
|
+
/**
|
|
5262
|
+
* Access token is not set or invalid.
|
|
5263
|
+
*/
|
|
5264
|
+
401: PkgOpenapiSharedProblemDetails$1;
|
|
5265
|
+
/**
|
|
5266
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
5267
|
+
*/
|
|
5268
|
+
403: PkgOpenapiSharedProblemDetails$1;
|
|
5269
|
+
/**
|
|
5270
|
+
* The requested resource was not found.
|
|
5271
|
+
*/
|
|
5272
|
+
404: PkgOpenapiSharedProblemDetails$1;
|
|
5273
|
+
/**
|
|
5274
|
+
* The server encountered an unexpected error
|
|
5275
|
+
*/
|
|
5276
|
+
500: PkgOpenapiSharedProblemDetails$1;
|
|
5277
|
+
};
|
|
5278
|
+
type DeletePostReactionError = DeletePostReactionErrors[keyof DeletePostReactionErrors];
|
|
5279
|
+
type DeletePostReactionResponses = {
|
|
5280
|
+
/**
|
|
5281
|
+
* Updated post
|
|
5282
|
+
*/
|
|
5283
|
+
200: Post;
|
|
5284
|
+
};
|
|
5285
|
+
type DeletePostReactionResponse = DeletePostReactionResponses[keyof DeletePostReactionResponses];
|
|
5286
|
+
type UpsertPostReactionData = {
|
|
5287
|
+
body: ReactionRequest;
|
|
5288
|
+
path: {
|
|
5289
|
+
communityId: string;
|
|
5290
|
+
postId: string;
|
|
5291
|
+
};
|
|
5292
|
+
query?: never;
|
|
5293
|
+
url: '/communities/{communityId}/posts/{postId}/reactions';
|
|
5294
|
+
};
|
|
5295
|
+
type UpsertPostReactionErrors = {
|
|
5296
|
+
/**
|
|
5297
|
+
* The request was malformed or could not be processed.
|
|
5298
|
+
*/
|
|
5299
|
+
400: PkgOpenapiSharedProblemDetails$1;
|
|
5300
|
+
/**
|
|
5301
|
+
* Access token is not set or invalid.
|
|
5302
|
+
*/
|
|
5303
|
+
401: PkgOpenapiSharedProblemDetails$1;
|
|
5304
|
+
/**
|
|
5305
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
5306
|
+
*/
|
|
5307
|
+
403: PkgOpenapiSharedProblemDetails$1;
|
|
5308
|
+
/**
|
|
5309
|
+
* The requested resource was not found.
|
|
5310
|
+
*/
|
|
5311
|
+
404: PkgOpenapiSharedProblemDetails$1;
|
|
5312
|
+
/**
|
|
5313
|
+
* The server encountered an unexpected error
|
|
5314
|
+
*/
|
|
5315
|
+
500: PkgOpenapiSharedProblemDetails$1;
|
|
5316
|
+
};
|
|
5317
|
+
type UpsertPostReactionError = UpsertPostReactionErrors[keyof UpsertPostReactionErrors];
|
|
5318
|
+
type UpsertPostReactionResponses = {
|
|
5319
|
+
/**
|
|
5320
|
+
* Updated post
|
|
5321
|
+
*/
|
|
5322
|
+
200: Post;
|
|
5323
|
+
};
|
|
5324
|
+
type UpsertPostReactionResponse = UpsertPostReactionResponses[keyof UpsertPostReactionResponses];
|
|
5152
5325
|
type ListFacilitiesData = {
|
|
5153
5326
|
body?: never;
|
|
5154
5327
|
path?: never;
|
|
@@ -6509,6 +6682,12 @@ declare const CommentSchema: {
|
|
|
6509
6682
|
readonly format: "uuid";
|
|
6510
6683
|
readonly type: "string";
|
|
6511
6684
|
};
|
|
6685
|
+
readonly reactions: {
|
|
6686
|
+
readonly items: {
|
|
6687
|
+
readonly $ref: "#/components/schemas/ReactionGroup";
|
|
6688
|
+
};
|
|
6689
|
+
readonly type: "array";
|
|
6690
|
+
};
|
|
6512
6691
|
};
|
|
6513
6692
|
readonly required: readonly ["comment_id", "post_id", "author", "content", "is_read", "created_at"];
|
|
6514
6693
|
readonly type: "object";
|
|
@@ -7291,6 +7470,11 @@ declare const MatchOccasionDetailSchema: {
|
|
|
7291
7470
|
readonly $ref: "#/components/schemas/MatchOccasion";
|
|
7292
7471
|
}, {
|
|
7293
7472
|
readonly properties: {
|
|
7473
|
+
readonly access_code: {
|
|
7474
|
+
readonly description: "Venue door/gate access code for the match. Display-only and informational — it does not gate anything. Returned only when the requesting user has joined the match (user_status == PARTICIPATING) and the match has access codes enabled; null otherwise. Surface verbatim: the value may be a real code (e.g. \"0666\") or, while a code is still being provisioned, a short localized placeholder sentence — do not parse or validate it.\n";
|
|
7475
|
+
readonly nullable: true;
|
|
7476
|
+
readonly type: "string";
|
|
7477
|
+
};
|
|
7294
7478
|
readonly can_be_cancelled_by_user: {
|
|
7295
7479
|
readonly type: "boolean";
|
|
7296
7480
|
};
|
|
@@ -7731,6 +7915,12 @@ declare const PostSchema: {
|
|
|
7731
7915
|
readonly format: "uuid";
|
|
7732
7916
|
readonly type: "string";
|
|
7733
7917
|
};
|
|
7918
|
+
readonly reactions: {
|
|
7919
|
+
readonly items: {
|
|
7920
|
+
readonly $ref: "#/components/schemas/ReactionGroup";
|
|
7921
|
+
};
|
|
7922
|
+
readonly type: "array";
|
|
7923
|
+
};
|
|
7734
7924
|
readonly unread_comment_count: {
|
|
7735
7925
|
readonly type: "integer";
|
|
7736
7926
|
};
|
|
@@ -7909,6 +8099,34 @@ declare const PublicParticipantSummarySchema: {
|
|
|
7909
8099
|
readonly required: readonly ["kind", "participation_id"];
|
|
7910
8100
|
readonly type: "object";
|
|
7911
8101
|
};
|
|
8102
|
+
declare const ReactionGroupSchema: {
|
|
8103
|
+
readonly properties: {
|
|
8104
|
+
readonly authors: {
|
|
8105
|
+
readonly items: {
|
|
8106
|
+
readonly $ref: "#/components/schemas/Author";
|
|
8107
|
+
};
|
|
8108
|
+
readonly type: "array";
|
|
8109
|
+
};
|
|
8110
|
+
readonly reaction_type: {
|
|
8111
|
+
readonly $ref: "#/components/schemas/ReactionType";
|
|
8112
|
+
};
|
|
8113
|
+
};
|
|
8114
|
+
readonly required: readonly ["reaction_type", "authors"];
|
|
8115
|
+
readonly type: "object";
|
|
8116
|
+
};
|
|
8117
|
+
declare const ReactionRequestSchema: {
|
|
8118
|
+
readonly properties: {
|
|
8119
|
+
readonly reaction_type: {
|
|
8120
|
+
readonly $ref: "#/components/schemas/ReactionType";
|
|
8121
|
+
};
|
|
8122
|
+
};
|
|
8123
|
+
readonly required: readonly ["reaction_type"];
|
|
8124
|
+
readonly type: "object";
|
|
8125
|
+
};
|
|
8126
|
+
declare const ReactionTypeSchema: {
|
|
8127
|
+
readonly enum: readonly ["THUMBS_UP", "HEART", "SWEAT_SMILE", "LAUGHING", "HUSHED", "FIRE"];
|
|
8128
|
+
readonly type: "string";
|
|
8129
|
+
};
|
|
7912
8130
|
declare const RecommendationSchema: {
|
|
7913
8131
|
readonly description: "A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.\n";
|
|
7914
8132
|
readonly properties: {
|
|
@@ -8588,6 +8806,9 @@ declare const schemas_gen$1_PrivateParticipantDetailSchema: typeof PrivatePartic
|
|
|
8588
8806
|
declare const schemas_gen$1_PrivateParticipantSummarySchema: typeof PrivateParticipantSummarySchema;
|
|
8589
8807
|
declare const schemas_gen$1_PublicParticipantDetailSchema: typeof PublicParticipantDetailSchema;
|
|
8590
8808
|
declare const schemas_gen$1_PublicParticipantSummarySchema: typeof PublicParticipantSummarySchema;
|
|
8809
|
+
declare const schemas_gen$1_ReactionGroupSchema: typeof ReactionGroupSchema;
|
|
8810
|
+
declare const schemas_gen$1_ReactionRequestSchema: typeof ReactionRequestSchema;
|
|
8811
|
+
declare const schemas_gen$1_ReactionTypeSchema: typeof ReactionTypeSchema;
|
|
8591
8812
|
declare const schemas_gen$1_RecommendationListSchema: typeof RecommendationListSchema;
|
|
8592
8813
|
declare const schemas_gen$1_RecommendationSchema: typeof RecommendationSchema;
|
|
8593
8814
|
declare const schemas_gen$1_RefundPolicySchema: typeof RefundPolicySchema;
|
|
@@ -8610,7 +8831,7 @@ declare const schemas_gen$1_VisibilitySchema: typeof VisibilitySchema;
|
|
|
8610
8831
|
declare const schemas_gen$1_pkgOpenapiSharedFilterableStringSchema: typeof pkgOpenapiSharedFilterableStringSchema;
|
|
8611
8832
|
declare const schemas_gen$1_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
8612
8833
|
declare namespace schemas_gen$1 {
|
|
8613
|
-
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_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_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_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_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, 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 };
|
|
8834
|
+
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_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_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_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_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, 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 };
|
|
8614
8835
|
}
|
|
8615
8836
|
|
|
8616
8837
|
type Options$2<TData extends TDataShape$1 = TDataShape$1, ThrowOnError extends boolean = boolean> = Options$3<TData, ThrowOnError> & {
|
|
@@ -8710,6 +8931,30 @@ declare const deleteComment: <ThrowOnError extends boolean = false>(options: Opt
|
|
|
8710
8931
|
* Marks a comment as read by the authenticated player.
|
|
8711
8932
|
*/
|
|
8712
8933
|
declare const markCommentRead: <ThrowOnError extends boolean = false>(options: Options$2<MarkCommentReadData, ThrowOnError>) => RequestResult$1<MarkCommentReadResponses, MarkCommentReadErrors, ThrowOnError, "fields">;
|
|
8934
|
+
/**
|
|
8935
|
+
* Remove own reaction from a comment
|
|
8936
|
+
*
|
|
8937
|
+
* Removes the authenticated player's reaction from a comment. Idempotent — returns 200 even if no reaction existed. Returns the updated comment.
|
|
8938
|
+
*/
|
|
8939
|
+
declare const deleteCommentReaction: <ThrowOnError extends boolean = false>(options: Options$2<DeleteCommentReactionData, ThrowOnError>) => RequestResult$1<DeleteCommentReactionResponses, DeleteCommentReactionErrors, ThrowOnError, "fields">;
|
|
8940
|
+
/**
|
|
8941
|
+
* Add or replace own reaction on a comment
|
|
8942
|
+
*
|
|
8943
|
+
* Adds or replaces the authenticated player's reaction on a comment. Returns the updated comment.
|
|
8944
|
+
*/
|
|
8945
|
+
declare const upsertCommentReaction: <ThrowOnError extends boolean = false>(options: Options$2<UpsertCommentReactionData, ThrowOnError>) => RequestResult$1<UpsertCommentReactionResponses, UpsertCommentReactionErrors, ThrowOnError, "fields">;
|
|
8946
|
+
/**
|
|
8947
|
+
* Remove own reaction from a post
|
|
8948
|
+
*
|
|
8949
|
+
* Removes the authenticated player's reaction from a post. Idempotent — returns 200 even if no reaction existed. Returns the updated post.
|
|
8950
|
+
*/
|
|
8951
|
+
declare const deletePostReaction: <ThrowOnError extends boolean = false>(options: Options$2<DeletePostReactionData, ThrowOnError>) => RequestResult$1<DeletePostReactionResponses, DeletePostReactionErrors, ThrowOnError, "fields">;
|
|
8952
|
+
/**
|
|
8953
|
+
* Add or replace own reaction on a post
|
|
8954
|
+
*
|
|
8955
|
+
* Adds or replaces the authenticated player's reaction on a post. Returns the updated post with embedded reactions.
|
|
8956
|
+
*/
|
|
8957
|
+
declare const upsertPostReaction: <ThrowOnError extends boolean = false>(options: Options$2<UpsertPostReactionData, ThrowOnError>) => RequestResult$1<UpsertPostReactionResponses, UpsertPostReactionErrors, ThrowOnError, "fields">;
|
|
8713
8958
|
/**
|
|
8714
8959
|
* List facilities
|
|
8715
8960
|
*
|
|
@@ -9240,6 +9485,30 @@ declare const deleteCommentMutation: (options?: Partial<Options$2<DeleteCommentD
|
|
|
9240
9485
|
* Marks a comment as read by the authenticated player.
|
|
9241
9486
|
*/
|
|
9242
9487
|
declare const markCommentReadMutation: (options?: Partial<Options$2<MarkCommentReadData>>) => UseMutationOptions<MarkCommentReadResponse, MarkCommentReadError, Options$2<MarkCommentReadData>>;
|
|
9488
|
+
/**
|
|
9489
|
+
* Remove own reaction from a comment
|
|
9490
|
+
*
|
|
9491
|
+
* Removes the authenticated player's reaction from a comment. Idempotent — returns 200 even if no reaction existed. Returns the updated comment.
|
|
9492
|
+
*/
|
|
9493
|
+
declare const deleteCommentReactionMutation: (options?: Partial<Options$2<DeleteCommentReactionData>>) => UseMutationOptions<DeleteCommentReactionResponse, DeleteCommentReactionError, Options$2<DeleteCommentReactionData>>;
|
|
9494
|
+
/**
|
|
9495
|
+
* Add or replace own reaction on a comment
|
|
9496
|
+
*
|
|
9497
|
+
* Adds or replaces the authenticated player's reaction on a comment. Returns the updated comment.
|
|
9498
|
+
*/
|
|
9499
|
+
declare const upsertCommentReactionMutation: (options?: Partial<Options$2<UpsertCommentReactionData>>) => UseMutationOptions<UpsertCommentReactionResponse, UpsertCommentReactionError, Options$2<UpsertCommentReactionData>>;
|
|
9500
|
+
/**
|
|
9501
|
+
* Remove own reaction from a post
|
|
9502
|
+
*
|
|
9503
|
+
* Removes the authenticated player's reaction from a post. Idempotent — returns 200 even if no reaction existed. Returns the updated post.
|
|
9504
|
+
*/
|
|
9505
|
+
declare const deletePostReactionMutation: (options?: Partial<Options$2<DeletePostReactionData>>) => UseMutationOptions<DeletePostReactionResponse, DeletePostReactionError, Options$2<DeletePostReactionData>>;
|
|
9506
|
+
/**
|
|
9507
|
+
* Add or replace own reaction on a post
|
|
9508
|
+
*
|
|
9509
|
+
* Adds or replaces the authenticated player's reaction on a post. Returns the updated post with embedded reactions.
|
|
9510
|
+
*/
|
|
9511
|
+
declare const upsertPostReactionMutation: (options?: Partial<Options$2<UpsertPostReactionData>>) => UseMutationOptions<UpsertPostReactionResponse, UpsertPostReactionError, Options$2<UpsertPostReactionData>>;
|
|
9243
9512
|
declare const listFacilitiesQueryKey: (options?: Options$2<ListFacilitiesData>) => [Pick<Options$2<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9244
9513
|
_id: string;
|
|
9245
9514
|
_infinite?: boolean;
|
|
@@ -10016,8 +10285,10 @@ declare const reactQuery_gen$1_createMatchParticipationMutation: typeof createMa
|
|
|
10016
10285
|
declare const reactQuery_gen$1_createPostMutation: typeof createPostMutation;
|
|
10017
10286
|
declare const reactQuery_gen$1_createUserSportProfileMutation: typeof createUserSportProfileMutation;
|
|
10018
10287
|
declare const reactQuery_gen$1_deleteCommentMutation: typeof deleteCommentMutation;
|
|
10288
|
+
declare const reactQuery_gen$1_deleteCommentReactionMutation: typeof deleteCommentReactionMutation;
|
|
10019
10289
|
declare const reactQuery_gen$1_deleteMatchParticipationMutation: typeof deleteMatchParticipationMutation;
|
|
10020
10290
|
declare const reactQuery_gen$1_deletePostMutation: typeof deletePostMutation;
|
|
10291
|
+
declare const reactQuery_gen$1_deletePostReactionMutation: typeof deletePostReactionMutation;
|
|
10021
10292
|
declare const reactQuery_gen$1_deleteUserSportProfileLevelMutation: typeof deleteUserSportProfileLevelMutation;
|
|
10022
10293
|
declare const reactQuery_gen$1_deleteUserSportProfileMutation: typeof deleteUserSportProfileMutation;
|
|
10023
10294
|
declare const reactQuery_gen$1_getCommunityOptions: typeof getCommunityOptions;
|
|
@@ -10083,8 +10354,10 @@ declare const reactQuery_gen$1_searchUsersOptions: typeof searchUsersOptions;
|
|
|
10083
10354
|
declare const reactQuery_gen$1_searchUsersQueryKey: typeof searchUsersQueryKey;
|
|
10084
10355
|
declare const reactQuery_gen$1_updateUserProfileMutation: typeof updateUserProfileMutation;
|
|
10085
10356
|
declare const reactQuery_gen$1_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
|
|
10357
|
+
declare const reactQuery_gen$1_upsertCommentReactionMutation: typeof upsertCommentReactionMutation;
|
|
10358
|
+
declare const reactQuery_gen$1_upsertPostReactionMutation: typeof upsertPostReactionMutation;
|
|
10086
10359
|
declare namespace reactQuery_gen$1 {
|
|
10087
|
-
export { type QueryKey$1 as QueryKey, reactQuery_gen$1_acceptInvitationMutation as acceptInvitationMutation, reactQuery_gen$1_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen$1_createCommentMutation as createCommentMutation, reactQuery_gen$1_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen$1_createMatchParticipationMutation as createMatchParticipationMutation, reactQuery_gen$1_createPostMutation as createPostMutation, reactQuery_gen$1_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen$1_deleteCommentMutation as deleteCommentMutation, reactQuery_gen$1_deleteMatchParticipationMutation as deleteMatchParticipationMutation, reactQuery_gen$1_deletePostMutation as deletePostMutation, reactQuery_gen$1_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen$1_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen$1_getCommunityOptions as getCommunityOptions, reactQuery_gen$1_getCommunityQueryKey as getCommunityQueryKey, reactQuery_gen$1_getFacilityOptions as getFacilityOptions, reactQuery_gen$1_getFacilityQueryKey as getFacilityQueryKey, reactQuery_gen$1_getMatchOptions as getMatchOptions, reactQuery_gen$1_getMatchQueryKey as getMatchQueryKey, reactQuery_gen$1_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen$1_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, getNotificationByIdOptions$1 as getNotificationByIdOptions, getNotificationByIdQueryKey$1 as getNotificationByIdQueryKey, getNotificationsInfiniteOptions$1 as getNotificationsInfiniteOptions, getNotificationsInfiniteQueryKey$1 as getNotificationsInfiniteQueryKey, getNotificationsOptions$1 as getNotificationsOptions, getNotificationsPreferencesOptions$1 as getNotificationsPreferencesOptions, getNotificationsPreferencesQueryKey$1 as getNotificationsPreferencesQueryKey, getNotificationsQueryKey$1 as getNotificationsQueryKey, reactQuery_gen$1_getPostOptions as getPostOptions, reactQuery_gen$1_getPostQueryKey as getPostQueryKey, reactQuery_gen$1_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen$1_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen$1_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen$1_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen$1_getResourceOptions as getResourceOptions, reactQuery_gen$1_getResourceQueryKey as getResourceQueryKey, reactQuery_gen$1_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen$1_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen$1_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen$1_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen$1_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen$1_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen$1_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen$1_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen$1_leaveCommunityMutation as leaveCommunityMutation, reactQuery_gen$1_listCommentsInfiniteOptions as listCommentsInfiniteOptions, reactQuery_gen$1_listCommentsInfiniteQueryKey as listCommentsInfiniteQueryKey, reactQuery_gen$1_listCommentsOptions as listCommentsOptions, reactQuery_gen$1_listCommentsQueryKey as listCommentsQueryKey, reactQuery_gen$1_listCommunitiesInfiniteOptions as listCommunitiesInfiniteOptions, reactQuery_gen$1_listCommunitiesInfiniteQueryKey as listCommunitiesInfiniteQueryKey, reactQuery_gen$1_listCommunitiesOptions as listCommunitiesOptions, reactQuery_gen$1_listCommunitiesQueryKey as listCommunitiesQueryKey, reactQuery_gen$1_listFacilitiesInfiniteOptions as listFacilitiesInfiniteOptions, reactQuery_gen$1_listFacilitiesInfiniteQueryKey as listFacilitiesInfiniteQueryKey, reactQuery_gen$1_listFacilitiesOptions as listFacilitiesOptions, reactQuery_gen$1_listFacilitiesQueryKey as listFacilitiesQueryKey, reactQuery_gen$1_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen$1_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen$1_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen$1_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen$1_listFacilityResourcesOptions as listFacilityResourcesOptions, reactQuery_gen$1_listFacilityResourcesQueryKey as listFacilityResourcesQueryKey, reactQuery_gen$1_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen$1_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen$1_listMatchesOptions as listMatchesOptions, reactQuery_gen$1_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen$1_listMembersInfiniteOptions as listMembersInfiniteOptions, reactQuery_gen$1_listMembersInfiniteQueryKey as listMembersInfiniteQueryKey, reactQuery_gen$1_listMembersOptions as listMembersOptions, reactQuery_gen$1_listMembersQueryKey as listMembersQueryKey, reactQuery_gen$1_listPostsInfiniteOptions as listPostsInfiniteOptions, reactQuery_gen$1_listPostsInfiniteQueryKey as listPostsInfiniteQueryKey, reactQuery_gen$1_listPostsOptions as listPostsOptions, reactQuery_gen$1_listPostsQueryKey as listPostsQueryKey, reactQuery_gen$1_markCommentReadMutation as markCommentReadMutation, reactQuery_gen$1_markPostReadMutation as markPostReadMutation, registerDeviceMutation$1 as registerDeviceMutation, reactQuery_gen$1_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen$1_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen$1_searchUsersOptions as searchUsersOptions, reactQuery_gen$1_searchUsersQueryKey as searchUsersQueryKey, updateAllNotificationsMutation$1 as updateAllNotificationsMutation, updateNotificationMutation$1 as updateNotificationMutation, updateNotificationsPreferencesMutation$1 as updateNotificationsPreferencesMutation, reactQuery_gen$1_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen$1_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
|
|
10360
|
+
export { type QueryKey$1 as QueryKey, reactQuery_gen$1_acceptInvitationMutation as acceptInvitationMutation, reactQuery_gen$1_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen$1_createCommentMutation as createCommentMutation, reactQuery_gen$1_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen$1_createMatchParticipationMutation as createMatchParticipationMutation, reactQuery_gen$1_createPostMutation as createPostMutation, reactQuery_gen$1_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen$1_deleteCommentMutation as deleteCommentMutation, reactQuery_gen$1_deleteCommentReactionMutation as deleteCommentReactionMutation, reactQuery_gen$1_deleteMatchParticipationMutation as deleteMatchParticipationMutation, reactQuery_gen$1_deletePostMutation as deletePostMutation, reactQuery_gen$1_deletePostReactionMutation as deletePostReactionMutation, reactQuery_gen$1_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen$1_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen$1_getCommunityOptions as getCommunityOptions, reactQuery_gen$1_getCommunityQueryKey as getCommunityQueryKey, reactQuery_gen$1_getFacilityOptions as getFacilityOptions, reactQuery_gen$1_getFacilityQueryKey as getFacilityQueryKey, reactQuery_gen$1_getMatchOptions as getMatchOptions, reactQuery_gen$1_getMatchQueryKey as getMatchQueryKey, reactQuery_gen$1_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen$1_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, getNotificationByIdOptions$1 as getNotificationByIdOptions, getNotificationByIdQueryKey$1 as getNotificationByIdQueryKey, getNotificationsInfiniteOptions$1 as getNotificationsInfiniteOptions, getNotificationsInfiniteQueryKey$1 as getNotificationsInfiniteQueryKey, getNotificationsOptions$1 as getNotificationsOptions, getNotificationsPreferencesOptions$1 as getNotificationsPreferencesOptions, getNotificationsPreferencesQueryKey$1 as getNotificationsPreferencesQueryKey, getNotificationsQueryKey$1 as getNotificationsQueryKey, reactQuery_gen$1_getPostOptions as getPostOptions, reactQuery_gen$1_getPostQueryKey as getPostQueryKey, reactQuery_gen$1_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen$1_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen$1_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen$1_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen$1_getResourceOptions as getResourceOptions, reactQuery_gen$1_getResourceQueryKey as getResourceQueryKey, reactQuery_gen$1_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen$1_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen$1_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen$1_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen$1_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen$1_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen$1_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen$1_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen$1_leaveCommunityMutation as leaveCommunityMutation, reactQuery_gen$1_listCommentsInfiniteOptions as listCommentsInfiniteOptions, reactQuery_gen$1_listCommentsInfiniteQueryKey as listCommentsInfiniteQueryKey, reactQuery_gen$1_listCommentsOptions as listCommentsOptions, reactQuery_gen$1_listCommentsQueryKey as listCommentsQueryKey, reactQuery_gen$1_listCommunitiesInfiniteOptions as listCommunitiesInfiniteOptions, reactQuery_gen$1_listCommunitiesInfiniteQueryKey as listCommunitiesInfiniteQueryKey, reactQuery_gen$1_listCommunitiesOptions as listCommunitiesOptions, reactQuery_gen$1_listCommunitiesQueryKey as listCommunitiesQueryKey, reactQuery_gen$1_listFacilitiesInfiniteOptions as listFacilitiesInfiniteOptions, reactQuery_gen$1_listFacilitiesInfiniteQueryKey as listFacilitiesInfiniteQueryKey, reactQuery_gen$1_listFacilitiesOptions as listFacilitiesOptions, reactQuery_gen$1_listFacilitiesQueryKey as listFacilitiesQueryKey, reactQuery_gen$1_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen$1_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen$1_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen$1_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen$1_listFacilityResourcesOptions as listFacilityResourcesOptions, reactQuery_gen$1_listFacilityResourcesQueryKey as listFacilityResourcesQueryKey, reactQuery_gen$1_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen$1_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen$1_listMatchesOptions as listMatchesOptions, reactQuery_gen$1_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen$1_listMembersInfiniteOptions as listMembersInfiniteOptions, reactQuery_gen$1_listMembersInfiniteQueryKey as listMembersInfiniteQueryKey, reactQuery_gen$1_listMembersOptions as listMembersOptions, reactQuery_gen$1_listMembersQueryKey as listMembersQueryKey, reactQuery_gen$1_listPostsInfiniteOptions as listPostsInfiniteOptions, reactQuery_gen$1_listPostsInfiniteQueryKey as listPostsInfiniteQueryKey, reactQuery_gen$1_listPostsOptions as listPostsOptions, reactQuery_gen$1_listPostsQueryKey as listPostsQueryKey, reactQuery_gen$1_markCommentReadMutation as markCommentReadMutation, reactQuery_gen$1_markPostReadMutation as markPostReadMutation, registerDeviceMutation$1 as registerDeviceMutation, reactQuery_gen$1_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen$1_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen$1_searchUsersOptions as searchUsersOptions, reactQuery_gen$1_searchUsersQueryKey as searchUsersQueryKey, updateAllNotificationsMutation$1 as updateAllNotificationsMutation, updateNotificationMutation$1 as updateNotificationMutation, updateNotificationsPreferencesMutation$1 as updateNotificationsPreferencesMutation, reactQuery_gen$1_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen$1_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation, reactQuery_gen$1_upsertCommentReactionMutation as upsertCommentReactionMutation, reactQuery_gen$1_upsertPostReactionMutation as upsertPostReactionMutation };
|
|
10088
10361
|
}
|
|
10089
10362
|
|
|
10090
10363
|
type indexV1_AcceptInvitationData = AcceptInvitationData;
|
|
@@ -10139,6 +10412,11 @@ type indexV1_CreateUserSportProfileResponses = CreateUserSportProfileResponses;
|
|
|
10139
10412
|
type indexV1_DeleteCommentData = DeleteCommentData;
|
|
10140
10413
|
type indexV1_DeleteCommentError = DeleteCommentError;
|
|
10141
10414
|
type indexV1_DeleteCommentErrors = DeleteCommentErrors;
|
|
10415
|
+
type indexV1_DeleteCommentReactionData = DeleteCommentReactionData;
|
|
10416
|
+
type indexV1_DeleteCommentReactionError = DeleteCommentReactionError;
|
|
10417
|
+
type indexV1_DeleteCommentReactionErrors = DeleteCommentReactionErrors;
|
|
10418
|
+
type indexV1_DeleteCommentReactionResponse = DeleteCommentReactionResponse;
|
|
10419
|
+
type indexV1_DeleteCommentReactionResponses = DeleteCommentReactionResponses;
|
|
10142
10420
|
type indexV1_DeleteCommentResponse = DeleteCommentResponse;
|
|
10143
10421
|
type indexV1_DeleteCommentResponses = DeleteCommentResponses;
|
|
10144
10422
|
type indexV1_DeleteMatchParticipationData = DeleteMatchParticipationData;
|
|
@@ -10149,6 +10427,11 @@ type indexV1_DeleteMatchParticipationResponses = DeleteMatchParticipationRespons
|
|
|
10149
10427
|
type indexV1_DeletePostData = DeletePostData;
|
|
10150
10428
|
type indexV1_DeletePostError = DeletePostError;
|
|
10151
10429
|
type indexV1_DeletePostErrors = DeletePostErrors;
|
|
10430
|
+
type indexV1_DeletePostReactionData = DeletePostReactionData;
|
|
10431
|
+
type indexV1_DeletePostReactionError = DeletePostReactionError;
|
|
10432
|
+
type indexV1_DeletePostReactionErrors = DeletePostReactionErrors;
|
|
10433
|
+
type indexV1_DeletePostReactionResponse = DeletePostReactionResponse;
|
|
10434
|
+
type indexV1_DeletePostReactionResponses = DeletePostReactionResponses;
|
|
10152
10435
|
type indexV1_DeletePostResponse = DeletePostResponse;
|
|
10153
10436
|
type indexV1_DeletePostResponses = DeletePostResponses;
|
|
10154
10437
|
type indexV1_DeleteUserSportProfileData = DeleteUserSportProfileData;
|
|
@@ -10332,6 +10615,9 @@ type indexV1_PrivateParticipantDetail = PrivateParticipantDetail;
|
|
|
10332
10615
|
type indexV1_PrivateParticipantSummary = PrivateParticipantSummary;
|
|
10333
10616
|
type indexV1_PublicParticipantDetail = PublicParticipantDetail;
|
|
10334
10617
|
type indexV1_PublicParticipantSummary = PublicParticipantSummary;
|
|
10618
|
+
type indexV1_ReactionGroup = ReactionGroup;
|
|
10619
|
+
type indexV1_ReactionRequest = ReactionRequest;
|
|
10620
|
+
type indexV1_ReactionType = ReactionType;
|
|
10335
10621
|
type indexV1_Recommendation = Recommendation;
|
|
10336
10622
|
type indexV1_RecommendationList = RecommendationList;
|
|
10337
10623
|
type indexV1_RefundPolicy = RefundPolicy;
|
|
@@ -10363,6 +10649,16 @@ type indexV1_UpdateUserSportProfileLevelErrors = UpdateUserSportProfileLevelErro
|
|
|
10363
10649
|
type indexV1_UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelResponse;
|
|
10364
10650
|
type indexV1_UpdateUserSportProfileLevelResponses = UpdateUserSportProfileLevelResponses;
|
|
10365
10651
|
type indexV1_UpdateUsersProfilesRequest = UpdateUsersProfilesRequest;
|
|
10652
|
+
type indexV1_UpsertCommentReactionData = UpsertCommentReactionData;
|
|
10653
|
+
type indexV1_UpsertCommentReactionError = UpsertCommentReactionError;
|
|
10654
|
+
type indexV1_UpsertCommentReactionErrors = UpsertCommentReactionErrors;
|
|
10655
|
+
type indexV1_UpsertCommentReactionResponse = UpsertCommentReactionResponse;
|
|
10656
|
+
type indexV1_UpsertCommentReactionResponses = UpsertCommentReactionResponses;
|
|
10657
|
+
type indexV1_UpsertPostReactionData = UpsertPostReactionData;
|
|
10658
|
+
type indexV1_UpsertPostReactionError = UpsertPostReactionError;
|
|
10659
|
+
type indexV1_UpsertPostReactionErrors = UpsertPostReactionErrors;
|
|
10660
|
+
type indexV1_UpsertPostReactionResponse = UpsertPostReactionResponse;
|
|
10661
|
+
type indexV1_UpsertPostReactionResponses = UpsertPostReactionResponses;
|
|
10366
10662
|
type indexV1_UserId = UserId;
|
|
10367
10663
|
type indexV1_UserIdParam = UserIdParam;
|
|
10368
10664
|
type indexV1_UserParticipationStatus = UserParticipationStatus;
|
|
@@ -10378,8 +10674,10 @@ declare const indexV1_createMatchParticipation: typeof createMatchParticipation;
|
|
|
10378
10674
|
declare const indexV1_createPost: typeof createPost;
|
|
10379
10675
|
declare const indexV1_createUserSportProfile: typeof createUserSportProfile;
|
|
10380
10676
|
declare const indexV1_deleteComment: typeof deleteComment;
|
|
10677
|
+
declare const indexV1_deleteCommentReaction: typeof deleteCommentReaction;
|
|
10381
10678
|
declare const indexV1_deleteMatchParticipation: typeof deleteMatchParticipation;
|
|
10382
10679
|
declare const indexV1_deletePost: typeof deletePost;
|
|
10680
|
+
declare const indexV1_deletePostReaction: typeof deletePostReaction;
|
|
10383
10681
|
declare const indexV1_deleteUserSportProfile: typeof deleteUserSportProfile;
|
|
10384
10682
|
declare const indexV1_deleteUserSportProfileLevel: typeof deleteUserSportProfileLevel;
|
|
10385
10683
|
declare const indexV1_getCommunity: typeof getCommunity;
|
|
@@ -10407,8 +10705,10 @@ declare const indexV1_markPostRead: typeof markPostRead;
|
|
|
10407
10705
|
declare const indexV1_searchUsers: typeof searchUsers;
|
|
10408
10706
|
declare const indexV1_updateUserProfile: typeof updateUserProfile;
|
|
10409
10707
|
declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
|
|
10708
|
+
declare const indexV1_upsertCommentReaction: typeof upsertCommentReaction;
|
|
10709
|
+
declare const indexV1_upsertPostReaction: typeof upsertPostReaction;
|
|
10410
10710
|
declare namespace indexV1 {
|
|
10411
|
-
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_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_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_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_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_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_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_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, 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_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_deleteMatchParticipation as deleteMatchParticipation, indexV1_deletePost as deletePost, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getCommunity as getCommunity, indexV1_getFacility as getFacility, indexV1_getMatch as getMatch, 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_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, 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 };
|
|
10711
|
+
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_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_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_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_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_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, 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_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_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, 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 };
|
|
10412
10712
|
}
|
|
10413
10713
|
|
|
10414
10714
|
type AuthToken = string | undefined;
|