@servicelabsco/slabs-access-manager 0.1.19 → 0.1.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/dist/accessUtility/entities/bulk.definition.entity.d.ts +1 -6
- package/dist/accessUtility/entities/bulk.definition.entity.js +1 -20
- package/dist/accessUtility/entities/bulk.definition.entity.js.map +1 -1
- package/dist/accessUtility/es6.classes.d.ts +2 -1
- package/dist/migrations/1701597524258-AddTypeIdBzBulkUploadItemsTable.ts.js +1 -1
- package/dist/migrations/1701597524258-AddTypeIdBzBulkUploadItemsTable.ts.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
import { CommonEntity } from '@servicelabsco/nestjs-utility-services';
|
|
2
2
|
import { BulkDefinitionLoadAttributesDto } from '../dtos/bulk.definition.load.attributes.dto';
|
|
3
|
-
import { BulkUploadTypeEntity } from './bulk.upload.type.entity';
|
|
4
3
|
export declare class BulkDefinitionEntity extends CommonEntity {
|
|
5
|
-
|
|
6
|
-
type_id: number;
|
|
7
|
-
priority: number;
|
|
4
|
+
name: number;
|
|
8
5
|
active: boolean;
|
|
9
6
|
attributes: BulkDefinitionLoadAttributesDto | any;
|
|
10
|
-
definition: BulkDefinitionEntity;
|
|
11
|
-
type: BulkUploadTypeEntity;
|
|
12
7
|
}
|
|
@@ -12,22 +12,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.BulkDefinitionEntity = void 0;
|
|
13
13
|
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
14
14
|
const typeorm_1 = require("typeorm");
|
|
15
|
-
const bulk_upload_type_entity_1 = require("./bulk.upload.type.entity");
|
|
16
15
|
let BulkDefinitionEntity = class BulkDefinitionEntity extends nestjs_utility_services_1.CommonEntity {
|
|
17
16
|
};
|
|
18
17
|
exports.BulkDefinitionEntity = BulkDefinitionEntity;
|
|
19
18
|
__decorate([
|
|
20
19
|
(0, typeorm_1.Column)(),
|
|
21
20
|
__metadata("design:type", Number)
|
|
22
|
-
], BulkDefinitionEntity.prototype, "
|
|
23
|
-
__decorate([
|
|
24
|
-
(0, typeorm_1.Column)(),
|
|
25
|
-
__metadata("design:type", Number)
|
|
26
|
-
], BulkDefinitionEntity.prototype, "type_id", void 0);
|
|
27
|
-
__decorate([
|
|
28
|
-
(0, typeorm_1.Column)(),
|
|
29
|
-
__metadata("design:type", Number)
|
|
30
|
-
], BulkDefinitionEntity.prototype, "priority", void 0);
|
|
21
|
+
], BulkDefinitionEntity.prototype, "name", void 0);
|
|
31
22
|
__decorate([
|
|
32
23
|
(0, typeorm_1.Column)(),
|
|
33
24
|
__metadata("design:type", Boolean)
|
|
@@ -36,16 +27,6 @@ __decorate([
|
|
|
36
27
|
(0, typeorm_1.Column)('json'),
|
|
37
28
|
__metadata("design:type", Object)
|
|
38
29
|
], BulkDefinitionEntity.prototype, "attributes", void 0);
|
|
39
|
-
__decorate([
|
|
40
|
-
(0, typeorm_1.ManyToOne)(() => BulkDefinitionEntity),
|
|
41
|
-
(0, typeorm_1.JoinColumn)({ name: 'definition_id' }),
|
|
42
|
-
__metadata("design:type", BulkDefinitionEntity)
|
|
43
|
-
], BulkDefinitionEntity.prototype, "definition", void 0);
|
|
44
|
-
__decorate([
|
|
45
|
-
(0, typeorm_1.ManyToOne)(() => bulk_upload_type_entity_1.BulkUploadTypeEntity),
|
|
46
|
-
(0, typeorm_1.JoinColumn)({ name: 'type_id' }),
|
|
47
|
-
__metadata("design:type", bulk_upload_type_entity_1.BulkUploadTypeEntity)
|
|
48
|
-
], BulkDefinitionEntity.prototype, "type", void 0);
|
|
49
30
|
exports.BulkDefinitionEntity = BulkDefinitionEntity = __decorate([
|
|
50
31
|
(0, typeorm_1.Entity)('utl_bulk_definitions')
|
|
51
32
|
], BulkDefinitionEntity);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bulk.definition.entity.js","sourceRoot":"","sources":["../../../src/accessUtility/entities/bulk.definition.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAAsE;AACtE,
|
|
1
|
+
{"version":3,"file":"bulk.definition.entity.js","sourceRoot":"","sources":["../../../src/accessUtility/entities/bulk.definition.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAAsE;AACtE,qCAAyC;AAUlC,IAAM,oBAAoB,GAA1B,MAAM,oBAAqB,SAAQ,sCAAY;CAWrD,CAAA;AAXY,oDAAoB;AAE7B;IADC,IAAA,gBAAM,GAAE;;kDACI;AAGb;IADC,IAAA,gBAAM,GAAE;;oDACO;AAGhB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;wDACmC;+BARzC,oBAAoB;IADhC,IAAA,gBAAM,EAAC,sBAAsB,CAAC;GAClB,oBAAoB,CAWhC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BulkUploadColumnAttributesDto } from './dtos/bulk.upload.column.attributes.dto';
|
|
2
2
|
import { BulkDefinitionEntity } from './entities/bulk.definition.entity';
|
|
3
|
+
import { BulkDefinitionProcessingEntity } from './entities/bulk.definition.processing.entity';
|
|
3
4
|
import { BulkUploadColumnEntity } from './entities/bulk.upload.column.entity';
|
|
4
5
|
import { BulkUploadEntity } from './entities/bulk.upload.entity';
|
|
5
6
|
import { BulkUploadItemEntity } from './entities/bulk.upload.item.entity';
|
|
@@ -28,7 +29,7 @@ import { DataMappingSubscriber } from './subscribers/data.mapping.subscriber';
|
|
|
28
29
|
import { TagAssignmentSubscriber } from './subscribers/tag.assignment.subscriber';
|
|
29
30
|
declare const es6Classes: {
|
|
30
31
|
dtos: (typeof BulkUploadColumnAttributesDto)[];
|
|
31
|
-
entities: (typeof BulkUploadColumnEntity | typeof BulkUploadTypeEntity | typeof
|
|
32
|
+
entities: (typeof BulkDefinitionEntity | typeof BulkUploadColumnEntity | typeof BulkUploadTypeEntity | typeof BulkDefinitionProcessingEntity | typeof BulkUploadItemEntity | typeof BulkUploadEntity | typeof DataMappingEntity | typeof TagAssignmentEntity)[];
|
|
32
33
|
jobs: (typeof BulkDefinitionJob | typeof BulkDefinitionLoadJob | typeof BulkDefinitionProcessingJob | typeof BulkUploadColumnJob | typeof BulkUploadItemJob | typeof BulkUploadJob | typeof BulkUploadTypeJob | typeof DataMappingJob | typeof TagAssignmentJob)[];
|
|
33
34
|
services: (typeof Es6JobsService | typeof TestAccessService)[];
|
|
34
35
|
subscribers: (typeof BulkDefinitionLoadSubscriber | typeof BulkDefinitionProcessingSubscriber | typeof BulkDefinitionSubscriber | typeof BulkUploadColumnSubscriber | typeof BulkUploadItemSubscriber | typeof BulkUploadSubscriber | typeof BulkUploadTypeSubscriber | typeof DataMappingSubscriber | typeof TagAssignmentSubscriber)[];
|
|
@@ -4,7 +4,7 @@ exports.AddTypeIdBzBulkUploadItemsTable1701597524258 = void 0;
|
|
|
4
4
|
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
5
5
|
class AddTypeIdBzBulkUploadItemsTable1701597524258 extends nestjs_utility_services_1.MigrationUtility {
|
|
6
6
|
constructor() {
|
|
7
|
-
super('
|
|
7
|
+
super('utl_bulk_upload_items');
|
|
8
8
|
this.process();
|
|
9
9
|
}
|
|
10
10
|
process() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"1701597524258-AddTypeIdBzBulkUploadItemsTable.ts.js","sourceRoot":"","sources":["../../src/migrations/1701597524258-AddTypeIdBzBulkUploadItemsTable.ts.ts"],"names":[],"mappings":";;;AAAA,oFAA0E;AAE1E,MAAa,4CAA6C,SAAQ,0CAAgB;IAC9E;QACI,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"1701597524258-AddTypeIdBzBulkUploadItemsTable.ts.js","sourceRoot":"","sources":["../../src/migrations/1701597524258-AddTypeIdBzBulkUploadItemsTable.ts.ts"],"names":[],"mappings":";;;AAAA,oFAA0E;AAE1E,MAAa,4CAA6C,SAAQ,0CAAgB;IAC9E;QACI,KAAK,CAAC,uBAAuB,CAAC,CAAC;QAC/B,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,YAAY,EAAE,uBAAuB,EAAE,CAAC,CAAC;IAC7E,CAAC;CACJ;AATD,oGASC"}
|