rez_core 6.5.13 → 6.5.14
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/package.json
CHANGED
|
@@ -82,7 +82,8 @@ import { EntityRelationRepository } from './repository/entity-relation.repositor
|
|
|
82
82
|
forwardRef(() => ListMasterModule),
|
|
83
83
|
forwardRef(() => FilterModule),
|
|
84
84
|
UtilsModule,
|
|
85
|
-
WorkflowAutomationModule
|
|
85
|
+
WorkflowAutomationModule,
|
|
86
|
+
|
|
86
87
|
],
|
|
87
88
|
providers: [
|
|
88
89
|
EntityMasterService,
|
|
@@ -103,6 +104,8 @@ import { EntityRelationRepository } from './repository/entity-relation.repositor
|
|
|
103
104
|
MediaDataService,
|
|
104
105
|
AttributeMasterService,
|
|
105
106
|
EntityUpdateService,
|
|
107
|
+
// SectionMasterService,
|
|
108
|
+
// FieldGroupService,
|
|
106
109
|
ViewMaterRespository,
|
|
107
110
|
EntityValidationService,
|
|
108
111
|
{ provide: 'ViewMasterService', useClass: ViewMasterService },
|
|
@@ -111,12 +114,16 @@ import { EntityRelationRepository } from './repository/entity-relation.repositor
|
|
|
111
114
|
provide: 'EntityRelationDataService',
|
|
112
115
|
useClass: EntityRelationDataService,
|
|
113
116
|
},
|
|
117
|
+
|
|
118
|
+
// UserAppMappingService,
|
|
119
|
+
// UserAppMappingRepository,
|
|
114
120
|
UserRoleMappingRepository,
|
|
115
121
|
AppMasterRespository,
|
|
116
122
|
AppMasterService,
|
|
117
123
|
ResolverService,
|
|
118
124
|
EntityMasterRepository,
|
|
119
|
-
EntityRelationRepository
|
|
125
|
+
EntityRelationRepository,
|
|
126
|
+
AppMasterRespository
|
|
120
127
|
],
|
|
121
128
|
exports: [
|
|
122
129
|
EntityMasterService,
|
|
@@ -129,8 +136,12 @@ import { EntityRelationRepository } from './repository/entity-relation.repositor
|
|
|
129
136
|
MediaDataService,
|
|
130
137
|
EntityUpdateService,
|
|
131
138
|
EntityUpdateRepository,
|
|
139
|
+
// SectionMasterService,
|
|
140
|
+
// FieldGroupService,
|
|
132
141
|
'ViewMasterService',
|
|
133
142
|
AttributeMasterService,
|
|
143
|
+
// UserAppMappingService,
|
|
144
|
+
// UserAppMappingRepository,
|
|
134
145
|
AppMasterService,
|
|
135
146
|
MasterService,
|
|
136
147
|
ResolverService,
|
|
@@ -150,7 +161,8 @@ import { EntityRelationRepository } from './repository/entity-relation.repositor
|
|
|
150
161
|
EntityDynamicController,
|
|
151
162
|
EntityRelationController,
|
|
152
163
|
EntityMasterController,
|
|
153
|
-
EntityPublicController
|
|
164
|
+
EntityPublicController,
|
|
165
|
+
|
|
154
166
|
],
|
|
155
167
|
})
|
|
156
|
-
export class EntityModule {
|
|
168
|
+
export class EntityModule {}
|