@gooday_corp/gooday-api-client 1.2.89 → 1.2.90

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 +4 -42
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -4898,25 +4898,6 @@ export interface PlanUpsertPayloadDTO {
4898
4898
  */
4899
4899
  'plan': string;
4900
4900
  }
4901
- /**
4902
- *
4903
- * @export
4904
- * @interface PrepaidServiceCapacityDTO
4905
- */
4906
- export interface PrepaidServiceCapacityDTO {
4907
- /**
4908
- * Time duration
4909
- * @type {TimeDuration}
4910
- * @memberof PrepaidServiceCapacityDTO
4911
- */
4912
- 'time': TimeDuration;
4913
- /**
4914
- * Capacity
4915
- * @type {number}
4916
- * @memberof PrepaidServiceCapacityDTO
4917
- */
4918
- 'capacity': number;
4919
- }
4920
4901
  /**
4921
4902
  *
4922
4903
  * @export
@@ -5042,10 +5023,10 @@ export interface PrepaidServiceEntity {
5042
5023
  'category': string;
5043
5024
  /**
5044
5025
  *
5045
- * @type {Array<PrepaidServiceCapacityDTO>}
5026
+ * @type {number}
5046
5027
  * @memberof PrepaidServiceEntity
5047
5028
  */
5048
- 'capacity': Array<PrepaidServiceCapacityDTO>;
5029
+ 'capacity': number;
5049
5030
  /**
5050
5031
  *
5051
5032
  * @type {boolean}
@@ -5313,10 +5294,10 @@ export interface PrepaidServicePayloadDTO {
5313
5294
  'discounts': Array<PrepaidServiceDiscount>;
5314
5295
  /**
5315
5296
  *
5316
- * @type {Array<PrepaidServiceCapacityDTO>}
5297
+ * @type {number}
5317
5298
  * @memberof PrepaidServicePayloadDTO
5318
5299
  */
5319
- 'capacity': Array<PrepaidServiceCapacityDTO>;
5300
+ 'capacity': number;
5320
5301
  /**
5321
5302
  *
5322
5303
  * @type {number}
@@ -6298,25 +6279,6 @@ export interface TaskListResponseDTO {
6298
6279
  */
6299
6280
  'data': Array<TaskEntity>;
6300
6281
  }
6301
- /**
6302
- *
6303
- * @export
6304
- * @interface TimeDuration
6305
- */
6306
- export interface TimeDuration {
6307
- /**
6308
- * Start time
6309
- * @type {string}
6310
- * @memberof TimeDuration
6311
- */
6312
- 'start': string;
6313
- /**
6314
- * End Time
6315
- * @type {string}
6316
- * @memberof TimeDuration
6317
- */
6318
- 'end': string;
6319
- }
6320
6282
  /**
6321
6283
  *
6322
6284
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.2.89",
3
+ "version": "1.2.90",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},