@tennac-booking/sdk 1.0.184 → 1.0.185

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 (51) hide show
  1. package/.openapi-generator/FILES +412 -429
  2. package/README.md +3 -27
  3. package/api.ts +160 -1551
  4. package/base.ts +1 -1
  5. package/common.ts +1 -1
  6. package/configuration.ts +1 -1
  7. package/dist/api.d.ts +188 -1085
  8. package/dist/api.js +19 -842
  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 +188 -1085
  16. package/dist/esm/api.js +15 -825
  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/JoinOpenBookingRequest.md +26 -0
  30. package/docs/UserClubMembership.md +2 -0
  31. package/docs/UserProfileResponse.md +2 -0
  32. package/index.ts +1 -1
  33. package/package.json +1 -1
  34. package/docs/CheckInPlayerSumupRequest.md +0 -22
  35. package/docs/CheckInPlayerSumupResponse.md +0 -24
  36. package/docs/CheckInSumupPaymentInfo.md +0 -26
  37. package/docs/PaymentIntentResult.md +0 -28
  38. package/docs/PaymentProviderType.md +0 -10
  39. package/docs/PaymentStatus.md +0 -14
  40. package/docs/PaymentsStaffApi.md +0 -124
  41. package/docs/SumUpApi.md +0 -63
  42. package/docs/SumUpManagerApi.md +0 -332
  43. package/docs/SumupAccountStatusResponse.md +0 -32
  44. package/docs/SumupCancelPaymentRequest.md +0 -20
  45. package/docs/SumupConnectUrlResponse.md +0 -20
  46. package/docs/SumupCreatePaymentRequest.md +0 -32
  47. package/docs/SumupOAuthCallbackResponse.md +0 -24
  48. package/docs/SumupPairReaderRequest.md +0 -22
  49. package/docs/SumupPairReaderResponse.md +0 -20
  50. package/docs/SumupReaderInfo.md +0 -34
  51. package/docs/SumupReadersResponse.md +0 -20
