pg-mvc-service 1.0.19 → 1.0.20

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.
package/index.d.ts CHANGED
@@ -17,8 +17,8 @@ export { AwsS3Client } from './src/clients/AwsS3Client';
17
17
  // models class
18
18
  import ValidateClient from './src/models/ValidateClient';
19
19
 
20
- import type { TableModel } from "./src/models/TableModel";
21
- export type { TableModel } from "./src/models/TableModel";
20
+ import { TableModel } from "./src/models/TableModel";
21
+ export { TableModel } from "./src/models/TableModel";
22
22
 
23
23
  import { TColumnAttribute, TColumnType, TColumnArrayType, TColumn, TColumnDetail, TOperator, TColumnInfo, TQuery, TSelectExpression, TAggregateFuncType, TCondition, TNestedCondition, TSortKeyword, TKeyFormat } from './src/models/Type';
24
24
  export { TColumnAttribute, TColumnType, TColumnArrayType, TColumn, TColumnDetail, TOperator, TColumnInfo, TQuery, TSelectExpression, TAggregateFuncType, TCondition, TNestedCondition, TSortKeyword, TKeyFormat } from './src/models/Type';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-mvc-service",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/n-daira/npm-pack_mvc-service#readme",
6
6
  "bugs": {
@@ -1,4 +1,4 @@
1
- import type { TableModel } from "./TableModel";
1
+ import { TableModel } from "./TableModel";
2
2
 
3
3
  // column type
4
4
  export type TColumnAttribute = "primary" | "nullable" | "hasDefault" | "noDefault";