@gooday_corp/gooday-api-client 1.1.12-delta-6 → 1.1.12-delta-7

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 +20 -14
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -422,6 +422,12 @@ export interface BusinessTypeEntity {
422
422
  * @memberof BusinessTypeEntity
423
423
  */
424
424
  'name': string;
425
+ /**
426
+ * Image background color
427
+ * @type {string}
428
+ * @memberof BusinessTypeEntity
429
+ */
430
+ 'backgroundColor': string;
425
431
  /**
426
432
  * Business Image
427
433
  * @type {BusinessTypeImageDTO}
@@ -892,18 +898,6 @@ export interface GetBusinessVenueDto {
892
898
  * @memberof GetBusinessVenueDto
893
899
  */
894
900
  'category'?: string;
895
- /**
896
- * Longitude of the location
897
- * @type {number}
898
- * @memberof GetBusinessVenueDto
899
- */
900
- 'longitude'?: number;
901
- /**
902
- * Latitude of the location
903
- * @type {number}
904
- * @memberof GetBusinessVenueDto
905
- */
906
- 'latitude'?: number;
907
901
  /**
908
902
  * Page number for pagination
909
903
  * @type {number}
@@ -1663,7 +1657,13 @@ export interface SignupDto {
1663
1657
  * @type {string}
1664
1658
  * @memberof SignupDto
1665
1659
  */
1666
- 'phoneNo': string;
1660
+ 'mobileNumber'?: string;
1661
+ /**
1662
+ * User gender
1663
+ * @type {string}
1664
+ * @memberof SignupDto
1665
+ */
1666
+ 'gender'?: string;
1667
1667
  /**
1668
1668
  * The email of the user
1669
1669
  * @type {string}
@@ -1849,7 +1849,13 @@ export interface UserEntity {
1849
1849
  * @type {string}
1850
1850
  * @memberof UserEntity
1851
1851
  */
1852
- 'phoneNo': string;
1852
+ 'mobileNumber'?: string;
1853
+ /**
1854
+ * User gender
1855
+ * @type {string}
1856
+ * @memberof UserEntity
1857
+ */
1858
+ 'gender'?: string;
1853
1859
  /**
1854
1860
  * Indicates whether the user\'s email has been verified
1855
1861
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.1.12-delta-6",
3
+ "version": "1.1.12-delta-7",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},