@tennac-booking/sdk 1.0.206 → 1.0.207
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/api.ts +39 -3
- package/dist/api.d.ts +39 -3
- package/dist/esm/api.d.ts +39 -3
- package/docs/BookingPopulated.md +1 -1
- package/docs/IUserAttributes.md +4 -0
- package/docs/StaffUserProfileResponse.md +4 -0
- package/docs/UserProfileResponse.md +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -790,11 +790,11 @@ export interface BookingPopulated {
|
|
|
790
790
|
*/
|
|
791
791
|
'creator': UserInfo;
|
|
792
792
|
/**
|
|
793
|
-
*
|
|
794
|
-
* @type {SlotInfo}
|
|
793
|
+
* Informations des slots
|
|
794
|
+
* @type {Array<SlotInfo>}
|
|
795
795
|
* @memberof BookingPopulated
|
|
796
796
|
*/
|
|
797
|
-
'slotInfos': SlotInfo
|
|
797
|
+
'slotInfos': Array<SlotInfo>;
|
|
798
798
|
/**
|
|
799
799
|
*
|
|
800
800
|
* @type {Array<UserInfo>}
|
|
@@ -7062,6 +7062,18 @@ export interface IUserAttributes {
|
|
|
7062
7062
|
* @memberof IUserAttributes
|
|
7063
7063
|
*/
|
|
7064
7064
|
'lastName': string;
|
|
7065
|
+
/**
|
|
7066
|
+
*
|
|
7067
|
+
* @type {string}
|
|
7068
|
+
* @memberof IUserAttributes
|
|
7069
|
+
*/
|
|
7070
|
+
'firstNameNormalized'?: string;
|
|
7071
|
+
/**
|
|
7072
|
+
*
|
|
7073
|
+
* @type {string}
|
|
7074
|
+
* @memberof IUserAttributes
|
|
7075
|
+
*/
|
|
7076
|
+
'lastNameNormalized'?: string;
|
|
7065
7077
|
/**
|
|
7066
7078
|
*
|
|
7067
7079
|
* @type {string}
|
|
@@ -11729,6 +11741,18 @@ export interface StaffUserProfileResponse {
|
|
|
11729
11741
|
* @memberof StaffUserProfileResponse
|
|
11730
11742
|
*/
|
|
11731
11743
|
'lastName': string;
|
|
11744
|
+
/**
|
|
11745
|
+
*
|
|
11746
|
+
* @type {string}
|
|
11747
|
+
* @memberof StaffUserProfileResponse
|
|
11748
|
+
*/
|
|
11749
|
+
'firstNameNormalized'?: string;
|
|
11750
|
+
/**
|
|
11751
|
+
*
|
|
11752
|
+
* @type {string}
|
|
11753
|
+
* @memberof StaffUserProfileResponse
|
|
11754
|
+
*/
|
|
11755
|
+
'lastNameNormalized'?: string;
|
|
11732
11756
|
/**
|
|
11733
11757
|
*
|
|
11734
11758
|
* @type {string}
|
|
@@ -13961,6 +13985,18 @@ export interface UserProfileResponse {
|
|
|
13961
13985
|
* @memberof UserProfileResponse
|
|
13962
13986
|
*/
|
|
13963
13987
|
'lastName': string;
|
|
13988
|
+
/**
|
|
13989
|
+
*
|
|
13990
|
+
* @type {string}
|
|
13991
|
+
* @memberof UserProfileResponse
|
|
13992
|
+
*/
|
|
13993
|
+
'firstNameNormalized'?: string;
|
|
13994
|
+
/**
|
|
13995
|
+
*
|
|
13996
|
+
* @type {string}
|
|
13997
|
+
* @memberof UserProfileResponse
|
|
13998
|
+
*/
|
|
13999
|
+
'lastNameNormalized'?: string;
|
|
13964
14000
|
/**
|
|
13965
14001
|
*
|
|
13966
14002
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -765,11 +765,11 @@ export interface BookingPopulated {
|
|
|
765
765
|
*/
|
|
766
766
|
'creator': UserInfo;
|
|
767
767
|
/**
|
|
768
|
-
*
|
|
769
|
-
* @type {SlotInfo}
|
|
768
|
+
* Informations des slots
|
|
769
|
+
* @type {Array<SlotInfo>}
|
|
770
770
|
* @memberof BookingPopulated
|
|
771
771
|
*/
|
|
772
|
-
'slotInfos': SlotInfo
|
|
772
|
+
'slotInfos': Array<SlotInfo>;
|
|
773
773
|
/**
|
|
774
774
|
*
|
|
775
775
|
* @type {Array<UserInfo>}
|
|
@@ -6951,6 +6951,18 @@ export interface IUserAttributes {
|
|
|
6951
6951
|
* @memberof IUserAttributes
|
|
6952
6952
|
*/
|
|
6953
6953
|
'lastName': string;
|
|
6954
|
+
/**
|
|
6955
|
+
*
|
|
6956
|
+
* @type {string}
|
|
6957
|
+
* @memberof IUserAttributes
|
|
6958
|
+
*/
|
|
6959
|
+
'firstNameNormalized'?: string;
|
|
6960
|
+
/**
|
|
6961
|
+
*
|
|
6962
|
+
* @type {string}
|
|
6963
|
+
* @memberof IUserAttributes
|
|
6964
|
+
*/
|
|
6965
|
+
'lastNameNormalized'?: string;
|
|
6954
6966
|
/**
|
|
6955
6967
|
*
|
|
6956
6968
|
* @type {string}
|
|
@@ -11529,6 +11541,18 @@ export interface StaffUserProfileResponse {
|
|
|
11529
11541
|
* @memberof StaffUserProfileResponse
|
|
11530
11542
|
*/
|
|
11531
11543
|
'lastName': string;
|
|
11544
|
+
/**
|
|
11545
|
+
*
|
|
11546
|
+
* @type {string}
|
|
11547
|
+
* @memberof StaffUserProfileResponse
|
|
11548
|
+
*/
|
|
11549
|
+
'firstNameNormalized'?: string;
|
|
11550
|
+
/**
|
|
11551
|
+
*
|
|
11552
|
+
* @type {string}
|
|
11553
|
+
* @memberof StaffUserProfileResponse
|
|
11554
|
+
*/
|
|
11555
|
+
'lastNameNormalized'?: string;
|
|
11532
11556
|
/**
|
|
11533
11557
|
*
|
|
11534
11558
|
* @type {string}
|
|
@@ -13719,6 +13743,18 @@ export interface UserProfileResponse {
|
|
|
13719
13743
|
* @memberof UserProfileResponse
|
|
13720
13744
|
*/
|
|
13721
13745
|
'lastName': string;
|
|
13746
|
+
/**
|
|
13747
|
+
*
|
|
13748
|
+
* @type {string}
|
|
13749
|
+
* @memberof UserProfileResponse
|
|
13750
|
+
*/
|
|
13751
|
+
'firstNameNormalized'?: string;
|
|
13752
|
+
/**
|
|
13753
|
+
*
|
|
13754
|
+
* @type {string}
|
|
13755
|
+
* @memberof UserProfileResponse
|
|
13756
|
+
*/
|
|
13757
|
+
'lastNameNormalized'?: string;
|
|
13722
13758
|
/**
|
|
13723
13759
|
*
|
|
13724
13760
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -765,11 +765,11 @@ export interface BookingPopulated {
|
|
|
765
765
|
*/
|
|
766
766
|
'creator': UserInfo;
|
|
767
767
|
/**
|
|
768
|
-
*
|
|
769
|
-
* @type {SlotInfo}
|
|
768
|
+
* Informations des slots
|
|
769
|
+
* @type {Array<SlotInfo>}
|
|
770
770
|
* @memberof BookingPopulated
|
|
771
771
|
*/
|
|
772
|
-
'slotInfos': SlotInfo
|
|
772
|
+
'slotInfos': Array<SlotInfo>;
|
|
773
773
|
/**
|
|
774
774
|
*
|
|
775
775
|
* @type {Array<UserInfo>}
|
|
@@ -6951,6 +6951,18 @@ export interface IUserAttributes {
|
|
|
6951
6951
|
* @memberof IUserAttributes
|
|
6952
6952
|
*/
|
|
6953
6953
|
'lastName': string;
|
|
6954
|
+
/**
|
|
6955
|
+
*
|
|
6956
|
+
* @type {string}
|
|
6957
|
+
* @memberof IUserAttributes
|
|
6958
|
+
*/
|
|
6959
|
+
'firstNameNormalized'?: string;
|
|
6960
|
+
/**
|
|
6961
|
+
*
|
|
6962
|
+
* @type {string}
|
|
6963
|
+
* @memberof IUserAttributes
|
|
6964
|
+
*/
|
|
6965
|
+
'lastNameNormalized'?: string;
|
|
6954
6966
|
/**
|
|
6955
6967
|
*
|
|
6956
6968
|
* @type {string}
|
|
@@ -11529,6 +11541,18 @@ export interface StaffUserProfileResponse {
|
|
|
11529
11541
|
* @memberof StaffUserProfileResponse
|
|
11530
11542
|
*/
|
|
11531
11543
|
'lastName': string;
|
|
11544
|
+
/**
|
|
11545
|
+
*
|
|
11546
|
+
* @type {string}
|
|
11547
|
+
* @memberof StaffUserProfileResponse
|
|
11548
|
+
*/
|
|
11549
|
+
'firstNameNormalized'?: string;
|
|
11550
|
+
/**
|
|
11551
|
+
*
|
|
11552
|
+
* @type {string}
|
|
11553
|
+
* @memberof StaffUserProfileResponse
|
|
11554
|
+
*/
|
|
11555
|
+
'lastNameNormalized'?: string;
|
|
11532
11556
|
/**
|
|
11533
11557
|
*
|
|
11534
11558
|
* @type {string}
|
|
@@ -13719,6 +13743,18 @@ export interface UserProfileResponse {
|
|
|
13719
13743
|
* @memberof UserProfileResponse
|
|
13720
13744
|
*/
|
|
13721
13745
|
'lastName': string;
|
|
13746
|
+
/**
|
|
13747
|
+
*
|
|
13748
|
+
* @type {string}
|
|
13749
|
+
* @memberof UserProfileResponse
|
|
13750
|
+
*/
|
|
13751
|
+
'firstNameNormalized'?: string;
|
|
13752
|
+
/**
|
|
13753
|
+
*
|
|
13754
|
+
* @type {string}
|
|
13755
|
+
* @memberof UserProfileResponse
|
|
13756
|
+
*/
|
|
13757
|
+
'lastNameNormalized'?: string;
|
|
13722
13758
|
/**
|
|
13723
13759
|
*
|
|
13724
13760
|
* @type {string}
|
package/docs/BookingPopulated.md
CHANGED
|
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**id** | **string** | ID de la réservation | [default to undefined]
|
|
9
9
|
**clubId** | **string** | | [default to undefined]
|
|
10
10
|
**creator** | [**UserInfo**](UserInfo.md) | | [default to undefined]
|
|
11
|
-
**slotInfos** | [**SlotInfo
|
|
11
|
+
**slotInfos** | [**Array<SlotInfo>**](SlotInfo.md) | Informations des slots | [default to undefined]
|
|
12
12
|
**players** | [**Array<UserInfo>**](UserInfo.md) | | [default to undefined]
|
|
13
13
|
**initialPlayers** | [**Array<UserInfo>**](UserInfo.md) | Joueurs inclus à la création de la réservation (pour les créneaux ouverts) | [optional] [default to undefined]
|
|
14
14
|
**paymentByPlayers** | [**Array<PaymentByPlayerInfo>**](PaymentByPlayerInfo.md) | Statut des paiements par joueur | [default to undefined]
|
package/docs/IUserAttributes.md
CHANGED
|
@@ -9,6 +9,8 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**googleId** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**firstName** | **string** | | [default to undefined]
|
|
11
11
|
**lastName** | **string** | | [default to undefined]
|
|
12
|
+
**firstNameNormalized** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**lastNameNormalized** | **string** | | [optional] [default to undefined]
|
|
12
14
|
**email** | **string** | | [default to undefined]
|
|
13
15
|
**gender** | [**Gender**](Gender.md) | | [optional] [default to undefined]
|
|
14
16
|
**location** | [**IUserLocation**](IUserLocation.md) | | [optional] [default to undefined]
|
|
@@ -49,6 +51,8 @@ const instance: IUserAttributes = {
|
|
|
49
51
|
googleId,
|
|
50
52
|
firstName,
|
|
51
53
|
lastName,
|
|
54
|
+
firstNameNormalized,
|
|
55
|
+
lastNameNormalized,
|
|
52
56
|
email,
|
|
53
57
|
gender,
|
|
54
58
|
location,
|
|
@@ -9,6 +9,8 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**googleId** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**firstName** | **string** | | [default to undefined]
|
|
11
11
|
**lastName** | **string** | | [default to undefined]
|
|
12
|
+
**firstNameNormalized** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**lastNameNormalized** | **string** | | [optional] [default to undefined]
|
|
12
14
|
**email** | **string** | | [default to undefined]
|
|
13
15
|
**gender** | [**Gender**](Gender.md) | | [optional] [default to undefined]
|
|
14
16
|
**location** | [**IUserLocation**](IUserLocation.md) | | [optional] [default to undefined]
|
|
@@ -51,6 +53,8 @@ const instance: StaffUserProfileResponse = {
|
|
|
51
53
|
googleId,
|
|
52
54
|
firstName,
|
|
53
55
|
lastName,
|
|
56
|
+
firstNameNormalized,
|
|
57
|
+
lastNameNormalized,
|
|
54
58
|
email,
|
|
55
59
|
gender,
|
|
56
60
|
location,
|
|
@@ -9,6 +9,8 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**googleId** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**firstName** | **string** | | [default to undefined]
|
|
11
11
|
**lastName** | **string** | | [default to undefined]
|
|
12
|
+
**firstNameNormalized** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**lastNameNormalized** | **string** | | [optional] [default to undefined]
|
|
12
14
|
**email** | **string** | | [default to undefined]
|
|
13
15
|
**gender** | [**Gender**](Gender.md) | | [optional] [default to undefined]
|
|
14
16
|
**location** | [**IUserLocation**](IUserLocation.md) | | [optional] [default to undefined]
|
|
@@ -62,6 +64,8 @@ const instance: UserProfileResponse = {
|
|
|
62
64
|
googleId,
|
|
63
65
|
firstName,
|
|
64
66
|
lastName,
|
|
67
|
+
firstNameNormalized,
|
|
68
|
+
lastNameNormalized,
|
|
65
69
|
email,
|
|
66
70
|
gender,
|
|
67
71
|
location,
|