@gooday_corp/gooday-api-client 1.2.71 → 1.2.73

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.
Files changed (2) hide show
  1. package/api.ts +26 -2
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -4959,6 +4959,18 @@ export interface PrepaidServiceEntity {
4959
4959
  * @memberof PrepaidServiceEntity
4960
4960
  */
4961
4961
  'discount': Array<string>;
4962
+ /**
4963
+ *
4964
+ * @type {number}
4965
+ * @memberof PrepaidServiceEntity
4966
+ */
4967
+ 'cancellationFees': number;
4968
+ /**
4969
+ *
4970
+ * @type {string}
4971
+ * @memberof PrepaidServiceEntity
4972
+ */
4973
+ 'cancellationHours': string;
4962
4974
  }
4963
4975
  /**
4964
4976
  *
@@ -5089,16 +5101,28 @@ export interface PrepaidServicePayloadDTO {
5089
5101
  'repeat': ServiceEndRepeat;
5090
5102
  /**
5091
5103
  *
5092
- * @type {PrepaidServiceDiscount}
5104
+ * @type {Array<PrepaidServiceDiscount>}
5093
5105
  * @memberof PrepaidServicePayloadDTO
5094
5106
  */
5095
- 'discounts': PrepaidServiceDiscount;
5107
+ 'discounts': Array<PrepaidServiceDiscount>;
5096
5108
  /**
5097
5109
  *
5098
5110
  * @type {Array<PrepaidServiceTimeDuration>}
5099
5111
  * @memberof PrepaidServicePayloadDTO
5100
5112
  */
5101
5113
  'duration': Array<PrepaidServiceTimeDuration>;
5114
+ /**
5115
+ *
5116
+ * @type {number}
5117
+ * @memberof PrepaidServicePayloadDTO
5118
+ */
5119
+ 'cancellationFees': number;
5120
+ /**
5121
+ *
5122
+ * @type {string}
5123
+ * @memberof PrepaidServicePayloadDTO
5124
+ */
5125
+ 'cancellationHours': string;
5102
5126
  }
5103
5127
  /**
5104
5128
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.2.71",
3
+ "version": "1.2.73",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},