@uniai-fe/uds-templates 0.3.11 → 0.3.12
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniai-fe/uds-templates",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.12",
|
|
4
4
|
"description": "UNIAI Design System; UI Templates Package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"publishConfig": {
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
|
-
"packageManager": "pnpm@10.
|
|
15
|
+
"packageManager": "pnpm@10.32.0",
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=24",
|
|
18
18
|
"pnpm": ">=10"
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"@uniai-fe/util-next": "workspace:*",
|
|
87
87
|
"@uniai-fe/util-rtc": "workspace:*",
|
|
88
88
|
"eslint": "^9.39.2",
|
|
89
|
-
"jotai": "^2.18.
|
|
89
|
+
"jotai": "^2.18.1",
|
|
90
90
|
"next": "^15.5.11",
|
|
91
91
|
"prettier": "^3.8.1",
|
|
92
92
|
"react-hook-form": "^7.71.2",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { API_Res_Base } from "
|
|
1
|
+
import type { API_Res_Base } from "@uniai-fe/util-api";
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* 로그인 API; 요청
|
|
@@ -34,10 +34,14 @@ export interface API_Res_LoginUserFarm {
|
|
|
34
34
|
* 농장명
|
|
35
35
|
*/
|
|
36
36
|
name: string;
|
|
37
|
+
/**
|
|
38
|
+
* 유니아이 농장 관리번호
|
|
39
|
+
*/
|
|
40
|
+
farm_idx: number | string;
|
|
37
41
|
/**
|
|
38
42
|
* farm_code (농장 식별번호)
|
|
39
43
|
*/
|
|
40
|
-
farm_code: string;
|
|
44
|
+
farm_code: number | string;
|
|
41
45
|
/**
|
|
42
46
|
* 계정 권한/직책 코드
|
|
43
47
|
* - OWNER: 농장주
|