@tennac-booking/sdk 1.0.307 → 1.0.308
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 +2 -0
- package/README.md +2 -0
- package/api.ts +232 -0
- package/dist/api.d.ts +230 -0
- package/dist/esm/api.d.ts +230 -0
- package/docs/CreateSubscriptionPlanRequest.md +2 -0
- package/docs/EventBookingDetailSummary.md +28 -0
- package/docs/EventBookingDetailSummaryBookingStatus.md +18 -0
- package/docs/EventBookingDetailSummaryPaymentByPlayersStatusInner.md +34 -0
- package/docs/EventBookingDetailSummaryPaymentPerPlayersInner.md +16 -0
- package/docs/PublicSubscriptionPlanResponse.md +4 -0
- package/docs/SubscriptionPlanResponse.md +4 -0
- package/docs/UpdateSubscriptionPlanRequest.md +2 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -204,7 +204,9 @@ docs/EventBookingDetailEventSummary.md
|
|
|
204
204
|
docs/EventBookingDetailResponse.md
|
|
205
205
|
docs/EventBookingDetailResponseBooking.md
|
|
206
206
|
docs/EventBookingDetailSummary.md
|
|
207
|
+
docs/EventBookingDetailSummaryBookingStatus.md
|
|
207
208
|
docs/EventBookingDetailSummaryPartnersInner.md
|
|
209
|
+
docs/EventBookingDetailSummaryPaymentByPlayersStatusInner.md
|
|
208
210
|
docs/EventBookingDetailSummaryPaymentPerPlayersInner.md
|
|
209
211
|
docs/EventBookingGuestCheckinResponse.md
|
|
210
212
|
docs/EventBookingResponse.md
|
package/README.md
CHANGED
|
@@ -528,7 +528,9 @@ Class | Method | HTTP request | Description
|
|
|
528
528
|
- [EventBookingDetailResponse](docs/EventBookingDetailResponse.md)
|
|
529
529
|
- [EventBookingDetailResponseBooking](docs/EventBookingDetailResponseBooking.md)
|
|
530
530
|
- [EventBookingDetailSummary](docs/EventBookingDetailSummary.md)
|
|
531
|
+
- [EventBookingDetailSummaryBookingStatus](docs/EventBookingDetailSummaryBookingStatus.md)
|
|
531
532
|
- [EventBookingDetailSummaryPartnersInner](docs/EventBookingDetailSummaryPartnersInner.md)
|
|
533
|
+
- [EventBookingDetailSummaryPaymentByPlayersStatusInner](docs/EventBookingDetailSummaryPaymentByPlayersStatusInner.md)
|
|
532
534
|
- [EventBookingDetailSummaryPaymentPerPlayersInner](docs/EventBookingDetailSummaryPaymentPerPlayersInner.md)
|
|
533
535
|
- [EventBookingGuestCheckinResponse](docs/EventBookingGuestCheckinResponse.md)
|
|
534
536
|
- [EventBookingResponse](docs/EventBookingResponse.md)
|
package/api.ts
CHANGED
|
@@ -6351,6 +6351,12 @@ export interface CreateSubscriptionPlanRequest {
|
|
|
6351
6351
|
* @memberof CreateSubscriptionPlanRequest
|
|
6352
6352
|
*/
|
|
6353
6353
|
'interval': PlanInterval;
|
|
6354
|
+
/**
|
|
6355
|
+
*
|
|
6356
|
+
* @type {number}
|
|
6357
|
+
* @memberof CreateSubscriptionPlanRequest
|
|
6358
|
+
*/
|
|
6359
|
+
'commitmentDurationMonths'?: number;
|
|
6354
6360
|
/**
|
|
6355
6361
|
*
|
|
6356
6362
|
* @type {CreateSubscriptionPlanRequestDiscount}
|
|
@@ -7268,6 +7274,18 @@ export interface EventBookingDetailSummary {
|
|
|
7268
7274
|
* @memberof EventBookingDetailSummary
|
|
7269
7275
|
*/
|
|
7270
7276
|
'status': EventBookingStatus;
|
|
7277
|
+
/**
|
|
7278
|
+
*
|
|
7279
|
+
* @type {EventBookingDetailSummaryBookingStatus}
|
|
7280
|
+
* @memberof EventBookingDetailSummary
|
|
7281
|
+
*/
|
|
7282
|
+
'bookingStatus'?: EventBookingDetailSummaryBookingStatus | null;
|
|
7283
|
+
/**
|
|
7284
|
+
*
|
|
7285
|
+
* @type {string}
|
|
7286
|
+
* @memberof EventBookingDetailSummary
|
|
7287
|
+
*/
|
|
7288
|
+
'userId'?: string;
|
|
7271
7289
|
/**
|
|
7272
7290
|
*
|
|
7273
7291
|
* @type {string}
|
|
@@ -7280,6 +7298,12 @@ export interface EventBookingDetailSummary {
|
|
|
7280
7298
|
* @memberof EventBookingDetailSummary
|
|
7281
7299
|
*/
|
|
7282
7300
|
'players': Array<string>;
|
|
7301
|
+
/**
|
|
7302
|
+
*
|
|
7303
|
+
* @type {Array<string>}
|
|
7304
|
+
* @memberof EventBookingDetailSummary
|
|
7305
|
+
*/
|
|
7306
|
+
'playersIds'?: Array<string>;
|
|
7283
7307
|
/**
|
|
7284
7308
|
*
|
|
7285
7309
|
* @type {Array<EventBookingDetailSummaryPartnersInner>}
|
|
@@ -7292,6 +7316,36 @@ export interface EventBookingDetailSummary {
|
|
|
7292
7316
|
* @memberof EventBookingDetailSummary
|
|
7293
7317
|
*/
|
|
7294
7318
|
'paymentPerPlayers': Array<EventBookingDetailSummaryPaymentPerPlayersInner>;
|
|
7319
|
+
/**
|
|
7320
|
+
*
|
|
7321
|
+
* @type {Array<EventBookingDetailSummaryPaymentByPlayersStatusInner>}
|
|
7322
|
+
* @memberof EventBookingDetailSummary
|
|
7323
|
+
*/
|
|
7324
|
+
'paymentByPlayersStatus'?: Array<EventBookingDetailSummaryPaymentByPlayersStatusInner>;
|
|
7325
|
+
/**
|
|
7326
|
+
*
|
|
7327
|
+
* @type {boolean}
|
|
7328
|
+
* @memberof EventBookingDetailSummary
|
|
7329
|
+
*/
|
|
7330
|
+
'isCreatorPayingAll'?: boolean;
|
|
7331
|
+
/**
|
|
7332
|
+
*
|
|
7333
|
+
* @type {number}
|
|
7334
|
+
* @memberof EventBookingDetailSummary
|
|
7335
|
+
*/
|
|
7336
|
+
'myAmountToPay'?: number | null;
|
|
7337
|
+
/**
|
|
7338
|
+
*
|
|
7339
|
+
* @type {InvoiceStatus}
|
|
7340
|
+
* @memberof EventBookingDetailSummary
|
|
7341
|
+
*/
|
|
7342
|
+
'myPaymentStatus'?: InvoiceStatus | null;
|
|
7343
|
+
/**
|
|
7344
|
+
*
|
|
7345
|
+
* @type {string}
|
|
7346
|
+
* @memberof EventBookingDetailSummary
|
|
7347
|
+
*/
|
|
7348
|
+
'paymentUrl'?: string | null;
|
|
7295
7349
|
/**
|
|
7296
7350
|
*
|
|
7297
7351
|
* @type {string}
|
|
@@ -7328,6 +7382,42 @@ export interface EventBookingDetailSummary {
|
|
|
7328
7382
|
* @memberof EventBookingDetailSummary
|
|
7329
7383
|
*/
|
|
7330
7384
|
'userParticipationStatus'?: EventBookingDetailSummaryUserParticipationStatusEnum;
|
|
7385
|
+
/**
|
|
7386
|
+
*
|
|
7387
|
+
* @type {number}
|
|
7388
|
+
* @memberof EventBookingDetailSummary
|
|
7389
|
+
*/
|
|
7390
|
+
'participantsCount'?: number | null;
|
|
7391
|
+
/**
|
|
7392
|
+
*
|
|
7393
|
+
* @type {number}
|
|
7394
|
+
* @memberof EventBookingDetailSummary
|
|
7395
|
+
*/
|
|
7396
|
+
'playersCount'?: number | null;
|
|
7397
|
+
/**
|
|
7398
|
+
*
|
|
7399
|
+
* @type {number}
|
|
7400
|
+
* @memberof EventBookingDetailSummary
|
|
7401
|
+
*/
|
|
7402
|
+
'reservedPlayerCount'?: number | null;
|
|
7403
|
+
/**
|
|
7404
|
+
*
|
|
7405
|
+
* @type {number}
|
|
7406
|
+
* @memberof EventBookingDetailSummary
|
|
7407
|
+
*/
|
|
7408
|
+
'guestPlayersCount'?: number | null;
|
|
7409
|
+
/**
|
|
7410
|
+
*
|
|
7411
|
+
* @type {number}
|
|
7412
|
+
* @memberof EventBookingDetailSummary
|
|
7413
|
+
*/
|
|
7414
|
+
'guestPaymentsCount'?: number | null;
|
|
7415
|
+
/**
|
|
7416
|
+
*
|
|
7417
|
+
* @type {PaymentDistributionResult}
|
|
7418
|
+
* @memberof EventBookingDetailSummary
|
|
7419
|
+
*/
|
|
7420
|
+
'paymentDistribution'?: PaymentDistributionResult;
|
|
7331
7421
|
/**
|
|
7332
7422
|
*
|
|
7333
7423
|
* @type {string}
|
|
@@ -7350,6 +7440,13 @@ export const EventBookingDetailSummaryUserParticipationStatusEnum = {
|
|
|
7350
7440
|
|
|
7351
7441
|
export type EventBookingDetailSummaryUserParticipationStatusEnum = typeof EventBookingDetailSummaryUserParticipationStatusEnum[keyof typeof EventBookingDetailSummaryUserParticipationStatusEnum];
|
|
7352
7442
|
|
|
7443
|
+
/**
|
|
7444
|
+
*
|
|
7445
|
+
* @export
|
|
7446
|
+
* @interface EventBookingDetailSummaryBookingStatus
|
|
7447
|
+
*/
|
|
7448
|
+
export interface EventBookingDetailSummaryBookingStatus {
|
|
7449
|
+
}
|
|
7353
7450
|
/**
|
|
7354
7451
|
*
|
|
7355
7452
|
* @export
|
|
@@ -7381,24 +7478,129 @@ export interface EventBookingDetailSummaryPartnersInner {
|
|
|
7381
7478
|
*/
|
|
7382
7479
|
'id': string;
|
|
7383
7480
|
}
|
|
7481
|
+
/**
|
|
7482
|
+
*
|
|
7483
|
+
* @export
|
|
7484
|
+
* @interface EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7485
|
+
*/
|
|
7486
|
+
export interface EventBookingDetailSummaryPaymentByPlayersStatusInner {
|
|
7487
|
+
/**
|
|
7488
|
+
*
|
|
7489
|
+
* @type {string}
|
|
7490
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7491
|
+
*/
|
|
7492
|
+
'paymentUrl'?: string | null;
|
|
7493
|
+
/**
|
|
7494
|
+
*
|
|
7495
|
+
* @type {string}
|
|
7496
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7497
|
+
*/
|
|
7498
|
+
'response'?: string | null;
|
|
7499
|
+
/**
|
|
7500
|
+
*
|
|
7501
|
+
* @type {boolean}
|
|
7502
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7503
|
+
*/
|
|
7504
|
+
'accepted'?: boolean;
|
|
7505
|
+
/**
|
|
7506
|
+
*
|
|
7507
|
+
* @type {number}
|
|
7508
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7509
|
+
*/
|
|
7510
|
+
'amountToPay'?: number | null;
|
|
7511
|
+
/**
|
|
7512
|
+
*
|
|
7513
|
+
* @type {PaymentMethod}
|
|
7514
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7515
|
+
*/
|
|
7516
|
+
'paymentMethod'?: PaymentMethod | null;
|
|
7517
|
+
/**
|
|
7518
|
+
*
|
|
7519
|
+
* @type {InvoiceStatus}
|
|
7520
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7521
|
+
*/
|
|
7522
|
+
'invoiceStatus'?: InvoiceStatus | null;
|
|
7523
|
+
/**
|
|
7524
|
+
*
|
|
7525
|
+
* @type {string}
|
|
7526
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7527
|
+
*/
|
|
7528
|
+
'invoiceId'?: string | null;
|
|
7529
|
+
/**
|
|
7530
|
+
*
|
|
7531
|
+
* @type {string}
|
|
7532
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7533
|
+
*/
|
|
7534
|
+
'playerId': string;
|
|
7535
|
+
}
|
|
7536
|
+
|
|
7537
|
+
|
|
7384
7538
|
/**
|
|
7385
7539
|
*
|
|
7386
7540
|
* @export
|
|
7387
7541
|
* @interface EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7388
7542
|
*/
|
|
7389
7543
|
export interface EventBookingDetailSummaryPaymentPerPlayersInner {
|
|
7544
|
+
/**
|
|
7545
|
+
*
|
|
7546
|
+
* @type {boolean}
|
|
7547
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7548
|
+
*/
|
|
7549
|
+
'isCurrentUser'?: boolean;
|
|
7550
|
+
/**
|
|
7551
|
+
*
|
|
7552
|
+
* @type {string}
|
|
7553
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7554
|
+
*/
|
|
7555
|
+
'response'?: string | null;
|
|
7556
|
+
/**
|
|
7557
|
+
*
|
|
7558
|
+
* @type {boolean}
|
|
7559
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7560
|
+
*/
|
|
7561
|
+
'accepted'?: boolean | null;
|
|
7562
|
+
/**
|
|
7563
|
+
*
|
|
7564
|
+
* @type {PaymentMethod}
|
|
7565
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7566
|
+
*/
|
|
7567
|
+
'paymentMethod'?: PaymentMethod | null;
|
|
7568
|
+
/**
|
|
7569
|
+
*
|
|
7570
|
+
* @type {string}
|
|
7571
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7572
|
+
*/
|
|
7573
|
+
'invoiceId'?: string | null;
|
|
7574
|
+
/**
|
|
7575
|
+
*
|
|
7576
|
+
* @type {number}
|
|
7577
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7578
|
+
*/
|
|
7579
|
+
'amountToPay'?: number | null;
|
|
7390
7580
|
/**
|
|
7391
7581
|
*
|
|
7392
7582
|
* @type {number}
|
|
7393
7583
|
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7394
7584
|
*/
|
|
7395
7585
|
'amount'?: number | null;
|
|
7586
|
+
/**
|
|
7587
|
+
*
|
|
7588
|
+
* @type {InvoiceStatus}
|
|
7589
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7590
|
+
*/
|
|
7591
|
+
'invoiceStatus'?: InvoiceStatus | null;
|
|
7396
7592
|
/**
|
|
7397
7593
|
*
|
|
7398
7594
|
* @type {InvoiceStatus}
|
|
7399
7595
|
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7400
7596
|
*/
|
|
7401
7597
|
'status'?: InvoiceStatus | null;
|
|
7598
|
+
/**
|
|
7599
|
+
*
|
|
7600
|
+
* @type {string}
|
|
7601
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7602
|
+
*/
|
|
7603
|
+
'photo'?: string | null;
|
|
7402
7604
|
/**
|
|
7403
7605
|
*
|
|
7404
7606
|
* @type {string}
|
|
@@ -14159,6 +14361,12 @@ export interface PublicSubscriptionPlanResponse {
|
|
|
14159
14361
|
* @memberof PublicSubscriptionPlanResponse
|
|
14160
14362
|
*/
|
|
14161
14363
|
'name': string;
|
|
14364
|
+
/**
|
|
14365
|
+
*
|
|
14366
|
+
* @type {number}
|
|
14367
|
+
* @memberof PublicSubscriptionPlanResponse
|
|
14368
|
+
*/
|
|
14369
|
+
'subscribersCount': number;
|
|
14162
14370
|
/**
|
|
14163
14371
|
*
|
|
14164
14372
|
* @type {number}
|
|
@@ -14195,6 +14403,12 @@ export interface PublicSubscriptionPlanResponse {
|
|
|
14195
14403
|
* @memberof PublicSubscriptionPlanResponse
|
|
14196
14404
|
*/
|
|
14197
14405
|
'discount'?: SubscriptionPlanDiscountResponse;
|
|
14406
|
+
/**
|
|
14407
|
+
*
|
|
14408
|
+
* @type {number}
|
|
14409
|
+
* @memberof PublicSubscriptionPlanResponse
|
|
14410
|
+
*/
|
|
14411
|
+
'commitmentDurationMonths'?: number;
|
|
14198
14412
|
/**
|
|
14199
14413
|
*
|
|
14200
14414
|
* @type {boolean}
|
|
@@ -16977,6 +17191,12 @@ export interface SubscriptionPlanResponse {
|
|
|
16977
17191
|
* @memberof SubscriptionPlanResponse
|
|
16978
17192
|
*/
|
|
16979
17193
|
'productName': string;
|
|
17194
|
+
/**
|
|
17195
|
+
*
|
|
17196
|
+
* @type {number}
|
|
17197
|
+
* @memberof SubscriptionPlanResponse
|
|
17198
|
+
*/
|
|
17199
|
+
'subscribersCount': number;
|
|
16980
17200
|
/**
|
|
16981
17201
|
*
|
|
16982
17202
|
* @type {boolean}
|
|
@@ -17031,6 +17251,12 @@ export interface SubscriptionPlanResponse {
|
|
|
17031
17251
|
* @memberof SubscriptionPlanResponse
|
|
17032
17252
|
*/
|
|
17033
17253
|
'discount'?: SubscriptionPlanDiscountResponse;
|
|
17254
|
+
/**
|
|
17255
|
+
*
|
|
17256
|
+
* @type {number}
|
|
17257
|
+
* @memberof SubscriptionPlanResponse
|
|
17258
|
+
*/
|
|
17259
|
+
'commitmentDurationMonths'?: number;
|
|
17034
17260
|
}
|
|
17035
17261
|
|
|
17036
17262
|
|
|
@@ -18619,6 +18845,12 @@ export interface UpdateSubscriptionPlanRequest {
|
|
|
18619
18845
|
* @memberof UpdateSubscriptionPlanRequest
|
|
18620
18846
|
*/
|
|
18621
18847
|
'interval'?: PlanInterval;
|
|
18848
|
+
/**
|
|
18849
|
+
*
|
|
18850
|
+
* @type {number}
|
|
18851
|
+
* @memberof UpdateSubscriptionPlanRequest
|
|
18852
|
+
*/
|
|
18853
|
+
'commitmentDurationMonths'?: number;
|
|
18622
18854
|
/**
|
|
18623
18855
|
*
|
|
18624
18856
|
* @type {SubscriptionPlanDiscountUpdateRequest}
|
package/dist/api.d.ts
CHANGED
|
@@ -6256,6 +6256,12 @@ export interface CreateSubscriptionPlanRequest {
|
|
|
6256
6256
|
* @memberof CreateSubscriptionPlanRequest
|
|
6257
6257
|
*/
|
|
6258
6258
|
'interval': PlanInterval;
|
|
6259
|
+
/**
|
|
6260
|
+
*
|
|
6261
|
+
* @type {number}
|
|
6262
|
+
* @memberof CreateSubscriptionPlanRequest
|
|
6263
|
+
*/
|
|
6264
|
+
'commitmentDurationMonths'?: number;
|
|
6259
6265
|
/**
|
|
6260
6266
|
*
|
|
6261
6267
|
* @type {CreateSubscriptionPlanRequestDiscount}
|
|
@@ -7158,6 +7164,18 @@ export interface EventBookingDetailSummary {
|
|
|
7158
7164
|
* @memberof EventBookingDetailSummary
|
|
7159
7165
|
*/
|
|
7160
7166
|
'status': EventBookingStatus;
|
|
7167
|
+
/**
|
|
7168
|
+
*
|
|
7169
|
+
* @type {EventBookingDetailSummaryBookingStatus}
|
|
7170
|
+
* @memberof EventBookingDetailSummary
|
|
7171
|
+
*/
|
|
7172
|
+
'bookingStatus'?: EventBookingDetailSummaryBookingStatus | null;
|
|
7173
|
+
/**
|
|
7174
|
+
*
|
|
7175
|
+
* @type {string}
|
|
7176
|
+
* @memberof EventBookingDetailSummary
|
|
7177
|
+
*/
|
|
7178
|
+
'userId'?: string;
|
|
7161
7179
|
/**
|
|
7162
7180
|
*
|
|
7163
7181
|
* @type {string}
|
|
@@ -7170,6 +7188,12 @@ export interface EventBookingDetailSummary {
|
|
|
7170
7188
|
* @memberof EventBookingDetailSummary
|
|
7171
7189
|
*/
|
|
7172
7190
|
'players': Array<string>;
|
|
7191
|
+
/**
|
|
7192
|
+
*
|
|
7193
|
+
* @type {Array<string>}
|
|
7194
|
+
* @memberof EventBookingDetailSummary
|
|
7195
|
+
*/
|
|
7196
|
+
'playersIds'?: Array<string>;
|
|
7173
7197
|
/**
|
|
7174
7198
|
*
|
|
7175
7199
|
* @type {Array<EventBookingDetailSummaryPartnersInner>}
|
|
@@ -7182,6 +7206,36 @@ export interface EventBookingDetailSummary {
|
|
|
7182
7206
|
* @memberof EventBookingDetailSummary
|
|
7183
7207
|
*/
|
|
7184
7208
|
'paymentPerPlayers': Array<EventBookingDetailSummaryPaymentPerPlayersInner>;
|
|
7209
|
+
/**
|
|
7210
|
+
*
|
|
7211
|
+
* @type {Array<EventBookingDetailSummaryPaymentByPlayersStatusInner>}
|
|
7212
|
+
* @memberof EventBookingDetailSummary
|
|
7213
|
+
*/
|
|
7214
|
+
'paymentByPlayersStatus'?: Array<EventBookingDetailSummaryPaymentByPlayersStatusInner>;
|
|
7215
|
+
/**
|
|
7216
|
+
*
|
|
7217
|
+
* @type {boolean}
|
|
7218
|
+
* @memberof EventBookingDetailSummary
|
|
7219
|
+
*/
|
|
7220
|
+
'isCreatorPayingAll'?: boolean;
|
|
7221
|
+
/**
|
|
7222
|
+
*
|
|
7223
|
+
* @type {number}
|
|
7224
|
+
* @memberof EventBookingDetailSummary
|
|
7225
|
+
*/
|
|
7226
|
+
'myAmountToPay'?: number | null;
|
|
7227
|
+
/**
|
|
7228
|
+
*
|
|
7229
|
+
* @type {InvoiceStatus}
|
|
7230
|
+
* @memberof EventBookingDetailSummary
|
|
7231
|
+
*/
|
|
7232
|
+
'myPaymentStatus'?: InvoiceStatus | null;
|
|
7233
|
+
/**
|
|
7234
|
+
*
|
|
7235
|
+
* @type {string}
|
|
7236
|
+
* @memberof EventBookingDetailSummary
|
|
7237
|
+
*/
|
|
7238
|
+
'paymentUrl'?: string | null;
|
|
7185
7239
|
/**
|
|
7186
7240
|
*
|
|
7187
7241
|
* @type {string}
|
|
@@ -7218,6 +7272,42 @@ export interface EventBookingDetailSummary {
|
|
|
7218
7272
|
* @memberof EventBookingDetailSummary
|
|
7219
7273
|
*/
|
|
7220
7274
|
'userParticipationStatus'?: EventBookingDetailSummaryUserParticipationStatusEnum;
|
|
7275
|
+
/**
|
|
7276
|
+
*
|
|
7277
|
+
* @type {number}
|
|
7278
|
+
* @memberof EventBookingDetailSummary
|
|
7279
|
+
*/
|
|
7280
|
+
'participantsCount'?: number | null;
|
|
7281
|
+
/**
|
|
7282
|
+
*
|
|
7283
|
+
* @type {number}
|
|
7284
|
+
* @memberof EventBookingDetailSummary
|
|
7285
|
+
*/
|
|
7286
|
+
'playersCount'?: number | null;
|
|
7287
|
+
/**
|
|
7288
|
+
*
|
|
7289
|
+
* @type {number}
|
|
7290
|
+
* @memberof EventBookingDetailSummary
|
|
7291
|
+
*/
|
|
7292
|
+
'reservedPlayerCount'?: number | null;
|
|
7293
|
+
/**
|
|
7294
|
+
*
|
|
7295
|
+
* @type {number}
|
|
7296
|
+
* @memberof EventBookingDetailSummary
|
|
7297
|
+
*/
|
|
7298
|
+
'guestPlayersCount'?: number | null;
|
|
7299
|
+
/**
|
|
7300
|
+
*
|
|
7301
|
+
* @type {number}
|
|
7302
|
+
* @memberof EventBookingDetailSummary
|
|
7303
|
+
*/
|
|
7304
|
+
'guestPaymentsCount'?: number | null;
|
|
7305
|
+
/**
|
|
7306
|
+
*
|
|
7307
|
+
* @type {PaymentDistributionResult}
|
|
7308
|
+
* @memberof EventBookingDetailSummary
|
|
7309
|
+
*/
|
|
7310
|
+
'paymentDistribution'?: PaymentDistributionResult;
|
|
7221
7311
|
/**
|
|
7222
7312
|
*
|
|
7223
7313
|
* @type {string}
|
|
@@ -7237,6 +7327,13 @@ export declare const EventBookingDetailSummaryUserParticipationStatusEnum: {
|
|
|
7237
7327
|
readonly Waitlist: "waitlist";
|
|
7238
7328
|
};
|
|
7239
7329
|
export type EventBookingDetailSummaryUserParticipationStatusEnum = typeof EventBookingDetailSummaryUserParticipationStatusEnum[keyof typeof EventBookingDetailSummaryUserParticipationStatusEnum];
|
|
7330
|
+
/**
|
|
7331
|
+
*
|
|
7332
|
+
* @export
|
|
7333
|
+
* @interface EventBookingDetailSummaryBookingStatus
|
|
7334
|
+
*/
|
|
7335
|
+
export interface EventBookingDetailSummaryBookingStatus {
|
|
7336
|
+
}
|
|
7240
7337
|
/**
|
|
7241
7338
|
*
|
|
7242
7339
|
* @export
|
|
@@ -7268,24 +7365,127 @@ export interface EventBookingDetailSummaryPartnersInner {
|
|
|
7268
7365
|
*/
|
|
7269
7366
|
'id': string;
|
|
7270
7367
|
}
|
|
7368
|
+
/**
|
|
7369
|
+
*
|
|
7370
|
+
* @export
|
|
7371
|
+
* @interface EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7372
|
+
*/
|
|
7373
|
+
export interface EventBookingDetailSummaryPaymentByPlayersStatusInner {
|
|
7374
|
+
/**
|
|
7375
|
+
*
|
|
7376
|
+
* @type {string}
|
|
7377
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7378
|
+
*/
|
|
7379
|
+
'paymentUrl'?: string | null;
|
|
7380
|
+
/**
|
|
7381
|
+
*
|
|
7382
|
+
* @type {string}
|
|
7383
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7384
|
+
*/
|
|
7385
|
+
'response'?: string | null;
|
|
7386
|
+
/**
|
|
7387
|
+
*
|
|
7388
|
+
* @type {boolean}
|
|
7389
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7390
|
+
*/
|
|
7391
|
+
'accepted'?: boolean;
|
|
7392
|
+
/**
|
|
7393
|
+
*
|
|
7394
|
+
* @type {number}
|
|
7395
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7396
|
+
*/
|
|
7397
|
+
'amountToPay'?: number | null;
|
|
7398
|
+
/**
|
|
7399
|
+
*
|
|
7400
|
+
* @type {PaymentMethod}
|
|
7401
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7402
|
+
*/
|
|
7403
|
+
'paymentMethod'?: PaymentMethod | null;
|
|
7404
|
+
/**
|
|
7405
|
+
*
|
|
7406
|
+
* @type {InvoiceStatus}
|
|
7407
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7408
|
+
*/
|
|
7409
|
+
'invoiceStatus'?: InvoiceStatus | null;
|
|
7410
|
+
/**
|
|
7411
|
+
*
|
|
7412
|
+
* @type {string}
|
|
7413
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7414
|
+
*/
|
|
7415
|
+
'invoiceId'?: string | null;
|
|
7416
|
+
/**
|
|
7417
|
+
*
|
|
7418
|
+
* @type {string}
|
|
7419
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7420
|
+
*/
|
|
7421
|
+
'playerId': string;
|
|
7422
|
+
}
|
|
7271
7423
|
/**
|
|
7272
7424
|
*
|
|
7273
7425
|
* @export
|
|
7274
7426
|
* @interface EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7275
7427
|
*/
|
|
7276
7428
|
export interface EventBookingDetailSummaryPaymentPerPlayersInner {
|
|
7429
|
+
/**
|
|
7430
|
+
*
|
|
7431
|
+
* @type {boolean}
|
|
7432
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7433
|
+
*/
|
|
7434
|
+
'isCurrentUser'?: boolean;
|
|
7435
|
+
/**
|
|
7436
|
+
*
|
|
7437
|
+
* @type {string}
|
|
7438
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7439
|
+
*/
|
|
7440
|
+
'response'?: string | null;
|
|
7441
|
+
/**
|
|
7442
|
+
*
|
|
7443
|
+
* @type {boolean}
|
|
7444
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7445
|
+
*/
|
|
7446
|
+
'accepted'?: boolean | null;
|
|
7447
|
+
/**
|
|
7448
|
+
*
|
|
7449
|
+
* @type {PaymentMethod}
|
|
7450
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7451
|
+
*/
|
|
7452
|
+
'paymentMethod'?: PaymentMethod | null;
|
|
7453
|
+
/**
|
|
7454
|
+
*
|
|
7455
|
+
* @type {string}
|
|
7456
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7457
|
+
*/
|
|
7458
|
+
'invoiceId'?: string | null;
|
|
7459
|
+
/**
|
|
7460
|
+
*
|
|
7461
|
+
* @type {number}
|
|
7462
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7463
|
+
*/
|
|
7464
|
+
'amountToPay'?: number | null;
|
|
7277
7465
|
/**
|
|
7278
7466
|
*
|
|
7279
7467
|
* @type {number}
|
|
7280
7468
|
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7281
7469
|
*/
|
|
7282
7470
|
'amount'?: number | null;
|
|
7471
|
+
/**
|
|
7472
|
+
*
|
|
7473
|
+
* @type {InvoiceStatus}
|
|
7474
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7475
|
+
*/
|
|
7476
|
+
'invoiceStatus'?: InvoiceStatus | null;
|
|
7283
7477
|
/**
|
|
7284
7478
|
*
|
|
7285
7479
|
* @type {InvoiceStatus}
|
|
7286
7480
|
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7287
7481
|
*/
|
|
7288
7482
|
'status'?: InvoiceStatus | null;
|
|
7483
|
+
/**
|
|
7484
|
+
*
|
|
7485
|
+
* @type {string}
|
|
7486
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7487
|
+
*/
|
|
7488
|
+
'photo'?: string | null;
|
|
7289
7489
|
/**
|
|
7290
7490
|
*
|
|
7291
7491
|
* @type {string}
|
|
@@ -13923,6 +14123,12 @@ export interface PublicSubscriptionPlanResponse {
|
|
|
13923
14123
|
* @memberof PublicSubscriptionPlanResponse
|
|
13924
14124
|
*/
|
|
13925
14125
|
'name': string;
|
|
14126
|
+
/**
|
|
14127
|
+
*
|
|
14128
|
+
* @type {number}
|
|
14129
|
+
* @memberof PublicSubscriptionPlanResponse
|
|
14130
|
+
*/
|
|
14131
|
+
'subscribersCount': number;
|
|
13926
14132
|
/**
|
|
13927
14133
|
*
|
|
13928
14134
|
* @type {number}
|
|
@@ -13959,6 +14165,12 @@ export interface PublicSubscriptionPlanResponse {
|
|
|
13959
14165
|
* @memberof PublicSubscriptionPlanResponse
|
|
13960
14166
|
*/
|
|
13961
14167
|
'discount'?: SubscriptionPlanDiscountResponse;
|
|
14168
|
+
/**
|
|
14169
|
+
*
|
|
14170
|
+
* @type {number}
|
|
14171
|
+
* @memberof PublicSubscriptionPlanResponse
|
|
14172
|
+
*/
|
|
14173
|
+
'commitmentDurationMonths'?: number;
|
|
13962
14174
|
/**
|
|
13963
14175
|
*
|
|
13964
14176
|
* @type {boolean}
|
|
@@ -16703,6 +16915,12 @@ export interface SubscriptionPlanResponse {
|
|
|
16703
16915
|
* @memberof SubscriptionPlanResponse
|
|
16704
16916
|
*/
|
|
16705
16917
|
'productName': string;
|
|
16918
|
+
/**
|
|
16919
|
+
*
|
|
16920
|
+
* @type {number}
|
|
16921
|
+
* @memberof SubscriptionPlanResponse
|
|
16922
|
+
*/
|
|
16923
|
+
'subscribersCount': number;
|
|
16706
16924
|
/**
|
|
16707
16925
|
*
|
|
16708
16926
|
* @type {boolean}
|
|
@@ -16757,6 +16975,12 @@ export interface SubscriptionPlanResponse {
|
|
|
16757
16975
|
* @memberof SubscriptionPlanResponse
|
|
16758
16976
|
*/
|
|
16759
16977
|
'discount'?: SubscriptionPlanDiscountResponse;
|
|
16978
|
+
/**
|
|
16979
|
+
*
|
|
16980
|
+
* @type {number}
|
|
16981
|
+
* @memberof SubscriptionPlanResponse
|
|
16982
|
+
*/
|
|
16983
|
+
'commitmentDurationMonths'?: number;
|
|
16760
16984
|
}
|
|
16761
16985
|
/**
|
|
16762
16986
|
*
|
|
@@ -18321,6 +18545,12 @@ export interface UpdateSubscriptionPlanRequest {
|
|
|
18321
18545
|
* @memberof UpdateSubscriptionPlanRequest
|
|
18322
18546
|
*/
|
|
18323
18547
|
'interval'?: PlanInterval;
|
|
18548
|
+
/**
|
|
18549
|
+
*
|
|
18550
|
+
* @type {number}
|
|
18551
|
+
* @memberof UpdateSubscriptionPlanRequest
|
|
18552
|
+
*/
|
|
18553
|
+
'commitmentDurationMonths'?: number;
|
|
18324
18554
|
/**
|
|
18325
18555
|
*
|
|
18326
18556
|
* @type {SubscriptionPlanDiscountUpdateRequest}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -6256,6 +6256,12 @@ export interface CreateSubscriptionPlanRequest {
|
|
|
6256
6256
|
* @memberof CreateSubscriptionPlanRequest
|
|
6257
6257
|
*/
|
|
6258
6258
|
'interval': PlanInterval;
|
|
6259
|
+
/**
|
|
6260
|
+
*
|
|
6261
|
+
* @type {number}
|
|
6262
|
+
* @memberof CreateSubscriptionPlanRequest
|
|
6263
|
+
*/
|
|
6264
|
+
'commitmentDurationMonths'?: number;
|
|
6259
6265
|
/**
|
|
6260
6266
|
*
|
|
6261
6267
|
* @type {CreateSubscriptionPlanRequestDiscount}
|
|
@@ -7158,6 +7164,18 @@ export interface EventBookingDetailSummary {
|
|
|
7158
7164
|
* @memberof EventBookingDetailSummary
|
|
7159
7165
|
*/
|
|
7160
7166
|
'status': EventBookingStatus;
|
|
7167
|
+
/**
|
|
7168
|
+
*
|
|
7169
|
+
* @type {EventBookingDetailSummaryBookingStatus}
|
|
7170
|
+
* @memberof EventBookingDetailSummary
|
|
7171
|
+
*/
|
|
7172
|
+
'bookingStatus'?: EventBookingDetailSummaryBookingStatus | null;
|
|
7173
|
+
/**
|
|
7174
|
+
*
|
|
7175
|
+
* @type {string}
|
|
7176
|
+
* @memberof EventBookingDetailSummary
|
|
7177
|
+
*/
|
|
7178
|
+
'userId'?: string;
|
|
7161
7179
|
/**
|
|
7162
7180
|
*
|
|
7163
7181
|
* @type {string}
|
|
@@ -7170,6 +7188,12 @@ export interface EventBookingDetailSummary {
|
|
|
7170
7188
|
* @memberof EventBookingDetailSummary
|
|
7171
7189
|
*/
|
|
7172
7190
|
'players': Array<string>;
|
|
7191
|
+
/**
|
|
7192
|
+
*
|
|
7193
|
+
* @type {Array<string>}
|
|
7194
|
+
* @memberof EventBookingDetailSummary
|
|
7195
|
+
*/
|
|
7196
|
+
'playersIds'?: Array<string>;
|
|
7173
7197
|
/**
|
|
7174
7198
|
*
|
|
7175
7199
|
* @type {Array<EventBookingDetailSummaryPartnersInner>}
|
|
@@ -7182,6 +7206,36 @@ export interface EventBookingDetailSummary {
|
|
|
7182
7206
|
* @memberof EventBookingDetailSummary
|
|
7183
7207
|
*/
|
|
7184
7208
|
'paymentPerPlayers': Array<EventBookingDetailSummaryPaymentPerPlayersInner>;
|
|
7209
|
+
/**
|
|
7210
|
+
*
|
|
7211
|
+
* @type {Array<EventBookingDetailSummaryPaymentByPlayersStatusInner>}
|
|
7212
|
+
* @memberof EventBookingDetailSummary
|
|
7213
|
+
*/
|
|
7214
|
+
'paymentByPlayersStatus'?: Array<EventBookingDetailSummaryPaymentByPlayersStatusInner>;
|
|
7215
|
+
/**
|
|
7216
|
+
*
|
|
7217
|
+
* @type {boolean}
|
|
7218
|
+
* @memberof EventBookingDetailSummary
|
|
7219
|
+
*/
|
|
7220
|
+
'isCreatorPayingAll'?: boolean;
|
|
7221
|
+
/**
|
|
7222
|
+
*
|
|
7223
|
+
* @type {number}
|
|
7224
|
+
* @memberof EventBookingDetailSummary
|
|
7225
|
+
*/
|
|
7226
|
+
'myAmountToPay'?: number | null;
|
|
7227
|
+
/**
|
|
7228
|
+
*
|
|
7229
|
+
* @type {InvoiceStatus}
|
|
7230
|
+
* @memberof EventBookingDetailSummary
|
|
7231
|
+
*/
|
|
7232
|
+
'myPaymentStatus'?: InvoiceStatus | null;
|
|
7233
|
+
/**
|
|
7234
|
+
*
|
|
7235
|
+
* @type {string}
|
|
7236
|
+
* @memberof EventBookingDetailSummary
|
|
7237
|
+
*/
|
|
7238
|
+
'paymentUrl'?: string | null;
|
|
7185
7239
|
/**
|
|
7186
7240
|
*
|
|
7187
7241
|
* @type {string}
|
|
@@ -7218,6 +7272,42 @@ export interface EventBookingDetailSummary {
|
|
|
7218
7272
|
* @memberof EventBookingDetailSummary
|
|
7219
7273
|
*/
|
|
7220
7274
|
'userParticipationStatus'?: EventBookingDetailSummaryUserParticipationStatusEnum;
|
|
7275
|
+
/**
|
|
7276
|
+
*
|
|
7277
|
+
* @type {number}
|
|
7278
|
+
* @memberof EventBookingDetailSummary
|
|
7279
|
+
*/
|
|
7280
|
+
'participantsCount'?: number | null;
|
|
7281
|
+
/**
|
|
7282
|
+
*
|
|
7283
|
+
* @type {number}
|
|
7284
|
+
* @memberof EventBookingDetailSummary
|
|
7285
|
+
*/
|
|
7286
|
+
'playersCount'?: number | null;
|
|
7287
|
+
/**
|
|
7288
|
+
*
|
|
7289
|
+
* @type {number}
|
|
7290
|
+
* @memberof EventBookingDetailSummary
|
|
7291
|
+
*/
|
|
7292
|
+
'reservedPlayerCount'?: number | null;
|
|
7293
|
+
/**
|
|
7294
|
+
*
|
|
7295
|
+
* @type {number}
|
|
7296
|
+
* @memberof EventBookingDetailSummary
|
|
7297
|
+
*/
|
|
7298
|
+
'guestPlayersCount'?: number | null;
|
|
7299
|
+
/**
|
|
7300
|
+
*
|
|
7301
|
+
* @type {number}
|
|
7302
|
+
* @memberof EventBookingDetailSummary
|
|
7303
|
+
*/
|
|
7304
|
+
'guestPaymentsCount'?: number | null;
|
|
7305
|
+
/**
|
|
7306
|
+
*
|
|
7307
|
+
* @type {PaymentDistributionResult}
|
|
7308
|
+
* @memberof EventBookingDetailSummary
|
|
7309
|
+
*/
|
|
7310
|
+
'paymentDistribution'?: PaymentDistributionResult;
|
|
7221
7311
|
/**
|
|
7222
7312
|
*
|
|
7223
7313
|
* @type {string}
|
|
@@ -7237,6 +7327,13 @@ export declare const EventBookingDetailSummaryUserParticipationStatusEnum: {
|
|
|
7237
7327
|
readonly Waitlist: "waitlist";
|
|
7238
7328
|
};
|
|
7239
7329
|
export type EventBookingDetailSummaryUserParticipationStatusEnum = typeof EventBookingDetailSummaryUserParticipationStatusEnum[keyof typeof EventBookingDetailSummaryUserParticipationStatusEnum];
|
|
7330
|
+
/**
|
|
7331
|
+
*
|
|
7332
|
+
* @export
|
|
7333
|
+
* @interface EventBookingDetailSummaryBookingStatus
|
|
7334
|
+
*/
|
|
7335
|
+
export interface EventBookingDetailSummaryBookingStatus {
|
|
7336
|
+
}
|
|
7240
7337
|
/**
|
|
7241
7338
|
*
|
|
7242
7339
|
* @export
|
|
@@ -7268,24 +7365,127 @@ export interface EventBookingDetailSummaryPartnersInner {
|
|
|
7268
7365
|
*/
|
|
7269
7366
|
'id': string;
|
|
7270
7367
|
}
|
|
7368
|
+
/**
|
|
7369
|
+
*
|
|
7370
|
+
* @export
|
|
7371
|
+
* @interface EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7372
|
+
*/
|
|
7373
|
+
export interface EventBookingDetailSummaryPaymentByPlayersStatusInner {
|
|
7374
|
+
/**
|
|
7375
|
+
*
|
|
7376
|
+
* @type {string}
|
|
7377
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7378
|
+
*/
|
|
7379
|
+
'paymentUrl'?: string | null;
|
|
7380
|
+
/**
|
|
7381
|
+
*
|
|
7382
|
+
* @type {string}
|
|
7383
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7384
|
+
*/
|
|
7385
|
+
'response'?: string | null;
|
|
7386
|
+
/**
|
|
7387
|
+
*
|
|
7388
|
+
* @type {boolean}
|
|
7389
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7390
|
+
*/
|
|
7391
|
+
'accepted'?: boolean;
|
|
7392
|
+
/**
|
|
7393
|
+
*
|
|
7394
|
+
* @type {number}
|
|
7395
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7396
|
+
*/
|
|
7397
|
+
'amountToPay'?: number | null;
|
|
7398
|
+
/**
|
|
7399
|
+
*
|
|
7400
|
+
* @type {PaymentMethod}
|
|
7401
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7402
|
+
*/
|
|
7403
|
+
'paymentMethod'?: PaymentMethod | null;
|
|
7404
|
+
/**
|
|
7405
|
+
*
|
|
7406
|
+
* @type {InvoiceStatus}
|
|
7407
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7408
|
+
*/
|
|
7409
|
+
'invoiceStatus'?: InvoiceStatus | null;
|
|
7410
|
+
/**
|
|
7411
|
+
*
|
|
7412
|
+
* @type {string}
|
|
7413
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7414
|
+
*/
|
|
7415
|
+
'invoiceId'?: string | null;
|
|
7416
|
+
/**
|
|
7417
|
+
*
|
|
7418
|
+
* @type {string}
|
|
7419
|
+
* @memberof EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
7420
|
+
*/
|
|
7421
|
+
'playerId': string;
|
|
7422
|
+
}
|
|
7271
7423
|
/**
|
|
7272
7424
|
*
|
|
7273
7425
|
* @export
|
|
7274
7426
|
* @interface EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7275
7427
|
*/
|
|
7276
7428
|
export interface EventBookingDetailSummaryPaymentPerPlayersInner {
|
|
7429
|
+
/**
|
|
7430
|
+
*
|
|
7431
|
+
* @type {boolean}
|
|
7432
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7433
|
+
*/
|
|
7434
|
+
'isCurrentUser'?: boolean;
|
|
7435
|
+
/**
|
|
7436
|
+
*
|
|
7437
|
+
* @type {string}
|
|
7438
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7439
|
+
*/
|
|
7440
|
+
'response'?: string | null;
|
|
7441
|
+
/**
|
|
7442
|
+
*
|
|
7443
|
+
* @type {boolean}
|
|
7444
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7445
|
+
*/
|
|
7446
|
+
'accepted'?: boolean | null;
|
|
7447
|
+
/**
|
|
7448
|
+
*
|
|
7449
|
+
* @type {PaymentMethod}
|
|
7450
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7451
|
+
*/
|
|
7452
|
+
'paymentMethod'?: PaymentMethod | null;
|
|
7453
|
+
/**
|
|
7454
|
+
*
|
|
7455
|
+
* @type {string}
|
|
7456
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7457
|
+
*/
|
|
7458
|
+
'invoiceId'?: string | null;
|
|
7459
|
+
/**
|
|
7460
|
+
*
|
|
7461
|
+
* @type {number}
|
|
7462
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7463
|
+
*/
|
|
7464
|
+
'amountToPay'?: number | null;
|
|
7277
7465
|
/**
|
|
7278
7466
|
*
|
|
7279
7467
|
* @type {number}
|
|
7280
7468
|
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7281
7469
|
*/
|
|
7282
7470
|
'amount'?: number | null;
|
|
7471
|
+
/**
|
|
7472
|
+
*
|
|
7473
|
+
* @type {InvoiceStatus}
|
|
7474
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7475
|
+
*/
|
|
7476
|
+
'invoiceStatus'?: InvoiceStatus | null;
|
|
7283
7477
|
/**
|
|
7284
7478
|
*
|
|
7285
7479
|
* @type {InvoiceStatus}
|
|
7286
7480
|
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7287
7481
|
*/
|
|
7288
7482
|
'status'?: InvoiceStatus | null;
|
|
7483
|
+
/**
|
|
7484
|
+
*
|
|
7485
|
+
* @type {string}
|
|
7486
|
+
* @memberof EventBookingDetailSummaryPaymentPerPlayersInner
|
|
7487
|
+
*/
|
|
7488
|
+
'photo'?: string | null;
|
|
7289
7489
|
/**
|
|
7290
7490
|
*
|
|
7291
7491
|
* @type {string}
|
|
@@ -13923,6 +14123,12 @@ export interface PublicSubscriptionPlanResponse {
|
|
|
13923
14123
|
* @memberof PublicSubscriptionPlanResponse
|
|
13924
14124
|
*/
|
|
13925
14125
|
'name': string;
|
|
14126
|
+
/**
|
|
14127
|
+
*
|
|
14128
|
+
* @type {number}
|
|
14129
|
+
* @memberof PublicSubscriptionPlanResponse
|
|
14130
|
+
*/
|
|
14131
|
+
'subscribersCount': number;
|
|
13926
14132
|
/**
|
|
13927
14133
|
*
|
|
13928
14134
|
* @type {number}
|
|
@@ -13959,6 +14165,12 @@ export interface PublicSubscriptionPlanResponse {
|
|
|
13959
14165
|
* @memberof PublicSubscriptionPlanResponse
|
|
13960
14166
|
*/
|
|
13961
14167
|
'discount'?: SubscriptionPlanDiscountResponse;
|
|
14168
|
+
/**
|
|
14169
|
+
*
|
|
14170
|
+
* @type {number}
|
|
14171
|
+
* @memberof PublicSubscriptionPlanResponse
|
|
14172
|
+
*/
|
|
14173
|
+
'commitmentDurationMonths'?: number;
|
|
13962
14174
|
/**
|
|
13963
14175
|
*
|
|
13964
14176
|
* @type {boolean}
|
|
@@ -16703,6 +16915,12 @@ export interface SubscriptionPlanResponse {
|
|
|
16703
16915
|
* @memberof SubscriptionPlanResponse
|
|
16704
16916
|
*/
|
|
16705
16917
|
'productName': string;
|
|
16918
|
+
/**
|
|
16919
|
+
*
|
|
16920
|
+
* @type {number}
|
|
16921
|
+
* @memberof SubscriptionPlanResponse
|
|
16922
|
+
*/
|
|
16923
|
+
'subscribersCount': number;
|
|
16706
16924
|
/**
|
|
16707
16925
|
*
|
|
16708
16926
|
* @type {boolean}
|
|
@@ -16757,6 +16975,12 @@ export interface SubscriptionPlanResponse {
|
|
|
16757
16975
|
* @memberof SubscriptionPlanResponse
|
|
16758
16976
|
*/
|
|
16759
16977
|
'discount'?: SubscriptionPlanDiscountResponse;
|
|
16978
|
+
/**
|
|
16979
|
+
*
|
|
16980
|
+
* @type {number}
|
|
16981
|
+
* @memberof SubscriptionPlanResponse
|
|
16982
|
+
*/
|
|
16983
|
+
'commitmentDurationMonths'?: number;
|
|
16760
16984
|
}
|
|
16761
16985
|
/**
|
|
16762
16986
|
*
|
|
@@ -18321,6 +18545,12 @@ export interface UpdateSubscriptionPlanRequest {
|
|
|
18321
18545
|
* @memberof UpdateSubscriptionPlanRequest
|
|
18322
18546
|
*/
|
|
18323
18547
|
'interval'?: PlanInterval;
|
|
18548
|
+
/**
|
|
18549
|
+
*
|
|
18550
|
+
* @type {number}
|
|
18551
|
+
* @memberof UpdateSubscriptionPlanRequest
|
|
18552
|
+
*/
|
|
18553
|
+
'commitmentDurationMonths'?: number;
|
|
18324
18554
|
/**
|
|
18325
18555
|
*
|
|
18326
18556
|
* @type {SubscriptionPlanDiscountUpdateRequest}
|
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**prices** | [**Array<PlanPriceInput>**](PlanPriceInput.md) | | [default to undefined]
|
|
12
12
|
**currency** | **string** | | [default to undefined]
|
|
13
13
|
**interval** | [**PlanInterval**](PlanInterval.md) | | [default to undefined]
|
|
14
|
+
**commitmentDurationMonths** | **number** | | [optional] [default to undefined]
|
|
14
15
|
**discount** | [**CreateSubscriptionPlanRequestDiscount**](CreateSubscriptionPlanRequestDiscount.md) | | [optional] [default to undefined]
|
|
15
16
|
|
|
16
17
|
## Example
|
|
@@ -25,6 +26,7 @@ const instance: CreateSubscriptionPlanRequest = {
|
|
|
25
26
|
prices,
|
|
26
27
|
currency,
|
|
27
28
|
interval,
|
|
29
|
+
commitmentDurationMonths,
|
|
28
30
|
discount,
|
|
29
31
|
};
|
|
30
32
|
```
|
|
@@ -7,16 +7,30 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [default to undefined]
|
|
9
9
|
**status** | [**EventBookingStatus**](EventBookingStatus.md) | | [default to undefined]
|
|
10
|
+
**bookingStatus** | [**EventBookingDetailSummaryBookingStatus**](EventBookingDetailSummaryBookingStatus.md) | | [optional] [default to undefined]
|
|
11
|
+
**userId** | **string** | | [optional] [default to undefined]
|
|
10
12
|
**teamName** | **string** | | [optional] [default to undefined]
|
|
11
13
|
**players** | **Array<string>** | | [default to undefined]
|
|
14
|
+
**playersIds** | **Array<string>** | | [optional] [default to undefined]
|
|
12
15
|
**partners** | [**Array<EventBookingDetailSummaryPartnersInner>**](EventBookingDetailSummaryPartnersInner.md) | | [optional] [default to undefined]
|
|
13
16
|
**paymentPerPlayers** | [**Array<EventBookingDetailSummaryPaymentPerPlayersInner>**](EventBookingDetailSummaryPaymentPerPlayersInner.md) | Détails des paiements par joueur pour cette réservation d\'événement. Remplace l\'ancien champ `invoices`. | [default to undefined]
|
|
17
|
+
**paymentByPlayersStatus** | [**Array<EventBookingDetailSummaryPaymentByPlayersStatusInner>**](EventBookingDetailSummaryPaymentByPlayersStatusInner.md) | | [optional] [default to undefined]
|
|
18
|
+
**isCreatorPayingAll** | **boolean** | | [optional] [default to undefined]
|
|
19
|
+
**myAmountToPay** | **number** | | [optional] [default to undefined]
|
|
20
|
+
**myPaymentStatus** | [**InvoiceStatus**](InvoiceStatus.md) | | [optional] [default to undefined]
|
|
21
|
+
**paymentUrl** | **string** | | [optional] [default to undefined]
|
|
14
22
|
**creatorPaymentMethodId** | **string** | | [optional] [default to undefined]
|
|
15
23
|
**paymentMethodSetupCompleted** | **boolean** | | [default to undefined]
|
|
16
24
|
**limitSetupDate** | **string** | | [optional] [default to undefined]
|
|
17
25
|
**limitCancellationDate** | **string** | | [optional] [default to undefined]
|
|
18
26
|
**waitListPosition** | **number** | Position dans la file d\'attente si l\'utilisateur est en waitlist pour cet événement | [optional] [default to undefined]
|
|
19
27
|
**userParticipationStatus** | **string** | Statut de participation de l\'utilisateur pour cet event booking | [optional] [default to undefined]
|
|
28
|
+
**participantsCount** | **number** | | [optional] [default to undefined]
|
|
29
|
+
**playersCount** | **number** | | [optional] [default to undefined]
|
|
30
|
+
**reservedPlayerCount** | **number** | | [optional] [default to undefined]
|
|
31
|
+
**guestPlayersCount** | **number** | | [optional] [default to undefined]
|
|
32
|
+
**guestPaymentsCount** | **number** | | [optional] [default to undefined]
|
|
33
|
+
**paymentDistribution** | [**PaymentDistributionResult**](PaymentDistributionResult.md) | | [optional] [default to undefined]
|
|
20
34
|
**createdAt** | **string** | | [default to undefined]
|
|
21
35
|
**updatedAt** | **string** | | [default to undefined]
|
|
22
36
|
|
|
@@ -28,16 +42,30 @@ import { EventBookingDetailSummary } from '@tennac-booking/sdk';
|
|
|
28
42
|
const instance: EventBookingDetailSummary = {
|
|
29
43
|
id,
|
|
30
44
|
status,
|
|
45
|
+
bookingStatus,
|
|
46
|
+
userId,
|
|
31
47
|
teamName,
|
|
32
48
|
players,
|
|
49
|
+
playersIds,
|
|
33
50
|
partners,
|
|
34
51
|
paymentPerPlayers,
|
|
52
|
+
paymentByPlayersStatus,
|
|
53
|
+
isCreatorPayingAll,
|
|
54
|
+
myAmountToPay,
|
|
55
|
+
myPaymentStatus,
|
|
56
|
+
paymentUrl,
|
|
35
57
|
creatorPaymentMethodId,
|
|
36
58
|
paymentMethodSetupCompleted,
|
|
37
59
|
limitSetupDate,
|
|
38
60
|
limitCancellationDate,
|
|
39
61
|
waitListPosition,
|
|
40
62
|
userParticipationStatus,
|
|
63
|
+
participantsCount,
|
|
64
|
+
playersCount,
|
|
65
|
+
reservedPlayerCount,
|
|
66
|
+
guestPlayersCount,
|
|
67
|
+
guestPaymentsCount,
|
|
68
|
+
paymentDistribution,
|
|
41
69
|
createdAt,
|
|
42
70
|
updatedAt,
|
|
43
71
|
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# EventBookingDetailSummaryBookingStatus
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
import { EventBookingDetailSummaryBookingStatus } from '@tennac-booking/sdk';
|
|
13
|
+
|
|
14
|
+
const instance: EventBookingDetailSummaryBookingStatus = {
|
|
15
|
+
};
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# EventBookingDetailSummaryPaymentByPlayersStatusInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**paymentUrl** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**response** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**accepted** | **boolean** | | [optional] [default to undefined]
|
|
11
|
+
**amountToPay** | **number** | | [optional] [default to undefined]
|
|
12
|
+
**paymentMethod** | [**PaymentMethod**](PaymentMethod.md) | | [optional] [default to undefined]
|
|
13
|
+
**invoiceStatus** | [**InvoiceStatus**](InvoiceStatus.md) | | [optional] [default to undefined]
|
|
14
|
+
**invoiceId** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**playerId** | **string** | | [default to undefined]
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { EventBookingDetailSummaryPaymentByPlayersStatusInner } from '@tennac-booking/sdk';
|
|
21
|
+
|
|
22
|
+
const instance: EventBookingDetailSummaryPaymentByPlayersStatusInner = {
|
|
23
|
+
paymentUrl,
|
|
24
|
+
response,
|
|
25
|
+
accepted,
|
|
26
|
+
amountToPay,
|
|
27
|
+
paymentMethod,
|
|
28
|
+
invoiceStatus,
|
|
29
|
+
invoiceId,
|
|
30
|
+
playerId,
|
|
31
|
+
};
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -5,8 +5,16 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**isCurrentUser** | **boolean** | | [optional] [default to undefined]
|
|
9
|
+
**response** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**accepted** | **boolean** | | [optional] [default to undefined]
|
|
11
|
+
**paymentMethod** | [**PaymentMethod**](PaymentMethod.md) | | [optional] [default to undefined]
|
|
12
|
+
**invoiceId** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**amountToPay** | **number** | | [optional] [default to undefined]
|
|
8
14
|
**amount** | **number** | | [optional] [default to undefined]
|
|
15
|
+
**invoiceStatus** | [**InvoiceStatus**](InvoiceStatus.md) | | [optional] [default to undefined]
|
|
9
16
|
**status** | [**InvoiceStatus**](InvoiceStatus.md) | | [optional] [default to undefined]
|
|
17
|
+
**photo** | **string** | | [optional] [default to undefined]
|
|
10
18
|
**profilePicture** | **string** | | [optional] [default to undefined]
|
|
11
19
|
**lastName** | **string** | | [optional] [default to undefined]
|
|
12
20
|
**firstName** | **string** | | [optional] [default to undefined]
|
|
@@ -18,8 +26,16 @@ Name | Type | Description | Notes
|
|
|
18
26
|
import { EventBookingDetailSummaryPaymentPerPlayersInner } from '@tennac-booking/sdk';
|
|
19
27
|
|
|
20
28
|
const instance: EventBookingDetailSummaryPaymentPerPlayersInner = {
|
|
29
|
+
isCurrentUser,
|
|
30
|
+
response,
|
|
31
|
+
accepted,
|
|
32
|
+
paymentMethod,
|
|
33
|
+
invoiceId,
|
|
34
|
+
amountToPay,
|
|
21
35
|
amount,
|
|
36
|
+
invoiceStatus,
|
|
22
37
|
status,
|
|
38
|
+
photo,
|
|
23
39
|
profilePicture,
|
|
24
40
|
lastName,
|
|
25
41
|
firstName,
|
|
@@ -7,12 +7,14 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**productId** | **string** | | [default to undefined]
|
|
9
9
|
**name** | **string** | | [default to undefined]
|
|
10
|
+
**subscribersCount** | **number** | | [default to undefined]
|
|
10
11
|
**amountInCents** | **number** | | [optional] [default to undefined]
|
|
11
12
|
**currency** | **string** | | [default to undefined]
|
|
12
13
|
**prices** | [**Array<PlanPrice>**](PlanPrice.md) | | [default to undefined]
|
|
13
14
|
**interval** | [**PlanInterval**](PlanInterval.md) | | [optional] [default to undefined]
|
|
14
15
|
**description** | **string** | | [optional] [default to undefined]
|
|
15
16
|
**discount** | [**SubscriptionPlanDiscountResponse**](SubscriptionPlanDiscountResponse.md) | | [optional] [default to undefined]
|
|
17
|
+
**commitmentDurationMonths** | **number** | | [optional] [default to undefined]
|
|
16
18
|
**isUserSubscribed** | **boolean** | | [optional] [default to undefined]
|
|
17
19
|
**userSubscriptionId** | **string** | | [optional] [default to undefined]
|
|
18
20
|
**userSubscriptionStatus** | **string** | | [optional] [default to undefined]
|
|
@@ -25,12 +27,14 @@ import { PublicSubscriptionPlanResponse } from '@tennac-booking/sdk';
|
|
|
25
27
|
const instance: PublicSubscriptionPlanResponse = {
|
|
26
28
|
productId,
|
|
27
29
|
name,
|
|
30
|
+
subscribersCount,
|
|
28
31
|
amountInCents,
|
|
29
32
|
currency,
|
|
30
33
|
prices,
|
|
31
34
|
interval,
|
|
32
35
|
description,
|
|
33
36
|
discount,
|
|
37
|
+
commitmentDurationMonths,
|
|
34
38
|
isUserSubscribed,
|
|
35
39
|
userSubscriptionId,
|
|
36
40
|
userSubscriptionStatus,
|
|
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**planId** | **string** | | [default to undefined]
|
|
9
9
|
**productId** | **string** | | [default to undefined]
|
|
10
10
|
**productName** | **string** | | [default to undefined]
|
|
11
|
+
**subscribersCount** | **number** | | [default to undefined]
|
|
11
12
|
**productActive** | **boolean** | | [default to undefined]
|
|
12
13
|
**priceId** | **string** | | [default to undefined]
|
|
13
14
|
**amountInCents** | **number** | | [optional] [default to undefined]
|
|
@@ -17,6 +18,7 @@ Name | Type | Description | Notes
|
|
|
17
18
|
**priceActive** | **boolean** | | [default to undefined]
|
|
18
19
|
**description** | **string** | | [optional] [default to undefined]
|
|
19
20
|
**discount** | [**SubscriptionPlanDiscountResponse**](SubscriptionPlanDiscountResponse.md) | | [optional] [default to undefined]
|
|
21
|
+
**commitmentDurationMonths** | **number** | | [optional] [default to undefined]
|
|
20
22
|
|
|
21
23
|
## Example
|
|
22
24
|
|
|
@@ -27,6 +29,7 @@ const instance: SubscriptionPlanResponse = {
|
|
|
27
29
|
planId,
|
|
28
30
|
productId,
|
|
29
31
|
productName,
|
|
32
|
+
subscribersCount,
|
|
30
33
|
productActive,
|
|
31
34
|
priceId,
|
|
32
35
|
amountInCents,
|
|
@@ -36,6 +39,7 @@ const instance: SubscriptionPlanResponse = {
|
|
|
36
39
|
priceActive,
|
|
37
40
|
description,
|
|
38
41
|
discount,
|
|
42
|
+
commitmentDurationMonths,
|
|
39
43
|
};
|
|
40
44
|
```
|
|
41
45
|
|
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**description** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**currency** | **string** | | [optional] [default to undefined]
|
|
13
13
|
**interval** | [**PlanInterval**](PlanInterval.md) | | [optional] [default to undefined]
|
|
14
|
+
**commitmentDurationMonths** | **number** | | [optional] [default to undefined]
|
|
14
15
|
**discount** | [**SubscriptionPlanDiscountUpdateRequest**](SubscriptionPlanDiscountUpdateRequest.md) | | [optional] [default to undefined]
|
|
15
16
|
**newAmountInCents** | **number** | | [optional] [default to undefined]
|
|
16
17
|
|
|
@@ -26,6 +27,7 @@ const instance: UpdateSubscriptionPlanRequest = {
|
|
|
26
27
|
description,
|
|
27
28
|
currency,
|
|
28
29
|
interval,
|
|
30
|
+
commitmentDurationMonths,
|
|
29
31
|
discount,
|
|
30
32
|
newAmountInCents,
|
|
31
33
|
};
|