@simplysm/service-client 13.0.41 → 13.0.43

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -596,7 +596,7 @@ class OrmClientDbContextExecutor implements DbContextExecutor {
596
596
  commitTransaction(): Promise<void>
597
597
  rollbackTransaction(): Promise<void>
598
598
  close(): Promise<void>
599
- executeDefs<T>(defs: QueryDef[], options?: (ResultMeta | undefined)[]): Promise<T[][]>
599
+ executeDefs<T = Record<string, unknown>>(defs: QueryDef[], options?: (ResultMeta | undefined)[]): Promise<T[][]>
600
600
  executeParametrized(query: string, params?: unknown[]): Promise<unknown[][]>
601
601
  bulkInsert(tableName: string, columnDefs: Record<string, ColumnMeta>, records: Record<string, unknown>[]): Promise<void>
602
602
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/service-client",
3
- "version": "13.0.41",
3
+ "version": "13.0.43",
4
4
  "description": "심플리즘 패키지 - 서비스 모듈 (client)",
5
5
  "author": "김석래",
6
6
  "license": "Apache-2.0",
@@ -19,9 +19,9 @@
19
19
  "sideEffects": false,
20
20
  "dependencies": {
21
21
  "consola": "^3.4.2",
22
- "@simplysm/orm-common": "13.0.41",
23
- "@simplysm/core-common": "13.0.41",
24
- "@simplysm/service-common": "13.0.41"
22
+ "@simplysm/core-common": "13.0.43",
23
+ "@simplysm/service-common": "13.0.43",
24
+ "@simplysm/orm-common": "13.0.43"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/ws": "^8.18.1",