package/dist/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
@@ -11620,461 +11517,209 @@ export interface SubscriptionPlanResponse {
11620
11517
  /**
11621
11518
  *
11622
11519
  * @export
11623
- * @interface SumupAccountStatusResponse
11520
+ * @enum {string}
11521
+ */
11522
+ export declare const SurfaceType: {
11523
+ readonly Clay: "clay";
11524
+ readonly Grass: "grass";
11525
+ readonly Hard: "hard";
11526
+ readonly Turf: "turf";
11527
+ readonly Carpet: "carpet";
11528
+ readonly Wooden: "wooden";
11529
+ };
11530
+ export type SurfaceType = typeof SurfaceType[keyof typeof SurfaceType];
11531
+ /**
11532
+ *
11533
+ * @export
11534
+ * @interface Team
11624
11535
  */
11625
- export interface SumupAccountStatusResponse {
11536
+ export interface Team {
11626
11537
  /**
11627
11538
  *
11628
- * @type {boolean}
11629
- * @memberof SumupAccountStatusResponse
11539
+ * @type {string}
11540
+ * @memberof Team
11630
11541
  */
11631
- 'connected': boolean;
11542
+ 'name': string;
11632
11543
  /**
11633
11544
  *
11545
+ * @type {Array<EventUser>}
11546
+ * @memberof Team
11547
+ */
11548
+ 'players': Array<EventUser>;
11549
+ }
11550
+ /**
11551
+ *
11552
+ * @export
11553
+ * @interface TimeBounds
11554
+ */
11555
+ export interface TimeBounds {
11556
+ /**
11557
+ * Heure de début au format HH:mm
11634
11558
  * @type {string}
11635
- * @memberof SumupAccountStatusResponse
11559
+ * @memberof TimeBounds
11636
11560
  */
11637
- 'merchantCode'?: string;
11561
+ 'start': string;
11638
11562
  /**
11639
- *
11563
+ * Heure de fin au format HH:mm
11640
11564
  * @type {string}
11641
- * @memberof SumupAccountStatusResponse
11565
+ * @memberof TimeBounds
11642
11566
  */
11643
- 'readerId'?: string;
11567
+ 'end': string;
11568
+ }
11569
+ /**
11570
+ *
11571
+ * @export
11572
+ * @enum {string}
11573
+ */
11574
+ export declare const TrendDirection: {
11575
+ readonly Up: "up";
11576
+ readonly Down: "down";
11577
+ readonly Steady: "steady";
11578
+ };
11579
+ export type TrendDirection = typeof TrendDirection[keyof typeof TrendDirection];
11580
+ /**
11581
+ *
11582
+ * @export
11583
+ * @interface UpdateActuality200Response
11584
+ */
11585
+ export interface UpdateActuality200Response {
11644
11586
  /**
11645
11587
  *
11646
- * @type {string}
11647
- * @memberof SumupAccountStatusResponse
11588
+ * @type {any}
11589
+ * @memberof UpdateActuality200Response
11648
11590
  */
11649
- 'readerName'?: string;
11591
+ 'actuality': any;
11592
+ }
11593
+ /**
11594
+ *
11595
+ * @export
11596
+ * @interface UpdateClubAccessSettingsRequest
11597
+ */
11598
+ export interface UpdateClubAccessSettingsRequest {
11650
11599
  /**
11651
11600
  *
11652
- * @type {string}
11653
- * @memberof SumupAccountStatusResponse
11601
+ * @type {PartialPublicAccessSettings}
11602
+ * @memberof UpdateClubAccessSettingsRequest
11654
11603
  */
11655
- 'readerPairedAt'?: string;
11604
+ 'publicAccess'?: PartialPublicAccessSettings;
11656
11605
  /**
11657
11606
  *
11658
- * @type {string}
11659
- * @memberof SumupAccountStatusResponse
11607
+ * @type {PartialSchoolAccessSettings}
11608
+ * @memberof UpdateClubAccessSettingsRequest
11660
11609
  */
11661
- 'scope'?: string;
11610
+ 'schoolAccess'?: PartialSchoolAccessSettings;
11662
11611
  /**
11663
11612
  *
11664
- * @type {string}
11665
- * @memberof SumupAccountStatusResponse
11613
+ * @type {PartialHotelAccessSettings}
11614
+ * @memberof UpdateClubAccessSettingsRequest
11666
11615
  */
11667
- 'connectedAt'?: string;
11668
- }
11669
- /**
11670
- *
11671
- * @export
11672
- * @interface SumupCancelPaymentRequest
11673
- */
11674
- export interface SumupCancelPaymentRequest {
11616
+ 'hotelAccess'?: PartialHotelAccessSettings;
11675
11617
  /**
11676
11618
  *
11677
- * @type {string}
11678
- * @memberof SumupCancelPaymentRequest
11619
+ * @type {PartialPaymentRequirementsSettings}
11620
+ * @memberof UpdateClubAccessSettingsRequest
11679
11621
  */
11680
- 'checkoutId'?: string;
11622
+ 'paymentRequirements'?: PartialPaymentRequirementsSettings;
11681
11623
  }
11682
11624
  /**
11683
11625
  *
11684
11626
  * @export
11685
- * @interface SumupConnectUrlResponse
11627
+ * @interface UpdateClubDayScheduleRequest
11686
11628
  */
11687
- export interface SumupConnectUrlResponse {
11629
+ export interface UpdateClubDayScheduleRequest {
11688
11630
  /**
11689
11631
  *
11690
- * @type {string}
11691
- * @memberof SumupConnectUrlResponse
11632
+ * @type {Array<ClubDayInterval>}
11633
+ * @memberof UpdateClubDayScheduleRequest
11692
11634
  */
11693
- 'url': string;
11635
+ 'intervals': Array<ClubDayInterval>;
11694
11636
  }
11695
11637
  /**
11696
11638
  *
11697
11639
  * @export
11698
- * @interface SumupCreatePaymentRequest
11640
+ * @interface UpdateClubGeneralSettingsRequest
11699
11641
  */
11700
- export interface SumupCreatePaymentRequest {
11642
+ export interface UpdateClubGeneralSettingsRequest {
11701
11643
  /**
11702
11644
  *
11703
- * @type {number}
11704
- * @memberof SumupCreatePaymentRequest
11645
+ * @type {string}
11646
+ * @memberof UpdateClubGeneralSettingsRequest
11705
11647
  */
11706
- 'amountInCents': number;
11648
+ 'name'?: string;
11707
11649
  /**
11708
11650
  *
11709
11651
  * @type {string}
11710
- * @memberof SumupCreatePaymentRequest
11652
+ * @memberof UpdateClubGeneralSettingsRequest
11711
11653
  */
11712
- 'currency': string;
11654
+ 'email'?: string;
11713
11655
  /**
11714
11656
  *
11715
11657
  * @type {string}
11716
- * @memberof SumupCreatePaymentRequest
11658
+ * @memberof UpdateClubGeneralSettingsRequest
11717
11659
  */
11718
- 'readerId'?: string;
11660
+ 'phone'?: string;
11719
11661
  /**
11720
11662
  *
11721
11663
  * @type {string}
11722
- * @memberof SumupCreatePaymentRequest
11664
+ * @memberof UpdateClubGeneralSettingsRequest
11723
11665
  */
11724
- 'description'?: string;
11666
+ 'websiteUrl'?: string;
11725
11667
  /**
11726
11668
  *
11727
11669
  * @type {string}
11728
- * @memberof SumupCreatePaymentRequest
11670
+ * @memberof UpdateClubGeneralSettingsRequest
11729
11671
  */
11730
- 'reference'?: string;
11672
+ 'description'?: string;
11731
11673
  /**
11732
- * Construct a type with a set of properties K of type T
11733
- * @type {{ [key: string]: string; }}
11734
- * @memberof SumupCreatePaymentRequest
11674
+ *
11675
+ * @type {UpdateClubGeneralSettingsRequestLogo}
11676
+ * @memberof UpdateClubGeneralSettingsRequest
11735
11677
  */
11736
- 'metadata'?: {
11737
- [key: string]: string;
11738
- };
11678
+ 'logo'?: UpdateClubGeneralSettingsRequestLogo | null;
11739
11679
  /**
11740
11680
  *
11741
- * @type {string}
11742
- * @memberof SumupCreatePaymentRequest
11681
+ * @type {ClubLocationSettings}
11682
+ * @memberof UpdateClubGeneralSettingsRequest
11743
11683
  */
11744
- 'userId'?: string;
11684
+ 'location'?: ClubLocationSettings;
11745
11685
  }
11746
11686
  /**
11747
11687
  *
11748
11688
  * @export
11749
- * @interface SumupOAuthCallbackResponse
11689
+ * @interface UpdateClubGeneralSettingsRequestLogo
11750
11690
  */
11751
- export interface SumupOAuthCallbackResponse {
11691
+ export interface UpdateClubGeneralSettingsRequestLogo {
11752
11692
  /**
11753
11693
  *
11754
- * @type {string}
11755
- * @memberof SumupOAuthCallbackResponse
11694
+ * @type {ImageContextType}
11695
+ * @memberof UpdateClubGeneralSettingsRequestLogo
11756
11696
  */
11757
- 'clubId': string;
11697
+ 'type': ImageContextType;
11758
11698
  /**
11759
11699
  *
11760
11700
  * @type {string}
11761
- * @memberof SumupOAuthCallbackResponse
11701
+ * @memberof UpdateClubGeneralSettingsRequestLogo
11762
11702
  */
11763
- 'merchantCode': string;
11703
+ 'imageKey': string;
11764
11704
  /**
11765
- *
11766
- * @type {string}
11767
- * @memberof SumupOAuthCallbackResponse
11705
+ * Construct a type with a set of properties K of type T
11706
+ * @type {{ [key: string]: any; }}
11707
+ * @memberof UpdateClubGeneralSettingsRequestLogo
11768
11708
  */
11769
- 'scope'?: string;
11709
+ 'dbContext'?: {
11710
+ [key: string]: any;
11711
+ } | null;
11770
11712
  }
11771
11713
  /**
11772
11714
  *
11773
11715
  * @export
11774
- * @interface SumupPairReaderRequest
11716
+ * @interface UpdateClubHoursSettingsRequest
11775
11717
  */
11776
- export interface SumupPairReaderRequest {
11718
+ export interface UpdateClubHoursSettingsRequest {
11777
11719
  /**
11778
11720
  *
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;
12059
- /**
12060
- * Construct a type with a set of properties K of type T
12061
- * @type {{ [key: string]: any; }}
12062
- * @memberof UpdateClubGeneralSettingsRequestLogo
12063
- */
12064
- 'dbContext'?: {
12065
- [key: string]: any;
12066
- } | null;
12067
- }
12068
- /**
12069
- *
12070
- * @export
12071
- * @interface UpdateClubHoursSettingsRequest
12072
- */
12073
- export interface UpdateClubHoursSettingsRequest {
12074
- /**
12075
- *
12076
- * @type {PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined}
12077
- * @memberof UpdateClubHoursSettingsRequest
11721
+ * @type {PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined}
11722
+ * @memberof UpdateClubHoursSettingsRequest
12078
11723
  */
12079
11724
  'schedule'?: PartialRecordWeekdayKeyClubDayScheduleOrNullOrUndefined;
12080
11725
  /**
@@ -13042,6 +12687,12 @@ export interface UserClubMembership {
13042
12687
  * @memberof UserClubMembership
13043
12688
  */
13044
12689
  'clubPicture': string | null;
12690
+ /**
12691
+ *
12692
+ * @type {Array<string>}
12693
+ * @memberof UserClubMembership
12694
+ */
12695
+ 'bannerPictures'?: Array<string>;
13045
12696
  /**
13046
12697
  *
13047
12698
  * @type {string}
@@ -13720,6 +13371,12 @@ export interface UserProfileResponse {
13720
13371
  * @memberof UserProfileResponse
13721
13372
  */
13722
13373
  'clubs'?: Array<UserClubMembership>;
13374
+ /**
13375
+ *
13376
+ * @type {Array<ClubSummary>}
13377
+ * @memberof UserProfileResponse
13378
+ */
13379
+ 'favoriteClubsDetails'?: Array<ClubSummary>;
13723
13380
  /**
13724
13381
  *
13725
13382
  * @type {Array<ClubSummary>}
@@ -14143,11 +13800,11 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
14143
13800
  /**
14144
13801
  *
14145
13802
  * @param {string} bookingId
14146
- * @param {JoinOpenEventBookingRequest} joinOpenEventBookingRequest
13803
+ * @param {JoinOpenBookingRequest} joinOpenBookingRequest
14147
13804
  * @param {*} [options] Override http request option.
14148
13805
  * @throws {RequiredError}
14149
13806
  */
14150
- joinOpenBooking: (bookingId: string, joinOpenEventBookingRequest: JoinOpenEventBookingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13807
+ joinOpenBooking: (bookingId: string, joinOpenBookingRequest: JoinOpenBookingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14151
13808
  /**
14152
13809
  *
14153
13810
  * @param {string} bookingId
@@ -14239,11 +13896,11 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
14239
13896
  /**
14240
13897
  *
14241
13898
  * @param {string} bookingId
14242
- * @param {JoinOpenEventBookingRequest} joinOpenEventBookingRequest
13899
+ * @param {JoinOpenBookingRequest} joinOpenBookingRequest
14243
13900
  * @param {*} [options] Override http request option.
14244
13901
  * @throws {RequiredError}
14245
13902
  */
14246
- joinOpenBooking(bookingId: string, joinOpenEventBookingRequest: JoinOpenEventBookingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinOpenBookingResponse>>;
13903
+ joinOpenBooking(bookingId: string, joinOpenBookingRequest: JoinOpenBookingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinOpenBookingResponse>>;
14247
13904
  /**
14248
13905
  *
14249
13906
  * @param {string} bookingId
@@ -14538,10 +14195,10 @@ export interface BookingsApiJoinOpenBookingRequest {
14538
14195
  readonly bookingId: string;
14539
14196
  /**
14540
14197
  *
14541
- * @type {JoinOpenEventBookingRequest}
14198
+ * @type {JoinOpenBookingRequest}
14542
14199
  * @memberof BookingsApiJoinOpenBooking
14543
14200
  */
14544
- readonly joinOpenEventBookingRequest: JoinOpenEventBookingRequest;
14201
+ readonly joinOpenBookingRequest: JoinOpenBookingRequest;
14545
14202
  }
14546
14203
  /**
14547
14204
  * Request parameters for leaveOpenBooking operation in BookingsApi.
@@ -14776,21 +14433,13 @@ export declare class BookingsManagerApi extends BaseAPI {
14776
14433
  */
14777
14434
  export declare const BookingsStaffApiAxiosParamCreator: (configuration?: Configuration) => {
14778
14435
  /**
14779
- * Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
14436
+ * Check-in d\'un joueur (paiement en ligne ou sur place)
14780
14437
  * @param {string} bookingId
14781
14438
  * @param {CheckInPlayerRequest} checkInPlayerRequest
14782
14439
  * @param {*} [options] Override http request option.
14783
14440
  * @throws {RequiredError}
14784
14441
  */
14785
14442
  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
14443
  /**
14795
14444
  * Créer une réservation pour un joueur depuis l\'espace staff
14796
14445
  * @param {StaffCreateBookingRequest} staffCreateBookingRequest
@@ -14851,21 +14500,13 @@ export declare const BookingsStaffApiAxiosParamCreator: (configuration?: Configu
14851
14500
  */
14852
14501
  export declare const BookingsStaffApiFp: (configuration?: Configuration) => {
14853
14502
  /**
14854
- * Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
14503
+ * Check-in d\'un joueur (paiement en ligne ou sur place)
14855
14504
  * @param {string} bookingId
14856
14505
  * @param {CheckInPlayerRequest} checkInPlayerRequest
14857
14506
  * @param {*} [options] Override http request option.
14858
14507
  * @throws {RequiredError}
14859
14508
  */
14860
14509
  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
14510
  /**
14870
14511
  * Créer une réservation pour un joueur depuis l\'espace staff
14871
14512
  * @param {StaffCreateBookingRequest} staffCreateBookingRequest
@@ -14926,19 +14567,12 @@ export declare const BookingsStaffApiFp: (configuration?: Configuration) => {
14926
14567
  */
14927
14568
  export declare const BookingsStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
14928
14569
  /**
14929
- * Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
14570
+ * Check-in d\'un joueur (paiement en ligne ou sur place)
14930
14571
  * @param {BookingsStaffApiCheckInPlayerRequest} requestParameters Request parameters.
14931
14572
  * @param {*} [options] Override http request option.
14932
14573
  * @throws {RequiredError}
14933
14574
  */
14934
14575
  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
14576
  /**
14943
14577
  * Créer une réservation pour un joueur depuis l\'espace staff
14944
14578
  * @param {BookingsStaffApiCreateStaffBookingRequest} requestParameters Request parameters.
@@ -15008,25 +14642,6 @@ export interface BookingsStaffApiCheckInPlayerRequest {
15008
14642
  */
15009
14643
  readonly checkInPlayerRequest: CheckInPlayerRequest;
15010
14644
  }
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
14645
  /**
15031
14646
  * Request parameters for createStaffBooking operation in BookingsStaffApi.
15032
14647
  * @export
@@ -15150,21 +14765,13 @@ export interface BookingsStaffApiListClubBookingsRequest {
15150
14765
  */
15151
14766
  export declare class BookingsStaffApi extends BaseAPI {
15152
14767
  /**
15153
- * Check-in d\'un joueur sans SumUp (paiement en ligne ou sur place)
14768
+ * Check-in d\'un joueur (paiement en ligne ou sur place)
15154
14769
  * @param {BookingsStaffApiCheckInPlayerRequest} requestParameters Request parameters.
15155
14770
  * @param {*} [options] Override http request option.
15156
14771
  * @throws {RequiredError}
15157
14772
  * @memberof BookingsStaffApi
15158
14773
  */
15159
14774
  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
14775
  /**
15169
14776
  * Créer une réservation pour un joueur depuis l\'espace staff
15170
14777
  * @param {BookingsStaffApiCreateStaffBookingRequest} requestParameters Request parameters.
@@ -21241,170 +20848,36 @@ export declare const ImagesApiFactory: (configuration?: Configuration, basePath?
21241
20848
  * @param {*} [options] Override http request option.
21242
20849
  * @throws {RequiredError}
21243
20850
  */
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
- }
20851
+ cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImageCleanupResponse>;
20852
+ };
21366
20853
  /**
21367
- * Request parameters for createSumupPayment operation in PaymentsStaffApi.
20854
+ * Request parameters for cleanupImages operation in ImagesApi.
21368
20855
  * @export
21369
- * @interface PaymentsStaffApiCreateSumupPaymentRequest
20856
+ * @interface ImagesApiCleanupImagesRequest
21370
20857
  */
21371
- export interface PaymentsStaffApiCreateSumupPaymentRequest {
21372
- /**
21373
- *
21374
- * @type {string}
21375
- * @memberof PaymentsStaffApiCreateSumupPayment
21376
- */
21377
- readonly clubId: string;
20858
+ export interface ImagesApiCleanupImagesRequest {
21378
20859
  /**
21379
20860
  *
21380
- * @type {SumupCreatePaymentRequest}
21381
- * @memberof PaymentsStaffApiCreateSumupPayment
20861
+ * @type {ImageCleanupRequestBody}
20862
+ * @memberof ImagesApiCleanupImages
21382
20863
  */
21383
- readonly sumupCreatePaymentRequest: SumupCreatePaymentRequest;
20864
+ readonly imageCleanupRequestBody: ImageCleanupRequestBody;
21384
20865
  }
21385
20866
  /**
21386
- * PaymentsStaffApi - object-oriented interface
20867
+ * ImagesApi - object-oriented interface
21387
20868
  * @export
21388
- * @class PaymentsStaffApi
20869
+ * @class ImagesApi
21389
20870
  * @extends {BaseAPI}
21390
20871
  */
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, {}>>;
20872
+ export declare class ImagesApi extends BaseAPI {
21400
20873
  /**
21401
- * Start a SumUp reader checkout (manual payment trigger).
21402
- * @param {PaymentsStaffApiCreateSumupPaymentRequest} requestParameters Request parameters.
20874
+ *
20875
+ * @param {ImagesApiCleanupImagesRequest} requestParameters Request parameters.
21403
20876
  * @param {*} [options] Override http request option.
21404
20877
  * @throws {RequiredError}
21405
- * @memberof PaymentsStaffApi
20878
+ * @memberof ImagesApi
21406
20879
  */
21407
- createSumupPayment(requestParameters: PaymentsStaffApiCreateSumupPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentIntentResult, any, {}>>;
20880
+ cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageCleanupResponse, any, {}>>;
21408
20881
  }
21409
20882
  /**
21410
20883
  * PublicEmailApi - axios parameter creator
@@ -22317,376 +21790,6 @@ export declare class SubscriptionsUserApi extends BaseAPI {
22317
21790
  */
22318
21791
  subscribe(requestParameters: SubscriptionsUserApiSubscribeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SubscriptionMutationResponse, any, {}>>;
22319
21792
  }
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
21793
  /**
22691
21794
  * UserApi - axios parameter creator
22692
21795
  * @export