@tennac-booking/sdk 1.0.301 → 1.0.303
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/.openapi-generator/FILES +9 -3
- package/README.md +10 -2
- package/api.ts +596 -35
- package/dist/api.d.ts +500 -40
- package/dist/api.js +170 -2
- package/dist/esm/api.d.ts +500 -40
- package/dist/esm/api.js +164 -0
- package/docs/BookingGuestCheckinResponse.md +26 -0
- package/docs/BookingPopulated.md +4 -0
- package/docs/BookingSummary.md +4 -0
- package/docs/BookingsStaffApi.md +52 -0
- package/docs/ErrorResponse.md +28 -0
- package/docs/EstimateEventPlayerPrice.md +24 -0
- package/docs/EstimateEventPriceRequest.md +12 -6
- package/docs/{EstimateEventPrice200Response.md → EstimateEventPriceResponse.md} +23 -13
- package/docs/{EstimateEventPriceRequestSharesInner.md → EstimateEventPriceShare.md} +5 -5
- package/docs/EventBookingDetailResponseBooking.md +4 -0
- package/docs/EventBookingGuestCheckinResponse.md +26 -0
- package/docs/EventBookingsStaffApi.md +62 -0
- package/docs/EventsApi.md +2 -2
- package/docs/JoinEventRequest.md +2 -0
- package/docs/PaymentCoverageResult.md +40 -0
- package/docs/PaymentDistributionResult.md +32 -0
- package/docs/StaffEventBookingResponse.md +4 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -536,6 +536,37 @@ export interface BookingCourtInfo {
|
|
|
536
536
|
*/
|
|
537
537
|
'name'?: string | null;
|
|
538
538
|
}
|
|
539
|
+
/**
|
|
540
|
+
*
|
|
541
|
+
* @export
|
|
542
|
+
* @interface BookingGuestCheckinResponse
|
|
543
|
+
*/
|
|
544
|
+
export interface BookingGuestCheckinResponse {
|
|
545
|
+
/**
|
|
546
|
+
*
|
|
547
|
+
* @type {string}
|
|
548
|
+
* @memberof BookingGuestCheckinResponse
|
|
549
|
+
*/
|
|
550
|
+
'message': string;
|
|
551
|
+
/**
|
|
552
|
+
*
|
|
553
|
+
* @type {string}
|
|
554
|
+
* @memberof BookingGuestCheckinResponse
|
|
555
|
+
*/
|
|
556
|
+
'bookingId': string;
|
|
557
|
+
/**
|
|
558
|
+
*
|
|
559
|
+
* @type {BookingStatus}
|
|
560
|
+
* @memberof BookingGuestCheckinResponse
|
|
561
|
+
*/
|
|
562
|
+
'status': BookingStatus;
|
|
563
|
+
/**
|
|
564
|
+
*
|
|
565
|
+
* @type {PaymentCoverageResult}
|
|
566
|
+
* @memberof BookingGuestCheckinResponse
|
|
567
|
+
*/
|
|
568
|
+
'financials': PaymentCoverageResult;
|
|
569
|
+
}
|
|
539
570
|
/**
|
|
540
571
|
*
|
|
541
572
|
* @export
|
|
@@ -1096,12 +1127,24 @@ export interface BookingPopulated {
|
|
|
1096
1127
|
* @memberof BookingPopulated
|
|
1097
1128
|
*/
|
|
1098
1129
|
'playersCount': number;
|
|
1130
|
+
/**
|
|
1131
|
+
*
|
|
1132
|
+
* @type {number}
|
|
1133
|
+
* @memberof BookingPopulated
|
|
1134
|
+
*/
|
|
1135
|
+
'guestPaymentsCount'?: number;
|
|
1099
1136
|
/**
|
|
1100
1137
|
*
|
|
1101
1138
|
* @type {number}
|
|
1102
1139
|
* @memberof BookingPopulated
|
|
1103
1140
|
*/
|
|
1104
1141
|
'maxPlayersDesired'?: number;
|
|
1142
|
+
/**
|
|
1143
|
+
*
|
|
1144
|
+
* @type {PaymentDistributionResult}
|
|
1145
|
+
* @memberof BookingPopulated
|
|
1146
|
+
*/
|
|
1147
|
+
'paymentDistribution'?: PaymentDistributionResult;
|
|
1105
1148
|
}
|
|
1106
1149
|
/**
|
|
1107
1150
|
*
|
|
@@ -1498,6 +1541,12 @@ export interface BookingSummary {
|
|
|
1498
1541
|
* @memberof BookingSummary
|
|
1499
1542
|
*/
|
|
1500
1543
|
'playersCount'?: number | null;
|
|
1544
|
+
/**
|
|
1545
|
+
*
|
|
1546
|
+
* @type {number}
|
|
1547
|
+
* @memberof BookingSummary
|
|
1548
|
+
*/
|
|
1549
|
+
'guestPaymentsCount'?: number | null;
|
|
1501
1550
|
/**
|
|
1502
1551
|
*
|
|
1503
1552
|
* @type {string}
|
|
@@ -1570,6 +1619,12 @@ export interface BookingSummary {
|
|
|
1570
1619
|
* @memberof BookingSummary
|
|
1571
1620
|
*/
|
|
1572
1621
|
'totalAmount': number;
|
|
1622
|
+
/**
|
|
1623
|
+
*
|
|
1624
|
+
* @type {PaymentDistributionResult}
|
|
1625
|
+
* @memberof BookingSummary
|
|
1626
|
+
*/
|
|
1627
|
+
'paymentDistribution'?: PaymentDistributionResult;
|
|
1573
1628
|
/**
|
|
1574
1629
|
*
|
|
1575
1630
|
* @type {string}
|
|
@@ -6482,49 +6537,64 @@ export interface EmailExistsResponse {
|
|
|
6482
6537
|
/**
|
|
6483
6538
|
*
|
|
6484
6539
|
* @export
|
|
6485
|
-
* @interface
|
|
6540
|
+
* @interface ErrorResponse
|
|
6486
6541
|
*/
|
|
6487
|
-
export interface
|
|
6542
|
+
export interface ErrorResponse {
|
|
6488
6543
|
/**
|
|
6489
|
-
*
|
|
6490
|
-
* @type {
|
|
6491
|
-
* @memberof
|
|
6544
|
+
*
|
|
6545
|
+
* @type {string}
|
|
6546
|
+
* @memberof ErrorResponse
|
|
6492
6547
|
*/
|
|
6493
|
-
'
|
|
6494
|
-
[key: string]: number;
|
|
6495
|
-
};
|
|
6548
|
+
'name': string;
|
|
6496
6549
|
/**
|
|
6497
6550
|
*
|
|
6498
|
-
* @type {
|
|
6499
|
-
* @memberof
|
|
6551
|
+
* @type {string}
|
|
6552
|
+
* @memberof ErrorResponse
|
|
6500
6553
|
*/
|
|
6501
|
-
'
|
|
6554
|
+
'message': string;
|
|
6555
|
+
/**
|
|
6556
|
+
*
|
|
6557
|
+
* @type {string}
|
|
6558
|
+
* @memberof ErrorResponse
|
|
6559
|
+
*/
|
|
6560
|
+
'stack'?: string;
|
|
6502
6561
|
/**
|
|
6503
6562
|
*
|
|
6504
6563
|
* @type {number}
|
|
6505
|
-
* @memberof
|
|
6564
|
+
* @memberof ErrorResponse
|
|
6506
6565
|
*/
|
|
6507
|
-
'
|
|
6566
|
+
'statusCode': number;
|
|
6567
|
+
/**
|
|
6568
|
+
*
|
|
6569
|
+
* @type {any}
|
|
6570
|
+
* @memberof ErrorResponse
|
|
6571
|
+
*/
|
|
6572
|
+
'details'?: any;
|
|
6573
|
+
}
|
|
6574
|
+
/**
|
|
6575
|
+
*
|
|
6576
|
+
* @export
|
|
6577
|
+
* @interface EstimateEventPlayerPrice
|
|
6578
|
+
*/
|
|
6579
|
+
export interface EstimateEventPlayerPrice {
|
|
6508
6580
|
/**
|
|
6509
6581
|
*
|
|
6510
6582
|
* @type {string}
|
|
6511
|
-
* @memberof
|
|
6583
|
+
* @memberof EstimateEventPlayerPrice
|
|
6512
6584
|
*/
|
|
6513
|
-
'
|
|
6585
|
+
'playerId': string;
|
|
6514
6586
|
/**
|
|
6515
6587
|
*
|
|
6516
|
-
* @type {
|
|
6517
|
-
* @memberof
|
|
6588
|
+
* @type {string}
|
|
6589
|
+
* @memberof EstimateEventPlayerPrice
|
|
6518
6590
|
*/
|
|
6519
|
-
'
|
|
6591
|
+
'firstName'?: string;
|
|
6520
6592
|
/**
|
|
6521
|
-
*
|
|
6522
|
-
* @type {
|
|
6523
|
-
* @memberof
|
|
6593
|
+
*
|
|
6594
|
+
* @type {number}
|
|
6595
|
+
* @memberof EstimateEventPlayerPrice
|
|
6524
6596
|
*/
|
|
6525
|
-
'
|
|
6526
|
-
[key: string]: number;
|
|
6527
|
-
};
|
|
6597
|
+
'price': number;
|
|
6528
6598
|
}
|
|
6529
6599
|
/**
|
|
6530
6600
|
*
|
|
@@ -6532,49 +6602,146 @@ export interface EstimateEventPrice200Response {
|
|
|
6532
6602
|
* @interface EstimateEventPriceRequest
|
|
6533
6603
|
*/
|
|
6534
6604
|
export interface EstimateEventPriceRequest {
|
|
6605
|
+
/**
|
|
6606
|
+
*
|
|
6607
|
+
* @type {Array<string>}
|
|
6608
|
+
* @memberof EstimateEventPriceRequest
|
|
6609
|
+
*/
|
|
6610
|
+
'playerIds': Array<string>;
|
|
6611
|
+
/**
|
|
6612
|
+
*
|
|
6613
|
+
* @type {Array<EstimateEventPriceShare>}
|
|
6614
|
+
* @memberof EstimateEventPriceRequest
|
|
6615
|
+
*/
|
|
6616
|
+
'shares'?: Array<EstimateEventPriceShare>;
|
|
6617
|
+
/**
|
|
6618
|
+
*
|
|
6619
|
+
* @type {PaymentMethod}
|
|
6620
|
+
* @memberof EstimateEventPriceRequest
|
|
6621
|
+
*/
|
|
6622
|
+
'paymentMethod'?: PaymentMethod;
|
|
6535
6623
|
/**
|
|
6536
6624
|
*
|
|
6537
6625
|
* @type {number}
|
|
6538
6626
|
* @memberof EstimateEventPriceRequest
|
|
6539
6627
|
*/
|
|
6540
|
-
'
|
|
6628
|
+
'playersCount'?: number;
|
|
6541
6629
|
/**
|
|
6542
6630
|
*
|
|
6543
|
-
* @type {
|
|
6631
|
+
* @type {boolean}
|
|
6544
6632
|
* @memberof EstimateEventPriceRequest
|
|
6545
6633
|
*/
|
|
6546
|
-
'
|
|
6634
|
+
'isCreatorPayingAll'?: boolean;
|
|
6547
6635
|
/**
|
|
6548
6636
|
*
|
|
6549
|
-
* @type {
|
|
6637
|
+
* @type {string}
|
|
6550
6638
|
* @memberof EstimateEventPriceRequest
|
|
6551
6639
|
*/
|
|
6552
|
-
'
|
|
6640
|
+
'creatorId'?: string;
|
|
6553
6641
|
/**
|
|
6554
6642
|
*
|
|
6555
|
-
* @type {
|
|
6643
|
+
* @type {number}
|
|
6556
6644
|
* @memberof EstimateEventPriceRequest
|
|
6557
6645
|
*/
|
|
6558
|
-
'
|
|
6646
|
+
'creditToUseInCents'?: number;
|
|
6559
6647
|
}
|
|
6560
6648
|
/**
|
|
6561
6649
|
*
|
|
6562
6650
|
* @export
|
|
6563
|
-
* @interface
|
|
6651
|
+
* @interface EstimateEventPriceResponse
|
|
6564
6652
|
*/
|
|
6565
|
-
export interface
|
|
6653
|
+
export interface EstimateEventPriceResponse {
|
|
6654
|
+
/**
|
|
6655
|
+
* Construct a type with a set of properties K of type T
|
|
6656
|
+
* @type {{ [key: string]: number; }}
|
|
6657
|
+
* @memberof EstimateEventPriceResponse
|
|
6658
|
+
*/
|
|
6659
|
+
'perPlayer': {
|
|
6660
|
+
[key: string]: number;
|
|
6661
|
+
};
|
|
6566
6662
|
/**
|
|
6567
6663
|
*
|
|
6568
|
-
* @type {Array<
|
|
6569
|
-
* @memberof
|
|
6664
|
+
* @type {Array<EstimateEventPlayerPrice>}
|
|
6665
|
+
* @memberof EstimateEventPriceResponse
|
|
6570
6666
|
*/
|
|
6571
|
-
'
|
|
6667
|
+
'playerPrices': Array<EstimateEventPlayerPrice>;
|
|
6668
|
+
/**
|
|
6669
|
+
* Construct a type with a set of properties K of type T
|
|
6670
|
+
* @type {{ [key: string]: number; }}
|
|
6671
|
+
* @memberof EstimateEventPriceResponse
|
|
6672
|
+
*/
|
|
6673
|
+
'perPayer': {
|
|
6674
|
+
[key: string]: number;
|
|
6675
|
+
};
|
|
6676
|
+
/**
|
|
6677
|
+
*
|
|
6678
|
+
* @type {number}
|
|
6679
|
+
* @memberof EstimateEventPriceResponse
|
|
6680
|
+
*/
|
|
6681
|
+
'total': number;
|
|
6572
6682
|
/**
|
|
6573
6683
|
*
|
|
6574
6684
|
* @type {string}
|
|
6575
|
-
* @memberof
|
|
6685
|
+
* @memberof EstimateEventPriceResponse
|
|
6686
|
+
*/
|
|
6687
|
+
'currency': string;
|
|
6688
|
+
/**
|
|
6689
|
+
*
|
|
6690
|
+
* @type {PaymentMethod}
|
|
6691
|
+
* @memberof EstimateEventPriceResponse
|
|
6692
|
+
*/
|
|
6693
|
+
'paymentMethod'?: PaymentMethod;
|
|
6694
|
+
/**
|
|
6695
|
+
*
|
|
6696
|
+
* @type {number}
|
|
6697
|
+
* @memberof EstimateEventPriceResponse
|
|
6698
|
+
*/
|
|
6699
|
+
'playersCount'?: number;
|
|
6700
|
+
/**
|
|
6701
|
+
*
|
|
6702
|
+
* @type {number}
|
|
6703
|
+
* @memberof EstimateEventPriceResponse
|
|
6704
|
+
*/
|
|
6705
|
+
'missingParticipantsCount'?: number;
|
|
6706
|
+
/**
|
|
6707
|
+
*
|
|
6708
|
+
* @type {number}
|
|
6709
|
+
* @memberof EstimateEventPriceResponse
|
|
6710
|
+
*/
|
|
6711
|
+
'creditsAppliedInCents'?: number;
|
|
6712
|
+
/**
|
|
6713
|
+
*
|
|
6714
|
+
* @type {number}
|
|
6715
|
+
* @memberof EstimateEventPriceResponse
|
|
6716
|
+
*/
|
|
6717
|
+
'totalAfterCredits'?: number;
|
|
6718
|
+
/**
|
|
6719
|
+
* Construct a type with a set of properties K of type T
|
|
6720
|
+
* @type {{ [key: string]: number; }}
|
|
6721
|
+
* @memberof EstimateEventPriceResponse
|
|
6722
|
+
*/
|
|
6723
|
+
'perPayerAfterCredits'?: {
|
|
6724
|
+
[key: string]: number;
|
|
6725
|
+
};
|
|
6726
|
+
}
|
|
6727
|
+
/**
|
|
6728
|
+
*
|
|
6729
|
+
* @export
|
|
6730
|
+
* @interface EstimateEventPriceShare
|
|
6731
|
+
*/
|
|
6732
|
+
export interface EstimateEventPriceShare {
|
|
6733
|
+
/**
|
|
6734
|
+
*
|
|
6735
|
+
* @type {string}
|
|
6736
|
+
* @memberof EstimateEventPriceShare
|
|
6576
6737
|
*/
|
|
6577
6738
|
'playerId': string;
|
|
6739
|
+
/**
|
|
6740
|
+
*
|
|
6741
|
+
* @type {Array<string>}
|
|
6742
|
+
* @memberof EstimateEventPriceShare
|
|
6743
|
+
*/
|
|
6744
|
+
'paysAlsoFor'?: Array<string>;
|
|
6578
6745
|
}
|
|
6579
6746
|
/**
|
|
6580
6747
|
*
|
|
@@ -6882,6 +7049,18 @@ export interface EventBookingDetailResponse {
|
|
|
6882
7049
|
* @interface EventBookingDetailResponseBooking
|
|
6883
7050
|
*/
|
|
6884
7051
|
export interface EventBookingDetailResponseBooking {
|
|
7052
|
+
/**
|
|
7053
|
+
*
|
|
7054
|
+
* @type {PaymentDistributionResult}
|
|
7055
|
+
* @memberof EventBookingDetailResponseBooking
|
|
7056
|
+
*/
|
|
7057
|
+
'paymentDistribution'?: PaymentDistributionResult;
|
|
7058
|
+
/**
|
|
7059
|
+
*
|
|
7060
|
+
* @type {number}
|
|
7061
|
+
* @memberof EventBookingDetailResponseBooking
|
|
7062
|
+
*/
|
|
7063
|
+
'guestPaymentsCount'?: number;
|
|
6885
7064
|
/**
|
|
6886
7065
|
*
|
|
6887
7066
|
* @type {number}
|
|
@@ -7120,6 +7299,37 @@ export interface EventBookingDetailSummaryPaymentPerPlayersInner {
|
|
|
7120
7299
|
*/
|
|
7121
7300
|
'id': string;
|
|
7122
7301
|
}
|
|
7302
|
+
/**
|
|
7303
|
+
*
|
|
7304
|
+
* @export
|
|
7305
|
+
* @interface EventBookingGuestCheckinResponse
|
|
7306
|
+
*/
|
|
7307
|
+
export interface EventBookingGuestCheckinResponse {
|
|
7308
|
+
/**
|
|
7309
|
+
*
|
|
7310
|
+
* @type {string}
|
|
7311
|
+
* @memberof EventBookingGuestCheckinResponse
|
|
7312
|
+
*/
|
|
7313
|
+
'message': string;
|
|
7314
|
+
/**
|
|
7315
|
+
*
|
|
7316
|
+
* @type {string}
|
|
7317
|
+
* @memberof EventBookingGuestCheckinResponse
|
|
7318
|
+
*/
|
|
7319
|
+
'eventBookingId': string;
|
|
7320
|
+
/**
|
|
7321
|
+
*
|
|
7322
|
+
* @type {EventBookingStatus}
|
|
7323
|
+
* @memberof EventBookingGuestCheckinResponse
|
|
7324
|
+
*/
|
|
7325
|
+
'status': EventBookingStatus;
|
|
7326
|
+
/**
|
|
7327
|
+
*
|
|
7328
|
+
* @type {PaymentCoverageResult}
|
|
7329
|
+
* @memberof EventBookingGuestCheckinResponse
|
|
7330
|
+
*/
|
|
7331
|
+
'financials': PaymentCoverageResult;
|
|
7332
|
+
}
|
|
7123
7333
|
/**
|
|
7124
7334
|
*
|
|
7125
7335
|
* @export
|
|
@@ -9566,6 +9776,12 @@ export interface JoinEventRequest {
|
|
|
9566
9776
|
* @memberof JoinEventRequest
|
|
9567
9777
|
*/
|
|
9568
9778
|
'players'?: Array<string>;
|
|
9779
|
+
/**
|
|
9780
|
+
*
|
|
9781
|
+
* @type {number}
|
|
9782
|
+
* @memberof JoinEventRequest
|
|
9783
|
+
*/
|
|
9784
|
+
'playersCount'?: number;
|
|
9569
9785
|
/**
|
|
9570
9786
|
*
|
|
9571
9787
|
* @type {string}
|
|
@@ -12757,6 +12973,128 @@ export interface PaymentByPlayerInfo {
|
|
|
12757
12973
|
*/
|
|
12758
12974
|
'accepted': boolean;
|
|
12759
12975
|
}
|
|
12976
|
+
/**
|
|
12977
|
+
*
|
|
12978
|
+
* @export
|
|
12979
|
+
* @interface PaymentCoverageResult
|
|
12980
|
+
*/
|
|
12981
|
+
export interface PaymentCoverageResult {
|
|
12982
|
+
/**
|
|
12983
|
+
*
|
|
12984
|
+
* @type {number}
|
|
12985
|
+
* @memberof PaymentCoverageResult
|
|
12986
|
+
*/
|
|
12987
|
+
'totalAmount': number;
|
|
12988
|
+
/**
|
|
12989
|
+
*
|
|
12990
|
+
* @type {number}
|
|
12991
|
+
* @memberof PaymentCoverageResult
|
|
12992
|
+
*/
|
|
12993
|
+
'playersCount': number;
|
|
12994
|
+
/**
|
|
12995
|
+
*
|
|
12996
|
+
* @type {number}
|
|
12997
|
+
* @memberof PaymentCoverageResult
|
|
12998
|
+
*/
|
|
12999
|
+
'registeredPlayersCount': number;
|
|
13000
|
+
/**
|
|
13001
|
+
*
|
|
13002
|
+
* @type {number}
|
|
13003
|
+
* @memberof PaymentCoverageResult
|
|
13004
|
+
*/
|
|
13005
|
+
'guestsCount': number;
|
|
13006
|
+
/**
|
|
13007
|
+
*
|
|
13008
|
+
* @type {number}
|
|
13009
|
+
* @memberof PaymentCoverageResult
|
|
13010
|
+
*/
|
|
13011
|
+
'guestPaymentsCount': number;
|
|
13012
|
+
/**
|
|
13013
|
+
*
|
|
13014
|
+
* @type {number}
|
|
13015
|
+
* @memberof PaymentCoverageResult
|
|
13016
|
+
*/
|
|
13017
|
+
'share': number;
|
|
13018
|
+
/**
|
|
13019
|
+
*
|
|
13020
|
+
* @type {number}
|
|
13021
|
+
* @memberof PaymentCoverageResult
|
|
13022
|
+
*/
|
|
13023
|
+
'registeredPaidAmount': number;
|
|
13024
|
+
/**
|
|
13025
|
+
*
|
|
13026
|
+
* @type {number}
|
|
13027
|
+
* @memberof PaymentCoverageResult
|
|
13028
|
+
*/
|
|
13029
|
+
'guestPaidAmount': number;
|
|
13030
|
+
/**
|
|
13031
|
+
*
|
|
13032
|
+
* @type {number}
|
|
13033
|
+
* @memberof PaymentCoverageResult
|
|
13034
|
+
*/
|
|
13035
|
+
'totalPaid': number;
|
|
13036
|
+
/**
|
|
13037
|
+
*
|
|
13038
|
+
* @type {number}
|
|
13039
|
+
* @memberof PaymentCoverageResult
|
|
13040
|
+
*/
|
|
13041
|
+
'remainingAmount': number;
|
|
13042
|
+
/**
|
|
13043
|
+
*
|
|
13044
|
+
* @type {boolean}
|
|
13045
|
+
* @memberof PaymentCoverageResult
|
|
13046
|
+
*/
|
|
13047
|
+
'isFullyPaid': boolean;
|
|
13048
|
+
}
|
|
13049
|
+
/**
|
|
13050
|
+
*
|
|
13051
|
+
* @export
|
|
13052
|
+
* @interface PaymentDistributionResult
|
|
13053
|
+
*/
|
|
13054
|
+
export interface PaymentDistributionResult {
|
|
13055
|
+
/**
|
|
13056
|
+
*
|
|
13057
|
+
* @type {number}
|
|
13058
|
+
* @memberof PaymentDistributionResult
|
|
13059
|
+
*/
|
|
13060
|
+
'totalAmount': number;
|
|
13061
|
+
/**
|
|
13062
|
+
*
|
|
13063
|
+
* @type {number}
|
|
13064
|
+
* @memberof PaymentDistributionResult
|
|
13065
|
+
*/
|
|
13066
|
+
'paidAmount': number;
|
|
13067
|
+
/**
|
|
13068
|
+
*
|
|
13069
|
+
* @type {number}
|
|
13070
|
+
* @memberof PaymentDistributionResult
|
|
13071
|
+
*/
|
|
13072
|
+
'remainingAmount': number;
|
|
13073
|
+
/**
|
|
13074
|
+
*
|
|
13075
|
+
* @type {number}
|
|
13076
|
+
* @memberof PaymentDistributionResult
|
|
13077
|
+
*/
|
|
13078
|
+
'playersCount': number;
|
|
13079
|
+
/**
|
|
13080
|
+
*
|
|
13081
|
+
* @type {number}
|
|
13082
|
+
* @memberof PaymentDistributionResult
|
|
13083
|
+
*/
|
|
13084
|
+
'registeredPlayersCount': number;
|
|
13085
|
+
/**
|
|
13086
|
+
*
|
|
13087
|
+
* @type {number}
|
|
13088
|
+
* @memberof PaymentDistributionResult
|
|
13089
|
+
*/
|
|
13090
|
+
'guestsCount': number;
|
|
13091
|
+
/**
|
|
13092
|
+
*
|
|
13093
|
+
* @type {number}
|
|
13094
|
+
* @memberof PaymentDistributionResult
|
|
13095
|
+
*/
|
|
13096
|
+
'guestShare': number;
|
|
13097
|
+
}
|
|
12760
13098
|
/**
|
|
12761
13099
|
*
|
|
12762
13100
|
* @export
|
|
@@ -15445,6 +15783,18 @@ export interface StaffEventBookingResponse {
|
|
|
15445
15783
|
* @memberof StaffEventBookingResponse
|
|
15446
15784
|
*/
|
|
15447
15785
|
'amount'?: number;
|
|
15786
|
+
/**
|
|
15787
|
+
*
|
|
15788
|
+
* @type {number}
|
|
15789
|
+
* @memberof StaffEventBookingResponse
|
|
15790
|
+
*/
|
|
15791
|
+
'guestPaymentsCount'?: number;
|
|
15792
|
+
/**
|
|
15793
|
+
*
|
|
15794
|
+
* @type {PaymentDistributionResult}
|
|
15795
|
+
* @memberof StaffEventBookingResponse
|
|
15796
|
+
*/
|
|
15797
|
+
'paymentDistribution'?: PaymentDistributionResult;
|
|
15448
15798
|
/**
|
|
15449
15799
|
*
|
|
15450
15800
|
* @type {string}
|
|
@@ -20233,6 +20583,13 @@ export declare class BookingsManagerApi extends BaseAPI {
|
|
|
20233
20583
|
* @export
|
|
20234
20584
|
*/
|
|
20235
20585
|
export declare const BookingsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20586
|
+
/**
|
|
20587
|
+
* Check-in d\'un invité sans compte (paiement sur place)
|
|
20588
|
+
* @param {string} bookingId
|
|
20589
|
+
* @param {*} [options] Override http request option.
|
|
20590
|
+
* @throws {RequiredError}
|
|
20591
|
+
*/
|
|
20592
|
+
bookingGuestCheckin: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20236
20593
|
/**
|
|
20237
20594
|
* Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
|
|
20238
20595
|
* @param {string} bookingId
|
|
@@ -20322,6 +20679,13 @@ export declare const BookingsStaffApiAxiosParamCreator: (configuration?: Configu
|
|
|
20322
20679
|
* @export
|
|
20323
20680
|
*/
|
|
20324
20681
|
export declare const BookingsStaffApiFp: (configuration?: Configuration) => {
|
|
20682
|
+
/**
|
|
20683
|
+
* Check-in d\'un invité sans compte (paiement sur place)
|
|
20684
|
+
* @param {string} bookingId
|
|
20685
|
+
* @param {*} [options] Override http request option.
|
|
20686
|
+
* @throws {RequiredError}
|
|
20687
|
+
*/
|
|
20688
|
+
bookingGuestCheckin(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingGuestCheckinResponse>>;
|
|
20325
20689
|
/**
|
|
20326
20690
|
* Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
|
|
20327
20691
|
* @param {string} bookingId
|
|
@@ -20411,6 +20775,13 @@ export declare const BookingsStaffApiFp: (configuration?: Configuration) => {
|
|
|
20411
20775
|
* @export
|
|
20412
20776
|
*/
|
|
20413
20777
|
export declare const BookingsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20778
|
+
/**
|
|
20779
|
+
* Check-in d\'un invité sans compte (paiement sur place)
|
|
20780
|
+
* @param {BookingsStaffApiBookingGuestCheckinRequest} requestParameters Request parameters.
|
|
20781
|
+
* @param {*} [options] Override http request option.
|
|
20782
|
+
* @throws {RequiredError}
|
|
20783
|
+
*/
|
|
20784
|
+
bookingGuestCheckin(requestParameters: BookingsStaffApiBookingGuestCheckinRequest, options?: RawAxiosRequestConfig): AxiosPromise<BookingGuestCheckinResponse>;
|
|
20414
20785
|
/**
|
|
20415
20786
|
* Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
|
|
20416
20787
|
* @param {BookingsStaffApiCheckInPlayerRequest} requestParameters Request parameters.
|
|
@@ -20489,6 +20860,19 @@ export declare const BookingsStaffApiFactory: (configuration?: Configuration, ba
|
|
|
20489
20860
|
*/
|
|
20490
20861
|
listClubBookings(requestParameters?: BookingsStaffApiListClubBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<StaffBookingsPaginatedResponse>;
|
|
20491
20862
|
};
|
|
20863
|
+
/**
|
|
20864
|
+
* Request parameters for bookingGuestCheckin operation in BookingsStaffApi.
|
|
20865
|
+
* @export
|
|
20866
|
+
* @interface BookingsStaffApiBookingGuestCheckinRequest
|
|
20867
|
+
*/
|
|
20868
|
+
export interface BookingsStaffApiBookingGuestCheckinRequest {
|
|
20869
|
+
/**
|
|
20870
|
+
*
|
|
20871
|
+
* @type {string}
|
|
20872
|
+
* @memberof BookingsStaffApiBookingGuestCheckin
|
|
20873
|
+
*/
|
|
20874
|
+
readonly bookingId: string;
|
|
20875
|
+
}
|
|
20492
20876
|
/**
|
|
20493
20877
|
* Request parameters for checkInPlayer operation in BookingsStaffApi.
|
|
20494
20878
|
* @export
|
|
@@ -20675,6 +21059,14 @@ export interface BookingsStaffApiListClubBookingsRequest {
|
|
|
20675
21059
|
* @extends {BaseAPI}
|
|
20676
21060
|
*/
|
|
20677
21061
|
export declare class BookingsStaffApi extends BaseAPI {
|
|
21062
|
+
/**
|
|
21063
|
+
* Check-in d\'un invité sans compte (paiement sur place)
|
|
21064
|
+
* @param {BookingsStaffApiBookingGuestCheckinRequest} requestParameters Request parameters.
|
|
21065
|
+
* @param {*} [options] Override http request option.
|
|
21066
|
+
* @throws {RequiredError}
|
|
21067
|
+
* @memberof BookingsStaffApi
|
|
21068
|
+
*/
|
|
21069
|
+
bookingGuestCheckin(requestParameters: BookingsStaffApiBookingGuestCheckinRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingGuestCheckinResponse, any, {}>>;
|
|
20678
21070
|
/**
|
|
20679
21071
|
* Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
|
|
20680
21072
|
* @param {BookingsStaffApiCheckInPlayerRequest} requestParameters Request parameters.
|
|
@@ -25725,6 +26117,74 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
25725
26117
|
*/
|
|
25726
26118
|
createClub(requestParameters: DefaultApiCreateClubRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubResponse, any, {}>>;
|
|
25727
26119
|
}
|
|
26120
|
+
/**
|
|
26121
|
+
* EventBookingsStaffApi - axios parameter creator
|
|
26122
|
+
* @export
|
|
26123
|
+
*/
|
|
26124
|
+
export declare const EventBookingsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26125
|
+
/**
|
|
26126
|
+
* Check-in d\'un invité sans compte (paiement sur place) pour une inscription événement
|
|
26127
|
+
* @param {string} eventBookingId
|
|
26128
|
+
* @param {*} [options] Override http request option.
|
|
26129
|
+
* @throws {RequiredError}
|
|
26130
|
+
*/
|
|
26131
|
+
eventBookingGuestCheckin: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26132
|
+
};
|
|
26133
|
+
/**
|
|
26134
|
+
* EventBookingsStaffApi - functional programming interface
|
|
26135
|
+
* @export
|
|
26136
|
+
*/
|
|
26137
|
+
export declare const EventBookingsStaffApiFp: (configuration?: Configuration) => {
|
|
26138
|
+
/**
|
|
26139
|
+
* Check-in d\'un invité sans compte (paiement sur place) pour une inscription événement
|
|
26140
|
+
* @param {string} eventBookingId
|
|
26141
|
+
* @param {*} [options] Override http request option.
|
|
26142
|
+
* @throws {RequiredError}
|
|
26143
|
+
*/
|
|
26144
|
+
eventBookingGuestCheckin(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventBookingGuestCheckinResponse>>;
|
|
26145
|
+
};
|
|
26146
|
+
/**
|
|
26147
|
+
* EventBookingsStaffApi - factory interface
|
|
26148
|
+
* @export
|
|
26149
|
+
*/
|
|
26150
|
+
export declare const EventBookingsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
26151
|
+
/**
|
|
26152
|
+
* Check-in d\'un invité sans compte (paiement sur place) pour une inscription événement
|
|
26153
|
+
* @param {EventBookingsStaffApiEventBookingGuestCheckinRequest} requestParameters Request parameters.
|
|
26154
|
+
* @param {*} [options] Override http request option.
|
|
26155
|
+
* @throws {RequiredError}
|
|
26156
|
+
*/
|
|
26157
|
+
eventBookingGuestCheckin(requestParameters: EventBookingsStaffApiEventBookingGuestCheckinRequest, options?: RawAxiosRequestConfig): AxiosPromise<EventBookingGuestCheckinResponse>;
|
|
26158
|
+
};
|
|
26159
|
+
/**
|
|
26160
|
+
* Request parameters for eventBookingGuestCheckin operation in EventBookingsStaffApi.
|
|
26161
|
+
* @export
|
|
26162
|
+
* @interface EventBookingsStaffApiEventBookingGuestCheckinRequest
|
|
26163
|
+
*/
|
|
26164
|
+
export interface EventBookingsStaffApiEventBookingGuestCheckinRequest {
|
|
26165
|
+
/**
|
|
26166
|
+
*
|
|
26167
|
+
* @type {string}
|
|
26168
|
+
* @memberof EventBookingsStaffApiEventBookingGuestCheckin
|
|
26169
|
+
*/
|
|
26170
|
+
readonly eventBookingId: string;
|
|
26171
|
+
}
|
|
26172
|
+
/**
|
|
26173
|
+
* EventBookingsStaffApi - object-oriented interface
|
|
26174
|
+
* @export
|
|
26175
|
+
* @class EventBookingsStaffApi
|
|
26176
|
+
* @extends {BaseAPI}
|
|
26177
|
+
*/
|
|
26178
|
+
export declare class EventBookingsStaffApi extends BaseAPI {
|
|
26179
|
+
/**
|
|
26180
|
+
* Check-in d\'un invité sans compte (paiement sur place) pour une inscription événement
|
|
26181
|
+
* @param {EventBookingsStaffApiEventBookingGuestCheckinRequest} requestParameters Request parameters.
|
|
26182
|
+
* @param {*} [options] Override http request option.
|
|
26183
|
+
* @throws {RequiredError}
|
|
26184
|
+
* @memberof EventBookingsStaffApi
|
|
26185
|
+
*/
|
|
26186
|
+
eventBookingGuestCheckin(requestParameters: EventBookingsStaffApiEventBookingGuestCheckinRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventBookingGuestCheckinResponse, any, {}>>;
|
|
26187
|
+
}
|
|
25728
26188
|
/**
|
|
25729
26189
|
* EventsApi - axios parameter creator
|
|
25730
26190
|
* @export
|
|
@@ -25869,7 +26329,7 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
|
25869
26329
|
* @param {*} [options] Override http request option.
|
|
25870
26330
|
* @throws {RequiredError}
|
|
25871
26331
|
*/
|
|
25872
|
-
estimateEventPrice(eventId: string, estimateEventPriceRequest: EstimateEventPriceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26332
|
+
estimateEventPrice(eventId: string, estimateEventPriceRequest: EstimateEventPriceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EstimateEventPriceResponse>>;
|
|
25873
26333
|
/**
|
|
25874
26334
|
* Estimer le prix pour rejoindre un événement ouvert
|
|
25875
26335
|
* @param {string} eventBookingId
|
|
@@ -25991,7 +26451,7 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
|
25991
26451
|
* @param {*} [options] Override http request option.
|
|
25992
26452
|
* @throws {RequiredError}
|
|
25993
26453
|
*/
|
|
25994
|
-
estimateEventPrice(requestParameters: EventsApiEstimateEventPriceRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26454
|
+
estimateEventPrice(requestParameters: EventsApiEstimateEventPriceRequest, options?: RawAxiosRequestConfig): AxiosPromise<EstimateEventPriceResponse>;
|
|
25995
26455
|
/**
|
|
25996
26456
|
* Estimer le prix pour rejoindre un événement ouvert
|
|
25997
26457
|
* @param {EventsApiEstimateOpenEventBookingJoinPriceRequest} requestParameters Request parameters.
|
|
@@ -26379,7 +26839,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
26379
26839
|
* @throws {RequiredError}
|
|
26380
26840
|
* @memberof EventsApi
|
|
26381
26841
|
*/
|
|
26382
|
-
estimateEventPrice(requestParameters: EventsApiEstimateEventPriceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26842
|
+
estimateEventPrice(requestParameters: EventsApiEstimateEventPriceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EstimateEventPriceResponse, any, {}>>;
|
|
26383
26843
|
/**
|
|
26384
26844
|
* Estimer le prix pour rejoindre un événement ouvert
|
|
26385
26845
|
* @param {EventsApiEstimateOpenEventBookingJoinPriceRequest} requestParameters Request parameters.
|