@gooday_corp/gooday-api-client 1.2.66 → 1.2.67
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 +51 -21
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3066,6 +3066,31 @@ export interface DeviceEntity {
|
|
|
3066
3066
|
*/
|
|
3067
3067
|
'status': string;
|
|
3068
3068
|
}
|
|
3069
|
+
/**
|
|
3070
|
+
*
|
|
3071
|
+
* @export
|
|
3072
|
+
* @interface Discount
|
|
3073
|
+
*/
|
|
3074
|
+
export interface Discount {
|
|
3075
|
+
/**
|
|
3076
|
+
*
|
|
3077
|
+
* @type {string}
|
|
3078
|
+
* @memberof Discount
|
|
3079
|
+
*/
|
|
3080
|
+
'_id': string;
|
|
3081
|
+
/**
|
|
3082
|
+
*
|
|
3083
|
+
* @type {string}
|
|
3084
|
+
* @memberof Discount
|
|
3085
|
+
*/
|
|
3086
|
+
'name': string;
|
|
3087
|
+
/**
|
|
3088
|
+
*
|
|
3089
|
+
* @type {string}
|
|
3090
|
+
* @memberof Discount
|
|
3091
|
+
*/
|
|
3092
|
+
'percentage': string;
|
|
3093
|
+
}
|
|
3069
3094
|
/**
|
|
3070
3095
|
*
|
|
3071
3096
|
* @export
|
|
@@ -4860,6 +4885,12 @@ export interface PrepaidServiceEntity {
|
|
|
4860
4885
|
* @memberof PrepaidServiceEntity
|
|
4861
4886
|
*/
|
|
4862
4887
|
'email': string;
|
|
4888
|
+
/**
|
|
4889
|
+
*
|
|
4890
|
+
* @type {Array<string>}
|
|
4891
|
+
* @memberof PrepaidServiceEntity
|
|
4892
|
+
*/
|
|
4893
|
+
'discount': Array<string>;
|
|
4863
4894
|
}
|
|
4864
4895
|
|
|
4865
4896
|
export const PrepaidServiceEntityCategoryEnum = {
|
|
@@ -5230,25 +5261,25 @@ export interface Repeat {
|
|
|
5230
5261
|
* @type {string}
|
|
5231
5262
|
* @memberof Repeat
|
|
5232
5263
|
*/
|
|
5233
|
-
'finalBookingTime'
|
|
5264
|
+
'finalBookingTime'?: RepeatFinalBookingTimeEnum;
|
|
5234
5265
|
/**
|
|
5235
5266
|
* to
|
|
5236
5267
|
* @type {string}
|
|
5237
5268
|
* @memberof Repeat
|
|
5238
5269
|
*/
|
|
5239
|
-
'time'
|
|
5270
|
+
'time'?: string;
|
|
5240
5271
|
/**
|
|
5241
5272
|
*
|
|
5242
5273
|
* @type {string}
|
|
5243
5274
|
* @memberof Repeat
|
|
5244
5275
|
*/
|
|
5245
|
-
'repeat'
|
|
5276
|
+
'repeat'?: RepeatRepeatEnum;
|
|
5246
5277
|
/**
|
|
5247
5278
|
*
|
|
5248
5279
|
* @type {string}
|
|
5249
5280
|
* @memberof Repeat
|
|
5250
5281
|
*/
|
|
5251
|
-
'repeatEndDate'
|
|
5282
|
+
'repeatEndDate'?: string;
|
|
5252
5283
|
}
|
|
5253
5284
|
|
|
5254
5285
|
export const RepeatFinalBookingTimeEnum = {
|
|
@@ -5405,19 +5436,6 @@ export const ServiceEndRepeatRepeatEnum = {
|
|
|
5405
5436
|
|
|
5406
5437
|
export type ServiceEndRepeatRepeatEnum = typeof ServiceEndRepeatRepeatEnum[keyof typeof ServiceEndRepeatRepeatEnum];
|
|
5407
5438
|
|
|
5408
|
-
/**
|
|
5409
|
-
*
|
|
5410
|
-
* @export
|
|
5411
|
-
* @interface Setting
|
|
5412
|
-
*/
|
|
5413
|
-
export interface Setting {
|
|
5414
|
-
/**
|
|
5415
|
-
*
|
|
5416
|
-
* @type {number}
|
|
5417
|
-
* @memberof Setting
|
|
5418
|
-
*/
|
|
5419
|
-
'capacity': number;
|
|
5420
|
-
}
|
|
5421
5439
|
/**
|
|
5422
5440
|
*
|
|
5423
5441
|
* @export
|
|
@@ -6965,10 +6983,10 @@ export interface WhatsOnEntity {
|
|
|
6965
6983
|
'description': string;
|
|
6966
6984
|
/**
|
|
6967
6985
|
*
|
|
6968
|
-
* @type {
|
|
6986
|
+
* @type {number}
|
|
6969
6987
|
* @memberof WhatsOnEntity
|
|
6970
6988
|
*/
|
|
6971
|
-
'
|
|
6989
|
+
'capacity': number;
|
|
6972
6990
|
/**
|
|
6973
6991
|
* Business venue
|
|
6974
6992
|
* @type {string}
|
|
@@ -7029,6 +7047,12 @@ export interface WhatsOnEntity {
|
|
|
7029
7047
|
* @memberof WhatsOnEntity
|
|
7030
7048
|
*/
|
|
7031
7049
|
'repeat': Repeat;
|
|
7050
|
+
/**
|
|
7051
|
+
*
|
|
7052
|
+
* @type {Array<string>}
|
|
7053
|
+
* @memberof WhatsOnEntity
|
|
7054
|
+
*/
|
|
7055
|
+
'discount': Array<string>;
|
|
7032
7056
|
}
|
|
7033
7057
|
/**
|
|
7034
7058
|
*
|
|
@@ -7099,10 +7123,10 @@ export interface WhatsOnPayloadDTO {
|
|
|
7099
7123
|
'description': string;
|
|
7100
7124
|
/**
|
|
7101
7125
|
*
|
|
7102
|
-
* @type {
|
|
7126
|
+
* @type {number}
|
|
7103
7127
|
* @memberof WhatsOnPayloadDTO
|
|
7104
7128
|
*/
|
|
7105
|
-
'
|
|
7129
|
+
'capacity': number;
|
|
7106
7130
|
/**
|
|
7107
7131
|
* Business venue
|
|
7108
7132
|
* @type {string}
|
|
@@ -7151,6 +7175,12 @@ export interface WhatsOnPayloadDTO {
|
|
|
7151
7175
|
* @memberof WhatsOnPayloadDTO
|
|
7152
7176
|
*/
|
|
7153
7177
|
'repeat': Repeat;
|
|
7178
|
+
/**
|
|
7179
|
+
*
|
|
7180
|
+
* @type {Array<Discount>}
|
|
7181
|
+
* @memberof WhatsOnPayloadDTO
|
|
7182
|
+
*/
|
|
7183
|
+
'discounts': Array<Discount>;
|
|
7154
7184
|
}
|
|
7155
7185
|
/**
|
|
7156
7186
|
*
|