@matchi/api 0.20260414.1 → 0.20260422.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.
@@ -3596,6 +3596,24 @@ type CreateSportProfileRequest = {
3596
3596
  level?: string;
3597
3597
  sport_id: number;
3598
3598
  };
3599
+ type ExternalService = {
3600
+ config?: Array<{
3601
+ [key: string]: unknown;
3602
+ }>;
3603
+ link?: string | null;
3604
+ logo?: string | null;
3605
+ name: string;
3606
+ };
3607
+ type Facility = {
3608
+ created_by?: string;
3609
+ id: string;
3610
+ updated_at?: string;
3611
+ updated_by?: string;
3612
+ };
3613
+ type FacilityList = {
3614
+ items: Array<Facility>;
3615
+ meta: OffsetPaginatedResultSet;
3616
+ };
3599
3617
  type FacilityMessagePayload = {
3600
3618
  description: string;
3601
3619
  image_url?: string;
@@ -3699,6 +3717,112 @@ declare const LinkType: {
3699
3717
  readonly MATCH: "match";
3700
3718
  };
3701
3719
  type LinkType = typeof LinkType[keyof typeof LinkType];
3720
+ type Match = {
3721
+ court_id: number;
3722
+ facility_id: number;
3723
+ facility_name: string;
3724
+ id: string;
3725
+ image_url?: string | null;
3726
+ occasion: MatchOccasion;
3727
+ sport_id: number | null;
3728
+ title: string;
3729
+ };
3730
+ type MatchBasePrice = {
3731
+ currency: string;
3732
+ default_price: number;
3733
+ members_price?: number | null;
3734
+ };
3735
+ type MatchCourt = {
3736
+ id: number;
3737
+ name: string;
3738
+ };
3739
+ /**
3740
+ * Match for the detail view. Extends Match with description, terms, message_title and upgrades occasion to MatchOccasionDetail.
3741
+ *
3742
+ */
3743
+ type MatchDetail = Match & {
3744
+ description?: string | null;
3745
+ message_title?: string | null;
3746
+ occasion?: MatchOccasionDetail;
3747
+ terms?: string | null;
3748
+ };
3749
+ type MatchEvent = {
3750
+ name?: string;
3751
+ supported_by?: string | null;
3752
+ } | null;
3753
+ type MatchList = {
3754
+ items: Array<Match>;
3755
+ meta: OffsetPaginatedResultSet;
3756
+ };
3757
+ type MatchOccasion = {
3758
+ automatic_cancellation_date_time?: string | null;
3759
+ courts: Array<MatchCourt>;
3760
+ end_date_time: string;
3761
+ has_not_closed_registration: boolean;
3762
+ has_opened_registration: boolean;
3763
+ id: number;
3764
+ is_bookable: boolean;
3765
+ is_participating: boolean;
3766
+ level_max?: number | null;
3767
+ level_min?: number | null;
3768
+ members_only: boolean;
3769
+ message?: string | null;
3770
+ participants: MatchParticipants;
3771
+ price: MatchBasePrice;
3772
+ start_date_time: string;
3773
+ type?: string | null;
3774
+ };
3775
+ /**
3776
+ * Enriched occasion for the detail view. Extends MatchOccasion with price_list, refund_policy, can_be_cancelled_by_user, participant_details, status, user_status, external_services, event.
3777
+ *
3778
+ */
3779
+ type MatchOccasionDetail = MatchOccasion & {
3780
+ can_be_cancelled_by_user: boolean;
3781
+ event: MatchEvent;
3782
+ external_services: Array<ExternalService>;
3783
+ participant_details: Array<ParticipantDetail>;
3784
+ price_list: Array<MatchPriceListEntry>;
3785
+ refund_policy: RefundPolicy;
3786
+ status: MatchStatus;
3787
+ user_status: UserParticipationStatus;
3788
+ };
3789
+ type MatchParticipants = {
3790
+ available: number;
3791
+ current: number;
3792
+ max: number;
3793
+ min?: number | null;
3794
+ users: Array<ParticipantSummary>;
3795
+ };
3796
+ type MatchPriceListEntry = {
3797
+ category_name: string;
3798
+ is_default_category: boolean;
3799
+ price: number | null;
3800
+ };
3801
+ declare const MatchStatus: {
3802
+ readonly OPEN: "OPEN";
3803
+ readonly FULL: "FULL";
3804
+ readonly REGISTRATION_CLOSED: "REGISTRATION_CLOSED";
3805
+ readonly REGISTRATION_NOT_OPEN: "REGISTRATION_NOT_OPEN";
3806
+ readonly CANCELLED: "CANCELLED";
3807
+ readonly COMPLETED: "COMPLETED";
3808
+ readonly MEMBERS_ONLY: "MEMBERS_ONLY";
3809
+ };
3810
+ type MatchStatus = typeof MatchStatus[keyof typeof MatchStatus];
3811
+ type MatchUserPrice = {
3812
+ applied_category: string;
3813
+ can_use_promo_code: boolean;
3814
+ currency: string;
3815
+ fee: number | null;
3816
+ ordinary_price: number;
3817
+ /**
3818
+ * Map of available payment methods keyed by method name
3819
+ */
3820
+ payment_methods: {
3821
+ [key: string]: unknown;
3822
+ };
3823
+ price: number;
3824
+ vat: number;
3825
+ };
3702
3826
  type Member = {
3703
3827
  first_name: string;
3704
3828
  last_name: string;
@@ -3777,12 +3901,35 @@ type NotificationsSummary = {
3777
3901
  global_unread_count: number;
3778
3902
  unread_count: number;
3779
3903
  };
3904
+ /**
3905
+ * Metadata about the offset based pagination for the result. This information is coupled with the OffsetParam and OffsetLimitParam. Intended to be used as the `meta` field in a list response, next to an `items` array field containing the data.
3906
+ *
3907
+ */
3908
+ type OffsetPaginatedResultSet = {
3909
+ limit: number;
3910
+ more_results: boolean;
3911
+ offset: number;
3912
+ total_count?: number;
3913
+ };
3780
3914
  type PaginationMeta = {
3781
3915
  pagination: PkgOpenapiSharedOffsetPaginatedResultSet;
3782
3916
  summary: {
3783
3917
  total: number;
3784
3918
  };
3785
3919
  };
3920
+ /**
3921
+ * Participant with join timestamp. Extends ParticipantSummary.
3922
+ */
3923
+ type ParticipantDetail = ParticipantSummary & {
3924
+ joined_at: string;
3925
+ };
3926
+ type ParticipantSummary = {
3927
+ first_name: string | null;
3928
+ last_name: string | null;
3929
+ level?: string | null;
3930
+ profile_image_url?: string | null;
3931
+ user_id: string | null;
3932
+ };
3786
3933
  type PatchCommentRequest = {
3787
3934
  is_read: boolean;
3788
3935
  };
@@ -3903,6 +4050,10 @@ type RecommendationList = {
3903
4050
  items: Array<Recommendation>;
3904
4051
  meta: PkgOpenapiSharedOffsetPaginatedResultSet;
3905
4052
  };
4053
+ type RefundPolicy = {
4054
+ args: Array<unknown>;
4055
+ code: string;
4056
+ } | null;
3906
4057
  type RegisterDeviceRequest = {
3907
4058
  app_version: string;
3908
4059
  fcm_token: string;
@@ -4033,6 +4184,12 @@ type UpdateUsersProfilesRequest = {
4033
4184
  telephone?: string;
4034
4185
  zipcode?: string;
4035
4186
  };
4187
+ declare const UserParticipationStatus: {
4188
+ readonly NOT_PARTICIPATING: "NOT_PARTICIPATING";
4189
+ readonly PARTICIPATING: "PARTICIPATING";
4190
+ readonly WAITLISTED: "WAITLISTED";
4191
+ };
4192
+ type UserParticipationStatus = typeof UserParticipationStatus[keyof typeof UserParticipationStatus];
4036
4193
  type UserProfile = {
4037
4194
  address?: string;
4038
4195
  birthday?: string;
@@ -4265,6 +4422,130 @@ type CreateFacilityOfferOrderResponses = {
4265
4422
  200: FacilityOfferOrder;
4266
4423
  };
4267
4424
  type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
4425
+ type ListMatchesData = {
4426
+ body?: never;
4427
+ path?: never;
4428
+ query: {
4429
+ /**
4430
+ * Start of date range (ISO 8601 UTC)
4431
+ */
4432
+ start_date_time: string;
4433
+ /**
4434
+ * End of date range (ISO 8601 UTC)
4435
+ */
4436
+ end_date_time: string;
4437
+ /**
4438
+ * Filter by facility IDs
4439
+ */
4440
+ facility_ids?: Array<number>;
4441
+ /**
4442
+ * Filter by sport IDs
4443
+ */
4444
+ sport_ids?: Array<number>;
4445
+ /**
4446
+ * Minimum number of available spots
4447
+ */
4448
+ available_spots?: number;
4449
+ /**
4450
+ * Number of items to skip before returning the results.
4451
+ */
4452
+ offset?: number;
4453
+ /**
4454
+ * Maximum number of items to return.
4455
+ */
4456
+ limit?: number;
4457
+ };
4458
+ url: '/matches';
4459
+ };
4460
+ type ListMatchesErrors = {
4461
+ /**
4462
+ * The request was malformed or could not be processed.
4463
+ */
4464
+ 400: PkgOpenapiSharedProblemDetails;
4465
+ /**
4466
+ * Access token is not set or invalid.
4467
+ */
4468
+ 401: PkgOpenapiSharedProblemDetails;
4469
+ /**
4470
+ * The server encountered an unexpected error
4471
+ */
4472
+ 500: PkgOpenapiSharedProblemDetails;
4473
+ };
4474
+ type ListMatchesError = ListMatchesErrors[keyof ListMatchesErrors];
4475
+ type ListMatchesResponses = {
4476
+ /**
4477
+ * OK
4478
+ */
4479
+ 200: MatchList;
4480
+ };
4481
+ type ListMatchesResponse = ListMatchesResponses[keyof ListMatchesResponses];
4482
+ type GetMatchData = {
4483
+ body?: never;
4484
+ path: {
4485
+ match_id: string;
4486
+ };
4487
+ query?: never;
4488
+ url: '/matches/{match_id}';
4489
+ };
4490
+ type GetMatchErrors = {
4491
+ /**
4492
+ * Access token is not set or invalid.
4493
+ */
4494
+ 401: PkgOpenapiSharedProblemDetails;
4495
+ /**
4496
+ * The requested resource was not found.
4497
+ */
4498
+ 404: PkgOpenapiSharedProblemDetails;
4499
+ /**
4500
+ * The server encountered an unexpected error
4501
+ */
4502
+ 500: PkgOpenapiSharedProblemDetails;
4503
+ };
4504
+ type GetMatchError = GetMatchErrors[keyof GetMatchErrors];
4505
+ type GetMatchResponses = {
4506
+ /**
4507
+ * OK
4508
+ */
4509
+ 200: MatchDetail;
4510
+ };
4511
+ type GetMatchResponse = GetMatchResponses[keyof GetMatchResponses];
4512
+ type GetMatchUserPriceData = {
4513
+ body?: never;
4514
+ path: {
4515
+ match_id: string;
4516
+ user_id: string;
4517
+ };
4518
+ query?: {
4519
+ promo_code?: string;
4520
+ };
4521
+ url: '/matches/{match_id}/prices/{user_id}';
4522
+ };
4523
+ type GetMatchUserPriceErrors = {
4524
+ /**
4525
+ * Access token is not set or invalid.
4526
+ */
4527
+ 401: PkgOpenapiSharedProblemDetails;
4528
+ /**
4529
+ * The requestor is not authorized to perform this operation on the resource.
4530
+ */
4531
+ 403: PkgOpenapiSharedProblemDetails;
4532
+ /**
4533
+ * The requested resource was not found.
4534
+ */
4535
+ 404: PkgOpenapiSharedProblemDetails;
4536
+ /**
4537
+ * The server encountered an unexpected error
4538
+ */
4539
+ 500: PkgOpenapiSharedProblemDetails;
4540
+ };
4541
+ type GetMatchUserPriceError = GetMatchUserPriceErrors[keyof GetMatchUserPriceErrors];
4542
+ type GetMatchUserPriceResponses = {
4543
+ /**
4544
+ * OK
4545
+ */
4546
+ 200: MatchUserPrice;
4547
+ };
4548
+ type GetMatchUserPriceResponse = GetMatchUserPriceResponses[keyof GetMatchUserPriceResponses];
4268
4549
  type GetNotificationsData = {
4269
4550
  body?: never;
4270
4551
  path?: never;
@@ -4694,6 +4975,11 @@ type GetRecommendationsData = {
4694
4975
  * Include sold-out events.
4695
4976
  */
4696
4977
  include_full?: boolean;
4978
+ /**
4979
+ * Caller's skill levels per sport for level-based filtering. JSON array of objects with "sport" (string) and "level" (number). Occasions where the caller's level is outside [level_min, level_max] are excluded. Omit to skip level filtering.
4980
+ *
4981
+ */
4982
+ caller_levels?: string;
4697
4983
  /**
4698
4984
  * Weight for social connection signal (0-5).
4699
4985
  */
@@ -4746,6 +5032,10 @@ type GetRecommendationsData = {
4746
5032
  url: '/users/{user_id}/recommendations';
4747
5033
  };
4748
5034
  type GetRecommendationsErrors = {
5035
+ /**
5036
+ * The request was malformed or could not be processed.
5037
+ */
5038
+ 400: PkgOpenapiSharedProblemDetails;
4749
5039
  /**
4750
5040
  * Access token is not set or invalid.
4751
5041
  */
@@ -5270,6 +5560,64 @@ declare const CreateSportProfileRequestSchema: {
5270
5560
  readonly required: readonly ["sport_id"];
5271
5561
  readonly type: "object";
5272
5562
  };
5563
+ declare const ExternalServiceSchema: {
5564
+ readonly properties: {
5565
+ readonly config: {
5566
+ readonly items: {
5567
+ readonly type: "object";
5568
+ };
5569
+ readonly type: "array";
5570
+ };
5571
+ readonly link: {
5572
+ readonly nullable: true;
5573
+ readonly type: "string";
5574
+ };
5575
+ readonly logo: {
5576
+ readonly nullable: true;
5577
+ readonly type: "string";
5578
+ };
5579
+ readonly name: {
5580
+ readonly type: "string";
5581
+ };
5582
+ };
5583
+ readonly required: readonly ["name"];
5584
+ readonly type: "object";
5585
+ };
5586
+ declare const FacilitySchema: {
5587
+ readonly properties: {
5588
+ readonly created_by: {
5589
+ readonly type: "string";
5590
+ };
5591
+ readonly id: {
5592
+ readonly format: "uuid";
5593
+ readonly type: "string";
5594
+ };
5595
+ readonly updated_at: {
5596
+ readonly format: "date-time";
5597
+ readonly type: "string";
5598
+ };
5599
+ readonly updated_by: {
5600
+ readonly type: "string";
5601
+ };
5602
+ };
5603
+ readonly required: readonly ["id"];
5604
+ readonly type: "object";
5605
+ };
5606
+ declare const FacilityListSchema: {
5607
+ readonly properties: {
5608
+ readonly items: {
5609
+ readonly items: {
5610
+ readonly $ref: "#/components/schemas/Facility";
5611
+ };
5612
+ readonly type: "array";
5613
+ };
5614
+ readonly meta: {
5615
+ readonly $ref: "#/components/schemas/OffsetPaginatedResultSet";
5616
+ };
5617
+ };
5618
+ readonly required: readonly ["items", "meta"];
5619
+ readonly type: "object";
5620
+ };
5273
5621
  declare const FacilityMessagePayloadSchema: {
5274
5622
  readonly properties: {
5275
5623
  readonly description: {
@@ -5605,71 +5953,383 @@ declare const LinkTypeSchema: {
5605
5953
  readonly enum: readonly ["activity", "match"];
5606
5954
  readonly type: "string";
5607
5955
  };
5608
- declare const MemberSchema: {
5956
+ declare const MatchSchema: {
5609
5957
  readonly properties: {
5610
- readonly first_name: {
5958
+ readonly court_id: {
5959
+ readonly format: "int64";
5960
+ readonly type: "integer";
5961
+ };
5962
+ readonly facility_id: {
5963
+ readonly format: "int64";
5964
+ readonly type: "integer";
5965
+ };
5966
+ readonly facility_name: {
5611
5967
  readonly type: "string";
5612
5968
  };
5613
- readonly last_name: {
5969
+ readonly id: {
5970
+ readonly format: "uuid";
5614
5971
  readonly type: "string";
5615
5972
  };
5616
- readonly profile_image_url: {
5973
+ readonly image_url: {
5974
+ readonly nullable: true;
5617
5975
  readonly type: "string";
5618
5976
  };
5619
- readonly relation_status: {
5620
- readonly $ref: "#/components/schemas/MemberRelation";
5977
+ readonly occasion: {
5978
+ readonly $ref: "#/components/schemas/MatchOccasion";
5621
5979
  };
5622
- readonly user_id: {
5623
- readonly format: "uuid";
5980
+ readonly sport_id: {
5981
+ readonly format: "int64";
5982
+ readonly nullable: true;
5983
+ readonly type: "integer";
5984
+ };
5985
+ readonly title: {
5624
5986
  readonly type: "string";
5625
5987
  };
5626
5988
  };
5627
- readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
5989
+ readonly required: readonly ["id", "title", "sport_id", "facility_id", "facility_name", "court_id", "occasion"];
5628
5990
  readonly type: "object";
5629
5991
  };
5630
- declare const MemberListResponseSchema: {
5992
+ declare const MatchBasePriceSchema: {
5631
5993
  readonly properties: {
5632
- readonly items: {
5633
- readonly items: {
5634
- readonly $ref: "#/components/schemas/Member";
5635
- };
5636
- readonly type: "array";
5994
+ readonly currency: {
5995
+ readonly type: "string";
5637
5996
  };
5638
- readonly meta: {
5639
- readonly $ref: "#/components/schemas/PaginationMeta";
5997
+ readonly default_price: {
5998
+ readonly type: "number";
5999
+ };
6000
+ readonly members_price: {
6001
+ readonly nullable: true;
6002
+ readonly type: "number";
5640
6003
  };
5641
6004
  };
5642
- readonly required: readonly ["items", "meta"];
6005
+ readonly required: readonly ["default_price", "currency"];
5643
6006
  readonly type: "object";
5644
6007
  };
5645
- declare const MemberRelationSchema: {
5646
- readonly description: "Returns :\n* `FRIENDS` - The user is a friend.\n* `OUTGOING` - The user has sent a friend request to the current user.\n* `INCOMING` - The user has received a friend request from the current user.\n* `NO_RELATION` - The user has no ongoing relation with the current user.\n* `BLOCK` - The user is blocked by the current user\n";
5647
- readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION", "BLOCK"];
5648
- readonly type: "string";
5649
- };
5650
- declare const MembershipStatusSchema: {
5651
- readonly enum: readonly ["ACTIVE", "INVITED", "LEFT"];
5652
- readonly type: "string";
5653
- };
5654
- declare const MetadataSchema: {
6008
+ declare const MatchCourtSchema: {
5655
6009
  readonly properties: {
5656
- readonly pagination: {
5657
- readonly $ref: "#/components/schemas/pkgOpenapiSharedCursorPaginatedResultSet";
6010
+ readonly id: {
6011
+ readonly format: "int64";
6012
+ readonly type: "integer";
5658
6013
  };
5659
- readonly summary: {
5660
- readonly $ref: "#/components/schemas/NotificationsSummary";
6014
+ readonly name: {
6015
+ readonly type: "string";
5661
6016
  };
5662
6017
  };
5663
- readonly required: readonly ["summary"];
6018
+ readonly required: readonly ["id", "name"];
5664
6019
  readonly type: "object";
5665
6020
  };
5666
- declare const NotificationSchema: {
5667
- readonly properties: {
5668
- readonly created_at: {
5669
- readonly format: "date-time";
5670
- readonly type: "string";
5671
- };
5672
- readonly id: {
6021
+ declare const MatchDetailSchema: {
6022
+ readonly allOf: readonly [{
6023
+ readonly $ref: "#/components/schemas/Match";
6024
+ }, {
6025
+ readonly properties: {
6026
+ readonly description: {
6027
+ readonly nullable: true;
6028
+ readonly type: "string";
6029
+ };
6030
+ readonly message_title: {
6031
+ readonly nullable: true;
6032
+ readonly type: "string";
6033
+ };
6034
+ readonly occasion: {
6035
+ readonly $ref: "#/components/schemas/MatchOccasionDetail";
6036
+ };
6037
+ readonly terms: {
6038
+ readonly nullable: true;
6039
+ readonly type: "string";
6040
+ };
6041
+ };
6042
+ readonly type: "object";
6043
+ }];
6044
+ readonly description: "Match for the detail view. Extends Match with description, terms, message_title and upgrades occasion to MatchOccasionDetail.\n";
6045
+ };
6046
+ declare const MatchEventSchema: {
6047
+ readonly nullable: true;
6048
+ readonly properties: {
6049
+ readonly name: {
6050
+ readonly type: "string";
6051
+ };
6052
+ readonly supported_by: {
6053
+ readonly nullable: true;
6054
+ readonly type: "string";
6055
+ };
6056
+ };
6057
+ readonly type: "object";
6058
+ };
6059
+ declare const MatchListSchema: {
6060
+ readonly properties: {
6061
+ readonly items: {
6062
+ readonly items: {
6063
+ readonly $ref: "#/components/schemas/Match";
6064
+ };
6065
+ readonly type: "array";
6066
+ };
6067
+ readonly meta: {
6068
+ readonly $ref: "#/components/schemas/OffsetPaginatedResultSet";
6069
+ };
6070
+ };
6071
+ readonly required: readonly ["items", "meta"];
6072
+ readonly type: "object";
6073
+ };
6074
+ declare const MatchOccasionSchema: {
6075
+ readonly properties: {
6076
+ readonly automatic_cancellation_date_time: {
6077
+ readonly format: "date-time";
6078
+ readonly nullable: true;
6079
+ readonly type: "string";
6080
+ };
6081
+ readonly courts: {
6082
+ readonly items: {
6083
+ readonly $ref: "#/components/schemas/MatchCourt";
6084
+ };
6085
+ readonly type: "array";
6086
+ };
6087
+ readonly end_date_time: {
6088
+ readonly format: "date-time";
6089
+ readonly type: "string";
6090
+ };
6091
+ readonly has_not_closed_registration: {
6092
+ readonly type: "boolean";
6093
+ };
6094
+ readonly has_opened_registration: {
6095
+ readonly type: "boolean";
6096
+ };
6097
+ readonly id: {
6098
+ readonly format: "int64";
6099
+ readonly type: "integer";
6100
+ };
6101
+ readonly is_bookable: {
6102
+ readonly type: "boolean";
6103
+ };
6104
+ readonly is_participating: {
6105
+ readonly type: "boolean";
6106
+ };
6107
+ readonly level_max: {
6108
+ readonly format: "int32";
6109
+ readonly nullable: true;
6110
+ readonly type: "integer";
6111
+ };
6112
+ readonly level_min: {
6113
+ readonly format: "int32";
6114
+ readonly nullable: true;
6115
+ readonly type: "integer";
6116
+ };
6117
+ readonly members_only: {
6118
+ readonly type: "boolean";
6119
+ };
6120
+ readonly message: {
6121
+ readonly nullable: true;
6122
+ readonly type: "string";
6123
+ };
6124
+ readonly participants: {
6125
+ readonly $ref: "#/components/schemas/MatchParticipants";
6126
+ };
6127
+ readonly price: {
6128
+ readonly $ref: "#/components/schemas/MatchBasePrice";
6129
+ };
6130
+ readonly start_date_time: {
6131
+ readonly format: "date-time";
6132
+ readonly type: "string";
6133
+ };
6134
+ readonly type: {
6135
+ readonly nullable: true;
6136
+ readonly type: "string";
6137
+ };
6138
+ };
6139
+ readonly required: readonly ["id", "start_date_time", "end_date_time", "courts", "participants", "price", "is_bookable", "is_participating", "has_opened_registration", "has_not_closed_registration", "members_only"];
6140
+ readonly type: "object";
6141
+ };
6142
+ declare const MatchOccasionDetailSchema: {
6143
+ readonly allOf: readonly [{
6144
+ readonly $ref: "#/components/schemas/MatchOccasion";
6145
+ }, {
6146
+ readonly properties: {
6147
+ readonly can_be_cancelled_by_user: {
6148
+ readonly type: "boolean";
6149
+ };
6150
+ readonly event: {
6151
+ readonly $ref: "#/components/schemas/MatchEvent";
6152
+ };
6153
+ readonly external_services: {
6154
+ readonly items: {
6155
+ readonly $ref: "#/components/schemas/ExternalService";
6156
+ };
6157
+ readonly type: "array";
6158
+ };
6159
+ readonly participant_details: {
6160
+ readonly items: {
6161
+ readonly $ref: "#/components/schemas/ParticipantDetail";
6162
+ };
6163
+ readonly type: "array";
6164
+ };
6165
+ readonly price_list: {
6166
+ readonly items: {
6167
+ readonly $ref: "#/components/schemas/MatchPriceListEntry";
6168
+ };
6169
+ readonly type: "array";
6170
+ };
6171
+ readonly refund_policy: {
6172
+ readonly $ref: "#/components/schemas/RefundPolicy";
6173
+ };
6174
+ readonly status: {
6175
+ readonly $ref: "#/components/schemas/MatchStatus";
6176
+ };
6177
+ readonly user_status: {
6178
+ readonly $ref: "#/components/schemas/UserParticipationStatus";
6179
+ };
6180
+ };
6181
+ readonly required: readonly ["price_list", "refund_policy", "can_be_cancelled_by_user", "participant_details", "status", "user_status", "external_services", "event"];
6182
+ readonly type: "object";
6183
+ }];
6184
+ readonly description: "Enriched occasion for the detail view. Extends MatchOccasion with price_list, refund_policy, can_be_cancelled_by_user, participant_details, status, user_status, external_services, event.\n";
6185
+ };
6186
+ declare const MatchParticipantsSchema: {
6187
+ readonly properties: {
6188
+ readonly available: {
6189
+ readonly format: "int32";
6190
+ readonly type: "integer";
6191
+ };
6192
+ readonly current: {
6193
+ readonly format: "int32";
6194
+ readonly type: "integer";
6195
+ };
6196
+ readonly max: {
6197
+ readonly format: "int32";
6198
+ readonly type: "integer";
6199
+ };
6200
+ readonly min: {
6201
+ readonly format: "int32";
6202
+ readonly nullable: true;
6203
+ readonly type: "integer";
6204
+ };
6205
+ readonly users: {
6206
+ readonly items: {
6207
+ readonly $ref: "#/components/schemas/ParticipantSummary";
6208
+ };
6209
+ readonly type: "array";
6210
+ };
6211
+ };
6212
+ readonly required: readonly ["current", "max", "available", "users"];
6213
+ readonly type: "object";
6214
+ };
6215
+ declare const MatchPriceListEntrySchema: {
6216
+ readonly properties: {
6217
+ readonly category_name: {
6218
+ readonly type: "string";
6219
+ };
6220
+ readonly is_default_category: {
6221
+ readonly type: "boolean";
6222
+ };
6223
+ readonly price: {
6224
+ readonly nullable: true;
6225
+ readonly type: "number";
6226
+ };
6227
+ };
6228
+ readonly required: readonly ["price", "category_name", "is_default_category"];
6229
+ readonly type: "object";
6230
+ };
6231
+ declare const MatchStatusSchema: {
6232
+ readonly enum: readonly ["OPEN", "FULL", "REGISTRATION_CLOSED", "REGISTRATION_NOT_OPEN", "CANCELLED", "COMPLETED", "MEMBERS_ONLY"];
6233
+ readonly type: "string";
6234
+ };
6235
+ declare const MatchUserPriceSchema: {
6236
+ readonly properties: {
6237
+ readonly applied_category: {
6238
+ readonly type: "string";
6239
+ };
6240
+ readonly can_use_promo_code: {
6241
+ readonly type: "boolean";
6242
+ };
6243
+ readonly currency: {
6244
+ readonly type: "string";
6245
+ };
6246
+ readonly fee: {
6247
+ readonly nullable: true;
6248
+ readonly type: "number";
6249
+ };
6250
+ readonly ordinary_price: {
6251
+ readonly type: "number";
6252
+ };
6253
+ readonly payment_methods: {
6254
+ readonly additionalProperties: true;
6255
+ readonly description: "Map of available payment methods keyed by method name";
6256
+ readonly type: "object";
6257
+ };
6258
+ readonly price: {
6259
+ readonly type: "number";
6260
+ };
6261
+ readonly vat: {
6262
+ readonly type: "number";
6263
+ };
6264
+ };
6265
+ readonly required: readonly ["price", "vat", "ordinary_price", "currency", "applied_category", "can_use_promo_code", "payment_methods", "fee"];
6266
+ readonly type: "object";
6267
+ };
6268
+ declare const MemberSchema: {
6269
+ readonly properties: {
6270
+ readonly first_name: {
6271
+ readonly type: "string";
6272
+ };
6273
+ readonly last_name: {
6274
+ readonly type: "string";
6275
+ };
6276
+ readonly profile_image_url: {
6277
+ readonly type: "string";
6278
+ };
6279
+ readonly relation_status: {
6280
+ readonly $ref: "#/components/schemas/MemberRelation";
6281
+ };
6282
+ readonly user_id: {
6283
+ readonly format: "uuid";
6284
+ readonly type: "string";
6285
+ };
6286
+ };
6287
+ readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
6288
+ readonly type: "object";
6289
+ };
6290
+ declare const MemberListResponseSchema: {
6291
+ readonly properties: {
6292
+ readonly items: {
6293
+ readonly items: {
6294
+ readonly $ref: "#/components/schemas/Member";
6295
+ };
6296
+ readonly type: "array";
6297
+ };
6298
+ readonly meta: {
6299
+ readonly $ref: "#/components/schemas/PaginationMeta";
6300
+ };
6301
+ };
6302
+ readonly required: readonly ["items", "meta"];
6303
+ readonly type: "object";
6304
+ };
6305
+ declare const MemberRelationSchema: {
6306
+ readonly description: "Returns :\n* `FRIENDS` - The user is a friend.\n* `OUTGOING` - The user has sent a friend request to the current user.\n* `INCOMING` - The user has received a friend request from the current user.\n* `NO_RELATION` - The user has no ongoing relation with the current user.\n* `BLOCK` - The user is blocked by the current user\n";
6307
+ readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION", "BLOCK"];
6308
+ readonly type: "string";
6309
+ };
6310
+ declare const MembershipStatusSchema: {
6311
+ readonly enum: readonly ["ACTIVE", "INVITED", "LEFT"];
6312
+ readonly type: "string";
6313
+ };
6314
+ declare const MetadataSchema: {
6315
+ readonly properties: {
6316
+ readonly pagination: {
6317
+ readonly $ref: "#/components/schemas/pkgOpenapiSharedCursorPaginatedResultSet";
6318
+ };
6319
+ readonly summary: {
6320
+ readonly $ref: "#/components/schemas/NotificationsSummary";
6321
+ };
6322
+ };
6323
+ readonly required: readonly ["summary"];
6324
+ readonly type: "object";
6325
+ };
6326
+ declare const NotificationSchema: {
6327
+ readonly properties: {
6328
+ readonly created_at: {
6329
+ readonly format: "date-time";
6330
+ readonly type: "string";
6331
+ };
6332
+ readonly id: {
5673
6333
  readonly format: "uuid";
5674
6334
  readonly type: "string";
5675
6335
  };
@@ -5754,6 +6414,25 @@ declare const NotificationsSummarySchema: {
5754
6414
  readonly required: readonly ["count", "unread_count", "global_count", "global_unread_count"];
5755
6415
  readonly type: "object";
5756
6416
  };
6417
+ declare const OffsetPaginatedResultSetSchema: {
6418
+ readonly description: "Metadata about the offset based pagination for the result. This information is coupled with the OffsetParam and OffsetLimitParam. Intended to be used as the `meta` field in a list response, next to an `items` array field containing the data.\n";
6419
+ readonly properties: {
6420
+ readonly limit: {
6421
+ readonly type: "integer";
6422
+ };
6423
+ readonly more_results: {
6424
+ readonly type: "boolean";
6425
+ };
6426
+ readonly offset: {
6427
+ readonly type: "integer";
6428
+ };
6429
+ readonly total_count: {
6430
+ readonly type: "integer";
6431
+ };
6432
+ };
6433
+ readonly required: readonly ["offset", "limit", "more_results"];
6434
+ readonly type: "object";
6435
+ };
5757
6436
  declare const PaginationMetaSchema: {
5758
6437
  readonly properties: {
5759
6438
  readonly pagination: {
@@ -5772,6 +6451,48 @@ declare const PaginationMetaSchema: {
5772
6451
  readonly required: readonly ["pagination", "summary"];
5773
6452
  readonly type: "object";
5774
6453
  };
6454
+ declare const ParticipantDetailSchema: {
6455
+ readonly allOf: readonly [{
6456
+ readonly $ref: "#/components/schemas/ParticipantSummary";
6457
+ }, {
6458
+ readonly properties: {
6459
+ readonly joined_at: {
6460
+ readonly format: "date-time";
6461
+ readonly type: "string";
6462
+ };
6463
+ };
6464
+ readonly required: readonly ["joined_at"];
6465
+ readonly type: "object";
6466
+ }];
6467
+ readonly description: "Participant with join timestamp. Extends ParticipantSummary.";
6468
+ };
6469
+ declare const ParticipantSummarySchema: {
6470
+ readonly properties: {
6471
+ readonly first_name: {
6472
+ readonly nullable: true;
6473
+ readonly type: "string";
6474
+ };
6475
+ readonly last_name: {
6476
+ readonly nullable: true;
6477
+ readonly type: "string";
6478
+ };
6479
+ readonly level: {
6480
+ readonly nullable: true;
6481
+ readonly type: "string";
6482
+ };
6483
+ readonly profile_image_url: {
6484
+ readonly nullable: true;
6485
+ readonly type: "string";
6486
+ };
6487
+ readonly user_id: {
6488
+ readonly format: "uuid";
6489
+ readonly nullable: true;
6490
+ readonly type: "string";
6491
+ };
6492
+ };
6493
+ readonly required: readonly ["user_id", "first_name", "last_name"];
6494
+ readonly type: "object";
6495
+ };
5775
6496
  declare const PatchCommentRequestSchema: {
5776
6497
  readonly properties: {
5777
6498
  readonly is_read: {
@@ -6011,6 +6732,20 @@ declare const RecommendationListSchema: {
6011
6732
  readonly required: readonly ["items", "meta"];
6012
6733
  readonly type: "object";
6013
6734
  };
6735
+ declare const RefundPolicySchema: {
6736
+ readonly nullable: true;
6737
+ readonly properties: {
6738
+ readonly args: {
6739
+ readonly items: {};
6740
+ readonly type: "array";
6741
+ };
6742
+ readonly code: {
6743
+ readonly type: "string";
6744
+ };
6745
+ };
6746
+ readonly required: readonly ["code", "args"];
6747
+ readonly type: "object";
6748
+ };
6014
6749
  declare const RegisterDeviceRequestSchema: {
6015
6750
  readonly properties: {
6016
6751
  readonly app_version: {
@@ -6272,6 +7007,10 @@ declare const UpdateUsersProfilesRequestSchema: {
6272
7007
  };
6273
7008
  readonly type: "object";
6274
7009
  };
7010
+ declare const UserParticipationStatusSchema: {
7011
+ readonly enum: readonly ["NOT_PARTICIPATING", "PARTICIPATING", "WAITLISTED"];
7012
+ readonly type: "string";
7013
+ };
6275
7014
  declare const UserProfileSchema: {
6276
7015
  readonly properties: {
6277
7016
  readonly address: {
@@ -6460,6 +7199,8 @@ declare const schemas_gen_CreateCommentRequestSchema: typeof CreateCommentReques
6460
7199
  declare const schemas_gen_CreatePostRequestSchema: typeof CreatePostRequestSchema;
6461
7200
  declare const schemas_gen_CreateSportProfileLevelRequestSchema: typeof CreateSportProfileLevelRequestSchema;
6462
7201
  declare const schemas_gen_CreateSportProfileRequestSchema: typeof CreateSportProfileRequestSchema;
7202
+ declare const schemas_gen_ExternalServiceSchema: typeof ExternalServiceSchema;
7203
+ declare const schemas_gen_FacilityListSchema: typeof FacilityListSchema;
6463
7204
  declare const schemas_gen_FacilityMessagePayloadSchema: typeof FacilityMessagePayloadSchema;
6464
7205
  declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof FacilityOfferConditionActivitiesSchema;
6465
7206
  declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
@@ -6474,9 +7215,22 @@ declare const schemas_gen_FacilityOfferSchema: typeof FacilityOfferSchema;
6474
7215
  declare const schemas_gen_FacilityPermissionSchema: typeof FacilityPermissionSchema;
6475
7216
  declare const schemas_gen_FacilityPermissionsResponseSchema: typeof FacilityPermissionsResponseSchema;
6476
7217
  declare const schemas_gen_FacilityPunchCardDataSchema: typeof FacilityPunchCardDataSchema;
7218
+ declare const schemas_gen_FacilitySchema: typeof FacilitySchema;
6477
7219
  declare const schemas_gen_FacilityValueCardDataSchema: typeof FacilityValueCardDataSchema;
6478
7220
  declare const schemas_gen_GenderSchema: typeof GenderSchema;
6479
7221
  declare const schemas_gen_LinkTypeSchema: typeof LinkTypeSchema;
7222
+ declare const schemas_gen_MatchBasePriceSchema: typeof MatchBasePriceSchema;
7223
+ declare const schemas_gen_MatchCourtSchema: typeof MatchCourtSchema;
7224
+ declare const schemas_gen_MatchDetailSchema: typeof MatchDetailSchema;
7225
+ declare const schemas_gen_MatchEventSchema: typeof MatchEventSchema;
7226
+ declare const schemas_gen_MatchListSchema: typeof MatchListSchema;
7227
+ declare const schemas_gen_MatchOccasionDetailSchema: typeof MatchOccasionDetailSchema;
7228
+ declare const schemas_gen_MatchOccasionSchema: typeof MatchOccasionSchema;
7229
+ declare const schemas_gen_MatchParticipantsSchema: typeof MatchParticipantsSchema;
7230
+ declare const schemas_gen_MatchPriceListEntrySchema: typeof MatchPriceListEntrySchema;
7231
+ declare const schemas_gen_MatchSchema: typeof MatchSchema;
7232
+ declare const schemas_gen_MatchStatusSchema: typeof MatchStatusSchema;
7233
+ declare const schemas_gen_MatchUserPriceSchema: typeof MatchUserPriceSchema;
6480
7234
  declare const schemas_gen_MemberListResponseSchema: typeof MemberListResponseSchema;
6481
7235
  declare const schemas_gen_MemberRelationSchema: typeof MemberRelationSchema;
6482
7236
  declare const schemas_gen_MemberSchema: typeof MemberSchema;
@@ -6488,7 +7242,10 @@ declare const schemas_gen_NotificationSchema: typeof NotificationSchema;
6488
7242
  declare const schemas_gen_NotificationsFilterSchema: typeof NotificationsFilterSchema;
6489
7243
  declare const schemas_gen_NotificationsPaginatedResponseSchema: typeof NotificationsPaginatedResponseSchema;
6490
7244
  declare const schemas_gen_NotificationsSummarySchema: typeof NotificationsSummarySchema;
7245
+ declare const schemas_gen_OffsetPaginatedResultSetSchema: typeof OffsetPaginatedResultSetSchema;
6491
7246
  declare const schemas_gen_PaginationMetaSchema: typeof PaginationMetaSchema;
7247
+ declare const schemas_gen_ParticipantDetailSchema: typeof ParticipantDetailSchema;
7248
+ declare const schemas_gen_ParticipantSummarySchema: typeof ParticipantSummarySchema;
6492
7249
  declare const schemas_gen_PatchCommentRequestSchema: typeof PatchCommentRequestSchema;
6493
7250
  declare const schemas_gen_PatchPostRequestSchema: typeof PatchPostRequestSchema;
6494
7251
  declare const schemas_gen_PostLinkSchema: typeof PostLinkSchema;
@@ -6499,6 +7256,7 @@ declare const schemas_gen_PreferenceSchema: typeof PreferenceSchema;
6499
7256
  declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseSchema;
6500
7257
  declare const schemas_gen_RecommendationListSchema: typeof RecommendationListSchema;
6501
7258
  declare const schemas_gen_RecommendationSchema: typeof RecommendationSchema;
7259
+ declare const schemas_gen_RefundPolicySchema: typeof RefundPolicySchema;
6502
7260
  declare const schemas_gen_RegisterDeviceRequestSchema: typeof RegisterDeviceRequestSchema;
6503
7261
  declare const schemas_gen_SourceSchema: typeof SourceSchema;
6504
7262
  declare const schemas_gen_SportAuthoritiesResponseSchema: typeof SportAuthoritiesResponseSchema;
@@ -6512,6 +7270,7 @@ declare const schemas_gen_TopicSchema: typeof TopicSchema;
6512
7270
  declare const schemas_gen_UpdatePreferencesRequestBodySchema: typeof UpdatePreferencesRequestBodySchema;
6513
7271
  declare const schemas_gen_UpdateSportProfileLevelRequestSchema: typeof UpdateSportProfileLevelRequestSchema;
6514
7272
  declare const schemas_gen_UpdateUsersProfilesRequestSchema: typeof UpdateUsersProfilesRequestSchema;
7273
+ declare const schemas_gen_UserParticipationStatusSchema: typeof UserParticipationStatusSchema;
6515
7274
  declare const schemas_gen_UserProfileSchema: typeof UserProfileSchema;
6516
7275
  declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
6517
7276
  declare const schemas_gen_UsersProfilesPaginatedResponseSchema: typeof UsersProfilesPaginatedResponseSchema;
@@ -6522,7 +7281,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
6522
7281
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
6523
7282
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
6524
7283
  declare namespace schemas_gen {
6525
- 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_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, 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_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, 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_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, 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_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_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 };
7284
+ 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_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_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 };
6526
7285
  }
6527
7286
 
6528
7287
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -6550,6 +7309,24 @@ declare const listFacilityOffers: <ThrowOnError extends boolean = false>(options
6550
7309
  * Will create a facility offer order and return the order object
6551
7310
  */
6552
7311
  declare const createFacilityOfferOrder: <ThrowOnError extends boolean = false>(options: Options<CreateFacilityOfferOrderData, ThrowOnError>) => RequestResult<CreateFacilityOfferOrderResponses, CreateFacilityOfferOrderErrors, ThrowOnError, "fields">;
7312
+ /**
7313
+ * List matches
7314
+ *
7315
+ * List venue-created matches filtered by date range and optional criteria
7316
+ */
7317
+ declare const listMatches: <ThrowOnError extends boolean = false>(options: Options<ListMatchesData, ThrowOnError>) => RequestResult<ListMatchesResponses, ListMatchesErrors, ThrowOnError, "fields">;
7318
+ /**
7319
+ * Get match detail
7320
+ *
7321
+ * Get detailed information about a specific match
7322
+ */
7323
+ declare const getMatch: <ThrowOnError extends boolean = false>(options: Options<GetMatchData, ThrowOnError>) => RequestResult<GetMatchResponses, GetMatchErrors, ThrowOnError, "fields">;
7324
+ /**
7325
+ * Get user-specific match pricing
7326
+ *
7327
+ * Get personalized pricing for a match. The path user_id must match the authenticated user.
7328
+ */
7329
+ declare const getMatchUserPrice: <ThrowOnError extends boolean = false>(options: Options<GetMatchUserPriceData, ThrowOnError>) => RequestResult<GetMatchUserPriceResponses, GetMatchUserPriceErrors, ThrowOnError, "fields">;
6553
7330
  /**
6554
7331
  * Get all notifications
6555
7332
  *
@@ -6729,6 +7506,122 @@ declare const listFacilityOffersInfiniteOptions: (options: Options<ListFacilityO
6729
7506
  * Will create a facility offer order and return the order object
6730
7507
  */
6731
7508
  declare const createFacilityOfferOrderMutation: (options?: Partial<Options<CreateFacilityOfferOrderData>>) => UseMutationOptions<CreateFacilityOfferOrderResponse, CreateFacilityOfferOrderError, Options<CreateFacilityOfferOrderData>>;
7509
+ declare const listMatchesQueryKey: (options: Options<ListMatchesData>) => [Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7510
+ _id: string;
7511
+ _infinite?: boolean;
7512
+ tags?: ReadonlyArray<string>;
7513
+ }];
7514
+ /**
7515
+ * List matches
7516
+ *
7517
+ * List venue-created matches filtered by date range and optional criteria
7518
+ */
7519
+ declare const listMatchesOptions: (options: Options<ListMatchesData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<MatchList, PkgOpenapiSharedProblemDetails, MatchList, [Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7520
+ _id: string;
7521
+ _infinite?: boolean;
7522
+ tags?: ReadonlyArray<string>;
7523
+ }]>, "queryFn"> & {
7524
+ queryFn?: _tanstack_react_query.QueryFunction<MatchList, [Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7525
+ _id: string;
7526
+ _infinite?: boolean;
7527
+ tags?: ReadonlyArray<string>;
7528
+ }], never> | undefined;
7529
+ } & {
7530
+ queryKey: [Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7531
+ _id: string;
7532
+ _infinite?: boolean;
7533
+ tags?: ReadonlyArray<string>;
7534
+ }] & {
7535
+ [dataTagSymbol]: MatchList;
7536
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
7537
+ };
7538
+ };
7539
+ declare const listMatchesInfiniteQueryKey: (options: Options<ListMatchesData>) => QueryKey<Options<ListMatchesData>>;
7540
+ /**
7541
+ * List matches
7542
+ *
7543
+ * List venue-created matches filtered by date range and optional criteria
7544
+ */
7545
+ declare const listMatchesInfiniteOptions: (options: Options<ListMatchesData>) => _tanstack_react_query.UseInfiniteQueryOptions<MatchList, PkgOpenapiSharedProblemDetails, InfiniteData<MatchList, unknown>, QueryKey<Options<ListMatchesData>>, number | Pick<Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7546
+ _id: string;
7547
+ _infinite?: boolean;
7548
+ tags?: ReadonlyArray<string>;
7549
+ }, "query" | "body" | "headers" | "path">> & {
7550
+ initialData: InfiniteData<MatchList, number | Pick<Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7551
+ _id: string;
7552
+ _infinite?: boolean;
7553
+ tags?: ReadonlyArray<string>;
7554
+ }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<MatchList, number | Pick<Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7555
+ _id: string;
7556
+ _infinite?: boolean;
7557
+ tags?: ReadonlyArray<string>;
7558
+ }, "query" | "body" | "headers" | "path">>) | undefined;
7559
+ } & {
7560
+ queryKey: QueryKey<Options<ListMatchesData>> & {
7561
+ [dataTagSymbol]: InfiniteData<MatchList, unknown>;
7562
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
7563
+ };
7564
+ };
7565
+ declare const getMatchQueryKey: (options: Options<GetMatchData>) => [Pick<Options<GetMatchData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7566
+ _id: string;
7567
+ _infinite?: boolean;
7568
+ tags?: ReadonlyArray<string>;
7569
+ }];
7570
+ /**
7571
+ * Get match detail
7572
+ *
7573
+ * Get detailed information about a specific match
7574
+ */
7575
+ declare const getMatchOptions: (options: Options<GetMatchData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<MatchDetail, PkgOpenapiSharedProblemDetails, MatchDetail, [Pick<Options<GetMatchData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7576
+ _id: string;
7577
+ _infinite?: boolean;
7578
+ tags?: ReadonlyArray<string>;
7579
+ }]>, "queryFn"> & {
7580
+ queryFn?: _tanstack_react_query.QueryFunction<MatchDetail, [Pick<Options<GetMatchData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7581
+ _id: string;
7582
+ _infinite?: boolean;
7583
+ tags?: ReadonlyArray<string>;
7584
+ }], never> | undefined;
7585
+ } & {
7586
+ queryKey: [Pick<Options<GetMatchData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7587
+ _id: string;
7588
+ _infinite?: boolean;
7589
+ tags?: ReadonlyArray<string>;
7590
+ }] & {
7591
+ [dataTagSymbol]: MatchDetail;
7592
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
7593
+ };
7594
+ };
7595
+ declare const getMatchUserPriceQueryKey: (options: Options<GetMatchUserPriceData>) => [Pick<Options<GetMatchUserPriceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7596
+ _id: string;
7597
+ _infinite?: boolean;
7598
+ tags?: ReadonlyArray<string>;
7599
+ }];
7600
+ /**
7601
+ * Get user-specific match pricing
7602
+ *
7603
+ * Get personalized pricing for a match. The path user_id must match the authenticated user.
7604
+ */
7605
+ declare const getMatchUserPriceOptions: (options: Options<GetMatchUserPriceData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<MatchUserPrice, PkgOpenapiSharedProblemDetails, MatchUserPrice, [Pick<Options<GetMatchUserPriceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7606
+ _id: string;
7607
+ _infinite?: boolean;
7608
+ tags?: ReadonlyArray<string>;
7609
+ }]>, "queryFn"> & {
7610
+ queryFn?: _tanstack_react_query.QueryFunction<MatchUserPrice, [Pick<Options<GetMatchUserPriceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7611
+ _id: string;
7612
+ _infinite?: boolean;
7613
+ tags?: ReadonlyArray<string>;
7614
+ }], never> | undefined;
7615
+ } & {
7616
+ queryKey: [Pick<Options<GetMatchUserPriceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7617
+ _id: string;
7618
+ _infinite?: boolean;
7619
+ tags?: ReadonlyArray<string>;
7620
+ }] & {
7621
+ [dataTagSymbol]: MatchUserPrice;
7622
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
7623
+ };
7624
+ };
6732
7625
  declare const getNotificationsQueryKey: (options?: Options<GetNotificationsData>) => [Pick<Options<GetNotificationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6733
7626
  _id: string;
6734
7627
  _infinite?: boolean;
@@ -7140,6 +8033,10 @@ declare const reactQuery_gen_createFacilityOfferOrderMutation: typeof createFaci
7140
8033
  declare const reactQuery_gen_createUserSportProfileMutation: typeof createUserSportProfileMutation;
7141
8034
  declare const reactQuery_gen_deleteUserSportProfileLevelMutation: typeof deleteUserSportProfileLevelMutation;
7142
8035
  declare const reactQuery_gen_deleteUserSportProfileMutation: typeof deleteUserSportProfileMutation;
8036
+ declare const reactQuery_gen_getMatchOptions: typeof getMatchOptions;
8037
+ declare const reactQuery_gen_getMatchQueryKey: typeof getMatchQueryKey;
8038
+ declare const reactQuery_gen_getMatchUserPriceOptions: typeof getMatchUserPriceOptions;
8039
+ declare const reactQuery_gen_getMatchUserPriceQueryKey: typeof getMatchUserPriceQueryKey;
7143
8040
  declare const reactQuery_gen_getNotificationByIdOptions: typeof getNotificationByIdOptions;
7144
8041
  declare const reactQuery_gen_getNotificationByIdQueryKey: typeof getNotificationByIdQueryKey;
7145
8042
  declare const reactQuery_gen_getNotificationsInfiniteOptions: typeof getNotificationsInfiniteOptions;
@@ -7164,6 +8061,10 @@ declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacil
7164
8061
  declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
7165
8062
  declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
7166
8063
  declare const reactQuery_gen_listFacilityOffersQueryKey: typeof listFacilityOffersQueryKey;
8064
+ declare const reactQuery_gen_listMatchesInfiniteOptions: typeof listMatchesInfiniteOptions;
8065
+ declare const reactQuery_gen_listMatchesInfiniteQueryKey: typeof listMatchesInfiniteQueryKey;
8066
+ declare const reactQuery_gen_listMatchesOptions: typeof listMatchesOptions;
8067
+ declare const reactQuery_gen_listMatchesQueryKey: typeof listMatchesQueryKey;
7167
8068
  declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
7168
8069
  declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
7169
8070
  declare const reactQuery_gen_searchUsersOptions: typeof searchUsersOptions;
@@ -7174,7 +8075,7 @@ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof upda
7174
8075
  declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
7175
8076
  declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
7176
8077
  declare namespace reactQuery_gen {
7177
- export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, 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_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 };
8078
+ export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, 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_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 };
7178
8079
  }
7179
8080
 
7180
8081
  type indexV1_AddUserSportProfileLevelData = AddUserSportProfileLevelData;
@@ -7216,7 +8117,10 @@ type indexV1_DeleteUserSportProfileLevelResponse = DeleteUserSportProfileLevelRe
7216
8117
  type indexV1_DeleteUserSportProfileLevelResponses = DeleteUserSportProfileLevelResponses;
7217
8118
  type indexV1_DeleteUserSportProfileResponse = DeleteUserSportProfileResponse;
7218
8119
  type indexV1_DeleteUserSportProfileResponses = DeleteUserSportProfileResponses;
8120
+ type indexV1_ExternalService = ExternalService;
8121
+ type indexV1_Facility = Facility;
7219
8122
  type indexV1_FacilityIdPath = FacilityIdPath;
8123
+ type indexV1_FacilityList = FacilityList;
7220
8124
  type indexV1_FacilityMessagePayload = FacilityMessagePayload;
7221
8125
  type indexV1_FacilityOffer = FacilityOffer;
7222
8126
  type indexV1_FacilityOfferCondition = FacilityOfferCondition;
@@ -7233,6 +8137,16 @@ type indexV1_FacilityPermissionsResponse = FacilityPermissionsResponse;
7233
8137
  type indexV1_FacilityPunchCardData = FacilityPunchCardData;
7234
8138
  type indexV1_FacilityValueCardData = FacilityValueCardData;
7235
8139
  type indexV1_Gender = Gender;
8140
+ type indexV1_GetMatchData = GetMatchData;
8141
+ type indexV1_GetMatchError = GetMatchError;
8142
+ type indexV1_GetMatchErrors = GetMatchErrors;
8143
+ type indexV1_GetMatchResponse = GetMatchResponse;
8144
+ type indexV1_GetMatchResponses = GetMatchResponses;
8145
+ type indexV1_GetMatchUserPriceData = GetMatchUserPriceData;
8146
+ type indexV1_GetMatchUserPriceError = GetMatchUserPriceError;
8147
+ type indexV1_GetMatchUserPriceErrors = GetMatchUserPriceErrors;
8148
+ type indexV1_GetMatchUserPriceResponse = GetMatchUserPriceResponse;
8149
+ type indexV1_GetMatchUserPriceResponses = GetMatchUserPriceResponses;
7236
8150
  type indexV1_GetNotificationByIdData = GetNotificationByIdData;
7237
8151
  type indexV1_GetNotificationByIdError = GetNotificationByIdError;
7238
8152
  type indexV1_GetNotificationByIdErrors = GetNotificationByIdErrors;
@@ -7279,6 +8193,23 @@ type indexV1_ListFacilityOffersError = ListFacilityOffersError;
7279
8193
  type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
7280
8194
  type indexV1_ListFacilityOffersResponse = ListFacilityOffersResponse;
7281
8195
  type indexV1_ListFacilityOffersResponses = ListFacilityOffersResponses;
8196
+ type indexV1_ListMatchesData = ListMatchesData;
8197
+ type indexV1_ListMatchesError = ListMatchesError;
8198
+ type indexV1_ListMatchesErrors = ListMatchesErrors;
8199
+ type indexV1_ListMatchesResponse = ListMatchesResponse;
8200
+ type indexV1_ListMatchesResponses = ListMatchesResponses;
8201
+ type indexV1_Match = Match;
8202
+ type indexV1_MatchBasePrice = MatchBasePrice;
8203
+ type indexV1_MatchCourt = MatchCourt;
8204
+ type indexV1_MatchDetail = MatchDetail;
8205
+ type indexV1_MatchEvent = MatchEvent;
8206
+ type indexV1_MatchList = MatchList;
8207
+ type indexV1_MatchOccasion = MatchOccasion;
8208
+ type indexV1_MatchOccasionDetail = MatchOccasionDetail;
8209
+ type indexV1_MatchParticipants = MatchParticipants;
8210
+ type indexV1_MatchPriceListEntry = MatchPriceListEntry;
8211
+ type indexV1_MatchStatus = MatchStatus;
8212
+ type indexV1_MatchUserPrice = MatchUserPrice;
7282
8213
  type indexV1_Member = Member;
7283
8214
  type indexV1_MemberListResponse = MemberListResponse;
7284
8215
  type indexV1_MemberRelation = MemberRelation;
@@ -7292,8 +8223,11 @@ type indexV1_NotificationsFilterParam = NotificationsFilterParam;
7292
8223
  type indexV1_NotificationsPaginatedResponse = NotificationsPaginatedResponse;
7293
8224
  type indexV1_NotificationsSummary = NotificationsSummary;
7294
8225
  type indexV1_OfferIdPath = OfferIdPath;
8226
+ type indexV1_OffsetPaginatedResultSet = OffsetPaginatedResultSet;
7295
8227
  type indexV1_Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options<TData, ThrowOnError>;
7296
8228
  type indexV1_PaginationMeta = PaginationMeta;
8229
+ type indexV1_ParticipantDetail = ParticipantDetail;
8230
+ type indexV1_ParticipantSummary = ParticipantSummary;
7297
8231
  type indexV1_PatchCommentRequest = PatchCommentRequest;
7298
8232
  type indexV1_PatchPostRequest = PatchPostRequest;
7299
8233
  type indexV1_PkgOpenapiSharedCursorLimitParam = PkgOpenapiSharedCursorLimitParam;
@@ -7314,6 +8248,7 @@ type indexV1_Preference = Preference;
7314
8248
  type indexV1_PreferencesResponse = PreferencesResponse;
7315
8249
  type indexV1_Recommendation = Recommendation;
7316
8250
  type indexV1_RecommendationList = RecommendationList;
8251
+ type indexV1_RefundPolicy = RefundPolicy;
7317
8252
  type indexV1_RegisterDeviceRequest = RegisterDeviceRequest;
7318
8253
  type indexV1_SearchUsersData = SearchUsersData;
7319
8254
  type indexV1_SearchUsersError = SearchUsersError;
@@ -7360,6 +8295,7 @@ type indexV1_UpdateUserSportProfileLevelResponses = UpdateUserSportProfileLevelR
7360
8295
  type indexV1_UpdateUsersProfilesRequest = UpdateUsersProfilesRequest;
7361
8296
  type indexV1_UserId = UserId;
7362
8297
  type indexV1_UserIdParam = UserIdParam;
8298
+ type indexV1_UserParticipationStatus = UserParticipationStatus;
7363
8299
  type indexV1_UserProfile = UserProfile;
7364
8300
  type indexV1_UserRelation = UserRelation;
7365
8301
  type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
@@ -7370,6 +8306,8 @@ declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
7370
8306
  declare const indexV1_createUserSportProfile: typeof createUserSportProfile;
7371
8307
  declare const indexV1_deleteUserSportProfile: typeof deleteUserSportProfile;
7372
8308
  declare const indexV1_deleteUserSportProfileLevel: typeof deleteUserSportProfileLevel;
8309
+ declare const indexV1_getMatch: typeof getMatch;
8310
+ declare const indexV1_getMatchUserPrice: typeof getMatchUserPrice;
7373
8311
  declare const indexV1_getNotificationById: typeof getNotificationById;
7374
8312
  declare const indexV1_getNotifications: typeof getNotifications;
7375
8313
  declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
@@ -7379,6 +8317,7 @@ declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissi
7379
8317
  declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
7380
8318
  declare const indexV1_getUserSportProfiles: typeof getUserSportProfiles;
7381
8319
  declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
8320
+ declare const indexV1_listMatches: typeof listMatches;
7382
8321
  declare const indexV1_searchUsers: typeof searchUsers;
7383
8322
  declare const indexV1_updateAllNotifications: typeof updateAllNotifications;
7384
8323
  declare const indexV1_updateNotification: typeof updateNotification;
@@ -7386,7 +8325,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
7386
8325
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
7387
8326
  declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
7388
8327
  declare namespace indexV1 {
7389
- 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_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_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_FacilityIdPath as FacilityIdPath, 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_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_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_Options as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, 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_RegisterDeviceRequest as RegisterDeviceRequest, 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_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_createUserSportProfile as createUserSportProfile, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, 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, reactQuery_gen as queries, 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 };
8328
+ 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_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_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_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_RegisterDeviceRequest as RegisterDeviceRequest, 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_createUserSportProfile as createUserSportProfile, 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, 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 };
7390
8329
  }
7391
8330
 
7392
8331
  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 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 };