@flusys/nestjs-iam 5.0.0 → 5.0.3
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.
|
@@ -20,7 +20,7 @@ function _ts_decorate(decorators, target, key, desc) {
|
|
|
20
20
|
function _ts_metadata(k, v) {
|
|
21
21
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
22
22
|
}
|
|
23
|
-
import { Identity } from '@flusys/nestjs-shared';
|
|
23
|
+
import { getJsonColumnType, Identity } from '@flusys/nestjs-shared';
|
|
24
24
|
import { Column, JoinColumn, ManyToOne, OneToMany } from 'typeorm';
|
|
25
25
|
import { ActionType } from '../enums';
|
|
26
26
|
/**
|
|
@@ -77,7 +77,7 @@ _ts_decorate([
|
|
|
77
77
|
], ActionBase.prototype, "actionType", void 0);
|
|
78
78
|
_ts_decorate([
|
|
79
79
|
Column({
|
|
80
|
-
type:
|
|
80
|
+
type: getJsonColumnType(),
|
|
81
81
|
nullable: true,
|
|
82
82
|
name: 'permission_logic'
|
|
83
83
|
}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flusys/nestjs-iam",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.3",
|
|
4
4
|
"description": "Identity and Access Management (IAM) module for NestJS applications",
|
|
5
5
|
"main": "cjs/index.js",
|
|
6
6
|
"module": "fesm/index.js",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"express": "^4.18.0"
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
|
-
"@flusys/nestjs-core": "5.0.
|
|
94
|
-
"@flusys/nestjs-shared": "5.0.
|
|
93
|
+
"@flusys/nestjs-core": "5.0.3",
|
|
94
|
+
"@flusys/nestjs-shared": "5.0.3"
|
|
95
95
|
}
|
|
96
96
|
}
|