dplus_common_v1 0.1.53 → 0.1.54

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.
@@ -124,4 +124,14 @@ export type ResponseDplusAPI<T> = {
124
124
  error?: string | null;
125
125
  missingFields?: string[] | string | null;
126
126
  };
127
+ /**
128
+ * PostgreSQL 함수에서 반환하는 페이징된 응답 타입
129
+ */
130
+ export type DplusGetListDataResponse<T> = {
131
+ items: T[];
132
+ start: number;
133
+ limit: number;
134
+ total: number;
135
+ hasMore: boolean;
136
+ };
127
137
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dplus_common_v1",
3
- "version": "0.1.53",
3
+ "version": "0.1.54",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"