@uniai-fe/util-api 0.1.0 → 0.1.2

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.
@@ -36,7 +36,7 @@ interface API_Res_Base<ResultDataType> {
36
36
  /**
37
37
  * 요청 응답 데이터
38
38
  */
39
- data: ResultDataType;
39
+ data: ResultDataType | null;
40
40
  /**
41
41
  * 에러 목록
42
42
  */
@@ -36,7 +36,7 @@ interface API_Res_Base<ResultDataType> {
36
36
  /**
37
37
  * 요청 응답 데이터
38
38
  */
39
- data: ResultDataType;
39
+ data: ResultDataType | null;
40
40
  /**
41
41
  * 에러 목록
42
42
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/util-api",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "API contract types and framework-agnostic utilities for UNIAI FE projects",
5
5
  "type": "module",
6
6
  "private": false,
@@ -10,7 +10,7 @@
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
13
- "packageManager": "pnpm@10.28.2",
13
+ "packageManager": "pnpm@10.30.2",
14
14
  "engines": {
15
15
  "node": ">=24",
16
16
  "pnpm": ">=10"
@@ -60,13 +60,14 @@
60
60
  "default": "./dist/response/index.mjs"
61
61
  }
62
62
  },
63
- "dependencies": {
64
- "@uniai-fe/util-functions": "workspace:*"
63
+ "peerDependencies": {
64
+ "@uniai-fe/util-functions": "^0.2.11"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@types/node": "^24.10.2",
68
68
  "@uniai-fe/eslint-config": "workspace:*",
69
69
  "@uniai-fe/tsconfig": "workspace:*",
70
+ "@uniai-fe/util-functions": "workspace:*",
70
71
  "eslint": "^9.39.2",
71
72
  "prettier": "^3.8.1",
72
73
  "tsup": "^8.5.1",