@gooday_corp/gooday-api-client 1.2.81 → 1.2.86
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/api.ts +246 -250
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -447,41 +447,53 @@ export interface BlockoutDeleteResponseDTO {
|
|
|
447
447
|
*/
|
|
448
448
|
export interface BlockoutEntity {
|
|
449
449
|
/**
|
|
450
|
-
*
|
|
451
|
-
* @type {
|
|
450
|
+
* Is recurring event
|
|
451
|
+
* @type {boolean}
|
|
452
452
|
* @memberof BlockoutEntity
|
|
453
453
|
*/
|
|
454
|
-
'
|
|
454
|
+
'isRecurring': boolean;
|
|
455
455
|
/**
|
|
456
|
-
*
|
|
456
|
+
* Duration in minutes
|
|
457
|
+
* @type {number}
|
|
458
|
+
* @memberof BlockoutEntity
|
|
459
|
+
*/
|
|
460
|
+
'duration': number;
|
|
461
|
+
/**
|
|
462
|
+
* Repeat interval for event
|
|
457
463
|
* @type {string}
|
|
458
464
|
* @memberof BlockoutEntity
|
|
459
465
|
*/
|
|
460
|
-
'
|
|
466
|
+
'repeat': BlockoutEntityRepeatEnum;
|
|
461
467
|
/**
|
|
462
|
-
* Start date
|
|
468
|
+
* Start date of an event
|
|
463
469
|
* @type {string}
|
|
464
470
|
* @memberof BlockoutEntity
|
|
465
471
|
*/
|
|
466
472
|
'startDate': string;
|
|
467
473
|
/**
|
|
468
|
-
* End date
|
|
474
|
+
* End date of an event
|
|
469
475
|
* @type {string}
|
|
470
476
|
* @memberof BlockoutEntity
|
|
471
477
|
*/
|
|
472
478
|
'endDate': string;
|
|
473
479
|
/**
|
|
474
|
-
*
|
|
480
|
+
* Recurrence pattern
|
|
475
481
|
* @type {string}
|
|
476
482
|
* @memberof BlockoutEntity
|
|
477
483
|
*/
|
|
478
|
-
'
|
|
484
|
+
'pattern'?: string;
|
|
479
485
|
/**
|
|
480
|
-
*
|
|
486
|
+
* Event id
|
|
481
487
|
* @type {string}
|
|
482
488
|
* @memberof BlockoutEntity
|
|
483
489
|
*/
|
|
484
|
-
'
|
|
490
|
+
'_id': string;
|
|
491
|
+
/**
|
|
492
|
+
* Event name
|
|
493
|
+
* @type {string}
|
|
494
|
+
* @memberof BlockoutEntity
|
|
495
|
+
*/
|
|
496
|
+
'title': string;
|
|
485
497
|
/**
|
|
486
498
|
*
|
|
487
499
|
* @type {Array<BusinessVenueDetailsEntity>}
|
|
@@ -494,25 +506,14 @@ export interface BlockoutEntity {
|
|
|
494
506
|
* @memberof BlockoutEntity
|
|
495
507
|
*/
|
|
496
508
|
'business': string;
|
|
497
|
-
/**
|
|
498
|
-
* Form
|
|
499
|
-
* @type {string}
|
|
500
|
-
* @memberof BlockoutEntity
|
|
501
|
-
*/
|
|
502
|
-
'from': string;
|
|
503
|
-
/**
|
|
504
|
-
* to
|
|
505
|
-
* @type {string}
|
|
506
|
-
* @memberof BlockoutEntity
|
|
507
|
-
*/
|
|
508
|
-
'to': string;
|
|
509
509
|
}
|
|
510
510
|
|
|
511
511
|
export const BlockoutEntityRepeatEnum = {
|
|
512
512
|
None: 'NONE',
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
513
|
+
Daily: 'DAILY',
|
|
514
|
+
Weekly: 'WEEKLY',
|
|
515
|
+
Monthly: 'MONTHLY',
|
|
516
|
+
Year: 'YEAR'
|
|
516
517
|
} as const;
|
|
517
518
|
|
|
518
519
|
export type BlockoutEntityRepeatEnum = typeof BlockoutEntityRepeatEnum[keyof typeof BlockoutEntityRepeatEnum];
|
|
@@ -524,60 +525,55 @@ export type BlockoutEntityRepeatEnum = typeof BlockoutEntityRepeatEnum[keyof typ
|
|
|
524
525
|
*/
|
|
525
526
|
export interface BlockoutPayloadDTO {
|
|
526
527
|
/**
|
|
527
|
-
*
|
|
528
|
-
* @type {string}
|
|
529
|
-
* @memberof BlockoutPayloadDTO
|
|
530
|
-
*/
|
|
531
|
-
'title': string;
|
|
532
|
-
/**
|
|
533
|
-
* Start date for the blockout
|
|
528
|
+
* Start date of event
|
|
534
529
|
* @type {string}
|
|
535
530
|
* @memberof BlockoutPayloadDTO
|
|
536
531
|
*/
|
|
537
532
|
'startDate': string;
|
|
538
533
|
/**
|
|
539
|
-
* End date
|
|
534
|
+
* End date of event
|
|
540
535
|
* @type {string}
|
|
541
536
|
* @memberof BlockoutPayloadDTO
|
|
542
537
|
*/
|
|
543
538
|
'endDate': string;
|
|
544
539
|
/**
|
|
545
|
-
*
|
|
540
|
+
* Start hour of an event
|
|
546
541
|
* @type {string}
|
|
547
542
|
* @memberof BlockoutPayloadDTO
|
|
548
543
|
*/
|
|
549
|
-
'
|
|
544
|
+
'from': string;
|
|
550
545
|
/**
|
|
551
|
-
*
|
|
546
|
+
* End hour of an event
|
|
552
547
|
* @type {string}
|
|
553
548
|
* @memberof BlockoutPayloadDTO
|
|
554
549
|
*/
|
|
555
|
-
'
|
|
550
|
+
'to': string;
|
|
556
551
|
/**
|
|
557
|
-
*
|
|
558
|
-
* @type {
|
|
552
|
+
*
|
|
553
|
+
* @type {string}
|
|
559
554
|
* @memberof BlockoutPayloadDTO
|
|
560
555
|
*/
|
|
561
|
-
'
|
|
556
|
+
'repeat': BlockoutPayloadDTORepeatEnum;
|
|
562
557
|
/**
|
|
563
|
-
*
|
|
558
|
+
* Name of block
|
|
564
559
|
* @type {string}
|
|
565
560
|
* @memberof BlockoutPayloadDTO
|
|
566
561
|
*/
|
|
567
|
-
'
|
|
562
|
+
'title': string;
|
|
568
563
|
/**
|
|
569
|
-
*
|
|
564
|
+
* Business Venue Id
|
|
570
565
|
* @type {string}
|
|
571
566
|
* @memberof BlockoutPayloadDTO
|
|
572
567
|
*/
|
|
573
|
-
'
|
|
568
|
+
'venue': string;
|
|
574
569
|
}
|
|
575
570
|
|
|
576
571
|
export const BlockoutPayloadDTORepeatEnum = {
|
|
577
572
|
None: 'NONE',
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
573
|
+
Daily: 'DAILY',
|
|
574
|
+
Weekly: 'WEEKLY',
|
|
575
|
+
Monthly: 'MONTHLY',
|
|
576
|
+
Year: 'YEAR'
|
|
581
577
|
} as const;
|
|
582
578
|
|
|
583
579
|
export type BlockoutPayloadDTORepeatEnum = typeof BlockoutPayloadDTORepeatEnum[keyof typeof BlockoutPayloadDTORepeatEnum];
|
|
@@ -4800,6 +4796,25 @@ export interface PlanUpsertPayloadDTO {
|
|
|
4800
4796
|
*/
|
|
4801
4797
|
'plan': string;
|
|
4802
4798
|
}
|
|
4799
|
+
/**
|
|
4800
|
+
*
|
|
4801
|
+
* @export
|
|
4802
|
+
* @interface PrepaidServiceCapacityDTO
|
|
4803
|
+
*/
|
|
4804
|
+
export interface PrepaidServiceCapacityDTO {
|
|
4805
|
+
/**
|
|
4806
|
+
* Time duration
|
|
4807
|
+
* @type {TimeDuration}
|
|
4808
|
+
* @memberof PrepaidServiceCapacityDTO
|
|
4809
|
+
*/
|
|
4810
|
+
'time': TimeDuration;
|
|
4811
|
+
/**
|
|
4812
|
+
* Capacity
|
|
4813
|
+
* @type {number}
|
|
4814
|
+
* @memberof PrepaidServiceCapacityDTO
|
|
4815
|
+
*/
|
|
4816
|
+
'capacity': number;
|
|
4817
|
+
}
|
|
4803
4818
|
/**
|
|
4804
4819
|
*
|
|
4805
4820
|
* @export
|
|
@@ -4869,6 +4884,42 @@ export interface PrepaidServiceDiscount {
|
|
|
4869
4884
|
* @interface PrepaidServiceEntity
|
|
4870
4885
|
*/
|
|
4871
4886
|
export interface PrepaidServiceEntity {
|
|
4887
|
+
/**
|
|
4888
|
+
* Is recurring event
|
|
4889
|
+
* @type {boolean}
|
|
4890
|
+
* @memberof PrepaidServiceEntity
|
|
4891
|
+
*/
|
|
4892
|
+
'isRecurring': boolean;
|
|
4893
|
+
/**
|
|
4894
|
+
* Duration in minutes
|
|
4895
|
+
* @type {number}
|
|
4896
|
+
* @memberof PrepaidServiceEntity
|
|
4897
|
+
*/
|
|
4898
|
+
'duration': number;
|
|
4899
|
+
/**
|
|
4900
|
+
* Repeat interval for event
|
|
4901
|
+
* @type {string}
|
|
4902
|
+
* @memberof PrepaidServiceEntity
|
|
4903
|
+
*/
|
|
4904
|
+
'repeat': PrepaidServiceEntityRepeatEnum;
|
|
4905
|
+
/**
|
|
4906
|
+
* Start date of an event
|
|
4907
|
+
* @type {string}
|
|
4908
|
+
* @memberof PrepaidServiceEntity
|
|
4909
|
+
*/
|
|
4910
|
+
'startDate': string;
|
|
4911
|
+
/**
|
|
4912
|
+
* End date of an event
|
|
4913
|
+
* @type {string}
|
|
4914
|
+
* @memberof PrepaidServiceEntity
|
|
4915
|
+
*/
|
|
4916
|
+
'endDate': string;
|
|
4917
|
+
/**
|
|
4918
|
+
* Recurrence pattern
|
|
4919
|
+
* @type {string}
|
|
4920
|
+
* @memberof PrepaidServiceEntity
|
|
4921
|
+
*/
|
|
4922
|
+
'pattern'?: string;
|
|
4872
4923
|
/**
|
|
4873
4924
|
* Tag id
|
|
4874
4925
|
* @type {string}
|
|
@@ -4889,10 +4940,10 @@ export interface PrepaidServiceEntity {
|
|
|
4889
4940
|
'category': string;
|
|
4890
4941
|
/**
|
|
4891
4942
|
*
|
|
4892
|
-
* @type {Array<
|
|
4943
|
+
* @type {Array<PrepaidServiceCapacityDTO>}
|
|
4893
4944
|
* @memberof PrepaidServiceEntity
|
|
4894
4945
|
*/
|
|
4895
|
-
'
|
|
4946
|
+
'capacity': Array<PrepaidServiceCapacityDTO>;
|
|
4896
4947
|
/**
|
|
4897
4948
|
*
|
|
4898
4949
|
* @type {boolean}
|
|
@@ -4935,12 +4986,6 @@ export interface PrepaidServiceEntity {
|
|
|
4935
4986
|
* @memberof PrepaidServiceEntity
|
|
4936
4987
|
*/
|
|
4937
4988
|
'business': string;
|
|
4938
|
-
/**
|
|
4939
|
-
*
|
|
4940
|
-
* @type {ServiceEndRepeat}
|
|
4941
|
-
* @memberof PrepaidServiceEntity
|
|
4942
|
-
*/
|
|
4943
|
-
'repeat': ServiceEndRepeat;
|
|
4944
4989
|
/**
|
|
4945
4990
|
*
|
|
4946
4991
|
* @type {number}
|
|
@@ -4990,6 +5035,17 @@ export interface PrepaidServiceEntity {
|
|
|
4990
5035
|
*/
|
|
4991
5036
|
'cancellationHours': string;
|
|
4992
5037
|
}
|
|
5038
|
+
|
|
5039
|
+
export const PrepaidServiceEntityRepeatEnum = {
|
|
5040
|
+
None: 'NONE',
|
|
5041
|
+
Daily: 'DAILY',
|
|
5042
|
+
Weekly: 'WEEKLY',
|
|
5043
|
+
Monthly: 'MONTHLY',
|
|
5044
|
+
Year: 'YEAR'
|
|
5045
|
+
} as const;
|
|
5046
|
+
|
|
5047
|
+
export type PrepaidServiceEntityRepeatEnum = typeof PrepaidServiceEntityRepeatEnum[keyof typeof PrepaidServiceEntityRepeatEnum];
|
|
5048
|
+
|
|
4993
5049
|
/**
|
|
4994
5050
|
*
|
|
4995
5051
|
* @export
|
|
@@ -5028,23 +5084,47 @@ export interface PrepaidServiceFindDTO {
|
|
|
5028
5084
|
*/
|
|
5029
5085
|
export interface PrepaidServicePayloadDTO {
|
|
5030
5086
|
/**
|
|
5031
|
-
*
|
|
5087
|
+
* Start date of event
|
|
5032
5088
|
* @type {string}
|
|
5033
5089
|
* @memberof PrepaidServicePayloadDTO
|
|
5034
5090
|
*/
|
|
5035
|
-
'
|
|
5091
|
+
'startDate': string;
|
|
5036
5092
|
/**
|
|
5037
|
-
*
|
|
5093
|
+
* End date of event
|
|
5038
5094
|
* @type {string}
|
|
5039
5095
|
* @memberof PrepaidServicePayloadDTO
|
|
5040
5096
|
*/
|
|
5041
|
-
'
|
|
5097
|
+
'endDate': string;
|
|
5098
|
+
/**
|
|
5099
|
+
* Start hour of an event
|
|
5100
|
+
* @type {string}
|
|
5101
|
+
* @memberof PrepaidServicePayloadDTO
|
|
5102
|
+
*/
|
|
5103
|
+
'from': string;
|
|
5104
|
+
/**
|
|
5105
|
+
* End hour of an event
|
|
5106
|
+
* @type {string}
|
|
5107
|
+
* @memberof PrepaidServicePayloadDTO
|
|
5108
|
+
*/
|
|
5109
|
+
'to': string;
|
|
5042
5110
|
/**
|
|
5043
5111
|
*
|
|
5044
|
-
* @type {
|
|
5112
|
+
* @type {string}
|
|
5045
5113
|
* @memberof PrepaidServicePayloadDTO
|
|
5046
5114
|
*/
|
|
5047
|
-
'
|
|
5115
|
+
'repeat': PrepaidServicePayloadDTORepeatEnum;
|
|
5116
|
+
/**
|
|
5117
|
+
* Service name
|
|
5118
|
+
* @type {string}
|
|
5119
|
+
* @memberof PrepaidServicePayloadDTO
|
|
5120
|
+
*/
|
|
5121
|
+
'name': string;
|
|
5122
|
+
/**
|
|
5123
|
+
* Category
|
|
5124
|
+
* @type {string}
|
|
5125
|
+
* @memberof PrepaidServicePayloadDTO
|
|
5126
|
+
*/
|
|
5127
|
+
'category': string;
|
|
5048
5128
|
/**
|
|
5049
5129
|
*
|
|
5050
5130
|
* @type {boolean}
|
|
@@ -5111,24 +5191,18 @@ export interface PrepaidServicePayloadDTO {
|
|
|
5111
5191
|
* @memberof PrepaidServicePayloadDTO
|
|
5112
5192
|
*/
|
|
5113
5193
|
'email': string;
|
|
5114
|
-
/**
|
|
5115
|
-
*
|
|
5116
|
-
* @type {ServiceEndRepeat}
|
|
5117
|
-
* @memberof PrepaidServicePayloadDTO
|
|
5118
|
-
*/
|
|
5119
|
-
'repeat'?: ServiceEndRepeat;
|
|
5120
5194
|
/**
|
|
5121
5195
|
*
|
|
5122
5196
|
* @type {Array<PrepaidServiceDiscount>}
|
|
5123
5197
|
* @memberof PrepaidServicePayloadDTO
|
|
5124
5198
|
*/
|
|
5125
|
-
'discounts'
|
|
5199
|
+
'discounts': Array<PrepaidServiceDiscount>;
|
|
5126
5200
|
/**
|
|
5127
5201
|
*
|
|
5128
|
-
* @type {Array<
|
|
5202
|
+
* @type {Array<PrepaidServiceCapacityDTO>}
|
|
5129
5203
|
* @memberof PrepaidServicePayloadDTO
|
|
5130
5204
|
*/
|
|
5131
|
-
'
|
|
5205
|
+
'capacity': Array<PrepaidServiceCapacityDTO>;
|
|
5132
5206
|
/**
|
|
5133
5207
|
*
|
|
5134
5208
|
* @type {number}
|
|
@@ -5142,6 +5216,17 @@ export interface PrepaidServicePayloadDTO {
|
|
|
5142
5216
|
*/
|
|
5143
5217
|
'cancellationHours': string;
|
|
5144
5218
|
}
|
|
5219
|
+
|
|
5220
|
+
export const PrepaidServicePayloadDTORepeatEnum = {
|
|
5221
|
+
None: 'NONE',
|
|
5222
|
+
Daily: 'DAILY',
|
|
5223
|
+
Weekly: 'WEEKLY',
|
|
5224
|
+
Monthly: 'MONTHLY',
|
|
5225
|
+
Year: 'YEAR'
|
|
5226
|
+
} as const;
|
|
5227
|
+
|
|
5228
|
+
export type PrepaidServicePayloadDTORepeatEnum = typeof PrepaidServicePayloadDTORepeatEnum[keyof typeof PrepaidServicePayloadDTORepeatEnum];
|
|
5229
|
+
|
|
5145
5230
|
/**
|
|
5146
5231
|
*
|
|
5147
5232
|
* @export
|
|
@@ -5161,25 +5246,6 @@ export interface PrepaidServiceResponseDTO {
|
|
|
5161
5246
|
*/
|
|
5162
5247
|
'statusCode': number;
|
|
5163
5248
|
}
|
|
5164
|
-
/**
|
|
5165
|
-
*
|
|
5166
|
-
* @export
|
|
5167
|
-
* @interface PrepaidServiceTimeDuration
|
|
5168
|
-
*/
|
|
5169
|
-
export interface PrepaidServiceTimeDuration {
|
|
5170
|
-
/**
|
|
5171
|
-
* Time duration
|
|
5172
|
-
* @type {TimeDuration}
|
|
5173
|
-
* @memberof PrepaidServiceTimeDuration
|
|
5174
|
-
*/
|
|
5175
|
-
'time': TimeDuration;
|
|
5176
|
-
/**
|
|
5177
|
-
* Capacity
|
|
5178
|
-
* @type {number}
|
|
5179
|
-
* @memberof PrepaidServiceTimeDuration
|
|
5180
|
-
*/
|
|
5181
|
-
'capacity': number;
|
|
5182
|
-
}
|
|
5183
5249
|
/**
|
|
5184
5250
|
*
|
|
5185
5251
|
* @export
|
|
@@ -5349,76 +5415,6 @@ export interface RenameCalendarPayload {
|
|
|
5349
5415
|
*/
|
|
5350
5416
|
'name': string;
|
|
5351
5417
|
}
|
|
5352
|
-
/**
|
|
5353
|
-
*
|
|
5354
|
-
* @export
|
|
5355
|
-
* @interface Repeat
|
|
5356
|
-
*/
|
|
5357
|
-
export interface Repeat {
|
|
5358
|
-
/**
|
|
5359
|
-
* Start date for the events
|
|
5360
|
-
* @type {string}
|
|
5361
|
-
* @memberof Repeat
|
|
5362
|
-
*/
|
|
5363
|
-
'startDate': string;
|
|
5364
|
-
/**
|
|
5365
|
-
* End date for the events
|
|
5366
|
-
* @type {string}
|
|
5367
|
-
* @memberof Repeat
|
|
5368
|
-
*/
|
|
5369
|
-
'endDate': string;
|
|
5370
|
-
/**
|
|
5371
|
-
* Form
|
|
5372
|
-
* @type {string}
|
|
5373
|
-
* @memberof Repeat
|
|
5374
|
-
*/
|
|
5375
|
-
'from': string;
|
|
5376
|
-
/**
|
|
5377
|
-
* to
|
|
5378
|
-
* @type {string}
|
|
5379
|
-
* @memberof Repeat
|
|
5380
|
-
*/
|
|
5381
|
-
'to': string;
|
|
5382
|
-
/**
|
|
5383
|
-
*
|
|
5384
|
-
* @type {string}
|
|
5385
|
-
* @memberof Repeat
|
|
5386
|
-
*/
|
|
5387
|
-
'finalBookingTime': RepeatFinalBookingTimeEnum;
|
|
5388
|
-
/**
|
|
5389
|
-
* to
|
|
5390
|
-
* @type {string}
|
|
5391
|
-
* @memberof Repeat
|
|
5392
|
-
*/
|
|
5393
|
-
'time': string;
|
|
5394
|
-
/**
|
|
5395
|
-
*
|
|
5396
|
-
* @type {string}
|
|
5397
|
-
* @memberof Repeat
|
|
5398
|
-
*/
|
|
5399
|
-
'repeat': RepeatRepeatEnum;
|
|
5400
|
-
/**
|
|
5401
|
-
*
|
|
5402
|
-
* @type {string}
|
|
5403
|
-
* @memberof Repeat
|
|
5404
|
-
*/
|
|
5405
|
-
'repeatEndDate': string;
|
|
5406
|
-
}
|
|
5407
|
-
|
|
5408
|
-
export const RepeatFinalBookingTimeEnum = {
|
|
5409
|
-
_5HourBeforeEventStarts: '5 hour before event starts'
|
|
5410
|
-
} as const;
|
|
5411
|
-
|
|
5412
|
-
export type RepeatFinalBookingTimeEnum = typeof RepeatFinalBookingTimeEnum[keyof typeof RepeatFinalBookingTimeEnum];
|
|
5413
|
-
export const RepeatRepeatEnum = {
|
|
5414
|
-
None: 'NONE',
|
|
5415
|
-
EveryWeek: 'EVERY_WEEK',
|
|
5416
|
-
EveryMonth: 'EVERY_MONTH',
|
|
5417
|
-
EveryYear: 'EVERY_YEAR'
|
|
5418
|
-
} as const;
|
|
5419
|
-
|
|
5420
|
-
export type RepeatRepeatEnum = typeof RepeatRepeatEnum[keyof typeof RepeatRepeatEnum];
|
|
5421
|
-
|
|
5422
5418
|
/**
|
|
5423
5419
|
*
|
|
5424
5420
|
* @export
|
|
@@ -5489,76 +5485,6 @@ export interface SendFriendshipRequestPayload {
|
|
|
5489
5485
|
*/
|
|
5490
5486
|
'to': string;
|
|
5491
5487
|
}
|
|
5492
|
-
/**
|
|
5493
|
-
*
|
|
5494
|
-
* @export
|
|
5495
|
-
* @interface ServiceEndRepeat
|
|
5496
|
-
*/
|
|
5497
|
-
export interface ServiceEndRepeat {
|
|
5498
|
-
/**
|
|
5499
|
-
* Start date for the events
|
|
5500
|
-
* @type {string}
|
|
5501
|
-
* @memberof ServiceEndRepeat
|
|
5502
|
-
*/
|
|
5503
|
-
'startDate': string;
|
|
5504
|
-
/**
|
|
5505
|
-
* End date for the events
|
|
5506
|
-
* @type {string}
|
|
5507
|
-
* @memberof ServiceEndRepeat
|
|
5508
|
-
*/
|
|
5509
|
-
'endDate': string;
|
|
5510
|
-
/**
|
|
5511
|
-
* Form
|
|
5512
|
-
* @type {string}
|
|
5513
|
-
* @memberof ServiceEndRepeat
|
|
5514
|
-
*/
|
|
5515
|
-
'from': string;
|
|
5516
|
-
/**
|
|
5517
|
-
* to
|
|
5518
|
-
* @type {string}
|
|
5519
|
-
* @memberof ServiceEndRepeat
|
|
5520
|
-
*/
|
|
5521
|
-
'to': string;
|
|
5522
|
-
/**
|
|
5523
|
-
*
|
|
5524
|
-
* @type {string}
|
|
5525
|
-
* @memberof ServiceEndRepeat
|
|
5526
|
-
*/
|
|
5527
|
-
'finalBookingTime': ServiceEndRepeatFinalBookingTimeEnum;
|
|
5528
|
-
/**
|
|
5529
|
-
* to
|
|
5530
|
-
* @type {string}
|
|
5531
|
-
* @memberof ServiceEndRepeat
|
|
5532
|
-
*/
|
|
5533
|
-
'time': string;
|
|
5534
|
-
/**
|
|
5535
|
-
*
|
|
5536
|
-
* @type {string}
|
|
5537
|
-
* @memberof ServiceEndRepeat
|
|
5538
|
-
*/
|
|
5539
|
-
'repeat': ServiceEndRepeatRepeatEnum;
|
|
5540
|
-
/**
|
|
5541
|
-
*
|
|
5542
|
-
* @type {string}
|
|
5543
|
-
* @memberof ServiceEndRepeat
|
|
5544
|
-
*/
|
|
5545
|
-
'repeatEndDate': string;
|
|
5546
|
-
}
|
|
5547
|
-
|
|
5548
|
-
export const ServiceEndRepeatFinalBookingTimeEnum = {
|
|
5549
|
-
_5HourBeforeEventStarts: '5 hour before event starts'
|
|
5550
|
-
} as const;
|
|
5551
|
-
|
|
5552
|
-
export type ServiceEndRepeatFinalBookingTimeEnum = typeof ServiceEndRepeatFinalBookingTimeEnum[keyof typeof ServiceEndRepeatFinalBookingTimeEnum];
|
|
5553
|
-
export const ServiceEndRepeatRepeatEnum = {
|
|
5554
|
-
None: 'NONE',
|
|
5555
|
-
EveryWeek: 'EVERY_WEEK',
|
|
5556
|
-
EveryMonth: 'EVERY_MONTH',
|
|
5557
|
-
EveryYear: 'EVERY_YEAR'
|
|
5558
|
-
} as const;
|
|
5559
|
-
|
|
5560
|
-
export type ServiceEndRepeatRepeatEnum = typeof ServiceEndRepeatRepeatEnum[keyof typeof ServiceEndRepeatRepeatEnum];
|
|
5561
|
-
|
|
5562
5488
|
/**
|
|
5563
5489
|
*
|
|
5564
5490
|
* @export
|
|
@@ -6758,19 +6684,13 @@ export interface UserSyncDTO {
|
|
|
6758
6684
|
* @type {Array<number>}
|
|
6759
6685
|
* @memberof UserSyncDTO
|
|
6760
6686
|
*/
|
|
6761
|
-
'location'
|
|
6687
|
+
'location': Array<number>;
|
|
6762
6688
|
/**
|
|
6763
6689
|
* Timezone
|
|
6764
6690
|
* @type {string}
|
|
6765
6691
|
* @memberof UserSyncDTO
|
|
6766
6692
|
*/
|
|
6767
|
-
'timezone'
|
|
6768
|
-
/**
|
|
6769
|
-
* User permissions
|
|
6770
|
-
* @type {UserPermissionDTO}
|
|
6771
|
-
* @memberof UserSyncDTO
|
|
6772
|
-
*/
|
|
6773
|
-
'permissions'?: UserPermissionDTO;
|
|
6693
|
+
'timezone': string;
|
|
6774
6694
|
}
|
|
6775
6695
|
/**
|
|
6776
6696
|
*
|
|
@@ -7169,6 +7089,42 @@ export interface WhatsOnDeleteResponseDTO {
|
|
|
7169
7089
|
* @interface WhatsOnEntity
|
|
7170
7090
|
*/
|
|
7171
7091
|
export interface WhatsOnEntity {
|
|
7092
|
+
/**
|
|
7093
|
+
* Is recurring event
|
|
7094
|
+
* @type {boolean}
|
|
7095
|
+
* @memberof WhatsOnEntity
|
|
7096
|
+
*/
|
|
7097
|
+
'isRecurring': boolean;
|
|
7098
|
+
/**
|
|
7099
|
+
* Duration in minutes
|
|
7100
|
+
* @type {number}
|
|
7101
|
+
* @memberof WhatsOnEntity
|
|
7102
|
+
*/
|
|
7103
|
+
'duration': number;
|
|
7104
|
+
/**
|
|
7105
|
+
* Repeat interval for event
|
|
7106
|
+
* @type {string}
|
|
7107
|
+
* @memberof WhatsOnEntity
|
|
7108
|
+
*/
|
|
7109
|
+
'repeat': WhatsOnEntityRepeatEnum;
|
|
7110
|
+
/**
|
|
7111
|
+
* Start date of an event
|
|
7112
|
+
* @type {string}
|
|
7113
|
+
* @memberof WhatsOnEntity
|
|
7114
|
+
*/
|
|
7115
|
+
'startDate': string;
|
|
7116
|
+
/**
|
|
7117
|
+
* End date of an event
|
|
7118
|
+
* @type {string}
|
|
7119
|
+
* @memberof WhatsOnEntity
|
|
7120
|
+
*/
|
|
7121
|
+
'endDate': string;
|
|
7122
|
+
/**
|
|
7123
|
+
* Recurrence pattern
|
|
7124
|
+
* @type {string}
|
|
7125
|
+
* @memberof WhatsOnEntity
|
|
7126
|
+
*/
|
|
7127
|
+
'pattern'?: string;
|
|
7172
7128
|
/**
|
|
7173
7129
|
* Event id
|
|
7174
7130
|
* @type {string}
|
|
@@ -7259,12 +7215,6 @@ export interface WhatsOnEntity {
|
|
|
7259
7215
|
* @memberof WhatsOnEntity
|
|
7260
7216
|
*/
|
|
7261
7217
|
'bookingFee': number;
|
|
7262
|
-
/**
|
|
7263
|
-
*
|
|
7264
|
-
* @type {Repeat}
|
|
7265
|
-
* @memberof WhatsOnEntity
|
|
7266
|
-
*/
|
|
7267
|
-
'repeat': Repeat;
|
|
7268
7218
|
/**
|
|
7269
7219
|
*
|
|
7270
7220
|
* @type {Array<string>}
|
|
@@ -7278,6 +7228,17 @@ export interface WhatsOnEntity {
|
|
|
7278
7228
|
*/
|
|
7279
7229
|
'favorite'?: number;
|
|
7280
7230
|
}
|
|
7231
|
+
|
|
7232
|
+
export const WhatsOnEntityRepeatEnum = {
|
|
7233
|
+
None: 'NONE',
|
|
7234
|
+
Daily: 'DAILY',
|
|
7235
|
+
Weekly: 'WEEKLY',
|
|
7236
|
+
Monthly: 'MONTHLY',
|
|
7237
|
+
Year: 'YEAR'
|
|
7238
|
+
} as const;
|
|
7239
|
+
|
|
7240
|
+
export type WhatsOnEntityRepeatEnum = typeof WhatsOnEntityRepeatEnum[keyof typeof WhatsOnEntityRepeatEnum];
|
|
7241
|
+
|
|
7281
7242
|
/**
|
|
7282
7243
|
*
|
|
7283
7244
|
* @export
|
|
@@ -7480,6 +7441,36 @@ export interface WhatsOnLocationMetaDTO {
|
|
|
7480
7441
|
* @interface WhatsOnPayloadDTO
|
|
7481
7442
|
*/
|
|
7482
7443
|
export interface WhatsOnPayloadDTO {
|
|
7444
|
+
/**
|
|
7445
|
+
* Start date of event
|
|
7446
|
+
* @type {string}
|
|
7447
|
+
* @memberof WhatsOnPayloadDTO
|
|
7448
|
+
*/
|
|
7449
|
+
'startDate': string;
|
|
7450
|
+
/**
|
|
7451
|
+
* End date of event
|
|
7452
|
+
* @type {string}
|
|
7453
|
+
* @memberof WhatsOnPayloadDTO
|
|
7454
|
+
*/
|
|
7455
|
+
'endDate': string;
|
|
7456
|
+
/**
|
|
7457
|
+
* Start hour of an event
|
|
7458
|
+
* @type {string}
|
|
7459
|
+
* @memberof WhatsOnPayloadDTO
|
|
7460
|
+
*/
|
|
7461
|
+
'from': string;
|
|
7462
|
+
/**
|
|
7463
|
+
* End hour of an event
|
|
7464
|
+
* @type {string}
|
|
7465
|
+
* @memberof WhatsOnPayloadDTO
|
|
7466
|
+
*/
|
|
7467
|
+
'to': string;
|
|
7468
|
+
/**
|
|
7469
|
+
*
|
|
7470
|
+
* @type {string}
|
|
7471
|
+
* @memberof WhatsOnPayloadDTO
|
|
7472
|
+
*/
|
|
7473
|
+
'repeat': WhatsOnPayloadDTORepeatEnum;
|
|
7483
7474
|
/**
|
|
7484
7475
|
* Event name
|
|
7485
7476
|
* @type {string}
|
|
@@ -7558,12 +7549,6 @@ export interface WhatsOnPayloadDTO {
|
|
|
7558
7549
|
* @memberof WhatsOnPayloadDTO
|
|
7559
7550
|
*/
|
|
7560
7551
|
'location'?: WhatsOnLocationDTO;
|
|
7561
|
-
/**
|
|
7562
|
-
*
|
|
7563
|
-
* @type {Repeat}
|
|
7564
|
-
* @memberof WhatsOnPayloadDTO
|
|
7565
|
-
*/
|
|
7566
|
-
'repeat'?: Repeat;
|
|
7567
7552
|
/**
|
|
7568
7553
|
*
|
|
7569
7554
|
* @type {Array<Discount>}
|
|
@@ -7571,6 +7556,17 @@ export interface WhatsOnPayloadDTO {
|
|
|
7571
7556
|
*/
|
|
7572
7557
|
'discounts'?: Array<Discount>;
|
|
7573
7558
|
}
|
|
7559
|
+
|
|
7560
|
+
export const WhatsOnPayloadDTORepeatEnum = {
|
|
7561
|
+
None: 'NONE',
|
|
7562
|
+
Daily: 'DAILY',
|
|
7563
|
+
Weekly: 'WEEKLY',
|
|
7564
|
+
Monthly: 'MONTHLY',
|
|
7565
|
+
Year: 'YEAR'
|
|
7566
|
+
} as const;
|
|
7567
|
+
|
|
7568
|
+
export type WhatsOnPayloadDTORepeatEnum = typeof WhatsOnPayloadDTORepeatEnum[keyof typeof WhatsOnPayloadDTORepeatEnum];
|
|
7569
|
+
|
|
7574
7570
|
/**
|
|
7575
7571
|
*
|
|
7576
7572
|
* @export
|