Socket
Socket
Sign inDemoInstall

@im-js/core

Package Overview
Dependencies
Maintainers
5
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@im-js/core - npm Package Compare versions

Comparing version 1.11.0 to 1.12.0

52

interfaces/record-extends.d.ts
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;
}

2

package.json
{
"name": "@im-js/core",
"version": "1.11.0",
"version": "1.12.0",
"peerDependencies": {},

@@ -5,0 +5,0 @@ "typedoc": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc