@tennac-booking/sdk 1.0.184 → 1.0.186

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.
Files changed (54) hide show
  1. package/.openapi-generator/FILES +2 -19
  2. package/README.md +7 -29
  3. package/api.ts +334 -1613
  4. package/base.ts +1 -1
  5. package/common.ts +1 -1
  6. package/configuration.ts +1 -1
  7. package/dist/api.d.ts +254 -1113
  8. package/dist/api.js +186 -893
  9. package/dist/base.d.ts +1 -1
  10. package/dist/base.js +1 -1
  11. package/dist/common.d.ts +1 -1
  12. package/dist/common.js +1 -1
  13. package/dist/configuration.d.ts +1 -1
  14. package/dist/configuration.js +1 -1
  15. package/dist/esm/api.d.ts +254 -1113
  16. package/dist/esm/api.js +182 -876
  17. package/dist/esm/base.d.ts +1 -1
  18. package/dist/esm/base.js +1 -1
  19. package/dist/esm/common.d.ts +1 -1
  20. package/dist/esm/common.js +1 -1
  21. package/dist/esm/configuration.d.ts +1 -1
  22. package/dist/esm/configuration.js +1 -1
  23. package/dist/esm/index.d.ts +1 -1
  24. package/dist/esm/index.js +1 -1
  25. package/dist/index.d.ts +1 -1
  26. package/dist/index.js +1 -1
  27. package/docs/BookingsApi.md +5 -5
  28. package/docs/BookingsStaffApi.md +1 -57
  29. package/docs/EventsStaffApi.md +119 -25
  30. package/docs/JoinOpenBookingRequest.md +26 -0
  31. package/docs/StaffEventsPageResponse.md +22 -0
  32. package/docs/UserClubMembership.md +2 -0
  33. package/docs/UserProfileResponse.md +2 -0
  34. package/index.ts +1 -1
  35. package/package.json +1 -1
  36. package/docs/CheckInPlayerSumupRequest.md +0 -22
  37. package/docs/CheckInPlayerSumupResponse.md +0 -24
  38. package/docs/CheckInSumupPaymentInfo.md +0 -26
  39. package/docs/PaymentIntentResult.md +0 -28
  40. package/docs/PaymentProviderType.md +0 -10
  41. package/docs/PaymentStatus.md +0 -14
  42. package/docs/PaymentsStaffApi.md +0 -124
  43. package/docs/StaffEventsPaginatedResponse.md +0 -26
  44. package/docs/SumUpApi.md +0 -63
  45. package/docs/SumUpManagerApi.md +0 -332
  46. package/docs/SumupAccountStatusResponse.md +0 -32
  47. package/docs/SumupCancelPaymentRequest.md +0 -20
  48. package/docs/SumupConnectUrlResponse.md +0 -20
  49. package/docs/SumupCreatePaymentRequest.md +0 -32
  50. package/docs/SumupOAuthCallbackResponse.md +0 -24
  51. package/docs/SumupPairReaderRequest.md +0 -22
  52. package/docs/SumupPairReaderResponse.md +0 -20
  53. package/docs/SumupReaderInfo.md +0 -34
  54. package/docs/SumupReadersResponse.md +0 -20
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.177
5
+ * The version of the OpenAPI document: 1.0.185
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1635,81 +1635,6 @@ export interface CheckInPlayerResponse {
1635
1635
  */
1636
1636
  'invoice': CheckedInPlayer;
1637
1637
  }
1638
- /**
1639
- *
1640
- * @export
1641
- * @interface CheckInPlayerSumupRequest
1642
- */
1643
- export interface CheckInPlayerSumupRequest {
1644
- /**
1645
- * ID du joueur qui a payé/est arrivé
1646
- * @type {string}
1647
- * @memberof CheckInPlayerSumupRequest
1648
- */
1649
- 'playerId': string;
1650
- /**
1651
- * Reader SumUp ciblé (optionnel)
1652
- * @type {string}
1653
- * @memberof CheckInPlayerSumupRequest
1654
- */
1655
- 'readerId'?: string;
1656
- }
1657
- /**
1658
- *
1659
- * @export
1660
- * @interface CheckInPlayerSumupResponse
1661
- */
1662
- export interface CheckInPlayerSumupResponse {
1663
- /**
1664
- * Message de confirmation
1665
- * @type {string}
1666
- * @memberof CheckInPlayerSumupResponse
1667
- */
1668
- 'message': string;
1669
- /**
1670
- *
1671
- * @type {CheckedInPlayer}
1672
- * @memberof CheckInPlayerSumupResponse
1673
- */
1674
- 'invoice': CheckedInPlayer;
1675
- /**
1676
- *
1677
- * @type {CheckInSumupPaymentInfo}
1678
- * @memberof CheckInPlayerSumupResponse
1679
- */
1680
- 'sumupPayment'?: CheckInSumupPaymentInfo;
1681
- }
1682
- /**
1683
- *
1684
- * @export
1685
- * @interface CheckInSumupPaymentInfo
1686
- */
1687
- export interface CheckInSumupPaymentInfo {
1688
- /**
1689
- * ID du paiement SumUp
1690
- * @type {string}
1691
- * @memberof CheckInSumupPaymentInfo
1692
- */
1693
- 'paymentId': string;
1694
- /**
1695
- * ID du checkout SumUp
1696
- * @type {string}
1697
- * @memberof CheckInSumupPaymentInfo
1698
- */
1699
- 'checkoutId'?: string;
1700
- /**
1701
- *
1702
- * @type {PaymentStatus}
1703
- * @memberof CheckInSumupPaymentInfo
1704
- */
1705
- 'status': PaymentStatus;
1706
- /**
1707
- * Reader SumUp utilisé
1708
- * @type {string}
1709
- * @memberof CheckInSumupPaymentInfo
1710
- */
1711
- 'readerId'?: string;
1712
- }
1713
1638
  /**
1714
1639
  *
1715
1640
  * @export
@@ -7497,6 +7422,37 @@ export interface JoinEventWaitList200Response {
7497
7422
  */
7498
7423
  'message': string;
7499
7424
  }
7425
+ /**
7426
+ *
7427
+ * @export
7428
+ * @interface JoinOpenBookingRequest
7429
+ */
7430
+ export interface JoinOpenBookingRequest {
7431
+ /**
7432
+ *
7433
+ * @type {PaymentMethod}
7434
+ * @memberof JoinOpenBookingRequest
7435
+ */
7436
+ 'paymentMethod'?: PaymentMethod;
7437
+ /**
7438
+ * Indique si l\'utilisateur veut utiliser sa méthode de paiement par défaut
7439
+ * @type {boolean}
7440
+ * @memberof JoinOpenBookingRequest
7441
+ */
7442
+ 'useDefaultPaymentMethod'?: boolean;
7443
+ /**
7444
+ * Crédit à utiliser en centimes
7445
+ * @type {number}
7446
+ * @memberof JoinOpenBookingRequest
7447
+ */
7448
+ 'creditToUseInCents'?: number;
7449
+ /**
7450
+ * Liste des autres joueurs qui rejoignent également (n\'inclut PAS le joueur qui fait la requête, chacun paie sa part)
7451
+ * @type {Array<PlayerWithPaymentMethod>}
7452
+ * @memberof JoinOpenBookingRequest
7453
+ */
7454
+ 'players'?: Array<PlayerWithPaymentMethod>;
7455
+ }
7500
7456
  /**
7501
7457
  *
7502
7458
  * @export
@@ -8706,43 +8662,6 @@ export interface PaymentByPlayerInfo {
8706
8662
  */
8707
8663
  'invoices': Array<InvoiceInfo>;
8708
8664
  }
8709
- /**
8710
- *
8711
- * @export
8712
- * @interface PaymentIntentResult
8713
- */
8714
- export interface PaymentIntentResult {
8715
- /**
8716
- *
8717
- * @type {string}
8718
- * @memberof PaymentIntentResult
8719
- */
8720
- 'paymentId': string;
8721
- /**
8722
- *
8723
- * @type {string}
8724
- * @memberof PaymentIntentResult
8725
- */
8726
- 'externalId': string;
8727
- /**
8728
- *
8729
- * @type {PaymentStatus}
8730
- * @memberof PaymentIntentResult
8731
- */
8732
- 'status': PaymentStatus;
8733
- /**
8734
- *
8735
- * @type {PaymentProviderType}
8736
- * @memberof PaymentIntentResult
8737
- */
8738
- 'provider': PaymentProviderType;
8739
- /**
8740
- *
8741
- * @type {string}
8742
- * @memberof PaymentIntentResult
8743
- */
8744
- 'readerId'?: string;
8745
- }
8746
8665
  /**
8747
8666
  *
8748
8667
  * @export
@@ -8756,16 +8675,6 @@ export declare const PaymentMethod: {
8756
8675
  readonly Free: "free";
8757
8676
  };
8758
8677
  export type PaymentMethod = typeof PaymentMethod[keyof typeof PaymentMethod];
8759
- /**
8760
- *
8761
- * @export
8762
- * @enum {string}
8763
- */
8764
- export declare const PaymentProviderType: {
8765
- readonly Stripe: "stripe";
8766
- readonly Sumup: "sumup";
8767
- };
8768
- export type PaymentProviderType = typeof PaymentProviderType[keyof typeof PaymentProviderType];
8769
8678
  /**
8770
8679
  *
8771
8680
  * @export
@@ -8785,18 +8694,6 @@ export interface PaymentRequirementsSettings {
8785
8694
  */
