@matchi/api 0.20260318.2 → 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.
- package/dist/main/index.d.mts +919 -20
- package/dist/main/index.d.ts +919 -20
- package/dist/main/index.js +5 -5
- package/dist/main/index.mjs +5 -5
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -3523,6 +3523,24 @@ type Channels = {
|
|
|
3523
3523
|
inapp: boolean;
|
|
3524
3524
|
push: boolean;
|
|
3525
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
|
+
};
|
|
3526
3544
|
type FacilityMessagePayload = {
|
|
3527
3545
|
description: string;
|
|
3528
3546
|
image_url?: string;
|
|
@@ -3668,12 +3686,105 @@ type PreferencesResponse = {
|
|
|
3668
3686
|
type RegisterDeviceRequest = {
|
|
3669
3687
|
app_version: string;
|
|
3670
3688
|
fcm_token: string;
|
|
3689
|
+
/**
|
|
3690
|
+
* User's preferred language for push notifications.
|
|
3691
|
+
*/
|
|
3692
|
+
language?: string;
|
|
3671
3693
|
os: 'ios' | 'android';
|
|
3672
3694
|
};
|
|
3673
3695
|
declare const Source: {
|
|
3674
3696
|
readonly FACILITY: "FACILITY";
|
|
3675
3697
|
};
|
|
3676
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
|
+
};
|
|
3677
3788
|
declare const Topic: {
|
|
3678
3789
|
readonly FACILITY_MESSAGE: "FACILITY_MESSAGE";
|
|
3679
3790
|
};
|
|
@@ -3682,6 +3793,9 @@ type UpdatePreferencesRequestBody = {
|
|
|
3682
3793
|
inapp?: boolean;
|
|
3683
3794
|
push?: boolean;
|
|
3684
3795
|
};
|
|
3796
|
+
type UpdateSportProfileLevelRequest = {
|
|
3797
|
+
level: string;
|
|
3798
|
+
};
|
|
3685
3799
|
type UpdateUsersProfilesRequest = {
|
|
3686
3800
|
address?: string;
|
|
3687
3801
|
birthday?: string;
|
|
@@ -3713,6 +3827,7 @@ type UserProfile = {
|
|
|
3713
3827
|
private_profile?: boolean;
|
|
3714
3828
|
profile_image_url?: string;
|
|
3715
3829
|
relation_status: UserRelation;
|
|
3830
|
+
sport_levels?: Array<SportLevel>;
|
|
3716
3831
|
telephone?: string;
|
|
3717
3832
|
user_id: string;
|
|
3718
3833
|
zipcode?: string;
|
|
@@ -3804,9 +3919,21 @@ type PkgOpenapiSharedProblemDetails = {
|
|
|
3804
3919
|
*/
|
|
3805
3920
|
type?: string;
|
|
3806
3921
|
};
|
|
3922
|
+
/**
|
|
3923
|
+
* The rating authority slug (e.g. "matchi", "dk-padel")
|
|
3924
|
+
*/
|
|
3925
|
+
type AuthoritySlug = string;
|
|
3807
3926
|
type FacilityIdPath = string;
|
|
3808
3927
|
type NotificationsFilterParam = NotificationsFilter;
|
|
3809
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;
|
|
3810
3937
|
/**
|
|
3811
3938
|
* Maximum number of items to return per page.
|
|
3812
3939
|
*/
|
|
@@ -4136,6 +4263,30 @@ type UpdateNotificationResponses = {
|
|
|
4136
4263
|
200: Notification;
|
|
4137
4264
|
};
|
|
4138
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];
|
|
4139
4290
|
type SearchUsersData = {
|
|
4140
4291
|
body?: never;
|
|
4141
4292
|
path?: never;
|
|
@@ -4219,24 +4370,324 @@ type GetUserFacilityPermissionsResponses = {
|
|
|
4219
4370
|
/**
|
|
4220
4371
|
* OK
|
|
4221
4372
|
*/
|
|
4222
|
-
200: FacilityPermissionsResponse;
|
|
4373
|
+
200: FacilityPermissionsResponse;
|
|
4374
|
+
};
|
|
4375
|
+
type GetUserFacilityPermissionsResponse = GetUserFacilityPermissionsResponses[keyof GetUserFacilityPermissionsResponses];
|
|
4376
|
+
type UpdateUserProfileData = {
|
|
4377
|
+
/**
|
|
4378
|
+
* The profile fields to update
|
|
4379
|
+
*/
|
|
4380
|
+
body: UpdateUsersProfilesRequest;
|
|
4381
|
+
path: {
|
|
4382
|
+
/**
|
|
4383
|
+
* The user ID (must match the authenticated user)
|
|
4384
|
+
*/
|
|
4385
|
+
user_id: string;
|
|
4386
|
+
};
|
|
4387
|
+
query?: never;
|
|
4388
|
+
url: '/users/{user_id}/profiles';
|
|
4389
|
+
};
|
|
4390
|
+
type UpdateUserProfileErrors = {
|
|
4391
|
+
/**
|
|
4392
|
+
* The request was malformed or could not be processed.
|
|
4393
|
+
*/
|
|
4394
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
4395
|
+
/**
|
|
4396
|
+
* Access token is not set or invalid.
|
|
4397
|
+
*/
|
|
4398
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4399
|
+
/**
|
|
4400
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4401
|
+
*/
|
|
4402
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4403
|
+
/**
|
|
4404
|
+
* The requested resource was not found.
|
|
4405
|
+
*/
|
|
4406
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4407
|
+
/**
|
|
4408
|
+
* The server encountered an unexpected error
|
|
4409
|
+
*/
|
|
4410
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4411
|
+
};
|
|
4412
|
+
type UpdateUserProfileError = UpdateUserProfileErrors[keyof UpdateUserProfileErrors];
|
|
4413
|
+
type UpdateUserProfileResponses = {
|
|
4414
|
+
/**
|
|
4415
|
+
* Profile updated successfully
|
|
4416
|
+
*/
|
|
4417
|
+
200: UserProfile;
|
|
4418
|
+
};
|
|
4419
|
+
type UpdateUserProfileResponse = UpdateUserProfileResponses[keyof UpdateUserProfileResponses];
|
|
4420
|
+
type GetUserSportProfilesData = {
|
|
4421
|
+
body?: never;
|
|
4422
|
+
path: {
|
|
4423
|
+
/**
|
|
4424
|
+
* The user ID
|
|
4425
|
+
*/
|
|
4426
|
+
user_id: string;
|
|
4427
|
+
};
|
|
4428
|
+
query?: never;
|
|
4429
|
+
url: '/users/{user_id}/sport-profiles';
|
|
4430
|
+
};
|
|
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;
|
|
4444
|
+
};
|
|
4445
|
+
type GetUserSportProfilesError = GetUserSportProfilesErrors[keyof GetUserSportProfilesErrors];
|
|
4446
|
+
type GetUserSportProfilesResponses = {
|
|
4447
|
+
/**
|
|
4448
|
+
* OK
|
|
4449
|
+
*/
|
|
4450
|
+
200: SportProfilesResponse;
|
|
4451
|
+
};
|
|
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;
|
|
4463
|
+
};
|
|
4464
|
+
query?: never;
|
|
4465
|
+
url: '/users/{user_id}/sport-profiles';
|
|
4466
|
+
};
|
|
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;
|
|
4488
|
+
};
|
|
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;
|
|
4508
|
+
};
|
|
4509
|
+
query?: never;
|
|
4510
|
+
url: '/users/{user_id}/sport-profiles/{sport_profile_id}';
|
|
4511
|
+
};
|
|
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;
|
|
4223
4666
|
};
|
|
4224
|
-
type
|
|
4225
|
-
type
|
|
4667
|
+
type DeleteUserSportProfileLevelResponse = DeleteUserSportProfileLevelResponses[keyof DeleteUserSportProfileLevelResponses];
|
|
4668
|
+
type UpdateUserSportProfileLevelData = {
|
|
4226
4669
|
/**
|
|
4227
|
-
* The
|
|
4670
|
+
* The updated level value
|
|
4228
4671
|
*/
|
|
4229
|
-
body:
|
|
4672
|
+
body: UpdateSportProfileLevelRequest;
|
|
4230
4673
|
path: {
|
|
4231
4674
|
/**
|
|
4232
|
-
* The user ID
|
|
4675
|
+
* The user ID
|
|
4233
4676
|
*/
|
|
4234
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;
|
|
4235
4686
|
};
|
|
4236
4687
|
query?: never;
|
|
4237
|
-
url: '/users/{user_id}/profiles';
|
|
4688
|
+
url: '/users/{user_id}/sport-profiles/{sport_profile_id}/levels/{authority_slug}';
|
|
4238
4689
|
};
|
|
4239
|
-
type
|
|
4690
|
+
type UpdateUserSportProfileLevelErrors = {
|
|
4240
4691
|
/**
|
|
4241
4692
|
* The request was malformed or could not be processed.
|
|
4242
4693
|
*/
|
|
@@ -4253,19 +4704,15 @@ type UpdateUserProfileErrors = {
|
|
|
4253
4704
|
* The requested resource was not found.
|
|
4254
4705
|
*/
|
|
4255
4706
|
404: PkgOpenapiSharedProblemDetails;
|
|
4256
|
-
/**
|
|
4257
|
-
* The server encountered an unexpected error
|
|
4258
|
-
*/
|
|
4259
|
-
500: PkgOpenapiSharedProblemDetails;
|
|
4260
4707
|
};
|
|
4261
|
-
type
|
|
4262
|
-
type
|
|
4708
|
+
type UpdateUserSportProfileLevelError = UpdateUserSportProfileLevelErrors[keyof UpdateUserSportProfileLevelErrors];
|
|
4709
|
+
type UpdateUserSportProfileLevelResponses = {
|
|
4263
4710
|
/**
|
|
4264
|
-
*
|
|
4711
|
+
* Updated
|
|
4265
4712
|
*/
|
|
4266
|
-
200:
|
|
4713
|
+
200: SportProfileLevel;
|
|
4267
4714
|
};
|
|
4268
|
-
type
|
|
4715
|
+
type UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelResponses[keyof UpdateUserSportProfileLevelResponses];
|
|
4269
4716
|
|
|
4270
4717
|
declare const client: Client;
|
|
4271
4718
|
|
|
@@ -4281,6 +4728,36 @@ declare const ChannelsSchema: {
|
|
|
4281
4728
|
readonly required: readonly ["inapp", "push"];
|
|
4282
4729
|
readonly type: "object";
|
|
4283
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
|
+
};
|
|
4284
4761
|
declare const FacilityMessagePayloadSchema: {
|
|
4285
4762
|
readonly properties: {
|
|
4286
4763
|
readonly description: {
|
|
@@ -4754,6 +5231,12 @@ declare const RegisterDeviceRequestSchema: {
|
|
|
4754
5231
|
readonly minLength: 1;
|
|
4755
5232
|
readonly type: "string";
|
|
4756
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
|
+
};
|
|
4757
5240
|
readonly os: {
|
|
4758
5241
|
readonly enum: readonly ["ios", "android"];
|
|
4759
5242
|
readonly type: "string";
|
|
@@ -4766,6 +5249,157 @@ declare const SourceSchema: {
|
|
|
4766
5249
|
readonly enum: readonly ["FACILITY"];
|
|
4767
5250
|
readonly type: "string";
|
|
4768
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
|
+
};
|
|
4769
5403
|
declare const TopicSchema: {
|
|
4770
5404
|
readonly enum: readonly ["FACILITY_MESSAGE"];
|
|
4771
5405
|
readonly type: "string";
|
|
@@ -4781,6 +5415,15 @@ declare const UpdatePreferencesRequestBodySchema: {
|
|
|
4781
5415
|
};
|
|
4782
5416
|
readonly type: "object";
|
|
4783
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
|
+
};
|
|
4784
5427
|
declare const UpdateUsersProfilesRequestSchema: {
|
|
4785
5428
|
readonly properties: {
|
|
4786
5429
|
readonly address: {
|
|
@@ -4884,6 +5527,12 @@ declare const UserProfileSchema: {
|
|
|
4884
5527
|
readonly relation_status: {
|
|
4885
5528
|
readonly $ref: "#/components/schemas/UserRelation";
|
|
4886
5529
|
};
|
|
5530
|
+
readonly sport_levels: {
|
|
5531
|
+
readonly items: {
|
|
5532
|
+
readonly $ref: "#/components/schemas/SportLevel";
|
|
5533
|
+
};
|
|
5534
|
+
readonly type: "array";
|
|
5535
|
+
};
|
|
4887
5536
|
readonly telephone: {
|
|
4888
5537
|
readonly type: "string";
|
|
4889
5538
|
};
|
|
@@ -5009,6 +5658,8 @@ declare const pkgOpenapiSharedProblemDetailsSchema: {
|
|
|
5009
5658
|
};
|
|
5010
5659
|
|
|
5011
5660
|
declare const schemas_gen_ChannelsSchema: typeof ChannelsSchema;
|
|
5661
|
+
declare const schemas_gen_CreateSportProfileLevelRequestSchema: typeof CreateSportProfileLevelRequestSchema;
|
|
5662
|
+
declare const schemas_gen_CreateSportProfileRequestSchema: typeof CreateSportProfileRequestSchema;
|
|
5012
5663
|
declare const schemas_gen_FacilityMessagePayloadSchema: typeof FacilityMessagePayloadSchema;
|
|
5013
5664
|
declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof FacilityOfferConditionActivitiesSchema;
|
|
5014
5665
|
declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
|
|
@@ -5036,8 +5687,16 @@ declare const schemas_gen_PreferenceSchema: typeof PreferenceSchema;
|
|
|
5036
5687
|
declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseSchema;
|
|
5037
5688
|
declare const schemas_gen_RegisterDeviceRequestSchema: typeof RegisterDeviceRequestSchema;
|
|
5038
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;
|
|
5039
5697
|
declare const schemas_gen_TopicSchema: typeof TopicSchema;
|
|
5040
5698
|
declare const schemas_gen_UpdatePreferencesRequestBodySchema: typeof UpdatePreferencesRequestBodySchema;
|
|
5699
|
+
declare const schemas_gen_UpdateSportProfileLevelRequestSchema: typeof UpdateSportProfileLevelRequestSchema;
|
|
5041
5700
|
declare const schemas_gen_UpdateUsersProfilesRequestSchema: typeof UpdateUsersProfilesRequestSchema;
|
|
5042
5701
|
declare const schemas_gen_UserProfileSchema: typeof UserProfileSchema;
|
|
5043
5702
|
declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
|
|
@@ -5048,7 +5707,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
5048
5707
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
5049
5708
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
5050
5709
|
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 };
|
|
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 };
|
|
5052
5711
|
}
|
|
5053
5712
|
|
|
5054
5713
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -5112,6 +5771,12 @@ declare const getNotificationById: <ThrowOnError extends boolean = false>(option
|
|
|
5112
5771
|
* Update notification
|
|
5113
5772
|
*/
|
|
5114
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">;
|
|
5115
5780
|
/**
|
|
5116
5781
|
* Search for users by name
|
|
5117
5782
|
*
|
|
@@ -5130,6 +5795,48 @@ declare const getUserFacilityPermissions: <ThrowOnError extends boolean = false>
|
|
|
5130
5795
|
* Update authenticated user's profile information
|
|
5131
5796
|
*/
|
|
5132
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">;
|
|
5133
5840
|
|
|
5134
5841
|
type QueryKey<TOptions extends Options> = [
|
|
5135
5842
|
Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
|
|
@@ -5334,6 +6041,36 @@ declare const getNotificationByIdOptions: (options: Options<GetNotificationByIdD
|
|
|
5334
6041
|
* Update notification
|
|
5335
6042
|
*/
|
|
5336
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
|
+
};
|
|
5337
6074
|
declare const searchUsersQueryKey: (options?: Options<SearchUsersData>) => [Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
5338
6075
|
_id: string;
|
|
5339
6076
|
_infinite?: boolean;
|
|
@@ -5426,9 +6163,103 @@ declare const getUserFacilityPermissionsOptions: (options: Options<GetUserFacili
|
|
|
5426
6163
|
* Update authenticated user's profile information
|
|
5427
6164
|
*/
|
|
5428
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>>;
|
|
5429
6256
|
|
|
5430
6257
|
type reactQuery_gen_QueryKey<TOptions extends Options> = QueryKey<TOptions>;
|
|
6258
|
+
declare const reactQuery_gen_addUserSportProfileLevelMutation: typeof addUserSportProfileLevelMutation;
|
|
5431
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;
|
|
5432
6263
|
declare const reactQuery_gen_getNotificationByIdOptions: typeof getNotificationByIdOptions;
|
|
5433
6264
|
declare const reactQuery_gen_getNotificationByIdQueryKey: typeof getNotificationByIdQueryKey;
|
|
5434
6265
|
declare const reactQuery_gen_getNotificationsInfiniteOptions: typeof getNotificationsInfiniteOptions;
|
|
@@ -5437,8 +6268,14 @@ declare const reactQuery_gen_getNotificationsOptions: typeof getNotificationsOpt
|
|
|
5437
6268
|
declare const reactQuery_gen_getNotificationsPreferencesOptions: typeof getNotificationsPreferencesOptions;
|
|
5438
6269
|
declare const reactQuery_gen_getNotificationsPreferencesQueryKey: typeof getNotificationsPreferencesQueryKey;
|
|
5439
6270
|
declare const reactQuery_gen_getNotificationsQueryKey: typeof getNotificationsQueryKey;
|
|
6271
|
+
declare const reactQuery_gen_getSportAuthoritiesOptions: typeof getSportAuthoritiesOptions;
|
|
6272
|
+
declare const reactQuery_gen_getSportAuthoritiesQueryKey: typeof getSportAuthoritiesQueryKey;
|
|
5440
6273
|
declare const reactQuery_gen_getUserFacilityPermissionsOptions: typeof getUserFacilityPermissionsOptions;
|
|
5441
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;
|
|
5442
6279
|
declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacilityOffersInfiniteOptions;
|
|
5443
6280
|
declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
|
|
5444
6281
|
declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
|
|
@@ -5451,10 +6288,17 @@ declare const reactQuery_gen_updateAllNotificationsMutation: typeof updateAllNot
|
|
|
5451
6288
|
declare const reactQuery_gen_updateNotificationMutation: typeof updateNotificationMutation;
|
|
5452
6289
|
declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof updateNotificationsPreferencesMutation;
|
|
5453
6290
|
declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
|
|
6291
|
+
declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
|
|
5454
6292
|
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 };
|
|
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 };
|
|
5456
6294
|
}
|
|
5457
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;
|
|
5458
6302
|
type indexV1_Channels = Channels;
|
|
5459
6303
|
type indexV1_ClientOptions = ClientOptions;
|
|
5460
6304
|
type indexV1_CreateFacilityOfferOrderData = CreateFacilityOfferOrderData;
|
|
@@ -5462,6 +6306,23 @@ type indexV1_CreateFacilityOfferOrderError = CreateFacilityOfferOrderError;
|
|
|
5462
6306
|
type indexV1_CreateFacilityOfferOrderErrors = CreateFacilityOfferOrderErrors;
|
|
5463
6307
|
type indexV1_CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponse;
|
|
5464
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;
|
|
5465
6326
|
type indexV1_FacilityIdPath = FacilityIdPath;
|
|
5466
6327
|
type indexV1_FacilityMessagePayload = FacilityMessagePayload;
|
|
5467
6328
|
type indexV1_FacilityOffer = FacilityOffer;
|
|
@@ -5494,11 +6355,26 @@ type indexV1_GetNotificationsPreferencesResponse = GetNotificationsPreferencesRe
|
|
|
5494
6355
|
type indexV1_GetNotificationsPreferencesResponses = GetNotificationsPreferencesResponses;
|
|
5495
6356
|
type indexV1_GetNotificationsResponse = GetNotificationsResponse;
|
|
5496
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;
|
|
5497
6363
|
type indexV1_GetUserFacilityPermissionsData = GetUserFacilityPermissionsData;
|
|
5498
6364
|
type indexV1_GetUserFacilityPermissionsError = GetUserFacilityPermissionsError;
|
|
5499
6365
|
type indexV1_GetUserFacilityPermissionsErrors = GetUserFacilityPermissionsErrors;
|
|
5500
6366
|
type indexV1_GetUserFacilityPermissionsResponse = GetUserFacilityPermissionsResponse;
|
|
5501
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;
|
|
5502
6378
|
type indexV1_ListFacilityOffersData = ListFacilityOffersData;
|
|
5503
6379
|
type indexV1_ListFacilityOffersError = ListFacilityOffersError;
|
|
5504
6380
|
type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
|
|
@@ -5532,6 +6408,14 @@ type indexV1_SearchUsersErrors = SearchUsersErrors;
|
|
|
5532
6408
|
type indexV1_SearchUsersResponse = SearchUsersResponse;
|
|
5533
6409
|
type indexV1_SearchUsersResponses = SearchUsersResponses;
|
|
5534
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;
|
|
5535
6419
|
type indexV1_Topic = Topic;
|
|
5536
6420
|
type indexV1_UpdateAllNotificationsData = UpdateAllNotificationsData;
|
|
5537
6421
|
type indexV1_UpdateAllNotificationsError = UpdateAllNotificationsError;
|
|
@@ -5549,29 +6433,44 @@ type indexV1_UpdateNotificationsPreferencesErrors = UpdateNotificationsPreferenc
|
|
|
5549
6433
|
type indexV1_UpdateNotificationsPreferencesResponse = UpdateNotificationsPreferencesResponse;
|
|
5550
6434
|
type indexV1_UpdateNotificationsPreferencesResponses = UpdateNotificationsPreferencesResponses;
|
|
5551
6435
|
type indexV1_UpdatePreferencesRequestBody = UpdatePreferencesRequestBody;
|
|
6436
|
+
type indexV1_UpdateSportProfileLevelRequest = UpdateSportProfileLevelRequest;
|
|
5552
6437
|
type indexV1_UpdateUserProfileData = UpdateUserProfileData;
|
|
5553
6438
|
type indexV1_UpdateUserProfileError = UpdateUserProfileError;
|
|
5554
6439
|
type indexV1_UpdateUserProfileErrors = UpdateUserProfileErrors;
|
|
5555
6440
|
type indexV1_UpdateUserProfileResponse = UpdateUserProfileResponse;
|
|
5556
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;
|
|
5557
6447
|
type indexV1_UpdateUsersProfilesRequest = UpdateUsersProfilesRequest;
|
|
6448
|
+
type indexV1_UserId = UserId;
|
|
5558
6449
|
type indexV1_UserProfile = UserProfile;
|
|
5559
6450
|
type indexV1_UserRelation = UserRelation;
|
|
5560
6451
|
type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
|
|
6452
|
+
declare const indexV1_addUserSportProfileLevel: typeof addUserSportProfileLevel;
|
|
5561
6453
|
declare const indexV1_client: typeof client;
|
|
5562
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;
|
|
5563
6458
|
declare const indexV1_getNotificationById: typeof getNotificationById;
|
|
5564
6459
|
declare const indexV1_getNotifications: typeof getNotifications;
|
|
5565
6460
|
declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
|
|
6461
|
+
declare const indexV1_getSportAuthorities: typeof getSportAuthorities;
|
|
5566
6462
|
declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissions;
|
|
6463
|
+
declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
|
|
6464
|
+
declare const indexV1_getUserSportProfiles: typeof getUserSportProfiles;
|
|
5567
6465
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
5568
6466
|
declare const indexV1_searchUsers: typeof searchUsers;
|
|
5569
6467
|
declare const indexV1_updateAllNotifications: typeof updateAllNotifications;
|
|
5570
6468
|
declare const indexV1_updateNotification: typeof updateNotification;
|
|
5571
6469
|
declare const indexV1_updateNotificationsPreferences: typeof updateNotificationsPreferences;
|
|
5572
6470
|
declare const indexV1_updateUserProfile: typeof updateUserProfile;
|
|
6471
|
+
declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
|
|
5573
6472
|
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 };
|
|
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 };
|
|
5575
6474
|
}
|
|
5576
6475
|
|
|
5577
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 };
|