@matchi/api 0.20260512.1 → 0.20260513.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main/index.d.mts +1332 -204
- package/dist/main/index.d.ts +1332 -204
- package/dist/main/index.js +12 -8
- package/dist/main/index.mjs +12 -8
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -3549,8 +3549,15 @@ type ClientOptions = {
|
|
|
3549
3549
|
baseUrl: 'https://api.matchi.com/v1' | (string & {});
|
|
3550
3550
|
};
|
|
3551
3551
|
type Author = {
|
|
3552
|
-
|
|
3553
|
-
|
|
3552
|
+
/**
|
|
3553
|
+
* ADMIN — the post or comment was authored by a facility admin.
|
|
3554
|
+
* MEMBER — the post or comment was authored by a community member.
|
|
3555
|
+
* UNKNOWN — the community member who authored the post or comment
|
|
3556
|
+
* has been deleted; only the type is set, user is omitted.
|
|
3557
|
+
*
|
|
3558
|
+
*/
|
|
3559
|
+
type: 'ADMIN' | 'MEMBER' | 'UNKNOWN';
|
|
3560
|
+
user?: Member;
|
|
3554
3561
|
};
|
|
3555
3562
|
type Channels = {
|
|
3556
3563
|
inapp: boolean;
|
|
@@ -3586,6 +3593,14 @@ type CommunityListResponse = {
|
|
|
3586
3593
|
items: Array<CommunityItem>;
|
|
3587
3594
|
meta: PaginationMeta;
|
|
3588
3595
|
};
|
|
3596
|
+
type CommunityPayload = {
|
|
3597
|
+
comment_id?: string;
|
|
3598
|
+
community_id?: string;
|
|
3599
|
+
description: string;
|
|
3600
|
+
post_id?: string;
|
|
3601
|
+
title: string;
|
|
3602
|
+
topic: Topic;
|
|
3603
|
+
};
|
|
3589
3604
|
type CreateCommentRequest = {
|
|
3590
3605
|
content: string;
|
|
3591
3606
|
};
|
|
@@ -3900,7 +3915,7 @@ type Notification = {
|
|
|
3900
3915
|
source_id: string;
|
|
3901
3916
|
topic: Topic;
|
|
3902
3917
|
};
|
|
3903
|
-
type NotificationPayload = FacilityMessagePayload;
|
|
3918
|
+
type NotificationPayload = FacilityMessagePayload | CommunityPayload;
|
|
3904
3919
|
type NotificationRequestBody = {
|
|
3905
3920
|
/**
|
|
3906
3921
|
* true to mark as read, false to mark as unread
|
|
@@ -4114,6 +4129,7 @@ type RegisterDeviceRequest = {
|
|
|
4114
4129
|
};
|
|
4115
4130
|
declare const Source: {
|
|
4116
4131
|
readonly FACILITY: "FACILITY";
|
|
4132
|
+
readonly COMMUNITY: "COMMUNITY";
|
|
4117
4133
|
};
|
|
4118
4134
|
type Source = typeof Source[keyof typeof Source];
|
|
4119
4135
|
type SportAuthoritiesResponse = {
|
|
@@ -4207,6 +4223,11 @@ type SportProfilesResponse = {
|
|
|
4207
4223
|
};
|
|
4208
4224
|
declare const Topic: {
|
|
4209
4225
|
readonly FACILITY_MESSAGE: "FACILITY_MESSAGE";
|
|
4226
|
+
readonly COMMUNITY_USER_INVITED: "COMMUNITY_USER_INVITED";
|
|
4227
|
+
readonly COMMUNITY_USER_REMOVED: "COMMUNITY_USER_REMOVED";
|
|
4228
|
+
readonly COMMUNITY_POST_CREATED: "COMMUNITY_POST_CREATED";
|
|
4229
|
+
readonly COMMUNITY_COMMENT_CREATED: "COMMUNITY_COMMENT_CREATED";
|
|
4230
|
+
readonly COMMUNITY_BLOCKED_USER_JOINED: "COMMUNITY_BLOCKED_USER_JOINED";
|
|
4210
4231
|
};
|
|
4211
4232
|
type Topic = typeof Topic[keyof typeof Topic];
|
|
4212
4233
|
type UpdatePreferencesRequestBody = {
|
|
@@ -4388,60 +4409,52 @@ type PkgOpenapiSharedOffsetLimitParam = number;
|
|
|
4388
4409
|
* Number of items to skip before returning the results.
|
|
4389
4410
|
*/
|
|
4390
4411
|
type PkgOpenapiSharedOffsetParam = number;
|
|
4391
|
-
type
|
|
4412
|
+
type ListCommunitiesData = {
|
|
4392
4413
|
body?: never;
|
|
4393
|
-
path
|
|
4394
|
-
facility_id: string;
|
|
4395
|
-
};
|
|
4414
|
+
path?: never;
|
|
4396
4415
|
query?: {
|
|
4397
4416
|
/**
|
|
4398
|
-
*
|
|
4399
|
-
*
|
|
4417
|
+
* Filter by membership status. Repeat the parameter to filter by multiple statuses (e.g. `?status=ACTIVE&status=INVITED`).
|
|
4400
4418
|
*/
|
|
4401
|
-
|
|
4419
|
+
status?: Array<MembershipStatus>;
|
|
4402
4420
|
/**
|
|
4403
|
-
*
|
|
4421
|
+
* Number of items to skip before returning the results.
|
|
4422
|
+
*/
|
|
4423
|
+
offset?: number;
|
|
4424
|
+
/**
|
|
4425
|
+
* Maximum number of items to return.
|
|
4404
4426
|
*/
|
|
4405
4427
|
limit?: number;
|
|
4406
4428
|
};
|
|
4407
|
-
url: '/
|
|
4429
|
+
url: '/communities';
|
|
4408
4430
|
};
|
|
4409
|
-
type
|
|
4431
|
+
type ListCommunitiesErrors = {
|
|
4410
4432
|
/**
|
|
4411
4433
|
* Access token is not set or invalid.
|
|
4412
4434
|
*/
|
|
4413
4435
|
401: PkgOpenapiSharedProblemDetails;
|
|
4414
|
-
/**
|
|
4415
|
-
* The requestor is not authorized to perform this operation on the resource.
|
|
4416
|
-
*/
|
|
4417
|
-
403: PkgOpenapiSharedProblemDetails;
|
|
4418
4436
|
/**
|
|
4419
4437
|
* The server encountered an unexpected error
|
|
4420
4438
|
*/
|
|
4421
4439
|
500: PkgOpenapiSharedProblemDetails;
|
|
4422
|
-
/**
|
|
4423
|
-
* The requested operation is not implemented.
|
|
4424
|
-
*/
|
|
4425
|
-
501: PkgOpenapiSharedProblemDetails;
|
|
4426
4440
|
};
|
|
4427
|
-
type
|
|
4428
|
-
type
|
|
4441
|
+
type ListCommunitiesError = ListCommunitiesErrors[keyof ListCommunitiesErrors];
|
|
4442
|
+
type ListCommunitiesResponses = {
|
|
4429
4443
|
/**
|
|
4430
|
-
*
|
|
4444
|
+
* List of communities
|
|
4431
4445
|
*/
|
|
4432
|
-
200:
|
|
4446
|
+
200: CommunityListResponse;
|
|
4433
4447
|
};
|
|
4434
|
-
type
|
|
4435
|
-
type
|
|
4448
|
+
type ListCommunitiesResponse = ListCommunitiesResponses[keyof ListCommunitiesResponses];
|
|
4449
|
+
type GetCommunityData = {
|
|
4436
4450
|
body?: never;
|
|
4437
4451
|
path: {
|
|
4438
|
-
|
|
4439
|
-
offer_id: string;
|
|
4452
|
+
communityId: string;
|
|
4440
4453
|
};
|
|
4441
4454
|
query?: never;
|
|
4442
|
-
url: '/
|
|
4455
|
+
url: '/communities/{communityId}';
|
|
4443
4456
|
};
|
|
4444
|
-
type
|
|
4457
|
+
type GetCommunityErrors = {
|
|
4445
4458
|
/**
|
|
4446
4459
|
* Access token is not set or invalid.
|
|
4447
4460
|
*/
|
|
@@ -4458,43 +4471,25 @@ type CreateFacilityOfferOrderErrors = {
|
|
|
4458
4471
|
* The server encountered an unexpected error
|
|
4459
4472
|
*/
|
|
4460
4473
|
500: PkgOpenapiSharedProblemDetails;
|
|
4461
|
-
/**
|
|
4462
|
-
* The requested operation is not implemented.
|
|
4463
|
-
*/
|
|
4464
|
-
501: PkgOpenapiSharedProblemDetails;
|
|
4465
4474
|
};
|
|
4466
|
-
type
|
|
4467
|
-
type
|
|
4475
|
+
type GetCommunityError = GetCommunityErrors[keyof GetCommunityErrors];
|
|
4476
|
+
type GetCommunityResponses = {
|
|
4468
4477
|
/**
|
|
4469
|
-
*
|
|
4478
|
+
* Community details
|
|
4470
4479
|
*/
|
|
4471
|
-
200:
|
|
4480
|
+
200: CommunityItem;
|
|
4472
4481
|
};
|
|
4473
|
-
type
|
|
4474
|
-
type
|
|
4482
|
+
type GetCommunityResponse = GetCommunityResponses[keyof GetCommunityResponses];
|
|
4483
|
+
type ListMembersData = {
|
|
4475
4484
|
body?: never;
|
|
4476
|
-
path
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
*/
|
|
4481
|
-
startDateTime: string;
|
|
4482
|
-
/**
|
|
4483
|
-
* End of date range (ISO 8601 UTC)
|
|
4484
|
-
*/
|
|
4485
|
-
endDateTime: string;
|
|
4486
|
-
/**
|
|
4487
|
-
* Filter by facility IDs
|
|
4488
|
-
*/
|
|
4489
|
-
facilityIds?: Array<number>;
|
|
4490
|
-
/**
|
|
4491
|
-
* Filter by sport IDs
|
|
4492
|
-
*/
|
|
4493
|
-
sportIds?: Array<number>;
|
|
4485
|
+
path: {
|
|
4486
|
+
communityId: string;
|
|
4487
|
+
};
|
|
4488
|
+
query?: {
|
|
4494
4489
|
/**
|
|
4495
|
-
*
|
|
4490
|
+
* Filter members by their relation to the requesting user. Repeat the parameter to filter by multiple relations (e.g. `?relation=FRIENDS&relation=INCOMING`).
|
|
4496
4491
|
*/
|
|
4497
|
-
|
|
4492
|
+
relation?: Array<MemberRelation>;
|
|
4498
4493
|
/**
|
|
4499
4494
|
* Number of items to skip before returning the results.
|
|
4500
4495
|
*/
|
|
@@ -4504,43 +4499,17 @@ type ListMatchesData = {
|
|
|
4504
4499
|
*/
|
|
4505
4500
|
limit?: number;
|
|
4506
4501
|
};
|
|
4507
|
-
url: '/
|
|
4502
|
+
url: '/communities/{communityId}/members';
|
|
4508
4503
|
};
|
|
4509
|
-
type
|
|
4510
|
-
/**
|
|
4511
|
-
* The request was malformed or could not be processed.
|
|
4512
|
-
*/
|
|
4513
|
-
400: PkgOpenapiSharedProblemDetails;
|
|
4504
|
+
type ListMembersErrors = {
|
|
4514
4505
|
/**
|
|
4515
4506
|
* Access token is not set or invalid.
|
|
4516
4507
|
*/
|
|
4517
4508
|
401: PkgOpenapiSharedProblemDetails;
|
|
4518
4509
|
/**
|
|
4519
|
-
* The
|
|
4520
|
-
*/
|
|
4521
|
-
500: PkgOpenapiSharedProblemDetails;
|
|
4522
|
-
};
|
|
4523
|
-
type ListMatchesError = ListMatchesErrors[keyof ListMatchesErrors];
|
|
4524
|
-
type ListMatchesResponses = {
|
|
4525
|
-
/**
|
|
4526
|
-
* OK
|
|
4527
|
-
*/
|
|
4528
|
-
200: MatchList;
|
|
4529
|
-
};
|
|
4530
|
-
type ListMatchesResponse = ListMatchesResponses[keyof ListMatchesResponses];
|
|
4531
|
-
type GetMatchData = {
|
|
4532
|
-
body?: never;
|
|
4533
|
-
path: {
|
|
4534
|
-
matchId: string;
|
|
4535
|
-
};
|
|
4536
|
-
query?: never;
|
|
4537
|
-
url: '/matches/{matchId}';
|
|
4538
|
-
};
|
|
4539
|
-
type GetMatchErrors = {
|
|
4540
|
-
/**
|
|
4541
|
-
* Access token is not set or invalid.
|
|
4510
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4542
4511
|
*/
|
|
4543
|
-
|
|
4512
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4544
4513
|
/**
|
|
4545
4514
|
* The requested resource was not found.
|
|
4546
4515
|
*/
|
|
@@ -4550,23 +4519,24 @@ type GetMatchErrors = {
|
|
|
4550
4519
|
*/
|
|
4551
4520
|
500: PkgOpenapiSharedProblemDetails;
|
|
4552
4521
|
};
|
|
4553
|
-
type
|
|
4554
|
-
type
|
|
4522
|
+
type ListMembersError = ListMembersErrors[keyof ListMembersErrors];
|
|
4523
|
+
type ListMembersResponses = {
|
|
4555
4524
|
/**
|
|
4556
|
-
*
|
|
4525
|
+
* List of members
|
|
4557
4526
|
*/
|
|
4558
|
-
200:
|
|
4527
|
+
200: MemberListResponse;
|
|
4559
4528
|
};
|
|
4560
|
-
type
|
|
4561
|
-
type
|
|
4562
|
-
body
|
|
4529
|
+
type ListMembersResponse = ListMembersResponses[keyof ListMembersResponses];
|
|
4530
|
+
type LeaveCommunityData = {
|
|
4531
|
+
body?: never;
|
|
4563
4532
|
path: {
|
|
4564
|
-
|
|
4533
|
+
communityId: string;
|
|
4534
|
+
userId: string;
|
|
4565
4535
|
};
|
|
4566
4536
|
query?: never;
|
|
4567
|
-
url: '/
|
|
4537
|
+
url: '/communities/{communityId}/members/{userId}';
|
|
4568
4538
|
};
|
|
4569
|
-
type
|
|
4539
|
+
type LeaveCommunityErrors = {
|
|
4570
4540
|
/**
|
|
4571
4541
|
* The request was malformed or could not be processed.
|
|
4572
4542
|
*/
|
|
@@ -4583,33 +4553,29 @@ type CreateMatchParticipationErrors = {
|
|
|
4583
4553
|
* The requested resource was not found.
|
|
4584
4554
|
*/
|
|
4585
4555
|
404: PkgOpenapiSharedProblemDetails;
|
|
4586
|
-
/**
|
|
4587
|
-
* The resource being created is found to already exist on the server.
|
|
4588
|
-
*/
|
|
4589
|
-
409: PkgOpenapiSharedProblemDetails;
|
|
4590
4556
|
/**
|
|
4591
4557
|
* The server encountered an unexpected error
|
|
4592
4558
|
*/
|
|
4593
4559
|
500: PkgOpenapiSharedProblemDetails;
|
|
4594
4560
|
};
|
|
4595
|
-
type
|
|
4596
|
-
type
|
|
4561
|
+
type LeaveCommunityError = LeaveCommunityErrors[keyof LeaveCommunityErrors];
|
|
4562
|
+
type LeaveCommunityResponses = {
|
|
4597
4563
|
/**
|
|
4598
|
-
*
|
|
4564
|
+
* Left community
|
|
4599
4565
|
*/
|
|
4600
|
-
200:
|
|
4566
|
+
200: CommunityItem;
|
|
4601
4567
|
};
|
|
4602
|
-
type
|
|
4603
|
-
type
|
|
4568
|
+
type LeaveCommunityResponse = LeaveCommunityResponses[keyof LeaveCommunityResponses];
|
|
4569
|
+
type AcceptInvitationData = {
|
|
4604
4570
|
body?: never;
|
|
4605
4571
|
path: {
|
|
4606
|
-
|
|
4572
|
+
communityId: string;
|
|
4607
4573
|
userId: string;
|
|
4608
4574
|
};
|
|
4609
4575
|
query?: never;
|
|
4610
|
-
url: '/
|
|
4576
|
+
url: '/communities/{communityId}/members/{userId}';
|
|
4611
4577
|
};
|
|
4612
|
-
type
|
|
4578
|
+
type AcceptInvitationErrors = {
|
|
4613
4579
|
/**
|
|
4614
4580
|
* The request was malformed or could not be processed.
|
|
4615
4581
|
*/
|
|
@@ -4631,26 +4597,36 @@ type DeleteMatchParticipationErrors = {
|
|
|
4631
4597
|
*/
|
|
4632
4598
|
500: PkgOpenapiSharedProblemDetails;
|
|
4633
4599
|
};
|
|
4634
|
-
type
|
|
4635
|
-
type
|
|
4600
|
+
type AcceptInvitationError = AcceptInvitationErrors[keyof AcceptInvitationErrors];
|
|
4601
|
+
type AcceptInvitationResponses = {
|
|
4636
4602
|
/**
|
|
4637
|
-
*
|
|
4603
|
+
* Invitation accepted
|
|
4638
4604
|
*/
|
|
4639
|
-
|
|
4605
|
+
200: CommunityItem;
|
|
4640
4606
|
};
|
|
4641
|
-
type
|
|
4642
|
-
type
|
|
4607
|
+
type AcceptInvitationResponse = AcceptInvitationResponses[keyof AcceptInvitationResponses];
|
|
4608
|
+
type ListPostsData = {
|
|
4643
4609
|
body?: never;
|
|
4644
4610
|
path: {
|
|
4645
|
-
|
|
4646
|
-
userId: string;
|
|
4611
|
+
communityId: string;
|
|
4647
4612
|
};
|
|
4648
4613
|
query?: {
|
|
4649
|
-
|
|
4614
|
+
/**
|
|
4615
|
+
* Filter posts by link type.
|
|
4616
|
+
*/
|
|
4617
|
+
link_type?: LinkType;
|
|
4618
|
+
/**
|
|
4619
|
+
* Number of items to skip before returning the results.
|
|
4620
|
+
*/
|
|
4621
|
+
offset?: number;
|
|
4622
|
+
/**
|
|
4623
|
+
* Maximum number of items to return.
|
|
4624
|
+
*/
|
|
4625
|
+
limit?: number;
|
|
4650
4626
|
};
|
|
4651
|
-
url: '/
|
|
4627
|
+
url: '/communities/{communityId}/posts';
|
|
4652
4628
|
};
|
|
4653
|
-
type
|
|
4629
|
+
type ListPostsErrors = {
|
|
4654
4630
|
/**
|
|
4655
4631
|
* Access token is not set or invalid.
|
|
4656
4632
|
*/
|
|
@@ -4668,36 +4644,23 @@ type GetMatchUserPriceErrors = {
|
|
|
4668
4644
|
*/
|
|
4669
4645
|
500: PkgOpenapiSharedProblemDetails;
|
|
4670
4646
|
};
|
|
4671
|
-
type
|
|
4672
|
-
type
|
|
4647
|
+
type ListPostsError = ListPostsErrors[keyof ListPostsErrors];
|
|
4648
|
+
type ListPostsResponses = {
|
|
4673
4649
|
/**
|
|
4674
|
-
*
|
|
4650
|
+
* List of posts
|
|
4675
4651
|
*/
|
|
4676
|
-
200:
|
|
4652
|
+
200: PostListResponse;
|
|
4677
4653
|
};
|
|
4678
|
-
type
|
|
4679
|
-
type
|
|
4680
|
-
body
|
|
4681
|
-
path
|
|
4682
|
-
|
|
4683
|
-
filters?: NotificationsFilter;
|
|
4684
|
-
/**
|
|
4685
|
-
* Get a summary of read and unread notifications (returns an empty list if true)
|
|
4686
|
-
*/
|
|
4687
|
-
only_summary?: boolean;
|
|
4688
|
-
/**
|
|
4689
|
-
* Cursor for pagination. An opaque value to request the next page. Should not be set for the first call to the resource. Subsequent should use the value from `meta.next_cursor` in the response, until `meta.more_results` is false.
|
|
4690
|
-
*
|
|
4691
|
-
*/
|
|
4692
|
-
cursor?: string;
|
|
4693
|
-
/**
|
|
4694
|
-
* Maximum number of items to return per page.
|
|
4695
|
-
*/
|
|
4696
|
-
limit?: number;
|
|
4654
|
+
type ListPostsResponse = ListPostsResponses[keyof ListPostsResponses];
|
|
4655
|
+
type CreatePostData = {
|
|
4656
|
+
body: CreatePostRequest;
|
|
4657
|
+
path: {
|
|
4658
|
+
communityId: string;
|
|
4697
4659
|
};
|
|
4698
|
-
|
|
4660
|
+
query?: never;
|
|
4661
|
+
url: '/communities/{communityId}/posts';
|
|
4699
4662
|
};
|
|
4700
|
-
type
|
|
4663
|
+
type CreatePostErrors = {
|
|
4701
4664
|
/**
|
|
4702
4665
|
* The request was malformed or could not be processed.
|
|
4703
4666
|
*/
|
|
@@ -4707,87 +4670,690 @@ type GetNotificationsErrors = {
|
|
|
4707
4670
|
*/
|
|
4708
4671
|
401: PkgOpenapiSharedProblemDetails;
|
|
4709
4672
|
/**
|
|
4710
|
-
* The
|
|
4673
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4711
4674
|
*/
|
|
4712
|
-
|
|
4675
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4713
4676
|
/**
|
|
4714
|
-
* The requested
|
|
4677
|
+
* The requested resource was not found.
|
|
4715
4678
|
*/
|
|
4716
|
-
|
|
4679
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4680
|
+
/**
|
|
4681
|
+
* The server encountered an unexpected error
|
|
4682
|
+
*/
|
|
4683
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4717
4684
|
};
|
|
4718
|
-
type
|
|
4719
|
-
type
|
|
4685
|
+
type CreatePostError = CreatePostErrors[keyof CreatePostErrors];
|
|
4686
|
+
type CreatePostResponses = {
|
|
4720
4687
|
/**
|
|
4721
|
-
*
|
|
4688
|
+
* Post created
|
|
4722
4689
|
*/
|
|
4723
|
-
|
|
4690
|
+
201: Post;
|
|
4724
4691
|
};
|
|
4725
|
-
type
|
|
4726
|
-
type
|
|
4727
|
-
body
|
|
4728
|
-
path
|
|
4729
|
-
|
|
4730
|
-
|
|
4692
|
+
type CreatePostResponse = CreatePostResponses[keyof CreatePostResponses];
|
|
4693
|
+
type DeletePostData = {
|
|
4694
|
+
body?: never;
|
|
4695
|
+
path: {
|
|
4696
|
+
communityId: string;
|
|
4697
|
+
postId: string;
|
|
4731
4698
|
};
|
|
4732
|
-
|
|
4699
|
+
query?: never;
|
|
4700
|
+
url: '/communities/{communityId}/posts/{postId}';
|
|
4733
4701
|
};
|
|
4734
|
-
type
|
|
4735
|
-
/**
|
|
4736
|
-
* The request was malformed or could not be processed.
|
|
4737
|
-
*/
|
|
4738
|
-
400: PkgOpenapiSharedProblemDetails;
|
|
4702
|
+
type DeletePostErrors = {
|
|
4739
4703
|
/**
|
|
4740
4704
|
* Access token is not set or invalid.
|
|
4741
4705
|
*/
|
|
4742
4706
|
401: PkgOpenapiSharedProblemDetails;
|
|
4743
4707
|
/**
|
|
4744
|
-
* The
|
|
4708
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4745
4709
|
*/
|
|
4746
|
-
|
|
4710
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4747
4711
|
/**
|
|
4748
|
-
* The requested
|
|
4712
|
+
* The requested resource was not found.
|
|
4749
4713
|
*/
|
|
4750
|
-
|
|
4714
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4715
|
+
/**
|
|
4716
|
+
* The server encountered an unexpected error
|
|
4717
|
+
*/
|
|
4718
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4751
4719
|
};
|
|
4752
|
-
type
|
|
4753
|
-
type
|
|
4720
|
+
type DeletePostError = DeletePostErrors[keyof DeletePostErrors];
|
|
4721
|
+
type DeletePostResponses = {
|
|
4754
4722
|
/**
|
|
4755
|
-
*
|
|
4723
|
+
* Post deleted
|
|
4756
4724
|
*/
|
|
4757
|
-
|
|
4725
|
+
204: void;
|
|
4758
4726
|
};
|
|
4759
|
-
type
|
|
4760
|
-
type
|
|
4727
|
+
type DeletePostResponse = DeletePostResponses[keyof DeletePostResponses];
|
|
4728
|
+
type GetPostData = {
|
|
4761
4729
|
body?: never;
|
|
4762
|
-
path
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
source?: Source;
|
|
4766
|
-
source_ids?: Array<string>;
|
|
4730
|
+
path: {
|
|
4731
|
+
communityId: string;
|
|
4732
|
+
postId: string;
|
|
4767
4733
|
};
|
|
4768
|
-
|
|
4734
|
+
query?: never;
|
|
4735
|
+
url: '/communities/{communityId}/posts/{postId}';
|
|
4769
4736
|
};
|
|
4770
|
-
type
|
|
4771
|
-
/**
|
|
4772
|
-
* The request was malformed or could not be processed.
|
|
4773
|
-
*/
|
|
4774
|
-
400: PkgOpenapiSharedProblemDetails;
|
|
4737
|
+
type GetPostErrors = {
|
|
4775
4738
|
/**
|
|
4776
4739
|
* Access token is not set or invalid.
|
|
4777
4740
|
*/
|
|
4778
4741
|
401: PkgOpenapiSharedProblemDetails;
|
|
4742
|
+
/**
|
|
4743
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4744
|
+
*/
|
|
4745
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4746
|
+
/**
|
|
4747
|
+
* The requested resource was not found.
|
|
4748
|
+
*/
|
|
4749
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4779
4750
|
/**
|
|
4780
4751
|
* The server encountered an unexpected error
|
|
4781
4752
|
*/
|
|
4782
4753
|
500: PkgOpenapiSharedProblemDetails;
|
|
4754
|
+
};
|
|
4755
|
+
type GetPostError = GetPostErrors[keyof GetPostErrors];
|
|
4756
|
+
type GetPostResponses = {
|
|
4783
4757
|
/**
|
|
4784
|
-
*
|
|
4758
|
+
* Post details
|
|
4785
4759
|
*/
|
|
4786
|
-
|
|
4760
|
+
200: Post;
|
|
4787
4761
|
};
|
|
4788
|
-
type
|
|
4789
|
-
type
|
|
4790
|
-
|
|
4762
|
+
type GetPostResponse = GetPostResponses[keyof GetPostResponses];
|
|
4763
|
+
type MarkPostReadData = {
|
|
4764
|
+
body: PatchPostRequest;
|
|
4765
|
+
path: {
|
|
4766
|
+
communityId: string;
|
|
4767
|
+
postId: string;
|
|
4768
|
+
};
|
|
4769
|
+
query?: never;
|
|
4770
|
+
url: '/communities/{communityId}/posts/{postId}';
|
|
4771
|
+
};
|
|
4772
|
+
type MarkPostReadErrors = {
|
|
4773
|
+
/**
|
|
4774
|
+
* Access token is not set or invalid.
|
|
4775
|
+
*/
|
|
4776
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4777
|
+
/**
|
|
4778
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4779
|
+
*/
|
|
4780
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4781
|
+
/**
|
|
4782
|
+
* The requested resource was not found.
|
|
4783
|
+
*/
|
|
4784
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4785
|
+
/**
|
|
4786
|
+
* The server encountered an unexpected error
|
|
4787
|
+
*/
|
|
4788
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4789
|
+
};
|
|
4790
|
+
type MarkPostReadError = MarkPostReadErrors[keyof MarkPostReadErrors];
|
|
4791
|
+
type MarkPostReadResponses = {
|
|
4792
|
+
/**
|
|
4793
|
+
* Post details
|
|
4794
|
+
*/
|
|
4795
|
+
200: Post;
|
|
4796
|
+
};
|
|
4797
|
+
type MarkPostReadResponse = MarkPostReadResponses[keyof MarkPostReadResponses];
|
|
4798
|
+
type ListCommentsData = {
|
|
4799
|
+
body?: never;
|
|
4800
|
+
path: {
|
|
4801
|
+
communityId: string;
|
|
4802
|
+
postId: string;
|
|
4803
|
+
};
|
|
4804
|
+
query?: {
|
|
4805
|
+
/**
|
|
4806
|
+
* Only return comments created after this timestamp (ISO 8601).
|
|
4807
|
+
*/
|
|
4808
|
+
from?: string;
|
|
4809
|
+
/**
|
|
4810
|
+
* Number of items to skip before returning the results.
|
|
4811
|
+
*/
|
|
4812
|
+
offset?: number;
|
|
4813
|
+
/**
|
|
4814
|
+
* Maximum number of items to return.
|
|
4815
|
+
*/
|
|
4816
|
+
limit?: number;
|
|
4817
|
+
};
|
|
4818
|
+
url: '/communities/{communityId}/posts/{postId}/comments';
|
|
4819
|
+
};
|
|
4820
|
+
type ListCommentsErrors = {
|
|
4821
|
+
/**
|
|
4822
|
+
* Access token is not set or invalid.
|
|
4823
|
+
*/
|
|
4824
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4825
|
+
/**
|
|
4826
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4827
|
+
*/
|
|
4828
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4829
|
+
/**
|
|
4830
|
+
* The requested resource was not found.
|
|
4831
|
+
*/
|
|
4832
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4833
|
+
/**
|
|
4834
|
+
* The server encountered an unexpected error
|
|
4835
|
+
*/
|
|
4836
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4837
|
+
};
|
|
4838
|
+
type ListCommentsError = ListCommentsErrors[keyof ListCommentsErrors];
|
|
4839
|
+
type ListCommentsResponses = {
|
|
4840
|
+
/**
|
|
4841
|
+
* List of comments
|
|
4842
|
+
*/
|
|
4843
|
+
200: CommentListResponse;
|
|
4844
|
+
};
|
|
4845
|
+
type ListCommentsResponse = ListCommentsResponses[keyof ListCommentsResponses];
|
|
4846
|
+
type CreateCommentData = {
|
|
4847
|
+
body: CreateCommentRequest;
|
|
4848
|
+
path: {
|
|
4849
|
+
communityId: string;
|
|
4850
|
+
postId: string;
|
|
4851
|
+
};
|
|
4852
|
+
query?: never;
|
|
4853
|
+
url: '/communities/{communityId}/posts/{postId}/comments';
|
|
4854
|
+
};
|
|
4855
|
+
type CreateCommentErrors = {
|
|
4856
|
+
/**
|
|
4857
|
+
* The request was malformed or could not be processed.
|
|
4858
|
+
*/
|
|
4859
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
4860
|
+
/**
|
|
4861
|
+
* Access token is not set or invalid.
|
|
4862
|
+
*/
|
|
4863
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4864
|
+
/**
|
|
4865
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4866
|
+
*/
|
|
4867
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4868
|
+
/**
|
|
4869
|
+
* The requested resource was not found.
|
|
4870
|
+
*/
|
|
4871
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4872
|
+
/**
|
|
4873
|
+
* The server encountered an unexpected error
|
|
4874
|
+
*/
|
|
4875
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4876
|
+
};
|
|
4877
|
+
type CreateCommentError = CreateCommentErrors[keyof CreateCommentErrors];
|
|
4878
|
+
type CreateCommentResponses = {
|
|
4879
|
+
/**
|
|
4880
|
+
* Comment created
|
|
4881
|
+
*/
|
|
4882
|
+
201: Comment;
|
|
4883
|
+
};
|
|
4884
|
+
type CreateCommentResponse = CreateCommentResponses[keyof CreateCommentResponses];
|
|
4885
|
+
type DeleteCommentData = {
|
|
4886
|
+
body?: never;
|
|
4887
|
+
path: {
|
|
4888
|
+
communityId: string;
|
|
4889
|
+
postId: string;
|
|
4890
|
+
commentId: string;
|
|
4891
|
+
};
|
|
4892
|
+
query?: never;
|
|
4893
|
+
url: '/communities/{communityId}/posts/{postId}/comments/{commentId}';
|
|
4894
|
+
};
|
|
4895
|
+
type DeleteCommentErrors = {
|
|
4896
|
+
/**
|
|
4897
|
+
* Access token is not set or invalid.
|
|
4898
|
+
*/
|
|
4899
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4900
|
+
/**
|
|
4901
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4902
|
+
*/
|
|
4903
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4904
|
+
/**
|
|
4905
|
+
* The requested resource was not found.
|
|
4906
|
+
*/
|
|
4907
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4908
|
+
/**
|
|
4909
|
+
* The server encountered an unexpected error
|
|
4910
|
+
*/
|
|
4911
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4912
|
+
};
|
|
4913
|
+
type DeleteCommentError = DeleteCommentErrors[keyof DeleteCommentErrors];
|
|
4914
|
+
type DeleteCommentResponses = {
|
|
4915
|
+
/**
|
|
4916
|
+
* Comment deleted
|
|
4917
|
+
*/
|
|
4918
|
+
204: void;
|
|
4919
|
+
};
|
|
4920
|
+
type DeleteCommentResponse = DeleteCommentResponses[keyof DeleteCommentResponses];
|
|
4921
|
+
type MarkCommentReadData = {
|
|
4922
|
+
body: PatchCommentRequest;
|
|
4923
|
+
path: {
|
|
4924
|
+
communityId: string;
|
|
4925
|
+
postId: string;
|
|
4926
|
+
commentId: string;
|
|
4927
|
+
};
|
|
4928
|
+
query?: never;
|
|
4929
|
+
url: '/communities/{communityId}/posts/{postId}/comments/{commentId}';
|
|
4930
|
+
};
|
|
4931
|
+
type MarkCommentReadErrors = {
|
|
4932
|
+
/**
|
|
4933
|
+
* Access token is not set or invalid.
|
|
4934
|
+
*/
|
|
4935
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4936
|
+
/**
|
|
4937
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4938
|
+
*/
|
|
4939
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4940
|
+
/**
|
|
4941
|
+
* The requested resource was not found.
|
|
4942
|
+
*/
|
|
4943
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4944
|
+
/**
|
|
4945
|
+
* The server encountered an unexpected error
|
|
4946
|
+
*/
|
|
4947
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4948
|
+
};
|
|
4949
|
+
type MarkCommentReadError = MarkCommentReadErrors[keyof MarkCommentReadErrors];
|
|
4950
|
+
type MarkCommentReadResponses = {
|
|
4951
|
+
/**
|
|
4952
|
+
* Comment read
|
|
4953
|
+
*/
|
|
4954
|
+
200: Comment;
|
|
4955
|
+
};
|
|
4956
|
+
type MarkCommentReadResponse = MarkCommentReadResponses[keyof MarkCommentReadResponses];
|
|
4957
|
+
type ListFacilityOffersData = {
|
|
4958
|
+
body?: never;
|
|
4959
|
+
path: {
|
|
4960
|
+
facility_id: string;
|
|
4961
|
+
};
|
|
4962
|
+
query?: {
|
|
4963
|
+
/**
|
|
4964
|
+
* Cursor for pagination. An opaque value to request the next page. Should not be set for the first call to the resource. Subsequent should use the value from `meta.next_cursor` in the response, until `meta.more_results` is false.
|
|
4965
|
+
*
|
|
4966
|
+
*/
|
|
4967
|
+
cursor?: string;
|
|
4968
|
+
/**
|
|
4969
|
+
* Maximum number of items to return per page.
|
|
4970
|
+
*/
|
|
4971
|
+
limit?: number;
|
|
4972
|
+
};
|
|
4973
|
+
url: '/facilities/{facility_id}/offers';
|
|
4974
|
+
};
|
|
4975
|
+
type ListFacilityOffersErrors = {
|
|
4976
|
+
/**
|
|
4977
|
+
* Access token is not set or invalid.
|
|
4978
|
+
*/
|
|
4979
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4980
|
+
/**
|
|
4981
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4982
|
+
*/
|
|
4983
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4984
|
+
/**
|
|
4985
|
+
* The server encountered an unexpected error
|
|
4986
|
+
*/
|
|
4987
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4988
|
+
/**
|
|
4989
|
+
* The requested operation is not implemented.
|
|
4990
|
+
*/
|
|
4991
|
+
501: PkgOpenapiSharedProblemDetails;
|
|
4992
|
+
};
|
|
4993
|
+
type ListFacilityOffersError = ListFacilityOffersErrors[keyof ListFacilityOffersErrors];
|
|
4994
|
+
type ListFacilityOffersResponses = {
|
|
4995
|
+
/**
|
|
4996
|
+
* OK
|
|
4997
|
+
*/
|
|
4998
|
+
200: FacilityOfferList;
|
|
4999
|
+
};
|
|
5000
|
+
type ListFacilityOffersResponse = ListFacilityOffersResponses[keyof ListFacilityOffersResponses];
|
|
5001
|
+
type CreateFacilityOfferOrderData = {
|
|
5002
|
+
body?: never;
|
|
5003
|
+
path: {
|
|
5004
|
+
facility_id: string;
|
|
5005
|
+
offer_id: string;
|
|
5006
|
+
};
|
|
5007
|
+
query?: never;
|
|
5008
|
+
url: '/facilities/{facility_id}/offers/{offer_id}';
|
|
5009
|
+
};
|
|
5010
|
+
type CreateFacilityOfferOrderErrors = {
|
|
5011
|
+
/**
|
|
5012
|
+
* Access token is not set or invalid.
|
|
5013
|
+
*/
|
|
5014
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5015
|
+
/**
|
|
5016
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
5017
|
+
*/
|
|
5018
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
5019
|
+
/**
|
|
5020
|
+
* The requested resource was not found.
|
|
5021
|
+
*/
|
|
5022
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5023
|
+
/**
|
|
5024
|
+
* The server encountered an unexpected error
|
|
5025
|
+
*/
|
|
5026
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5027
|
+
/**
|
|
5028
|
+
* The requested operation is not implemented.
|
|
5029
|
+
*/
|
|
5030
|
+
501: PkgOpenapiSharedProblemDetails;
|
|
5031
|
+
};
|
|
5032
|
+
type CreateFacilityOfferOrderError = CreateFacilityOfferOrderErrors[keyof CreateFacilityOfferOrderErrors];
|
|
5033
|
+
type CreateFacilityOfferOrderResponses = {
|
|
5034
|
+
/**
|
|
5035
|
+
* OK
|
|
5036
|
+
*/
|
|
5037
|
+
200: FacilityOfferOrder;
|
|
5038
|
+
};
|
|
5039
|
+
type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
|
|
5040
|
+
type ListMatchesData = {
|
|
5041
|
+
body?: never;
|
|
5042
|
+
path?: never;
|
|
5043
|
+
query: {
|
|
5044
|
+
/**
|
|
5045
|
+
* Start of date range (ISO 8601 UTC)
|
|
5046
|
+
*/
|
|
5047
|
+
startDateTime: string;
|
|
5048
|
+
/**
|
|
5049
|
+
* End of date range (ISO 8601 UTC)
|
|
5050
|
+
*/
|
|
5051
|
+
endDateTime: string;
|
|
5052
|
+
/**
|
|
5053
|
+
* Filter by facility IDs
|
|
5054
|
+
*/
|
|
5055
|
+
facilityIds?: Array<number>;
|
|
5056
|
+
/**
|
|
5057
|
+
* Filter by sport IDs
|
|
5058
|
+
*/
|
|
5059
|
+
sportIds?: Array<number>;
|
|
5060
|
+
/**
|
|
5061
|
+
* Minimum number of available spots
|
|
5062
|
+
*/
|
|
5063
|
+
availableSpots?: number;
|
|
5064
|
+
/**
|
|
5065
|
+
* Number of items to skip before returning the results.
|
|
5066
|
+
*/
|
|
5067
|
+
offset?: number;
|
|
5068
|
+
/**
|
|
5069
|
+
* Maximum number of items to return.
|
|
5070
|
+
*/
|
|
5071
|
+
limit?: number;
|
|
5072
|
+
};
|
|
5073
|
+
url: '/matches';
|
|
5074
|
+
};
|
|
5075
|
+
type ListMatchesErrors = {
|
|
5076
|
+
/**
|
|
5077
|
+
* The request was malformed or could not be processed.
|
|
5078
|
+
*/
|
|
5079
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
5080
|
+
/**
|
|
5081
|
+
* Access token is not set or invalid.
|
|
5082
|
+
*/
|
|
5083
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5084
|
+
/**
|
|
5085
|
+
* The server encountered an unexpected error
|
|
5086
|
+
*/
|
|
5087
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5088
|
+
};
|
|
5089
|
+
type ListMatchesError = ListMatchesErrors[keyof ListMatchesErrors];
|
|
5090
|
+
type ListMatchesResponses = {
|
|
5091
|
+
/**
|
|
5092
|
+
* OK
|
|
5093
|
+
*/
|
|
5094
|
+
200: MatchList;
|
|
5095
|
+
};
|
|
5096
|
+
type ListMatchesResponse = ListMatchesResponses[keyof ListMatchesResponses];
|
|
5097
|
+
type GetMatchData = {
|
|
5098
|
+
body?: never;
|
|
5099
|
+
path: {
|
|
5100
|
+
matchId: string;
|
|
5101
|
+
};
|
|
5102
|
+
query?: never;
|
|
5103
|
+
url: '/matches/{matchId}';
|
|
5104
|
+
};
|
|
5105
|
+
type GetMatchErrors = {
|
|
5106
|
+
/**
|
|
5107
|
+
* Access token is not set or invalid.
|
|
5108
|
+
*/
|
|
5109
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5110
|
+
/**
|
|
5111
|
+
* The requested resource was not found.
|
|
5112
|
+
*/
|
|
5113
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5114
|
+
/**
|
|
5115
|
+
* The server encountered an unexpected error
|
|
5116
|
+
*/
|
|
5117
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5118
|
+
};
|
|
5119
|
+
type GetMatchError = GetMatchErrors[keyof GetMatchErrors];
|
|
5120
|
+
type GetMatchResponses = {
|
|
5121
|
+
/**
|
|
5122
|
+
* OK
|
|
5123
|
+
*/
|
|
5124
|
+
200: MatchDetail;
|
|
5125
|
+
};
|
|
5126
|
+
type GetMatchResponse = GetMatchResponses[keyof GetMatchResponses];
|
|
5127
|
+
type CreateMatchParticipationData = {
|
|
5128
|
+
body: CreateMatchParticipationRequest;
|
|
5129
|
+
path: {
|
|
5130
|
+
matchId: string;
|
|
5131
|
+
};
|
|
5132
|
+
query?: never;
|
|
5133
|
+
url: '/matches/{matchId}/participations';
|
|
5134
|
+
};
|
|
5135
|
+
type CreateMatchParticipationErrors = {
|
|
5136
|
+
/**
|
|
5137
|
+
* The request was malformed or could not be processed.
|
|
5138
|
+
*/
|
|
5139
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
5140
|
+
/**
|
|
5141
|
+
* Access token is not set or invalid.
|
|
5142
|
+
*/
|
|
5143
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5144
|
+
/**
|
|
5145
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
5146
|
+
*/
|
|
5147
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
5148
|
+
/**
|
|
5149
|
+
* The requested resource was not found.
|
|
5150
|
+
*/
|
|
5151
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5152
|
+
/**
|
|
5153
|
+
* The resource being created is found to already exist on the server.
|
|
5154
|
+
*/
|
|
5155
|
+
409: PkgOpenapiSharedProblemDetails;
|
|
5156
|
+
/**
|
|
5157
|
+
* The server encountered an unexpected error
|
|
5158
|
+
*/
|
|
5159
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5160
|
+
};
|
|
5161
|
+
type CreateMatchParticipationError = CreateMatchParticipationErrors[keyof CreateMatchParticipationErrors];
|
|
5162
|
+
type CreateMatchParticipationResponses = {
|
|
5163
|
+
/**
|
|
5164
|
+
* Participation created. Returns payment details for the order.
|
|
5165
|
+
*/
|
|
5166
|
+
200: PaymentDetails;
|
|
5167
|
+
};
|
|
5168
|
+
type CreateMatchParticipationResponse = CreateMatchParticipationResponses[keyof CreateMatchParticipationResponses];
|
|
5169
|
+
type DeleteMatchParticipationData = {
|
|
5170
|
+
body?: never;
|
|
5171
|
+
path: {
|
|
5172
|
+
matchId: string;
|
|
5173
|
+
userId: string;
|
|
5174
|
+
};
|
|
5175
|
+
query?: never;
|
|
5176
|
+
url: '/matches/{matchId}/participations/{userId}';
|
|
5177
|
+
};
|
|
5178
|
+
type DeleteMatchParticipationErrors = {
|
|
5179
|
+
/**
|
|
5180
|
+
* The request was malformed or could not be processed.
|
|
5181
|
+
*/
|
|
5182
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
5183
|
+
/**
|
|
5184
|
+
* Access token is not set or invalid.
|
|
5185
|
+
*/
|
|
5186
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5187
|
+
/**
|
|
5188
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
5189
|
+
*/
|
|
5190
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
5191
|
+
/**
|
|
5192
|
+
* The requested resource was not found.
|
|
5193
|
+
*/
|
|
5194
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5195
|
+
/**
|
|
5196
|
+
* The server encountered an unexpected error
|
|
5197
|
+
*/
|
|
5198
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5199
|
+
};
|
|
5200
|
+
type DeleteMatchParticipationError = DeleteMatchParticipationErrors[keyof DeleteMatchParticipationErrors];
|
|
5201
|
+
type DeleteMatchParticipationResponses = {
|
|
5202
|
+
/**
|
|
5203
|
+
* Participation removed. Refund (if any) issued by webapp.
|
|
5204
|
+
*/
|
|
5205
|
+
204: void;
|
|
5206
|
+
};
|
|
5207
|
+
type DeleteMatchParticipationResponse = DeleteMatchParticipationResponses[keyof DeleteMatchParticipationResponses];
|
|
5208
|
+
type GetMatchUserPriceData = {
|
|
5209
|
+
body?: never;
|
|
5210
|
+
path: {
|
|
5211
|
+
matchId: string;
|
|
5212
|
+
userId: string;
|
|
5213
|
+
};
|
|
5214
|
+
query?: {
|
|
5215
|
+
promoCode?: string;
|
|
5216
|
+
};
|
|
5217
|
+
url: '/matches/{matchId}/prices/{userId}';
|
|
5218
|
+
};
|
|
5219
|
+
type GetMatchUserPriceErrors = {
|
|
5220
|
+
/**
|
|
5221
|
+
* Access token is not set or invalid.
|
|
5222
|
+
*/
|
|
5223
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5224
|
+
/**
|
|
5225
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
5226
|
+
*/
|
|
5227
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
5228
|
+
/**
|
|
5229
|
+
* The requested resource was not found.
|
|
5230
|
+
*/
|
|
5231
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5232
|
+
/**
|
|
5233
|
+
* The server encountered an unexpected error
|
|
5234
|
+
*/
|
|
5235
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5236
|
+
};
|
|
5237
|
+
type GetMatchUserPriceError = GetMatchUserPriceErrors[keyof GetMatchUserPriceErrors];
|
|
5238
|
+
type GetMatchUserPriceResponses = {
|
|
5239
|
+
/**
|
|
5240
|
+
* OK
|
|
5241
|
+
*/
|
|
5242
|
+
200: MatchUserPrice;
|
|
5243
|
+
};
|
|
5244
|
+
type GetMatchUserPriceResponse = GetMatchUserPriceResponses[keyof GetMatchUserPriceResponses];
|
|
5245
|
+
type GetNotificationsData = {
|
|
5246
|
+
body?: never;
|
|
5247
|
+
path?: never;
|
|
5248
|
+
query?: {
|
|
5249
|
+
filters?: NotificationsFilter;
|
|
5250
|
+
/**
|
|
5251
|
+
* Get a summary of read and unread notifications (returns an empty list if true)
|
|
5252
|
+
*/
|
|
5253
|
+
only_summary?: boolean;
|
|
5254
|
+
/**
|
|
5255
|
+
* Cursor for pagination. An opaque value to request the next page. Should not be set for the first call to the resource. Subsequent should use the value from `meta.next_cursor` in the response, until `meta.more_results` is false.
|
|
5256
|
+
*
|
|
5257
|
+
*/
|
|
5258
|
+
cursor?: string;
|
|
5259
|
+
/**
|
|
5260
|
+
* Maximum number of items to return per page.
|
|
5261
|
+
*/
|
|
5262
|
+
limit?: number;
|
|
5263
|
+
};
|
|
5264
|
+
url: '/notifications';
|
|
5265
|
+
};
|
|
5266
|
+
type GetNotificationsErrors = {
|
|
5267
|
+
/**
|
|
5268
|
+
* The request was malformed or could not be processed.
|
|
5269
|
+
*/
|
|
5270
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
5271
|
+
/**
|
|
5272
|
+
* Access token is not set or invalid.
|
|
5273
|
+
*/
|
|
5274
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5275
|
+
/**
|
|
5276
|
+
* The server encountered an unexpected error
|
|
5277
|
+
*/
|
|
5278
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5279
|
+
/**
|
|
5280
|
+
* The requested operation is not implemented.
|
|
5281
|
+
*/
|
|
5282
|
+
501: PkgOpenapiSharedProblemDetails;
|
|
5283
|
+
};
|
|
5284
|
+
type GetNotificationsError = GetNotificationsErrors[keyof GetNotificationsErrors];
|
|
5285
|
+
type GetNotificationsResponses = {
|
|
5286
|
+
/**
|
|
5287
|
+
* OK
|
|
5288
|
+
*/
|
|
5289
|
+
200: NotificationsPaginatedResponse;
|
|
5290
|
+
};
|
|
5291
|
+
type GetNotificationsResponse = GetNotificationsResponses[keyof GetNotificationsResponses];
|
|
5292
|
+
type UpdateAllNotificationsData = {
|
|
5293
|
+
body: NotificationRequestBody;
|
|
5294
|
+
path?: never;
|
|
5295
|
+
query?: {
|
|
5296
|
+
filters?: NotificationsFilter;
|
|
5297
|
+
};
|
|
5298
|
+
url: '/notifications';
|
|
5299
|
+
};
|
|
5300
|
+
type UpdateAllNotificationsErrors = {
|
|
5301
|
+
/**
|
|
5302
|
+
* The request was malformed or could not be processed.
|
|
5303
|
+
*/
|
|
5304
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
5305
|
+
/**
|
|
5306
|
+
* Access token is not set or invalid.
|
|
5307
|
+
*/
|
|
5308
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5309
|
+
/**
|
|
5310
|
+
* The server encountered an unexpected error
|
|
5311
|
+
*/
|
|
5312
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5313
|
+
/**
|
|
5314
|
+
* The requested operation is not implemented.
|
|
5315
|
+
*/
|
|
5316
|
+
501: PkgOpenapiSharedProblemDetails;
|
|
5317
|
+
};
|
|
5318
|
+
type UpdateAllNotificationsError = UpdateAllNotificationsErrors[keyof UpdateAllNotificationsErrors];
|
|
5319
|
+
type UpdateAllNotificationsResponses = {
|
|
5320
|
+
/**
|
|
5321
|
+
* OK
|
|
5322
|
+
*/
|
|
5323
|
+
200: NotificationsPaginatedResponse;
|
|
5324
|
+
};
|
|
5325
|
+
type UpdateAllNotificationsResponse = UpdateAllNotificationsResponses[keyof UpdateAllNotificationsResponses];
|
|
5326
|
+
type GetNotificationsPreferencesData = {
|
|
5327
|
+
body?: never;
|
|
5328
|
+
path?: never;
|
|
5329
|
+
query?: {
|
|
5330
|
+
topic?: Topic;
|
|
5331
|
+
source?: Source;
|
|
5332
|
+
source_ids?: Array<string>;
|
|
5333
|
+
};
|
|
5334
|
+
url: '/notifications/preferences';
|
|
5335
|
+
};
|
|
5336
|
+
type GetNotificationsPreferencesErrors = {
|
|
5337
|
+
/**
|
|
5338
|
+
* The request was malformed or could not be processed.
|
|
5339
|
+
*/
|
|
5340
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
5341
|
+
/**
|
|
5342
|
+
* Access token is not set or invalid.
|
|
5343
|
+
*/
|
|
5344
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5345
|
+
/**
|
|
5346
|
+
* The server encountered an unexpected error
|
|
5347
|
+
*/
|
|
5348
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5349
|
+
/**
|
|
5350
|
+
* The requested operation is not implemented.
|
|
5351
|
+
*/
|
|
5352
|
+
501: PkgOpenapiSharedProblemDetails;
|
|
5353
|
+
};
|
|
5354
|
+
type GetNotificationsPreferencesError = GetNotificationsPreferencesErrors[keyof GetNotificationsPreferencesErrors];
|
|
5355
|
+
type GetNotificationsPreferencesResponses = {
|
|
5356
|
+
/**
|
|
4791
5357
|
* OK
|
|
4792
5358
|
*/
|
|
4793
5359
|
200: PreferencesResponse;
|
|
@@ -4797,7 +5363,7 @@ type UpdateNotificationsPreferencesData = {
|
|
|
4797
5363
|
body: UpdatePreferencesRequestBody;
|
|
4798
5364
|
path?: never;
|
|
4799
5365
|
query: {
|
|
4800
|
-
topic: Topic
|
|
5366
|
+
topic: Array<Topic>;
|
|
4801
5367
|
source?: Source;
|
|
4802
5368
|
source_id?: string;
|
|
4803
5369
|
};
|
|
@@ -5523,14 +6089,15 @@ declare const client: Client;
|
|
|
5523
6089
|
declare const AuthorSchema: {
|
|
5524
6090
|
readonly properties: {
|
|
5525
6091
|
readonly type: {
|
|
5526
|
-
readonly
|
|
6092
|
+
readonly description: "ADMIN — the post or comment was authored by a facility admin.\nMEMBER — the post or comment was authored by a community member.\nUNKNOWN — the community member who authored the post or comment\nhas been deleted; only the type is set, user is omitted.\n";
|
|
6093
|
+
readonly enum: readonly ["ADMIN", "MEMBER", "UNKNOWN"];
|
|
5527
6094
|
readonly type: "string";
|
|
5528
6095
|
};
|
|
5529
6096
|
readonly user: {
|
|
5530
6097
|
readonly $ref: "#/components/schemas/Member";
|
|
5531
6098
|
};
|
|
5532
6099
|
};
|
|
5533
|
-
readonly required: readonly ["type"
|
|
6100
|
+
readonly required: readonly ["type"];
|
|
5534
6101
|
readonly type: "object";
|
|
5535
6102
|
};
|
|
5536
6103
|
declare const ChannelsSchema: {
|
|
@@ -5647,6 +6214,34 @@ declare const CommunityListResponseSchema: {
|
|
|
5647
6214
|
readonly required: readonly ["items", "meta"];
|
|
5648
6215
|
readonly type: "object";
|
|
5649
6216
|
};
|
|
6217
|
+
declare const CommunityPayloadSchema: {
|
|
6218
|
+
readonly additionalProperties: false;
|
|
6219
|
+
readonly properties: {
|
|
6220
|
+
readonly comment_id: {
|
|
6221
|
+
readonly format: "uuid";
|
|
6222
|
+
readonly type: "string";
|
|
6223
|
+
};
|
|
6224
|
+
readonly community_id: {
|
|
6225
|
+
readonly format: "uuid";
|
|
6226
|
+
readonly type: "string";
|
|
6227
|
+
};
|
|
6228
|
+
readonly description: {
|
|
6229
|
+
readonly type: "string";
|
|
6230
|
+
};
|
|
6231
|
+
readonly post_id: {
|
|
6232
|
+
readonly format: "uuid";
|
|
6233
|
+
readonly type: "string";
|
|
6234
|
+
};
|
|
6235
|
+
readonly title: {
|
|
6236
|
+
readonly type: "string";
|
|
6237
|
+
};
|
|
6238
|
+
readonly topic: {
|
|
6239
|
+
readonly $ref: "#/components/schemas/Topic";
|
|
6240
|
+
};
|
|
6241
|
+
};
|
|
6242
|
+
readonly required: readonly ["topic", "title", "description"];
|
|
6243
|
+
readonly type: "object";
|
|
6244
|
+
};
|
|
5650
6245
|
declare const CreateCommentRequestSchema: {
|
|
5651
6246
|
readonly properties: {
|
|
5652
6247
|
readonly content: {
|
|
@@ -5784,6 +6379,7 @@ declare const FacilityListSchema: {
|
|
|
5784
6379
|
readonly type: "object";
|
|
5785
6380
|
};
|
|
5786
6381
|
declare const FacilityMessagePayloadSchema: {
|
|
6382
|
+
readonly additionalProperties: false;
|
|
5787
6383
|
readonly properties: {
|
|
5788
6384
|
readonly description: {
|
|
5789
6385
|
readonly type: "string";
|
|
@@ -6521,6 +7117,8 @@ declare const NotificationSchema: {
|
|
|
6521
7117
|
declare const NotificationPayloadSchema: {
|
|
6522
7118
|
readonly oneOf: readonly [{
|
|
6523
7119
|
readonly $ref: "#/components/schemas/FacilityMessagePayload";
|
|
7120
|
+
}, {
|
|
7121
|
+
readonly $ref: "#/components/schemas/CommunityPayload";
|
|
6524
7122
|
}];
|
|
6525
7123
|
};
|
|
6526
7124
|
declare const NotificationRequestBodySchema: {
|
|
@@ -6987,7 +7585,7 @@ declare const RegisterDeviceRequestSchema: {
|
|
|
6987
7585
|
readonly type: "object";
|
|
6988
7586
|
};
|
|
6989
7587
|
declare const SourceSchema: {
|
|
6990
|
-
readonly enum: readonly ["FACILITY"];
|
|
7588
|
+
readonly enum: readonly ["FACILITY", "COMMUNITY"];
|
|
6991
7589
|
readonly type: "string";
|
|
6992
7590
|
};
|
|
6993
7591
|
declare const SportAuthoritiesResponseSchema: {
|
|
@@ -7142,7 +7740,7 @@ declare const SportProfilesResponseSchema: {
|
|
|
7142
7740
|
readonly type: "object";
|
|
7143
7741
|
};
|
|
7144
7742
|
declare const TopicSchema: {
|
|
7145
|
-
readonly enum: readonly ["FACILITY_MESSAGE"];
|
|
7743
|
+
readonly enum: readonly ["FACILITY_MESSAGE", "COMMUNITY_USER_INVITED", "COMMUNITY_USER_REMOVED", "COMMUNITY_POST_CREATED", "COMMUNITY_COMMENT_CREATED", "COMMUNITY_BLOCKED_USER_JOINED"];
|
|
7146
7744
|
readonly type: "string";
|
|
7147
7745
|
};
|
|
7148
7746
|
declare const UpdatePreferencesRequestBodySchema: {
|
|
@@ -7412,6 +8010,7 @@ declare const schemas_gen_CommentListResponseSchema: typeof CommentListResponseS
|
|
|
7412
8010
|
declare const schemas_gen_CommentSchema: typeof CommentSchema;
|
|
7413
8011
|
declare const schemas_gen_CommunityItemSchema: typeof CommunityItemSchema;
|
|
7414
8012
|
declare const schemas_gen_CommunityListResponseSchema: typeof CommunityListResponseSchema;
|
|
8013
|
+
declare const schemas_gen_CommunityPayloadSchema: typeof CommunityPayloadSchema;
|
|
7415
8014
|
declare const schemas_gen_CreateCommentRequestSchema: typeof CreateCommentRequestSchema;
|
|
7416
8015
|
declare const schemas_gen_CreateMatchParticipationRequestSchema: typeof CreateMatchParticipationRequestSchema;
|
|
7417
8016
|
declare const schemas_gen_CreatePostRequestSchema: typeof CreatePostRequestSchema;
|
|
@@ -7501,7 +8100,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
7501
8100
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
7502
8101
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
7503
8102
|
declare namespace schemas_gen {
|
|
7504
|
-
export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen_ExternalServiceSchema as ExternalServiceSchema, schemas_gen_FacilityListSchema as FacilityListSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilitySchema as FacilitySchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, schemas_gen_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen_MatchCourtSchema as MatchCourtSchema, schemas_gen_MatchDetailSchema as MatchDetailSchema, schemas_gen_MatchEventSchema as MatchEventSchema, schemas_gen_MatchListSchema as MatchListSchema, schemas_gen_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen_MatchOccasionSchema as MatchOccasionSchema, schemas_gen_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen_MatchSchema as MatchSchema, schemas_gen_MatchStatusSchema as MatchStatusSchema, schemas_gen_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen_MemberListResponseSchema as MemberListResponseSchema, schemas_gen_MemberRelationSchema as MemberRelationSchema, schemas_gen_MemberSchema as MemberSchema, schemas_gen_MembershipStatusSchema as MembershipStatusSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PaymentCommandSchema as PaymentCommandSchema, schemas_gen_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RefundPolicySchema as RefundPolicySchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
|
|
8103
|
+
export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CommunityPayloadSchema as CommunityPayloadSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen_ExternalServiceSchema as ExternalServiceSchema, schemas_gen_FacilityListSchema as FacilityListSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilitySchema as FacilitySchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, schemas_gen_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen_MatchCourtSchema as MatchCourtSchema, schemas_gen_MatchDetailSchema as MatchDetailSchema, schemas_gen_MatchEventSchema as MatchEventSchema, schemas_gen_MatchListSchema as MatchListSchema, schemas_gen_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen_MatchOccasionSchema as MatchOccasionSchema, schemas_gen_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen_MatchSchema as MatchSchema, schemas_gen_MatchStatusSchema as MatchStatusSchema, schemas_gen_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen_MemberListResponseSchema as MemberListResponseSchema, schemas_gen_MemberRelationSchema as MemberRelationSchema, schemas_gen_MemberSchema as MemberSchema, schemas_gen_MembershipStatusSchema as MembershipStatusSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PaymentCommandSchema as PaymentCommandSchema, schemas_gen_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RefundPolicySchema as RefundPolicySchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
|
|
7505
8104
|
}
|
|
7506
8105
|
|
|
7507
8106
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -7517,6 +8116,90 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
|
|
|
7517
8116
|
*/
|
|
7518
8117
|
meta?: Record<string, unknown>;
|
|
7519
8118
|
};
|
|
8119
|
+
/**
|
|
8120
|
+
* List communities the player belongs to
|
|
8121
|
+
*
|
|
8122
|
+
* Returns communities where the authenticated player has an active, invited or left membership.
|
|
8123
|
+
*/
|
|
8124
|
+
declare const listCommunities: <ThrowOnError extends boolean = false>(options?: Options<ListCommunitiesData, ThrowOnError>) => RequestResult<ListCommunitiesResponses, ListCommunitiesErrors, ThrowOnError, "fields">;
|
|
8125
|
+
/**
|
|
8126
|
+
* Get community details
|
|
8127
|
+
*
|
|
8128
|
+
* Returns details of a community the authenticated player can access.
|
|
8129
|
+
*/
|
|
8130
|
+
declare const getCommunity: <ThrowOnError extends boolean = false>(options: Options<GetCommunityData, ThrowOnError>) => RequestResult<GetCommunityResponses, GetCommunityErrors, ThrowOnError, "fields">;
|
|
8131
|
+
/**
|
|
8132
|
+
* List community members
|
|
8133
|
+
*
|
|
8134
|
+
* Returns the members of a community, optionally filtered by their relation to the requesting user.
|
|
8135
|
+
*/
|
|
8136
|
+
declare const listMembers: <ThrowOnError extends boolean = false>(options: Options<ListMembersData, ThrowOnError>) => RequestResult<ListMembersResponses, ListMembersErrors, ThrowOnError, "fields">;
|
|
8137
|
+
/**
|
|
8138
|
+
* Leave community
|
|
8139
|
+
*
|
|
8140
|
+
* Leave a community.
|
|
8141
|
+
*/
|
|
8142
|
+
declare const leaveCommunity: <ThrowOnError extends boolean = false>(options: Options<LeaveCommunityData, ThrowOnError>) => RequestResult<LeaveCommunityResponses, LeaveCommunityErrors, ThrowOnError, "fields">;
|
|
8143
|
+
/**
|
|
8144
|
+
* Accept community invitation
|
|
8145
|
+
*
|
|
8146
|
+
* Accept an invitation to join a community.
|
|
8147
|
+
*/
|
|
8148
|
+
declare const acceptInvitation: <ThrowOnError extends boolean = false>(options: Options<AcceptInvitationData, ThrowOnError>) => RequestResult<AcceptInvitationResponses, AcceptInvitationErrors, ThrowOnError, "fields">;
|
|
8149
|
+
/**
|
|
8150
|
+
* List community posts
|
|
8151
|
+
*
|
|
8152
|
+
* Returns posts in a community, optionally filtered by link type.
|
|
8153
|
+
*/
|
|
8154
|
+
declare const listPosts: <ThrowOnError extends boolean = false>(options: Options<ListPostsData, ThrowOnError>) => RequestResult<ListPostsResponses, ListPostsErrors, ThrowOnError, "fields">;
|
|
8155
|
+
/**
|
|
8156
|
+
* Create a post in the community
|
|
8157
|
+
*
|
|
8158
|
+
* Creates a new post in a community on behalf of the authenticated player.
|
|
8159
|
+
*/
|
|
8160
|
+
declare const createPost: <ThrowOnError extends boolean = false>(options: Options<CreatePostData, ThrowOnError>) => RequestResult<CreatePostResponses, CreatePostErrors, ThrowOnError, "fields">;
|
|
8161
|
+
/**
|
|
8162
|
+
* Delete a post
|
|
8163
|
+
*
|
|
8164
|
+
* Deletes a post. Only the post author can delete their own posts.
|
|
8165
|
+
*/
|
|
8166
|
+
declare const deletePost: <ThrowOnError extends boolean = false>(options: Options<DeletePostData, ThrowOnError>) => RequestResult<DeletePostResponses, DeletePostErrors, ThrowOnError, "fields">;
|
|
8167
|
+
/**
|
|
8168
|
+
* Get a single post
|
|
8169
|
+
*
|
|
8170
|
+
* Returns details of a single post in a community.
|
|
8171
|
+
*/
|
|
8172
|
+
declare const getPost: <ThrowOnError extends boolean = false>(options: Options<GetPostData, ThrowOnError>) => RequestResult<GetPostResponses, GetPostErrors, ThrowOnError, "fields">;
|
|
8173
|
+
/**
|
|
8174
|
+
* Mark a post as read
|
|
8175
|
+
*
|
|
8176
|
+
* Marks a post as read by the authenticated player.
|
|
8177
|
+
*/
|
|
8178
|
+
declare const markPostRead: <ThrowOnError extends boolean = false>(options: Options<MarkPostReadData, ThrowOnError>) => RequestResult<MarkPostReadResponses, MarkPostReadErrors, ThrowOnError, "fields">;
|
|
8179
|
+
/**
|
|
8180
|
+
* List comments on a post
|
|
8181
|
+
*
|
|
8182
|
+
* Returns comments on a post, optionally filtered by creation timestamp.
|
|
8183
|
+
*/
|
|
8184
|
+
declare const listComments: <ThrowOnError extends boolean = false>(options: Options<ListCommentsData, ThrowOnError>) => RequestResult<ListCommentsResponses, ListCommentsErrors, ThrowOnError, "fields">;
|
|
8185
|
+
/**
|
|
8186
|
+
* Create a comment on a post
|
|
8187
|
+
*
|
|
8188
|
+
* Creates a new comment on a post on behalf of the authenticated player.
|
|
8189
|
+
*/
|
|
8190
|
+
declare const createComment: <ThrowOnError extends boolean = false>(options: Options<CreateCommentData, ThrowOnError>) => RequestResult<CreateCommentResponses, CreateCommentErrors, ThrowOnError, "fields">;
|
|
8191
|
+
/**
|
|
8192
|
+
* Delete a comment
|
|
8193
|
+
*
|
|
8194
|
+
* Deletes a comment. Only the comment author can delete their own comments.
|
|
8195
|
+
*/
|
|
8196
|
+
declare const deleteComment: <ThrowOnError extends boolean = false>(options: Options<DeleteCommentData, ThrowOnError>) => RequestResult<DeleteCommentResponses, DeleteCommentErrors, ThrowOnError, "fields">;
|
|
8197
|
+
/**
|
|
8198
|
+
* Mark a comment as read
|
|
8199
|
+
*
|
|
8200
|
+
* Marks a comment as read by the authenticated player.
|
|
8201
|
+
*/
|
|
8202
|
+
declare const markCommentRead: <ThrowOnError extends boolean = false>(options: Options<MarkCommentReadData, ThrowOnError>) => RequestResult<MarkCommentReadResponses, MarkCommentReadErrors, ThrowOnError, "fields">;
|
|
7520
8203
|
/**
|
|
7521
8204
|
* List all offers for a facility
|
|
7522
8205
|
*
|
|
@@ -7691,6 +8374,338 @@ type QueryKey<TOptions extends Options> = [
|
|
|
7691
8374
|
tags?: ReadonlyArray<string>;
|
|
7692
8375
|
}
|
|
7693
8376
|
];
|
|
8377
|
+
declare const listCommunitiesQueryKey: (options?: Options<ListCommunitiesData>) => [Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8378
|
+
_id: string;
|
|
8379
|
+
_infinite?: boolean;
|
|
8380
|
+
tags?: ReadonlyArray<string>;
|
|
8381
|
+
}];
|
|
8382
|
+
/**
|
|
8383
|
+
* List communities the player belongs to
|
|
8384
|
+
*
|
|
8385
|
+
* Returns communities where the authenticated player has an active, invited or left membership.
|
|
8386
|
+
*/
|
|
8387
|
+
declare const listCommunitiesOptions: (options?: Options<ListCommunitiesData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<CommunityListResponse, PkgOpenapiSharedProblemDetails, CommunityListResponse, [Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8388
|
+
_id: string;
|
|
8389
|
+
_infinite?: boolean;
|
|
8390
|
+
tags?: ReadonlyArray<string>;
|
|
8391
|
+
}]>, "queryFn"> & {
|
|
8392
|
+
queryFn?: _tanstack_react_query.QueryFunction<CommunityListResponse, [Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8393
|
+
_id: string;
|
|
8394
|
+
_infinite?: boolean;
|
|
8395
|
+
tags?: ReadonlyArray<string>;
|
|
8396
|
+
}], never> | undefined;
|
|
8397
|
+
} & {
|
|
8398
|
+
queryKey: [Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8399
|
+
_id: string;
|
|
8400
|
+
_infinite?: boolean;
|
|
8401
|
+
tags?: ReadonlyArray<string>;
|
|
8402
|
+
}] & {
|
|
8403
|
+
[dataTagSymbol]: CommunityListResponse;
|
|
8404
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
8405
|
+
};
|
|
8406
|
+
};
|
|
8407
|
+
declare const listCommunitiesInfiniteQueryKey: (options?: Options<ListCommunitiesData>) => QueryKey<Options<ListCommunitiesData>>;
|
|
8408
|
+
/**
|
|
8409
|
+
* List communities the player belongs to
|
|
8410
|
+
*
|
|
8411
|
+
* Returns communities where the authenticated player has an active, invited or left membership.
|
|
8412
|
+
*/
|
|
8413
|
+
declare const listCommunitiesInfiniteOptions: (options?: Options<ListCommunitiesData>) => _tanstack_react_query.UseInfiniteQueryOptions<CommunityListResponse, PkgOpenapiSharedProblemDetails, InfiniteData<CommunityListResponse, unknown>, QueryKey<Options<ListCommunitiesData>>, number | Pick<Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8414
|
+
_id: string;
|
|
8415
|
+
_infinite?: boolean;
|
|
8416
|
+
tags?: ReadonlyArray<string>;
|
|
8417
|
+
}, "query" | "body" | "headers" | "path">> & {
|
|
8418
|
+
initialData: InfiniteData<CommunityListResponse, number | Pick<Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8419
|
+
_id: string;
|
|
8420
|
+
_infinite?: boolean;
|
|
8421
|
+
tags?: ReadonlyArray<string>;
|
|
8422
|
+
}, "query" | "body" | "headers" | "path">> | (() => InfiniteData<CommunityListResponse, number | Pick<Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8423
|
+
_id: string;
|
|
8424
|
+
_infinite?: boolean;
|
|
8425
|
+
tags?: ReadonlyArray<string>;
|
|
8426
|
+
}, "query" | "body" | "headers" | "path">>) | undefined;
|
|
8427
|
+
} & {
|
|
8428
|
+
queryKey: QueryKey<Options<ListCommunitiesData>> & {
|
|
8429
|
+
[dataTagSymbol]: InfiniteData<CommunityListResponse, unknown>;
|
|
8430
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
8431
|
+
};
|
|
8432
|
+
};
|
|
8433
|
+
declare const getCommunityQueryKey: (options: Options<GetCommunityData>) => [Pick<Options<GetCommunityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8434
|
+
_id: string;
|
|
8435
|
+
_infinite?: boolean;
|
|
8436
|
+
tags?: ReadonlyArray<string>;
|
|
8437
|
+
}];
|
|
8438
|
+
/**
|
|
8439
|
+
* Get community details
|
|
8440
|
+
*
|
|
8441
|
+
* Returns details of a community the authenticated player can access.
|
|
8442
|
+
*/
|
|
8443
|
+
declare const getCommunityOptions: (options: Options<GetCommunityData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<CommunityItem, PkgOpenapiSharedProblemDetails, CommunityItem, [Pick<Options<GetCommunityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8444
|
+
_id: string;
|
|
8445
|
+
_infinite?: boolean;
|
|
8446
|
+
tags?: ReadonlyArray<string>;
|
|
8447
|
+
}]>, "queryFn"> & {
|
|
8448
|
+
queryFn?: _tanstack_react_query.QueryFunction<CommunityItem, [Pick<Options<GetCommunityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8449
|
+
_id: string;
|
|
8450
|
+
_infinite?: boolean;
|
|
8451
|
+
tags?: ReadonlyArray<string>;
|
|
8452
|
+
}], never> | undefined;
|
|
8453
|
+
} & {
|
|
8454
|
+
queryKey: [Pick<Options<GetCommunityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8455
|
+
_id: string;
|
|
8456
|
+
_infinite?: boolean;
|
|
8457
|
+
tags?: ReadonlyArray<string>;
|
|
8458
|
+
}] & {
|
|
8459
|
+
[dataTagSymbol]: CommunityItem;
|
|
8460
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
8461
|
+
};
|
|
8462
|
+
};
|
|
8463
|
+
declare const listMembersQueryKey: (options: Options<ListMembersData>) => [Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8464
|
+
_id: string;
|
|
8465
|
+
_infinite?: boolean;
|
|
8466
|
+
tags?: ReadonlyArray<string>;
|
|
8467
|
+
}];
|
|
8468
|
+
/**
|
|
8469
|
+
* List community members
|
|
8470
|
+
*
|
|
8471
|
+
* Returns the members of a community, optionally filtered by their relation to the requesting user.
|
|
8472
|
+
*/
|
|
8473
|
+
declare const listMembersOptions: (options: Options<ListMembersData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<MemberListResponse, PkgOpenapiSharedProblemDetails, MemberListResponse, [Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8474
|
+
_id: string;
|
|
8475
|
+
_infinite?: boolean;
|
|
8476
|
+
tags?: ReadonlyArray<string>;
|
|
8477
|
+
}]>, "queryFn"> & {
|
|
8478
|
+
queryFn?: _tanstack_react_query.QueryFunction<MemberListResponse, [Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8479
|
+
_id: string;
|
|
8480
|
+
_infinite?: boolean;
|
|
8481
|
+
tags?: ReadonlyArray<string>;
|
|
8482
|
+
}], never> | undefined;
|
|
8483
|
+
} & {
|
|
8484
|
+
queryKey: [Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8485
|
+
_id: string;
|
|
8486
|
+
_infinite?: boolean;
|
|
8487
|
+
tags?: ReadonlyArray<string>;
|
|
8488
|
+
}] & {
|
|
8489
|
+
[dataTagSymbol]: MemberListResponse;
|
|
8490
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
8491
|
+
};
|
|
8492
|
+
};
|
|
8493
|
+
declare const listMembersInfiniteQueryKey: (options: Options<ListMembersData>) => QueryKey<Options<ListMembersData>>;
|
|
8494
|
+
/**
|
|
8495
|
+
* List community members
|
|
8496
|
+
*
|
|
8497
|
+
* Returns the members of a community, optionally filtered by their relation to the requesting user.
|
|
8498
|
+
*/
|
|
8499
|
+
declare const listMembersInfiniteOptions: (options: Options<ListMembersData>) => _tanstack_react_query.UseInfiniteQueryOptions<MemberListResponse, PkgOpenapiSharedProblemDetails, InfiniteData<MemberListResponse, unknown>, QueryKey<Options<ListMembersData>>, number | Pick<Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8500
|
+
_id: string;
|
|
8501
|
+
_infinite?: boolean;
|
|
8502
|
+
tags?: ReadonlyArray<string>;
|
|
8503
|
+
}, "query" | "body" | "headers" | "path">> & {
|
|
8504
|
+
initialData: InfiniteData<MemberListResponse, number | Pick<Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8505
|
+
_id: string;
|
|
8506
|
+
_infinite?: boolean;
|
|
8507
|
+
tags?: ReadonlyArray<string>;
|
|
8508
|
+
}, "query" | "body" | "headers" | "path">> | (() => InfiniteData<MemberListResponse, number | Pick<Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8509
|
+
_id: string;
|
|
8510
|
+
_infinite?: boolean;
|
|
8511
|
+
tags?: ReadonlyArray<string>;
|
|
8512
|
+
}, "query" | "body" | "headers" | "path">>) | undefined;
|
|
8513
|
+
} & {
|
|
8514
|
+
queryKey: QueryKey<Options<ListMembersData>> & {
|
|
8515
|
+
[dataTagSymbol]: InfiniteData<MemberListResponse, unknown>;
|
|
8516
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
8517
|
+
};
|
|
8518
|
+
};
|
|
8519
|
+
/**
|
|
8520
|
+
* Leave community
|
|
8521
|
+
*
|
|
8522
|
+
* Leave a community.
|
|
8523
|
+
*/
|
|
8524
|
+
declare const leaveCommunityMutation: (options?: Partial<Options<LeaveCommunityData>>) => UseMutationOptions<LeaveCommunityResponse, LeaveCommunityError, Options<LeaveCommunityData>>;
|
|
8525
|
+
/**
|
|
8526
|
+
* Accept community invitation
|
|
8527
|
+
*
|
|
8528
|
+
* Accept an invitation to join a community.
|
|
8529
|
+
*/
|
|
8530
|
+
declare const acceptInvitationMutation: (options?: Partial<Options<AcceptInvitationData>>) => UseMutationOptions<AcceptInvitationResponse, AcceptInvitationError, Options<AcceptInvitationData>>;
|
|
8531
|
+
declare const listPostsQueryKey: (options: Options<ListPostsData>) => [Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8532
|
+
_id: string;
|
|
8533
|
+
_infinite?: boolean;
|
|
8534
|
+
tags?: ReadonlyArray<string>;
|
|
8535
|
+
}];
|
|
8536
|
+
/**
|
|
8537
|
+
* List community posts
|
|
8538
|
+
*
|
|
8539
|
+
* Returns posts in a community, optionally filtered by link type.
|
|
8540
|
+
*/
|
|
8541
|
+
declare const listPostsOptions: (options: Options<ListPostsData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<PostListResponse, PkgOpenapiSharedProblemDetails, PostListResponse, [Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8542
|
+
_id: string;
|
|
8543
|
+
_infinite?: boolean;
|
|
8544
|
+
tags?: ReadonlyArray<string>;
|
|
8545
|
+
}]>, "queryFn"> & {
|
|
8546
|
+
queryFn?: _tanstack_react_query.QueryFunction<PostListResponse, [Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8547
|
+
_id: string;
|
|
8548
|
+
_infinite?: boolean;
|
|
8549
|
+
tags?: ReadonlyArray<string>;
|
|
8550
|
+
}], never> | undefined;
|
|
8551
|
+
} & {
|
|
8552
|
+
queryKey: [Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8553
|
+
_id: string;
|
|
8554
|
+
_infinite?: boolean;
|
|
8555
|
+
tags?: ReadonlyArray<string>;
|
|
8556
|
+
}] & {
|
|
8557
|
+
[dataTagSymbol]: PostListResponse;
|
|
8558
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
8559
|
+
};
|
|
8560
|
+
};
|
|
8561
|
+
declare const listPostsInfiniteQueryKey: (options: Options<ListPostsData>) => QueryKey<Options<ListPostsData>>;
|
|
8562
|
+
/**
|
|
8563
|
+
* List community posts
|
|
8564
|
+
*
|
|
8565
|
+
* Returns posts in a community, optionally filtered by link type.
|
|
8566
|
+
*/
|
|
8567
|
+
declare const listPostsInfiniteOptions: (options: Options<ListPostsData>) => _tanstack_react_query.UseInfiniteQueryOptions<PostListResponse, PkgOpenapiSharedProblemDetails, InfiniteData<PostListResponse, unknown>, QueryKey<Options<ListPostsData>>, number | Pick<Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8568
|
+
_id: string;
|
|
8569
|
+
_infinite?: boolean;
|
|
8570
|
+
tags?: ReadonlyArray<string>;
|
|
8571
|
+
}, "query" | "body" | "headers" | "path">> & {
|
|
8572
|
+
initialData: InfiniteData<PostListResponse, number | Pick<Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8573
|
+
_id: string;
|
|
8574
|
+
_infinite?: boolean;
|
|
8575
|
+
tags?: ReadonlyArray<string>;
|
|
8576
|
+
}, "query" | "body" | "headers" | "path">> | (() => InfiniteData<PostListResponse, number | Pick<Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8577
|
+
_id: string;
|
|
8578
|
+
_infinite?: boolean;
|
|
8579
|
+
tags?: ReadonlyArray<string>;
|
|
8580
|
+
}, "query" | "body" | "headers" | "path">>) | undefined;
|
|
8581
|
+
} & {
|
|
8582
|
+
queryKey: QueryKey<Options<ListPostsData>> & {
|
|
8583
|
+
[dataTagSymbol]: InfiniteData<PostListResponse, unknown>;
|
|
8584
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
8585
|
+
};
|
|
8586
|
+
};
|
|
8587
|
+
/**
|
|
8588
|
+
* Create a post in the community
|
|
8589
|
+
*
|
|
8590
|
+
* Creates a new post in a community on behalf of the authenticated player.
|
|
8591
|
+
*/
|
|
8592
|
+
declare const createPostMutation: (options?: Partial<Options<CreatePostData>>) => UseMutationOptions<CreatePostResponse, CreatePostError, Options<CreatePostData>>;
|
|
8593
|
+
/**
|
|
8594
|
+
* Delete a post
|
|
8595
|
+
*
|
|
8596
|
+
* Deletes a post. Only the post author can delete their own posts.
|
|
8597
|
+
*/
|
|
8598
|
+
declare const deletePostMutation: (options?: Partial<Options<DeletePostData>>) => UseMutationOptions<DeletePostResponse, DeletePostError, Options<DeletePostData>>;
|
|
8599
|
+
declare const getPostQueryKey: (options: Options<GetPostData>) => [Pick<Options<GetPostData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8600
|
+
_id: string;
|
|
8601
|
+
_infinite?: boolean;
|
|
8602
|
+
tags?: ReadonlyArray<string>;
|
|
8603
|
+
}];
|
|
8604
|
+
/**
|
|
8605
|
+
* Get a single post
|
|
8606
|
+
*
|
|
8607
|
+
* Returns details of a single post in a community.
|
|
8608
|
+
*/
|
|
8609
|
+
declare const getPostOptions: (options: Options<GetPostData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Post, PkgOpenapiSharedProblemDetails, Post, [Pick<Options<GetPostData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8610
|
+
_id: string;
|
|
8611
|
+
_infinite?: boolean;
|
|
8612
|
+
tags?: ReadonlyArray<string>;
|
|
8613
|
+
}]>, "queryFn"> & {
|
|
8614
|
+
queryFn?: _tanstack_react_query.QueryFunction<Post, [Pick<Options<GetPostData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8615
|
+
_id: string;
|
|
8616
|
+
_infinite?: boolean;
|
|
8617
|
+
tags?: ReadonlyArray<string>;
|
|
8618
|
+
}], never> | undefined;
|
|
8619
|
+
} & {
|
|
8620
|
+
queryKey: [Pick<Options<GetPostData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8621
|
+
_id: string;
|
|
8622
|
+
_infinite?: boolean;
|
|
8623
|
+
tags?: ReadonlyArray<string>;
|
|
8624
|
+
}] & {
|
|
8625
|
+
[dataTagSymbol]: Post;
|
|
8626
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
8627
|
+
};
|
|
8628
|
+
};
|
|
8629
|
+
/**
|
|
8630
|
+
* Mark a post as read
|
|
8631
|
+
*
|
|
8632
|
+
* Marks a post as read by the authenticated player.
|
|
8633
|
+
*/
|
|
8634
|
+
declare const markPostReadMutation: (options?: Partial<Options<MarkPostReadData>>) => UseMutationOptions<MarkPostReadResponse, MarkPostReadError, Options<MarkPostReadData>>;
|
|
8635
|
+
declare const listCommentsQueryKey: (options: Options<ListCommentsData>) => [Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8636
|
+
_id: string;
|
|
8637
|
+
_infinite?: boolean;
|
|
8638
|
+
tags?: ReadonlyArray<string>;
|
|
8639
|
+
}];
|
|
8640
|
+
/**
|
|
8641
|
+
* List comments on a post
|
|
8642
|
+
*
|
|
8643
|
+
* Returns comments on a post, optionally filtered by creation timestamp.
|
|
8644
|
+
*/
|
|
8645
|
+
declare const listCommentsOptions: (options: Options<ListCommentsData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<CommentListResponse, PkgOpenapiSharedProblemDetails, CommentListResponse, [Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8646
|
+
_id: string;
|
|
8647
|
+
_infinite?: boolean;
|
|
8648
|
+
tags?: ReadonlyArray<string>;
|
|
8649
|
+
}]>, "queryFn"> & {
|
|
8650
|
+
queryFn?: _tanstack_react_query.QueryFunction<CommentListResponse, [Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8651
|
+
_id: string;
|
|
8652
|
+
_infinite?: boolean;
|
|
8653
|
+
tags?: ReadonlyArray<string>;
|
|
8654
|
+
}], never> | undefined;
|
|
8655
|
+
} & {
|
|
8656
|
+
queryKey: [Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8657
|
+
_id: string;
|
|
8658
|
+
_infinite?: boolean;
|
|
8659
|
+
tags?: ReadonlyArray<string>;
|
|
8660
|
+
}] & {
|
|
8661
|
+
[dataTagSymbol]: CommentListResponse;
|
|
8662
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
8663
|
+
};
|
|
8664
|
+
};
|
|
8665
|
+
declare const listCommentsInfiniteQueryKey: (options: Options<ListCommentsData>) => QueryKey<Options<ListCommentsData>>;
|
|
8666
|
+
/**
|
|
8667
|
+
* List comments on a post
|
|
8668
|
+
*
|
|
8669
|
+
* Returns comments on a post, optionally filtered by creation timestamp.
|
|
8670
|
+
*/
|
|
8671
|
+
declare const listCommentsInfiniteOptions: (options: Options<ListCommentsData>) => _tanstack_react_query.UseInfiniteQueryOptions<CommentListResponse, PkgOpenapiSharedProblemDetails, InfiniteData<CommentListResponse, unknown>, QueryKey<Options<ListCommentsData>>, number | Pick<Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8672
|
+
_id: string;
|
|
8673
|
+
_infinite?: boolean;
|
|
8674
|
+
tags?: ReadonlyArray<string>;
|
|
8675
|
+
}, "query" | "body" | "headers" | "path">> & {
|
|
8676
|
+
initialData: InfiniteData<CommentListResponse, number | Pick<Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8677
|
+
_id: string;
|
|
8678
|
+
_infinite?: boolean;
|
|
8679
|
+
tags?: ReadonlyArray<string>;
|
|
8680
|
+
}, "query" | "body" | "headers" | "path">> | (() => InfiniteData<CommentListResponse, number | Pick<Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8681
|
+
_id: string;
|
|
8682
|
+
_infinite?: boolean;
|
|
8683
|
+
tags?: ReadonlyArray<string>;
|
|
8684
|
+
}, "query" | "body" | "headers" | "path">>) | undefined;
|
|
8685
|
+
} & {
|
|
8686
|
+
queryKey: QueryKey<Options<ListCommentsData>> & {
|
|
8687
|
+
[dataTagSymbol]: InfiniteData<CommentListResponse, unknown>;
|
|
8688
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
8689
|
+
};
|
|
8690
|
+
};
|
|
8691
|
+
/**
|
|
8692
|
+
* Create a comment on a post
|
|
8693
|
+
*
|
|
8694
|
+
* Creates a new comment on a post on behalf of the authenticated player.
|
|
8695
|
+
*/
|
|
8696
|
+
declare const createCommentMutation: (options?: Partial<Options<CreateCommentData>>) => UseMutationOptions<CreateCommentResponse, CreateCommentError, Options<CreateCommentData>>;
|
|
8697
|
+
/**
|
|
8698
|
+
* Delete a comment
|
|
8699
|
+
*
|
|
8700
|
+
* Deletes a comment. Only the comment author can delete their own comments.
|
|
8701
|
+
*/
|
|
8702
|
+
declare const deleteCommentMutation: (options?: Partial<Options<DeleteCommentData>>) => UseMutationOptions<DeleteCommentResponse, DeleteCommentError, Options<DeleteCommentData>>;
|
|
8703
|
+
/**
|
|
8704
|
+
* Mark a comment as read
|
|
8705
|
+
*
|
|
8706
|
+
* Marks a comment as read by the authenticated player.
|
|
8707
|
+
*/
|
|
8708
|
+
declare const markCommentReadMutation: (options?: Partial<Options<MarkCommentReadData>>) => UseMutationOptions<MarkCommentReadResponse, MarkCommentReadError, Options<MarkCommentReadData>>;
|
|
7694
8709
|
declare const listFacilityOffersQueryKey: (options: Options<ListFacilityOffersData>) => [Pick<Options<ListFacilityOffersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7695
8710
|
_id: string;
|
|
7696
8711
|
_infinite?: boolean;
|
|
@@ -8302,13 +9317,20 @@ declare const deleteUserSportProfileLevelMutation: (options?: Partial<Options<De
|
|
|
8302
9317
|
declare const updateUserSportProfileLevelMutation: (options?: Partial<Options<UpdateUserSportProfileLevelData>>) => UseMutationOptions<UpdateUserSportProfileLevelResponse, UpdateUserSportProfileLevelError, Options<UpdateUserSportProfileLevelData>>;
|
|
8303
9318
|
|
|
8304
9319
|
type reactQuery_gen_QueryKey<TOptions extends Options> = QueryKey<TOptions>;
|
|
9320
|
+
declare const reactQuery_gen_acceptInvitationMutation: typeof acceptInvitationMutation;
|
|
8305
9321
|
declare const reactQuery_gen_addUserSportProfileLevelMutation: typeof addUserSportProfileLevelMutation;
|
|
9322
|
+
declare const reactQuery_gen_createCommentMutation: typeof createCommentMutation;
|
|
8306
9323
|
declare const reactQuery_gen_createFacilityOfferOrderMutation: typeof createFacilityOfferOrderMutation;
|
|
8307
9324
|
declare const reactQuery_gen_createMatchParticipationMutation: typeof createMatchParticipationMutation;
|
|
9325
|
+
declare const reactQuery_gen_createPostMutation: typeof createPostMutation;
|
|
8308
9326
|
declare const reactQuery_gen_createUserSportProfileMutation: typeof createUserSportProfileMutation;
|
|
9327
|
+
declare const reactQuery_gen_deleteCommentMutation: typeof deleteCommentMutation;
|
|
8309
9328
|
declare const reactQuery_gen_deleteMatchParticipationMutation: typeof deleteMatchParticipationMutation;
|
|
9329
|
+
declare const reactQuery_gen_deletePostMutation: typeof deletePostMutation;
|
|
8310
9330
|
declare const reactQuery_gen_deleteUserSportProfileLevelMutation: typeof deleteUserSportProfileLevelMutation;
|
|
8311
9331
|
declare const reactQuery_gen_deleteUserSportProfileMutation: typeof deleteUserSportProfileMutation;
|
|
9332
|
+
declare const reactQuery_gen_getCommunityOptions: typeof getCommunityOptions;
|
|
9333
|
+
declare const reactQuery_gen_getCommunityQueryKey: typeof getCommunityQueryKey;
|
|
8312
9334
|
declare const reactQuery_gen_getMatchOptions: typeof getMatchOptions;
|
|
8313
9335
|
declare const reactQuery_gen_getMatchQueryKey: typeof getMatchQueryKey;
|
|
8314
9336
|
declare const reactQuery_gen_getMatchUserPriceOptions: typeof getMatchUserPriceOptions;
|
|
@@ -8321,6 +9343,8 @@ declare const reactQuery_gen_getNotificationsOptions: typeof getNotificationsOpt
|
|
|
8321
9343
|
declare const reactQuery_gen_getNotificationsPreferencesOptions: typeof getNotificationsPreferencesOptions;
|
|
8322
9344
|
declare const reactQuery_gen_getNotificationsPreferencesQueryKey: typeof getNotificationsPreferencesQueryKey;
|
|
8323
9345
|
declare const reactQuery_gen_getNotificationsQueryKey: typeof getNotificationsQueryKey;
|
|
9346
|
+
declare const reactQuery_gen_getPostOptions: typeof getPostOptions;
|
|
9347
|
+
declare const reactQuery_gen_getPostQueryKey: typeof getPostQueryKey;
|
|
8324
9348
|
declare const reactQuery_gen_getRecommendationsInfiniteOptions: typeof getRecommendationsInfiniteOptions;
|
|
8325
9349
|
declare const reactQuery_gen_getRecommendationsInfiniteQueryKey: typeof getRecommendationsInfiniteQueryKey;
|
|
8326
9350
|
declare const reactQuery_gen_getRecommendationsOptions: typeof getRecommendationsOptions;
|
|
@@ -8333,6 +9357,15 @@ declare const reactQuery_gen_getUserSportProfileOptions: typeof getUserSportProf
|
|
|
8333
9357
|
declare const reactQuery_gen_getUserSportProfileQueryKey: typeof getUserSportProfileQueryKey;
|
|
8334
9358
|
declare const reactQuery_gen_getUserSportProfilesOptions: typeof getUserSportProfilesOptions;
|
|
8335
9359
|
declare const reactQuery_gen_getUserSportProfilesQueryKey: typeof getUserSportProfilesQueryKey;
|
|
9360
|
+
declare const reactQuery_gen_leaveCommunityMutation: typeof leaveCommunityMutation;
|
|
9361
|
+
declare const reactQuery_gen_listCommentsInfiniteOptions: typeof listCommentsInfiniteOptions;
|
|
9362
|
+
declare const reactQuery_gen_listCommentsInfiniteQueryKey: typeof listCommentsInfiniteQueryKey;
|
|
9363
|
+
declare const reactQuery_gen_listCommentsOptions: typeof listCommentsOptions;
|
|
9364
|
+
declare const reactQuery_gen_listCommentsQueryKey: typeof listCommentsQueryKey;
|
|
9365
|
+
declare const reactQuery_gen_listCommunitiesInfiniteOptions: typeof listCommunitiesInfiniteOptions;
|
|
9366
|
+
declare const reactQuery_gen_listCommunitiesInfiniteQueryKey: typeof listCommunitiesInfiniteQueryKey;
|
|
9367
|
+
declare const reactQuery_gen_listCommunitiesOptions: typeof listCommunitiesOptions;
|
|
9368
|
+
declare const reactQuery_gen_listCommunitiesQueryKey: typeof listCommunitiesQueryKey;
|
|
8336
9369
|
declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacilityOffersInfiniteOptions;
|
|
8337
9370
|
declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
|
|
8338
9371
|
declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
|
|
@@ -8341,6 +9374,16 @@ declare const reactQuery_gen_listMatchesInfiniteOptions: typeof listMatchesInfin
|
|
|
8341
9374
|
declare const reactQuery_gen_listMatchesInfiniteQueryKey: typeof listMatchesInfiniteQueryKey;
|
|
8342
9375
|
declare const reactQuery_gen_listMatchesOptions: typeof listMatchesOptions;
|
|
8343
9376
|
declare const reactQuery_gen_listMatchesQueryKey: typeof listMatchesQueryKey;
|
|
9377
|
+
declare const reactQuery_gen_listMembersInfiniteOptions: typeof listMembersInfiniteOptions;
|
|
9378
|
+
declare const reactQuery_gen_listMembersInfiniteQueryKey: typeof listMembersInfiniteQueryKey;
|
|
9379
|
+
declare const reactQuery_gen_listMembersOptions: typeof listMembersOptions;
|
|
9380
|
+
declare const reactQuery_gen_listMembersQueryKey: typeof listMembersQueryKey;
|
|
9381
|
+
declare const reactQuery_gen_listPostsInfiniteOptions: typeof listPostsInfiniteOptions;
|
|
9382
|
+
declare const reactQuery_gen_listPostsInfiniteQueryKey: typeof listPostsInfiniteQueryKey;
|
|
9383
|
+
declare const reactQuery_gen_listPostsOptions: typeof listPostsOptions;
|
|
9384
|
+
declare const reactQuery_gen_listPostsQueryKey: typeof listPostsQueryKey;
|
|
9385
|
+
declare const reactQuery_gen_markCommentReadMutation: typeof markCommentReadMutation;
|
|
9386
|
+
declare const reactQuery_gen_markPostReadMutation: typeof markPostReadMutation;
|
|
8344
9387
|
declare const reactQuery_gen_registerDeviceMutation: typeof registerDeviceMutation;
|
|
8345
9388
|
declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
|
|
8346
9389
|
declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
|
|
@@ -8352,9 +9395,14 @@ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof upda
|
|
|
8352
9395
|
declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
|
|
8353
9396
|
declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
|
|
8354
9397
|
declare namespace reactQuery_gen {
|
|
8355
|
-
export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createMatchParticipationMutation as createMatchParticipationMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteMatchParticipationMutation as deleteMatchParticipationMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getMatchOptions as getMatchOptions, reactQuery_gen_getMatchQueryKey as getMatchQueryKey, reactQuery_gen_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen_listMatchesOptions as listMatchesOptions, reactQuery_gen_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen_registerDeviceMutation as registerDeviceMutation, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
|
|
9398
|
+
export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_acceptInvitationMutation as acceptInvitationMutation, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createCommentMutation as createCommentMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createMatchParticipationMutation as createMatchParticipationMutation, reactQuery_gen_createPostMutation as createPostMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteCommentMutation as deleteCommentMutation, reactQuery_gen_deleteMatchParticipationMutation as deleteMatchParticipationMutation, reactQuery_gen_deletePostMutation as deletePostMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getCommunityOptions as getCommunityOptions, reactQuery_gen_getCommunityQueryKey as getCommunityQueryKey, reactQuery_gen_getMatchOptions as getMatchOptions, reactQuery_gen_getMatchQueryKey as getMatchQueryKey, reactQuery_gen_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getPostOptions as getPostOptions, reactQuery_gen_getPostQueryKey as getPostQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_leaveCommunityMutation as leaveCommunityMutation, reactQuery_gen_listCommentsInfiniteOptions as listCommentsInfiniteOptions, reactQuery_gen_listCommentsInfiniteQueryKey as listCommentsInfiniteQueryKey, reactQuery_gen_listCommentsOptions as listCommentsOptions, reactQuery_gen_listCommentsQueryKey as listCommentsQueryKey, reactQuery_gen_listCommunitiesInfiniteOptions as listCommunitiesInfiniteOptions, reactQuery_gen_listCommunitiesInfiniteQueryKey as listCommunitiesInfiniteQueryKey, reactQuery_gen_listCommunitiesOptions as listCommunitiesOptions, reactQuery_gen_listCommunitiesQueryKey as listCommunitiesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen_listMatchesOptions as listMatchesOptions, reactQuery_gen_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen_listMembersInfiniteOptions as listMembersInfiniteOptions, reactQuery_gen_listMembersInfiniteQueryKey as listMembersInfiniteQueryKey, reactQuery_gen_listMembersOptions as listMembersOptions, reactQuery_gen_listMembersQueryKey as listMembersQueryKey, reactQuery_gen_listPostsInfiniteOptions as listPostsInfiniteOptions, reactQuery_gen_listPostsInfiniteQueryKey as listPostsInfiniteQueryKey, reactQuery_gen_listPostsOptions as listPostsOptions, reactQuery_gen_listPostsQueryKey as listPostsQueryKey, reactQuery_gen_markCommentReadMutation as markCommentReadMutation, reactQuery_gen_markPostReadMutation as markPostReadMutation, reactQuery_gen_registerDeviceMutation as registerDeviceMutation, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
|
|
8356
9399
|
}
|
|
8357
9400
|
|
|
9401
|
+
type indexV1_AcceptInvitationData = AcceptInvitationData;
|
|
9402
|
+
type indexV1_AcceptInvitationError = AcceptInvitationError;
|
|
9403
|
+
type indexV1_AcceptInvitationErrors = AcceptInvitationErrors;
|
|
9404
|
+
type indexV1_AcceptInvitationResponse = AcceptInvitationResponse;
|
|
9405
|
+
type indexV1_AcceptInvitationResponses = AcceptInvitationResponses;
|
|
8358
9406
|
type indexV1_AddUserSportProfileLevelData = AddUserSportProfileLevelData;
|
|
8359
9407
|
type indexV1_AddUserSportProfileLevelError = AddUserSportProfileLevelError;
|
|
8360
9408
|
type indexV1_AddUserSportProfileLevelErrors = AddUserSportProfileLevelErrors;
|
|
@@ -8370,7 +9418,13 @@ type indexV1_CommentListResponse = CommentListResponse;
|
|
|
8370
9418
|
type indexV1_CommunityIdParam = CommunityIdParam;
|
|
8371
9419
|
type indexV1_CommunityItem = CommunityItem;
|
|
8372
9420
|
type indexV1_CommunityListResponse = CommunityListResponse;
|
|
9421
|
+
type indexV1_CommunityPayload = CommunityPayload;
|
|
9422
|
+
type indexV1_CreateCommentData = CreateCommentData;
|
|
9423
|
+
type indexV1_CreateCommentError = CreateCommentError;
|
|
9424
|
+
type indexV1_CreateCommentErrors = CreateCommentErrors;
|
|
8373
9425
|
type indexV1_CreateCommentRequest = CreateCommentRequest;
|
|
9426
|
+
type indexV1_CreateCommentResponse = CreateCommentResponse;
|
|
9427
|
+
type indexV1_CreateCommentResponses = CreateCommentResponses;
|
|
8374
9428
|
type indexV1_CreateFacilityOfferOrderData = CreateFacilityOfferOrderData;
|
|
8375
9429
|
type indexV1_CreateFacilityOfferOrderError = CreateFacilityOfferOrderError;
|
|
8376
9430
|
type indexV1_CreateFacilityOfferOrderErrors = CreateFacilityOfferOrderErrors;
|
|
@@ -8382,7 +9436,12 @@ type indexV1_CreateMatchParticipationErrors = CreateMatchParticipationErrors;
|
|
|
8382
9436
|
type indexV1_CreateMatchParticipationRequest = CreateMatchParticipationRequest;
|
|
8383
9437
|
type indexV1_CreateMatchParticipationResponse = CreateMatchParticipationResponse;
|
|
8384
9438
|
type indexV1_CreateMatchParticipationResponses = CreateMatchParticipationResponses;
|
|
9439
|
+
type indexV1_CreatePostData = CreatePostData;
|
|
9440
|
+
type indexV1_CreatePostError = CreatePostError;
|
|
9441
|
+
type indexV1_CreatePostErrors = CreatePostErrors;
|
|
8385
9442
|
type indexV1_CreatePostRequest = CreatePostRequest;
|
|
9443
|
+
type indexV1_CreatePostResponse = CreatePostResponse;
|
|
9444
|
+
type indexV1_CreatePostResponses = CreatePostResponses;
|
|
8386
9445
|
type indexV1_CreateSportProfileLevelRequest = CreateSportProfileLevelRequest;
|
|
8387
9446
|
type indexV1_CreateSportProfileRequest = CreateSportProfileRequest;
|
|
8388
9447
|
type indexV1_CreateUserSportProfileData = CreateUserSportProfileData;
|
|
@@ -8390,11 +9449,21 @@ type indexV1_CreateUserSportProfileError = CreateUserSportProfileError;
|
|
|
8390
9449
|
type indexV1_CreateUserSportProfileErrors = CreateUserSportProfileErrors;
|
|
8391
9450
|
type indexV1_CreateUserSportProfileResponse = CreateUserSportProfileResponse;
|
|
8392
9451
|
type indexV1_CreateUserSportProfileResponses = CreateUserSportProfileResponses;
|
|
9452
|
+
type indexV1_DeleteCommentData = DeleteCommentData;
|
|
9453
|
+
type indexV1_DeleteCommentError = DeleteCommentError;
|
|
9454
|
+
type indexV1_DeleteCommentErrors = DeleteCommentErrors;
|
|
9455
|
+
type indexV1_DeleteCommentResponse = DeleteCommentResponse;
|
|
9456
|
+
type indexV1_DeleteCommentResponses = DeleteCommentResponses;
|
|
8393
9457
|
type indexV1_DeleteMatchParticipationData = DeleteMatchParticipationData;
|
|
8394
9458
|
type indexV1_DeleteMatchParticipationError = DeleteMatchParticipationError;
|
|
8395
9459
|
type indexV1_DeleteMatchParticipationErrors = DeleteMatchParticipationErrors;
|
|
8396
9460
|
type indexV1_DeleteMatchParticipationResponse = DeleteMatchParticipationResponse;
|
|
8397
9461
|
type indexV1_DeleteMatchParticipationResponses = DeleteMatchParticipationResponses;
|
|
9462
|
+
type indexV1_DeletePostData = DeletePostData;
|
|
9463
|
+
type indexV1_DeletePostError = DeletePostError;
|
|
9464
|
+
type indexV1_DeletePostErrors = DeletePostErrors;
|
|
9465
|
+
type indexV1_DeletePostResponse = DeletePostResponse;
|
|
9466
|
+
type indexV1_DeletePostResponses = DeletePostResponses;
|
|
8398
9467
|
type indexV1_DeleteUserSportProfileData = DeleteUserSportProfileData;
|
|
8399
9468
|
type indexV1_DeleteUserSportProfileError = DeleteUserSportProfileError;
|
|
8400
9469
|
type indexV1_DeleteUserSportProfileErrors = DeleteUserSportProfileErrors;
|
|
@@ -8425,6 +9494,11 @@ type indexV1_FacilityPermissionsResponse = FacilityPermissionsResponse;
|
|
|
8425
9494
|
type indexV1_FacilityPunchCardData = FacilityPunchCardData;
|
|
8426
9495
|
type indexV1_FacilityValueCardData = FacilityValueCardData;
|
|
8427
9496
|
type indexV1_Gender = Gender;
|
|
9497
|
+
type indexV1_GetCommunityData = GetCommunityData;
|
|
9498
|
+
type indexV1_GetCommunityError = GetCommunityError;
|
|
9499
|
+
type indexV1_GetCommunityErrors = GetCommunityErrors;
|
|
9500
|
+
type indexV1_GetCommunityResponse = GetCommunityResponse;
|
|
9501
|
+
type indexV1_GetCommunityResponses = GetCommunityResponses;
|
|
8428
9502
|
type indexV1_GetMatchData = GetMatchData;
|
|
8429
9503
|
type indexV1_GetMatchError = GetMatchError;
|
|
8430
9504
|
type indexV1_GetMatchErrors = GetMatchErrors;
|
|
@@ -8450,6 +9524,11 @@ type indexV1_GetNotificationsPreferencesResponse = GetNotificationsPreferencesRe
|
|
|
8450
9524
|
type indexV1_GetNotificationsPreferencesResponses = GetNotificationsPreferencesResponses;
|
|
8451
9525
|
type indexV1_GetNotificationsResponse = GetNotificationsResponse;
|
|
8452
9526
|
type indexV1_GetNotificationsResponses = GetNotificationsResponses;
|
|
9527
|
+
type indexV1_GetPostData = GetPostData;
|
|
9528
|
+
type indexV1_GetPostError = GetPostError;
|
|
9529
|
+
type indexV1_GetPostErrors = GetPostErrors;
|
|
9530
|
+
type indexV1_GetPostResponse = GetPostResponse;
|
|
9531
|
+
type indexV1_GetPostResponses = GetPostResponses;
|
|
8453
9532
|
type indexV1_GetRecommendationsData = GetRecommendationsData;
|
|
8454
9533
|
type indexV1_GetRecommendationsError = GetRecommendationsError;
|
|
8455
9534
|
type indexV1_GetRecommendationsErrors = GetRecommendationsErrors;
|
|
@@ -8475,7 +9554,22 @@ type indexV1_GetUserSportProfilesError = GetUserSportProfilesError;
|
|
|
8475
9554
|
type indexV1_GetUserSportProfilesErrors = GetUserSportProfilesErrors;
|
|
8476
9555
|
type indexV1_GetUserSportProfilesResponse = GetUserSportProfilesResponse;
|
|
8477
9556
|
type indexV1_GetUserSportProfilesResponses = GetUserSportProfilesResponses;
|
|
9557
|
+
type indexV1_LeaveCommunityData = LeaveCommunityData;
|
|
9558
|
+
type indexV1_LeaveCommunityError = LeaveCommunityError;
|
|
9559
|
+
type indexV1_LeaveCommunityErrors = LeaveCommunityErrors;
|
|
9560
|
+
type indexV1_LeaveCommunityResponse = LeaveCommunityResponse;
|
|
9561
|
+
type indexV1_LeaveCommunityResponses = LeaveCommunityResponses;
|
|
8478
9562
|
type indexV1_LinkType = LinkType;
|
|
9563
|
+
type indexV1_ListCommentsData = ListCommentsData;
|
|
9564
|
+
type indexV1_ListCommentsError = ListCommentsError;
|
|
9565
|
+
type indexV1_ListCommentsErrors = ListCommentsErrors;
|
|
9566
|
+
type indexV1_ListCommentsResponse = ListCommentsResponse;
|
|
9567
|
+
type indexV1_ListCommentsResponses = ListCommentsResponses;
|
|
9568
|
+
type indexV1_ListCommunitiesData = ListCommunitiesData;
|
|
9569
|
+
type indexV1_ListCommunitiesError = ListCommunitiesError;
|
|
9570
|
+
type indexV1_ListCommunitiesErrors = ListCommunitiesErrors;
|
|
9571
|
+
type indexV1_ListCommunitiesResponse = ListCommunitiesResponse;
|
|
9572
|
+
type indexV1_ListCommunitiesResponses = ListCommunitiesResponses;
|
|
8479
9573
|
type indexV1_ListFacilityOffersData = ListFacilityOffersData;
|
|
8480
9574
|
type indexV1_ListFacilityOffersError = ListFacilityOffersError;
|
|
8481
9575
|
type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
|
|
@@ -8486,6 +9580,26 @@ type indexV1_ListMatchesError = ListMatchesError;
|
|
|
8486
9580
|
type indexV1_ListMatchesErrors = ListMatchesErrors;
|
|
8487
9581
|
type indexV1_ListMatchesResponse = ListMatchesResponse;
|
|
8488
9582
|
type indexV1_ListMatchesResponses = ListMatchesResponses;
|
|
9583
|
+
type indexV1_ListMembersData = ListMembersData;
|
|
9584
|
+
type indexV1_ListMembersError = ListMembersError;
|
|
9585
|
+
type indexV1_ListMembersErrors = ListMembersErrors;
|
|
9586
|
+
type indexV1_ListMembersResponse = ListMembersResponse;
|
|
9587
|
+
type indexV1_ListMembersResponses = ListMembersResponses;
|
|
9588
|
+
type indexV1_ListPostsData = ListPostsData;
|
|
9589
|
+
type indexV1_ListPostsError = ListPostsError;
|
|
9590
|
+
type indexV1_ListPostsErrors = ListPostsErrors;
|
|
9591
|
+
type indexV1_ListPostsResponse = ListPostsResponse;
|
|
9592
|
+
type indexV1_ListPostsResponses = ListPostsResponses;
|
|
9593
|
+
type indexV1_MarkCommentReadData = MarkCommentReadData;
|
|
9594
|
+
type indexV1_MarkCommentReadError = MarkCommentReadError;
|
|
9595
|
+
type indexV1_MarkCommentReadErrors = MarkCommentReadErrors;
|
|
9596
|
+
type indexV1_MarkCommentReadResponse = MarkCommentReadResponse;
|
|
9597
|
+
type indexV1_MarkCommentReadResponses = MarkCommentReadResponses;
|
|
9598
|
+
type indexV1_MarkPostReadData = MarkPostReadData;
|
|
9599
|
+
type indexV1_MarkPostReadError = MarkPostReadError;
|
|
9600
|
+
type indexV1_MarkPostReadErrors = MarkPostReadErrors;
|
|
9601
|
+
type indexV1_MarkPostReadResponse = MarkPostReadResponse;
|
|
9602
|
+
type indexV1_MarkPostReadResponses = MarkPostReadResponses;
|
|
8489
9603
|
type indexV1_Match = Match;
|
|
8490
9604
|
type indexV1_MatchBasePrice = MatchBasePrice;
|
|
8491
9605
|
type indexV1_MatchCourt = MatchCourt;
|
|
@@ -8595,26 +9709,40 @@ type indexV1_UserProfile = UserProfile;
|
|
|
8595
9709
|
type indexV1_UserRelation = UserRelation;
|
|
8596
9710
|
type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
|
|
8597
9711
|
type indexV1_Visibility = Visibility;
|
|
9712
|
+
declare const indexV1_acceptInvitation: typeof acceptInvitation;
|
|
8598
9713
|
declare const indexV1_addUserSportProfileLevel: typeof addUserSportProfileLevel;
|
|
8599
9714
|
declare const indexV1_client: typeof client;
|
|
9715
|
+
declare const indexV1_createComment: typeof createComment;
|
|
8600
9716
|
declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
|
|
8601
9717
|
declare const indexV1_createMatchParticipation: typeof createMatchParticipation;
|
|
9718
|
+
declare const indexV1_createPost: typeof createPost;
|
|
8602
9719
|
declare const indexV1_createUserSportProfile: typeof createUserSportProfile;
|
|
9720
|
+
declare const indexV1_deleteComment: typeof deleteComment;
|
|
8603
9721
|
declare const indexV1_deleteMatchParticipation: typeof deleteMatchParticipation;
|
|
9722
|
+
declare const indexV1_deletePost: typeof deletePost;
|
|
8604
9723
|
declare const indexV1_deleteUserSportProfile: typeof deleteUserSportProfile;
|
|
8605
9724
|
declare const indexV1_deleteUserSportProfileLevel: typeof deleteUserSportProfileLevel;
|
|
9725
|
+
declare const indexV1_getCommunity: typeof getCommunity;
|
|
8606
9726
|
declare const indexV1_getMatch: typeof getMatch;
|
|
8607
9727
|
declare const indexV1_getMatchUserPrice: typeof getMatchUserPrice;
|
|
8608
9728
|
declare const indexV1_getNotificationById: typeof getNotificationById;
|
|
8609
9729
|
declare const indexV1_getNotifications: typeof getNotifications;
|
|
8610
9730
|
declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
|
|
9731
|
+
declare const indexV1_getPost: typeof getPost;
|
|
8611
9732
|
declare const indexV1_getRecommendations: typeof getRecommendations;
|
|
8612
9733
|
declare const indexV1_getSportAuthorities: typeof getSportAuthorities;
|
|
8613
9734
|
declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissions;
|
|
8614
9735
|
declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
|
|
8615
9736
|
declare const indexV1_getUserSportProfiles: typeof getUserSportProfiles;
|
|
9737
|
+
declare const indexV1_leaveCommunity: typeof leaveCommunity;
|
|
9738
|
+
declare const indexV1_listComments: typeof listComments;
|
|
9739
|
+
declare const indexV1_listCommunities: typeof listCommunities;
|
|
8616
9740
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
8617
9741
|
declare const indexV1_listMatches: typeof listMatches;
|
|
9742
|
+
declare const indexV1_listMembers: typeof listMembers;
|
|
9743
|
+
declare const indexV1_listPosts: typeof listPosts;
|
|
9744
|
+
declare const indexV1_markCommentRead: typeof markCommentRead;
|
|
9745
|
+
declare const indexV1_markPostRead: typeof markPostRead;
|
|
8618
9746
|
declare const indexV1_registerDevice: typeof registerDevice;
|
|
8619
9747
|
declare const indexV1_searchUsers: typeof searchUsers;
|
|
8620
9748
|
declare const indexV1_updateAllNotifications: typeof updateAllNotifications;
|
|
@@ -8623,7 +9751,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
|
|
|
8623
9751
|
declare const indexV1_updateUserProfile: typeof updateUserProfile;
|
|
8624
9752
|
declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
|
|
8625
9753
|
declare namespace indexV1 {
|
|
8626
|
-
export { 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_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions 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_CreateCommentRequest as CreateCommentRequest, 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_CreatePostRequest as CreatePostRequest, 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_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_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 indexV1_FacilityMessagePayload 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_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 indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses as GetNotificationsResponses, 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_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_LinkType as LinkType, 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_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_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 indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type indexV1_Options 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 indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, 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 indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type indexV1_RegisterDeviceData as RegisterDeviceData, type indexV1_RegisterDeviceError as RegisterDeviceError, type indexV1_RegisterDeviceErrors as RegisterDeviceErrors, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_RegisterDeviceResponse as RegisterDeviceResponse, type indexV1_RegisterDeviceResponses as RegisterDeviceResponses, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody 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_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createMatchParticipation as createMatchParticipation, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteMatchParticipation as deleteMatchParticipation, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listMatches as listMatches, reactQuery_gen as queries, indexV1_registerDevice as registerDevice, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification, indexV1_updateNotificationsPreferences as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel };
|
|
9754
|
+
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_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions 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_CommunityPayload as CommunityPayload, 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 indexV1_FacilityMessagePayload 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_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 indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses 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_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_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_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 indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type indexV1_Options 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 indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, 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 indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type indexV1_RegisterDeviceData as RegisterDeviceData, type indexV1_RegisterDeviceError as RegisterDeviceError, type indexV1_RegisterDeviceErrors as RegisterDeviceErrors, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_RegisterDeviceResponse as RegisterDeviceResponse, type indexV1_RegisterDeviceResponses as RegisterDeviceResponses, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody 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, indexV1_client 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_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getPost as getPost, indexV1_getRecommendations as getRecommendations, 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_listFacilityOffers as listFacilityOffers, indexV1_listMatches as listMatches, indexV1_listMembers as listMembers, indexV1_listPosts as listPosts, indexV1_markCommentRead as markCommentRead, indexV1_markPostRead as markPostRead, reactQuery_gen as queries, indexV1_registerDevice as registerDevice, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification, indexV1_updateNotificationsPreferences as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel };
|
|
8627
9755
|
}
|
|
8628
9756
|
|
|
8629
9757
|
export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type match, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, type timeOfDay, type timeStamp, type usagePlan, userChatStatusParam, userChatTargetParam, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, userRelation, userRelationStatusParam, type userValueCard, indexV1 as v1, type valueCardOutcome };
|