@matchi/api 0.20260123.1 → 0.20260227.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 +184 -90
- package/dist/main/index.d.ts +184 -90
- 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
|
@@ -3562,6 +3562,14 @@ type FacilityOfferOrder = {
|
|
|
3562
3562
|
checkout_url: string;
|
|
3563
3563
|
id: string;
|
|
3564
3564
|
};
|
|
3565
|
+
type FacilityPermission = {
|
|
3566
|
+
facility_id: string;
|
|
3567
|
+
roles: Array<string>;
|
|
3568
|
+
scopes: Array<string>;
|
|
3569
|
+
};
|
|
3570
|
+
type FacilityPermissionsResponse = {
|
|
3571
|
+
items: Array<FacilityPermission>;
|
|
3572
|
+
};
|
|
3565
3573
|
type FacilityPunchCardData = {
|
|
3566
3574
|
conditions: Array<FacilityOfferCondition>;
|
|
3567
3575
|
description: string | null;
|
|
@@ -3656,42 +3664,38 @@ type UpdatePreferencesRequestBody = {
|
|
|
3656
3664
|
inapp?: boolean;
|
|
3657
3665
|
push?: boolean;
|
|
3658
3666
|
};
|
|
3659
|
-
type
|
|
3667
|
+
type UpdateUsersProfilesRequest = {
|
|
3660
3668
|
address?: string;
|
|
3661
3669
|
birthday?: string;
|
|
3662
3670
|
city?: string;
|
|
3663
3671
|
country?: string;
|
|
3664
|
-
|
|
3665
|
-
firstname?: string;
|
|
3672
|
+
first_name?: string;
|
|
3666
3673
|
gender?: Gender;
|
|
3667
3674
|
language?: string;
|
|
3668
|
-
|
|
3675
|
+
last_name?: string;
|
|
3669
3676
|
private_profile?: boolean;
|
|
3677
|
+
/**
|
|
3678
|
+
* Phone number in E.164 format. Send empty string to clear the value.
|
|
3679
|
+
*/
|
|
3670
3680
|
telephone?: string;
|
|
3671
3681
|
zipcode?: string;
|
|
3672
3682
|
};
|
|
3673
|
-
type User = {
|
|
3674
|
-
first_name: string;
|
|
3675
|
-
last_name: string;
|
|
3676
|
-
profile_image_url?: string;
|
|
3677
|
-
relation_status: UserRelation;
|
|
3678
|
-
user_id: string;
|
|
3679
|
-
};
|
|
3680
3683
|
type UserProfile = {
|
|
3681
3684
|
address?: string;
|
|
3682
3685
|
birthday?: string;
|
|
3683
3686
|
city?: string;
|
|
3684
3687
|
country?: string;
|
|
3685
|
-
email
|
|
3686
|
-
|
|
3688
|
+
email?: string;
|
|
3689
|
+
first_name: string;
|
|
3687
3690
|
gender?: Gender;
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
lastname?: string;
|
|
3691
|
+
language?: string;
|
|
3692
|
+
last_name: string;
|
|
3691
3693
|
membership_facilities?: Array<number>;
|
|
3692
3694
|
private_profile?: boolean;
|
|
3693
3695
|
profile_image_url?: string;
|
|
3696
|
+
relation_status: UserRelation;
|
|
3694
3697
|
telephone?: string;
|
|
3698
|
+
user_id: string;
|
|
3695
3699
|
zipcode?: string;
|
|
3696
3700
|
};
|
|
3697
3701
|
/**
|
|
@@ -3717,8 +3721,8 @@ declare const UserRelation: {
|
|
|
3717
3721
|
*
|
|
3718
3722
|
*/
|
|
3719
3723
|
type UserRelation = typeof UserRelation[keyof typeof UserRelation];
|
|
3720
|
-
type
|
|
3721
|
-
items: Array<
|
|
3724
|
+
type UsersProfilesPaginatedResponse = {
|
|
3725
|
+
items: Array<UserProfile>;
|
|
3722
3726
|
meta: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
3723
3727
|
};
|
|
3724
3728
|
/**
|
|
@@ -4163,17 +4167,55 @@ type SearchUsersResponses = {
|
|
|
4163
4167
|
/**
|
|
4164
4168
|
* OK
|
|
4165
4169
|
*/
|
|
4166
|
-
200:
|
|
4170
|
+
200: UsersProfilesPaginatedResponse;
|
|
4167
4171
|
};
|
|
4168
4172
|
type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
|
|
4173
|
+
type GetUserFacilityPermissionsData = {
|
|
4174
|
+
body?: never;
|
|
4175
|
+
path: {
|
|
4176
|
+
/**
|
|
4177
|
+
* The user ID (must match the authenticated user)
|
|
4178
|
+
*/
|
|
4179
|
+
user_id: string;
|
|
4180
|
+
};
|
|
4181
|
+
query?: never;
|
|
4182
|
+
url: '/users/{user_id}/facility-permissions';
|
|
4183
|
+
};
|
|
4184
|
+
type GetUserFacilityPermissionsErrors = {
|
|
4185
|
+
/**
|
|
4186
|
+
* Access token is not set or invalid.
|
|
4187
|
+
*/
|
|
4188
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4189
|
+
/**
|
|
4190
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4191
|
+
*/
|
|
4192
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4193
|
+
/**
|
|
4194
|
+
* The server encountered an unexpected error
|
|
4195
|
+
*/
|
|
4196
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4197
|
+
};
|
|
4198
|
+
type GetUserFacilityPermissionsError = GetUserFacilityPermissionsErrors[keyof GetUserFacilityPermissionsErrors];
|
|
4199
|
+
type GetUserFacilityPermissionsResponses = {
|
|
4200
|
+
/**
|
|
4201
|
+
* OK
|
|
4202
|
+
*/
|
|
4203
|
+
200: FacilityPermissionsResponse;
|
|
4204
|
+
};
|
|
4205
|
+
type GetUserFacilityPermissionsResponse = GetUserFacilityPermissionsResponses[keyof GetUserFacilityPermissionsResponses];
|
|
4169
4206
|
type UpdateUserProfileData = {
|
|
4170
4207
|
/**
|
|
4171
4208
|
* The profile fields to update
|
|
4172
4209
|
*/
|
|
4173
|
-
body:
|
|
4174
|
-
path
|
|
4210
|
+
body: UpdateUsersProfilesRequest;
|
|
4211
|
+
path: {
|
|
4212
|
+
/**
|
|
4213
|
+
* The user ID (must match the authenticated user)
|
|
4214
|
+
*/
|
|
4215
|
+
user_id: string;
|
|
4216
|
+
};
|
|
4175
4217
|
query?: never;
|
|
4176
|
-
url: '/users/profiles';
|
|
4218
|
+
url: '/users/{user_id}/profiles';
|
|
4177
4219
|
};
|
|
4178
4220
|
type UpdateUserProfileErrors = {
|
|
4179
4221
|
/**
|
|
@@ -4189,17 +4231,13 @@ type UpdateUserProfileErrors = {
|
|
|
4189
4231
|
*/
|
|
4190
4232
|
403: PkgOpenapiSharedProblemDetails;
|
|
4191
4233
|
/**
|
|
4192
|
-
* The
|
|
4193
|
-
*/
|
|
4194
|
-
500: PkgOpenapiSharedProblemDetails;
|
|
4195
|
-
/**
|
|
4196
|
-
* The requested operation is not implemented.
|
|
4234
|
+
* The requested resource was not found.
|
|
4197
4235
|
*/
|
|
4198
|
-
|
|
4236
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4199
4237
|
/**
|
|
4200
|
-
* The
|
|
4238
|
+
* The server encountered an unexpected error
|
|
4201
4239
|
*/
|
|
4202
|
-
|
|
4240
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4203
4241
|
};
|
|
4204
4242
|
type UpdateUserProfileError = UpdateUserProfileErrors[keyof UpdateUserProfileErrors];
|
|
4205
4243
|
type UpdateUserProfileResponses = {
|
|
@@ -4412,6 +4450,39 @@ declare const FacilityOfferOrderSchema: {
|
|
|
4412
4450
|
readonly required: readonly ["id", "checkout_url"];
|
|
4413
4451
|
readonly type: "object";
|
|
4414
4452
|
};
|
|
4453
|
+
declare const FacilityPermissionSchema: {
|
|
4454
|
+
readonly properties: {
|
|
4455
|
+
readonly facility_id: {
|
|
4456
|
+
readonly type: "string";
|
|
4457
|
+
};
|
|
4458
|
+
readonly roles: {
|
|
4459
|
+
readonly items: {
|
|
4460
|
+
readonly type: "string";
|
|
4461
|
+
};
|
|
4462
|
+
readonly type: "array";
|
|
4463
|
+
};
|
|
4464
|
+
readonly scopes: {
|
|
4465
|
+
readonly items: {
|
|
4466
|
+
readonly type: "string";
|
|
4467
|
+
};
|
|
4468
|
+
readonly type: "array";
|
|
4469
|
+
};
|
|
4470
|
+
};
|
|
4471
|
+
readonly required: readonly ["facility_id", "roles", "scopes"];
|
|
4472
|
+
readonly type: "object";
|
|
4473
|
+
};
|
|
4474
|
+
declare const FacilityPermissionsResponseSchema: {
|
|
4475
|
+
readonly properties: {
|
|
4476
|
+
readonly items: {
|
|
4477
|
+
readonly items: {
|
|
4478
|
+
readonly $ref: "#/components/schemas/FacilityPermission";
|
|
4479
|
+
};
|
|
4480
|
+
readonly type: "array";
|
|
4481
|
+
};
|
|
4482
|
+
};
|
|
4483
|
+
readonly required: readonly ["items"];
|
|
4484
|
+
readonly type: "object";
|
|
4485
|
+
};
|
|
4415
4486
|
declare const FacilityPunchCardDataSchema: {
|
|
4416
4487
|
readonly properties: {
|
|
4417
4488
|
readonly conditions: {
|
|
@@ -4674,7 +4745,7 @@ declare const UpdatePreferencesRequestBodySchema: {
|
|
|
4674
4745
|
};
|
|
4675
4746
|
readonly type: "object";
|
|
4676
4747
|
};
|
|
4677
|
-
declare const
|
|
4748
|
+
declare const UpdateUsersProfilesRequestSchema: {
|
|
4678
4749
|
readonly properties: {
|
|
4679
4750
|
readonly address: {
|
|
4680
4751
|
readonly maxLength: 255;
|
|
@@ -4694,12 +4765,7 @@ declare const UpdateUserProfileRequestSchema: {
|
|
|
4694
4765
|
readonly minLength: 2;
|
|
4695
4766
|
readonly type: "string";
|
|
4696
4767
|
};
|
|
4697
|
-
readonly
|
|
4698
|
-
readonly format: "email";
|
|
4699
|
-
readonly maxLength: 255;
|
|
4700
|
-
readonly type: "string";
|
|
4701
|
-
};
|
|
4702
|
-
readonly firstname: {
|
|
4768
|
+
readonly first_name: {
|
|
4703
4769
|
readonly maxLength: 100;
|
|
4704
4770
|
readonly type: "string";
|
|
4705
4771
|
};
|
|
@@ -4713,7 +4779,7 @@ declare const UpdateUserProfileRequestSchema: {
|
|
|
4713
4779
|
readonly pattern: "^[a-z]{2}$";
|
|
4714
4780
|
readonly type: "string";
|
|
4715
4781
|
};
|
|
4716
|
-
readonly
|
|
4782
|
+
readonly last_name: {
|
|
4717
4783
|
readonly maxLength: 100;
|
|
4718
4784
|
readonly type: "string";
|
|
4719
4785
|
};
|
|
@@ -4721,8 +4787,9 @@ declare const UpdateUserProfileRequestSchema: {
|
|
|
4721
4787
|
readonly type: "boolean";
|
|
4722
4788
|
};
|
|
4723
4789
|
readonly telephone: {
|
|
4790
|
+
readonly description: "Phone number in E.164 format. Send empty string to clear the value.";
|
|
4724
4791
|
readonly example: "+46701234567";
|
|
4725
|
-
readonly pattern: "
|
|
4792
|
+
readonly pattern: "^(\\+?[1-9]\\d{1,14}|)$";
|
|
4726
4793
|
readonly type: "string";
|
|
4727
4794
|
};
|
|
4728
4795
|
readonly zipcode: {
|
|
@@ -4732,28 +4799,6 @@ declare const UpdateUserProfileRequestSchema: {
|
|
|
4732
4799
|
};
|
|
4733
4800
|
readonly type: "object";
|
|
4734
4801
|
};
|
|
4735
|
-
declare const UserSchema: {
|
|
4736
|
-
readonly properties: {
|
|
4737
|
-
readonly first_name: {
|
|
4738
|
-
readonly type: "string";
|
|
4739
|
-
};
|
|
4740
|
-
readonly last_name: {
|
|
4741
|
-
readonly type: "string";
|
|
4742
|
-
};
|
|
4743
|
-
readonly profile_image_url: {
|
|
4744
|
-
readonly type: "string";
|
|
4745
|
-
};
|
|
4746
|
-
readonly relation_status: {
|
|
4747
|
-
readonly $ref: "#/components/schemas/UserRelation";
|
|
4748
|
-
};
|
|
4749
|
-
readonly user_id: {
|
|
4750
|
-
readonly format: "uuid";
|
|
4751
|
-
readonly type: "string";
|
|
4752
|
-
};
|
|
4753
|
-
};
|
|
4754
|
-
readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
|
|
4755
|
-
readonly type: "object";
|
|
4756
|
-
};
|
|
4757
4802
|
declare const UserProfileSchema: {
|
|
4758
4803
|
readonly properties: {
|
|
4759
4804
|
readonly address: {
|
|
@@ -4771,20 +4816,16 @@ declare const UserProfileSchema: {
|
|
|
4771
4816
|
readonly email: {
|
|
4772
4817
|
readonly type: "string";
|
|
4773
4818
|
};
|
|
4774
|
-
readonly
|
|
4819
|
+
readonly first_name: {
|
|
4775
4820
|
readonly type: "string";
|
|
4776
4821
|
};
|
|
4777
4822
|
readonly gender: {
|
|
4778
4823
|
readonly $ref: "#/components/schemas/Gender";
|
|
4779
4824
|
};
|
|
4780
|
-
readonly keycloak_id: {
|
|
4781
|
-
readonly format: "uuid";
|
|
4782
|
-
readonly type: "string";
|
|
4783
|
-
};
|
|
4784
4825
|
readonly language: {
|
|
4785
4826
|
readonly type: "string";
|
|
4786
4827
|
};
|
|
4787
|
-
readonly
|
|
4828
|
+
readonly last_name: {
|
|
4788
4829
|
readonly type: "string";
|
|
4789
4830
|
};
|
|
4790
4831
|
readonly membership_facilities: {
|
|
@@ -4799,14 +4840,21 @@ declare const UserProfileSchema: {
|
|
|
4799
4840
|
readonly profile_image_url: {
|
|
4800
4841
|
readonly type: "string";
|
|
4801
4842
|
};
|
|
4843
|
+
readonly relation_status: {
|
|
4844
|
+
readonly $ref: "#/components/schemas/UserRelation";
|
|
4845
|
+
};
|
|
4802
4846
|
readonly telephone: {
|
|
4803
4847
|
readonly type: "string";
|
|
4804
4848
|
};
|
|
4849
|
+
readonly user_id: {
|
|
4850
|
+
readonly format: "uuid";
|
|
4851
|
+
readonly type: "string";
|
|
4852
|
+
};
|
|
4805
4853
|
readonly zipcode: {
|
|
4806
4854
|
readonly type: "string";
|
|
4807
4855
|
};
|
|
4808
4856
|
};
|
|
4809
|
-
readonly required: readonly ["
|
|
4857
|
+
readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
|
|
4810
4858
|
readonly type: "object";
|
|
4811
4859
|
};
|
|
4812
4860
|
declare const UserRelationSchema: {
|
|
@@ -4814,11 +4862,11 @@ declare const UserRelationSchema: {
|
|
|
4814
4862
|
readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION"];
|
|
4815
4863
|
readonly type: "string";
|
|
4816
4864
|
};
|
|
4817
|
-
declare const
|
|
4865
|
+
declare const UsersProfilesPaginatedResponseSchema: {
|
|
4818
4866
|
readonly properties: {
|
|
4819
4867
|
readonly items: {
|
|
4820
4868
|
readonly items: {
|
|
4821
|
-
readonly $ref: "#/components/schemas/
|
|
4869
|
+
readonly $ref: "#/components/schemas/UserProfile";
|
|
4822
4870
|
};
|
|
4823
4871
|
readonly type: "array";
|
|
4824
4872
|
};
|
|
@@ -4931,6 +4979,8 @@ declare const schemas_gen_FacilityOfferConditionWeekdaysSchema: typeof FacilityO
|
|
|
4931
4979
|
declare const schemas_gen_FacilityOfferListSchema: typeof FacilityOfferListSchema;
|
|
4932
4980
|
declare const schemas_gen_FacilityOfferOrderSchema: typeof FacilityOfferOrderSchema;
|
|
4933
4981
|
declare const schemas_gen_FacilityOfferSchema: typeof FacilityOfferSchema;
|
|
4982
|
+
declare const schemas_gen_FacilityPermissionSchema: typeof FacilityPermissionSchema;
|
|
4983
|
+
declare const schemas_gen_FacilityPermissionsResponseSchema: typeof FacilityPermissionsResponseSchema;
|
|
4934
4984
|
declare const schemas_gen_FacilityPunchCardDataSchema: typeof FacilityPunchCardDataSchema;
|
|
4935
4985
|
declare const schemas_gen_FacilityValueCardDataSchema: typeof FacilityValueCardDataSchema;
|
|
4936
4986
|
declare const schemas_gen_GenderSchema: typeof GenderSchema;
|
|
@@ -4946,18 +4996,17 @@ declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseS
|
|
|
4946
4996
|
declare const schemas_gen_SourceSchema: typeof SourceSchema;
|
|
4947
4997
|
declare const schemas_gen_TopicSchema: typeof TopicSchema;
|
|
4948
4998
|
declare const schemas_gen_UpdatePreferencesRequestBodySchema: typeof UpdatePreferencesRequestBodySchema;
|
|
4949
|
-
declare const
|
|
4999
|
+
declare const schemas_gen_UpdateUsersProfilesRequestSchema: typeof UpdateUsersProfilesRequestSchema;
|
|
4950
5000
|
declare const schemas_gen_UserProfileSchema: typeof UserProfileSchema;
|
|
4951
5001
|
declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
|
|
4952
|
-
declare const
|
|
4953
|
-
declare const schemas_gen_UsersPaginatedResponseSchema: typeof UsersPaginatedResponseSchema;
|
|
5002
|
+
declare const schemas_gen_UsersProfilesPaginatedResponseSchema: typeof UsersProfilesPaginatedResponseSchema;
|
|
4954
5003
|
declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
|
|
4955
5004
|
declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
|
|
4956
5005
|
declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedErrorsSchema;
|
|
4957
5006
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
4958
5007
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
4959
5008
|
declare namespace schemas_gen {
|
|
4960
|
-
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,
|
|
5009
|
+
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_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 };
|
|
4961
5010
|
}
|
|
4962
5011
|
|
|
4963
5012
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -5028,9 +5077,15 @@ declare const updateNotification: <ThrowOnError extends boolean = false>(options
|
|
|
5028
5077
|
*/
|
|
5029
5078
|
declare const searchUsers: <ThrowOnError extends boolean = false>(options?: Options<SearchUsersData, ThrowOnError>) => RequestResult<SearchUsersResponses, SearchUsersErrors, ThrowOnError, "fields">;
|
|
5030
5079
|
/**
|
|
5031
|
-
*
|
|
5080
|
+
* Get facility permissions for a user
|
|
5081
|
+
*
|
|
5082
|
+
* Returns the authenticated user's facility-level permissions including roles and scopes for each facility.
|
|
5083
|
+
*/
|
|
5084
|
+
declare const getUserFacilityPermissions: <ThrowOnError extends boolean = false>(options: Options<GetUserFacilityPermissionsData, ThrowOnError>) => RequestResult<GetUserFacilityPermissionsResponses, GetUserFacilityPermissionsErrors, ThrowOnError, "fields">;
|
|
5085
|
+
/**
|
|
5086
|
+
* Update authenticated user's profile
|
|
5032
5087
|
*
|
|
5033
|
-
* Update
|
|
5088
|
+
* Update authenticated user's profile information
|
|
5034
5089
|
*/
|
|
5035
5090
|
declare const updateUserProfile: <ThrowOnError extends boolean = false>(options: Options<UpdateUserProfileData, ThrowOnError>) => RequestResult<UpdateUserProfileResponses, UpdateUserProfileErrors, ThrowOnError, "fields">;
|
|
5036
5091
|
|
|
@@ -5247,12 +5302,12 @@ declare const searchUsersQueryKey: (options?: Options<SearchUsersData>) => [Pick
|
|
|
5247
5302
|
*
|
|
5248
5303
|
* Get a list of users based on the current user's search query
|
|
5249
5304
|
*/
|
|
5250
|
-
declare const searchUsersOptions: (options?: Options<SearchUsersData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<
|
|
5305
|
+
declare const searchUsersOptions: (options?: Options<SearchUsersData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<UsersProfilesPaginatedResponse, PkgOpenapiSharedProblemDetails, UsersProfilesPaginatedResponse, [Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
5251
5306
|
_id: string;
|
|
5252
5307
|
_infinite?: boolean;
|
|
5253
5308
|
tags?: ReadonlyArray<string>;
|
|
5254
5309
|
}]>, "queryFn"> & {
|
|
5255
|
-
queryFn?: _tanstack_react_query.QueryFunction<
|
|
5310
|
+
queryFn?: _tanstack_react_query.QueryFunction<UsersProfilesPaginatedResponse, [Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
5256
5311
|
_id: string;
|
|
5257
5312
|
_infinite?: boolean;
|
|
5258
5313
|
tags?: ReadonlyArray<string>;
|
|
@@ -5263,7 +5318,7 @@ declare const searchUsersOptions: (options?: Options<SearchUsersData>) => _tanst
|
|
|
5263
5318
|
_infinite?: boolean;
|
|
5264
5319
|
tags?: ReadonlyArray<string>;
|
|
5265
5320
|
}] & {
|
|
5266
|
-
[dataTagSymbol]:
|
|
5321
|
+
[dataTagSymbol]: UsersProfilesPaginatedResponse;
|
|
5267
5322
|
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
5268
5323
|
};
|
|
5269
5324
|
};
|
|
@@ -5273,30 +5328,60 @@ declare const searchUsersInfiniteQueryKey: (options?: Options<SearchUsersData>)
|
|
|
5273
5328
|
*
|
|
5274
5329
|
* Get a list of users based on the current user's search query
|
|
5275
5330
|
*/
|
|
5276
|
-
declare const searchUsersInfiniteOptions: (options?: Options<SearchUsersData>) => _tanstack_react_query.UseInfiniteQueryOptions<
|
|
5331
|
+
declare const searchUsersInfiniteOptions: (options?: Options<SearchUsersData>) => _tanstack_react_query.UseInfiniteQueryOptions<UsersProfilesPaginatedResponse, PkgOpenapiSharedProblemDetails, InfiniteData<UsersProfilesPaginatedResponse, unknown>, QueryKey<Options<SearchUsersData>>, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
5277
5332
|
_id: string;
|
|
5278
5333
|
_infinite?: boolean;
|
|
5279
5334
|
tags?: ReadonlyArray<string>;
|
|
5280
5335
|
}, "query" | "body" | "headers" | "path">> & {
|
|
5281
|
-
initialData: InfiniteData<
|
|
5336
|
+
initialData: InfiniteData<UsersProfilesPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
5282
5337
|
_id: string;
|
|
5283
5338
|
_infinite?: boolean;
|
|
5284
5339
|
tags?: ReadonlyArray<string>;
|
|
5285
|
-
}, "query" | "body" | "headers" | "path">> | (() => InfiniteData<
|
|
5340
|
+
}, "query" | "body" | "headers" | "path">> | (() => InfiniteData<UsersProfilesPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
5286
5341
|
_id: string;
|
|
5287
5342
|
_infinite?: boolean;
|
|
5288
5343
|
tags?: ReadonlyArray<string>;
|
|
5289
5344
|
}, "query" | "body" | "headers" | "path">>) | undefined;
|
|
5290
5345
|
} & {
|
|
5291
5346
|
queryKey: QueryKey<Options<SearchUsersData>> & {
|
|
5292
|
-
[dataTagSymbol]: InfiniteData<
|
|
5347
|
+
[dataTagSymbol]: InfiniteData<UsersProfilesPaginatedResponse, unknown>;
|
|
5348
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
5349
|
+
};
|
|
5350
|
+
};
|
|
5351
|
+
declare const getUserFacilityPermissionsQueryKey: (options: Options<GetUserFacilityPermissionsData>) => [Pick<Options<GetUserFacilityPermissionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
5352
|
+
_id: string;
|
|
5353
|
+
_infinite?: boolean;
|
|
5354
|
+
tags?: ReadonlyArray<string>;
|
|
5355
|
+
}];
|
|
5356
|
+
/**
|
|
5357
|
+
* Get facility permissions for a user
|
|
5358
|
+
*
|
|
5359
|
+
* Returns the authenticated user's facility-level permissions including roles and scopes for each facility.
|
|
5360
|
+
*/
|
|
5361
|
+
declare const getUserFacilityPermissionsOptions: (options: Options<GetUserFacilityPermissionsData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<FacilityPermissionsResponse, PkgOpenapiSharedProblemDetails, FacilityPermissionsResponse, [Pick<Options<GetUserFacilityPermissionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
5362
|
+
_id: string;
|
|
5363
|
+
_infinite?: boolean;
|
|
5364
|
+
tags?: ReadonlyArray<string>;
|
|
5365
|
+
}]>, "queryFn"> & {
|
|
5366
|
+
queryFn?: _tanstack_react_query.QueryFunction<FacilityPermissionsResponse, [Pick<Options<GetUserFacilityPermissionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
5367
|
+
_id: string;
|
|
5368
|
+
_infinite?: boolean;
|
|
5369
|
+
tags?: ReadonlyArray<string>;
|
|
5370
|
+
}], never> | undefined;
|
|
5371
|
+
} & {
|
|
5372
|
+
queryKey: [Pick<Options<GetUserFacilityPermissionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
5373
|
+
_id: string;
|
|
5374
|
+
_infinite?: boolean;
|
|
5375
|
+
tags?: ReadonlyArray<string>;
|
|
5376
|
+
}] & {
|
|
5377
|
+
[dataTagSymbol]: FacilityPermissionsResponse;
|
|
5293
5378
|
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
5294
5379
|
};
|
|
5295
5380
|
};
|
|
5296
5381
|
/**
|
|
5297
|
-
* Update
|
|
5382
|
+
* Update authenticated user's profile
|
|
5298
5383
|
*
|
|
5299
|
-
* Update
|
|
5384
|
+
* Update authenticated user's profile information
|
|
5300
5385
|
*/
|
|
5301
5386
|
declare const updateUserProfileMutation: (options?: Partial<Options<UpdateUserProfileData>>) => UseMutationOptions<UpdateUserProfileResponse, UpdateUserProfileError, Options<UpdateUserProfileData>>;
|
|
5302
5387
|
|
|
@@ -5310,6 +5395,8 @@ declare const reactQuery_gen_getNotificationsOptions: typeof getNotificationsOpt
|
|
|
5310
5395
|
declare const reactQuery_gen_getNotificationsPreferencesOptions: typeof getNotificationsPreferencesOptions;
|
|
5311
5396
|
declare const reactQuery_gen_getNotificationsPreferencesQueryKey: typeof getNotificationsPreferencesQueryKey;
|
|
5312
5397
|
declare const reactQuery_gen_getNotificationsQueryKey: typeof getNotificationsQueryKey;
|
|
5398
|
+
declare const reactQuery_gen_getUserFacilityPermissionsOptions: typeof getUserFacilityPermissionsOptions;
|
|
5399
|
+
declare const reactQuery_gen_getUserFacilityPermissionsQueryKey: typeof getUserFacilityPermissionsQueryKey;
|
|
5313
5400
|
declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacilityOffersInfiniteOptions;
|
|
5314
5401
|
declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
|
|
5315
5402
|
declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
|
|
@@ -5323,7 +5410,7 @@ declare const reactQuery_gen_updateNotificationMutation: typeof updateNotificati
|
|
|
5323
5410
|
declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof updateNotificationsPreferencesMutation;
|
|
5324
5411
|
declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
|
|
5325
5412
|
declare namespace reactQuery_gen {
|
|
5326
|
-
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_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 };
|
|
5413
|
+
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 };
|
|
5327
5414
|
}
|
|
5328
5415
|
|
|
5329
5416
|
type indexV1_Channels = Channels;
|
|
@@ -5345,6 +5432,8 @@ type indexV1_FacilityOfferConditionTime = FacilityOfferConditionTime;
|
|
|
5345
5432
|
type indexV1_FacilityOfferConditionWeekdays = FacilityOfferConditionWeekdays;
|
|
5346
5433
|
type indexV1_FacilityOfferList = FacilityOfferList;
|
|
5347
5434
|
type indexV1_FacilityOfferOrder = FacilityOfferOrder;
|
|
5435
|
+
type indexV1_FacilityPermission = FacilityPermission;
|
|
5436
|
+
type indexV1_FacilityPermissionsResponse = FacilityPermissionsResponse;
|
|
5348
5437
|
type indexV1_FacilityPunchCardData = FacilityPunchCardData;
|
|
5349
5438
|
type indexV1_FacilityValueCardData = FacilityValueCardData;
|
|
5350
5439
|
type indexV1_Gender = Gender;
|
|
@@ -5363,6 +5452,11 @@ type indexV1_GetNotificationsPreferencesResponse = GetNotificationsPreferencesRe
|
|
|
5363
5452
|
type indexV1_GetNotificationsPreferencesResponses = GetNotificationsPreferencesResponses;
|
|
5364
5453
|
type indexV1_GetNotificationsResponse = GetNotificationsResponse;
|
|
5365
5454
|
type indexV1_GetNotificationsResponses = GetNotificationsResponses;
|
|
5455
|
+
type indexV1_GetUserFacilityPermissionsData = GetUserFacilityPermissionsData;
|
|
5456
|
+
type indexV1_GetUserFacilityPermissionsError = GetUserFacilityPermissionsError;
|
|
5457
|
+
type indexV1_GetUserFacilityPermissionsErrors = GetUserFacilityPermissionsErrors;
|
|
5458
|
+
type indexV1_GetUserFacilityPermissionsResponse = GetUserFacilityPermissionsResponse;
|
|
5459
|
+
type indexV1_GetUserFacilityPermissionsResponses = GetUserFacilityPermissionsResponses;
|
|
5366
5460
|
type indexV1_ListFacilityOffersData = ListFacilityOffersData;
|
|
5367
5461
|
type indexV1_ListFacilityOffersError = ListFacilityOffersError;
|
|
5368
5462
|
type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
|
|
@@ -5415,18 +5509,18 @@ type indexV1_UpdatePreferencesRequestBody = UpdatePreferencesRequestBody;
|
|
|
5415
5509
|
type indexV1_UpdateUserProfileData = UpdateUserProfileData;
|
|
5416
5510
|
type indexV1_UpdateUserProfileError = UpdateUserProfileError;
|
|
5417
5511
|
type indexV1_UpdateUserProfileErrors = UpdateUserProfileErrors;
|
|
5418
|
-
type indexV1_UpdateUserProfileRequest = UpdateUserProfileRequest;
|
|
5419
5512
|
type indexV1_UpdateUserProfileResponse = UpdateUserProfileResponse;
|
|
5420
5513
|
type indexV1_UpdateUserProfileResponses = UpdateUserProfileResponses;
|
|
5421
|
-
type
|
|
5514
|
+
type indexV1_UpdateUsersProfilesRequest = UpdateUsersProfilesRequest;
|
|
5422
5515
|
type indexV1_UserProfile = UserProfile;
|
|
5423
5516
|
type indexV1_UserRelation = UserRelation;
|
|
5424
|
-
type
|
|
5517
|
+
type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
|
|
5425
5518
|
declare const indexV1_client: typeof client;
|
|
5426
5519
|
declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
|
|
5427
5520
|
declare const indexV1_getNotificationById: typeof getNotificationById;
|
|
5428
5521
|
declare const indexV1_getNotifications: typeof getNotifications;
|
|
5429
5522
|
declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
|
|
5523
|
+
declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissions;
|
|
5430
5524
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
5431
5525
|
declare const indexV1_searchUsers: typeof searchUsers;
|
|
5432
5526
|
declare const indexV1_updateAllNotifications: typeof updateAllNotifications;
|
|
@@ -5434,7 +5528,7 @@ declare const indexV1_updateNotification: typeof updateNotification;
|
|
|
5434
5528
|
declare const indexV1_updateNotificationsPreferences: typeof updateNotificationsPreferences;
|
|
5435
5529
|
declare const indexV1_updateUserProfile: typeof updateUserProfile;
|
|
5436
5530
|
declare namespace indexV1 {
|
|
5437
|
-
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, 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_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, 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
|
|
5531
|
+
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_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 };
|
|
5438
5532
|
}
|
|
5439
5533
|
|
|
5440
5534
|
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 };
|