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