@uniai-fe/uds-templates 0.6.19 → 0.6.21
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.
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Third Party Notices
|
|
2
|
+
|
|
3
|
+
Package: @uniai-fe/uds-templates
|
|
4
|
+
|
|
5
|
+
This package declares the following direct third-party dependencies or peer dependencies.
|
|
6
|
+
Internal `@uniai-fe/*` packages are excluded from this notice file.
|
|
7
|
+
|
|
8
|
+
| Package | Relationship | Declared version | Installed metadata version | License |
|
|
9
|
+
| --------------------- | -------------------------- | ---------------- | -------------------------- | ------- |
|
|
10
|
+
| @tanstack/react-query | peerDependency | ^5 | 5.101.0 | MIT |
|
|
11
|
+
| clsx | dependency, peerDependency | ^2.1.1 | 2.1.1 | MIT |
|
|
12
|
+
| dayjs | dependency | ^1.11.21 | 1.11.21 | MIT |
|
|
13
|
+
| jotai | peerDependency | ^2 | 2.20.1 | MIT |
|
|
14
|
+
| next | peerDependency | ^15 | 15.5.18 | MIT |
|
|
15
|
+
| react | peerDependency | ^19 | 19.2.7 | MIT |
|
|
16
|
+
| react-dom | peerDependency | ^19 | 19.2.7 | MIT |
|
|
17
|
+
| react-hook-form | peerDependency | ^7 | 7.78.0 | MIT |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniai-fe/uds-templates",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.21",
|
|
4
4
|
"description": "UNIAI Design System; UI Templates Package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
27
|
"src",
|
|
28
|
-
"dist"
|
|
28
|
+
"dist",
|
|
29
|
+
"THIRD_PARTY_NOTICES.md"
|
|
29
30
|
],
|
|
30
31
|
"main": "./src/index.tsx",
|
|
31
32
|
"module": "./src/index.tsx",
|
|
@@ -419,7 +419,8 @@ export interface API_Res_LoginRole {
|
|
|
419
419
|
}
|
|
420
420
|
|
|
421
421
|
/**
|
|
422
|
-
* 로그인 API;
|
|
422
|
+
* 로그인 API; route 내부 세션 token 응답 데이터
|
|
423
|
+
* @deprecated Client-facing 로그인/session 상태 타입에서는 token 필드를 사용하지 않는다. 서비스 route 내부 raw backend 응답 타입은 각 서비스에서 local 선언한다.
|
|
423
424
|
* @route /auth/user/login
|
|
424
425
|
* @route /auth/user/refresh
|
|
425
426
|
* @property {string} token_type 엑세스 토큰 타입 (ex, bearer)
|
|
@@ -468,19 +469,17 @@ export interface API_Res_LoginToken {
|
|
|
468
469
|
/**
|
|
469
470
|
* 로그인 API; 응답 성공 데이터
|
|
470
471
|
* @route /auth/user/login
|
|
471
|
-
* @property {string} token_type 엑세스 토큰 타입 (ex, bearer)
|
|
472
|
-
* @property {string} access_token 엑세스 토큰
|
|
473
|
-
* @property {number} expires_in 토큰 유효기간 (초 단위)
|
|
474
|
-
* @property {string} refresh_token 리프레시 토큰
|
|
475
|
-
* @property {number} refresh_expires_in 리프레시 토큰 유효기간 (초 단위)
|
|
476
472
|
* @property {string | null} session_expires_at 세션 만료 일시
|
|
477
|
-
* @property {number | null} session_expires_in 세션 유효기간 (초 단위)
|
|
478
473
|
* @property {API_Res_LoginUserInfo} user_info 로그인 유저 정보
|
|
479
474
|
* @property {API_Res_LoginGroup[]} [groups] 소속 그룹 목록
|
|
480
475
|
* @property {API_Res_LoginGroup[]} [ancestor_groups] 상위 그룹 목록
|
|
481
476
|
* @property {API_Res_LoginRole[]} [roles] 역할 목록
|
|
482
477
|
*/
|
|
483
|
-
export interface API_Res_LoginData
|
|
478
|
+
export interface API_Res_LoginData {
|
|
479
|
+
/**
|
|
480
|
+
* 세션 만료 일시
|
|
481
|
+
*/
|
|
482
|
+
session_expires_at: string | null;
|
|
484
483
|
/**
|
|
485
484
|
* 로그인 유저 정보
|
|
486
485
|
*/
|