@matchi/api 0.20260318.2 → 0.20260324.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.
@@ -622,6 +622,14 @@ type coupon = {
622
622
 
623
623
  type paymentMethods = {
624
624
  coupons: Array<coupon>;
625
+ /**
626
+ * Adyen checkout session ID, present after gift card partial payment
627
+ */
628
+ pspSessionId?: string | null;
629
+ /**
630
+ * Adyen checkout session data, present after gift card partial payment
631
+ */
632
+ pspSessionData?: string | null;
625
633
  };
626
634
 
627
635
  type promoCodeOutcome = {
@@ -3523,6 +3531,24 @@ type Channels = {
3523
3531
  inapp: boolean;
3524
3532
  push: boolean;
3525
3533
  };
3534
+ type CreateSportProfileLevelRequest = {
3535
+ /**
3536
+ * Rating authority (defaults to "matchi" if omitted)
3537
+ */
3538
+ authority_slug?: string;
3539
+ level: string;
3540
+ };
3541
+ type CreateSportProfileRequest = {
3542
+ /**
3543
+ * Initial authority (defaults to "matchi" if omitted)
3544
+ */
3545
+ authority_slug?: string;
3546
+ /**
3547
+ * Initial level value (omit to create an empty profile)
3548
+ */
3549
+ level?: string;
3550
+ sport_id: number;
3551
+ };
3526
3552
  type FacilityMessagePayload = {
3527
3553
  description: string;
3528
3554
  image_url?: string;
@@ -3668,12 +3694,105 @@ type PreferencesResponse = {
3668
3694
  type RegisterDeviceRequest = {
3669
3695
  app_version: string;
3670
3696
  fcm_token: string;
3697
+ /**
3698
+ * User's preferred language for push notifications.
3699
+ */
3700
+ language?: string;
3671
3701
  os: 'ios' | 'android';
3672
3702
  };
3673
3703
  declare const Source: {
3674
3704
  readonly FACILITY: "FACILITY";
3675
3705
  };
3676
3706
  type Source = typeof Source[keyof typeof Source];
3707
+ type SportAuthoritiesResponse = {
3708
+ items: Array<SportAuthority>;
3709
+ };
3710
+ type SportAuthority = {
3711
+ /**
3712
+ * Background color for UI display (hex)
3713
+ */
3714
+ bg_color: string;
3715
+ /**
3716
+ * Country code this authority is restricted to; null means all countries
3717
+ */
3718
+ country?: string | null;
3719
+ /**
3720
+ * Short label shown in badges (e.g. "M", "DK")
3721
+ */
3722
+ display_text: string;
3723
+ /**
3724
+ * Foreground/text color for UI display (hex)
3725
+ */
3726
+ fore_color: string;
3727
+ /**
3728
+ * Maximum allowed level value
3729
+ */
3730
+ max_level: number;
3731
+ /**
3732
+ * Minimum allowed level value
3733
+ */
3734
+ min_level: number;
3735
+ /**
3736
+ * Display name of the authority
3737
+ */
3738
+ name: string;
3739
+ /**
3740
+ * Unique authority slug (e.g. "matchi", "dk-padel")
3741
+ */
3742
+ slug: string;
3743
+ /**
3744
+ * Sport this authority applies to; null means all sports
3745
+ */
3746
+ sport_id?: number | null;
3747
+ /**
3748
+ * Fixed step increment between levels as a decimal string (e.g. "0.5"); null means no fixed step
3749
+ */
3750
+ step_size?: string | null;
3751
+ };
3752
+ /**
3753
+ * A flattened sport level entry — used in search results for matchmaking.
3754
+ */
3755
+ type SportLevel = {
3756
+ authority_slug: string;
3757
+ level: string;
3758
+ sport_id: number;
3759
+ };
3760
+ type SportProfile = {
3761
+ /**
3762
+ * Skill ratings for individual aspects of the sport
3763
+ */
3764
+ attributes?: Array<SportProfileAttribute> | null;
3765
+ /**
3766
+ * How often the user plays
3767
+ */
3768
+ frequency?: 'MONTHLY' | 'WEEKLY' | 'WEEKLY_FREQUENT' | 'YEARLY';
3769
+ /**
3770
+ * The sport profile ID
3771
+ */
3772
+ id: number;
3773
+ levels: Array<SportProfileLevel>;
3774
+ sport_id: number;
3775
+ };
3776
+ type SportProfileAttribute = {
3777
+ /**
3778
+ * Attribute name (e.g. BACKHAND, FOREHAND, SERVE)
3779
+ */
3780
+ name: string;
3781
+ /**
3782
+ * Skill level for this attribute
3783
+ */
3784
+ skill_level: number;
3785
+ };
3786
+ type SportProfileLevel = {
3787
+ /**
3788
+ * Rating authority (e.g. "matchi", "dk-padel")
3789
+ */
3790
+ authority_slug: string;
3791
+ level: string;
3792
+ };
3793
+ type SportProfilesResponse = {
3794
+ items: Array<SportProfile>;
3795
+ };
3677
3796
  declare const Topic: {
3678
3797
  readonly FACILITY_MESSAGE: "FACILITY_MESSAGE";
3679
3798
  };
@@ -3682,6 +3801,9 @@ type UpdatePreferencesRequestBody = {
3682
3801
  inapp?: boolean;
3683
3802
  push?: boolean;
3684
3803
  };
3804
+ type UpdateSportProfileLevelRequest = {
3805
+ level: string;
3806
+ };
3685
3807
  type UpdateUsersProfilesRequest = {
3686
3808
  address?: string;
3687
3809
  birthday?: string;
@@ -3713,6 +3835,7 @@ type UserProfile = {
3713
3835
  private_profile?: boolean;
3714
3836
  profile_image_url?: string;
3715
3837
  relation_status: UserRelation;
3838
+ sport_levels?: Array<SportLevel>;
3716
3839
  telephone?: string;
3717
3840
  user_id: string;
3718
3841
  zipcode?: string;
@@ -3804,9 +3927,21 @@ type PkgOpenapiSharedProblemDetails = {
3804
3927
  */
3805
3928
  type?: string;
3806
3929
  };
3930
+ /**
3931
+ * The rating authority slug (e.g. "matchi", "dk-padel")
3932
+ */
3933
+ type AuthoritySlug = string;
3807
3934
  type FacilityIdPath = string;
3808
3935
  type NotificationsFilterParam = NotificationsFilter;
3809
3936
  type OfferIdPath = string;
3937
+ /**
3938
+ * The sport profile ID
3939
+ */
3940
+ type SportProfileId = number;
3941
+ /**
3942
+ * The user ID
3943
+ */
3944
+ type UserId = string;
3810
3945
  /**
3811
3946
  * Maximum number of items to return per page.
3812
3947
  */
@@ -4136,6 +4271,30 @@ type UpdateNotificationResponses = {
4136
4271
  200: Notification;
4137
4272
  };
4138
4273
  type UpdateNotificationResponse = UpdateNotificationResponses[keyof UpdateNotificationResponses];
4274
+ type GetSportAuthoritiesData = {
4275
+ body?: never;
4276
+ path?: never;
4277
+ query?: never;
4278
+ url: '/sport-authorities';
4279
+ };
4280
+ type GetSportAuthoritiesErrors = {
4281
+ /**
4282
+ * Access token is not set or invalid.
4283
+ */
4284
+ 401: PkgOpenapiSharedProblemDetails;
4285
+ /**
4286
+ * The server encountered an unexpected error
4287
+ */
4288
+ 500: PkgOpenapiSharedProblemDetails;
4289
+ };
4290
+ type GetSportAuthoritiesError = GetSportAuthoritiesErrors[keyof GetSportAuthoritiesErrors];
4291
+ type GetSportAuthoritiesResponses = {
4292
+ /**
4293
+ * OK
4294
+ */
4295
+ 200: SportAuthoritiesResponse;
4296
+ };
4297
+ type GetSportAuthoritiesResponse = GetSportAuthoritiesResponses[keyof GetSportAuthoritiesResponses];
4139
4298
  type SearchUsersData = {
4140
4299
  body?: never;
4141
4300
  path?: never;
@@ -4266,130 +4425,456 @@ type UpdateUserProfileResponses = {
4266
4425
  200: UserProfile;
4267
4426
  };
4268
4427
  type UpdateUserProfileResponse = UpdateUserProfileResponses[keyof UpdateUserProfileResponses];
4269
-
4270
- declare const client: Client;
4271
-
4272
- declare const ChannelsSchema: {
4273
- readonly properties: {
4274
- readonly inapp: {
4275
- readonly type: "boolean";
4276
- };
4277
- readonly push: {
4278
- readonly type: "boolean";
4279
- };
4428
+ type GetUserSportProfilesData = {
4429
+ body?: never;
4430
+ path: {
4431
+ /**
4432
+ * The user ID
4433
+ */
4434
+ user_id: string;
4280
4435
  };
4281
- readonly required: readonly ["inapp", "push"];
4282
- readonly type: "object";
4436
+ query?: never;
4437
+ url: '/users/{user_id}/sport-profiles';
4283
4438
  };
4284
- declare const FacilityMessagePayloadSchema: {
4285
- readonly properties: {
4286
- readonly description: {
4287
- readonly type: "string";
4288
- };
4289
- readonly image_url: {
4290
- readonly type: "string";
4291
- };
4292
- readonly title: {
4293
- readonly type: "string";
4294
- };
4295
- };
4296
- readonly required: readonly ["title", "description"];
4297
- readonly type: "object";
4439
+ type GetUserSportProfilesErrors = {
4440
+ /**
4441
+ * Access token is not set or invalid.
4442
+ */
4443
+ 401: PkgOpenapiSharedProblemDetails;
4444
+ /**
4445
+ * The requestor is not authorized to perform this operation on the resource.
4446
+ */
4447
+ 403: PkgOpenapiSharedProblemDetails;
4448
+ /**
4449
+ * The server encountered an unexpected error
4450
+ */
4451
+ 500: PkgOpenapiSharedProblemDetails;
4298
4452
  };
4299
- declare const FacilityOfferSchema: {
4300
- readonly properties: {
4301
- readonly data: {
4302
- readonly oneOf: readonly [{
4303
- readonly $ref: "#/components/schemas/FacilityPunchCardData";
4304
- }, {
4305
- readonly $ref: "#/components/schemas/FacilityValueCardData";
4306
- }];
4307
- };
4308
- readonly type: {
4309
- readonly enum: readonly ["FACILITY_PUNCH_CARD", "FACILITY_VALUE_CARD"];
4310
- readonly type: "string";
4311
- };
4312
- };
4313
- readonly required: readonly ["type", "data"];
4314
- readonly type: "object";
4453
+ type GetUserSportProfilesError = GetUserSportProfilesErrors[keyof GetUserSportProfilesErrors];
4454
+ type GetUserSportProfilesResponses = {
4455
+ /**
4456
+ * OK
4457
+ */
4458
+ 200: SportProfilesResponse;
4315
4459
  };
4316
- declare const FacilityOfferConditionSchema: {
4317
- readonly oneOf: readonly [{
4318
- readonly $ref: "#/components/schemas/FacilityOfferConditionWeekdays";
4319
- }, {
4320
- readonly $ref: "#/components/schemas/FacilityOfferConditionCourts";
4321
- }, {
4322
- readonly $ref: "#/components/schemas/FacilityOfferConditionDate";
4323
- }, {
4324
- readonly $ref: "#/components/schemas/FacilityOfferConditionTime";
4325
- }, {
4326
- readonly $ref: "#/components/schemas/FacilityOfferConditionHoursinadvance";
4327
- }, {
4328
- readonly $ref: "#/components/schemas/FacilityOfferConditionActivities";
4329
- }];
4330
- readonly properties: {
4331
- readonly type: {
4332
- readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"];
4333
- readonly type: "string";
4334
- };
4460
+ type GetUserSportProfilesResponse = GetUserSportProfilesResponses[keyof GetUserSportProfilesResponses];
4461
+ type CreateUserSportProfileData = {
4462
+ /**
4463
+ * The sport profile to create
4464
+ */
4465
+ body: CreateSportProfileRequest;
4466
+ path: {
4467
+ /**
4468
+ * The user ID
4469
+ */
4470
+ user_id: string;
4335
4471
  };
4336
- readonly required: readonly ["type"];
4337
- readonly type: "object";
4472
+ query?: never;
4473
+ url: '/users/{user_id}/sport-profiles';
4338
4474
  };
4339
- declare const FacilityOfferConditionActivitiesSchema: {
4340
- readonly properties: {
4341
- readonly activities: {
4342
- readonly items: {
4343
- readonly properties: {
4344
- readonly id: {
4345
- readonly type: "integer";
4346
- };
4347
- readonly name: {
4348
- readonly type: "string";
4349
- };
4350
- readonly type: {
4351
- readonly nullable: true;
4352
- readonly type: "string";
4353
- };
4354
- };
4355
- readonly required: readonly ["id", "name", "type"];
4356
- readonly type: "object";
4357
- };
4358
- readonly type: "array";
4359
- };
4360
- readonly all_activities: {
4361
- readonly type: "boolean";
4362
- };
4363
- readonly not_valid_for_activities: {
4364
- readonly type: "boolean";
4365
- };
4366
- };
4367
- readonly required: readonly ["not_valid_for_activities", "all_activities", "activities"];
4368
- readonly type: "object";
4475
+ type CreateUserSportProfileErrors = {
4476
+ /**
4477
+ * The request was malformed or could not be processed.
4478
+ */
4479
+ 400: PkgOpenapiSharedProblemDetails;
4480
+ /**
4481
+ * Access token is not set or invalid.
4482
+ */
4483
+ 401: PkgOpenapiSharedProblemDetails;
4484
+ /**
4485
+ * The requestor is not authorized to perform this operation on the resource.
4486
+ */
4487
+ 403: PkgOpenapiSharedProblemDetails;
4488
+ /**
4489
+ * Sport profile already exists for this sport
4490
+ */
4491
+ 409: PkgOpenapiSharedProblemDetails;
4492
+ /**
4493
+ * The server encountered an unexpected error
4494
+ */
4495
+ 500: PkgOpenapiSharedProblemDetails;
4369
4496
  };
4370
- declare const FacilityOfferConditionCourtsSchema: {
4371
- readonly properties: {
4372
- readonly courts: {
4373
- readonly items: {
4374
- readonly properties: {
4375
- readonly id: {
4376
- readonly type: "integer";
4377
- };
4378
- readonly name: {
4379
- readonly type: "string";
4380
- };
4381
- };
4382
- readonly required: readonly ["id", "name"];
4383
- readonly type: "object";
4384
- };
4385
- readonly type: "array";
4386
- };
4497
+ type CreateUserSportProfileError = CreateUserSportProfileErrors[keyof CreateUserSportProfileErrors];
4498
+ type CreateUserSportProfileResponses = {
4499
+ /**
4500
+ * Created
4501
+ */
4502
+ 201: SportProfile;
4503
+ };
4504
+ type CreateUserSportProfileResponse = CreateUserSportProfileResponses[keyof CreateUserSportProfileResponses];
4505
+ type DeleteUserSportProfileData = {
4506
+ body?: never;
4507
+ path: {
4508
+ /**
4509
+ * The user ID
4510
+ */
4511
+ user_id: string;
4512
+ /**
4513
+ * The sport profile ID
4514
+ */
4515
+ sport_profile_id: number;
4387
4516
  };
4388
- readonly required: readonly ["courts"];
4389
- readonly type: "object";
4517
+ query?: never;
4518
+ url: '/users/{user_id}/sport-profiles/{sport_profile_id}';
4390
4519
  };
4391
- declare const FacilityOfferConditionDateSchema: {
4392
- readonly properties: {
4520
+ type DeleteUserSportProfileErrors = {
4521
+ /**
4522
+ * Access token is not set or invalid.
4523
+ */
4524
+ 401: PkgOpenapiSharedProblemDetails;
4525
+ /**
4526
+ * The requestor is not authorized to perform this operation on the resource.
4527
+ */
4528
+ 403: PkgOpenapiSharedProblemDetails;
4529
+ /**
4530
+ * The requested resource was not found.
4531
+ */
4532
+ 404: PkgOpenapiSharedProblemDetails;
4533
+ };
4534
+ type DeleteUserSportProfileError = DeleteUserSportProfileErrors[keyof DeleteUserSportProfileErrors];
4535
+ type DeleteUserSportProfileResponses = {
4536
+ /**
4537
+ * Deleted successfully
4538
+ */
4539
+ 204: void;
4540
+ };
4541
+ type DeleteUserSportProfileResponse = DeleteUserSportProfileResponses[keyof DeleteUserSportProfileResponses];
4542
+ type GetUserSportProfileData = {
4543
+ body?: never;
4544
+ path: {
4545
+ /**
4546
+ * The user ID
4547
+ */
4548
+ user_id: string;
4549
+ /**
4550
+ * The sport profile ID
4551
+ */
4552
+ sport_profile_id: number;
4553
+ };
4554
+ query?: never;
4555
+ url: '/users/{user_id}/sport-profiles/{sport_profile_id}';
4556
+ };
4557
+ type GetUserSportProfileErrors = {
4558
+ /**
4559
+ * Access token is not set or invalid.
4560
+ */
4561
+ 401: PkgOpenapiSharedProblemDetails;
4562
+ /**
4563
+ * The requestor is not authorized to perform this operation on the resource.
4564
+ */
4565
+ 403: PkgOpenapiSharedProblemDetails;
4566
+ /**
4567
+ * The requested resource was not found.
4568
+ */
4569
+ 404: PkgOpenapiSharedProblemDetails;
4570
+ /**
4571
+ * The server encountered an unexpected error
4572
+ */
4573
+ 500: PkgOpenapiSharedProblemDetails;
4574
+ };
4575
+ type GetUserSportProfileError = GetUserSportProfileErrors[keyof GetUserSportProfileErrors];
4576
+ type GetUserSportProfileResponses = {
4577
+ /**
4578
+ * OK
4579
+ */
4580
+ 200: SportProfile;
4581
+ };
4582
+ type GetUserSportProfileResponse = GetUserSportProfileResponses[keyof GetUserSportProfileResponses];
4583
+ type AddUserSportProfileLevelData = {
4584
+ /**
4585
+ * The level to add
4586
+ */
4587
+ body: CreateSportProfileLevelRequest;
4588
+ path: {
4589
+ /**
4590
+ * The user ID
4591
+ */
4592
+ user_id: string;
4593
+ /**
4594
+ * The sport profile ID
4595
+ */
4596
+ sport_profile_id: number;
4597
+ };
4598
+ query?: never;
4599
+ url: '/users/{user_id}/sport-profiles/{sport_profile_id}/levels';
4600
+ };
4601
+ type AddUserSportProfileLevelErrors = {
4602
+ /**
4603
+ * The request was malformed or could not be processed.
4604
+ */
4605
+ 400: PkgOpenapiSharedProblemDetails;
4606
+ /**
4607
+ * Access token is not set or invalid.
4608
+ */
4609
+ 401: PkgOpenapiSharedProblemDetails;
4610
+ /**
4611
+ * The requestor is not authorized to perform this operation on the resource.
4612
+ */
4613
+ 403: PkgOpenapiSharedProblemDetails;
4614
+ /**
4615
+ * The requested resource was not found.
4616
+ */
4617
+ 404: PkgOpenapiSharedProblemDetails;
4618
+ /**
4619
+ * Level already exists for this authority
4620
+ */
4621
+ 409: PkgOpenapiSharedProblemDetails;
4622
+ /**
4623
+ * The server encountered an unexpected error
4624
+ */
4625
+ 500: PkgOpenapiSharedProblemDetails;
4626
+ };
4627
+ type AddUserSportProfileLevelError = AddUserSportProfileLevelErrors[keyof AddUserSportProfileLevelErrors];
4628
+ type AddUserSportProfileLevelResponses = {
4629
+ /**
4630
+ * Created
4631
+ */
4632
+ 201: SportProfileLevel;
4633
+ };
4634
+ type AddUserSportProfileLevelResponse = AddUserSportProfileLevelResponses[keyof AddUserSportProfileLevelResponses];
4635
+ type DeleteUserSportProfileLevelData = {
4636
+ body?: never;
4637
+ path: {
4638
+ /**
4639
+ * The user ID
4640
+ */
4641
+ user_id: string;
4642
+ /**
4643
+ * The sport profile ID
4644
+ */
4645
+ sport_profile_id: number;
4646
+ /**
4647
+ * The rating authority slug (e.g. "matchi", "dk-padel")
4648
+ */
4649
+ authority_slug: string;
4650
+ };
4651
+ query?: never;
4652
+ url: '/users/{user_id}/sport-profiles/{sport_profile_id}/levels/{authority_slug}';
4653
+ };
4654
+ type DeleteUserSportProfileLevelErrors = {
4655
+ /**
4656
+ * Access token is not set or invalid.
4657
+ */
4658
+ 401: PkgOpenapiSharedProblemDetails;
4659
+ /**
4660
+ * The requestor is not authorized to perform this operation on the resource.
4661
+ */
4662
+ 403: PkgOpenapiSharedProblemDetails;
4663
+ /**
4664
+ * The requested resource was not found.
4665
+ */
4666
+ 404: PkgOpenapiSharedProblemDetails;
4667
+ };
4668
+ type DeleteUserSportProfileLevelError = DeleteUserSportProfileLevelErrors[keyof DeleteUserSportProfileLevelErrors];
4669
+ type DeleteUserSportProfileLevelResponses = {
4670
+ /**
4671
+ * Deleted successfully
4672
+ */
4673
+ 204: void;
4674
+ };
4675
+ type DeleteUserSportProfileLevelResponse = DeleteUserSportProfileLevelResponses[keyof DeleteUserSportProfileLevelResponses];
4676
+ type UpdateUserSportProfileLevelData = {
4677
+ /**
4678
+ * The updated level value
4679
+ */
4680
+ body: UpdateSportProfileLevelRequest;
4681
+ path: {
4682
+ /**
4683
+ * The user ID
4684
+ */
4685
+ user_id: string;
4686
+ /**
4687
+ * The sport profile ID
4688
+ */
4689
+ sport_profile_id: number;
4690
+ /**
4691
+ * The rating authority slug (e.g. "matchi", "dk-padel")
4692
+ */
4693
+ authority_slug: string;
4694
+ };
4695
+ query?: never;
4696
+ url: '/users/{user_id}/sport-profiles/{sport_profile_id}/levels/{authority_slug}';
4697
+ };
4698
+ type UpdateUserSportProfileLevelErrors = {
4699
+ /**
4700
+ * The request was malformed or could not be processed.
4701
+ */
4702
+ 400: PkgOpenapiSharedProblemDetails;
4703
+ /**
4704
+ * Access token is not set or invalid.
4705
+ */
4706
+ 401: PkgOpenapiSharedProblemDetails;
4707
+ /**
4708
+ * The requestor is not authorized to perform this operation on the resource.
4709
+ */
4710
+ 403: PkgOpenapiSharedProblemDetails;
4711
+ /**
4712
+ * The requested resource was not found.
4713
+ */
4714
+ 404: PkgOpenapiSharedProblemDetails;
4715
+ };
4716
+ type UpdateUserSportProfileLevelError = UpdateUserSportProfileLevelErrors[keyof UpdateUserSportProfileLevelErrors];
4717
+ type UpdateUserSportProfileLevelResponses = {
4718
+ /**
4719
+ * Updated
4720
+ */
4721
+ 200: SportProfileLevel;
4722
+ };
4723
+ type UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelResponses[keyof UpdateUserSportProfileLevelResponses];
4724
+
4725
+ declare const client: Client;
4726
+
4727
+ declare const ChannelsSchema: {
4728
+ readonly properties: {
4729
+ readonly inapp: {
4730
+ readonly type: "boolean";
4731
+ };
4732
+ readonly push: {
4733
+ readonly type: "boolean";
4734
+ };
4735
+ };
4736
+ readonly required: readonly ["inapp", "push"];
4737
+ readonly type: "object";
4738
+ };
4739
+ declare const CreateSportProfileLevelRequestSchema: {
4740
+ readonly properties: {
4741
+ readonly authority_slug: {
4742
+ readonly description: "Rating authority (defaults to \"matchi\" if omitted)";
4743
+ readonly type: "string";
4744
+ };
4745
+ readonly level: {
4746
+ readonly type: "string";
4747
+ };
4748
+ };
4749
+ readonly required: readonly ["level"];
4750
+ readonly type: "object";
4751
+ };
4752
+ declare const CreateSportProfileRequestSchema: {
4753
+ readonly properties: {
4754
+ readonly authority_slug: {
4755
+ readonly description: "Initial authority (defaults to \"matchi\" if omitted)";
4756
+ readonly type: "string";
4757
+ };
4758
+ readonly level: {
4759
+ readonly description: "Initial level value (omit to create an empty profile)";
4760
+ readonly type: "string";
4761
+ };
4762
+ readonly sport_id: {
4763
+ readonly type: "integer";
4764
+ };
4765
+ };
4766
+ readonly required: readonly ["sport_id"];
4767
+ readonly type: "object";
4768
+ };
4769
+ declare const FacilityMessagePayloadSchema: {
4770
+ readonly properties: {
4771
+ readonly description: {
4772
+ readonly type: "string";
4773
+ };
4774
+ readonly image_url: {
4775
+ readonly type: "string";
4776
+ };
4777
+ readonly title: {
4778
+ readonly type: "string";
4779
+ };
4780
+ };
4781
+ readonly required: readonly ["title", "description"];
4782
+ readonly type: "object";
4783
+ };
4784
+ declare const FacilityOfferSchema: {
4785
+ readonly properties: {
4786
+ readonly data: {
4787
+ readonly oneOf: readonly [{
4788
+ readonly $ref: "#/components/schemas/FacilityPunchCardData";
4789
+ }, {
4790
+ readonly $ref: "#/components/schemas/FacilityValueCardData";
4791
+ }];
4792
+ };
4793
+ readonly type: {
4794
+ readonly enum: readonly ["FACILITY_PUNCH_CARD", "FACILITY_VALUE_CARD"];
4795
+ readonly type: "string";
4796
+ };
4797
+ };
4798
+ readonly required: readonly ["type", "data"];
4799
+ readonly type: "object";
4800
+ };
4801
+ declare const FacilityOfferConditionSchema: {
4802
+ readonly oneOf: readonly [{
4803
+ readonly $ref: "#/components/schemas/FacilityOfferConditionWeekdays";
4804
+ }, {
4805
+ readonly $ref: "#/components/schemas/FacilityOfferConditionCourts";
4806
+ }, {
4807
+ readonly $ref: "#/components/schemas/FacilityOfferConditionDate";
4808
+ }, {
4809
+ readonly $ref: "#/components/schemas/FacilityOfferConditionTime";
4810
+ }, {
4811
+ readonly $ref: "#/components/schemas/FacilityOfferConditionHoursinadvance";
4812
+ }, {
4813
+ readonly $ref: "#/components/schemas/FacilityOfferConditionActivities";
4814
+ }];
4815
+ readonly properties: {
4816
+ readonly type: {
4817
+ readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"];
4818
+ readonly type: "string";
4819
+ };
4820
+ };
4821
+ readonly required: readonly ["type"];
4822
+ readonly type: "object";
4823
+ };
4824
+ declare const FacilityOfferConditionActivitiesSchema: {
4825
+ readonly properties: {
4826
+ readonly activities: {
4827
+ readonly items: {
4828
+ readonly properties: {
4829
+ readonly id: {
4830
+ readonly type: "integer";
4831
+ };
4832
+ readonly name: {
4833
+ readonly type: "string";
4834
+ };
4835
+ readonly type: {
4836
+ readonly nullable: true;
4837
+ readonly type: "string";
4838
+ };
4839
+ };
4840
+ readonly required: readonly ["id", "name", "type"];
4841
+ readonly type: "object";
4842
+ };
4843
+ readonly type: "array";
4844
+ };
4845
+ readonly all_activities: {
4846
+ readonly type: "boolean";
4847
+ };
4848
+ readonly not_valid_for_activities: {
4849
+ readonly type: "boolean";
4850
+ };
4851
+ };
4852
+ readonly required: readonly ["not_valid_for_activities", "all_activities", "activities"];
4853
+ readonly type: "object";
4854
+ };
4855
+ declare const FacilityOfferConditionCourtsSchema: {
4856
+ readonly properties: {
4857
+ readonly courts: {
4858
+ readonly items: {
4859
+ readonly properties: {
4860
+ readonly id: {
4861
+ readonly type: "integer";
4862
+ };
4863
+ readonly name: {
4864
+ readonly type: "string";
4865
+ };
4866
+ };
4867
+ readonly required: readonly ["id", "name"];
4868
+ readonly type: "object";
4869
+ };
4870
+ readonly type: "array";
4871
+ };
4872
+ };
4873
+ readonly required: readonly ["courts"];
4874
+ readonly type: "object";
4875
+ };
4876
+ declare const FacilityOfferConditionDateSchema: {
4877
+ readonly properties: {
4393
4878
  readonly end_date: {
4394
4879
  readonly format: "date";
4395
4880
  readonly type: "string";
@@ -4754,6 +5239,12 @@ declare const RegisterDeviceRequestSchema: {
4754
5239
  readonly minLength: 1;
4755
5240
  readonly type: "string";
4756
5241
  };
5242
+ readonly language: {
5243
+ readonly description: "User's preferred language for push notifications.";
5244
+ readonly example: "sv";
5245
+ readonly minLength: 2;
5246
+ readonly type: "string";
5247
+ };
4757
5248
  readonly os: {
4758
5249
  readonly enum: readonly ["ios", "android"];
4759
5250
  readonly type: "string";
@@ -4766,6 +5257,157 @@ declare const SourceSchema: {
4766
5257
  readonly enum: readonly ["FACILITY"];
4767
5258
  readonly type: "string";
4768
5259
  };
5260
+ declare const SportAuthoritiesResponseSchema: {
5261
+ readonly properties: {
5262
+ readonly items: {
5263
+ readonly items: {
5264
+ readonly $ref: "#/components/schemas/SportAuthority";
5265
+ };
5266
+ readonly type: "array";
5267
+ };
5268
+ };
5269
+ readonly required: readonly ["items"];
5270
+ readonly type: "object";
5271
+ };
5272
+ declare const SportAuthoritySchema: {
5273
+ readonly properties: {
5274
+ readonly bg_color: {
5275
+ readonly description: "Background color for UI display (hex)";
5276
+ readonly type: "string";
5277
+ };
5278
+ readonly country: {
5279
+ readonly description: "Country code this authority is restricted to; null means all countries";
5280
+ readonly nullable: true;
5281
+ readonly type: "string";
5282
+ };
5283
+ readonly display_text: {
5284
+ readonly description: "Short label shown in badges (e.g. \"M\", \"DK\")";
5285
+ readonly type: "string";
5286
+ };
5287
+ readonly fore_color: {
5288
+ readonly description: "Foreground/text color for UI display (hex)";
5289
+ readonly type: "string";
5290
+ };
5291
+ readonly max_level: {
5292
+ readonly description: "Maximum allowed level value";
5293
+ readonly format: "double";
5294
+ readonly type: "number";
5295
+ };
5296
+ readonly min_level: {
5297
+ readonly description: "Minimum allowed level value";
5298
+ readonly format: "double";
5299
+ readonly type: "number";
5300
+ };
5301
+ readonly name: {
5302
+ readonly description: "Display name of the authority";
5303
+ readonly type: "string";
5304
+ };
5305
+ readonly slug: {
5306
+ readonly description: "Unique authority slug (e.g. \"matchi\", \"dk-padel\")";
5307
+ readonly type: "string";
5308
+ };
5309
+ readonly sport_id: {
5310
+ readonly description: "Sport this authority applies to; null means all sports";
5311
+ readonly nullable: true;
5312
+ readonly type: "integer";
5313
+ };
5314
+ readonly step_size: {
5315
+ readonly description: "Fixed step increment between levels as a decimal string (e.g. \"0.5\"); null means no fixed step";
5316
+ readonly nullable: true;
5317
+ readonly type: "string";
5318
+ };
5319
+ };
5320
+ readonly required: readonly ["slug", "name", "min_level", "max_level", "bg_color", "fore_color", "display_text"];
5321
+ readonly type: "object";
5322
+ };
5323
+ declare const SportLevelSchema: {
5324
+ readonly description: "A flattened sport level entry — used in search results for matchmaking.";
5325
+ readonly properties: {
5326
+ readonly authority_slug: {
5327
+ readonly type: "string";
5328
+ };
5329
+ readonly level: {
5330
+ readonly type: "string";
5331
+ };
5332
+ readonly sport_id: {
5333
+ readonly type: "integer";
5334
+ };
5335
+ };
5336
+ readonly required: readonly ["sport_id", "authority_slug", "level"];
5337
+ readonly type: "object";
5338
+ };
5339
+ declare const SportProfileSchema: {
5340
+ readonly properties: {
5341
+ readonly attributes: {
5342
+ readonly description: "Skill ratings for individual aspects of the sport";
5343
+ readonly items: {
5344
+ readonly $ref: "#/components/schemas/SportProfileAttribute";
5345
+ };
5346
+ readonly nullable: true;
5347
+ readonly type: "array";
5348
+ };
5349
+ readonly frequency: {
5350
+ readonly description: "How often the user plays";
5351
+ readonly enum: readonly ["MONTHLY", "WEEKLY", "WEEKLY_FREQUENT", "YEARLY"];
5352
+ readonly nullable: true;
5353
+ readonly type: "string";
5354
+ };
5355
+ readonly id: {
5356
+ readonly description: "The sport profile ID";
5357
+ readonly type: "integer";
5358
+ };
5359
+ readonly levels: {
5360
+ readonly items: {
5361
+ readonly $ref: "#/components/schemas/SportProfileLevel";
5362
+ };
5363
+ readonly type: "array";
5364
+ };
5365
+ readonly sport_id: {
5366
+ readonly type: "integer";
5367
+ };
5368
+ };
5369
+ readonly required: readonly ["id", "sport_id", "levels"];
5370
+ readonly type: "object";
5371
+ };
5372
+ declare const SportProfileAttributeSchema: {
5373
+ readonly properties: {
5374
+ readonly name: {
5375
+ readonly description: "Attribute name (e.g. BACKHAND, FOREHAND, SERVE)";
5376
+ readonly type: "string";
5377
+ };
5378
+ readonly skill_level: {
5379
+ readonly description: "Skill level for this attribute";
5380
+ readonly type: "integer";
5381
+ };
5382
+ };
5383
+ readonly required: readonly ["name", "skill_level"];
5384
+ readonly type: "object";
5385
+ };
5386
+ declare const SportProfileLevelSchema: {
5387
+ readonly properties: {
5388
+ readonly authority_slug: {
5389
+ readonly description: "Rating authority (e.g. \"matchi\", \"dk-padel\")";
5390
+ readonly type: "string";
5391
+ };
5392
+ readonly level: {
5393
+ readonly type: "string";
5394
+ };
5395
+ };
5396
+ readonly required: readonly ["authority_slug", "level"];
5397
+ readonly type: "object";
5398
+ };
5399
+ declare const SportProfilesResponseSchema: {
5400
+ readonly properties: {
5401
+ readonly items: {
5402
+ readonly items: {
5403
+ readonly $ref: "#/components/schemas/SportProfile";
5404
+ };
5405
+ readonly type: "array";
5406
+ };
5407
+ };
5408
+ readonly required: readonly ["items"];
5409
+ readonly type: "object";
5410
+ };
4769
5411
  declare const TopicSchema: {
4770
5412
  readonly enum: readonly ["FACILITY_MESSAGE"];
4771
5413
  readonly type: "string";
@@ -4781,6 +5423,15 @@ declare const UpdatePreferencesRequestBodySchema: {
4781
5423
  };
4782
5424
  readonly type: "object";
4783
5425
  };
5426
+ declare const UpdateSportProfileLevelRequestSchema: {
5427
+ readonly properties: {
5428
+ readonly level: {
5429
+ readonly type: "string";
5430
+ };
5431
+ };
5432
+ readonly required: readonly ["level"];
5433
+ readonly type: "object";
5434
+ };
4784
5435
  declare const UpdateUsersProfilesRequestSchema: {
4785
5436
  readonly properties: {
4786
5437
  readonly address: {
@@ -4884,6 +5535,12 @@ declare const UserProfileSchema: {
4884
5535
  readonly relation_status: {
4885
5536
  readonly $ref: "#/components/schemas/UserRelation";
4886
5537
  };
5538
+ readonly sport_levels: {
5539
+ readonly items: {
5540
+ readonly $ref: "#/components/schemas/SportLevel";
5541
+ };
5542
+ readonly type: "array";
5543
+ };
4887
5544
  readonly telephone: {
4888
5545
  readonly type: "string";
4889
5546
  };
@@ -5009,6 +5666,8 @@ declare const pkgOpenapiSharedProblemDetailsSchema: {
5009
5666
  };
5010
5667
 
5011
5668
  declare const schemas_gen_ChannelsSchema: typeof ChannelsSchema;
5669
+ declare const schemas_gen_CreateSportProfileLevelRequestSchema: typeof CreateSportProfileLevelRequestSchema;
5670
+ declare const schemas_gen_CreateSportProfileRequestSchema: typeof CreateSportProfileRequestSchema;
5012
5671
  declare const schemas_gen_FacilityMessagePayloadSchema: typeof FacilityMessagePayloadSchema;
5013
5672
  declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof FacilityOfferConditionActivitiesSchema;
5014
5673
  declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
@@ -5036,8 +5695,16 @@ declare const schemas_gen_PreferenceSchema: typeof PreferenceSchema;
5036
5695
  declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseSchema;
5037
5696
  declare const schemas_gen_RegisterDeviceRequestSchema: typeof RegisterDeviceRequestSchema;
5038
5697
  declare const schemas_gen_SourceSchema: typeof SourceSchema;
5698
+ declare const schemas_gen_SportAuthoritiesResponseSchema: typeof SportAuthoritiesResponseSchema;
5699
+ declare const schemas_gen_SportAuthoritySchema: typeof SportAuthoritySchema;
5700
+ declare const schemas_gen_SportLevelSchema: typeof SportLevelSchema;
5701
+ declare const schemas_gen_SportProfileAttributeSchema: typeof SportProfileAttributeSchema;
5702
+ declare const schemas_gen_SportProfileLevelSchema: typeof SportProfileLevelSchema;
5703
+ declare const schemas_gen_SportProfileSchema: typeof SportProfileSchema;
5704
+ declare const schemas_gen_SportProfilesResponseSchema: typeof SportProfilesResponseSchema;
5039
5705
  declare const schemas_gen_TopicSchema: typeof TopicSchema;
5040
5706
  declare const schemas_gen_UpdatePreferencesRequestBodySchema: typeof UpdatePreferencesRequestBodySchema;
5707
+ declare const schemas_gen_UpdateSportProfileLevelRequestSchema: typeof UpdateSportProfileLevelRequestSchema;
5041
5708
  declare const schemas_gen_UpdateUsersProfilesRequestSchema: typeof UpdateUsersProfilesRequestSchema;
5042
5709
  declare const schemas_gen_UserProfileSchema: typeof UserProfileSchema;
5043
5710
  declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
@@ -5048,7 +5715,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
5048
5715
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
5049
5716
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
5050
5717
  declare namespace schemas_gen {
5051
- export { schemas_gen_ChannelsSchema as ChannelsSchema, 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_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_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, 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 };
5718
+ export { schemas_gen_ChannelsSchema as ChannelsSchema, 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_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_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, 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_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
5052
5719
  }
5053
5720
 
5054
5721
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -5112,6 +5779,12 @@ declare const getNotificationById: <ThrowOnError extends boolean = false>(option
5112
5779
  * Update notification
5113
5780
  */
5114
5781
  declare const updateNotification: <ThrowOnError extends boolean = false>(options: Options<UpdateNotificationData, ThrowOnError>) => RequestResult<UpdateNotificationResponses, UpdateNotificationErrors, ThrowOnError, "fields">;
5782
+ /**
5783
+ * Get sport authorities
5784
+ *
5785
+ * Returns all available sport rating authorities with their configuration.
5786
+ */
5787
+ declare const getSportAuthorities: <ThrowOnError extends boolean = false>(options?: Options<GetSportAuthoritiesData, ThrowOnError>) => RequestResult<GetSportAuthoritiesResponses, GetSportAuthoritiesErrors, ThrowOnError, "fields">;
5115
5788
  /**
5116
5789
  * Search for users by name
5117
5790
  *
@@ -5130,6 +5803,48 @@ declare const getUserFacilityPermissions: <ThrowOnError extends boolean = false>
5130
5803
  * Update authenticated user's profile information
5131
5804
  */
5132
5805
  declare const updateUserProfile: <ThrowOnError extends boolean = false>(options: Options<UpdateUserProfileData, ThrowOnError>) => RequestResult<UpdateUserProfileResponses, UpdateUserProfileErrors, ThrowOnError, "fields">;
5806
+ /**
5807
+ * List sport profiles for a user
5808
+ *
5809
+ * Returns all sport profiles for the user, each containing all authority levels for that sport.
5810
+ */
5811
+ declare const getUserSportProfiles: <ThrowOnError extends boolean = false>(options: Options<GetUserSportProfilesData, ThrowOnError>) => RequestResult<GetUserSportProfilesResponses, GetUserSportProfilesErrors, ThrowOnError, "fields">;
5812
+ /**
5813
+ * Create a sport profile
5814
+ *
5815
+ * Creates a sport profile for the given sport and optionally adds an initial level.
5816
+ */
5817
+ declare const createUserSportProfile: <ThrowOnError extends boolean = false>(options: Options<CreateUserSportProfileData, ThrowOnError>) => RequestResult<CreateUserSportProfileResponses, CreateUserSportProfileErrors, ThrowOnError, "fields">;
5818
+ /**
5819
+ * Delete a sport profile
5820
+ *
5821
+ * Deletes a sport profile and all its levels.
5822
+ */
5823
+ declare const deleteUserSportProfile: <ThrowOnError extends boolean = false>(options: Options<DeleteUserSportProfileData, ThrowOnError>) => RequestResult<DeleteUserSportProfileResponses, DeleteUserSportProfileErrors, ThrowOnError, "fields">;
5824
+ /**
5825
+ * Get a sport profile
5826
+ *
5827
+ * Returns a specific sport profile by ID.
5828
+ */
5829
+ declare const getUserSportProfile: <ThrowOnError extends boolean = false>(options: Options<GetUserSportProfileData, ThrowOnError>) => RequestResult<GetUserSportProfileResponses, GetUserSportProfileErrors, ThrowOnError, "fields">;
5830
+ /**
5831
+ * Add a level to a sport profile
5832
+ *
5833
+ * Adds a new authority level to an existing sport profile.
5834
+ */
5835
+ declare const addUserSportProfileLevel: <ThrowOnError extends boolean = false>(options: Options<AddUserSportProfileLevelData, ThrowOnError>) => RequestResult<AddUserSportProfileLevelResponses, AddUserSportProfileLevelErrors, ThrowOnError, "fields">;
5836
+ /**
5837
+ * Delete a sport level
5838
+ *
5839
+ * Deletes a specific authority level from a sport profile.
5840
+ */
5841
+ declare const deleteUserSportProfileLevel: <ThrowOnError extends boolean = false>(options: Options<DeleteUserSportProfileLevelData, ThrowOnError>) => RequestResult<DeleteUserSportProfileLevelResponses, DeleteUserSportProfileLevelErrors, ThrowOnError, "fields">;
5842
+ /**
5843
+ * Update a sport level
5844
+ *
5845
+ * Updates the value of an existing sport level.
5846
+ */
5847
+ declare const updateUserSportProfileLevel: <ThrowOnError extends boolean = false>(options: Options<UpdateUserSportProfileLevelData, ThrowOnError>) => RequestResult<UpdateUserSportProfileLevelResponses, UpdateUserSportProfileLevelErrors, ThrowOnError, "fields">;
5133
5848
 
5134
5849
  type QueryKey<TOptions extends Options> = [
5135
5850
  Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
@@ -5334,6 +6049,36 @@ declare const getNotificationByIdOptions: (options: Options<GetNotificationByIdD
5334
6049
  * Update notification
5335
6050
  */
5336
6051
  declare const updateNotificationMutation: (options?: Partial<Options<UpdateNotificationData>>) => UseMutationOptions<UpdateNotificationResponse, UpdateNotificationError, Options<UpdateNotificationData>>;
6052
+ declare const getSportAuthoritiesQueryKey: (options?: Options<GetSportAuthoritiesData>) => [Pick<Options<GetSportAuthoritiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6053
+ _id: string;
6054
+ _infinite?: boolean;
6055
+ tags?: ReadonlyArray<string>;
6056
+ }];
6057
+ /**
6058
+ * Get sport authorities
6059
+ *
6060
+ * Returns all available sport rating authorities with their configuration.
6061
+ */
6062
+ declare const getSportAuthoritiesOptions: (options?: Options<GetSportAuthoritiesData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<SportAuthoritiesResponse, PkgOpenapiSharedProblemDetails, SportAuthoritiesResponse, [Pick<Options<GetSportAuthoritiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6063
+ _id: string;
6064
+ _infinite?: boolean;
6065
+ tags?: ReadonlyArray<string>;
6066
+ }]>, "queryFn"> & {
6067
+ queryFn?: _tanstack_react_query.QueryFunction<SportAuthoritiesResponse, [Pick<Options<GetSportAuthoritiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6068
+ _id: string;
6069
+ _infinite?: boolean;
6070
+ tags?: ReadonlyArray<string>;
6071
+ }], never> | undefined;
6072
+ } & {
6073
+ queryKey: [Pick<Options<GetSportAuthoritiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6074
+ _id: string;
6075
+ _infinite?: boolean;
6076
+ tags?: ReadonlyArray<string>;
6077
+ }] & {
6078
+ [dataTagSymbol]: SportAuthoritiesResponse;
6079
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
6080
+ };
6081
+ };
5337
6082
  declare const searchUsersQueryKey: (options?: Options<SearchUsersData>) => [Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5338
6083
  _id: string;
5339
6084
  _infinite?: boolean;
@@ -5426,9 +6171,103 @@ declare const getUserFacilityPermissionsOptions: (options: Options<GetUserFacili
5426
6171
  * Update authenticated user's profile information
5427
6172
  */
5428
6173
  declare const updateUserProfileMutation: (options?: Partial<Options<UpdateUserProfileData>>) => UseMutationOptions<UpdateUserProfileResponse, UpdateUserProfileError, Options<UpdateUserProfileData>>;
6174
+ declare const getUserSportProfilesQueryKey: (options: Options<GetUserSportProfilesData>) => [Pick<Options<GetUserSportProfilesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6175
+ _id: string;
6176
+ _infinite?: boolean;
6177
+ tags?: ReadonlyArray<string>;
6178
+ }];
6179
+ /**
6180
+ * List sport profiles for a user
6181
+ *
6182
+ * Returns all sport profiles for the user, each containing all authority levels for that sport.
6183
+ */
6184
+ declare const getUserSportProfilesOptions: (options: Options<GetUserSportProfilesData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<SportProfilesResponse, PkgOpenapiSharedProblemDetails, SportProfilesResponse, [Pick<Options<GetUserSportProfilesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6185
+ _id: string;
6186
+ _infinite?: boolean;
6187
+ tags?: ReadonlyArray<string>;
6188
+ }]>, "queryFn"> & {
6189
+ queryFn?: _tanstack_react_query.QueryFunction<SportProfilesResponse, [Pick<Options<GetUserSportProfilesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6190
+ _id: string;
6191
+ _infinite?: boolean;
6192
+ tags?: ReadonlyArray<string>;
6193
+ }], never> | undefined;
6194
+ } & {
6195
+ queryKey: [Pick<Options<GetUserSportProfilesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6196
+ _id: string;
6197
+ _infinite?: boolean;
6198
+ tags?: ReadonlyArray<string>;
6199
+ }] & {
6200
+ [dataTagSymbol]: SportProfilesResponse;
6201
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
6202
+ };
6203
+ };
6204
+ /**
6205
+ * Create a sport profile
6206
+ *
6207
+ * Creates a sport profile for the given sport and optionally adds an initial level.
6208
+ */
6209
+ declare const createUserSportProfileMutation: (options?: Partial<Options<CreateUserSportProfileData>>) => UseMutationOptions<CreateUserSportProfileResponse, CreateUserSportProfileError, Options<CreateUserSportProfileData>>;
6210
+ /**
6211
+ * Delete a sport profile
6212
+ *
6213
+ * Deletes a sport profile and all its levels.
6214
+ */
6215
+ declare const deleteUserSportProfileMutation: (options?: Partial<Options<DeleteUserSportProfileData>>) => UseMutationOptions<DeleteUserSportProfileResponse, DeleteUserSportProfileError, Options<DeleteUserSportProfileData>>;
6216
+ declare const getUserSportProfileQueryKey: (options: Options<GetUserSportProfileData>) => [Pick<Options<GetUserSportProfileData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6217
+ _id: string;
6218
+ _infinite?: boolean;
6219
+ tags?: ReadonlyArray<string>;
6220
+ }];
6221
+ /**
6222
+ * Get a sport profile
6223
+ *
6224
+ * Returns a specific sport profile by ID.
6225
+ */
6226
+ declare const getUserSportProfileOptions: (options: Options<GetUserSportProfileData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<SportProfile, PkgOpenapiSharedProblemDetails, SportProfile, [Pick<Options<GetUserSportProfileData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6227
+ _id: string;
6228
+ _infinite?: boolean;
6229
+ tags?: ReadonlyArray<string>;
6230
+ }]>, "queryFn"> & {
6231
+ queryFn?: _tanstack_react_query.QueryFunction<SportProfile, [Pick<Options<GetUserSportProfileData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6232
+ _id: string;
6233
+ _infinite?: boolean;
6234
+ tags?: ReadonlyArray<string>;
6235
+ }], never> | undefined;
6236
+ } & {
6237
+ queryKey: [Pick<Options<GetUserSportProfileData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6238
+ _id: string;
6239
+ _infinite?: boolean;
6240
+ tags?: ReadonlyArray<string>;
6241
+ }] & {
6242
+ [dataTagSymbol]: SportProfile;
6243
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
6244
+ };
6245
+ };
6246
+ /**
6247
+ * Add a level to a sport profile
6248
+ *
6249
+ * Adds a new authority level to an existing sport profile.
6250
+ */
6251
+ declare const addUserSportProfileLevelMutation: (options?: Partial<Options<AddUserSportProfileLevelData>>) => UseMutationOptions<AddUserSportProfileLevelResponse, AddUserSportProfileLevelError, Options<AddUserSportProfileLevelData>>;
6252
+ /**
6253
+ * Delete a sport level
6254
+ *
6255
+ * Deletes a specific authority level from a sport profile.
6256
+ */
6257
+ declare const deleteUserSportProfileLevelMutation: (options?: Partial<Options<DeleteUserSportProfileLevelData>>) => UseMutationOptions<DeleteUserSportProfileLevelResponse, DeleteUserSportProfileLevelError, Options<DeleteUserSportProfileLevelData>>;
6258
+ /**
6259
+ * Update a sport level
6260
+ *
6261
+ * Updates the value of an existing sport level.
6262
+ */
6263
+ declare const updateUserSportProfileLevelMutation: (options?: Partial<Options<UpdateUserSportProfileLevelData>>) => UseMutationOptions<UpdateUserSportProfileLevelResponse, UpdateUserSportProfileLevelError, Options<UpdateUserSportProfileLevelData>>;
5429
6264
 
5430
6265
  type reactQuery_gen_QueryKey<TOptions extends Options> = QueryKey<TOptions>;
6266
+ declare const reactQuery_gen_addUserSportProfileLevelMutation: typeof addUserSportProfileLevelMutation;
5431
6267
  declare const reactQuery_gen_createFacilityOfferOrderMutation: typeof createFacilityOfferOrderMutation;
6268
+ declare const reactQuery_gen_createUserSportProfileMutation: typeof createUserSportProfileMutation;
6269
+ declare const reactQuery_gen_deleteUserSportProfileLevelMutation: typeof deleteUserSportProfileLevelMutation;
6270
+ declare const reactQuery_gen_deleteUserSportProfileMutation: typeof deleteUserSportProfileMutation;
5432
6271
  declare const reactQuery_gen_getNotificationByIdOptions: typeof getNotificationByIdOptions;
5433
6272
  declare const reactQuery_gen_getNotificationByIdQueryKey: typeof getNotificationByIdQueryKey;
5434
6273
  declare const reactQuery_gen_getNotificationsInfiniteOptions: typeof getNotificationsInfiniteOptions;
@@ -5437,8 +6276,14 @@ declare const reactQuery_gen_getNotificationsOptions: typeof getNotificationsOpt
5437
6276
  declare const reactQuery_gen_getNotificationsPreferencesOptions: typeof getNotificationsPreferencesOptions;
5438
6277
  declare const reactQuery_gen_getNotificationsPreferencesQueryKey: typeof getNotificationsPreferencesQueryKey;
5439
6278
  declare const reactQuery_gen_getNotificationsQueryKey: typeof getNotificationsQueryKey;
6279
+ declare const reactQuery_gen_getSportAuthoritiesOptions: typeof getSportAuthoritiesOptions;
6280
+ declare const reactQuery_gen_getSportAuthoritiesQueryKey: typeof getSportAuthoritiesQueryKey;
5440
6281
  declare const reactQuery_gen_getUserFacilityPermissionsOptions: typeof getUserFacilityPermissionsOptions;
5441
6282
  declare const reactQuery_gen_getUserFacilityPermissionsQueryKey: typeof getUserFacilityPermissionsQueryKey;
6283
+ declare const reactQuery_gen_getUserSportProfileOptions: typeof getUserSportProfileOptions;
6284
+ declare const reactQuery_gen_getUserSportProfileQueryKey: typeof getUserSportProfileQueryKey;
6285
+ declare const reactQuery_gen_getUserSportProfilesOptions: typeof getUserSportProfilesOptions;
6286
+ declare const reactQuery_gen_getUserSportProfilesQueryKey: typeof getUserSportProfilesQueryKey;
5442
6287
  declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacilityOffersInfiniteOptions;
5443
6288
  declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
5444
6289
  declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
@@ -5451,10 +6296,17 @@ declare const reactQuery_gen_updateAllNotificationsMutation: typeof updateAllNot
5451
6296
  declare const reactQuery_gen_updateNotificationMutation: typeof updateNotificationMutation;
5452
6297
  declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof updateNotificationsPreferencesMutation;
5453
6298
  declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
6299
+ declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
5454
6300
  declare namespace reactQuery_gen {
5455
- export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, 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_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, 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 };
6301
+ 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_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 };
5456
6302
  }
5457
6303
 
6304
+ type indexV1_AddUserSportProfileLevelData = AddUserSportProfileLevelData;
6305
+ type indexV1_AddUserSportProfileLevelError = AddUserSportProfileLevelError;
6306
+ type indexV1_AddUserSportProfileLevelErrors = AddUserSportProfileLevelErrors;
6307
+ type indexV1_AddUserSportProfileLevelResponse = AddUserSportProfileLevelResponse;
6308
+ type indexV1_AddUserSportProfileLevelResponses = AddUserSportProfileLevelResponses;
6309
+ type indexV1_AuthoritySlug = AuthoritySlug;
5458
6310
  type indexV1_Channels = Channels;
5459
6311
  type indexV1_ClientOptions = ClientOptions;
5460
6312
  type indexV1_CreateFacilityOfferOrderData = CreateFacilityOfferOrderData;
@@ -5462,6 +6314,23 @@ type indexV1_CreateFacilityOfferOrderError = CreateFacilityOfferOrderError;
5462
6314
  type indexV1_CreateFacilityOfferOrderErrors = CreateFacilityOfferOrderErrors;
5463
6315
  type indexV1_CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponse;
5464
6316
  type indexV1_CreateFacilityOfferOrderResponses = CreateFacilityOfferOrderResponses;
6317
+ type indexV1_CreateSportProfileLevelRequest = CreateSportProfileLevelRequest;
6318
+ type indexV1_CreateSportProfileRequest = CreateSportProfileRequest;
6319
+ type indexV1_CreateUserSportProfileData = CreateUserSportProfileData;
6320
+ type indexV1_CreateUserSportProfileError = CreateUserSportProfileError;
6321
+ type indexV1_CreateUserSportProfileErrors = CreateUserSportProfileErrors;
6322
+ type indexV1_CreateUserSportProfileResponse = CreateUserSportProfileResponse;
6323
+ type indexV1_CreateUserSportProfileResponses = CreateUserSportProfileResponses;
6324
+ type indexV1_DeleteUserSportProfileData = DeleteUserSportProfileData;
6325
+ type indexV1_DeleteUserSportProfileError = DeleteUserSportProfileError;
6326
+ type indexV1_DeleteUserSportProfileErrors = DeleteUserSportProfileErrors;
6327
+ type indexV1_DeleteUserSportProfileLevelData = DeleteUserSportProfileLevelData;
6328
+ type indexV1_DeleteUserSportProfileLevelError = DeleteUserSportProfileLevelError;
6329
+ type indexV1_DeleteUserSportProfileLevelErrors = DeleteUserSportProfileLevelErrors;
6330
+ type indexV1_DeleteUserSportProfileLevelResponse = DeleteUserSportProfileLevelResponse;
6331
+ type indexV1_DeleteUserSportProfileLevelResponses = DeleteUserSportProfileLevelResponses;
6332
+ type indexV1_DeleteUserSportProfileResponse = DeleteUserSportProfileResponse;
6333
+ type indexV1_DeleteUserSportProfileResponses = DeleteUserSportProfileResponses;
5465
6334
  type indexV1_FacilityIdPath = FacilityIdPath;
5466
6335
  type indexV1_FacilityMessagePayload = FacilityMessagePayload;
5467
6336
  type indexV1_FacilityOffer = FacilityOffer;
@@ -5494,11 +6363,26 @@ type indexV1_GetNotificationsPreferencesResponse = GetNotificationsPreferencesRe
5494
6363
  type indexV1_GetNotificationsPreferencesResponses = GetNotificationsPreferencesResponses;
5495
6364
  type indexV1_GetNotificationsResponse = GetNotificationsResponse;
5496
6365
  type indexV1_GetNotificationsResponses = GetNotificationsResponses;
6366
+ type indexV1_GetSportAuthoritiesData = GetSportAuthoritiesData;
6367
+ type indexV1_GetSportAuthoritiesError = GetSportAuthoritiesError;
6368
+ type indexV1_GetSportAuthoritiesErrors = GetSportAuthoritiesErrors;
6369
+ type indexV1_GetSportAuthoritiesResponse = GetSportAuthoritiesResponse;
6370
+ type indexV1_GetSportAuthoritiesResponses = GetSportAuthoritiesResponses;
5497
6371
  type indexV1_GetUserFacilityPermissionsData = GetUserFacilityPermissionsData;
5498
6372
  type indexV1_GetUserFacilityPermissionsError = GetUserFacilityPermissionsError;
5499
6373
  type indexV1_GetUserFacilityPermissionsErrors = GetUserFacilityPermissionsErrors;
5500
6374
  type indexV1_GetUserFacilityPermissionsResponse = GetUserFacilityPermissionsResponse;
5501
6375
  type indexV1_GetUserFacilityPermissionsResponses = GetUserFacilityPermissionsResponses;
6376
+ type indexV1_GetUserSportProfileData = GetUserSportProfileData;
6377
+ type indexV1_GetUserSportProfileError = GetUserSportProfileError;
6378
+ type indexV1_GetUserSportProfileErrors = GetUserSportProfileErrors;
6379
+ type indexV1_GetUserSportProfileResponse = GetUserSportProfileResponse;
6380
+ type indexV1_GetUserSportProfileResponses = GetUserSportProfileResponses;
6381
+ type indexV1_GetUserSportProfilesData = GetUserSportProfilesData;
6382
+ type indexV1_GetUserSportProfilesError = GetUserSportProfilesError;
6383
+ type indexV1_GetUserSportProfilesErrors = GetUserSportProfilesErrors;
6384
+ type indexV1_GetUserSportProfilesResponse = GetUserSportProfilesResponse;
6385
+ type indexV1_GetUserSportProfilesResponses = GetUserSportProfilesResponses;
5502
6386
  type indexV1_ListFacilityOffersData = ListFacilityOffersData;
5503
6387
  type indexV1_ListFacilityOffersError = ListFacilityOffersError;
5504
6388
  type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
@@ -5532,6 +6416,14 @@ type indexV1_SearchUsersErrors = SearchUsersErrors;
5532
6416
  type indexV1_SearchUsersResponse = SearchUsersResponse;
5533
6417
  type indexV1_SearchUsersResponses = SearchUsersResponses;
5534
6418
  type indexV1_Source = Source;
6419
+ type indexV1_SportAuthoritiesResponse = SportAuthoritiesResponse;
6420
+ type indexV1_SportAuthority = SportAuthority;
6421
+ type indexV1_SportLevel = SportLevel;
6422
+ type indexV1_SportProfile = SportProfile;
6423
+ type indexV1_SportProfileAttribute = SportProfileAttribute;
6424
+ type indexV1_SportProfileId = SportProfileId;
6425
+ type indexV1_SportProfileLevel = SportProfileLevel;
6426
+ type indexV1_SportProfilesResponse = SportProfilesResponse;
5535
6427
  type indexV1_Topic = Topic;
5536
6428
  type indexV1_UpdateAllNotificationsData = UpdateAllNotificationsData;
5537
6429
  type indexV1_UpdateAllNotificationsError = UpdateAllNotificationsError;
@@ -5549,29 +6441,44 @@ type indexV1_UpdateNotificationsPreferencesErrors = UpdateNotificationsPreferenc
5549
6441
  type indexV1_UpdateNotificationsPreferencesResponse = UpdateNotificationsPreferencesResponse;
5550
6442
  type indexV1_UpdateNotificationsPreferencesResponses = UpdateNotificationsPreferencesResponses;
5551
6443
  type indexV1_UpdatePreferencesRequestBody = UpdatePreferencesRequestBody;
6444
+ type indexV1_UpdateSportProfileLevelRequest = UpdateSportProfileLevelRequest;
5552
6445
  type indexV1_UpdateUserProfileData = UpdateUserProfileData;
5553
6446
  type indexV1_UpdateUserProfileError = UpdateUserProfileError;
5554
6447
  type indexV1_UpdateUserProfileErrors = UpdateUserProfileErrors;
5555
6448
  type indexV1_UpdateUserProfileResponse = UpdateUserProfileResponse;
5556
6449
  type indexV1_UpdateUserProfileResponses = UpdateUserProfileResponses;
6450
+ type indexV1_UpdateUserSportProfileLevelData = UpdateUserSportProfileLevelData;
6451
+ type indexV1_UpdateUserSportProfileLevelError = UpdateUserSportProfileLevelError;
6452
+ type indexV1_UpdateUserSportProfileLevelErrors = UpdateUserSportProfileLevelErrors;
6453
+ type indexV1_UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelResponse;
6454
+ type indexV1_UpdateUserSportProfileLevelResponses = UpdateUserSportProfileLevelResponses;
5557
6455
  type indexV1_UpdateUsersProfilesRequest = UpdateUsersProfilesRequest;
6456
+ type indexV1_UserId = UserId;
5558
6457
  type indexV1_UserProfile = UserProfile;
5559
6458
  type indexV1_UserRelation = UserRelation;
5560
6459
  type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
6460
+ declare const indexV1_addUserSportProfileLevel: typeof addUserSportProfileLevel;
5561
6461
  declare const indexV1_client: typeof client;
5562
6462
  declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
6463
+ declare const indexV1_createUserSportProfile: typeof createUserSportProfile;
6464
+ declare const indexV1_deleteUserSportProfile: typeof deleteUserSportProfile;
6465
+ declare const indexV1_deleteUserSportProfileLevel: typeof deleteUserSportProfileLevel;
5563
6466
  declare const indexV1_getNotificationById: typeof getNotificationById;
5564
6467
  declare const indexV1_getNotifications: typeof getNotifications;
5565
6468
  declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
6469
+ declare const indexV1_getSportAuthorities: typeof getSportAuthorities;
5566
6470
  declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissions;
6471
+ declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
6472
+ declare const indexV1_getUserSportProfiles: typeof getUserSportProfiles;
5567
6473
  declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
5568
6474
  declare const indexV1_searchUsers: typeof searchUsers;
5569
6475
  declare const indexV1_updateAllNotifications: typeof updateAllNotifications;
5570
6476
  declare const indexV1_updateNotification: typeof updateNotification;
5571
6477
  declare const indexV1_updateNotificationsPreferences: typeof updateNotificationsPreferences;
5572
6478
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
6479
+ declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
5573
6480
  declare namespace indexV1 {
5574
- export { type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, 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_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_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_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_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_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_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, 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_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_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_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, 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 };
6481
+ 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_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, 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_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_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_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_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_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_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, 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_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, 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_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 };
5575
6482
  }
5576
6483
 
5577
6484
  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 };