@matchi/api 0.20251202.1 → 0.20260121.6

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.
@@ -3199,6 +3199,10 @@ declare class UserServiceV1Service {
3199
3199
  static listUserOfferValueCards(offset?: number, limit?: number): CancelablePromise<userOfferValueCardsResponse>;
3200
3200
  }
3201
3201
 
3202
+ type Channels = {
3203
+ inapp: boolean;
3204
+ push: boolean;
3205
+ };
3202
3206
  type FacilityMessagePayload = {
3203
3207
  description: string;
3204
3208
  image_url?: string;
@@ -3282,6 +3286,13 @@ type FacilityValueCardData = {
3282
3286
  price: string;
3283
3287
  user_has_active_membership: boolean;
3284
3288
  };
3289
+ type Gender = 'MALE' | 'FEMALE' | 'OTHER' | 'PREFER_NOT_TO_SAY';
3290
+ declare const Gender: {
3291
+ readonly MALE: "MALE";
3292
+ readonly FEMALE: "FEMALE";
3293
+ readonly OTHER: "OTHER";
3294
+ readonly PREFER_NOT_TO_SAY: "PREFER_NOT_TO_SAY";
3295
+ };
3285
3296
  type Metadata = {
3286
3297
  pagination?: PkgOpenapiSharedCursorPaginatedResultSet;
3287
3298
  summary: NotificationsSummary;
@@ -3298,9 +3309,9 @@ type Notification = {
3298
3309
  type NotificationPayload = FacilityMessagePayload;
3299
3310
  type NotificationRequestBody = {
3300
3311
  /**
3301
- * Set to a timestamp to mark as read, null to mark as unread
3312
+ * true to mark as read, false to mark as unread
3302
3313
  */
3303
- read_at?: string | null;
3314
+ is_read?: boolean;
3304
3315
  };
3305
3316
  type NotificationsFilter = {
3306
3317
  source?: Source;
@@ -3317,6 +3328,15 @@ type NotificationsSummary = {
3317
3328
  global_unread_count: number;
3318
3329
  unread_count: number;
3319
3330
  };
3331
+ type Preference = {
3332
+ channels: Channels;
3333
+ source?: Source;
3334
+ source_id?: string;
3335
+ topic: Topic;
3336
+ };
3337
+ type PreferencesResponse = {
3338
+ items: Array<Preference>;
3339
+ };
3320
3340
  type Source = 'FACILITY';
3321
3341
  declare const Source: {
3322
3342
  readonly FACILITY: "FACILITY";
@@ -3325,6 +3345,24 @@ type Topic = 'FACILITY_MESSAGE';
3325
3345
  declare const Topic: {
3326
3346
  readonly FACILITY_MESSAGE: "FACILITY_MESSAGE";
3327
3347
  };
3348
+ type UpdatePreferencesRequestBody = {
3349
+ inapp?: boolean;
3350
+ push?: boolean;
3351
+ };
3352
+ type UpdateUserProfileRequest = {
3353
+ address?: string;
3354
+ birthday?: string;
3355
+ city?: string;
3356
+ country?: string;
3357
+ email?: string;
3358
+ firstname?: string;
3359
+ gender?: Gender;
3360
+ language?: string;
3361
+ lastname?: string;
3362
+ private_profile?: boolean;
3363
+ telephone?: string;
3364
+ zipcode?: string;
3365
+ };
3328
3366
  type User = {
3329
3367
  first_name: string;
3330
3368
  last_name: string;
@@ -3332,6 +3370,23 @@ type User = {
3332
3370
  relation_status: UserRelation;
3333
3371
  user_id: string;
3334
3372
  };
3373
+ type UserProfile = {
3374
+ address?: string;
3375
+ birthday?: string;
3376
+ city?: string;
3377
+ country?: string;
3378
+ email: string;
3379
+ firstname: string;
3380
+ gender?: Gender;
3381
+ keycloak_id: string;
3382
+ language: string;
3383
+ lastname?: string;
3384
+ membership_facilities?: Array<number>;
3385
+ private_profile?: boolean | null;
3386
+ profile_image_url?: string;
3387
+ telephone?: string;
3388
+ zipcode?: string;
3389
+ };
3335
3390
  /**
3336
3391
  * Returns :
3337
3392
  * * `FRIENDS` - The user is a friend.
@@ -3603,6 +3658,78 @@ type UpdateAllNotificationsResponses = {
3603
3658
  200: NotificationsPaginatedResponse;
3604
3659
  };
3605
3660
  type UpdateAllNotificationsResponse = UpdateAllNotificationsResponses[keyof UpdateAllNotificationsResponses];
3661
+ type GetNotificationsPreferencesData = {
3662
+ body?: never;
3663
+ path?: never;
3664
+ query?: {
3665
+ topic?: Topic;
3666
+ source?: Source;
3667
+ source_ids?: Array<string>;
3668
+ };
3669
+ url: '/notifications/preferences';
3670
+ };
3671
+ type GetNotificationsPreferencesErrors = {
3672
+ /**
3673
+ * The request was malformed or could not be processed.
3674
+ */
3675
+ 400: PkgOpenapiSharedProblemDetails;
3676
+ /**
3677
+ * Access token is not set or invalid.
3678
+ */
3679
+ 401: PkgOpenapiSharedProblemDetails;
3680
+ /**
3681
+ * The server encountered an unexpected error
3682
+ */
3683
+ 500: PkgOpenapiSharedProblemDetails;
3684
+ /**
3685
+ * The requested operation is not implemented.
3686
+ */
3687
+ 501: PkgOpenapiSharedProblemDetails;
3688
+ };
3689
+ type GetNotificationsPreferencesError = GetNotificationsPreferencesErrors[keyof GetNotificationsPreferencesErrors];
3690
+ type GetNotificationsPreferencesResponses = {
3691
+ /**
3692
+ * OK
3693
+ */
3694
+ 200: PreferencesResponse;
3695
+ };
3696
+ type GetNotificationsPreferencesResponse = GetNotificationsPreferencesResponses[keyof GetNotificationsPreferencesResponses];
3697
+ type UpdateNotificationsPreferencesData = {
3698
+ body: UpdatePreferencesRequestBody;
3699
+ path?: never;
3700
+ query: {
3701
+ topic: Topic;
3702
+ source?: Source;
3703
+ source_id?: string;
3704
+ };
3705
+ url: '/notifications/preferences';
3706
+ };
3707
+ type UpdateNotificationsPreferencesErrors = {
3708
+ /**
3709
+ * The request was malformed or could not be processed.
3710
+ */
3711
+ 400: PkgOpenapiSharedProblemDetails;
3712
+ /**
3713
+ * Access token is not set or invalid.
3714
+ */
3715
+ 401: PkgOpenapiSharedProblemDetails;
3716
+ /**
3717
+ * The server encountered an unexpected error
3718
+ */
3719
+ 500: PkgOpenapiSharedProblemDetails;
3720
+ /**
3721
+ * The requested operation is not implemented.
3722
+ */
3723
+ 501: PkgOpenapiSharedProblemDetails;
3724
+ };
3725
+ type UpdateNotificationsPreferencesError = UpdateNotificationsPreferencesErrors[keyof UpdateNotificationsPreferencesErrors];
3726
+ type UpdateNotificationsPreferencesResponses = {
3727
+ /**
3728
+ * OK
3729
+ */
3730
+ 200: PreferencesResponse;
3731
+ };
3732
+ type UpdateNotificationsPreferencesResponse = UpdateNotificationsPreferencesResponses[keyof UpdateNotificationsPreferencesResponses];
3606
3733
  type GetNotificationByIdData = {
3607
3734
  body?: never;
3608
3735
  path: {
@@ -3732,12 +3859,67 @@ type SearchUsersResponses = {
3732
3859
  200: UsersPaginatedResponse;
3733
3860
  };
3734
3861
  type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
3862
+ type UpdateUserProfileData = {
3863
+ /**
3864
+ * The profile fields to update
3865
+ */
3866
+ body: UpdateUserProfileRequest;
3867
+ path?: never;
3868
+ query?: never;
3869
+ url: '/users/profiles';
3870
+ };
3871
+ type UpdateUserProfileErrors = {
3872
+ /**
3873
+ * The request was malformed or could not be processed.
3874
+ */
3875
+ 400: PkgOpenapiSharedProblemDetails;
3876
+ /**
3877
+ * Access token is not set or invalid.
3878
+ */
3879
+ 401: PkgOpenapiSharedProblemDetails;
3880
+ /**
3881
+ * The requestor is not authorized to perform this operation on the resource.
3882
+ */
3883
+ 403: PkgOpenapiSharedProblemDetails;
3884
+ /**
3885
+ * The server encountered an unexpected error
3886
+ */
3887
+ 500: PkgOpenapiSharedProblemDetails;
3888
+ /**
3889
+ * The requested operation is not implemented.
3890
+ */
3891
+ 501: PkgOpenapiSharedProblemDetails;
3892
+ /**
3893
+ * The service requested is unavailable
3894
+ */
3895
+ 503: PkgOpenapiSharedProblemDetails;
3896
+ };
3897
+ type UpdateUserProfileError = UpdateUserProfileErrors[keyof UpdateUserProfileErrors];
3898
+ type UpdateUserProfileResponses = {
3899
+ /**
3900
+ * Profile updated successfully
3901
+ */
3902
+ 200: UserProfile;
3903
+ };
3904
+ type UpdateUserProfileResponse = UpdateUserProfileResponses[keyof UpdateUserProfileResponses];
3735
3905
  type ClientOptions = {
3736
3906
  baseUrl: 'https://api.matchi.com/v1' | (string & {});
3737
3907
  };
3738
3908
 
3739
3909
  declare const client: _hey_api_client_fetch.Client;
3740
3910
 
3911
+ declare const ChannelsSchema: {
3912
+ readonly properties: {
3913
+ readonly inapp: {
3914
+ readonly type: "boolean";
3915
+ };
3916
+ readonly push: {
3917
+ readonly type: "boolean";
3918
+ };
3919
+ };
3920
+ readonly required: readonly ["inapp", "push"];
3921
+ readonly type: "object";
3922
+ };
3741
3923
  declare const FacilityMessagePayloadSchema: {
3742
3924
  readonly properties: {
3743
3925
  readonly description: {
@@ -4032,6 +4214,10 @@ declare const FacilityValueCardDataSchema: {
4032
4214
  readonly required: readonly ["offer_id", "facility_id", "name", "description", "price", "nr_of_days_valid", "amount", "members_only", "user_has_active_membership", "facility_receive_membership_requests", "expire_date", "conditions"];
4033
4215
  readonly type: "object";
4034
4216
  };
4217
+ declare const GenderSchema: {
4218
+ readonly enum: readonly ["MALE", "FEMALE", "OTHER", "PREFER_NOT_TO_SAY"];
4219
+ readonly type: "string";
4220
+ };
4035
4221
  declare const MetadataSchema: {
4036
4222
  readonly properties: {
4037
4223
  readonly pagination: {
@@ -4081,11 +4267,9 @@ declare const NotificationPayloadSchema: {
4081
4267
  };
4082
4268
  declare const NotificationRequestBodySchema: {
4083
4269
  readonly properties: {
4084
- readonly read_at: {
4085
- readonly description: "Set to a timestamp to mark as read, null to mark as unread";
4086
- readonly format: "date-time";
4087
- readonly nullable: true;
4088
- readonly type: "string";
4270
+ readonly is_read: {
4271
+ readonly description: "true to mark as read, false to mark as unread";
4272
+ readonly type: "boolean";
4089
4273
  };
4090
4274
  };
4091
4275
  readonly type: "object";
@@ -4137,6 +4321,36 @@ declare const NotificationsSummarySchema: {
4137
4321
  readonly required: readonly ["count", "unread_count", "global_count", "global_unread_count"];
4138
4322
  readonly type: "object";
4139
4323
  };
4324
+ declare const PreferenceSchema: {
4325
+ readonly properties: {
4326
+ readonly channels: {
4327
+ readonly $ref: "#/components/schemas/Channels";
4328
+ };
4329
+ readonly source: {
4330
+ readonly $ref: "#/components/schemas/Source";
4331
+ };
4332
+ readonly source_id: {
4333
+ readonly type: "string";
4334
+ };
4335
+ readonly topic: {
4336
+ readonly $ref: "#/components/schemas/Topic";
4337
+ };
4338
+ };
4339
+ readonly required: readonly ["topic", "channels"];
4340
+ readonly type: "object";
4341
+ };
4342
+ declare const PreferencesResponseSchema: {
4343
+ readonly properties: {
4344
+ readonly items: {
4345
+ readonly items: {
4346
+ readonly $ref: "#/components/schemas/Preference";
4347
+ };
4348
+ readonly type: "array";
4349
+ };
4350
+ };
4351
+ readonly required: readonly ["items"];
4352
+ readonly type: "object";
4353
+ };
4140
4354
  declare const SourceSchema: {
4141
4355
  readonly enum: readonly ["FACILITY"];
4142
4356
  readonly type: "string";
@@ -4145,6 +4359,75 @@ declare const TopicSchema: {
4145
4359
  readonly enum: readonly ["FACILITY_MESSAGE"];
4146
4360
  readonly type: "string";
4147
4361
  };
4362
+ declare const UpdatePreferencesRequestBodySchema: {
4363
+ readonly properties: {
4364
+ readonly inapp: {
4365
+ readonly type: "boolean";
4366
+ };
4367
+ readonly push: {
4368
+ readonly type: "boolean";
4369
+ };
4370
+ };
4371
+ readonly type: "object";
4372
+ };
4373
+ declare const UpdateUserProfileRequestSchema: {
4374
+ readonly properties: {
4375
+ readonly address: {
4376
+ readonly maxLength: 255;
4377
+ readonly type: "string";
4378
+ };
4379
+ readonly birthday: {
4380
+ readonly example: "1990-01-15";
4381
+ readonly pattern: "^\\d{4}-\\d{2}-\\d{2}$";
4382
+ readonly type: "string";
4383
+ };
4384
+ readonly city: {
4385
+ readonly maxLength: 100;
4386
+ readonly type: "string";
4387
+ };
4388
+ readonly country: {
4389
+ readonly maxLength: 2;
4390
+ readonly minLength: 2;
4391
+ readonly type: "string";
4392
+ };
4393
+ readonly email: {
4394
+ readonly format: "email";
4395
+ readonly maxLength: 255;
4396
+ readonly type: "string";
4397
+ };
4398
+ readonly firstname: {
4399
+ readonly maxLength: 100;
4400
+ readonly type: "string";
4401
+ };
4402
+ readonly gender: {
4403
+ readonly $ref: "#/components/schemas/Gender";
4404
+ };
4405
+ readonly language: {
4406
+ readonly example: "en";
4407
+ readonly maxLength: 2;
4408
+ readonly minLength: 2;
4409
+ readonly pattern: "^[a-z]{2}$";
4410
+ readonly type: "string";
4411
+ };
4412
+ readonly lastname: {
4413
+ readonly maxLength: 100;
4414
+ readonly type: "string";
4415
+ };
4416
+ readonly private_profile: {
4417
+ readonly type: "boolean";
4418
+ };
4419
+ readonly telephone: {
4420
+ readonly example: "+46701234567";
4421
+ readonly pattern: "^\\+?[1-9]\\d{1,14}$";
4422
+ readonly type: "string";
4423
+ };
4424
+ readonly zipcode: {
4425
+ readonly maxLength: 10;
4426
+ readonly type: "string";
4427
+ };
4428
+ };
4429
+ readonly type: "object";
4430
+ };
4148
4431
  declare const UserSchema: {
4149
4432
  readonly properties: {
4150
4433
  readonly first_name: {
@@ -4167,6 +4450,62 @@ declare const UserSchema: {
4167
4450
  readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
4168
4451
  readonly type: "object";
4169
4452
  };
4453
+ declare const UserProfileSchema: {
4454
+ readonly properties: {
4455
+ readonly address: {
4456
+ readonly type: "string";
4457
+ };
4458
+ readonly birthday: {
4459
+ readonly type: "string";
4460
+ };
4461
+ readonly city: {
4462
+ readonly type: "string";
4463
+ };
4464
+ readonly country: {
4465
+ readonly type: "string";
4466
+ };
4467
+ readonly email: {
4468
+ readonly type: "string";
4469
+ };
4470
+ readonly firstname: {
4471
+ readonly type: "string";
4472
+ };
4473
+ readonly gender: {
4474
+ readonly $ref: "#/components/schemas/Gender";
4475
+ };
4476
+ readonly keycloak_id: {
4477
+ readonly format: "uuid";
4478
+ readonly type: "string";
4479
+ };
4480
+ readonly language: {
4481
+ readonly type: "string";
4482
+ };
4483
+ readonly lastname: {
4484
+ readonly type: "string";
4485
+ };
4486
+ readonly membership_facilities: {
4487
+ readonly items: {
4488
+ readonly type: "integer";
4489
+ };
4490
+ readonly type: "array";
4491
+ };
4492
+ readonly private_profile: {
4493
+ readonly nullable: true;
4494
+ readonly type: "boolean";
4495
+ };
4496
+ readonly profile_image_url: {
4497
+ readonly type: "string";
4498
+ };
4499
+ readonly telephone: {
4500
+ readonly type: "string";
4501
+ };
4502
+ readonly zipcode: {
4503
+ readonly type: "string";
4504
+ };
4505
+ };
4506
+ readonly required: readonly ["keycloak_id", "firstname", "language", "email"];
4507
+ readonly type: "object";
4508
+ };
4170
4509
  declare const UserRelationSchema: {
4171
4510
  readonly description: "Returns :\n* `FRIENDS` - The user is a friend.\n* `OUTGOING` - The user has sent a friend request to the current user.\n* `INCOMING` - The user has received a friend request from the current user.\n* `NO_RELATION` - The user has no ongoing relation with the current user.\n";
4172
4511
  readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION"];
@@ -4277,6 +4616,7 @@ declare const pkgOpenapiSharedProblemDetailsSchema: {
4277
4616
  readonly type: "object";
4278
4617
  };
4279
4618
 
4619
+ declare const schemas_gen_ChannelsSchema: typeof ChannelsSchema;
4280
4620
  declare const schemas_gen_FacilityMessagePayloadSchema: typeof FacilityMessagePayloadSchema;
4281
4621
  declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof FacilityOfferConditionActivitiesSchema;
4282
4622
  declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
@@ -4290,6 +4630,7 @@ declare const schemas_gen_FacilityOfferOrderSchema: typeof FacilityOfferOrderSch
4290
4630
  declare const schemas_gen_FacilityOfferSchema: typeof FacilityOfferSchema;
4291
4631
  declare const schemas_gen_FacilityPunchCardDataSchema: typeof FacilityPunchCardDataSchema;
4292
4632
  declare const schemas_gen_FacilityValueCardDataSchema: typeof FacilityValueCardDataSchema;
4633
+ declare const schemas_gen_GenderSchema: typeof GenderSchema;
4293
4634
  declare const schemas_gen_MetadataSchema: typeof MetadataSchema;
4294
4635
  declare const schemas_gen_NotificationPayloadSchema: typeof NotificationPayloadSchema;
4295
4636
  declare const schemas_gen_NotificationRequestBodySchema: typeof NotificationRequestBodySchema;
@@ -4297,8 +4638,13 @@ declare const schemas_gen_NotificationSchema: typeof NotificationSchema;
4297
4638
  declare const schemas_gen_NotificationsFilterSchema: typeof NotificationsFilterSchema;
4298
4639
  declare const schemas_gen_NotificationsPaginatedResponseSchema: typeof NotificationsPaginatedResponseSchema;
4299
4640
  declare const schemas_gen_NotificationsSummarySchema: typeof NotificationsSummarySchema;
4641
+ declare const schemas_gen_PreferenceSchema: typeof PreferenceSchema;
4642
+ declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseSchema;
4300
4643
  declare const schemas_gen_SourceSchema: typeof SourceSchema;
4301
4644
  declare const schemas_gen_TopicSchema: typeof TopicSchema;
4645
+ declare const schemas_gen_UpdatePreferencesRequestBodySchema: typeof UpdatePreferencesRequestBodySchema;
4646
+ declare const schemas_gen_UpdateUserProfileRequestSchema: typeof UpdateUserProfileRequestSchema;
4647
+ declare const schemas_gen_UserProfileSchema: typeof UserProfileSchema;
4302
4648
  declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
4303
4649
  declare const schemas_gen_UserSchema: typeof UserSchema;
4304
4650
  declare const schemas_gen_UsersPaginatedResponseSchema: typeof UsersPaginatedResponseSchema;
@@ -4308,7 +4654,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
4308
4654
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
4309
4655
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
4310
4656
  declare namespace schemas_gen {
4311
- export { 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_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, 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_SourceSchema as SourceSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UserSchema as UserSchema, schemas_gen_UsersPaginatedResponseSchema as UsersPaginatedResponseSchema, 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 };
4657
+ 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_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_SourceSchema as SourceSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateUserProfileRequestSchema as UpdateUserProfileRequestSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UserSchema as UserSchema, schemas_gen_UsersPaginatedResponseSchema as UsersPaginatedResponseSchema, 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 };
4312
4658
  }
4313
4659
 
4314
4660
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -4344,6 +4690,16 @@ declare const getNotifications: <ThrowOnError extends boolean = false>(options?:
4344
4690
  * Update all notifications
4345
4691
  */
4346
4692
  declare const updateAllNotifications: <ThrowOnError extends boolean = false>(options: Options<UpdateAllNotificationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<NotificationsPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4693
+ /**
4694
+ * Get user's notifications preferences
4695
+ * Get user's notifications preferences
4696
+ */
4697
+ declare const getNotificationsPreferences: <ThrowOnError extends boolean = false>(options?: Options<GetNotificationsPreferencesData, ThrowOnError> | undefined) => _hey_api_client_fetch.RequestResult<PreferencesResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4698
+ /**
4699
+ * Update user's notifications preferences
4700
+ * Update user's notifications preferences
4701
+ */
4702
+ declare const updateNotificationsPreferences: <ThrowOnError extends boolean = false>(options: Options<UpdateNotificationsPreferencesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PreferencesResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4347
4703
  /**
4348
4704
  * Get a notification by id
4349
4705
  * Get a notification by id
@@ -4359,6 +4715,11 @@ declare const updateNotification: <ThrowOnError extends boolean = false>(options
4359
4715
  * Get a list of users based on the current user's search query
4360
4716
  */
4361
4717
  declare const searchUsers: <ThrowOnError extends boolean = false>(options?: Options<SearchUsersData, ThrowOnError> | undefined) => _hey_api_client_fetch.RequestResult<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4718
+ /**
4719
+ * Update the current user's profile
4720
+ * Update the current user's profile information
4721
+ */
4722
+ declare const updateUserProfile: <ThrowOnError extends boolean = false>(options: Options<UpdateUserProfileData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UserProfile, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4362
4723
 
4363
4724
  type QueryKey<TOptions extends Options> = [
4364
4725
  Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
@@ -4467,6 +4828,28 @@ declare const getNotificationsInfiniteOptions: (options?: Options<GetNotificatio
4467
4828
  };
4468
4829
  };
4469
4830
  declare const updateAllNotificationsMutation: (options?: Partial<Options<UpdateAllNotificationsData>>) => UseMutationOptions<NotificationsPaginatedResponse, PkgOpenapiSharedProblemDetails, Options<UpdateAllNotificationsData>, unknown>;
4831
+ declare const getNotificationsPreferencesQueryKey: (options?: Options<GetNotificationsPreferencesData>) => [Pick<Options<GetNotificationsPreferencesData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4832
+ _id: string;
4833
+ _infinite?: boolean | undefined;
4834
+ }];
4835
+ declare const getNotificationsPreferencesOptions: (options?: Options<GetNotificationsPreferencesData>) => _tanstack_query_core_build_legacy_hydration_ClXcjjG9.O<_tanstack_react_query_build_legacy_types.UseQueryOptions<PreferencesResponse, Error, PreferencesResponse, [Pick<Options<GetNotificationsPreferencesData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4836
+ _id: string;
4837
+ _infinite?: boolean | undefined;
4838
+ }]>, "queryFn"> & {
4839
+ queryFn?: _tanstack_query_core_build_legacy_hydration_ClXcjjG9.K<PreferencesResponse, [Pick<Options<GetNotificationsPreferencesData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4840
+ _id: string;
4841
+ _infinite?: boolean | undefined;
4842
+ }], never> | undefined;
4843
+ } & {
4844
+ queryKey: [Pick<Options<GetNotificationsPreferencesData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4845
+ _id: string;
4846
+ _infinite?: boolean | undefined;
4847
+ }] & {
4848
+ [dataTagSymbol]: PreferencesResponse;
4849
+ [dataTagErrorSymbol]: Error;
4850
+ };
4851
+ };
4852
+ declare const updateNotificationsPreferencesMutation: (options?: Partial<Options<UpdateNotificationsPreferencesData>>) => UseMutationOptions<PreferencesResponse, PkgOpenapiSharedProblemDetails, Options<UpdateNotificationsPreferencesData>, unknown>;
4470
4853
  declare const getNotificationByIdQueryKey: (options: Options<GetNotificationByIdData>) => [Pick<Options<GetNotificationByIdData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4471
4854
  _id: string;
4472
4855
  _infinite?: boolean | undefined;
@@ -4528,6 +4911,7 @@ declare const searchUsersInfiniteOptions: (options?: Options<SearchUsersData>) =
4528
4911
  [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
4529
4912
  };
4530
4913
  };
4914
+ declare const updateUserProfileMutation: (options?: Partial<Options<UpdateUserProfileData>>) => UseMutationOptions<UserProfile, PkgOpenapiSharedProblemDetails, Options<UpdateUserProfileData>, unknown>;
4531
4915
 
4532
4916
  type reactQuery_gen_QueryKey<TOptions extends Options> = QueryKey<TOptions>;
4533
4917
  declare const reactQuery_gen_createFacilityOfferOrderMutation: typeof createFacilityOfferOrderMutation;
@@ -4538,6 +4922,8 @@ declare const reactQuery_gen_getNotificationByIdQueryKey: typeof getNotification
4538
4922
  declare const reactQuery_gen_getNotificationsInfiniteOptions: typeof getNotificationsInfiniteOptions;
4539
4923
  declare const reactQuery_gen_getNotificationsInfiniteQueryKey: typeof getNotificationsInfiniteQueryKey;
4540
4924
  declare const reactQuery_gen_getNotificationsOptions: typeof getNotificationsOptions;
4925
+ declare const reactQuery_gen_getNotificationsPreferencesOptions: typeof getNotificationsPreferencesOptions;
4926
+ declare const reactQuery_gen_getNotificationsPreferencesQueryKey: typeof getNotificationsPreferencesQueryKey;
4541
4927
  declare const reactQuery_gen_getNotificationsQueryKey: typeof getNotificationsQueryKey;
4542
4928
  declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacilityOffersInfiniteOptions;
4543
4929
  declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
@@ -4549,10 +4935,13 @@ declare const reactQuery_gen_searchUsersOptions: typeof searchUsersOptions;
4549
4935
  declare const reactQuery_gen_searchUsersQueryKey: typeof searchUsersQueryKey;
4550
4936
  declare const reactQuery_gen_updateAllNotificationsMutation: typeof updateAllNotificationsMutation;
4551
4937
  declare const reactQuery_gen_updateNotificationMutation: typeof updateNotificationMutation;
4938
+ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof updateNotificationsPreferencesMutation;
4939
+ declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
4552
4940
  declare namespace reactQuery_gen {
4553
- export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createFacilityOfferOrderOptions as createFacilityOfferOrderOptions, reactQuery_gen_createFacilityOfferOrderQueryKey as createFacilityOfferOrderQueryKey, 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_getNotificationsQueryKey as getNotificationsQueryKey, 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 };
4941
+ export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createFacilityOfferOrderOptions as createFacilityOfferOrderOptions, reactQuery_gen_createFacilityOfferOrderQueryKey as createFacilityOfferOrderQueryKey, 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_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 };
4554
4942
  }
4555
4943
 
4944
+ type indexV1_Channels = Channels;
4556
4945
  type indexV1_ClientOptions = ClientOptions;
4557
4946
  type indexV1_CreateFacilityOfferOrderData = CreateFacilityOfferOrderData;
4558
4947
  type indexV1_CreateFacilityOfferOrderError = CreateFacilityOfferOrderError;
@@ -4573,6 +4962,7 @@ type indexV1_FacilityOfferList = FacilityOfferList;
4573
4962
  type indexV1_FacilityOfferOrder = FacilityOfferOrder;
4574
4963
  type indexV1_FacilityPunchCardData = FacilityPunchCardData;
4575
4964
  type indexV1_FacilityValueCardData = FacilityValueCardData;
4965
+ declare const indexV1_Gender: typeof Gender;
4576
4966
  type indexV1_GetNotificationByIdData = GetNotificationByIdData;
4577
4967
  type indexV1_GetNotificationByIdError = GetNotificationByIdError;
4578
4968
  type indexV1_GetNotificationByIdErrors = GetNotificationByIdErrors;
@@ -4581,6 +4971,11 @@ type indexV1_GetNotificationByIdResponses = GetNotificationByIdResponses;
4581
4971
  type indexV1_GetNotificationsData = GetNotificationsData;
4582
4972
  type indexV1_GetNotificationsError = GetNotificationsError;
4583
4973
  type indexV1_GetNotificationsErrors = GetNotificationsErrors;
4974
+ type indexV1_GetNotificationsPreferencesData = GetNotificationsPreferencesData;
4975
+ type indexV1_GetNotificationsPreferencesError = GetNotificationsPreferencesError;
4976
+ type indexV1_GetNotificationsPreferencesErrors = GetNotificationsPreferencesErrors;
4977
+ type indexV1_GetNotificationsPreferencesResponse = GetNotificationsPreferencesResponse;
4978
+ type indexV1_GetNotificationsPreferencesResponses = GetNotificationsPreferencesResponses;
4584
4979
  type indexV1_GetNotificationsResponse = GetNotificationsResponse;
4585
4980
  type indexV1_GetNotificationsResponses = GetNotificationsResponses;
4586
4981
  type indexV1_ListFacilityOffersData = ListFacilityOffersData;
@@ -4607,6 +5002,8 @@ type indexV1_PkgOpenapiSharedOffsetLimitParam = PkgOpenapiSharedOffsetLimitParam
4607
5002
  type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPaginatedResultSet;
4608
5003
  type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
4609
5004
  type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
5005
+ type indexV1_Preference = Preference;
5006
+ type indexV1_PreferencesResponse = PreferencesResponse;
4610
5007
  type indexV1_SearchUsersData = SearchUsersData;
4611
5008
  type indexV1_SearchUsersError = SearchUsersError;
4612
5009
  type indexV1_SearchUsersErrors = SearchUsersErrors;
@@ -4624,19 +5021,35 @@ type indexV1_UpdateNotificationError = UpdateNotificationError;
4624
5021
  type indexV1_UpdateNotificationErrors = UpdateNotificationErrors;
4625
5022
  type indexV1_UpdateNotificationResponse = UpdateNotificationResponse;
4626
5023
  type indexV1_UpdateNotificationResponses = UpdateNotificationResponses;
5024
+ type indexV1_UpdateNotificationsPreferencesData = UpdateNotificationsPreferencesData;
5025
+ type indexV1_UpdateNotificationsPreferencesError = UpdateNotificationsPreferencesError;
5026
+ type indexV1_UpdateNotificationsPreferencesErrors = UpdateNotificationsPreferencesErrors;
5027
+ type indexV1_UpdateNotificationsPreferencesResponse = UpdateNotificationsPreferencesResponse;
5028
+ type indexV1_UpdateNotificationsPreferencesResponses = UpdateNotificationsPreferencesResponses;
5029
+ type indexV1_UpdatePreferencesRequestBody = UpdatePreferencesRequestBody;
5030
+ type indexV1_UpdateUserProfileData = UpdateUserProfileData;
5031
+ type indexV1_UpdateUserProfileError = UpdateUserProfileError;
5032
+ type indexV1_UpdateUserProfileErrors = UpdateUserProfileErrors;
5033
+ type indexV1_UpdateUserProfileRequest = UpdateUserProfileRequest;
5034
+ type indexV1_UpdateUserProfileResponse = UpdateUserProfileResponse;
5035
+ type indexV1_UpdateUserProfileResponses = UpdateUserProfileResponses;
4627
5036
  type indexV1_User = User;
5037
+ type indexV1_UserProfile = UserProfile;
4628
5038
  declare const indexV1_UserRelation: typeof UserRelation;
4629
5039
  type indexV1_UsersPaginatedResponse = UsersPaginatedResponse;
4630
5040
  declare const indexV1_client: typeof client;
4631
5041
  declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
4632
5042
  declare const indexV1_getNotificationById: typeof getNotificationById;
4633
5043
  declare const indexV1_getNotifications: typeof getNotifications;
5044
+ declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
4634
5045
  declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
4635
5046
  declare const indexV1_searchUsers: typeof searchUsers;
4636
5047
  declare const indexV1_updateAllNotifications: typeof updateAllNotifications;
4637
5048
  declare const indexV1_updateNotification: typeof updateNotification;
5049
+ declare const indexV1_updateNotificationsPreferences: typeof updateNotificationsPreferences;
5050
+ declare const indexV1_updateUserProfile: typeof updateUserProfile;
4638
5051
  declare namespace indexV1 {
4639
- export { 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_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, 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_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses as GetNotificationsResponses, 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_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, indexV1_Source as Source, 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_User as User, indexV1_UserRelation as UserRelation, type indexV1_UsersPaginatedResponse as UsersPaginatedResponse, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_listFacilityOffers as listFacilityOffers, reactQuery_gen as queries, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification };
5052
+ 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_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, 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_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_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, indexV1_Source as Source, 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_UpdateUserProfileRequest as UpdateUserProfileRequest, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_User as User, type indexV1_UserProfile as UserProfile, indexV1_UserRelation as UserRelation, type indexV1_UsersPaginatedResponse as UsersPaginatedResponse, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, 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 };
4640
5053
  }
4641
5054
 
4642
5055
  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 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 };