@tennac-booking/sdk 1.0.139 → 1.0.141

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.
@@ -0,0 +1,22 @@
1
+ # UpdateUserRequestBodyCharacteristicsInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **value** | **string** | | [default to undefined]
9
+ **key** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { UpdateUserRequestBodyCharacteristicsInner } from '@tennac-booking/sdk';
15
+
16
+ const instance: UpdateUserRequestBodyCharacteristicsInner = {
17
+ value,
18
+ key,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **location** | [**IUserLocation**](IUserLocation.md) | | [optional] [default to undefined]
15
15
  **isAccountVerified** | **boolean** | | [default to undefined]
16
16
  **levelBySports** | [**Array<ILevelBySports>**](ILevelBySports.md) | | [optional] [default to undefined]
17
+ **characteristics** | [**Array<ICharacteristic>**](ICharacteristic.md) | | [optional] [default to undefined]
17
18
  **phone** | **string** | | [optional] [default to undefined]
18
19
  **password** | **string** | | [optional] [default to undefined]
19
20
  **profilePicture** | **string** | | [optional] [default to undefined]
@@ -57,6 +58,7 @@ const instance: UserProfileResponse = {
57
58
  location,
58
59
  isAccountVerified,
59
60
  levelBySports,
61
+ characteristics,
60
62
  phone,
61
63
  password,
62
64
  profilePicture,
@@ -0,0 +1,20 @@
1
+ # WeekdayKey
2
+
3
+
4
+ ## Enum
5
+
6
+ * `Monday` (value: `'monday'`)
7
+
8
+ * `Tuesday` (value: `'tuesday'`)
9
+
10
+ * `Wednesday` (value: `'wednesday'`)
11
+
12
+ * `Thursday` (value: `'thursday'`)
13
+
14
+ * `Friday` (value: `'friday'`)
15
+
16
+ * `Saturday` (value: `'saturday'`)
17
+
18
+ * `Sunday` (value: `'sunday'`)
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tennac-booking/sdk",
3
- "version": "1.0.139",
3
+ "version": "1.0.141",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,32 +0,0 @@
1
- # ClubWeeklySchedule
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **sunday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [default to undefined]
9
- **saturday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [default to undefined]
10
- **friday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [default to undefined]
11
- **thursday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [default to undefined]
12
- **wednesday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [default to undefined]
13
- **tuesday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [default to undefined]
14
- **monday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [default to undefined]
15
-
16
- ## Example
17
-
18
- ```typescript
19
- import { ClubWeeklySchedule } from '@tennac-booking/sdk';
20
-
21
- const instance: ClubWeeklySchedule = {
22
- sunday,
23
- saturday,
24
- friday,
25
- thursday,
26
- wednesday,
27
- tuesday,
28
- monday,
29
- };
30
- ```
31
-
32
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,33 +0,0 @@
1
- # PartialClubWeeklySchedule
2
-
3
- Make all properties in T optional
4
-
5
- ## Properties
6
-
7
- Name | Type | Description | Notes
8
- ------------ | ------------- | ------------- | -------------
9
- **monday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [optional] [default to undefined]
10
- **tuesday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [optional] [default to undefined]
11
- **wednesday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [optional] [default to undefined]
12
- **thursday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [optional] [default to undefined]
13
- **friday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [optional] [default to undefined]
14
- **saturday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [optional] [default to undefined]
15
- **sunday** | [**ClubDaySchedule**](ClubDaySchedule.md) | | [optional] [default to undefined]
16
-
17
- ## Example
18
-
19
- ```typescript
20
- import { PartialClubWeeklySchedule } from '@tennac-booking/sdk';
21
-
22
- const instance: PartialClubWeeklySchedule = {
23
- monday,
24
- tuesday,
25
- wednesday,
26
- thursday,
27
- friday,
28
- saturday,
29
- sunday,
30
- };
31
- ```
32
-
33
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)