@im-js/core
Advanced tools
Comparing version 1.11.0 to 1.12.0
import { RecordDefaults } from './record-defaults'; | ||
/** | ||
* 동적 확장값 DB 생성 구조 | ||
* @description | ||
* `files`, `values` 속성의 원형 | ||
*/ | ||
export interface InsertRecordExtend { | ||
/** | ||
* 동적 확장 값 대상 식별값 | ||
*/ | ||
parentSeq: number; | ||
/** | ||
* 동적 확장 값 유형 | ||
*/ | ||
type: string; | ||
/** | ||
* 동적 확장값 구분값 | ||
*/ | ||
key: string; | ||
/** | ||
* 동적 확장 값 | ||
*/ | ||
value: string; | ||
} | ||
/** | ||
* 동적 확장값 DB 원본 구조 | ||
* @description | ||
* `files`, `values` 속성의 원형 | ||
*/ | ||
export interface InsertedRecordExtend extends InsertRecordExtend, RecordDefaults { | ||
} | ||
/** | ||
* `values`, `files` DB 원본 구조 | ||
* 동적 확장값 DB **다중** 생성 구조 | ||
*/ | ||
export interface InsertRecordExtends { | ||
/** | ||
* Map 형 동적 확장 첨부 파일 | ||
*/ | ||
files: Record<string, string>; | ||
/** | ||
* Map 형 동적 확장 값 | ||
*/ | ||
values: Record<string, any>; | ||
} | ||
/** | ||
* `values`, `files` DB 원본 구조 | ||
* 동적 확장값 DB **다중** 구조 | ||
*/ | ||
export interface InsertedRecordExtends { | ||
export interface SelectRecordExtendsObject { | ||
/** | ||
* ORM 형 동적 확장 첨부 파일 | ||
*/ | ||
files: InsertedRecordExtend[]; | ||
/** | ||
* ORM 형 동적 확장 값 | ||
*/ | ||
values: InsertedRecordExtend[]; | ||
} | ||
/** | ||
* 동적 확장값 DB **다중** 읽기 구조 | ||
*/ | ||
export interface SelectRecordExtends { | ||
@@ -36,7 +74,15 @@ /** | ||
/** | ||
* 동적 확장값 API **다중** 평탄 구조 | ||
* @description | ||
* `values`, `files`를 평탄으로 수용하기 위한 구조 | ||
*/ | ||
export interface FlattedRecordExtends { | ||
/** | ||
* 평탄화된 동적 확장 첨부 파일 | ||
*/ | ||
[K: `values.${string | number}`]: any; | ||
/** | ||
* 평탄화된 동적 확장 값 | ||
*/ | ||
[K: `files.${string | number}`]: string; | ||
} |
{ | ||
"name": "@im-js/core", | ||
"version": "1.11.0", | ||
"version": "1.12.0", | ||
"peerDependencies": {}, | ||
@@ -5,0 +5,0 @@ "typedoc": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17737
649