@tennac-booking/sdk 1.0.286 → 1.0.287
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 +98 -2
- package/dist/api.d.ts +98 -2
- package/dist/esm/api.d.ts +98 -2
- package/docs/CreateEventRequest.md +6 -2
- package/docs/EventConflictCheckRequest.md +4 -0
- package/docs/EventResponse.md +4 -0
- package/docs/SumupReaderInfo.md +12 -0
- package/docs/UpdateEventRequest.md +4 -0
- package/docs/UpdateRecurringDefinitionRequest.md +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -5619,13 +5619,13 @@ export interface CreateEventRequest {
|
|
|
5619
5619
|
* @type {boolean}
|
|
5620
5620
|
* @memberof CreateEventRequest
|
|
5621
5621
|
*/
|
|
5622
|
-
'isAllDay'
|
|
5622
|
+
'isAllDay'?: boolean;
|
|
5623
5623
|
/**
|
|
5624
5624
|
*
|
|
5625
5625
|
* @type {string}
|
|
5626
5626
|
* @memberof CreateEventRequest
|
|
5627
5627
|
*/
|
|
5628
|
-
'date'
|
|
5628
|
+
'date'?: string;
|
|
5629
5629
|
/**
|
|
5630
5630
|
*
|
|
5631
5631
|
* @type {number}
|
|
@@ -5638,6 +5638,18 @@ export interface CreateEventRequest {
|
|
|
5638
5638
|
* @memberof CreateEventRequest
|
|
5639
5639
|
*/
|
|
5640
5640
|
'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;
|
|
5641
5653
|
/**
|
|
5642
5654
|
*
|
|
5643
5655
|
* @type {Array<string>}
|
|
@@ -7345,6 +7357,18 @@ export interface EventConflictCheckRequest {
|
|
|
7345
7357
|
* @memberof EventConflictCheckRequest
|
|
7346
7358
|
*/
|
|
7347
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;
|
|
7348
7372
|
/**
|
|
7349
7373
|
*
|
|
7350
7374
|
* @type {string}
|
|
@@ -7718,6 +7742,18 @@ export interface EventResponse {
|
|
|
7718
7742
|
* @memberof EventResponse
|
|
7719
7743
|
*/
|
|
7720
7744
|
'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;
|
|
7721
7757
|
/**
|
|
7722
7758
|
*
|
|
7723
7759
|
* @type {Array<string>}
|
|
@@ -16019,6 +16055,42 @@ export interface SumupReaderInfo {
|
|
|
16019
16055
|
* @memberof SumupReaderInfo
|
|
16020
16056
|
*/
|
|
16021
16057
|
'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;
|
|
16022
16094
|
/**
|
|
16023
16095
|
*
|
|
16024
16096
|
* @type {SumupReaderInfoDevice}
|
|
@@ -16819,6 +16891,18 @@ export interface UpdateEventRequest {
|
|
|
16819
16891
|
* @memberof UpdateEventRequest
|
|
16820
16892
|
*/
|
|
16821
16893
|
'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;
|
|
16822
16906
|
/**
|
|
16823
16907
|
*
|
|
16824
16908
|
* @type {Array<string>}
|
|
@@ -17147,6 +17231,18 @@ export interface UpdateRecurringDefinitionRequest {
|
|
|
17147
17231
|
* @memberof UpdateRecurringDefinitionRequest
|
|
17148
17232
|
*/
|
|
17149
17233
|
'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;
|
|
17150
17246
|
/**
|
|
17151
17247
|
*
|
|
17152
17248
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -5542,13 +5542,13 @@ export interface CreateEventRequest {
|
|
|
5542
5542
|
* @type {boolean}
|
|
5543
5543
|
* @memberof CreateEventRequest
|
|
5544
5544
|
*/
|
|
5545
|
-
'isAllDay'
|
|
5545
|
+
'isAllDay'?: boolean;
|
|
5546
5546
|
/**
|
|
5547
5547
|
*
|
|
5548
5548
|
* @type {string}
|
|
5549
5549
|
* @memberof CreateEventRequest
|
|
5550
5550
|
*/
|
|
5551
|
-
'date'
|
|
5551
|
+
'date'?: string;
|
|
5552
5552
|
/**
|
|
5553
5553
|
*
|
|
5554
5554
|
* @type {number}
|
|
@@ -5561,6 +5561,18 @@ export interface CreateEventRequest {
|
|
|
5561
5561
|
* @memberof CreateEventRequest
|
|
5562
5562
|
*/
|
|
5563
5563
|
'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;
|
|
5564
5576
|
/**
|
|
5565
5577
|
*
|
|
5566
5578
|
* @type {Array<string>}
|
|
@@ -7230,6 +7242,18 @@ export interface EventConflictCheckRequest {
|
|
|
7230
7242
|
* @memberof EventConflictCheckRequest
|
|
7231
7243
|
*/
|
|
7232
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;
|
|
7233
7257
|
/**
|
|
7234
7258
|
*
|
|
7235
7259
|
* @type {string}
|
|
@@ -7603,6 +7627,18 @@ export interface EventResponse {
|
|
|
7603
7627
|
* @memberof EventResponse
|
|
7604
7628
|
*/
|
|
7605
7629
|
'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;
|
|
7606
7642
|
/**
|
|
7607
7643
|
*
|
|
7608
7644
|
* @type {Array<string>}
|
|
@@ -15766,6 +15802,42 @@ export interface SumupReaderInfo {
|
|
|
15766
15802
|
* @memberof SumupReaderInfo
|
|
15767
15803
|
*/
|
|
15768
15804
|
'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;
|
|
15769
15841
|
/**
|
|
15770
15842
|
*
|
|
15771
15843
|
* @type {SumupReaderInfoDevice}
|
|
@@ -16555,6 +16627,18 @@ export interface UpdateEventRequest {
|
|
|
16555
16627
|
* @memberof UpdateEventRequest
|
|
16556
16628
|
*/
|
|
16557
16629
|
'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;
|
|
16558
16642
|
/**
|
|
16559
16643
|
*
|
|
16560
16644
|
* @type {Array<string>}
|
|
@@ -16877,6 +16961,18 @@ export interface UpdateRecurringDefinitionRequest {
|
|
|
16877
16961
|
* @memberof UpdateRecurringDefinitionRequest
|
|
16878
16962
|
*/
|
|
16879
16963
|
'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;
|
|
16880
16976
|
/**
|
|
16881
16977
|
*
|
|
16882
16978
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -5542,13 +5542,13 @@ export interface CreateEventRequest {
|
|
|
5542
5542
|
* @type {boolean}
|
|
5543
5543
|
* @memberof CreateEventRequest
|
|
5544
5544
|
*/
|
|
5545
|
-
'isAllDay'
|
|
5545
|
+
'isAllDay'?: boolean;
|
|
5546
5546
|
/**
|
|
5547
5547
|
*
|
|
5548
5548
|
* @type {string}
|
|
5549
5549
|
* @memberof CreateEventRequest
|
|
5550
5550
|
*/
|
|
5551
|
-
'date'
|
|
5551
|
+
'date'?: string;
|
|
5552
5552
|
/**
|
|
5553
5553
|
*
|
|
5554
5554
|
* @type {number}
|
|
@@ -5561,6 +5561,18 @@ export interface CreateEventRequest {
|
|
|
5561
5561
|
* @memberof CreateEventRequest
|
|
5562
5562
|
*/
|
|
5563
5563
|
'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;
|
|
5564
5576
|
/**
|
|
5565
5577
|
*
|
|
5566
5578
|
* @type {Array<string>}
|
|
@@ -7230,6 +7242,18 @@ export interface EventConflictCheckRequest {
|
|
|
7230
7242
|
* @memberof EventConflictCheckRequest
|
|
7231
7243
|
*/
|
|
7232
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;
|
|
7233
7257
|
/**
|
|
7234
7258
|
*
|
|
7235
7259
|
* @type {string}
|
|
@@ -7603,6 +7627,18 @@ export interface EventResponse {
|
|
|
7603
7627
|
* @memberof EventResponse
|
|
7604
7628
|
*/
|
|
7605
7629
|
'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;
|
|
7606
7642
|
/**
|
|
7607
7643
|
*
|
|
7608
7644
|
* @type {Array<string>}
|
|
@@ -15766,6 +15802,42 @@ export interface SumupReaderInfo {
|
|
|
15766
15802
|
* @memberof SumupReaderInfo
|
|
15767
15803
|
*/
|
|
15768
15804
|
'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;
|
|
15769
15841
|
/**
|
|
15770
15842
|
*
|
|
15771
15843
|
* @type {SumupReaderInfoDevice}
|
|
@@ -16555,6 +16627,18 @@ export interface UpdateEventRequest {
|
|
|
16555
16627
|
* @memberof UpdateEventRequest
|
|
16556
16628
|
*/
|
|
16557
16629
|
'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;
|
|
16558
16642
|
/**
|
|
16559
16643
|
*
|
|
16560
16644
|
* @type {Array<string>}
|
|
@@ -16877,6 +16961,18 @@ export interface UpdateRecurringDefinitionRequest {
|
|
|
16877
16961
|
* @memberof UpdateRecurringDefinitionRequest
|
|
16878
16962
|
*/
|
|
16879
16963
|
'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;
|
|
16880
16976
|
/**
|
|
16881
16977
|
*
|
|
16882
16978
|
* @type {string}
|
|
@@ -10,10 +10,12 @@ 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** | | [default to undefined]
|
|
14
|
-
**date** | **string** | | [default to undefined]
|
|
13
|
+
**isAllDay** | **boolean** | | [optional] [default to undefined]
|
|
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]
|
|
17
19
|
**courts** | **Array<string>** | | [default to undefined]
|
|
18
20
|
**sports** | **Array<string>** | | [default to undefined]
|
|
19
21
|
**recurringType** | **string** | | [optional] [default to undefined]
|
|
@@ -49,6 +51,8 @@ const instance: CreateEventRequest = {
|
|
|
49
51
|
date,
|
|
50
52
|
startTime,
|
|
51
53
|
endTime,
|
|
54
|
+
startDate,
|
|
55
|
+
endDate,
|
|
52
56
|
courts,
|
|
53
57
|
sports,
|
|
54
58
|
recurringType,
|
|
@@ -7,6 +7,8 @@ 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]
|
|
10
12
|
**date** | **string** | | [optional] [default to undefined]
|
|
11
13
|
**isAllDay** | **boolean** | | [optional] [default to undefined]
|
|
12
14
|
**startTime** | **number** | | [optional] [default to undefined]
|
|
@@ -21,6 +23,8 @@ import { EventConflictCheckRequest } from '@tennac-booking/sdk';
|
|
|
21
23
|
const instance: EventConflictCheckRequest = {
|
|
22
24
|
eventId,
|
|
23
25
|
clubId,
|
|
26
|
+
startDate,
|
|
27
|
+
endDate,
|
|
24
28
|
date,
|
|
25
29
|
isAllDay,
|
|
26
30
|
startTime,
|
package/docs/EventResponse.md
CHANGED
|
@@ -19,6 +19,8 @@ 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]
|
|
22
24
|
**courts** | **Array<string>** | | [default to undefined]
|
|
23
25
|
**sports** | [**Array<SportWithLevels>**](SportWithLevels.md) | | [default to undefined]
|
|
24
26
|
**recurringType** | **string** | | [default to undefined]
|
|
@@ -64,6 +66,8 @@ const instance: EventResponse = {
|
|
|
64
66
|
date,
|
|
65
67
|
startTime,
|
|
66
68
|
endTime,
|
|
69
|
+
startDate,
|
|
70
|
+
endDate,
|
|
67
71
|
courts,
|
|
68
72
|
sports,
|
|
69
73
|
recurringType,
|
package/docs/SumupReaderInfo.md
CHANGED
|
@@ -10,6 +10,12 @@ 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]
|
|
13
19
|
**device** | [**SumupReaderInfoDevice**](SumupReaderInfoDevice.md) | | [optional] [default to undefined]
|
|
14
20
|
**metadata** | **{ [key: string]: any; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
15
21
|
**created_at** | **string** | | [optional] [default to undefined]
|
|
@@ -29,6 +35,12 @@ const instance: SumupReaderInfo = {
|
|
|
29
35
|
serial_number,
|
|
30
36
|
name,
|
|
31
37
|
status,
|
|
38
|
+
isAllowedForPayments,
|
|
39
|
+
isDefaultForPayments,
|
|
40
|
+
isReadyForPayments,
|
|
41
|
+
isAvailableForPayments,
|
|
42
|
+
paymentStatus,
|
|
43
|
+
paymentState,
|
|
32
44
|
device,
|
|
33
45
|
metadata,
|
|
34
46
|
created_at,
|
|
@@ -14,6 +14,8 @@ 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]
|
|
17
19
|
**courts** | **Array<string>** | | [optional] [default to undefined]
|
|
18
20
|
**sports** | **Array<string>** | | [optional] [default to undefined]
|
|
19
21
|
**recurringType** | **string** | | [optional] [default to undefined]
|
|
@@ -48,6 +50,8 @@ const instance: UpdateEventRequest = {
|
|
|
48
50
|
date,
|
|
49
51
|
startTime,
|
|
50
52
|
endTime,
|
|
53
|
+
startDate,
|
|
54
|
+
endDate,
|
|
51
55
|
courts,
|
|
52
56
|
sports,
|
|
53
57
|
recurringType,
|
|
@@ -25,6 +25,8 @@ 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]
|
|
28
30
|
**baseStartDate** | **string** | | [optional] [default to undefined]
|
|
29
31
|
**baseEndDate** | **string** | | [optional] [default to undefined]
|
|
30
32
|
**recurringType** | **string** | | [optional] [default to undefined]
|
|
@@ -58,6 +60,8 @@ const instance: UpdateRecurringDefinitionRequest = {
|
|
|
58
60
|
date,
|
|
59
61
|
startTime,
|
|
60
62
|
endTime,
|
|
63
|
+
startDate,
|
|
64
|
+
endDate,
|
|
61
65
|
baseStartDate,
|
|
62
66
|
baseEndDate,
|
|
63
67
|
recurringType,
|