@gooday_corp/gooday-api-client 1.1.41 → 1.1.42
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 +21 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3622,10 +3622,10 @@ export interface UserEntity {
|
|
|
3622
3622
|
'nickName': string;
|
|
3623
3623
|
/**
|
|
3624
3624
|
* Device weather
|
|
3625
|
-
* @type {
|
|
3625
|
+
* @type {Weather}
|
|
3626
3626
|
* @memberof UserEntity
|
|
3627
3627
|
*/
|
|
3628
|
-
'weather':
|
|
3628
|
+
'weather': Weather;
|
|
3629
3629
|
/**
|
|
3630
3630
|
* User\'s date of birth
|
|
3631
3631
|
* @type {string}
|
|
@@ -3871,6 +3871,25 @@ export interface VerifyOTPResponseDTO {
|
|
|
3871
3871
|
*/
|
|
3872
3872
|
'message': string;
|
|
3873
3873
|
}
|
|
3874
|
+
/**
|
|
3875
|
+
*
|
|
3876
|
+
* @export
|
|
3877
|
+
* @interface Weather
|
|
3878
|
+
*/
|
|
3879
|
+
export interface Weather {
|
|
3880
|
+
/**
|
|
3881
|
+
*
|
|
3882
|
+
* @type {string}
|
|
3883
|
+
* @memberof Weather
|
|
3884
|
+
*/
|
|
3885
|
+
'unit': string;
|
|
3886
|
+
/**
|
|
3887
|
+
*
|
|
3888
|
+
* @type {number}
|
|
3889
|
+
* @memberof Weather
|
|
3890
|
+
*/
|
|
3891
|
+
'temperature': number;
|
|
3892
|
+
}
|
|
3874
3893
|
|
|
3875
3894
|
/**
|
|
3876
3895
|
* AIApi - axios parameter creator
|