@gooday_corp/gooday-api-client 1.1.12-delta-3 → 1.1.12-delta-4

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 +14 -2
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -165,6 +165,12 @@ export interface BusinessEntity {
165
165
  * @memberof BusinessEntity
166
166
  */
167
167
  'timing'?: Array<BusinessTiming>;
168
+ /**
169
+ * Business Current Timing
170
+ * @type {BusinessTiming}
171
+ * @memberof BusinessEntity
172
+ */
173
+ 'currentTime'?: BusinessTiming;
168
174
  /**
169
175
  * Business policies
170
176
  * @type {string}
@@ -491,7 +497,7 @@ export interface BusinessVenueDTO {
491
497
  * @type {string}
492
498
  * @memberof BusinessVenueDTO
493
499
  */
494
- 'coverPhotos': string;
500
+ 'coverPhoto': string;
495
501
  /**
496
502
  *
497
503
  * @type {string}
@@ -517,12 +523,18 @@ export interface BusinessVenueDTO {
517
523
  * @interface BusinessVenueDetailsDTO
518
524
  */
519
525
  export interface BusinessVenueDetailsDTO {
526
+ /**
527
+ * Unique identifier for the business venue
528
+ * @type {string}
529
+ * @memberof BusinessVenueDetailsDTO
530
+ */
531
+ '_id'?: string;
520
532
  /**
521
533
  * coverPhots
522
534
  * @type {string}
523
535
  * @memberof BusinessVenueDetailsDTO
524
536
  */
525
- 'coverPhotos': string;
537
+ 'coverPhoto': string;
526
538
  /**
527
539
  *
528
540
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.1.12-delta-3",
3
+ "version": "1.1.12-delta-4",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},