@uniai-fe/uds-templates 0.4.28 → 0.4.29
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/package.json +1 -1
- package/src/auth/login/types/api.ts +15 -0
package/package.json
CHANGED
|
@@ -24,6 +24,9 @@ export interface API_Req_Login {
|
|
|
24
24
|
* @property {string} name 농장명
|
|
25
25
|
* @property {string} farm_code 농장 식별번호
|
|
26
26
|
* @property {string} user_access_role 계정 권한/직책 코드 (OWNER: 농장주, EMPLOYEE: 농장직원, REGIONAL_MANAGER: 지역소장)
|
|
27
|
+
* @property {string} address 농장주소
|
|
28
|
+
* @property {number} latitude 농장좌표 위도
|
|
29
|
+
* @property {number} longitude 농장좌표 경도
|
|
27
30
|
*/
|
|
28
31
|
export interface API_Res_LoginUserFarm {
|
|
29
32
|
/**
|
|
@@ -49,6 +52,18 @@ export interface API_Res_LoginUserFarm {
|
|
|
49
52
|
* - REGIONAL_MANAGER: 지역소장
|
|
50
53
|
*/
|
|
51
54
|
user_access_role: string;
|
|
55
|
+
/**
|
|
56
|
+
* 농장 주소
|
|
57
|
+
*/
|
|
58
|
+
address: string;
|
|
59
|
+
/**
|
|
60
|
+
* 농장 좌표; 위도
|
|
61
|
+
*/
|
|
62
|
+
latitude: number;
|
|
63
|
+
/**
|
|
64
|
+
* 농장 좌표; 경도
|
|
65
|
+
*/
|
|
66
|
+
longitude: number;
|
|
52
67
|
}
|
|
53
68
|
|
|
54
69
|
/**
|