rez_core 6.5.39 → 6.5.41
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/dist/app.module.js +2 -0
- package/dist/app.module.js.map +1 -1
- package/dist/core.module.js +3 -1
- package/dist/core.module.js.map +1 -1
- package/dist/module/app_master/app-master.module.d.ts +2 -0
- package/dist/module/app_master/app-master.module.js +28 -0
- package/dist/module/app_master/app-master.module.js.map +1 -0
- package/dist/module/app_master/controller/app-master.controller.js.map +1 -0
- package/dist/module/app_master/entity/app-master.entity.js.map +1 -0
- package/dist/module/{meta → app_master}/repository/app-master.repository.d.ts +2 -2
- package/dist/module/{meta → app_master}/repository/app-master.repository.js +3 -3
- package/dist/module/app_master/repository/app-master.repository.js.map +1 -0
- package/dist/module/app_master/service/app-master.service.js.map +1 -0
- package/dist/module/enterprise/entity/organization-app-mapping.entity.d.ts +1 -1
- package/dist/module/enterprise/entity/organization-app-mapping.entity.js +1 -1
- package/dist/module/enterprise/entity/organization-app-mapping.entity.js.map +1 -1
- package/dist/module/meta/entity.module.js +2 -10
- package/dist/module/meta/entity.module.js.map +1 -1
- package/dist/module/module/entity/menu.entity.d.ts +2 -1
- package/dist/module/module/entity/menu.entity.js +6 -1
- package/dist/module/module/entity/menu.entity.js.map +1 -1
- package/dist/module/module/entity/module-access.entity.d.ts +1 -1
- package/dist/module/module/entity/module-access.entity.js +1 -1
- package/dist/module/module/entity/module-access.entity.js.map +1 -1
- package/dist/module/module/entity/module.entity.d.ts +1 -1
- package/dist/module/module/entity/module.entity.js +1 -1
- package/dist/module/module/entity/module.entity.js.map +1 -1
- package/dist/module/module/repository/menu.repository.js +1 -0
- package/dist/module/module/repository/menu.repository.js.map +1 -1
- package/dist/module/user/entity/role.entity.d.ts +1 -1
- package/dist/module/user/entity/role.entity.js +1 -1
- package/dist/module/user/entity/role.entity.js.map +1 -1
- package/dist/module/user/entity/user-role-mapping.entity.d.ts +1 -1
- package/dist/module/user/entity/user-role-mapping.entity.js +1 -1
- package/dist/module/user/entity/user-role-mapping.entity.js.map +1 -1
- package/dist/module/user/entity/user.entity.d.ts +1 -1
- package/dist/module/user/entity/user.entity.js +1 -1
- package/dist/module/user/entity/user.entity.js.map +1 -1
- package/dist/module/user/user.module.js +1 -0
- package/dist/module/user/user.module.js.map +1 -1
- package/dist/table.config.d.ts +1 -1
- package/dist/table.config.js +1 -1
- package/dist/table.config.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/app.module.ts +2 -0
- package/src/core.module.ts +3 -1
- package/src/module/app_master/app-master.module.ts +15 -0
- package/src/module/{meta → app_master}/repository/app-master.repository.ts +2 -2
- package/src/module/enterprise/entity/organization-app-mapping.entity.ts +1 -1
- package/src/module/meta/entity.module.ts +2 -15
- package/src/module/module/entity/menu.entity.ts +5 -1
- package/src/module/module/entity/module-access.entity.ts +1 -1
- package/src/module/module/entity/module.entity.ts +1 -1
- package/src/module/module/repository/menu.repository.ts +1 -0
- package/src/module/user/entity/role.entity.ts +1 -1
- package/src/module/user/entity/user-role-mapping.entity.ts +1 -1
- package/src/module/user/entity/user.entity.ts +1 -1
- package/src/module/user/user.module.ts +1 -0
- package/src/table.config.ts +1 -1
- package/dist/module/meta/controller/app-master.controller.js.map +0 -1
- package/dist/module/meta/entity/app-master.entity.js.map +0 -1
- package/dist/module/meta/repository/app-master.repository.js.map +0 -1
- package/dist/module/meta/service/app-master.service.js.map +0 -1
- /package/dist/module/{meta → app_master}/controller/app-master.controller.d.ts +0 -0
- /package/dist/module/{meta → app_master}/controller/app-master.controller.js +0 -0
- /package/dist/module/{meta → app_master}/entity/app-master.entity.d.ts +0 -0
- /package/dist/module/{meta → app_master}/entity/app-master.entity.js +0 -0
- /package/dist/module/{meta → app_master}/service/app-master.service.d.ts +0 -0
- /package/dist/module/{meta → app_master}/service/app-master.service.js +0 -0
- /package/src/module/{meta → app_master}/controller/app-master.controller.ts +0 -0
- /package/src/module/{meta → app_master}/entity/app-master.entity.ts +0 -0
- /package/src/module/{meta → app_master}/service/app-master.service.ts +0 -0
package/package.json
CHANGED
package/src/app.module.ts
CHANGED
|
@@ -28,6 +28,7 @@ import { WorkflowAutomationModule } from './module/workflow-automation/workflow-
|
|
|
28
28
|
import { LinkedAttributesModule } from './module/linked_attributes/linked_attributes.module';
|
|
29
29
|
import { EntityJSONModule } from './module/entity_json/entity_json.module';
|
|
30
30
|
import { ExportModule } from './module/export/export.module';
|
|
31
|
+
import { AppMasterModule } from './module/app_master/app-master.module';
|
|
31
32
|
|
|
32
33
|
@Module({
|
|
33
34
|
imports: [
|
|
@@ -63,6 +64,7 @@ import { ExportModule } from './module/export/export.module';
|
|
|
63
64
|
EntityJSONModule,
|
|
64
65
|
ExportModule,
|
|
65
66
|
EntityModule,
|
|
67
|
+
AppMasterModule
|
|
66
68
|
],
|
|
67
69
|
})
|
|
68
70
|
export class AppModule { }
|
package/src/core.module.ts
CHANGED
|
@@ -19,6 +19,7 @@ import { MapperModule } from './module/mapper/mapper.module';
|
|
|
19
19
|
import { WorkflowScheduleModule } from './module/workflow-schedule/workflow-schedule.module';
|
|
20
20
|
import { LinkedAttributesModule } from './module/linked_attributes/linked_attributes.module';
|
|
21
21
|
import { ExportModule } from './module/export/export.module';
|
|
22
|
+
import { AppMasterModule } from './module/app_master/app-master.module';
|
|
22
23
|
|
|
23
24
|
@Global()
|
|
24
25
|
@Module({})
|
|
@@ -55,7 +56,8 @@ export class CoreModule {
|
|
|
55
56
|
EnterpriseModule,
|
|
56
57
|
UtilsModule,
|
|
57
58
|
AuthModule,
|
|
58
|
-
NotificationModule
|
|
59
|
+
NotificationModule,
|
|
60
|
+
AppMasterModule
|
|
59
61
|
];
|
|
60
62
|
} else {
|
|
61
63
|
importsArray = [
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Module } from '@nestjs/common';
|
|
2
|
+
import { AppMasterController } from './controller/app-master.controller';
|
|
3
|
+
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
4
|
+
import { AppMaster } from './entity/app-master.entity';
|
|
5
|
+
import { AppMasterService } from './service/app-master.service';
|
|
6
|
+
import { AppMasterRespository } from './repository/app-master.repository';
|
|
7
|
+
import { UserModule } from '../user/user.module';
|
|
8
|
+
|
|
9
|
+
@Module({
|
|
10
|
+
imports: [TypeOrmModule.forFeature([AppMaster]), UserModule],
|
|
11
|
+
controllers: [AppMasterController],
|
|
12
|
+
providers: [AppMasterService, AppMasterRespository],
|
|
13
|
+
exports: [AppMasterRespository, AppMasterService]
|
|
14
|
+
})
|
|
15
|
+
export class AppMasterModule {}
|
|
@@ -7,13 +7,13 @@ import { AppMaster } from '../entity/app-master.entity';
|
|
|
7
7
|
export class AppMasterRespository {
|
|
8
8
|
constructor(
|
|
9
9
|
@InjectRepository(AppMaster)
|
|
10
|
-
private readonly
|
|
10
|
+
private readonly appMasterRespository: Repository<AppMaster>,
|
|
11
11
|
) {}
|
|
12
12
|
|
|
13
13
|
async getAppMasterDataByAppCode(
|
|
14
14
|
appCode: string,
|
|
15
15
|
): Promise<AppMaster[] | null> {
|
|
16
|
-
return await this.
|
|
16
|
+
return await this.appMasterRespository.find({
|
|
17
17
|
where: { code: appCode },
|
|
18
18
|
});
|
|
19
19
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Column, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, Unique } from 'typeorm';
|
|
2
2
|
import { OrganizationData } from './organization.entity';
|
|
3
|
-
import { AppMaster } from '../../
|
|
3
|
+
import { AppMaster } from '../../app_master/entity/app-master.entity';
|
|
4
4
|
|
|
5
5
|
@Entity({ name: 'sso_organization_app_mapping' })
|
|
6
6
|
@Unique(['organization', 'app'])
|
|
@@ -38,12 +38,8 @@ import { FilterModule } from '../filter/filter.module';
|
|
|
38
38
|
// import { UserAppMappingService } from './service/user-app-mapping.service';
|
|
39
39
|
// import { UserAppMappingRepository } from './repository/user-app-mapping.repository';
|
|
40
40
|
// import { UserAppMapping } from './entity/user-app-mapping.entity';
|
|
41
|
-
import { AppMasterController } from './controller/app-master.controller';
|
|
42
41
|
import { UserRoleMappingRepository } from '../user/repository/user-role-mapping.repository';
|
|
43
42
|
import { UserRoleMapping } from '../user/entity/user-role-mapping.entity';
|
|
44
|
-
import { AppMasterService } from './service/app-master.service';
|
|
45
|
-
import { AppMasterRespository } from './repository/app-master.repository';
|
|
46
|
-
import { AppMaster } from './entity/app-master.entity';
|
|
47
43
|
import { AttributeMasterController } from './controller/attribute-master.controller';
|
|
48
44
|
import { EntityDynamicController } from './controller/entity-dynamic.controller';
|
|
49
45
|
import { EntityDynamicService } from './service/entity-dynamic.service';
|
|
@@ -61,6 +57,7 @@ import { EntityPublicController } from './controller/entity.public.controller';
|
|
|
61
57
|
import { EntityUpdateService } from './service/entity-attribute-update.service';
|
|
62
58
|
import { EntityUpdateRepository } from './repository/entity-attribute-update.repository';
|
|
63
59
|
import { EntityRelationRepository } from './repository/entity-relation.repository';
|
|
60
|
+
import { AppMasterModule } from '../app_master/app-master.module';
|
|
64
61
|
|
|
65
62
|
@Module({
|
|
66
63
|
imports: [
|
|
@@ -73,7 +70,6 @@ import { EntityRelationRepository } from './repository/entity-relation.repositor
|
|
|
73
70
|
MediaData,
|
|
74
71
|
ViewMaster,
|
|
75
72
|
UserRoleMapping,
|
|
76
|
-
AppMaster,
|
|
77
73
|
EntityRelation,
|
|
78
74
|
EntityRelationData,
|
|
79
75
|
]),
|
|
@@ -81,7 +77,7 @@ import { EntityRelationRepository } from './repository/entity-relation.repositor
|
|
|
81
77
|
forwardRef(() => FilterModule),
|
|
82
78
|
UtilsModule,
|
|
83
79
|
forwardRef(() => WorkflowAutomationModule),
|
|
84
|
-
|
|
80
|
+
AppMasterModule,
|
|
85
81
|
],
|
|
86
82
|
providers: [
|
|
87
83
|
EntityMasterService,
|
|
@@ -115,8 +111,6 @@ import { EntityRelationRepository } from './repository/entity-relation.repositor
|
|
|
115
111
|
// UserAppMappingService,
|
|
116
112
|
// UserAppMappingRepository,
|
|
117
113
|
UserRoleMappingRepository,
|
|
118
|
-
AppMasterRespository,
|
|
119
|
-
AppMasterService,
|
|
120
114
|
ResolverService,
|
|
121
115
|
EntityMasterRepository,
|
|
122
116
|
EntityRelationRepository,
|
|
@@ -131,19 +125,13 @@ import { EntityRelationRepository } from './repository/entity-relation.repositor
|
|
|
131
125
|
MediaDataService,
|
|
132
126
|
EntityUpdateService,
|
|
133
127
|
EntityUpdateRepository,
|
|
134
|
-
// SectionMasterService,
|
|
135
|
-
// FieldGroupService,
|
|
136
128
|
'ViewMasterService',
|
|
137
129
|
AttributeMasterService,
|
|
138
|
-
// UserAppMappingService,
|
|
139
|
-
// UserAppMappingRepository,
|
|
140
|
-
AppMasterService,
|
|
141
130
|
MasterService,
|
|
142
131
|
ResolverService,
|
|
143
132
|
EntityDynamicService,
|
|
144
133
|
'CommonService',
|
|
145
134
|
'EntityRelationService',
|
|
146
|
-
AppMasterRespository,
|
|
147
135
|
],
|
|
148
136
|
controllers: [
|
|
149
137
|
EntityController,
|
|
@@ -151,7 +139,6 @@ import { EntityRelationRepository } from './repository/entity-relation.repositor
|
|
|
151
139
|
MediaController,
|
|
152
140
|
ViewMasterController,
|
|
153
141
|
MetaController,
|
|
154
|
-
AppMasterController,
|
|
155
142
|
AttributeMasterController,
|
|
156
143
|
EntityDynamicController,
|
|
157
144
|
EntityRelationController,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Column, Entity, JoinColumn, ManyToOne, OneToOne, PrimaryGeneratedColumn } from 'typeorm';
|
|
2
2
|
import { ModuleData } from './module.entity';
|
|
3
|
-
import { AppMaster } from 'src/module/
|
|
3
|
+
import { AppMaster } from 'src/module/app_master/entity/app-master.entity';
|
|
4
|
+
import { Exclude } from 'class-transformer';
|
|
4
5
|
|
|
5
6
|
@Entity({ name: 'sso_menu' })
|
|
6
7
|
export class MenuData {
|
|
@@ -10,6 +11,9 @@ export class MenuData {
|
|
|
10
11
|
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
11
12
|
name: string;
|
|
12
13
|
|
|
14
|
+
@Exclude()
|
|
15
|
+
module_code:string;
|
|
16
|
+
|
|
13
17
|
@Column({ type: 'int', nullable: true })
|
|
14
18
|
module_id: number
|
|
15
19
|
|
|
@@ -3,7 +3,7 @@ import { ModuleData } from './module.entity';
|
|
|
3
3
|
import { Role } from 'src/module/user/entity/role.entity';
|
|
4
4
|
import { ModuleAction } from './module-action.entity';
|
|
5
5
|
import { EnterpriseData } from 'src/module/enterprise/entity/enterprise.entity';
|
|
6
|
-
import { AppMaster } from '../../
|
|
6
|
+
import { AppMaster } from '../../app_master/entity/app-master.entity';
|
|
7
7
|
|
|
8
8
|
@Entity({ name: 'sso_module_access' })
|
|
9
9
|
export class ModuleAccess {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AppMaster } from 'src/module/
|
|
1
|
+
import { AppMaster } from 'src/module/app_master/entity/app-master.entity';
|
|
2
2
|
import { Column, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn } from 'typeorm';
|
|
3
3
|
|
|
4
4
|
@Entity({ name: 'sso_module' })
|
|
@@ -88,6 +88,7 @@ export class MenuRepository extends Repository<MenuData> {
|
|
|
88
88
|
.andWhere('menu.ui_visible = 1')
|
|
89
89
|
.select([
|
|
90
90
|
'menu.*',
|
|
91
|
+
'module.module_code AS module_code',
|
|
91
92
|
'module.component_name AS component',
|
|
92
93
|
'module.title AS title',
|
|
93
94
|
'module.entity_type AS entity_type',
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
} from 'typeorm';
|
|
10
10
|
import { Exclude } from 'class-transformer';
|
|
11
11
|
import { EnterpriseData } from '../../enterprise/entity/enterprise.entity';
|
|
12
|
-
import { AppMaster } from '../../
|
|
12
|
+
import { AppMaster } from '../../app_master/entity/app-master.entity';
|
|
13
13
|
|
|
14
14
|
@Entity({ name: 'sso_role' })
|
|
15
15
|
export class Role {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ENTITYTYPE_USRROLMAP } from 'src/constant/global.constant';
|
|
2
2
|
import { EnterpriseData } from 'src/module/enterprise/entity/enterprise.entity';
|
|
3
|
-
import { AppMaster } from 'src/module/
|
|
3
|
+
import { AppMaster } from 'src/module/app_master/entity/app-master.entity';
|
|
4
4
|
import { Column, Entity, JoinColumn, ManyToMany, ManyToOne, PrimaryGeneratedColumn } from 'typeorm';
|
|
5
5
|
import { UserData } from './user.entity';
|
|
6
6
|
import { Role } from './role.entity';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnterpriseData } from 'src/module/enterprise/entity/enterprise.entity';
|
|
2
|
-
import { AppMaster } from 'src/module/
|
|
2
|
+
import { AppMaster } from 'src/module/app_master/entity/app-master.entity';
|
|
3
3
|
import { Column, CreateDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn } from 'typeorm';
|
|
4
4
|
import { Exclude } from 'class-transformer';
|
|
5
5
|
|
package/src/table.config.ts
CHANGED
|
@@ -18,7 +18,7 @@ import { ListMasterData } from './module/listmaster/entity/list-master.entity';
|
|
|
18
18
|
import { FieldLovMapper } from './module/mapper/entity/field-lovs.entity';
|
|
19
19
|
import { FieldMapper } from './module/mapper/entity/field-mapper.entity';
|
|
20
20
|
import { Mapper } from './module/mapper/entity/mapper.entity';
|
|
21
|
-
import { AppMaster } from './module/
|
|
21
|
+
import { AppMaster } from './module/app_master/entity/app-master.entity';
|
|
22
22
|
import { AttributeMaster } from './module/meta/entity/attribute-master.entity';
|
|
23
23
|
import { EntityMaster } from './module/meta/entity/entity-master.entity';
|
|
24
24
|
import { EntityRelationData } from './module/meta/entity/entity-relation-data.entity';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"app-master.controller.js","sourceRoot":"","sources":["../../../../src/module/meta/controller/app-master.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CASwB;AACxB,2DAA2D;AAE3D,sEAAiE;AAI1D,IAAM,mBAAmB,GAAzB,MAAM,mBAAmB;IAC9B,YAAoB,gBAAkC;QAAlC,qBAAgB,GAAhB,gBAAgB,CAAkB;IAAG,CAAC;IAGpD,AAAN,KAAK,CAAC,eAAe,CACZ,GAA4B,EAC5B,GAAa;QAEpB,IAAI,CAAC;YACH,MAAM,EAAE,GAAG,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;YAEhC,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,yBAAyB,CAAC,EAAE,CAAC,CAAC;YAEvE,OAAO,GAAG,CAAC,MAAM,CAAC,mBAAU,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC9C,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO,GAAG,CAAC,MAAM,CAAC,mBAAU,CAAC,qBAAqB,CAAC,CAAC,IAAI,CAAC;gBACvD,OAAO,EAAE,KAAK;gBACd,OAAO,EAAE,KAAK,CAAC,OAAO,IAAI,4BAA4B;aACvD,CAAC,CAAC;QACL,CAAC;IACH,CAAC;CACF,CAAA;AArBY,kDAAmB;AAIxB;IADL,IAAA,YAAG,EAAC,EAAE,CAAC;IAEL,WAAA,IAAA,YAAG,GAAE,CAAA;IACL,WAAA,IAAA,YAAG,GAAE,CAAA;;;;0DAcP;8BApBU,mBAAmB;IAF/B,IAAA,mBAAU,EAAC,MAAM,CAAC;IAClB,IAAA,kBAAS,EAAC,wBAAY,CAAC;qCAEgB,qCAAgB;GAD3C,mBAAmB,CAqB/B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"app-master.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/app-master.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAiE;AAG1D,IAAM,SAAS,GAAf,MAAM,SAAS;CA8CrB,CAAA;AA9CY,8BAAS;AAGpB;IADC,IAAA,gCAAsB,GAAE;;qCACd;AAGX;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uCAC1D;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;yCAC1D;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uCAC1D;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC5C;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,cAAc,EAAC,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAClC,IAAI;+CAAC;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAC5C;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACnC,IAAI;gDAAC;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uCAC7C;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCAC7C;AAGd;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCAC7C;AAGd;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAC7C;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDAC7C;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CAC7C;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CAC7C;oBA7CL,SAAS;IADrB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;GACtB,SAAS,CA8CrB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"app-master.repository.js","sourceRoot":"","sources":["../../../../src/module/meta/repository/app-master.repository.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA4C;AAC5C,6CAAmD;AACnD,qCAAiD;AACjD,mEAAwD;AAGjD,IAAM,oBAAoB,GAA1B,MAAM,oBAAoB;IAC/B,YAEmB,oBAA2C;QAA3C,yBAAoB,GAApB,oBAAoB,CAAuB;IAC3D,CAAC;IAEJ,KAAK,CAAC,yBAAyB,CAC7B,OAAe;QAEf,OAAO,MAAM,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC;YAC1C,KAAK,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;SACzB,CAAC,CAAC;IACL,CAAC;CACF,CAAA;AAbY,oDAAoB;+BAApB,oBAAoB;IADhC,IAAA,mBAAU,GAAE;IAGR,WAAA,IAAA,0BAAgB,EAAC,6BAAS,CAAC,CAAA;qCACW,oBAAU;GAHxC,oBAAoB,CAahC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"app-master.service.js","sourceRoot":"","sources":["../../../../src/module/meta/service/app-master.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,qGAAoG;AACpG,+EAA2E;AAGpE,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;IAC3B,YACmB,mBAAyC,EACzC,yBAAoD;QADpD,wBAAmB,GAAnB,mBAAmB,CAAsB;QACzC,8BAAyB,GAAzB,yBAAyB,CAA2B;IACpE,CAAC;IAEJ,KAAK,CAAC,yBAAyB,CAAC,MAAc;QAC5C,MAAM,QAAQ,GACZ,MAAM,IAAI,CAAC,yBAAyB,CAAC,2BAA2B,CAAC,MAAM,CAAC,CAAC;QAE3E,MAAM,WAAW,GAAU,EAAE,CAAC;QAE9B,IAAI,QAAQ,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAChC,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC,GAAG,CACpC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,OAAO,EAAE,EAAE;gBACrC,MAAM,IAAI,GACR,MAAM,IAAI,CAAC,mBAAmB,CAAC,yBAAyB,CAAC,OAAO,CAAC,CAAC;gBACpE,OAAO,IAAI,IAAI,EAAE,CAAC;YACpB,CAAC,CAAC,CACH,CAAC;YAEF,YAAY,CAAC,IAAI,EAAE,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;gBACnC,WAAW,CAAC,IAAI,CAAC;oBACf,GAAG,EAAE,IAAI,CAAC,IAAI;oBACd,OAAO,EAAE,IAAI;iBACd,CAAC,CAAC;YACL,CAAC,CAAC,CAAC;QACL,CAAC;QAED,OAAO,WAAW,CAAC;IACrB,CAAC;CACF,CAAA;AA/BY,4CAAgB;2BAAhB,gBAAgB;IAD5B,IAAA,mBAAU,GAAE;qCAG6B,4CAAoB;QACd,wDAAyB;GAH5D,gBAAgB,CA+B5B"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|