@tennac-booking/sdk 1.0.287 → 1.0.288
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 +20 -98
- package/dist/api.d.ts +20 -98
- package/dist/esm/api.d.ts +20 -98
- package/docs/AcceptTermsRequestBody.md +2 -0
- package/docs/ClubDashboardTask.md +2 -0
- package/docs/CreateEventRequest.md +2 -6
- package/docs/EventConflictCheckRequest.md +0 -4
- package/docs/EventResponse.md +0 -4
- package/docs/JoinOpenBookingResponse.md +2 -0
- package/docs/SumupReaderInfo.md +0 -12
- package/docs/UpdateEventRequest.md +0 -4
- package/docs/UpdateRecurringDefinitionRequest.md +0 -4
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -79,6 +79,12 @@ export interface AcceptTermsRequestBody {
|
|
|
79
79
|
* @memberof AcceptTermsRequestBody
|
|
80
80
|
*/
|
|
81
81
|
'termsId'?: string;
|
|
82
|
+
/**
|
|
83
|
+
* Numéro de version des CGU à accepter (optionnel, ignoré si termsId est fourni)
|
|
84
|
+
* @type {string}
|
|
85
|
+
* @memberof AcceptTermsRequestBody
|
|
86
|
+
*/
|
|
87
|
+
'version'?: string;
|
|
82
88
|
}
|
|
83
89
|
/**
|
|
84
90
|
* Réponse pour l\'acceptation des CGU
|
|
@@ -2900,6 +2906,12 @@ export interface ClubDashboardTask {
|
|
|
2900
2906
|
* @memberof ClubDashboardTask
|
|
2901
2907
|
*/
|
|
2902
2908
|
'content'?: string;
|
|
2909
|
+
/**
|
|
2910
|
+
* Version cible (utile pour la tache CGU)
|
|
2911
|
+
* @type {string}
|
|
2912
|
+
* @memberof ClubDashboardTask
|
|
2913
|
+
*/
|
|
2914
|
+
'version'?: string;
|
|
2903
2915
|
/**
|
|
2904
2916
|
*
|
|
2905
2917
|
* @type {ClubDashboardTaskStatus}
|
|
@@ -5619,13 +5631,13 @@ export interface CreateEventRequest {
|
|
|
5619
5631
|
* @type {boolean}
|
|
5620
5632
|
* @memberof CreateEventRequest
|
|
5621
5633
|
*/
|
|
5622
|
-
'isAllDay'
|
|
5634
|
+
'isAllDay': boolean;
|
|
5623
5635
|
/**
|
|
5624
5636
|
*
|
|
5625
5637
|
* @type {string}
|
|
5626
5638
|
* @memberof CreateEventRequest
|
|
5627
5639
|
*/
|
|
5628
|
-
'date'
|
|
5640
|
+
'date': string;
|
|
5629
5641
|
/**
|
|
5630
5642
|
*
|
|
5631
5643
|
* @type {number}
|
|
@@ -5638,18 +5650,6 @@ export interface CreateEventRequest {
|
|
|
5638
5650
|
* @memberof CreateEventRequest
|
|
5639
5651
|
*/
|
|
5640
5652
|
'endTime'?: number;
|
|
5641
|
-
/**
|
|
5642
|
-
*
|
|
5643
|
-
* @type {string}
|
|
5644
|
-
* @memberof CreateEventRequest
|
|
5645
|
-
*/
|
|
5646
|
-
'startDate'?: string;
|
|
5647
|
-
/**
|
|
5648
|
-
*
|
|
5649
|
-
* @type {string}
|
|
5650
|
-
* @memberof CreateEventRequest
|
|
5651
|
-
*/
|
|
5652
|
-
'endDate'?: string;
|
|
5653
5653
|
/**
|
|
5654
5654
|
*
|
|
5655
5655
|
* @type {Array<string>}
|
|
@@ -7357,18 +7357,6 @@ export interface EventConflictCheckRequest {
|
|
|
7357
7357
|
* @memberof EventConflictCheckRequest
|
|
7358
7358
|
*/
|
|
7359
7359
|
'clubId'?: string;
|
|
7360
|
-
/**
|
|
7361
|
-
*
|
|
7362
|
-
* @type {string}
|
|
7363
|
-
* @memberof EventConflictCheckRequest
|
|
7364
|
-
*/
|
|
7365
|
-
'startDate'?: string;
|
|
7366
|
-
/**
|
|
7367
|
-
*
|
|
7368
|
-
* @type {string}
|
|
7369
|
-
* @memberof EventConflictCheckRequest
|
|
7370
|
-
*/
|
|
7371
|
-
'endDate'?: string;
|
|
7372
7360
|
/**
|
|
7373
7361
|
*
|
|
7374
7362
|
* @type {string}
|
|
@@ -7742,18 +7730,6 @@ export interface EventResponse {
|
|
|
7742
7730
|
* @memberof EventResponse
|
|
7743
7731
|
*/
|
|
7744
7732
|
'endTime'?: number;
|
|
7745
|
-
/**
|
|
7746
|
-
*
|
|
7747
|
-
* @type {string}
|
|
7748
|
-
* @memberof EventResponse
|
|
7749
|
-
*/
|
|
7750
|
-
'startDate': string;
|
|
7751
|
-
/**
|
|
7752
|
-
*
|
|
7753
|
-
* @type {string}
|
|
7754
|
-
* @memberof EventResponse
|
|
7755
|
-
*/
|
|
7756
|
-
'endDate': string;
|
|
7757
7733
|
/**
|
|
7758
7734
|
*
|
|
7759
7735
|
* @type {Array<string>}
|
|
@@ -9820,6 +9796,12 @@ export interface JoinOpenBookingResponse {
|
|
|
9820
9796
|
* @memberof JoinOpenBookingResponse
|
|
9821
9797
|
*/
|
|
9822
9798
|
'onsitePayments'?: Array<BookingResponseOnsitePaymentsInner>;
|
|
9799
|
+
/**
|
|
9800
|
+
*
|
|
9801
|
+
* @type {string}
|
|
9802
|
+
* @memberof JoinOpenBookingResponse
|
|
9803
|
+
*/
|
|
9804
|
+
'setupNoShowPaymentUrl'?: string;
|
|
9823
9805
|
/**
|
|
9824
9806
|
*
|
|
9825
9807
|
* @type {Array<CheckInEventParticipants200ResponseInvoicesInner>}
|
|
@@ -16055,42 +16037,6 @@ export interface SumupReaderInfo {
|
|
|
16055
16037
|
* @memberof SumupReaderInfo
|
|
16056
16038
|
*/
|
|
16057
16039
|
'status'?: string;
|
|
16058
|
-
/**
|
|
16059
|
-
*
|
|
16060
|
-
* @type {boolean}
|
|
16061
|
-
* @memberof SumupReaderInfo
|
|
16062
|
-
*/
|
|
16063
|
-
'isAllowedForPayments'?: boolean;
|
|
16064
|
-
/**
|
|
16065
|
-
*
|
|
16066
|
-
* @type {boolean}
|
|
16067
|
-
* @memberof SumupReaderInfo
|
|
16068
|
-
*/
|
|
16069
|
-
'isDefaultForPayments'?: boolean;
|
|
16070
|
-
/**
|
|
16071
|
-
*
|
|
16072
|
-
* @type {boolean}
|
|
16073
|
-
* @memberof SumupReaderInfo
|
|
16074
|
-
*/
|
|
16075
|
-
'isReadyForPayments'?: boolean;
|
|
16076
|
-
/**
|
|
16077
|
-
*
|
|
16078
|
-
* @type {boolean}
|
|
16079
|
-
* @memberof SumupReaderInfo
|
|
16080
|
-
*/
|
|
16081
|
-
'isAvailableForPayments'?: boolean;
|
|
16082
|
-
/**
|
|
16083
|
-
*
|
|
16084
|
-
* @type {string}
|
|
16085
|
-
* @memberof SumupReaderInfo
|
|
16086
|
-
*/
|
|
16087
|
-
'paymentStatus'?: string;
|
|
16088
|
-
/**
|
|
16089
|
-
*
|
|
16090
|
-
* @type {string}
|
|
16091
|
-
* @memberof SumupReaderInfo
|
|
16092
|
-
*/
|
|
16093
|
-
'paymentState'?: string;
|
|
16094
16040
|
/**
|
|
16095
16041
|
*
|
|
16096
16042
|
* @type {SumupReaderInfoDevice}
|
|
@@ -16891,18 +16837,6 @@ export interface UpdateEventRequest {
|
|
|
16891
16837
|
* @memberof UpdateEventRequest
|
|
16892
16838
|
*/
|
|
16893
16839
|
'endTime'?: number;
|
|
16894
|
-
/**
|
|
16895
|
-
*
|
|
16896
|
-
* @type {string}
|
|
16897
|
-
* @memberof UpdateEventRequest
|
|
16898
|
-
*/
|
|
16899
|
-
'startDate'?: string;
|
|
16900
|
-
/**
|
|
16901
|
-
*
|
|
16902
|
-
* @type {string}
|
|
16903
|
-
* @memberof UpdateEventRequest
|
|
16904
|
-
*/
|
|
16905
|
-
'endDate'?: string;
|
|
16906
16840
|
/**
|
|
16907
16841
|
*
|
|
16908
16842
|
* @type {Array<string>}
|
|
@@ -17231,18 +17165,6 @@ export interface UpdateRecurringDefinitionRequest {
|
|
|
17231
17165
|
* @memberof UpdateRecurringDefinitionRequest
|
|
17232
17166
|
*/
|
|
17233
17167
|
'endTime'?: number;
|
|
17234
|
-
/**
|
|
17235
|
-
*
|
|
17236
|
-
* @type {string}
|
|
17237
|
-
* @memberof UpdateRecurringDefinitionRequest
|
|
17238
|
-
*/
|
|
17239
|
-
'startDate'?: string;
|
|
17240
|
-
/**
|
|
17241
|
-
*
|
|
17242
|
-
* @type {string}
|
|
17243
|
-
* @memberof UpdateRecurringDefinitionRequest
|
|
17244
|
-
*/
|
|
17245
|
-
'endDate'?: string;
|
|
17246
17168
|
/**
|
|
17247
17169
|
*
|
|
17248
17170
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -69,6 +69,12 @@ export interface AcceptTermsRequestBody {
|
|
|
69
69
|
* @memberof AcceptTermsRequestBody
|
|
70
70
|
*/
|
|
71
71
|
'termsId'?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Numéro de version des CGU à accepter (optionnel, ignoré si termsId est fourni)
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof AcceptTermsRequestBody
|
|
76
|
+
*/
|
|
77
|
+
'version'?: string;
|
|
72
78
|
}
|
|
73
79
|
/**
|
|
74
80
|
* Réponse pour l\'acceptation des CGU
|
|
@@ -2847,6 +2853,12 @@ export interface ClubDashboardTask {
|
|
|
2847
2853
|
* @memberof ClubDashboardTask
|
|
2848
2854
|
*/
|
|
2849
2855
|
'content'?: string;
|
|
2856
|
+
/**
|
|
2857
|
+
* Version cible (utile pour la tache CGU)
|
|
2858
|
+
* @type {string}
|
|
2859
|
+
* @memberof ClubDashboardTask
|
|
2860
|
+
*/
|
|
2861
|
+
'version'?: string;
|
|
2850
2862
|
/**
|
|
2851
2863
|
*
|
|
2852
2864
|
* @type {ClubDashboardTaskStatus}
|
|
@@ -5542,13 +5554,13 @@ export interface CreateEventRequest {
|
|
|
5542
5554
|
* @type {boolean}
|
|
5543
5555
|
* @memberof CreateEventRequest
|
|
5544
5556
|
*/
|
|
5545
|
-
'isAllDay'
|
|
5557
|
+
'isAllDay': boolean;
|
|
5546
5558
|
/**
|
|
5547
5559
|
*
|
|
5548
5560
|
* @type {string}
|
|
5549
5561
|
* @memberof CreateEventRequest
|
|
5550
5562
|
*/
|
|
5551
|
-
'date'
|
|
5563
|
+
'date': string;
|
|
5552
5564
|
/**
|
|
5553
5565
|
*
|
|
5554
5566
|
* @type {number}
|
|
@@ -5561,18 +5573,6 @@ export interface CreateEventRequest {
|
|
|
5561
5573
|
* @memberof CreateEventRequest
|
|
5562
5574
|
*/
|
|
5563
5575
|
'endTime'?: number;
|
|
5564
|
-
/**
|
|
5565
|
-
*
|
|
5566
|
-
* @type {string}
|
|
5567
|
-
* @memberof CreateEventRequest
|
|
5568
|
-
*/
|
|
5569
|
-
'startDate'?: string;
|
|
5570
|
-
/**
|
|
5571
|
-
*
|
|
5572
|
-
* @type {string}
|
|
5573
|
-
* @memberof CreateEventRequest
|
|
5574
|
-
*/
|
|
5575
|
-
'endDate'?: string;
|
|
5576
5576
|
/**
|
|
5577
5577
|
*
|
|
5578
5578
|
* @type {Array<string>}
|
|
@@ -7242,18 +7242,6 @@ export interface EventConflictCheckRequest {
|
|
|
7242
7242
|
* @memberof EventConflictCheckRequest
|
|
7243
7243
|
*/
|
|
7244
7244
|
'clubId'?: string;
|
|
7245
|
-
/**
|
|
7246
|
-
*
|
|
7247
|
-
* @type {string}
|
|
7248
|
-
* @memberof EventConflictCheckRequest
|
|
7249
|
-
*/
|
|
7250
|
-
'startDate'?: string;
|
|
7251
|
-
/**
|
|
7252
|
-
*
|
|
7253
|
-
* @type {string}
|
|
7254
|
-
* @memberof EventConflictCheckRequest
|
|
7255
|
-
*/
|
|
7256
|
-
'endDate'?: string;
|
|
7257
7245
|
/**
|
|
7258
7246
|
*
|
|
7259
7247
|
* @type {string}
|
|
@@ -7627,18 +7615,6 @@ export interface EventResponse {
|
|
|
7627
7615
|
* @memberof EventResponse
|
|
7628
7616
|
*/
|
|
7629
7617
|
'endTime'?: number;
|
|
7630
|
-
/**
|
|
7631
|
-
*
|
|
7632
|
-
* @type {string}
|
|
7633
|
-
* @memberof EventResponse
|
|
7634
|
-
*/
|
|
7635
|
-
'startDate': string;
|
|
7636
|
-
/**
|
|
7637
|
-
*
|
|
7638
|
-
* @type {string}
|
|
7639
|
-
* @memberof EventResponse
|
|
7640
|
-
*/
|
|
7641
|
-
'endDate': string;
|
|
7642
7618
|
/**
|
|
7643
7619
|
*
|
|
7644
7620
|
* @type {Array<string>}
|
|
@@ -9670,6 +9646,12 @@ export interface JoinOpenBookingResponse {
|
|
|
9670
9646
|
* @memberof JoinOpenBookingResponse
|
|
9671
9647
|
*/
|
|
9672
9648
|
'onsitePayments'?: Array<BookingResponseOnsitePaymentsInner>;
|
|
9649
|
+
/**
|
|
9650
|
+
*
|
|
9651
|
+
* @type {string}
|
|
9652
|
+
* @memberof JoinOpenBookingResponse
|
|
9653
|
+
*/
|
|
9654
|
+
'setupNoShowPaymentUrl'?: string;
|
|
9673
9655
|
/**
|
|
9674
9656
|
*
|
|
9675
9657
|
* @type {Array<CheckInEventParticipants200ResponseInvoicesInner>}
|
|
@@ -15802,42 +15784,6 @@ export interface SumupReaderInfo {
|
|
|
15802
15784
|
* @memberof SumupReaderInfo
|
|
15803
15785
|
*/
|
|
15804
15786
|
'status'?: string;
|
|
15805
|
-
/**
|
|
15806
|
-
*
|
|
15807
|
-
* @type {boolean}
|
|
15808
|
-
* @memberof SumupReaderInfo
|
|
15809
|
-
*/
|
|
15810
|
-
'isAllowedForPayments'?: boolean;
|
|
15811
|
-
/**
|
|
15812
|
-
*
|
|
15813
|
-
* @type {boolean}
|
|
15814
|
-
* @memberof SumupReaderInfo
|
|
15815
|
-
*/
|
|
15816
|
-
'isDefaultForPayments'?: boolean;
|
|
15817
|
-
/**
|
|
15818
|
-
*
|
|
15819
|
-
* @type {boolean}
|
|
15820
|
-
* @memberof SumupReaderInfo
|
|
15821
|
-
*/
|
|
15822
|
-
'isReadyForPayments'?: boolean;
|
|
15823
|
-
/**
|
|
15824
|
-
*
|
|
15825
|
-
* @type {boolean}
|
|
15826
|
-
* @memberof SumupReaderInfo
|
|
15827
|
-
*/
|
|
15828
|
-
'isAvailableForPayments'?: boolean;
|
|
15829
|
-
/**
|
|
15830
|
-
*
|
|
15831
|
-
* @type {string}
|
|
15832
|
-
* @memberof SumupReaderInfo
|
|
15833
|
-
*/
|
|
15834
|
-
'paymentStatus'?: string;
|
|
15835
|
-
/**
|
|
15836
|
-
*
|
|
15837
|
-
* @type {string}
|
|
15838
|
-
* @memberof SumupReaderInfo
|
|
15839
|
-
*/
|
|
15840
|
-
'paymentState'?: string;
|
|
15841
15787
|
/**
|
|
15842
15788
|
*
|
|
15843
15789
|
* @type {SumupReaderInfoDevice}
|
|
@@ -16627,18 +16573,6 @@ export interface UpdateEventRequest {
|
|
|
16627
16573
|
* @memberof UpdateEventRequest
|
|
16628
16574
|
*/
|
|
16629
16575
|
'endTime'?: number;
|
|
16630
|
-
/**
|
|
16631
|
-
*
|
|
16632
|
-
* @type {string}
|
|
16633
|
-
* @memberof UpdateEventRequest
|
|
16634
|
-
*/
|
|
16635
|
-
'startDate'?: string;
|
|
16636
|
-
/**
|
|
16637
|
-
*
|
|
16638
|
-
* @type {string}
|
|
16639
|
-
* @memberof UpdateEventRequest
|
|
16640
|
-
*/
|
|
16641
|
-
'endDate'?: string;
|
|
16642
16576
|
/**
|
|
16643
16577
|
*
|
|
16644
16578
|
* @type {Array<string>}
|
|
@@ -16961,18 +16895,6 @@ export interface UpdateRecurringDefinitionRequest {
|
|
|
16961
16895
|
* @memberof UpdateRecurringDefinitionRequest
|
|
16962
16896
|
*/
|
|
16963
16897
|
'endTime'?: number;
|
|
16964
|
-
/**
|
|
16965
|
-
*
|
|
16966
|
-
* @type {string}
|
|
16967
|
-
* @memberof UpdateRecurringDefinitionRequest
|
|
16968
|
-
*/
|
|
16969
|
-
'startDate'?: string;
|
|
16970
|
-
/**
|
|
16971
|
-
*
|
|
16972
|
-
* @type {string}
|
|
16973
|
-
* @memberof UpdateRecurringDefinitionRequest
|
|
16974
|
-
*/
|
|
16975
|
-
'endDate'?: string;
|
|
16976
16898
|
/**
|
|
16977
16899
|
*
|
|
16978
16900
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -69,6 +69,12 @@ export interface AcceptTermsRequestBody {
|
|
|
69
69
|
* @memberof AcceptTermsRequestBody
|
|
70
70
|
*/
|
|
71
71
|
'termsId'?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Numéro de version des CGU à accepter (optionnel, ignoré si termsId est fourni)
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof AcceptTermsRequestBody
|
|
76
|
+
*/
|
|
77
|
+
'version'?: string;
|
|
72
78
|
}
|
|
73
79
|
/**
|
|
74
80
|
* Réponse pour l\'acceptation des CGU
|
|
@@ -2847,6 +2853,12 @@ export interface ClubDashboardTask {
|
|
|
2847
2853
|
* @memberof ClubDashboardTask
|
|
2848
2854
|
*/
|
|
2849
2855
|
'content'?: string;
|
|
2856
|
+
/**
|
|
2857
|
+
* Version cible (utile pour la tache CGU)
|
|
2858
|
+
* @type {string}
|
|
2859
|
+
* @memberof ClubDashboardTask
|
|
2860
|
+
*/
|
|
2861
|
+
'version'?: string;
|
|
2850
2862
|
/**
|
|
2851
2863
|
*
|
|
2852
2864
|
* @type {ClubDashboardTaskStatus}
|
|
@@ -5542,13 +5554,13 @@ export interface CreateEventRequest {
|
|
|
5542
5554
|
* @type {boolean}
|
|
5543
5555
|
* @memberof CreateEventRequest
|
|
5544
5556
|
*/
|
|
5545
|
-
'isAllDay'
|
|
5557
|
+
'isAllDay': boolean;
|
|
5546
5558
|
/**
|
|
5547
5559
|
*
|
|
5548
5560
|
* @type {string}
|
|
5549
5561
|
* @memberof CreateEventRequest
|
|
5550
5562
|
*/
|
|
5551
|
-
'date'
|
|
5563
|
+
'date': string;
|
|
5552
5564
|
/**
|
|
5553
5565
|
*
|
|
5554
5566
|
* @type {number}
|
|
@@ -5561,18 +5573,6 @@ export interface CreateEventRequest {
|
|
|
5561
5573
|
* @memberof CreateEventRequest
|
|
5562
5574
|
*/
|
|
5563
5575
|
'endTime'?: number;
|
|
5564
|
-
/**
|
|
5565
|
-
*
|
|
5566
|
-
* @type {string}
|
|
5567
|
-
* @memberof CreateEventRequest
|
|
5568
|
-
*/
|
|
5569
|
-
'startDate'?: string;
|
|
5570
|
-
/**
|
|
5571
|
-
*
|
|
5572
|
-
* @type {string}
|
|
5573
|
-
* @memberof CreateEventRequest
|
|
5574
|
-
*/
|
|
5575
|
-
'endDate'?: string;
|
|
5576
5576
|
/**
|
|
5577
5577
|
*
|
|
5578
5578
|
* @type {Array<string>}
|
|
@@ -7242,18 +7242,6 @@ export interface EventConflictCheckRequest {
|
|
|
7242
7242
|
* @memberof EventConflictCheckRequest
|
|
7243
7243
|
*/
|
|
7244
7244
|
'clubId'?: string;
|
|
7245
|
-
/**
|
|
7246
|
-
*
|
|
7247
|
-
* @type {string}
|
|
7248
|
-
* @memberof EventConflictCheckRequest
|
|
7249
|
-
*/
|
|
7250
|
-
'startDate'?: string;
|
|
7251
|
-
/**
|
|
7252
|
-
*
|
|
7253
|
-
* @type {string}
|
|
7254
|
-
* @memberof EventConflictCheckRequest
|
|
7255
|
-
*/
|
|
7256
|
-
'endDate'?: string;
|
|
7257
7245
|
/**
|
|
7258
7246
|
*
|
|
7259
7247
|
* @type {string}
|
|
@@ -7627,18 +7615,6 @@ export interface EventResponse {
|
|
|
7627
7615
|
* @memberof EventResponse
|
|
7628
7616
|
*/
|
|
7629
7617
|
'endTime'?: number;
|
|
7630
|
-
/**
|
|
7631
|
-
*
|
|
7632
|
-
* @type {string}
|
|
7633
|
-
* @memberof EventResponse
|
|
7634
|
-
*/
|
|
7635
|
-
'startDate': string;
|
|
7636
|
-
/**
|
|
7637
|
-
*
|
|
7638
|
-
* @type {string}
|
|
7639
|
-
* @memberof EventResponse
|
|
7640
|
-
*/
|
|
7641
|
-
'endDate': string;
|
|
7642
7618
|
/**
|
|
7643
7619
|
*
|
|
7644
7620
|
* @type {Array<string>}
|
|
@@ -9670,6 +9646,12 @@ export interface JoinOpenBookingResponse {
|
|
|
9670
9646
|
* @memberof JoinOpenBookingResponse
|
|
9671
9647
|
*/
|
|
9672
9648
|
'onsitePayments'?: Array<BookingResponseOnsitePaymentsInner>;
|
|
9649
|
+
/**
|
|
9650
|
+
*
|
|
9651
|
+
* @type {string}
|
|
9652
|
+
* @memberof JoinOpenBookingResponse
|
|
9653
|
+
*/
|
|
9654
|
+
'setupNoShowPaymentUrl'?: string;
|
|
9673
9655
|
/**
|
|
9674
9656
|
*
|
|
9675
9657
|
* @type {Array<CheckInEventParticipants200ResponseInvoicesInner>}
|
|
@@ -15802,42 +15784,6 @@ export interface SumupReaderInfo {
|
|
|
15802
15784
|
* @memberof SumupReaderInfo
|
|
15803
15785
|
*/
|
|
15804
15786
|
'status'?: string;
|
|
15805
|
-
/**
|
|
15806
|
-
*
|
|
15807
|
-
* @type {boolean}
|
|
15808
|
-
* @memberof SumupReaderInfo
|
|
15809
|
-
*/
|
|
15810
|
-
'isAllowedForPayments'?: boolean;
|
|
15811
|
-
/**
|
|
15812
|
-
*
|
|
15813
|
-
* @type {boolean}
|
|
15814
|
-
* @memberof SumupReaderInfo
|
|
15815
|
-
*/
|
|
15816
|
-
'isDefaultForPayments'?: boolean;
|
|
15817
|
-
/**
|
|
15818
|
-
*
|
|
15819
|
-
* @type {boolean}
|
|
15820
|
-
* @memberof SumupReaderInfo
|
|
15821
|
-
*/
|
|
15822
|
-
'isReadyForPayments'?: boolean;
|
|
15823
|
-
/**
|
|
15824
|
-
*
|
|
15825
|
-
* @type {boolean}
|
|
15826
|
-
* @memberof SumupReaderInfo
|
|
15827
|
-
*/
|
|
15828
|
-
'isAvailableForPayments'?: boolean;
|
|
15829
|
-
/**
|
|
15830
|
-
*
|
|
15831
|
-
* @type {string}
|
|
15832
|
-
* @memberof SumupReaderInfo
|
|
15833
|
-
*/
|
|
15834
|
-
'paymentStatus'?: string;
|
|
15835
|
-
/**
|
|
15836
|
-
*
|
|
15837
|
-
* @type {string}
|
|
15838
|
-
* @memberof SumupReaderInfo
|
|
15839
|
-
*/
|
|
15840
|
-
'paymentState'?: string;
|
|
15841
15787
|
/**
|
|
15842
15788
|
*
|
|
15843
15789
|
* @type {SumupReaderInfoDevice}
|
|
@@ -16627,18 +16573,6 @@ export interface UpdateEventRequest {
|
|
|
16627
16573
|
* @memberof UpdateEventRequest
|
|
16628
16574
|
*/
|
|
16629
16575
|
'endTime'?: number;
|
|
16630
|
-
/**
|
|
16631
|
-
*
|
|
16632
|
-
* @type {string}
|
|
16633
|
-
* @memberof UpdateEventRequest
|
|
16634
|
-
*/
|
|
16635
|
-
'startDate'?: string;
|
|
16636
|
-
/**
|
|
16637
|
-
*
|
|
16638
|
-
* @type {string}
|
|
16639
|
-
* @memberof UpdateEventRequest
|
|
16640
|
-
*/
|
|
16641
|
-
'endDate'?: string;
|
|
16642
16576
|
/**
|
|
16643
16577
|
*
|
|
16644
16578
|
* @type {Array<string>}
|
|
@@ -16961,18 +16895,6 @@ export interface UpdateRecurringDefinitionRequest {
|
|
|
16961
16895
|
* @memberof UpdateRecurringDefinitionRequest
|
|
16962
16896
|
*/
|
|
16963
16897
|
'endTime'?: number;
|
|
16964
|
-
/**
|
|
16965
|
-
*
|
|
16966
|
-
* @type {string}
|
|
16967
|
-
* @memberof UpdateRecurringDefinitionRequest
|
|
16968
|
-
*/
|
|
16969
|
-
'startDate'?: string;
|
|
16970
|
-
/**
|
|
16971
|
-
*
|
|
16972
|
-
* @type {string}
|
|
16973
|
-
* @memberof UpdateRecurringDefinitionRequest
|
|
16974
|
-
*/
|
|
16975
|
-
'endDate'?: string;
|
|
16976
16898
|
/**
|
|
16977
16899
|
*
|
|
16978
16900
|
* @type {string}
|
|
@@ -7,6 +7,7 @@ Requête pour accepter les CGU
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
9
|
**termsId** | **string** | ID de la version des CGU à accepter (optionnel, utilise la version actuelle si non fourni) | [optional] [default to undefined]
|
|
10
|
+
**version** | **string** | Numéro de version des CGU à accepter (optionnel, ignoré si termsId est fourni) | [optional] [default to undefined]
|
|
10
11
|
|
|
11
12
|
## Example
|
|
12
13
|
|
|
@@ -15,6 +16,7 @@ import { AcceptTermsRequestBody } from '@tennac-booking/sdk';
|
|
|
15
16
|
|
|
16
17
|
const instance: AcceptTermsRequestBody = {
|
|
17
18
|
termsId,
|
|
19
|
+
version,
|
|
18
20
|
};
|
|
19
21
|
```
|
|
20
22
|
|
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**url** | **string** | URL vers la page à ouvrir | [default to undefined]
|
|
12
12
|
**description** | **string** | Description courte (optionnelle) | [optional] [default to undefined]
|
|
13
13
|
**content** | **string** | Contenu markdown associe a la tache (ex: texte des CGU) | [optional] [default to undefined]
|
|
14
|
+
**version** | **string** | Version cible (utile pour la tache CGU) | [optional] [default to undefined]
|
|
14
15
|
**status** | [**ClubDashboardTaskStatus**](ClubDashboardTaskStatus.md) | | [default to undefined]
|
|
15
16
|
|
|
16
17
|
## Example
|
|
@@ -25,6 +26,7 @@ const instance: ClubDashboardTask = {
|
|
|
25
26
|
url,
|
|
26
27
|
description,
|
|
27
28
|
content,
|
|
29
|
+
version,
|
|
28
30
|
status,
|
|
29
31
|
};
|
|
30
32
|
```
|
|
@@ -10,12 +10,10 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**category** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**description** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**photoUrl** | **string** | | [optional] [default to undefined]
|
|
13
|
-
**isAllDay** | **boolean** | | [
|
|
14
|
-
**date** | **string** | | [
|
|
13
|
+
**isAllDay** | **boolean** | | [default to undefined]
|
|
14
|
+
**date** | **string** | | [default to undefined]
|
|
15
15
|
**startTime** | **number** | | [optional] [default to undefined]
|
|
16
16
|
**endTime** | **number** | | [optional] [default to undefined]
|
|
17
|
-
**startDate** | **string** | | [optional] [default to undefined]
|
|
18
|
-
**endDate** | **string** | | [optional] [default to undefined]
|
|
19
17
|
**courts** | **Array<string>** | | [default to undefined]
|
|
20
18
|
**sports** | **Array<string>** | | [default to undefined]
|
|
21
19
|
**recurringType** | **string** | | [optional] [default to undefined]
|
|
@@ -51,8 +49,6 @@ const instance: CreateEventRequest = {
|
|
|
51
49
|
date,
|
|
52
50
|
startTime,
|
|
53
51
|
endTime,
|
|
54
|
-
startDate,
|
|
55
|
-
endDate,
|
|
56
52
|
courts,
|
|
57
53
|
sports,
|
|
58
54
|
recurringType,
|
|
@@ -7,8 +7,6 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**eventId** | **string** | | [optional] [default to undefined]
|
|
9
9
|
**clubId** | **string** | | [optional] [default to undefined]
|
|
10
|
-
**startDate** | **string** | | [optional] [default to undefined]
|
|
11
|
-
**endDate** | **string** | | [optional] [default to undefined]
|
|
12
10
|
**date** | **string** | | [optional] [default to undefined]
|
|
13
11
|
**isAllDay** | **boolean** | | [optional] [default to undefined]
|
|
14
12
|
**startTime** | **number** | | [optional] [default to undefined]
|
|
@@ -23,8 +21,6 @@ import { EventConflictCheckRequest } from '@tennac-booking/sdk';
|
|
|
23
21
|
const instance: EventConflictCheckRequest = {
|
|
24
22
|
eventId,
|
|
25
23
|
clubId,
|
|
26
|
-
startDate,
|
|
27
|
-
endDate,
|
|
28
24
|
date,
|
|
29
25
|
isAllDay,
|
|
30
26
|
startTime,
|
package/docs/EventResponse.md
CHANGED
|
@@ -19,8 +19,6 @@ Name | Type | Description | Notes
|
|
|
19
19
|
**date** | **string** | | [default to undefined]
|
|
20
20
|
**startTime** | **number** | | [optional] [default to undefined]
|
|
21
21
|
**endTime** | **number** | | [optional] [default to undefined]
|
|
22
|
-
**startDate** | **string** | | [default to undefined]
|
|
23
|
-
**endDate** | **string** | | [default to undefined]
|
|
24
22
|
**courts** | **Array<string>** | | [default to undefined]
|
|
25
23
|
**sports** | [**Array<SportWithLevels>**](SportWithLevels.md) | | [default to undefined]
|
|
26
24
|
**recurringType** | **string** | | [default to undefined]
|
|
@@ -66,8 +64,6 @@ const instance: EventResponse = {
|
|
|
66
64
|
date,
|
|
67
65
|
startTime,
|
|
68
66
|
endTime,
|
|
69
|
-
startDate,
|
|
70
|
-
endDate,
|
|
71
67
|
courts,
|
|
72
68
|
sports,
|
|
73
69
|
recurringType,
|
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**invoiceUrl** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**paymentLinks** | **{ [key: string]: string; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
11
11
|
**onsitePayments** | [**Array<BookingResponseOnsitePaymentsInner>**](BookingResponseOnsitePaymentsInner.md) | | [optional] [default to undefined]
|
|
12
|
+
**setupNoShowPaymentUrl** | **string** | | [optional] [default to undefined]
|
|
12
13
|
**invoices** | [**Array<CheckInEventParticipants200ResponseInvoicesInner>**](CheckInEventParticipants200ResponseInvoicesInner.md) | | [optional] [default to undefined]
|
|
13
14
|
|
|
14
15
|
## Example
|
|
@@ -21,6 +22,7 @@ const instance: JoinOpenBookingResponse = {
|
|
|
21
22
|
invoiceUrl,
|
|
22
23
|
paymentLinks,
|
|
23
24
|
onsitePayments,
|
|
25
|
+
setupNoShowPaymentUrl,
|
|
24
26
|
invoices,
|
|
25
27
|
};
|
|
26
28
|
```
|
package/docs/SumupReaderInfo.md
CHANGED
|
@@ -10,12 +10,6 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**serial_number** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**name** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**status** | **string** | | [optional] [default to undefined]
|
|
13
|
-
**isAllowedForPayments** | **boolean** | | [optional] [default to undefined]
|
|
14
|
-
**isDefaultForPayments** | **boolean** | | [optional] [default to undefined]
|
|
15
|
-
**isReadyForPayments** | **boolean** | | [optional] [default to undefined]
|
|
16
|
-
**isAvailableForPayments** | **boolean** | | [optional] [default to undefined]
|
|
17
|
-
**paymentStatus** | **string** | | [optional] [default to undefined]
|
|
18
|
-
**paymentState** | **string** | | [optional] [default to undefined]
|
|
19
13
|
**device** | [**SumupReaderInfoDevice**](SumupReaderInfoDevice.md) | | [optional] [default to undefined]
|
|
20
14
|
**metadata** | **{ [key: string]: any; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
21
15
|
**created_at** | **string** | | [optional] [default to undefined]
|
|
@@ -35,12 +29,6 @@ const instance: SumupReaderInfo = {
|
|
|
35
29
|
serial_number,
|
|
36
30
|
name,
|
|
37
31
|
status,
|
|
38
|
-
isAllowedForPayments,
|
|
39
|
-
isDefaultForPayments,
|
|
40
|
-
isReadyForPayments,
|
|
41
|
-
isAvailableForPayments,
|
|
42
|
-
paymentStatus,
|
|
43
|
-
paymentState,
|
|
44
32
|
device,
|
|
45
33
|
metadata,
|
|
46
34
|
created_at,
|
|
@@ -14,8 +14,6 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**date** | **string** | | [optional] [default to undefined]
|
|
15
15
|
**startTime** | **number** | | [optional] [default to undefined]
|
|
16
16
|
**endTime** | **number** | | [optional] [default to undefined]
|
|
17
|
-
**startDate** | **string** | | [optional] [default to undefined]
|
|
18
|
-
**endDate** | **string** | | [optional] [default to undefined]
|
|
19
17
|
**courts** | **Array<string>** | | [optional] [default to undefined]
|
|
20
18
|
**sports** | **Array<string>** | | [optional] [default to undefined]
|
|
21
19
|
**recurringType** | **string** | | [optional] [default to undefined]
|
|
@@ -50,8 +48,6 @@ const instance: UpdateEventRequest = {
|
|
|
50
48
|
date,
|
|
51
49
|
startTime,
|
|
52
50
|
endTime,
|
|
53
|
-
startDate,
|
|
54
|
-
endDate,
|
|
55
51
|
courts,
|
|
56
52
|
sports,
|
|
57
53
|
recurringType,
|
|
@@ -25,8 +25,6 @@ Name | Type | Description | Notes
|
|
|
25
25
|
**date** | **string** | | [optional] [default to undefined]
|
|
26
26
|
**startTime** | **number** | | [optional] [default to undefined]
|
|
27
27
|
**endTime** | **number** | | [optional] [default to undefined]
|
|
28
|
-
**startDate** | **string** | | [optional] [default to undefined]
|
|
29
|
-
**endDate** | **string** | | [optional] [default to undefined]
|
|
30
28
|
**baseStartDate** | **string** | | [optional] [default to undefined]
|
|
31
29
|
**baseEndDate** | **string** | | [optional] [default to undefined]
|
|
32
30
|
**recurringType** | **string** | | [optional] [default to undefined]
|
|
@@ -60,8 +58,6 @@ const instance: UpdateRecurringDefinitionRequest = {
|
|
|
60
58
|
date,
|
|
61
59
|
startTime,
|
|
62
60
|
endTime,
|
|
63
|
-
startDate,
|
|
64
|
-
endDate,
|
|
65
61
|
baseStartDate,
|
|
66
62
|
baseEndDate,
|
|
67
63
|
recurringType,
|