8786
8695
  'requireOnlinePayment': boolean;
8787
8696
  }
8788
- /**
8789
- *
8790
- * @export
8791
- * @enum {string}
8792
- */
8793
- export declare const PaymentStatus: {
8794
- readonly Pending: "pending";
8795
- readonly Succeeded: "succeeded";
8796
- readonly Failed: "failed";
8797
- readonly Cancelled: "cancelled";
8798
- };
8799
- export type PaymentStatus = typeof PaymentStatus[keyof typeof PaymentStatus];
8800
8697
  /**
8801
8698
  * From T, pick a set of properties whose keys are in the union K
8802
8699
  * @export
@@ -11079,33 +10976,21 @@ export interface StaffEventDetailResponse {
11079
10976
  /**
11080
10977
  *
11081
10978
  * @export
11082
- * @interface StaffEventsPaginatedResponse
10979
+ * @interface StaffEventsPageResponse
11083
10980
  */
11084
- export interface StaffEventsPaginatedResponse {
11085
- /**
11086
- *
11087
- * @type {Array<EventResponse>}
11088
- * @memberof StaffEventsPaginatedResponse
11089
- */
11090
- 'upcoming': Array<EventResponse>;
10981
+ export interface StaffEventsPageResponse {
11091
10982
  /**
11092
10983
  *
11093
10984
  * @type {Array<EventResponse>}
11094
- * @memberof StaffEventsPaginatedResponse
11095
- */
11096
- 'past': Array<EventResponse>;
11097
- /**
11098
- *
11099
- * @type {PaginationInfo}
11100
- * @memberof StaffEventsPaginatedResponse
10985
+ * @memberof StaffEventsPageResponse
11101
10986
  */
11102
- 'upcomingPagination': PaginationInfo;
10987
+ 'events': Array<EventResponse>;
11103
10988
  /**
11104
10989
  *
11105
10990
  * @type {PaginationInfo}
11106
- * @memberof StaffEventsPaginatedResponse
10991
+ * @memberof StaffEventsPageResponse
11107
10992
  */
11108
- 'pastPagination': PaginationInfo;
10993
+ 'pagination': PaginationInfo;
11109
10994
  }
11110
10995
  /**
11111
10996
  *
@@ -11620,442 +11505,190 @@ export interface SubscriptionPlanResponse {
11620
11505
  /**
11621
11506
  *
11622
11507
  * @export
11623
- * @interface SumupAccountStatusResponse
11508
+ * @enum {string}
11509
+ */
11510
+ export declare const SurfaceType: {
11511
+ readonly Clay: "clay";
11512
+ readonly Grass: "grass";
11513
+ readonly Hard: "hard";
11514
+ readonly Turf: "turf";
11515
+ readonly Carpet: "carpet";
11516
+ readonly Wooden: "wooden";
11517
+ };
11518
+ export type SurfaceType = typeof SurfaceType[keyof typeof SurfaceType];
11519
+ /**
11520
+ *
11521
+ * @export
11522
+ * @interface Team
11624
11523
  */
11625
- export interface SumupAccountStatusResponse {
11524
+ export interface Team {
11626
11525
  /**
11627
11526
  *
11628
- * @type {boolean}
11629
- * @memberof SumupAccountStatusResponse
11527
+ * @type {string}
11528
+ * @memberof Team
11630
11529
  */
11631
- 'connected': boolean;
11530
+ 'name': string;
11632
11531
  /**
11633
11532
  *
11533
+ * @type {Array<EventUser>}
11534
+ * @memberof Team
11535
+ */
11536
+ 'players': Array<EventUser>;
11537
+ }
11538
+ /**
11539
+ *
11540
+ * @export
11541
+ * @interface TimeBounds
11542
+ */
11543
+ export interface TimeBounds {
11544
+ /**
11545
+ * Heure de début au format HH:mm
11634
11546
  * @type {string}
11635
- * @memberof SumupAccountStatusResponse
11547
+ * @memberof TimeBounds
11636
11548
  */
11637
- 'merchantCode'?: string;
11549
+ 'start': string;
11638
11550
  /**
11639
- *
11551
+ * Heure de fin au format HH:mm
11640
11552
  * @type {string}
11641
- * @memberof SumupAccountStatusResponse
11553
+ * @memberof TimeBounds
11642
11554
  */
11643
- 'readerId'?: string;
11555
+ 'end': string;
11556
+ }
11557
+ /**
11558
+ *
11559
+ * @export
11560
+ * @enum {string}
11561
+ */
11562
+ export declare const TrendDirection: {
11563
+ readonly Up: "up";
11564
+ readonly Down: "down";
11565
+ readonly Steady: "steady";
11566
+ };
11567
+ export type TrendDirection = typeof TrendDirection[keyof typeof TrendDirection];
11568
+ /**
11569
+ *
11570
+ * @export
11571
+ * @interface UpdateActuality200Response
11572
+ */
11573
+ export interface UpdateActuality200Response {
11644
11574
  /**
11645
11575
  *
11646
- * @type {string}
11647
- * @memberof SumupAccountStatusResponse
11576
+ * @type {any}
11577
+ * @memberof UpdateActuality200Response
11648
11578
  */
11649
- 'readerName'?: string;
11579
+ 'actuality': any;
11580
+ }
11581
+ /**
11582
+ *
11583
+ * @export
11584
+ * @interface UpdateClubAccessSettingsRequest
11585
+ */
11586
+ export interface UpdateClubAccessSettingsRequest {
11650
11587
  /**
11651
11588
  *
11652
- * @type {string}
11653
- * @memberof SumupAccountStatusResponse
11589
+ * @type {PartialPublicAccessSettings}
11590
+ * @memberof UpdateClubAccessSettingsRequest
11654
11591
  */
11655
- 'readerPairedAt'?: string;
11592
+ 'publicAccess'?: PartialPublicAccessSettings;
11656
11593
  /**
11657
11594
  *
11658
- * @type {string}
11659
- * @memberof SumupAccountStatusResponse
11595
+ * @type {PartialSchoolAccessSettings}
11596
+ * @memberof UpdateClubAccessSettingsRequest
11660
11597
  */
11661
- 'scope'?: string;
11598
+ 'schoolAccess'?: PartialSchoolAccessSettings;
11662
11599
  /**
11663
11600
  *
11664
- * @type {string}
11665
- * @memberof SumupAccountStatusResponse
11601
+ * @type {PartialHotelAccessSettings}
11602
+ * @memberof UpdateClubAccessSettingsRequest
11666
11603
  */
11667
- 'connectedAt'?: string;
11668
- }
11669
- /**
11670
- *
11671
- * @export
11672
- * @interface SumupCancelPaymentRequest
11673
- */
11674
- export interface SumupCancelPaymentRequest {
11604
+ 'hotelAccess'?: PartialHotelAccessSettings;
11675
11605
  /**
11676
11606
  *
11677
- * @type {string}
11678
- * @memberof SumupCancelPaymentRequest
11607
+ * @type {PartialPaymentRequirementsSettings}
11608
+ * @memberof UpdateClubAccessSettingsRequest
11679
11609
  */
11680
- 'checkoutId'?: string;
11610
+ 'paymentRequirements'?: PartialPaymentRequirementsSettings;
11681
11611
  }
11682
11612
  /**
11683
11613
  *
11684
11614
  * @export
11685
- * @interface SumupConnectUrlResponse
11615
+ * @interface UpdateClubDayScheduleRequest
11686
11616
  */
11687
- export interface SumupConnectUrlResponse {
11617
+ export interface UpdateClubDayScheduleRequest {
11688
11618
  /**
11689
11619
  *
11690
- * @type {string}
11691
- * @memberof SumupConnectUrlResponse
11620
+ * @type {Array<ClubDayInterval>}
11621
+ * @memberof UpdateClubDayScheduleRequest
11692
11622
  */
11693
- 'url': string;
11623
+ 'intervals': Array<ClubDayInterval>;
11694
11624
  }
11695
11625
  /**
11696
11626
  *
11697
11627
  * @export
11698
- * @interface SumupCreatePaymentRequest
11628
+ * @interface UpdateClubGeneralSettingsRequest
11699
11629
  */
11700
- export interface SumupCreatePaymentRequest {
11630
+ export interface UpdateClubGeneralSettingsRequest {
11701
11631
  /**
11702
11632
  *
11703
- * @type {number}
11704
- * @memberof SumupCreatePaymentRequest
11633
+ * @type {string}
11634
+ * @memberof UpdateClubGeneralSettingsRequest
11705
11635
  */
11706
- 'amountInCents': number;
11636
+ 'name'?: string;
11707
11637
  /**
11708
11638
  *
11709
11639
  * @type {string}
11710
- * @memberof SumupCreatePaymentRequest
11640
+ * @memberof UpdateClubGeneralSettingsRequest
11711
11641
  */
11712
- 'currency': string;
11642
+ 'email'?: string;
11713
11643
  /**
11714
11644
  *
11715
11645
  * @type {string}
11716
- * @memberof SumupCreatePaymentRequest
11646
+ * @memberof UpdateClubGeneralSettingsRequest
11717
11647
  */
11718
- 'readerId'?: string;
11648
+ 'phone'?: string;
11719
11649
  /**
11720
11650
  *
11721
11651
  * @type {string}
11722
- * @memberof SumupCreatePaymentRequest
11652
+ * @memberof UpdateClubGeneralSettingsRequest
11723
11653
  */
11724
- 'description'?: string;
11654
+ 'websiteUrl'?: string;
11725
11655
  /**
11726
11656
  *
11727
11657
  * @type {string}
11728
- * @memberof SumupCreatePaymentRequest
11658
+ * @memberof UpdateClubGeneralSettingsRequest
11729
11659
  */
11730
- 'reference'?: string;
11660
+ 'description'?: string;
11731
11661
  /**
11732
- * Construct a type with a set of properties K of type T
11733
- * @type {{ [key: string]: string; }}
11734
- * @memberof SumupCreatePaymentRequest
11662
+ *
11663
+ * @type {UpdateClubGeneralSettingsRequestLogo}
11664
+ * @memberof UpdateClubGeneralSettingsRequest
11735
11665
  */
11736
- 'metadata'?: {
11737
- [key: string]: string;
11738
- };
11666
+ 'logo'?: UpdateClubGeneralSettingsRequestLogo | null;
11739
11667
  /**
11740
11668
  *
11741
- * @type {string}
11742
- * @memberof SumupCreatePaymentRequest
11669
+ * @type {ClubLocationSettings}
11670
+ * @memberof UpdateClubGeneralSettingsRequest
11743
11671
  */
11744
- 'userId'?: string;
11672
+ 'location'?: ClubLocationSettings;
11745
11673
  }
11746
11674
  /**
11747
11675
  *
11748
11676
  * @export
11749
- * @interface SumupOAuthCallbackResponse
11677
+ * @interface UpdateClubGeneralSettingsRequestLogo
11750
11678
  */
11751
- export interface SumupOAuthCallbackResponse {
11679
+ export interface UpdateClubGeneralSettingsRequestLogo {
11752
11680
  /**
11753
11681
  *
11754
- * @type {string}
11755
- * @memberof SumupOAuthCallbackResponse
11682
+ * @type {ImageContextType}
11683
+ * @memberof UpdateClubGeneralSettingsRequestLogo
11756
11684
  */
11757
- 'clubId': string;
11685
+ 'type': ImageContextType;
11758
11686
  /**
11759
11687
  *
11760
11688
  * @type {string}
11761
- * @memberof SumupOAuthCallbackResponse
11689
+ * @memberof UpdateClubGeneralSettingsRequestLogo
11762
11690
  */
11763
- 'merchantCode': string;
11764
- /**
11765
- *
11766
- * @type {string}
11767
- * @memberof SumupOAuthCallbackResponse
11768
- */
11769
- 'scope'?: string;
11770
- }
11771
- /**
11772
- *
11773
- * @export
11774
- * @interface SumupPairReaderRequest
11775
- */
11776
- export interface SumupPairReaderRequest {
11777
- /**
11778
- *
11779
- * @type {string}
11780
- * @memberof SumupPairReaderRequest
11781
- */
11782
- 'pairingCode': string;
11783
- /**
11784
- *
11785
- * @type {string}
11786
- * @memberof SumupPairReaderRequest
11787
- */
11788
- 'name': string;
11789
- }
11790
- /**
11791
- *
11792
- * @export
11793
- * @interface SumupPairReaderResponse
11794
- */
11795
- export interface SumupPairReaderResponse {
11796
- /**
11797
- *
11798
- * @type {SumupReaderInfo}
11799
- * @memberof SumupPairReaderResponse
11800
- */
11801
- 'reader': SumupReaderInfo;
11802
- }
11803
- /**
11804
- *
11805
- * @export
11806
- * @interface SumupReaderInfo
11807
- */
11808
- export interface SumupReaderInfo {
11809
- [key: string]: any;
11810
- /**
11811
- *
11812
- * @type {string}
11813
- * @memberof SumupReaderInfo
11814
- */
11815
- 'reader_id'?: string;
11816
- /**
11817
- *
11818
- * @type {string}
11819
- * @memberof SumupReaderInfo
11820
- */
11821
- 'id'?: string;
11822
- /**
11823
- *
11824
- * @type {string}
11825
- * @memberof SumupReaderInfo
11826
- */
11827
- 'serial_number'?: string;
11828
- /**
11829
- *
11830
- * @type {string}
11831
- * @memberof SumupReaderInfo
11832
- */
11833
- 'name'?: string;
11834
- /**
11835
- *
11836
- * @type {string}
11837
- * @memberof SumupReaderInfo
11838
- */
11839
- 'status'?: string;
11840
- /**
11841
- *
11842
- * @type {string}
11843
- * @memberof SumupReaderInfo
11844
- */
11845
- 'model'?: string;
11846
- /**
11847
- *
11848
- * @type {string}
11849
- * @memberof SumupReaderInfo
11850
- */
11851
- 'device_type'?: string;
11852
- /**
11853
- *
11854
- * @type {string}
11855
- * @memberof SumupReaderInfo
11856
- */
11857
- 'last_seen_at'?: string;
11858
- }
11859
- /**
11860
- *
11861
- * @export
11862
- * @interface SumupReadersResponse
11863
- */
11864
- export interface SumupReadersResponse {
11865
- /**
11866
- *
11867
- * @type {Array<SumupReaderInfo>}
11868
- * @memberof SumupReadersResponse
11869
- */
11870
- 'readers': Array<SumupReaderInfo>;
11871
- }
11872
- /**
11873
- *
11874
- * @export
11875
- * @enum {string}
11876
- */
11877
- export declare const SurfaceType: {
11878
- readonly Clay: "clay";
11879
- readonly Grass: "grass";
11880
- readonly Hard: "hard";
11881
- readonly Turf: "turf";
11882
- readonly Carpet: "carpet";
11883
- readonly Wooden: "wooden";
11884
- };
11885
- export type SurfaceType = typeof SurfaceType[keyof typeof SurfaceType];
11886
- /**
11887
- *
11888
- * @export
11889
- * @interface Team
11890
- */
11891
- export interface Team {
11892
- /**
11893
- *
11894
- * @type {string}
11895
- * @memberof Team
11896
- */
11897
- 'name': string;
11898
- /**
11899
- *
11900
- * @type {Array<EventUser>}
11901
- * @memberof Team
11902
- */
11903
- 'players': Array<EventUser>;
11904
- }
11905
- /**
11906
- *
11907
- * @export
11908
- * @interface TimeBounds
11909
- */
11910
- export interface TimeBounds {
11911
- /**
11912
- * Heure de début au format HH:mm
11913
- * @type {string}
11914
- * @memberof TimeBounds
11915
- */
11916
- 'start': string;
11917
- /**
11918
- * Heure de fin au format HH:mm
11919
- * @type {string}
11920
- * @memberof TimeBounds
11921
- */
11922
- 'end': string;
11923
- }
11924
- /**
11925
- *
11926
- * @export
11927
- * @enum {string}
11928
- */
11929
- export declare const TrendDirection: {
11930
- readonly Up: "up";
11931
- readonly Down: "down";
11932
- readonly Steady: "steady";
11933
- };
11934
- export type TrendDirection = typeof TrendDirection[keyof typeof TrendDirection];
11935
- /**
11936
- *
11937
- * @export
11938
- * @interface UpdateActuality200Response
11939
- */
11940
- export interface UpdateActuality200Response {
11941
- /**
11942
- *
11943
- * @type {any}
11944
- * @memberof UpdateActuality200Response
11945
- */
11946
- 'actuality': any;
11947
- }
11948
- /**
11949
- *
11950
- * @export
11951
- * @interface UpdateClubAccessSettingsRequest
11952
- */
11953
- export interface UpdateClubAccessSettingsRequest {
11954
- /**
11955
- *
11956
- * @type {PartialPublicAccessSettings}
11957
- * @memberof UpdateClubAccessSettingsRequest
11958
- */
11959
- 'publicAccess'?: PartialPublicAccessSettings;
11960
- /**
11961
- *
11962
- * @type {PartialSchoolAccessSettings}
11963
- * @memberof UpdateClubAccessSettingsRequest
11964
- */
11965
- 'schoolAccess'?: PartialSchoolAccessSettings;
11966
- /**
11967
- *
11968
- * @type {PartialHotelAccessSettings}
11969
- * @memberof UpdateClubAccessSettingsRequest
11970
- */
11971
- 'hotelAccess'?: PartialHotelAccessSettings;
11972
- /**
11973
- *
11974
- * @type {PartialPaymentRequirementsSettings}
11975
- * @memberof UpdateClubAccessSettingsRequest
11976
- */
11977
- 'paymentRequirements'?: PartialPaymentRequirementsSettings;
11978
- }
11979
- /**
11980
- *
11981
- * @export
11982
- * @interface UpdateClubDayScheduleRequest
11983
- */
11984
- export interface UpdateClubDayScheduleRequest {
11985
- /**
11986
- *
11987
- * @type {Array<ClubDayInterval>}
11988
- * @memberof UpdateClubDayScheduleRequest
11989
- */
11990
- 'intervals': Array<ClubDayInterval>;
11991
- }
11992
- /**
11993
- *
11994
- * @export
11995
- * @interface UpdateClubGeneralSettingsRequest
11996
- */
11997
- export interface UpdateClubGeneralSettingsRequest {
11998
- /**
11999
- *
12000
- * @type {string}
12001
- * @memberof UpdateClubGeneralSettingsRequest
12002
- */
12003
- 'name'?: string;
12004
- /**
12005
- *
12006
- * @type {string}
12007
- * @memberof UpdateClubGeneralSettingsRequest
12008
- */
12009
- 'email'?: string;
12010
- /**
12011
- *
12012
- * @type {string}
12013
- * @memberof UpdateClubGeneralSettingsRequest
12014
- */
12015
- 'phone'?: string;
12016
- /**
12017
- *
12018
- * @type {string}
12019
- * @memberof UpdateClubGeneralSettingsRequest
12020
- */
12021
- 'websiteUrl'?: string;
12022
- /**
12023
- *
12024
- * @type {string}
12025
- * @memberof UpdateClubGeneralSettingsRequest
12026
- */
12027
- 'description'?: string;
12028
- /**
12029
- *
12030
- * @type {UpdateClubGeneralSettingsRequestLogo}
12031
- * @memberof UpdateClubGeneralSettingsRequest
12032
- */
12033
- 'logo'?: UpdateClubGeneralSettingsRequestLogo | null;
12034
- /**
12035
- *
12036
- * @type {ClubLocationSettings}
12037
- * @memberof UpdateClubGeneralSettingsRequest
12038
- */
12039
- 'location'?: ClubLocationSettings;
12040
- }
12041
- /**
12042
- *
12043
- * @export
12044
- * @interface UpdateClubGeneralSettingsRequestLogo
12045
- */
12046
- export interface UpdateClubGeneralSettingsRequestLogo {
12047
- /**
12048
- *
12049
- * @type {ImageContextType}
12050
- * @memberof UpdateClubGeneralSettingsRequestLogo
12051
- */
12052
- 'type': ImageContextType;
12053
- /**
12054
- *
12055
- * @type {string}
12056
- * @memberof UpdateClubGeneralSettingsRequestLogo
12057
- */
12058
- 'imageKey': string;
11691
+ 'imageKey': string;
12059
11692
  /**
12060
11693
  * Construct a type with a set of properties K of type T
12061
11694
  * @type {{ [key: string]: any; }}
@@ -13042,6 +12675,12 @@ export interface UserClubMembership {
13042
12675
  * @memberof UserClubMembership
13043
12676
  */
13044
12677
  'clubPicture': string | null;
12678
+ /**
12679
+ *
12680
+ * @type {Array<string>}
12681
+ * @memberof UserClubMembership
12682
+ */
12683
+ 'bannerPictures'?: Array<string>;
13045
12684
  /**
13046
12685
  *
13047
12686
  * @type {string}
@@ -13720,6 +13359,12 @@ export interface UserProfileResponse {
13720
13359
  * @memberof UserProfileResponse
13721
13360
  */
13722
13361
  'clubs'?: Array<UserClubMembership>;
13362
+ /**
13363
+ *
13364
+ * @type {Array<ClubSummary>}
13365
+ * @memberof UserProfileResponse
13366
+ */
13367
+ 'favoriteClubsDetails'?: Array<ClubSummary>;
13723
13368
  /**
13724
13369
  *
13725
13370
  * @type {Array<ClubSummary>}
@@ -14143,11 +13788,11 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
14143
13788
  /**
14144
13789
  *
14145
13790
  * @param {string} bookingId
14146
- * @param {JoinOpenEventBookingRequest} joinOpenEventBookingRequest
13791
+ * @param {JoinOpenBookingRequest} joinOpenBookingRequest
14147
13792
  * @param {*} [options] Override http request option.
14148
13793
  * @throws {RequiredError}
14149
13794
  */
14150
- joinOpenBooking: (bookingId: string, joinOpenEventBookingRequest: JoinOpenEventBookingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13795
+ joinOpenBooking: (bookingId: string, joinOpenBookingRequest: JoinOpenBookingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14151
13796
  /**
14152
13797
  *
14153
13798
  * @param {string} bookingId
@@ -14239,11 +13884,11 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
14239
13884
  /**
14240
13885
  *
14241
13886
  * @param {string} bookingId
14242
- * @param {JoinOpenEventBookingRequest} joinOpenEventBookingRequest
13887
+ * @param {JoinOpenBookingRequest} joinOpenBookingRequest
14243
13888
  * @param {*} [options] Override http request option.
14244
13889
  * @throws {RequiredError}
14245
13890
  */
14246
- joinOpenBooking(bookingId: string, joinOpenEventBookingRequest: JoinOpenEventBookingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinOpenBookingResponse>>;
13891
+ joinOpenBooking(bookingId: string, joinOpenBookingRequest: JoinOpenBookingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinOpenBookingResponse>>;
14247
13892
  /**
14248
13893
  *
14249
13894
  * @param {string} bookingId
@@ -14538,10 +14183,10 @@ export interface BookingsApiJoinOpenBookingRequest {
14538
14183
  readonly bookingId: string;
14539
14184
  /**
14540
14185
  *
14541
- * @type {JoinOpenEventBookingRequest}
14186
+ * @type {JoinOpenBookingRequest}
14542
14187
  * @memberof BookingsApiJoinOpenBooking
14543
14188
  */
14544
- readonly joinOpenEventBookingRequest: JoinOpenEventBookingRequest;
14189
+ readonly joinOpenBookingRequest: JoinOpenBookingRequest;
14545
14190
  }
14546
14191
  /**
14547
14192
  * Request parameters for leaveOpenBooking operation in BookingsApi.
@@ -14776,21 +14421,13 @@ export declare class BookingsManagerApi extends BaseAPI {
14776
14421
  */
14777
14422
  export declare const BookingsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
14778
14423
  /**
14779
- * Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
14424
+ * Check-in d\'un joueur (paiement en ligne ou sur place)
14780
14425
  * @param {string} bookingId
14781
14426
  * @param {CheckInPlayerRequest} checkInPlayerRequest
14782
14427
  * @param {*} [options] Override http request option.
14783
14428
  * @throws {RequiredError}
14784
14429
  */
14785
14430
  checkInPlayer: (bookingId: string, checkInPlayerRequest: CheckInPlayerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14786
- /**
14787
- * Check-in d\'un joueur avec création d\'un checkout SumUp
14788
- * @param {string} bookingId
14789
- * @param {CheckInPlayerSumupRequest} checkInPlayerSumupRequest
14790
- * @param {*} [options] Override http request option.
14791
- * @throws {RequiredError}
14792
- */
14793
- checkInPlayerWithSumup: (bookingId: string, checkInPlayerSumupRequest: CheckInPlayerSumupRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14794
14431
  /**
14795
14432
  * Créer une réservation pour un joueur depuis l\'espace staff
14796
14433
  * @param {StaffCreateBookingRequest} staffCreateBookingRequest
@@ -14851,21 +14488,13 @@ export declare const BookingsStaffApiAxiosParamCreator: (configuration?: Configu
14851
14488
  */
14852
14489
  export declare const BookingsStaffApiFp: (configuration?: Configuration) => {
14853
14490
  /**
14854
- * Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
14491
+ * Check-in d\'un joueur (paiement en ligne ou sur place)
14855
14492
  * @param {string} bookingId
14856
14493
  * @param {CheckInPlayerRequest} checkInPlayerRequest
14857
14494
  * @param {*} [options] Override http request option.
14858
14495
  * @throws {RequiredError}
14859
14496
  */
14860
14497
  checkInPlayer(bookingId: string, checkInPlayerRequest: CheckInPlayerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CheckInPlayerResponse>>;
14861
- /**
14862
- * Check-in d\'un joueur avec création d\'un checkout SumUp
14863
- * @param {string} bookingId
14864
- * @param {CheckInPlayerSumupRequest} checkInPlayerSumupRequest
14865
- * @param {*} [options] Override http request option.
14866
- * @throws {RequiredError}
14867
- */
14868
- checkInPlayerWithSumup(bookingId: string, checkInPlayerSumupRequest: CheckInPlayerSumupRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CheckInPlayerSumupResponse>>;
14869
14498
  /**
14870
14499
  * Créer une réservation pour un joueur depuis l\'espace staff
14871
14500
  * @param {StaffCreateBookingRequest} staffCreateBookingRequest
@@ -14926,19 +14555,12 @@ export declare const BookingsStaffApiFp: (configuration?: Configuration) => {
14926
14555
  */
14927
14556
  export declare const BookingsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
14928
14557
  /**
14929
- * Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
14558
+ * Check-in d\'un joueur (paiement en ligne ou sur place)
14930
14559
  * @param {BookingsStaffApiCheckInPlayerRequest} requestParameters Request parameters.
14931
14560
  * @param {*} [options] Override http request option.
14932
14561
  * @throws {RequiredError}
14933
14562
  */
14934
14563
  checkInPlayer(requestParameters: BookingsStaffApiCheckInPlayerRequest, options?: RawAxiosRequestConfig): AxiosPromise<CheckInPlayerResponse>;
14935
- /**
14936
- * Check-in d\'un joueur avec création d\'un checkout SumUp
14937
- * @param {BookingsStaffApiCheckInPlayerWithSumupRequest} requestParameters Request parameters.
14938
- * @param {*} [options] Override http request option.
14939
- * @throws {RequiredError}
14940
- */
14941
- checkInPlayerWithSumup(requestParameters: BookingsStaffApiCheckInPlayerWithSumupRequest, options?: RawAxiosRequestConfig): AxiosPromise<CheckInPlayerSumupResponse>;
14942
14564
  /**
14943
14565
  * Créer une réservation pour un joueur depuis l\'espace staff
14944
14566
  * @param {BookingsStaffApiCreateStaffBookingRequest} requestParameters Request parameters.
@@ -15008,25 +14630,6 @@ export interface BookingsStaffApiCheckInPlayerRequest {
15008
14630
  */
15009
14631
  readonly checkInPlayerRequest: CheckInPlayerRequest;
15010
14632
  }
15011
- /**
15012
- * Request parameters for checkInPlayerWithSumup operation in BookingsStaffApi.
15013
- * @export
15014
- * @interface BookingsStaffApiCheckInPlayerWithSumupRequest
15015
- */
15016
- export interface BookingsStaffApiCheckInPlayerWithSumupRequest {
15017
- /**
15018
- *
15019
- * @type {string}
15020
- * @memberof BookingsStaffApiCheckInPlayerWithSumup
15021
- */
15022
- readonly bookingId: string;
15023
- /**
15024
- *
15025
- * @type {CheckInPlayerSumupRequest}
15026
- * @memberof BookingsStaffApiCheckInPlayerWithSumup
15027
- */
15028
- readonly checkInPlayerSumupRequest: CheckInPlayerSumupRequest;
15029
- }
15030
14633
  /**
15031
14634
  * Request parameters for createStaffBooking operation in BookingsStaffApi.
15032
14635
  * @export
@@ -15150,21 +14753,13 @@ export interface BookingsStaffApiListClubBookingsRequest {
15150
14753
  */
15151
14754
  export declare class BookingsStaffApi extends BaseAPI {
15152
14755
  /**
15153
- * Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
14756
+ * Check-in d\'un joueur (paiement en ligne ou sur place)
15154
14757
  * @param {BookingsStaffApiCheckInPlayerRequest} requestParameters Request parameters.
15155
14758
  * @param {*} [options] Override http request option.
15156
14759
  * @throws {RequiredError}
15157
14760
  * @memberof BookingsStaffApi
15158
14761
  */
15159
14762
  checkInPlayer(requestParameters: BookingsStaffApiCheckInPlayerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CheckInPlayerResponse, any, {}>>;
15160
- /**
15161
- * Check-in d\'un joueur avec création d\'un checkout SumUp
15162
- * @param {BookingsStaffApiCheckInPlayerWithSumupRequest} requestParameters Request parameters.
15163
- * @param {*} [options] Override http request option.
15164
- * @throws {RequiredError}
15165
- * @memberof BookingsStaffApi
15166
- */
15167
- checkInPlayerWithSumup(requestParameters: BookingsStaffApiCheckInPlayerWithSumupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CheckInPlayerSumupResponse, any, {}>>;
15168
14763
  /**
15169
14764
  * Créer une réservation pour un joueur depuis l\'espace staff
15170
14765
  * @param {BookingsStaffApiCreateStaffBookingRequest} requestParameters Request parameters.
@@ -20813,18 +20408,18 @@ export declare const EventsStaffApiAxiosParamCreator: (configuration?: Configura
20813
20408
  */
20814
20409
  getDailyEvents: (clubId?: string, date?: string, visibilityType?: GetDailyEventsVisibilityTypeEnum, type?: GetDailyEventsTypeEnum, sportId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20815
20410
  /**
20816
- * Get a specific event by ID (staff)
20817
- * @param {string} eventId
20411
+ *
20818
20412
  * @param {*} [options] Override http request option.
20819
20413
  * @throws {RequiredError}
20820
20414
  */
20821
- getEventByIdForStaff: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20415
+ getDraftEventsByClub: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20822
20416
  /**
20823
- * // Use service to validate booking openness, team participation, and capacity const { event, booking: eb } = await this.eventService.joinEventBooking( eventBookingId, userId );
20417
+ * Get a specific event by ID (staff)
20418
+ * @param {string} eventId
20824
20419
  * @param {*} [options] Override http request option.
20825
20420
  * @throws {RequiredError}
20826
20421
  */
20827
- getEventsByClub: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20422
+ getEventByIdForStaff: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20828
20423
  /**
20829
20424
  * Get events for the entire month view (including recurring occurrences)
20830
20425
  * @param {string} [clubId]
@@ -20836,6 +20431,18 @@ export declare const EventsStaffApiAxiosParamCreator: (configuration?: Configura
20836
20431
  * @throws {RequiredError}
20837
20432
  */
20838
20433
  getMonthlyEvents: (clubId?: string, date?: string, visibilityType?: GetMonthlyEventsVisibilityTypeEnum, type?: GetMonthlyEventsTypeEnum, sportId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20434
+ /**
20435
+ *
20436
+ * @param {*} [options] Override http request option.
20437
+ * @throws {RequiredError}
20438
+ */
20439
+ getPastEventsByClub: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20440
+ /**
20441
+ * // Use service to validate booking openness, team participation, and capacity const { event, booking: eb } = await this.eventService.joinEventBooking( eventBookingId, userId );
20442
+ * @param {*} [options] Override http request option.
20443
+ * @throws {RequiredError}
20444
+ */
20445
+ getUpcomingEventsByClub: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20839
20446
  /**
20840
20447
  * Get events for the week view (30 day sliding window)
20841
20448
  * @param {string} [clubId]
@@ -20873,18 +20480,18 @@ export declare const EventsStaffApiFp: (configuration?: Configuration) => {
20873
20480
  */
20874
20481
  getDailyEvents(clubId?: string, date?: string, visibilityType?: GetDailyEventsVisibilityTypeEnum, type?: GetDailyEventsTypeEnum, sportId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventsListResponse>>;
20875
20482
  /**
20876
- * Get a specific event by ID (staff)
20877
- * @param {string} eventId
20483
+ *
20878
20484
  * @param {*} [options] Override http request option.
20879
20485
  * @throws {RequiredError}
20880
20486
  */
20881
- getEventByIdForStaff(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StaffEventDetailResponse>>;
20487
+ getDraftEventsByClub(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StaffEventsPageResponse>>;
20882
20488
  /**
20883
- * // Use service to validate booking openness, team participation, and capacity const { event, booking: eb } = await this.eventService.joinEventBooking( eventBookingId, userId );
20489
+ * Get a specific event by ID (staff)
20490
+ * @param {string} eventId
20884
20491
  * @param {*} [options] Override http request option.
20885
20492
  * @throws {RequiredError}
20886
20493
  */
20887
- getEventsByClub(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StaffEventsPaginatedResponse>>;
20494
+ getEventByIdForStaff(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StaffEventDetailResponse>>;
20888
20495
  /**
20889
20496
  * Get events for the entire month view (including recurring occurrences)
20890
20497
  * @param {string} [clubId]
@@ -20896,6 +20503,18 @@ export declare const EventsStaffApiFp: (configuration?: Configuration) => {
20896
20503
  * @throws {RequiredError}
20897
20504
  */
20898
20505
  getMonthlyEvents(clubId?: string, date?: string, visibilityType?: GetMonthlyEventsVisibilityTypeEnum, type?: GetMonthlyEventsTypeEnum, sportId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventsListResponse>>;
20506
+ /**
20507
+ *
20508
+ * @param {*} [options] Override http request option.
20509
+ * @throws {RequiredError}
20510
+ */
20511
+ getPastEventsByClub(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StaffEventsPageResponse>>;
20512
+ /**
20513
+ * // Use service to validate booking openness, team participation, and capacity const { event, booking: eb } = await this.eventService.joinEventBooking( eventBookingId, userId );
20514
+ * @param {*} [options] Override http request option.
20515
+ * @throws {RequiredError}
20516
+ */
20517
+ getUpcomingEventsByClub(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StaffEventsPageResponse>>;
20899
20518
  /**
20900
20519
  * Get events for the week view (30 day sliding window)
20901
20520
  * @param {string} [clubId]
@@ -20928,18 +20547,18 @@ export declare const EventsStaffApiFactory: (configuration?: Configuration, base
20928
20547
  */
20929
20548
  getDailyEvents(requestParameters?: EventsStaffApiGetDailyEventsRequest, options?: RawAxiosRequestConfig): AxiosPromise<EventsListResponse>;
20930
20549
  /**
20931
- * Get a specific event by ID (staff)
20932
- * @param {EventsStaffApiGetEventByIdForStaffRequest} requestParameters Request parameters.
20550
+ *
20933
20551
  * @param {*} [options] Override http request option.
20934
20552
  * @throws {RequiredError}
20935
20553
  */
20936
- getEventByIdForStaff(requestParameters: EventsStaffApiGetEventByIdForStaffRequest, options?: RawAxiosRequestConfig): AxiosPromise<StaffEventDetailResponse>;
20554
+ getDraftEventsByClub(options?: RawAxiosRequestConfig): AxiosPromise<StaffEventsPageResponse>;
20937
20555
  /**
20938
- * // Use service to validate booking openness, team participation, and capacity const { event, booking: eb } = await this.eventService.joinEventBooking( eventBookingId, userId );
20556
+ * Get a specific event by ID (staff)
20557
+ * @param {EventsStaffApiGetEventByIdForStaffRequest} requestParameters Request parameters.
20939
20558
  * @param {*} [options] Override http request option.
20940
20559
  * @throws {RequiredError}
20941
20560
  */
20942
- getEventsByClub(options?: RawAxiosRequestConfig): AxiosPromise<StaffEventsPaginatedResponse>;
20561
+ getEventByIdForStaff(requestParameters: EventsStaffApiGetEventByIdForStaffRequest, options?: RawAxiosRequestConfig): AxiosPromise<StaffEventDetailResponse>;
20943
20562
  /**
20944
20563
  * Get events for the entire month view (including recurring occurrences)
20945
20564
  * @param {EventsStaffApiGetMonthlyEventsRequest} requestParameters Request parameters.
@@ -20947,6 +20566,18 @@ export declare const EventsStaffApiFactory: (configuration?: Configuration, base
20947
20566
  * @throws {RequiredError}
20948
20567
  */
20949
20568
  getMonthlyEvents(requestParameters?: EventsStaffApiGetMonthlyEventsRequest, options?: RawAxiosRequestConfig): AxiosPromise<EventsListResponse>;
20569
+ /**
20570
+ *
20571
+ * @param {*} [options] Override http request option.
20572
+ * @throws {RequiredError}
20573
+ */
20574
+ getPastEventsByClub(options?: RawAxiosRequestConfig): AxiosPromise<StaffEventsPageResponse>;
20575
+ /**
20576
+ * // Use service to validate booking openness, team participation, and capacity const { event, booking: eb } = await this.eventService.joinEventBooking( eventBookingId, userId );
20577
+ * @param {*} [options] Override http request option.
20578
+ * @throws {RequiredError}
20579
+ */
20580
+ getUpcomingEventsByClub(options?: RawAxiosRequestConfig): AxiosPromise<StaffEventsPageResponse>;
20950
20581
  /**
20951
20582
  * Get events for the week view (30 day sliding window)
20952
20583
  * @param {EventsStaffApiGetWeeklyEventsRequest} requestParameters Request parameters.
@@ -21122,20 +20753,20 @@ export declare class EventsStaffApi extends BaseAPI {
21122
20753
  */
21123
20754
  getDailyEvents(requestParameters?: EventsStaffApiGetDailyEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventsListResponse, any, {}>>;
21124
20755
  /**
21125
- * Get a specific event by ID (staff)
21126
- * @param {EventsStaffApiGetEventByIdForStaffRequest} requestParameters Request parameters.
20756
+ *
21127
20757
  * @param {*} [options] Override http request option.
21128
20758
  * @throws {RequiredError}
21129
20759
  * @memberof EventsStaffApi
21130
20760
  */
21131
- getEventByIdForStaff(requestParameters: EventsStaffApiGetEventByIdForStaffRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StaffEventDetailResponse, any, {}>>;
20761
+ getDraftEventsByClub(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StaffEventsPageResponse, any, {}>>;
21132
20762
  /**
21133
- * // Use service to validate booking openness, team participation, and capacity const { event, booking: eb } = await this.eventService.joinEventBooking( eventBookingId, userId );
20763
+ * Get a specific event by ID (staff)
20764
+ * @param {EventsStaffApiGetEventByIdForStaffRequest} requestParameters Request parameters.
21134
20765
  * @param {*} [options] Override http request option.
21135
20766
  * @throws {RequiredError}
21136
20767
  * @memberof EventsStaffApi
21137
20768
  */
21138
- getEventsByClub(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StaffEventsPaginatedResponse, any, {}>>;
20769
+ getEventByIdForStaff(requestParameters: EventsStaffApiGetEventByIdForStaffRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StaffEventDetailResponse, any, {}>>;
21139
20770
  /**
21140
20771
  * Get events for the entire month view (including recurring occurrences)
21141
20772
  * @param {EventsStaffApiGetMonthlyEventsRequest} requestParameters Request parameters.
@@ -21144,6 +20775,20 @@ export declare class EventsStaffApi extends BaseAPI {
21144
20775
  * @memberof EventsStaffApi
21145
20776
  */
21146
20777
  getMonthlyEvents(requestParameters?: EventsStaffApiGetMonthlyEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventsListResponse, any, {}>>;
20778
+ /**
20779
+ *
20780
+ * @param {*} [options] Override http request option.
20781
+ * @throws {RequiredError}
20782
+ * @memberof EventsStaffApi
20783
+ */
20784
+ getPastEventsByClub(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StaffEventsPageResponse, any, {}>>;
20785
+ /**
20786
+ * // Use service to validate booking openness, team participation, and capacity const { event, booking: eb } = await this.eventService.joinEventBooking( eventBookingId, userId );
20787
+ * @param {*} [options] Override http request option.
20788
+ * @throws {RequiredError}
20789
+ * @memberof EventsStaffApi
20790
+ */
20791
+ getUpcomingEventsByClub(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StaffEventsPageResponse, any, {}>>;
21147
20792
  /**
21148
20793
  * Get events for the week view (30 day sliding window)
21149
20794
  * @param {EventsStaffApiGetWeeklyEventsRequest} requestParameters Request parameters.
@@ -21241,170 +20886,36 @@ export declare const ImagesApiFactory: (configuration?: Configuration, basePath?
21241
20886
  * @param {*} [options] Override http request option.
21242
20887
  * @throws {RequiredError}
21243
20888
  */
21244
- cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImageCleanupResponse>;
21245
- };
21246
- /**
21247
- * Request parameters for cleanupImages operation in ImagesApi.
21248
- * @export
21249
- * @interface ImagesApiCleanupImagesRequest
21250
- */
21251
- export interface ImagesApiCleanupImagesRequest {
21252
- /**
21253
- *
21254
- * @type {ImageCleanupRequestBody}
21255
- * @memberof ImagesApiCleanupImages
21256
- */
21257
- readonly imageCleanupRequestBody: ImageCleanupRequestBody;
21258
- }
21259
- /**
21260
- * ImagesApi - object-oriented interface
21261
- * @export
21262
- * @class ImagesApi
21263
- * @extends {BaseAPI}
21264
- */
21265
- export declare class ImagesApi extends BaseAPI {
21266
- /**
21267
- *
21268
- * @param {ImagesApiCleanupImagesRequest} requestParameters Request parameters.
21269
- * @param {*} [options] Override http request option.
21270
- * @throws {RequiredError}
21271
- * @memberof ImagesApi
21272
- */
21273
- cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageCleanupResponse, any, {}>>;
21274
- }
21275
- /**
21276
- * PaymentsStaffApi - axios parameter creator
21277
- * @export
21278
- */
21279
- export declare const PaymentsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
21280
- /**
21281
- * Cancel a SumUp reader checkout.
21282
- * @param {string} clubId
21283
- * @param {string} paymentId
21284
- * @param {SumupCancelPaymentRequest} [sumupCancelPaymentRequest]
21285
- * @param {*} [options] Override http request option.
21286
- * @throws {RequiredError}
21287
- */
21288
- cancelSumupPayment: (clubId: string, paymentId: string, sumupCancelPaymentRequest?: SumupCancelPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21289
- /**
21290
- * Start a SumUp reader checkout (manual payment trigger).
21291
- * @param {string} clubId
21292
- * @param {SumupCreatePaymentRequest} sumupCreatePaymentRequest
21293
- * @param {*} [options] Override http request option.
21294
- * @throws {RequiredError}
21295
- */
21296
- createSumupPayment: (clubId: string, sumupCreatePaymentRequest: SumupCreatePaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21297
- };
21298
- /**
21299
- * PaymentsStaffApi - functional programming interface
21300
- * @export
21301
- */
21302
- export declare const PaymentsStaffApiFp: (configuration?: Configuration) => {
21303
- /**
21304
- * Cancel a SumUp reader checkout.
21305
- * @param {string} clubId
21306
- * @param {string} paymentId
21307
- * @param {SumupCancelPaymentRequest} [sumupCancelPaymentRequest]
21308
- * @param {*} [options] Override http request option.
21309
- * @throws {RequiredError}
21310
- */
21311
- cancelSumupPayment(clubId: string, paymentId: string, sumupCancelPaymentRequest?: SumupCancelPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21312
- /**
21313
- * Start a SumUp reader checkout (manual payment trigger).
21314
- * @param {string} clubId
21315
- * @param {SumupCreatePaymentRequest} sumupCreatePaymentRequest
21316
- * @param {*} [options] Override http request option.
21317
- * @throws {RequiredError}
21318
- */
21319
- createSumupPayment(clubId: string, sumupCreatePaymentRequest: SumupCreatePaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentIntentResult>>;
21320
- };
21321
- /**
21322
- * PaymentsStaffApi - factory interface
21323
- * @export
21324
- */
21325
- export declare const PaymentsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
21326
- /**
21327
- * Cancel a SumUp reader checkout.
21328
- * @param {PaymentsStaffApiCancelSumupPaymentRequest} requestParameters Request parameters.
21329
- * @param {*} [options] Override http request option.
21330
- * @throws {RequiredError}
21331
- */
21332
- cancelSumupPayment(requestParameters: PaymentsStaffApiCancelSumupPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21333
- /**
21334
- * Start a SumUp reader checkout (manual payment trigger).
21335
- * @param {PaymentsStaffApiCreateSumupPaymentRequest} requestParameters Request parameters.
21336
- * @param {*} [options] Override http request option.
21337
- * @throws {RequiredError}
21338
- */
21339
- createSumupPayment(requestParameters: PaymentsStaffApiCreateSumupPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentIntentResult>;
21340
- };
21341
- /**
21342
- * Request parameters for cancelSumupPayment operation in PaymentsStaffApi.
21343
- * @export
21344
- * @interface PaymentsStaffApiCancelSumupPaymentRequest
21345
- */
21346
- export interface PaymentsStaffApiCancelSumupPaymentRequest {
21347
- /**
21348
- *
21349
- * @type {string}
21350
- * @memberof PaymentsStaffApiCancelSumupPayment
21351
- */
21352
- readonly clubId: string;
21353
- /**
21354
- *
21355
- * @type {string}
21356
- * @memberof PaymentsStaffApiCancelSumupPayment
21357
- */
21358
- readonly paymentId: string;
21359
- /**
21360
- *
21361
- * @type {SumupCancelPaymentRequest}
21362
- * @memberof PaymentsStaffApiCancelSumupPayment
21363
- */
21364
- readonly sumupCancelPaymentRequest?: SumupCancelPaymentRequest;
21365
- }
20889
+ cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImageCleanupResponse>;
20890
+ };
21366
20891
  /**
21367
- * Request parameters for createSumupPayment operation in PaymentsStaffApi.
20892
+ * Request parameters for cleanupImages operation in ImagesApi.
21368
20893
  * @export
21369
- * @interface PaymentsStaffApiCreateSumupPaymentRequest
20894
+ * @interface ImagesApiCleanupImagesRequest
21370
20895
  */
21371
- export interface PaymentsStaffApiCreateSumupPaymentRequest {
21372
- /**
21373
- *
21374
- * @type {string}
21375
- * @memberof PaymentsStaffApiCreateSumupPayment
21376
- */
21377
- readonly clubId: string;
20896
+ export interface ImagesApiCleanupImagesRequest {
21378
20897
  /**
21379
20898
  *
21380
- * @type {SumupCreatePaymentRequest}
21381
- * @memberof PaymentsStaffApiCreateSumupPayment
20899
+ * @type {ImageCleanupRequestBody}
20900
+ * @memberof ImagesApiCleanupImages
21382
20901
  */
21383
- readonly sumupCreatePaymentRequest: SumupCreatePaymentRequest;
20902
+ readonly imageCleanupRequestBody: ImageCleanupRequestBody;
21384
20903
  }
21385
20904
  /**
21386
- * PaymentsStaffApi - object-oriented interface
20905
+ * ImagesApi - object-oriented interface
21387
20906
  * @export
21388
- * @class PaymentsStaffApi
20907
+ * @class ImagesApi
21389
20908
  * @extends {BaseAPI}
21390
20909
  */
21391
- export declare class PaymentsStaffApi extends BaseAPI {
21392
- /**
21393
- * Cancel a SumUp reader checkout.
21394
- * @param {PaymentsStaffApiCancelSumupPaymentRequest} requestParameters Request parameters.
21395
- * @param {*} [options] Override http request option.
21396
- * @throws {RequiredError}
21397
- * @memberof PaymentsStaffApi
21398
- */
21399
- cancelSumupPayment(requestParameters: PaymentsStaffApiCancelSumupPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
20910
+ export declare class ImagesApi extends BaseAPI {
21400
20911
  /**
21401
- * Start a SumUp reader checkout (manual payment trigger).
21402
- * @param {PaymentsStaffApiCreateSumupPaymentRequest} requestParameters Request parameters.
20912
+ *
20913
+ * @param {ImagesApiCleanupImagesRequest} requestParameters Request parameters.
21403
20914
  * @param {*} [options] Override http request option.
21404
20915
  * @throws {RequiredError}
21405
- * @memberof PaymentsStaffApi
20916
+ * @memberof ImagesApi
21406
20917
  */
21407
- createSumupPayment(requestParameters: PaymentsStaffApiCreateSumupPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentIntentResult, any, {}>>;
20918
+ cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageCleanupResponse, any, {}>>;
21408
20919
  }
21409
20920
  /**
21410
20921
  * PublicEmailApi - axios parameter creator
@@ -22317,376 +21828,6 @@ export declare class SubscriptionsUserApi extends BaseAPI {
22317
21828
  */
22318
21829
  subscribe(requestParameters: SubscriptionsUserApiSubscribeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SubscriptionMutationResponse, any, {}>>;
22319
21830
  }
22320
- /**
22321
- * SumUpApi - axios parameter creator
22322
- * @export
22323
- */
22324
- export declare const SumUpApiAxiosParamCreator: (configuration?: Configuration) => {
22325
- /**
22326
- * OAuth callback for SumUp.
22327
- * @param {string} code
22328
- * @param {string} state
22329
- * @param {*} [options] Override http request option.
22330
- * @throws {RequiredError}
22331
- */
22332
- sumupOauthCallback: (code: string, state: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22333
- };
22334
- /**
22335
- * SumUpApi - functional programming interface
22336
- * @export
22337
- */
22338
- export declare const SumUpApiFp: (configuration?: Configuration) => {
22339
- /**
22340
- * OAuth callback for SumUp.
22341
- * @param {string} code
22342
- * @param {string} state
22343
- * @param {*} [options] Override http request option.
22344
- * @throws {RequiredError}
22345
- */
22346
- sumupOauthCallback(code: string, state: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SumupOAuthCallbackResponse>>;
22347
- };
22348
- /**
22349
- * SumUpApi - factory interface
22350
- * @export
22351
- */
22352
- export declare const SumUpApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
22353
- /**
22354
- * OAuth callback for SumUp.
22355
- * @param {SumUpApiSumupOauthCallbackRequest} requestParameters Request parameters.
22356
- * @param {*} [options] Override http request option.
22357
- * @throws {RequiredError}
22358
- */
22359
- sumupOauthCallback(requestParameters: SumUpApiSumupOauthCallbackRequest, options?: RawAxiosRequestConfig): AxiosPromise<SumupOAuthCallbackResponse>;
22360
- };
22361
- /**
22362
- * Request parameters for sumupOauthCallback operation in SumUpApi.
22363
- * @export
22364
- * @interface SumUpApiSumupOauthCallbackRequest
22365
- */
22366
- export interface SumUpApiSumupOauthCallbackRequest {
22367
- /**
22368
- *
22369
- * @type {string}
22370
- * @memberof SumUpApiSumupOauthCallback
22371
- */
22372
- readonly code: string;
22373
- /**
22374
- *
22375
- * @type {string}
22376
- * @memberof SumUpApiSumupOauthCallback
22377
- */
22378
- readonly state: string;
22379
- }
22380
- /**
22381
- * SumUpApi - object-oriented interface
22382
- * @export
22383
- * @class SumUpApi
22384
- * @extends {BaseAPI}
22385
- */
22386
- export declare class SumUpApi extends BaseAPI {
22387
- /**
22388
- * OAuth callback for SumUp.
22389
- * @param {SumUpApiSumupOauthCallbackRequest} requestParameters Request parameters.
22390
- * @param {*} [options] Override http request option.
22391
- * @throws {RequiredError}
22392
- * @memberof SumUpApi
22393
- */
22394
- sumupOauthCallback(requestParameters: SumUpApiSumupOauthCallbackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SumupOAuthCallbackResponse, any, {}>>;
22395
- }
22396
- /**
22397
- * SumUpManagerApi - axios parameter creator
22398
- * @export
22399
- */
22400
- export declare const SumUpManagerApiAxiosParamCreator: (configuration?: Configuration) => {
22401
- /**
22402
- * Disconnect SumUp account for a club.
22403
- * @param {string} clubId
22404
- * @param {*} [options] Override http request option.
22405
- * @throws {RequiredError}
22406
- */
22407
- disconnectSumup: (clubId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22408
- /**
22409
- * Start SumUp OAuth connection for a club.
22410
- * @param {string} clubId
22411
- * @param {*} [options] Override http request option.
22412
- * @throws {RequiredError}
22413
- */
22414
- getSumupConnectUrl: (clubId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22415
- /**
22416
- * Get SumUp connection status for a club.
22417
- * @param {string} clubId
22418
- * @param {*} [options] Override http request option.
22419
- * @throws {RequiredError}
22420
- */
22421
- getSumupStatus: (clubId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22422
- /**
22423
- * List SumUp readers for a club.
22424
- * @param {string} clubId
22425
- * @param {*} [options] Override http request option.
22426
- * @throws {RequiredError}
22427
- */
22428
- listSumupReaders: (clubId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22429
- /**
22430
- * Pair a SumUp reader with a club.
22431
- * @param {string} clubId
22432
- * @param {SumupPairReaderRequest} sumupPairReaderRequest
22433
- * @param {*} [options] Override http request option.
22434
- * @throws {RequiredError}
22435
- */
22436
- pairSumupReader: (clubId: string, sumupPairReaderRequest: SumupPairReaderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22437
- /**
22438
- * Select a SumUp reader for a club.
22439
- * @param {string} clubId
22440
- * @param {string} readerId
22441
- * @param {*} [options] Override http request option.
22442
- * @throws {RequiredError}
22443
- */
22444
- selectSumupReader: (clubId: string, readerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22445
- };
22446
- /**
22447
- * SumUpManagerApi - functional programming interface
22448
- * @export
22449
- */
22450
- export declare const SumUpManagerApiFp: (configuration?: Configuration) => {
22451
- /**
22452
- * Disconnect SumUp account for a club.
22453
- * @param {string} clubId
22454
- * @param {*} [options] Override http request option.
22455
- * @throws {RequiredError}
22456
- */
22457
- disconnectSumup(clubId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
22458
- /**
22459
- * Start SumUp OAuth connection for a club.
22460
- * @param {string} clubId
22461
- * @param {*} [options] Override http request option.
22462
- * @throws {RequiredError}
22463
- */
22464
- getSumupConnectUrl(clubId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SumupConnectUrlResponse>>;
22465
- /**
22466
- * Get SumUp connection status for a club.
22467
- * @param {string} clubId
22468
- * @param {*} [options] Override http request option.
22469
- * @throws {RequiredError}
22470
- */
22471
- getSumupStatus(clubId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SumupAccountStatusResponse>>;
22472
- /**
22473
- * List SumUp readers for a club.
22474
- * @param {string} clubId
22475
- * @param {*} [options] Override http request option.
22476
- * @throws {RequiredError}
22477
- */
22478
- listSumupReaders(clubId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SumupReadersResponse>>;
22479
- /**
22480
- * Pair a SumUp reader with a club.
22481
- * @param {string} clubId
22482
- * @param {SumupPairReaderRequest} sumupPairReaderRequest
22483
- * @param {*} [options] Override http request option.
22484
- * @throws {RequiredError}
22485
- */
22486
- pairSumupReader(clubId: string, sumupPairReaderRequest: SumupPairReaderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SumupPairReaderResponse>>;
22487
- /**
22488
- * Select a SumUp reader for a club.
22489
- * @param {string} clubId
22490
- * @param {string} readerId
22491
- * @param {*} [options] Override http request option.
22492
- * @throws {RequiredError}
22493
- */
22494
- selectSumupReader(clubId: string, readerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
22495
- };
22496
- /**
22497
- * SumUpManagerApi - factory interface
22498
- * @export
22499
- */
22500
- export declare const SumUpManagerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
22501
- /**
22502
- * Disconnect SumUp account for a club.
22503
- * @param {SumUpManagerApiDisconnectSumupRequest} requestParameters Request parameters.
22504
- * @param {*} [options] Override http request option.
22505
- * @throws {RequiredError}
22506
- */
22507
- disconnectSumup(requestParameters: SumUpManagerApiDisconnectSumupRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
22508
- /**
22509
- * Start SumUp OAuth connection for a club.
22510
- * @param {SumUpManagerApiGetSumupConnectUrlRequest} requestParameters Request parameters.
22511
- * @param {*} [options] Override http request option.
22512
- * @throws {RequiredError}
22513
- */
22514
- getSumupConnectUrl(requestParameters: SumUpManagerApiGetSumupConnectUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<SumupConnectUrlResponse>;
22515
- /**
22516
- * Get SumUp connection status for a club.
22517
- * @param {SumUpManagerApiGetSumupStatusRequest} requestParameters Request parameters.
22518
- * @param {*} [options] Override http request option.
22519
- * @throws {RequiredError}
22520
- */
22521
- getSumupStatus(requestParameters: SumUpManagerApiGetSumupStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<SumupAccountStatusResponse>;
22522
- /**
22523
- * List SumUp readers for a club.
22524
- * @param {SumUpManagerApiListSumupReadersRequest} requestParameters Request parameters.
22525
- * @param {*} [options] Override http request option.
22526
- * @throws {RequiredError}
22527
- */
22528
- listSumupReaders(requestParameters: SumUpManagerApiListSumupReadersRequest, options?: RawAxiosRequestConfig): AxiosPromise<SumupReadersResponse>;
22529
- /**
22530
- * Pair a SumUp reader with a club.
22531
- * @param {SumUpManagerApiPairSumupReaderRequest} requestParameters Request parameters.
22532
- * @param {*} [options] Override http request option.
22533
- * @throws {RequiredError}
22534
- */
22535
- pairSumupReader(requestParameters: SumUpManagerApiPairSumupReaderRequest, options?: RawAxiosRequestConfig): AxiosPromise<SumupPairReaderResponse>;
22536
- /**
22537
- * Select a SumUp reader for a club.
22538
- * @param {SumUpManagerApiSelectSumupReaderRequest} requestParameters Request parameters.
22539
- * @param {*} [options] Override http request option.
22540
- * @throws {RequiredError}
22541
- */
22542
- selectSumupReader(requestParameters: SumUpManagerApiSelectSumupReaderRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
22543
- };
22544
- /**
22545
- * Request parameters for disconnectSumup operation in SumUpManagerApi.
22546
- * @export
22547
- * @interface SumUpManagerApiDisconnectSumupRequest
22548
- */
22549
- export interface SumUpManagerApiDisconnectSumupRequest {
22550
- /**
22551
- *
22552
- * @type {string}
22553
- * @memberof SumUpManagerApiDisconnectSumup
22554
- */
22555
- readonly clubId: string;
22556
- }
22557
- /**
22558
- * Request parameters for getSumupConnectUrl operation in SumUpManagerApi.
22559
- * @export
22560
- * @interface SumUpManagerApiGetSumupConnectUrlRequest
22561
- */
22562
- export interface SumUpManagerApiGetSumupConnectUrlRequest {
22563
- /**
22564
- *
22565
- * @type {string}
22566
- * @memberof SumUpManagerApiGetSumupConnectUrl
22567
- */
22568
- readonly clubId: string;
22569
- }
22570
- /**
22571
- * Request parameters for getSumupStatus operation in SumUpManagerApi.
22572
- * @export
22573
- * @interface SumUpManagerApiGetSumupStatusRequest
22574
- */
22575
- export interface SumUpManagerApiGetSumupStatusRequest {
22576
- /**
22577
- *
22578
- * @type {string}
22579
- * @memberof SumUpManagerApiGetSumupStatus
22580
- */
22581
- readonly clubId: string;
22582
- }
22583
- /**
22584
- * Request parameters for listSumupReaders operation in SumUpManagerApi.
22585
- * @export
22586
- * @interface SumUpManagerApiListSumupReadersRequest
22587
- */
22588
- export interface SumUpManagerApiListSumupReadersRequest {
22589
- /**
22590
- *
22591
- * @type {string}
22592
- * @memberof SumUpManagerApiListSumupReaders
22593
- */
22594
- readonly clubId: string;
22595
- }
22596
- /**
22597
- * Request parameters for pairSumupReader operation in SumUpManagerApi.
22598
- * @export
22599
- * @interface SumUpManagerApiPairSumupReaderRequest
22600
- */
22601
- export interface SumUpManagerApiPairSumupReaderRequest {
22602
- /**
22603
- *
22604
- * @type {string}
22605
- * @memberof SumUpManagerApiPairSumupReader
22606
- */
22607
- readonly clubId: string;
22608
- /**
22609
- *
22610
- * @type {SumupPairReaderRequest}
22611
- * @memberof SumUpManagerApiPairSumupReader
22612
- */
22613
- readonly sumupPairReaderRequest: SumupPairReaderRequest;
22614
- }
22615
- /**
22616
- * Request parameters for selectSumupReader operation in SumUpManagerApi.
22617
- * @export
22618
- * @interface SumUpManagerApiSelectSumupReaderRequest
22619
- */
22620
- export interface SumUpManagerApiSelectSumupReaderRequest {
22621
- /**
22622
- *
22623
- * @type {string}
22624
- * @memberof SumUpManagerApiSelectSumupReader
22625
- */
22626
- readonly clubId: string;
22627
- /**
22628
- *
22629
- * @type {string}
22630
- * @memberof SumUpManagerApiSelectSumupReader
22631
- */
22632
- readonly readerId: string;
22633
- }
22634
- /**
22635
- * SumUpManagerApi - object-oriented interface
22636
- * @export
22637
- * @class SumUpManagerApi
22638
- * @extends {BaseAPI}
22639
- */
22640
- export declare class SumUpManagerApi extends BaseAPI {
22641
- /**
22642
- * Disconnect SumUp account for a club.
22643
- * @param {SumUpManagerApiDisconnectSumupRequest} requestParameters Request parameters.
22644
- * @param {*} [options] Override http request option.
22645
- * @throws {RequiredError}
22646
- * @memberof SumUpManagerApi
22647
- */
22648
- disconnectSumup(requestParameters: SumUpManagerApiDisconnectSumupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
22649
- /**
22650
- * Start SumUp OAuth connection for a club.
22651
- * @param {SumUpManagerApiGetSumupConnectUrlRequest} requestParameters Request parameters.
22652
- * @param {*} [options] Override http request option.
22653
- * @throws {RequiredError}
22654
- * @memberof SumUpManagerApi
22655
- */
22656
- getSumupConnectUrl(requestParameters: SumUpManagerApiGetSumupConnectUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SumupConnectUrlResponse, any, {}>>;
22657
- /**
22658
- * Get SumUp connection status for a club.
22659
- * @param {SumUpManagerApiGetSumupStatusRequest} requestParameters Request parameters.
22660
- * @param {*} [options] Override http request option.
22661
- * @throws {RequiredError}
22662
- * @memberof SumUpManagerApi
22663
- */
22664
- getSumupStatus(requestParameters: SumUpManagerApiGetSumupStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SumupAccountStatusResponse, any, {}>>;
22665
- /**
22666
- * List SumUp readers for a club.
22667
- * @param {SumUpManagerApiListSumupReadersRequest} requestParameters Request parameters.
22668
- * @param {*} [options] Override http request option.
22669
- * @throws {RequiredError}
22670
- * @memberof SumUpManagerApi
22671
- */
22672
- listSumupReaders(requestParameters: SumUpManagerApiListSumupReadersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SumupReadersResponse, any, {}>>;
22673
- /**
22674
- * Pair a SumUp reader with a club.
22675
- * @param {SumUpManagerApiPairSumupReaderRequest} requestParameters Request parameters.
22676
- * @param {*} [options] Override http request option.
22677
- * @throws {RequiredError}
22678
- * @memberof SumUpManagerApi
22679
- */
22680
- pairSumupReader(requestParameters: SumUpManagerApiPairSumupReaderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SumupPairReaderResponse, any, {}>>;
22681
- /**
22682
- * Select a SumUp reader for a club.
22683
- * @param {SumUpManagerApiSelectSumupReaderRequest} requestParameters Request parameters.
22684
- * @param {*} [options] Override http request option.
22685
- * @throws {RequiredError}
22686
- * @memberof SumUpManagerApi
22687
- */
22688
- selectSumupReader(requestParameters: SumUpManagerApiSelectSumupReaderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
22689
- }
22690
21831
  /**
22691
21832
  * UserApi - axios parameter creator
22692
21833
  * @export