@tennac-booking/sdk 1.0.16 → 1.0.81
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/README.md +2 -2
- package/api.ts +15 -15
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +15 -15
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +15 -15
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/CourtResponse.md +14 -14
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @tennac-booking/sdk@1.0.
|
|
1
|
+
## @tennac-booking/sdk@1.0.17
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @tennac-booking/sdk@1.0.
|
|
39
|
+
npm install @tennac-booking/sdk@1.0.17 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickle Ball API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.17
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -979,85 +979,85 @@ export interface CourtResponse {
|
|
|
979
979
|
* @type {string}
|
|
980
980
|
* @memberof CourtResponse
|
|
981
981
|
*/
|
|
982
|
-
'id'
|
|
982
|
+
'id': string;
|
|
983
983
|
/**
|
|
984
984
|
*
|
|
985
985
|
* @type {string}
|
|
986
986
|
* @memberof CourtResponse
|
|
987
987
|
*/
|
|
988
|
-
'name'
|
|
988
|
+
'name': string;
|
|
989
989
|
/**
|
|
990
990
|
*
|
|
991
991
|
* @type {string}
|
|
992
992
|
* @memberof CourtResponse
|
|
993
993
|
*/
|
|
994
|
-
'status'
|
|
994
|
+
'status': CourtResponseStatusEnum;
|
|
995
995
|
/**
|
|
996
996
|
*
|
|
997
997
|
* @type {string}
|
|
998
998
|
* @memberof CourtResponse
|
|
999
999
|
*/
|
|
1000
|
-
'comments'
|
|
1000
|
+
'comments': string;
|
|
1001
1001
|
/**
|
|
1002
1002
|
*
|
|
1003
1003
|
* @type {number}
|
|
1004
1004
|
* @memberof CourtResponse
|
|
1005
1005
|
*/
|
|
1006
|
-
'slotDefaultDuration'
|
|
1006
|
+
'slotDefaultDuration': number;
|
|
1007
1007
|
/**
|
|
1008
1008
|
*
|
|
1009
1009
|
* @type {number}
|
|
1010
1010
|
* @memberof CourtResponse
|
|
1011
1011
|
*/
|
|
1012
|
-
'startTimeInTheDayInMinutes'
|
|
1012
|
+
'startTimeInTheDayInMinutes': number;
|
|
1013
1013
|
/**
|
|
1014
1014
|
*
|
|
1015
1015
|
* @type {number}
|
|
1016
1016
|
* @memberof CourtResponse
|
|
1017
1017
|
*/
|
|
1018
|
-
'endTimeInTheDayInMinutes'
|
|
1018
|
+
'endTimeInTheDayInMinutes': number;
|
|
1019
1019
|
/**
|
|
1020
1020
|
*
|
|
1021
1021
|
* @type {number}
|
|
1022
1022
|
* @memberof CourtResponse
|
|
1023
1023
|
*/
|
|
1024
|
-
'pricePerSlotInCents'
|
|
1024
|
+
'pricePerSlotInCents': number;
|
|
1025
1025
|
/**
|
|
1026
1026
|
*
|
|
1027
1027
|
* @type {string}
|
|
1028
1028
|
* @memberof CourtResponse
|
|
1029
1029
|
*/
|
|
1030
|
-
'sportId'
|
|
1030
|
+
'sportId': string;
|
|
1031
1031
|
/**
|
|
1032
1032
|
*
|
|
1033
1033
|
* @type {string}
|
|
1034
1034
|
* @memberof CourtResponse
|
|
1035
1035
|
*/
|
|
1036
|
-
'clubId'
|
|
1036
|
+
'clubId': string;
|
|
1037
1037
|
/**
|
|
1038
1038
|
*
|
|
1039
1039
|
* @type {string}
|
|
1040
1040
|
* @memberof CourtResponse
|
|
1041
1041
|
*/
|
|
1042
|
-
'surface'
|
|
1042
|
+
'surface': CourtResponseSurfaceEnum;
|
|
1043
1043
|
/**
|
|
1044
1044
|
* Indique si le terrain est en intérieur ou extérieur
|
|
1045
1045
|
* @type {boolean}
|
|
1046
1046
|
* @memberof CourtResponse
|
|
1047
1047
|
*/
|
|
1048
|
-
'isIndoor'
|
|
1048
|
+
'isIndoor': boolean;
|
|
1049
1049
|
/**
|
|
1050
1050
|
*
|
|
1051
1051
|
* @type {string}
|
|
1052
1052
|
* @memberof CourtResponse
|
|
1053
1053
|
*/
|
|
1054
|
-
'createdAt'
|
|
1054
|
+
'createdAt': string;
|
|
1055
1055
|
/**
|
|
1056
1056
|
*
|
|
1057
1057
|
* @type {string}
|
|
1058
1058
|
* @memberof CourtResponse
|
|
1059
1059
|
*/
|
|
1060
|
-
'updatedAt'
|
|
1060
|
+
'updatedAt': string;
|
|
1061
1061
|
}
|
|
1062
1062
|
|
|
1063
1063
|
export const CourtResponseStatusEnum = {
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickle Ball API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.17
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickle Ball API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.17
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickle Ball API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.17
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickle Ball API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.17
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -958,85 +958,85 @@ export interface CourtResponse {
|
|
|
958
958
|
* @type {string}
|
|
959
959
|
* @memberof CourtResponse
|
|
960
960
|
*/
|
|
961
|
-
'id'
|
|
961
|
+
'id': string;
|
|
962
962
|
/**
|
|
963
963
|
*
|
|
964
964
|
* @type {string}
|
|
965
965
|
* @memberof CourtResponse
|
|
966
966
|
*/
|
|
967
|
-
'name'
|
|
967
|
+
'name': string;
|
|
968
968
|
/**
|
|
969
969
|
*
|
|
970
970
|
* @type {string}
|
|
971
971
|
* @memberof CourtResponse
|
|
972
972
|
*/
|
|
973
|
-
'status'
|
|
973
|
+
'status': CourtResponseStatusEnum;
|
|
974
974
|
/**
|
|
975
975
|
*
|
|
976
976
|
* @type {string}
|
|
977
977
|
* @memberof CourtResponse
|
|
978
978
|
*/
|
|
979
|
-
'comments'
|
|
979
|
+
'comments': string;
|
|
980
980
|
/**
|
|
981
981
|
*
|
|
982
982
|
* @type {number}
|
|
983
983
|
* @memberof CourtResponse
|
|
984
984
|
*/
|
|
985
|
-
'slotDefaultDuration'
|
|
985
|
+
'slotDefaultDuration': number;
|
|
986
986
|
/**
|
|
987
987
|
*
|
|
988
988
|
* @type {number}
|
|
989
989
|
* @memberof CourtResponse
|
|
990
990
|
*/
|
|
991
|
-
'startTimeInTheDayInMinutes'
|
|
991
|
+
'startTimeInTheDayInMinutes': number;
|
|
992
992
|
/**
|
|
993
993
|
*
|
|
994
994
|
* @type {number}
|
|
995
995
|
* @memberof CourtResponse
|
|
996
996
|
*/
|
|
997
|
-
'endTimeInTheDayInMinutes'
|
|
997
|
+
'endTimeInTheDayInMinutes': number;
|
|
998
998
|
/**
|
|
999
999
|
*
|
|
1000
1000
|
* @type {number}
|
|
1001
1001
|
* @memberof CourtResponse
|
|
1002
1002
|
*/
|
|
1003
|
-
'pricePerSlotInCents'
|
|
1003
|
+
'pricePerSlotInCents': number;
|
|
1004
1004
|
/**
|
|
1005
1005
|
*
|
|
1006
1006
|
* @type {string}
|
|
1007
1007
|
* @memberof CourtResponse
|
|
1008
1008
|
*/
|
|
1009
|
-
'sportId'
|
|
1009
|
+
'sportId': string;
|
|
1010
1010
|
/**
|
|
1011
1011
|
*
|
|
1012
1012
|
* @type {string}
|
|
1013
1013
|
* @memberof CourtResponse
|
|
1014
1014
|
*/
|
|
1015
|
-
'clubId'
|
|
1015
|
+
'clubId': string;
|
|
1016
1016
|
/**
|
|
1017
1017
|
*
|
|
1018
1018
|
* @type {string}
|
|
1019
1019
|
* @memberof CourtResponse
|
|
1020
1020
|
*/
|
|
1021
|
-
'surface'
|
|
1021
|
+
'surface': CourtResponseSurfaceEnum;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* Indique si le terrain est en intérieur ou extérieur
|
|
1024
1024
|
* @type {boolean}
|
|
1025
1025
|
* @memberof CourtResponse
|
|
1026
1026
|
*/
|
|
1027
|
-
'isIndoor'
|
|
1027
|
+
'isIndoor': boolean;
|
|
1028
1028
|
/**
|
|
1029
1029
|
*
|
|
1030
1030
|
* @type {string}
|
|
1031
1031
|
* @memberof CourtResponse
|
|
1032
1032
|
*/
|
|
1033
|
-
'createdAt'
|
|
1033
|
+
'createdAt': string;
|
|
1034
1034
|
/**
|
|
1035
1035
|
*
|
|
1036
1036
|
* @type {string}
|
|
1037
1037
|
* @memberof CourtResponse
|
|
1038
1038
|
*/
|
|
1039
|
-
'updatedAt'
|
|
1039
|
+
'updatedAt': string;
|
|
1040
1040
|
}
|
|
1041
1041
|
export declare const CourtResponseStatusEnum: {
|
|
1042
1042
|
readonly Available: "available";
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickle Ball API
|
|
6
6
|
* API for managing pickle ball games and players
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.17
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickle Ball API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.17
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickle Ball API
|
|
6
6
|
* API for managing pickle ball games and players
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.17
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickle Ball API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.17
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickle Ball API
|
|
6
6
|
* API for managing pickle ball games and players
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.17
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickle Ball API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.17
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickle Ball API
|
|
6
6
|
* API for managing pickle ball games and players
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.17
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickle Ball API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.17
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -958,85 +958,85 @@ export interface CourtResponse {
|
|
|
958
958
|
* @type {string}
|
|
959
959
|
* @memberof CourtResponse
|
|
960
960
|
*/
|
|
961
|
-
'id'
|
|
961
|
+
'id': string;
|
|
962
962
|
/**
|
|
963
963
|
*
|
|
964
964
|
* @type {string}
|
|
965
965
|
* @memberof CourtResponse
|
|
966
966
|
*/
|
|
967
|
-
'name'
|
|
967
|
+
'name': string;
|
|
968
968
|
/**
|
|
969
969
|
*
|
|
970
970
|
* @type {string}
|
|
971
971
|
* @memberof CourtResponse
|
|
972
972
|
*/
|
|
973
|
-
'status'
|
|
973
|
+
'status': CourtResponseStatusEnum;
|
|
974
974
|
/**
|
|
975
975
|
*
|
|
976
976
|
* @type {string}
|
|
977
977
|
* @memberof CourtResponse
|
|
978
978
|
*/
|
|
979
|
-
'comments'
|
|
979
|
+
'comments': string;
|
|
980
980
|
/**
|
|
981
981
|
*
|
|
982
982
|
* @type {number}
|
|
983
983
|
* @memberof CourtResponse
|
|
984
984
|
*/
|
|
985
|
-
'slotDefaultDuration'
|
|
985
|
+
'slotDefaultDuration': number;
|
|
986
986
|
/**
|
|
987
987
|
*
|
|
988
988
|
* @type {number}
|
|
989
989
|
* @memberof CourtResponse
|
|
990
990
|
*/
|
|
991
|
-
'startTimeInTheDayInMinutes'
|
|
991
|
+
'startTimeInTheDayInMinutes': number;
|
|
992
992
|
/**
|
|
993
993
|
*
|
|
994
994
|
* @type {number}
|
|
995
995
|
* @memberof CourtResponse
|
|
996
996
|
*/
|
|
997
|
-
'endTimeInTheDayInMinutes'
|
|
997
|
+
'endTimeInTheDayInMinutes': number;
|
|
998
998
|
/**
|
|
999
999
|
*
|
|
1000
1000
|
* @type {number}
|
|
1001
1001
|
* @memberof CourtResponse
|
|
1002
1002
|
*/
|
|
1003
|
-
'pricePerSlotInCents'
|
|
1003
|
+
'pricePerSlotInCents': number;
|
|
1004
1004
|
/**
|
|
1005
1005
|
*
|
|
1006
1006
|
* @type {string}
|
|
1007
1007
|
* @memberof CourtResponse
|
|
1008
1008
|
*/
|
|
1009
|
-
'sportId'
|
|
1009
|
+
'sportId': string;
|
|
1010
1010
|
/**
|
|
1011
1011
|
*
|
|
1012
1012
|
* @type {string}
|
|
1013
1013
|
* @memberof CourtResponse
|
|
1014
1014
|
*/
|
|
1015
|
-
'clubId'
|
|
1015
|
+
'clubId': string;
|
|
1016
1016
|
/**
|
|
1017
1017
|
*
|
|
1018
1018
|
* @type {string}
|
|
1019
1019
|
* @memberof CourtResponse
|
|
1020
1020
|
*/
|
|
1021
|
-
'surface'
|
|
1021
|
+
'surface': CourtResponseSurfaceEnum;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* Indique si le terrain est en intérieur ou extérieur
|
|
1024
1024
|
* @type {boolean}
|
|
1025
1025
|
* @memberof CourtResponse
|
|
1026
1026
|
*/
|
|
1027
|
-
'isIndoor'
|
|
1027
|
+
'isIndoor': boolean;
|
|
1028
1028
|
/**
|
|
1029
1029
|
*
|
|
1030
1030
|
* @type {string}
|
|
1031
1031
|
* @memberof CourtResponse
|
|
1032
1032
|
*/
|
|
1033
|
-
'createdAt'
|
|
1033
|
+
'createdAt': string;
|
|
1034
1034
|
/**
|
|
1035
1035
|
*
|
|
1036
1036
|
* @type {string}
|
|
1037
1037
|
* @memberof CourtResponse
|
|
1038
1038
|
*/
|
|
1039
|
-
'updatedAt'
|
|
1039
|
+
'updatedAt': string;
|
|
1040
1040
|
}
|
|
1041
1041
|
export declare const CourtResponseStatusEnum: {
|
|
1042
1042
|
readonly Available: "available";
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickle Ball API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.17
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickle Ball API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.17
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickle Ball API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.17
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickle Ball API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.17
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickle Ball API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.17
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickle Ball API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.17
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickle Ball API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.17
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickle Ball API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.17
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickle Ball API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.17
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickle Ball API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.17
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickle Ball API
|
|
6
6
|
* API for managing pickle ball games and players
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.17
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/docs/CourtResponse.md
CHANGED
|
@@ -5,20 +5,20 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**id** | **string** | | [
|
|
9
|
-
**name** | **string** | | [
|
|
10
|
-
**status** | **string** | | [
|
|
11
|
-
**comments** | **string** | | [
|
|
12
|
-
**slotDefaultDuration** | **number** | | [
|
|
13
|
-
**startTimeInTheDayInMinutes** | **number** | | [
|
|
14
|
-
**endTimeInTheDayInMinutes** | **number** | | [
|
|
15
|
-
**pricePerSlotInCents** | **number** | | [
|
|
16
|
-
**sportId** | **string** | | [
|
|
17
|
-
**clubId** | **string** | | [
|
|
18
|
-
**surface** | **string** | | [
|
|
19
|
-
**isIndoor** | **boolean** | Indique si le terrain est en intérieur ou extérieur | [
|
|
20
|
-
**createdAt** | **string** | | [
|
|
21
|
-
**updatedAt** | **string** | | [
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
**name** | **string** | | [default to undefined]
|
|
10
|
+
**status** | **string** | | [default to undefined]
|
|
11
|
+
**comments** | **string** | | [default to undefined]
|
|
12
|
+
**slotDefaultDuration** | **number** | | [default to undefined]
|
|
13
|
+
**startTimeInTheDayInMinutes** | **number** | | [default to undefined]
|
|
14
|
+
**endTimeInTheDayInMinutes** | **number** | | [default to undefined]
|
|
15
|
+
**pricePerSlotInCents** | **number** | | [default to undefined]
|
|
16
|
+
**sportId** | **string** | | [default to undefined]
|
|
17
|
+
**clubId** | **string** | | [default to undefined]
|
|
18
|
+
**surface** | **string** | | [default to undefined]
|
|
19
|
+
**isIndoor** | **boolean** | Indique si le terrain est en intérieur ou extérieur | [default to undefined]
|
|
20
|
+
**createdAt** | **string** | | [default to undefined]
|
|
21
|
+
**updatedAt** | **string** | | [default to undefined]
|
|
22
22
|
|
|
23
23
|
## Example
|
|
24
24
|
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickle Ball API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.17
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|