@gooday_corp/gooday-api-client 1.2.64 → 1.2.66
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 +224 -12
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4818,6 +4818,48 @@ export interface PrepaidServiceEntity {
|
|
|
4818
4818
|
* @memberof PrepaidServiceEntity
|
|
4819
4819
|
*/
|
|
4820
4820
|
'venue': string;
|
|
4821
|
+
/**
|
|
4822
|
+
* Business
|
|
4823
|
+
* @type {string}
|
|
4824
|
+
* @memberof PrepaidServiceEntity
|
|
4825
|
+
*/
|
|
4826
|
+
'business': string;
|
|
4827
|
+
/**
|
|
4828
|
+
*
|
|
4829
|
+
* @type {ServiceEndRepeat}
|
|
4830
|
+
* @memberof PrepaidServiceEntity
|
|
4831
|
+
*/
|
|
4832
|
+
'repeat': ServiceEndRepeat;
|
|
4833
|
+
/**
|
|
4834
|
+
*
|
|
4835
|
+
* @type {number}
|
|
4836
|
+
* @memberof PrepaidServiceEntity
|
|
4837
|
+
*/
|
|
4838
|
+
'bookingFee': number;
|
|
4839
|
+
/**
|
|
4840
|
+
*
|
|
4841
|
+
* @type {string}
|
|
4842
|
+
* @memberof PrepaidServiceEntity
|
|
4843
|
+
*/
|
|
4844
|
+
'description': string;
|
|
4845
|
+
/**
|
|
4846
|
+
*
|
|
4847
|
+
* @type {boolean}
|
|
4848
|
+
* @memberof PrepaidServiceEntity
|
|
4849
|
+
*/
|
|
4850
|
+
'exceedMaximumPeople': boolean;
|
|
4851
|
+
/**
|
|
4852
|
+
*
|
|
4853
|
+
* @type {boolean}
|
|
4854
|
+
* @memberof PrepaidServiceEntity
|
|
4855
|
+
*/
|
|
4856
|
+
'recurringPayment': boolean;
|
|
4857
|
+
/**
|
|
4858
|
+
*
|
|
4859
|
+
* @type {string}
|
|
4860
|
+
* @memberof PrepaidServiceEntity
|
|
4861
|
+
*/
|
|
4862
|
+
'email': string;
|
|
4821
4863
|
}
|
|
4822
4864
|
|
|
4823
4865
|
export const PrepaidServiceEntityCategoryEnum = {
|
|
@@ -4925,6 +4967,36 @@ export interface PrepaidServicePayloadDTO {
|
|
|
4925
4967
|
* @memberof PrepaidServicePayloadDTO
|
|
4926
4968
|
*/
|
|
4927
4969
|
'venue': string;
|
|
4970
|
+
/**
|
|
4971
|
+
*
|
|
4972
|
+
* @type {number}
|
|
4973
|
+
* @memberof PrepaidServicePayloadDTO
|
|
4974
|
+
*/
|
|
4975
|
+
'bookingFee': number;
|
|
4976
|
+
/**
|
|
4977
|
+
*
|
|
4978
|
+
* @type {string}
|
|
4979
|
+
* @memberof PrepaidServicePayloadDTO
|
|
4980
|
+
*/
|
|
4981
|
+
'description': string;
|
|
4982
|
+
/**
|
|
4983
|
+
*
|
|
4984
|
+
* @type {boolean}
|
|
4985
|
+
* @memberof PrepaidServicePayloadDTO
|
|
4986
|
+
*/
|
|
4987
|
+
'exceedMaximumPeople': boolean;
|
|
4988
|
+
/**
|
|
4989
|
+
*
|
|
4990
|
+
* @type {boolean}
|
|
4991
|
+
* @memberof PrepaidServicePayloadDTO
|
|
4992
|
+
*/
|
|
4993
|
+
'recurringPayment': boolean;
|
|
4994
|
+
/**
|
|
4995
|
+
*
|
|
4996
|
+
* @type {string}
|
|
4997
|
+
* @memberof PrepaidServicePayloadDTO
|
|
4998
|
+
*/
|
|
4999
|
+
'email': string;
|
|
4928
5000
|
}
|
|
4929
5001
|
|
|
4930
5002
|
export const PrepaidServicePayloadDTOCategoryEnum = {
|
|
@@ -5123,6 +5195,76 @@ export interface RenameCalendarPayload {
|
|
|
5123
5195
|
*/
|
|
5124
5196
|
'name': string;
|
|
5125
5197
|
}
|
|
5198
|
+
/**
|
|
5199
|
+
*
|
|
5200
|
+
* @export
|
|
5201
|
+
* @interface Repeat
|
|
5202
|
+
*/
|
|
5203
|
+
export interface Repeat {
|
|
5204
|
+
/**
|
|
5205
|
+
* Start date for the events
|
|
5206
|
+
* @type {string}
|
|
5207
|
+
* @memberof Repeat
|
|
5208
|
+
*/
|
|
5209
|
+
'startDate': string;
|
|
5210
|
+
/**
|
|
5211
|
+
* End date for the events
|
|
5212
|
+
* @type {string}
|
|
5213
|
+
* @memberof Repeat
|
|
5214
|
+
*/
|
|
5215
|
+
'endDate': string;
|
|
5216
|
+
/**
|
|
5217
|
+
* Form
|
|
5218
|
+
* @type {string}
|
|
5219
|
+
* @memberof Repeat
|
|
5220
|
+
*/
|
|
5221
|
+
'from': string;
|
|
5222
|
+
/**
|
|
5223
|
+
* to
|
|
5224
|
+
* @type {string}
|
|
5225
|
+
* @memberof Repeat
|
|
5226
|
+
*/
|
|
5227
|
+
'to': string;
|
|
5228
|
+
/**
|
|
5229
|
+
*
|
|
5230
|
+
* @type {string}
|
|
5231
|
+
* @memberof Repeat
|
|
5232
|
+
*/
|
|
5233
|
+
'finalBookingTime': RepeatFinalBookingTimeEnum;
|
|
5234
|
+
/**
|
|
5235
|
+
* to
|
|
5236
|
+
* @type {string}
|
|
5237
|
+
* @memberof Repeat
|
|
5238
|
+
*/
|
|
5239
|
+
'time': string;
|
|
5240
|
+
/**
|
|
5241
|
+
*
|
|
5242
|
+
* @type {string}
|
|
5243
|
+
* @memberof Repeat
|
|
5244
|
+
*/
|
|
5245
|
+
'repeat': RepeatRepeatEnum;
|
|
5246
|
+
/**
|
|
5247
|
+
*
|
|
5248
|
+
* @type {string}
|
|
5249
|
+
* @memberof Repeat
|
|
5250
|
+
*/
|
|
5251
|
+
'repeatEndDate': string;
|
|
5252
|
+
}
|
|
5253
|
+
|
|
5254
|
+
export const RepeatFinalBookingTimeEnum = {
|
|
5255
|
+
_5HourBeforeEventStarts: '5 hour before event starts'
|
|
5256
|
+
} as const;
|
|
5257
|
+
|
|
5258
|
+
export type RepeatFinalBookingTimeEnum = typeof RepeatFinalBookingTimeEnum[keyof typeof RepeatFinalBookingTimeEnum];
|
|
5259
|
+
export const RepeatRepeatEnum = {
|
|
5260
|
+
None: 'NONE',
|
|
5261
|
+
EveryWeek: 'EVERY_WEEK',
|
|
5262
|
+
EveryMonth: 'EVERY_MONTH',
|
|
5263
|
+
EveryYear: 'EVERY_YEAR'
|
|
5264
|
+
} as const;
|
|
5265
|
+
|
|
5266
|
+
export type RepeatRepeatEnum = typeof RepeatRepeatEnum[keyof typeof RepeatRepeatEnum];
|
|
5267
|
+
|
|
5126
5268
|
/**
|
|
5127
5269
|
*
|
|
5128
5270
|
* @export
|
|
@@ -5193,6 +5335,76 @@ export interface SendFriendshipRequestPayload {
|
|
|
5193
5335
|
*/
|
|
5194
5336
|
'to': string;
|
|
5195
5337
|
}
|
|
5338
|
+
/**
|
|
5339
|
+
*
|
|
5340
|
+
* @export
|
|
5341
|
+
* @interface ServiceEndRepeat
|
|
5342
|
+
*/
|
|
5343
|
+
export interface ServiceEndRepeat {
|
|
5344
|
+
/**
|
|
5345
|
+
* Start date for the events
|
|
5346
|
+
* @type {string}
|
|
5347
|
+
* @memberof ServiceEndRepeat
|
|
5348
|
+
*/
|
|
5349
|
+
'startDate': string;
|
|
5350
|
+
/**
|
|
5351
|
+
* End date for the events
|
|
5352
|
+
* @type {string}
|
|
5353
|
+
* @memberof ServiceEndRepeat
|
|
5354
|
+
*/
|
|
5355
|
+
'endDate': string;
|
|
5356
|
+
/**
|
|
5357
|
+
* Form
|
|
5358
|
+
* @type {string}
|
|
5359
|
+
* @memberof ServiceEndRepeat
|
|
5360
|
+
*/
|
|
5361
|
+
'from': string;
|
|
5362
|
+
/**
|
|
5363
|
+
* to
|
|
5364
|
+
* @type {string}
|
|
5365
|
+
* @memberof ServiceEndRepeat
|
|
5366
|
+
*/
|
|
5367
|
+
'to': string;
|
|
5368
|
+
/**
|
|
5369
|
+
*
|
|
5370
|
+
* @type {string}
|
|
5371
|
+
* @memberof ServiceEndRepeat
|
|
5372
|
+
*/
|
|
5373
|
+
'finalBookingTime': ServiceEndRepeatFinalBookingTimeEnum;
|
|
5374
|
+
/**
|
|
5375
|
+
* to
|
|
5376
|
+
* @type {string}
|
|
5377
|
+
* @memberof ServiceEndRepeat
|
|
5378
|
+
*/
|
|
5379
|
+
'time': string;
|
|
5380
|
+
/**
|
|
5381
|
+
*
|
|
5382
|
+
* @type {string}
|
|
5383
|
+
* @memberof ServiceEndRepeat
|
|
5384
|
+
*/
|
|
5385
|
+
'repeat': ServiceEndRepeatRepeatEnum;
|
|
5386
|
+
/**
|
|
5387
|
+
*
|
|
5388
|
+
* @type {string}
|
|
5389
|
+
* @memberof ServiceEndRepeat
|
|
5390
|
+
*/
|
|
5391
|
+
'repeatEndDate': string;
|
|
5392
|
+
}
|
|
5393
|
+
|
|
5394
|
+
export const ServiceEndRepeatFinalBookingTimeEnum = {
|
|
5395
|
+
_5HourBeforeEventStarts: '5 hour before event starts'
|
|
5396
|
+
} as const;
|
|
5397
|
+
|
|
5398
|
+
export type ServiceEndRepeatFinalBookingTimeEnum = typeof ServiceEndRepeatFinalBookingTimeEnum[keyof typeof ServiceEndRepeatFinalBookingTimeEnum];
|
|
5399
|
+
export const ServiceEndRepeatRepeatEnum = {
|
|
5400
|
+
None: 'NONE',
|
|
5401
|
+
EveryWeek: 'EVERY_WEEK',
|
|
5402
|
+
EveryMonth: 'EVERY_MONTH',
|
|
5403
|
+
EveryYear: 'EVERY_YEAR'
|
|
5404
|
+
} as const;
|
|
5405
|
+
|
|
5406
|
+
export type ServiceEndRepeatRepeatEnum = typeof ServiceEndRepeatRepeatEnum[keyof typeof ServiceEndRepeatRepeatEnum];
|
|
5407
|
+
|
|
5196
5408
|
/**
|
|
5197
5409
|
*
|
|
5198
5410
|
* @export
|
|
@@ -6811,6 +7023,12 @@ export interface WhatsOnEntity {
|
|
|
6811
7023
|
* @memberof WhatsOnEntity
|
|
6812
7024
|
*/
|
|
6813
7025
|
'bookingFee': number;
|
|
7026
|
+
/**
|
|
7027
|
+
*
|
|
7028
|
+
* @type {Repeat}
|
|
7029
|
+
* @memberof WhatsOnEntity
|
|
7030
|
+
*/
|
|
7031
|
+
'repeat': Repeat;
|
|
6814
7032
|
}
|
|
6815
7033
|
/**
|
|
6816
7034
|
*
|
|
@@ -6855,18 +7073,6 @@ export interface WhatsOnPayloadDTO {
|
|
|
6855
7073
|
* @memberof WhatsOnPayloadDTO
|
|
6856
7074
|
*/
|
|
6857
7075
|
'title': string;
|
|
6858
|
-
/**
|
|
6859
|
-
* Start date for the events
|
|
6860
|
-
* @type {string}
|
|
6861
|
-
* @memberof WhatsOnPayloadDTO
|
|
6862
|
-
*/
|
|
6863
|
-
'startDate': string;
|
|
6864
|
-
/**
|
|
6865
|
-
* End date for the events
|
|
6866
|
-
* @type {string}
|
|
6867
|
-
* @memberof WhatsOnPayloadDTO
|
|
6868
|
-
*/
|
|
6869
|
-
'endDate': string;
|
|
6870
7076
|
/**
|
|
6871
7077
|
*
|
|
6872
7078
|
* @type {Array<string>}
|
|
@@ -6939,6 +7145,12 @@ export interface WhatsOnPayloadDTO {
|
|
|
6939
7145
|
* @memberof WhatsOnPayloadDTO
|
|
6940
7146
|
*/
|
|
6941
7147
|
'location': LocationDTO;
|
|
7148
|
+
/**
|
|
7149
|
+
*
|
|
7150
|
+
* @type {Repeat}
|
|
7151
|
+
* @memberof WhatsOnPayloadDTO
|
|
7152
|
+
*/
|
|
7153
|
+
'repeat': Repeat;
|
|
6942
7154
|
}
|
|
6943
7155
|
/**
|
|
6944
7156
|
*
|