@tennac-booking/sdk 1.0.193 → 1.0.195
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +430 -425
- package/README.md +16 -2
- package/api.ts +847 -13
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +523 -13
- package/dist/api.js +596 -6
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +523 -13
- package/dist/esm/api.js +587 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/BookingSummary.md +4 -0
- package/docs/ClubResponse.md +0 -2
- package/docs/EventBookingDetailSummary.md +2 -0
- package/docs/Health200Response.md +22 -0
- package/docs/JobResult.md +24 -0
- package/docs/JobsApi.md +367 -0
- package/docs/MyClubInfosResponse.md +0 -2
- package/docs/StaffEventsPaginatedResponse.md +26 -0
- package/docs/WaitListEntryWithPlayer.md +44 -0
- package/docs/WaitListPlayer.md +28 -0
- package/docs/WaitListPlayersListResponse.md +22 -0
- package/docs/WaitListStaffApi.md +55 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* openapi.json
|
|
5
5
|
* Pandook API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.195
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -61,6 +61,11 @@ export const BookingStatus = {
|
|
|
61
61
|
Canceled: 'canceled',
|
|
62
62
|
NoShow: 'no-show'
|
|
63
63
|
};
|
|
64
|
+
export const BookingSummaryUserParticipationStatusEnum = {
|
|
65
|
+
Participant: 'participant',
|
|
66
|
+
WaitingJoinPayment: 'waitingJoinPayment',
|
|
67
|
+
Waitlist: 'waitlist'
|
|
68
|
+
};
|
|
64
69
|
export const CaptureResultTypeEnum = {
|
|
65
70
|
CreatorPayment: 'creator_payment',
|
|
66
71
|
PlayerPayment: 'player_payment'
|
|
@@ -127,6 +132,11 @@ export const DiscountType = {
|
|
|
127
132
|
Percentage: 'percentage',
|
|
128
133
|
OffPeak: 'off_peak'
|
|
129
134
|
};
|
|
135
|
+
export const EventBookingDetailSummaryUserParticipationStatusEnum = {
|
|
136
|
+
Participant: 'participant',
|
|
137
|
+
WaitingJoinPayment: 'waitingJoinPayment',
|
|
138
|
+
Waitlist: 'waitlist'
|
|
139
|
+
};
|
|
130
140
|
/**
|
|
131
141
|
*
|
|
132
142
|
* @export
|
|
@@ -423,6 +433,11 @@ export const VisibilityType = {
|
|
|
423
433
|
Private: 'private',
|
|
424
434
|
Invitation: 'invitation'
|
|
425
435
|
};
|
|
436
|
+
export const WaitListEntryWithPlayerTargetTypeEnum = {
|
|
437
|
+
Event: 'event',
|
|
438
|
+
Booking: 'booking',
|
|
439
|
+
EventBooking: 'event_booking'
|
|
440
|
+
};
|
|
426
441
|
export const WaitListResponseTargetTypeEnum = {
|
|
427
442
|
Event: 'event',
|
|
428
443
|
Booking: 'booking',
|
|
@@ -11626,6 +11641,512 @@ export class ImagesApi extends BaseAPI {
|
|
|
11626
11641
|
return ImagesApiFp(this.configuration).cleanupImages(requestParameters.imageCleanupRequestBody, options).then((request) => request(this.axios, this.basePath));
|
|
11627
11642
|
}
|
|
11628
11643
|
}
|
|
11644
|
+
/**
|
|
11645
|
+
* JobsApi - axios parameter creator
|
|
11646
|
+
* @export
|
|
11647
|
+
*/
|
|
11648
|
+
export const JobsApiAxiosParamCreator = function (configuration) {
|
|
11649
|
+
return {
|
|
11650
|
+
/**
|
|
11651
|
+
* Job: Capturer les autorisations de paiement qui expirent bientôt Fréquence recommandée: Toutes les 30 minutes
|
|
11652
|
+
* @summary Capture les autorisations Stripe qui expirent dans moins de 4h
|
|
11653
|
+
* @param {*} [options] Override http request option.
|
|
11654
|
+
* @throws {RequiredError}
|
|
11655
|
+
*/
|
|
11656
|
+
captureExpiringAuthorizations: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
11657
|
+
const localVarPath = `/api/jobs/capture-expiring-authorizations`;
|
|
11658
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11659
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11660
|
+
let baseOptions;
|
|
11661
|
+
if (configuration) {
|
|
11662
|
+
baseOptions = configuration.baseOptions;
|
|
11663
|
+
}
|
|
11664
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
11665
|
+
const localVarHeaderParameter = {};
|
|
11666
|
+
const localVarQueryParameter = {};
|
|
11667
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11668
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11669
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11670
|
+
return {
|
|
11671
|
+
url: toPathString(localVarUrlObj),
|
|
11672
|
+
options: localVarRequestOptions,
|
|
11673
|
+
};
|
|
11674
|
+
}),
|
|
11675
|
+
/**
|
|
11676
|
+
* Job: Capturer les paiements pour les réservations passées Fréquence recommandée: Toutes les heures
|
|
11677
|
+
* @summary Capture les paiements autorisés pour les réservations passées
|
|
11678
|
+
* @param {*} [options] Override http request option.
|
|
11679
|
+
* @throws {RequiredError}
|
|
11680
|
+
*/
|
|
11681
|
+
capturePastReservations: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
11682
|
+
const localVarPath = `/api/jobs/capture-past-reservations`;
|
|
11683
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11684
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11685
|
+
let baseOptions;
|
|
11686
|
+
if (configuration) {
|
|
11687
|
+
baseOptions = configuration.baseOptions;
|
|
11688
|
+
}
|
|
11689
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
11690
|
+
const localVarHeaderParameter = {};
|
|
11691
|
+
const localVarQueryParameter = {};
|
|
11692
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11693
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11694
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11695
|
+
return {
|
|
11696
|
+
url: toPathString(localVarUrlObj),
|
|
11697
|
+
options: localVarRequestOptions,
|
|
11698
|
+
};
|
|
11699
|
+
}),
|
|
11700
|
+
/**
|
|
11701
|
+
* Job: Expirer les réservations en attente de paiement Fréquence recommandée: Toutes les minutes
|
|
11702
|
+
* @summary Expire les réservations en attente de paiement
|
|
11703
|
+
* @param {*} [options] Override http request option.
|
|
11704
|
+
* @throws {RequiredError}
|
|
11705
|
+
*/
|
|
11706
|
+
expireBookingWaitingPayments: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
11707
|
+
const localVarPath = `/api/jobs/expire-booking-waiting-payments`;
|
|
11708
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11709
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11710
|
+
let baseOptions;
|
|
11711
|
+
if (configuration) {
|
|
11712
|
+
baseOptions = configuration.baseOptions;
|
|
11713
|
+
}
|
|
11714
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
11715
|
+
const localVarHeaderParameter = {};
|
|
11716
|
+
const localVarQueryParameter = {};
|
|
11717
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11718
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11719
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11720
|
+
return {
|
|
11721
|
+
url: toPathString(localVarUrlObj),
|
|
11722
|
+
options: localVarRequestOptions,
|
|
11723
|
+
};
|
|
11724
|
+
}),
|
|
11725
|
+
/**
|
|
11726
|
+
* Job: Expirer les paiements en attente sur la waitlist Fréquence recommandée: Toutes les minutes
|
|
11727
|
+
* @summary Expire les paiements en attente sur la waitlist
|
|
11728
|
+
* @param {*} [options] Override http request option.
|
|
11729
|
+
* @throws {RequiredError}
|
|
11730
|
+
*/
|
|
11731
|
+
expireWaitlistPayments: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
11732
|
+
const localVarPath = `/api/jobs/expire-waitlist-payments`;
|
|
11733
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11734
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11735
|
+
let baseOptions;
|
|
11736
|
+
if (configuration) {
|
|
11737
|
+
baseOptions = configuration.baseOptions;
|
|
11738
|
+
}
|
|
11739
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
11740
|
+
const localVarHeaderParameter = {};
|
|
11741
|
+
const localVarQueryParameter = {};
|
|
11742
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11743
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11744
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11745
|
+
return {
|
|
11746
|
+
url: toPathString(localVarUrlObj),
|
|
11747
|
+
options: localVarRequestOptions,
|
|
11748
|
+
};
|
|
11749
|
+
}),
|
|
11750
|
+
/**
|
|
11751
|
+
* Route de santé pour vérifier que le service jobs est opérationnel
|
|
11752
|
+
* @summary Health check pour les jobs
|
|
11753
|
+
* @param {*} [options] Override http request option.
|
|
11754
|
+
* @throws {RequiredError}
|
|
11755
|
+
*/
|
|
11756
|
+
health: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
11757
|
+
const localVarPath = `/api/jobs/health`;
|
|
11758
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11759
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11760
|
+
let baseOptions;
|
|
11761
|
+
if (configuration) {
|
|
11762
|
+
baseOptions = configuration.baseOptions;
|
|
11763
|
+
}
|
|
11764
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
11765
|
+
const localVarHeaderParameter = {};
|
|
11766
|
+
const localVarQueryParameter = {};
|
|
11767
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11768
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11769
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11770
|
+
return {
|
|
11771
|
+
url: toPathString(localVarUrlObj),
|
|
11772
|
+
options: localVarRequestOptions,
|
|
11773
|
+
};
|
|
11774
|
+
}),
|
|
11775
|
+
/**
|
|
11776
|
+
* Job: Maintenir les créneaux (slots) Fréquence recommandée: Une fois par jour (2h du matin)
|
|
11777
|
+
* @summary Génère les créneaux futurs et nettoie les anciens
|
|
11778
|
+
* @param {*} [options] Override http request option.
|
|
11779
|
+
* @throws {RequiredError}
|
|
11780
|
+
*/
|
|
11781
|
+
maintainSlots: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
11782
|
+
const localVarPath = `/api/jobs/maintain-slots`;
|
|
11783
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11784
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11785
|
+
let baseOptions;
|
|
11786
|
+
if (configuration) {
|
|
11787
|
+
baseOptions = configuration.baseOptions;
|
|
11788
|
+
}
|
|
11789
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
11790
|
+
const localVarHeaderParameter = {};
|
|
11791
|
+
const localVarQueryParameter = {};
|
|
11792
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11793
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11794
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11795
|
+
return {
|
|
11796
|
+
url: toPathString(localVarUrlObj),
|
|
11797
|
+
options: localVarRequestOptions,
|
|
11798
|
+
};
|
|
11799
|
+
}),
|
|
11800
|
+
/**
|
|
11801
|
+
* Job: Libérer les anciennes réservations Fréquence recommandée: Toutes les minutes
|
|
11802
|
+
* @summary Libère les anciennes réservations terminées
|
|
11803
|
+
* @param {*} [options] Override http request option.
|
|
11804
|
+
* @throws {RequiredError}
|
|
11805
|
+
*/
|
|
11806
|
+
releaseOldBookings: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
11807
|
+
const localVarPath = `/api/jobs/release-old-bookings`;
|
|
11808
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11809
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11810
|
+
let baseOptions;
|
|
11811
|
+
if (configuration) {
|
|
11812
|
+
baseOptions = configuration.baseOptions;
|
|
11813
|
+
}
|
|
11814
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
11815
|
+
const localVarHeaderParameter = {};
|
|
11816
|
+
const localVarQueryParameter = {};
|
|
11817
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11818
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11819
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11820
|
+
return {
|
|
11821
|
+
url: toPathString(localVarUrlObj),
|
|
11822
|
+
options: localVarRequestOptions,
|
|
11823
|
+
};
|
|
11824
|
+
}),
|
|
11825
|
+
/**
|
|
11826
|
+
* Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
|
|
11827
|
+
* @summary Envoie des emails de rappel 24h avant les réservations et événements
|
|
11828
|
+
* @param {*} [options] Override http request option.
|
|
11829
|
+
* @throws {RequiredError}
|
|
11830
|
+
*/
|
|
11831
|
+
sendBookingReminders: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
11832
|
+
const localVarPath = `/api/jobs/send-booking-reminders`;
|
|
11833
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11834
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11835
|
+
let baseOptions;
|
|
11836
|
+
if (configuration) {
|
|
11837
|
+
baseOptions = configuration.baseOptions;
|
|
11838
|
+
}
|
|
11839
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
11840
|
+
const localVarHeaderParameter = {};
|
|
11841
|
+
const localVarQueryParameter = {};
|
|
11842
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11843
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11844
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11845
|
+
return {
|
|
11846
|
+
url: toPathString(localVarUrlObj),
|
|
11847
|
+
options: localVarRequestOptions,
|
|
11848
|
+
};
|
|
11849
|
+
}),
|
|
11850
|
+
};
|
|
11851
|
+
};
|
|
11852
|
+
/**
|
|
11853
|
+
* JobsApi - functional programming interface
|
|
11854
|
+
* @export
|
|
11855
|
+
*/
|
|
11856
|
+
export const JobsApiFp = function (configuration) {
|
|
11857
|
+
const localVarAxiosParamCreator = JobsApiAxiosParamCreator(configuration);
|
|
11858
|
+
return {
|
|
11859
|
+
/**
|
|
11860
|
+
* Job: Capturer les autorisations de paiement qui expirent bientôt Fréquence recommandée: Toutes les 30 minutes
|
|
11861
|
+
* @summary Capture les autorisations Stripe qui expirent dans moins de 4h
|
|
11862
|
+
* @param {*} [options] Override http request option.
|
|
11863
|
+
* @throws {RequiredError}
|
|
11864
|
+
*/
|
|
11865
|
+
captureExpiringAuthorizations(options) {
|
|
11866
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11867
|
+
var _a, _b, _c;
|
|
11868
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.captureExpiringAuthorizations(options);
|
|
11869
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11870
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['JobsApi.captureExpiringAuthorizations']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11871
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11872
|
+
});
|
|
11873
|
+
},
|
|
11874
|
+
/**
|
|
11875
|
+
* Job: Capturer les paiements pour les réservations passées Fréquence recommandée: Toutes les heures
|
|
11876
|
+
* @summary Capture les paiements autorisés pour les réservations passées
|
|
11877
|
+
* @param {*} [options] Override http request option.
|
|
11878
|
+
* @throws {RequiredError}
|
|
11879
|
+
*/
|
|
11880
|
+
capturePastReservations(options) {
|
|
11881
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11882
|
+
var _a, _b, _c;
|
|
11883
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.capturePastReservations(options);
|
|
11884
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11885
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['JobsApi.capturePastReservations']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11886
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11887
|
+
});
|
|
11888
|
+
},
|
|
11889
|
+
/**
|
|
11890
|
+
* Job: Expirer les réservations en attente de paiement Fréquence recommandée: Toutes les minutes
|
|
11891
|
+
* @summary Expire les réservations en attente de paiement
|
|
11892
|
+
* @param {*} [options] Override http request option.
|
|
11893
|
+
* @throws {RequiredError}
|
|
11894
|
+
*/
|
|
11895
|
+
expireBookingWaitingPayments(options) {
|
|
11896
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11897
|
+
var _a, _b, _c;
|
|
11898
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.expireBookingWaitingPayments(options);
|
|
11899
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11900
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['JobsApi.expireBookingWaitingPayments']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11901
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11902
|
+
});
|
|
11903
|
+
},
|
|
11904
|
+
/**
|
|
11905
|
+
* Job: Expirer les paiements en attente sur la waitlist Fréquence recommandée: Toutes les minutes
|
|
11906
|
+
* @summary Expire les paiements en attente sur la waitlist
|
|
11907
|
+
* @param {*} [options] Override http request option.
|
|
11908
|
+
* @throws {RequiredError}
|
|
11909
|
+
*/
|
|
11910
|
+
expireWaitlistPayments(options) {
|
|
11911
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11912
|
+
var _a, _b, _c;
|
|
11913
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.expireWaitlistPayments(options);
|
|
11914
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11915
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['JobsApi.expireWaitlistPayments']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11916
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11917
|
+
});
|
|
11918
|
+
},
|
|
11919
|
+
/**
|
|
11920
|
+
* Route de santé pour vérifier que le service jobs est opérationnel
|
|
11921
|
+
* @summary Health check pour les jobs
|
|
11922
|
+
* @param {*} [options] Override http request option.
|
|
11923
|
+
* @throws {RequiredError}
|
|
11924
|
+
*/
|
|
11925
|
+
health(options) {
|
|
11926
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11927
|
+
var _a, _b, _c;
|
|
11928
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.health(options);
|
|
11929
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11930
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['JobsApi.health']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11931
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11932
|
+
});
|
|
11933
|
+
},
|
|
11934
|
+
/**
|
|
11935
|
+
* Job: Maintenir les créneaux (slots) Fréquence recommandée: Une fois par jour (2h du matin)
|
|
11936
|
+
* @summary Génère les créneaux futurs et nettoie les anciens
|
|
11937
|
+
* @param {*} [options] Override http request option.
|
|
11938
|
+
* @throws {RequiredError}
|
|
11939
|
+
*/
|
|
11940
|
+
maintainSlots(options) {
|
|
11941
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11942
|
+
var _a, _b, _c;
|
|
11943
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.maintainSlots(options);
|
|
11944
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11945
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['JobsApi.maintainSlots']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11946
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11947
|
+
});
|
|
11948
|
+
},
|
|
11949
|
+
/**
|
|
11950
|
+
* Job: Libérer les anciennes réservations Fréquence recommandée: Toutes les minutes
|
|
11951
|
+
* @summary Libère les anciennes réservations terminées
|
|
11952
|
+
* @param {*} [options] Override http request option.
|
|
11953
|
+
* @throws {RequiredError}
|
|
11954
|
+
*/
|
|
11955
|
+
releaseOldBookings(options) {
|
|
11956
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11957
|
+
var _a, _b, _c;
|
|
11958
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.releaseOldBookings(options);
|
|
11959
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11960
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['JobsApi.releaseOldBookings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11961
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11962
|
+
});
|
|
11963
|
+
},
|
|
11964
|
+
/**
|
|
11965
|
+
* Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
|
|
11966
|
+
* @summary Envoie des emails de rappel 24h avant les réservations et événements
|
|
11967
|
+
* @param {*} [options] Override http request option.
|
|
11968
|
+
* @throws {RequiredError}
|
|
11969
|
+
*/
|
|
11970
|
+
sendBookingReminders(options) {
|
|
11971
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11972
|
+
var _a, _b, _c;
|
|
11973
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.sendBookingReminders(options);
|
|
11974
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11975
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['JobsApi.sendBookingReminders']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11976
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11977
|
+
});
|
|
11978
|
+
},
|
|
11979
|
+
};
|
|
11980
|
+
};
|
|
11981
|
+
/**
|
|
11982
|
+
* JobsApi - factory interface
|
|
11983
|
+
* @export
|
|
11984
|
+
*/
|
|
11985
|
+
export const JobsApiFactory = function (configuration, basePath, axios) {
|
|
11986
|
+
const localVarFp = JobsApiFp(configuration);
|
|
11987
|
+
return {
|
|
11988
|
+
/**
|
|
11989
|
+
* Job: Capturer les autorisations de paiement qui expirent bientôt Fréquence recommandée: Toutes les 30 minutes
|
|
11990
|
+
* @summary Capture les autorisations Stripe qui expirent dans moins de 4h
|
|
11991
|
+
* @param {*} [options] Override http request option.
|
|
11992
|
+
* @throws {RequiredError}
|
|
11993
|
+
*/
|
|
11994
|
+
captureExpiringAuthorizations(options) {
|
|
11995
|
+
return localVarFp.captureExpiringAuthorizations(options).then((request) => request(axios, basePath));
|
|
11996
|
+
},
|
|
11997
|
+
/**
|
|
11998
|
+
* Job: Capturer les paiements pour les réservations passées Fréquence recommandée: Toutes les heures
|
|
11999
|
+
* @summary Capture les paiements autorisés pour les réservations passées
|
|
12000
|
+
* @param {*} [options] Override http request option.
|
|
12001
|
+
* @throws {RequiredError}
|
|
12002
|
+
*/
|
|
12003
|
+
capturePastReservations(options) {
|
|
12004
|
+
return localVarFp.capturePastReservations(options).then((request) => request(axios, basePath));
|
|
12005
|
+
},
|
|
12006
|
+
/**
|
|
12007
|
+
* Job: Expirer les réservations en attente de paiement Fréquence recommandée: Toutes les minutes
|
|
12008
|
+
* @summary Expire les réservations en attente de paiement
|
|
12009
|
+
* @param {*} [options] Override http request option.
|
|
12010
|
+
* @throws {RequiredError}
|
|
12011
|
+
*/
|
|
12012
|
+
expireBookingWaitingPayments(options) {
|
|
12013
|
+
return localVarFp.expireBookingWaitingPayments(options).then((request) => request(axios, basePath));
|
|
12014
|
+
},
|
|
12015
|
+
/**
|
|
12016
|
+
* Job: Expirer les paiements en attente sur la waitlist Fréquence recommandée: Toutes les minutes
|
|
12017
|
+
* @summary Expire les paiements en attente sur la waitlist
|
|
12018
|
+
* @param {*} [options] Override http request option.
|
|
12019
|
+
* @throws {RequiredError}
|
|
12020
|
+
*/
|
|
12021
|
+
expireWaitlistPayments(options) {
|
|
12022
|
+
return localVarFp.expireWaitlistPayments(options).then((request) => request(axios, basePath));
|
|
12023
|
+
},
|
|
12024
|
+
/**
|
|
12025
|
+
* Route de santé pour vérifier que le service jobs est opérationnel
|
|
12026
|
+
* @summary Health check pour les jobs
|
|
12027
|
+
* @param {*} [options] Override http request option.
|
|
12028
|
+
* @throws {RequiredError}
|
|
12029
|
+
*/
|
|
12030
|
+
health(options) {
|
|
12031
|
+
return localVarFp.health(options).then((request) => request(axios, basePath));
|
|
12032
|
+
},
|
|
12033
|
+
/**
|
|
12034
|
+
* Job: Maintenir les créneaux (slots) Fréquence recommandée: Une fois par jour (2h du matin)
|
|
12035
|
+
* @summary Génère les créneaux futurs et nettoie les anciens
|
|
12036
|
+
* @param {*} [options] Override http request option.
|
|
12037
|
+
* @throws {RequiredError}
|
|
12038
|
+
*/
|
|
12039
|
+
maintainSlots(options) {
|
|
12040
|
+
return localVarFp.maintainSlots(options).then((request) => request(axios, basePath));
|
|
12041
|
+
},
|
|
12042
|
+
/**
|
|
12043
|
+
* Job: Libérer les anciennes réservations Fréquence recommandée: Toutes les minutes
|
|
12044
|
+
* @summary Libère les anciennes réservations terminées
|
|
12045
|
+
* @param {*} [options] Override http request option.
|
|
12046
|
+
* @throws {RequiredError}
|
|
12047
|
+
*/
|
|
12048
|
+
releaseOldBookings(options) {
|
|
12049
|
+
return localVarFp.releaseOldBookings(options).then((request) => request(axios, basePath));
|
|
12050
|
+
},
|
|
12051
|
+
/**
|
|
12052
|
+
* Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
|
|
12053
|
+
* @summary Envoie des emails de rappel 24h avant les réservations et événements
|
|
12054
|
+
* @param {*} [options] Override http request option.
|
|
12055
|
+
* @throws {RequiredError}
|
|
12056
|
+
*/
|
|
12057
|
+
sendBookingReminders(options) {
|
|
12058
|
+
return localVarFp.sendBookingReminders(options).then((request) => request(axios, basePath));
|
|
12059
|
+
},
|
|
12060
|
+
};
|
|
12061
|
+
};
|
|
12062
|
+
/**
|
|
12063
|
+
* JobsApi - object-oriented interface
|
|
12064
|
+
* @export
|
|
12065
|
+
* @class JobsApi
|
|
12066
|
+
* @extends {BaseAPI}
|
|
12067
|
+
*/
|
|
12068
|
+
export class JobsApi extends BaseAPI {
|
|
12069
|
+
/**
|
|
12070
|
+
* Job: Capturer les autorisations de paiement qui expirent bientôt Fréquence recommandée: Toutes les 30 minutes
|
|
12071
|
+
* @summary Capture les autorisations Stripe qui expirent dans moins de 4h
|
|
12072
|
+
* @param {*} [options] Override http request option.
|
|
12073
|
+
* @throws {RequiredError}
|
|
12074
|
+
* @memberof JobsApi
|
|
12075
|
+
*/
|
|
12076
|
+
captureExpiringAuthorizations(options) {
|
|
12077
|
+
return JobsApiFp(this.configuration).captureExpiringAuthorizations(options).then((request) => request(this.axios, this.basePath));
|
|
12078
|
+
}
|
|
12079
|
+
/**
|
|
12080
|
+
* Job: Capturer les paiements pour les réservations passées Fréquence recommandée: Toutes les heures
|
|
12081
|
+
* @summary Capture les paiements autorisés pour les réservations passées
|
|
12082
|
+
* @param {*} [options] Override http request option.
|
|
12083
|
+
* @throws {RequiredError}
|
|
12084
|
+
* @memberof JobsApi
|
|
12085
|
+
*/
|
|
12086
|
+
capturePastReservations(options) {
|
|
12087
|
+
return JobsApiFp(this.configuration).capturePastReservations(options).then((request) => request(this.axios, this.basePath));
|
|
12088
|
+
}
|
|
12089
|
+
/**
|
|
12090
|
+
* Job: Expirer les réservations en attente de paiement Fréquence recommandée: Toutes les minutes
|
|
12091
|
+
* @summary Expire les réservations en attente de paiement
|
|
12092
|
+
* @param {*} [options] Override http request option.
|
|
12093
|
+
* @throws {RequiredError}
|
|
12094
|
+
* @memberof JobsApi
|
|
12095
|
+
*/
|
|
12096
|
+
expireBookingWaitingPayments(options) {
|
|
12097
|
+
return JobsApiFp(this.configuration).expireBookingWaitingPayments(options).then((request) => request(this.axios, this.basePath));
|
|
12098
|
+
}
|
|
12099
|
+
/**
|
|
12100
|
+
* Job: Expirer les paiements en attente sur la waitlist Fréquence recommandée: Toutes les minutes
|
|
12101
|
+
* @summary Expire les paiements en attente sur la waitlist
|
|
12102
|
+
* @param {*} [options] Override http request option.
|
|
12103
|
+
* @throws {RequiredError}
|
|
12104
|
+
* @memberof JobsApi
|
|
12105
|
+
*/
|
|
12106
|
+
expireWaitlistPayments(options) {
|
|
12107
|
+
return JobsApiFp(this.configuration).expireWaitlistPayments(options).then((request) => request(this.axios, this.basePath));
|
|
12108
|
+
}
|
|
12109
|
+
/**
|
|
12110
|
+
* Route de santé pour vérifier que le service jobs est opérationnel
|
|
12111
|
+
* @summary Health check pour les jobs
|
|
12112
|
+
* @param {*} [options] Override http request option.
|
|
12113
|
+
* @throws {RequiredError}
|
|
12114
|
+
* @memberof JobsApi
|
|
12115
|
+
*/
|
|
12116
|
+
health(options) {
|
|
12117
|
+
return JobsApiFp(this.configuration).health(options).then((request) => request(this.axios, this.basePath));
|
|
12118
|
+
}
|
|
12119
|
+
/**
|
|
12120
|
+
* Job: Maintenir les créneaux (slots) Fréquence recommandée: Une fois par jour (2h du matin)
|
|
12121
|
+
* @summary Génère les créneaux futurs et nettoie les anciens
|
|
12122
|
+
* @param {*} [options] Override http request option.
|
|
12123
|
+
* @throws {RequiredError}
|
|
12124
|
+
* @memberof JobsApi
|
|
12125
|
+
*/
|
|
12126
|
+
maintainSlots(options) {
|
|
12127
|
+
return JobsApiFp(this.configuration).maintainSlots(options).then((request) => request(this.axios, this.basePath));
|
|
12128
|
+
}
|
|
12129
|
+
/**
|
|
12130
|
+
* Job: Libérer les anciennes réservations Fréquence recommandée: Toutes les minutes
|
|
12131
|
+
* @summary Libère les anciennes réservations terminées
|
|
12132
|
+
* @param {*} [options] Override http request option.
|
|
12133
|
+
* @throws {RequiredError}
|
|
12134
|
+
* @memberof JobsApi
|
|
12135
|
+
*/
|
|
12136
|
+
releaseOldBookings(options) {
|
|
12137
|
+
return JobsApiFp(this.configuration).releaseOldBookings(options).then((request) => request(this.axios, this.basePath));
|
|
12138
|
+
}
|
|
12139
|
+
/**
|
|
12140
|
+
* Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
|
|
12141
|
+
* @summary Envoie des emails de rappel 24h avant les réservations et événements
|
|
12142
|
+
* @param {*} [options] Override http request option.
|
|
12143
|
+
* @throws {RequiredError}
|
|
12144
|
+
* @memberof JobsApi
|
|
12145
|
+
*/
|
|
12146
|
+
sendBookingReminders(options) {
|
|
12147
|
+
return JobsApiFp(this.configuration).sendBookingReminders(options).then((request) => request(this.axios, this.basePath));
|
|
12148
|
+
}
|
|
12149
|
+
}
|
|
11629
12150
|
/**
|
|
11630
12151
|
* PublicEmailApi - axios parameter creator
|
|
11631
12152
|
* @export
|
|
@@ -16688,6 +17209,37 @@ export const WaitListStaffApiAxiosParamCreator = function (configuration) {
|
|
|
16688
17209
|
options: localVarRequestOptions,
|
|
16689
17210
|
};
|
|
16690
17211
|
}),
|
|
17212
|
+
/**
|
|
17213
|
+
* Obtenir la liste des joueurs dans la file d\'attente pour un event (staff only)
|
|
17214
|
+
* @param {string} eventId
|
|
17215
|
+
* @param {*} [options] Override http request option.
|
|
17216
|
+
* @throws {RequiredError}
|
|
17217
|
+
*/
|
|
17218
|
+
getEventWaitListPlayers: (eventId_1, ...args_1) => __awaiter(this, [eventId_1, ...args_1], void 0, function* (eventId, options = {}) {
|
|
17219
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
17220
|
+
assertParamExists('getEventWaitListPlayers', 'eventId', eventId);
|
|
17221
|
+
const localVarPath = `/api/waitlist/event/{eventId}/players`
|
|
17222
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)));
|
|
17223
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17224
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17225
|
+
let baseOptions;
|
|
17226
|
+
if (configuration) {
|
|
17227
|
+
baseOptions = configuration.baseOptions;
|
|
17228
|
+
}
|
|
17229
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
17230
|
+
const localVarHeaderParameter = {};
|
|
17231
|
+
const localVarQueryParameter = {};
|
|
17232
|
+
// authentication bearerAuth required
|
|
17233
|
+
// http bearer authentication required
|
|
17234
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
17235
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
17236
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
17237
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
17238
|
+
return {
|
|
17239
|
+
url: toPathString(localVarUrlObj),
|
|
17240
|
+
options: localVarRequestOptions,
|
|
17241
|
+
};
|
|
17242
|
+
}),
|
|
16691
17243
|
/**
|
|
16692
17244
|
* Forcer le traitement de la waitlist pour un booking (staff only)
|
|
16693
17245
|
* @param {string} bookingId
|
|
@@ -16835,6 +17387,21 @@ export const WaitListStaffApiFp = function (configuration) {
|
|
|
16835
17387
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
16836
17388
|
});
|
|
16837
17389
|
},
|
|
17390
|
+
/**
|
|
17391
|
+
* Obtenir la liste des joueurs dans la file d\'attente pour un event (staff only)
|
|
17392
|
+
* @param {string} eventId
|
|
17393
|
+
* @param {*} [options] Override http request option.
|
|
17394
|
+
* @throws {RequiredError}
|
|
17395
|
+
*/
|
|
17396
|
+
getEventWaitListPlayers(eventId, options) {
|
|
17397
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
17398
|
+
var _a, _b, _c;
|
|
17399
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getEventWaitListPlayers(eventId, options);
|
|
17400
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
17401
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['WaitListStaffApi.getEventWaitListPlayers']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
17402
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
17403
|
+
});
|
|
17404
|
+
},
|
|
16838
17405
|
/**
|
|
16839
17406
|
* Forcer le traitement de la waitlist pour un booking (staff only)
|
|
16840
17407
|
* @param {string} bookingId
|
|
@@ -16916,6 +17483,15 @@ export const WaitListStaffApiFactory = function (configuration, basePath, axios)
|
|
|
16916
17483
|
getEventWaitList(requestParameters, options) {
|
|
16917
17484
|
return localVarFp.getEventWaitList(requestParameters.eventId, options).then((request) => request(axios, basePath));
|
|
16918
17485
|
},
|
|
17486
|
+
/**
|
|
17487
|
+
* Obtenir la liste des joueurs dans la file d\'attente pour un event (staff only)
|
|
17488
|
+
* @param {WaitListStaffApiGetEventWaitListPlayersRequest} requestParameters Request parameters.
|
|
17489
|
+
* @param {*} [options] Override http request option.
|
|
17490
|
+
* @throws {RequiredError}
|
|
17491
|
+
*/
|
|
17492
|
+
getEventWaitListPlayers(requestParameters, options) {
|
|
17493
|
+
return localVarFp.getEventWaitListPlayers(requestParameters.eventId, options).then((request) => request(axios, basePath));
|
|
17494
|
+
},
|
|
16919
17495
|
/**
|
|
16920
17496
|
* Forcer le traitement de la waitlist pour un booking (staff only)
|
|
16921
17497
|
* @param {WaitListStaffApiProcessBookingWaitListRequest} requestParameters Request parameters.
|
|
@@ -16982,6 +17558,16 @@ export class WaitListStaffApi extends BaseAPI {
|
|
|
16982
17558
|
getEventWaitList(requestParameters, options) {
|
|
16983
17559
|
return WaitListStaffApiFp(this.configuration).getEventWaitList(requestParameters.eventId, options).then((request) => request(this.axios, this.basePath));
|
|
16984
17560
|
}
|
|
17561
|
+
/**
|
|
17562
|
+
* Obtenir la liste des joueurs dans la file d\'attente pour un event (staff only)
|
|
17563
|
+
* @param {WaitListStaffApiGetEventWaitListPlayersRequest} requestParameters Request parameters.
|
|
17564
|
+
* @param {*} [options] Override http request option.
|
|
17565
|
+
* @throws {RequiredError}
|
|
17566
|
+
* @memberof WaitListStaffApi
|
|
17567
|
+
*/
|
|
17568
|
+
getEventWaitListPlayers(requestParameters, options) {
|
|
17569
|
+
return WaitListStaffApiFp(this.configuration).getEventWaitListPlayers(requestParameters.eventId, options).then((request) => request(this.axios, this.basePath));
|
|
17570
|
+
}
|
|
16985
17571
|
/**
|
|
16986
17572
|
* Forcer le traitement de la waitlist pour un booking (staff only)
|
|
16987
17573
|
* @param {WaitListStaffApiProcessBookingWaitListRequest} requestParameters Request parameters.
|
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED