@flusys/nestjs-iam 5.2.0 → 5.3.1
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.
|
@@ -86,6 +86,7 @@ _ts_decorate([
|
|
|
86
86
|
_ts_decorate([
|
|
87
87
|
(0, _typeorm.Column)({
|
|
88
88
|
type: 'uuid',
|
|
89
|
+
length: 150,
|
|
89
90
|
name: 'source_id'
|
|
90
91
|
}),
|
|
91
92
|
_ts_metadata("design:type", String)
|
|
@@ -101,6 +102,7 @@ _ts_decorate([
|
|
|
101
102
|
_ts_decorate([
|
|
102
103
|
(0, _typeorm.Column)({
|
|
103
104
|
type: 'uuid',
|
|
105
|
+
length: 150,
|
|
104
106
|
name: 'target_id'
|
|
105
107
|
}),
|
|
106
108
|
_ts_metadata("design:type", String)
|
|
@@ -108,6 +110,7 @@ _ts_decorate([
|
|
|
108
110
|
_ts_decorate([
|
|
109
111
|
(0, _typeorm.Column)({
|
|
110
112
|
type: 'uuid',
|
|
113
|
+
length: 150,
|
|
111
114
|
nullable: true,
|
|
112
115
|
name: 'user_id'
|
|
113
116
|
}),
|
|
@@ -48,6 +48,7 @@ let UserIamPermissionWithCompany = class UserIamPermissionWithCompany extends _p
|
|
|
48
48
|
_ts_decorate([
|
|
49
49
|
(0, _typeorm.Column)({
|
|
50
50
|
type: 'uuid',
|
|
51
|
+
length: 150,
|
|
51
52
|
nullable: true,
|
|
52
53
|
name: 'company_id'
|
|
53
54
|
}),
|
|
@@ -56,6 +57,7 @@ _ts_decorate([
|
|
|
56
57
|
_ts_decorate([
|
|
57
58
|
(0, _typeorm.Column)({
|
|
58
59
|
type: 'uuid',
|
|
60
|
+
length: 150,
|
|
59
61
|
nullable: true,
|
|
60
62
|
name: 'branch_id'
|
|
61
63
|
}),
|
|
@@ -68,6 +68,7 @@ _ts_decorate([
|
|
|
68
68
|
_ts_decorate([
|
|
69
69
|
Column({
|
|
70
70
|
type: 'uuid',
|
|
71
|
+
length: 150,
|
|
71
72
|
name: 'source_id'
|
|
72
73
|
}),
|
|
73
74
|
_ts_metadata("design:type", String)
|
|
@@ -83,6 +84,7 @@ _ts_decorate([
|
|
|
83
84
|
_ts_decorate([
|
|
84
85
|
Column({
|
|
85
86
|
type: 'uuid',
|
|
87
|
+
length: 150,
|
|
86
88
|
name: 'target_id'
|
|
87
89
|
}),
|
|
88
90
|
_ts_metadata("design:type", String)
|
|
@@ -90,6 +92,7 @@ _ts_decorate([
|
|
|
90
92
|
_ts_decorate([
|
|
91
93
|
Column({
|
|
92
94
|
type: 'uuid',
|
|
95
|
+
length: 150,
|
|
93
96
|
nullable: true,
|
|
94
97
|
name: 'user_id'
|
|
95
98
|
}),
|
|
@@ -38,6 +38,7 @@ export class UserIamPermissionWithCompany extends PermissionBase {
|
|
|
38
38
|
_ts_decorate([
|
|
39
39
|
Column({
|
|
40
40
|
type: 'uuid',
|
|
41
|
+
length: 150,
|
|
41
42
|
nullable: true,
|
|
42
43
|
name: 'company_id'
|
|
43
44
|
}),
|
|
@@ -46,6 +47,7 @@ _ts_decorate([
|
|
|
46
47
|
_ts_decorate([
|
|
47
48
|
Column({
|
|
48
49
|
type: 'uuid',
|
|
50
|
+
length: 150,
|
|
49
51
|
nullable: true,
|
|
50
52
|
name: 'branch_id'
|
|
51
53
|
}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flusys/nestjs-iam",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.1",
|
|
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 || ^5.0.0"
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
|
-
"@flusys/nestjs-core": "5.
|
|
94
|
-
"@flusys/nestjs-shared": "5.
|
|
93
|
+
"@flusys/nestjs-core": "5.3.1",
|
|
94
|
+
"@flusys/nestjs-shared": "5.3.1"
|
|
95
95
|
}
|
|
96
96
|
}
|