@things-factory/worksheet-base 7.0.1-alpha.9 → 7.0.1-alpha.92

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.
@@ -1,4 +1,4 @@
1
- import { store } from '@things-factory/shell'
1
+ import { store } from '@operato/shell'
2
2
  import worksheetBase from './reducers/main'
3
3
 
4
4
  export default function bootstrap() {
@@ -26,11 +26,11 @@ tslib_1.__decorate([
26
26
  tslib_1.__metadata("design:type", worksheet_1.Worksheet)
27
27
  ], WorksheetMovement.prototype, "worksheet", void 0);
28
28
  tslib_1.__decorate([
29
- (0, typeorm_1.Column)(),
29
+ (0, typeorm_1.Column)({ nullable: true }),
30
30
  tslib_1.__metadata("design:type", Date)
31
31
  ], WorksheetMovement.prototype, "startTime", void 0);
32
32
  tslib_1.__decorate([
33
- (0, typeorm_1.Column)(),
33
+ (0, typeorm_1.Column)({ nullable: true }),
34
34
  tslib_1.__metadata("design:type", Date)
35
35
  ], WorksheetMovement.prototype, "endTime", void 0);
36
36
  tslib_1.__decorate([
@@ -1 +1 @@
1
- {"version":3,"file":"worksheet-movement.js","sourceRoot":"","sources":["../../server/entities/worksheet-movement.ts"],"names":[],"mappings":";;;;AAAA,iDAA8C;AAC9C,qCAAkF;AAClF,2CAAuC;AAMhC,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAyB7B,CAAA;AAxBC;IAAC,IAAA,gCAAsB,EAAC,MAAM,CAAC;;6CACrB;AAEV;IAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,cAAM,CAAC;sCAClB,cAAM;iDAAA;AAEd;IAAC,IAAA,gBAAM,EAAC;QACN,QAAQ,EAAE,IAAI;KACf,CAAC;sCACI,IAAI;+CAAA;AAEV;IAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,qBAAS,CAAC;sCAClB,qBAAS;oDAAA;AAEpB;IAAC,IAAA,gBAAM,GAAE;sCACE,IAAI;oDAAA;AAEf;IAAC,IAAA,gBAAM,GAAE;sCACA,IAAI;kDAAA;AAEb;IAAC,IAAA,gBAAM,EAAC;QACN,QAAQ,EAAE,IAAI;KACf,CAAC;;sDACiB;AAxBR,iBAAiB;IAJ7B,IAAA,gBAAM,GAAE;IACR,IAAA,eAAK,EAAC,yBAAyB,EAAE,CAAC,iBAAoC,EAAE,EAAE,CAAC,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE;QACtG,MAAM,EAAE,IAAI;KACb,CAAC;GACW,iBAAiB,CAyB7B;AAzBY,8CAAiB","sourcesContent":["import { Domain } from '@things-factory/shell'\nimport { Column, Entity, Index, ManyToOne, PrimaryGeneratedColumn } from 'typeorm'\nimport { Worksheet } from './worksheet'\n\n@Entity()\n@Index('ix_worksheet-movement_0', (worksheetMovement: WorksheetMovement) => [worksheetMovement.domain], {\n unique: true\n})\nexport class WorksheetMovement {\n @PrimaryGeneratedColumn('uuid')\n id: string\n\n @ManyToOne(type => Domain)\n domain: Domain\n\n @Column({\n nullable: true\n })\n date: Date\n\n @ManyToOne(type => Worksheet)\n worksheet: Worksheet\n\n @Column()\n startTime: Date\n\n @Column()\n endTime: Date\n\n @Column({\n nullable: true\n })\n description: string\n}\n"]}
1
+ {"version":3,"file":"worksheet-movement.js","sourceRoot":"","sources":["../../server/entities/worksheet-movement.ts"],"names":[],"mappings":";;;;AAAA,iDAA8C;AAC9C,qCAAkF;AAClF,2CAAuC;AAMhC,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAyB7B,CAAA;AAxBC;IAAC,IAAA,gCAAsB,EAAC,MAAM,CAAC;;6CACrB;AAEV;IAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,cAAM,CAAC;sCAClB,cAAM;iDAAA;AAEd;IAAC,IAAA,gBAAM,EAAC;QACN,QAAQ,EAAE,IAAI;KACf,CAAC;sCACI,IAAI;+CAAA;AAEV;IAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,qBAAS,CAAC;sCAClB,qBAAS;oDAAA;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;sCAChB,IAAI;oDAAA;AAEf;IAAC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;sCAClB,IAAI;kDAAA;AAEb;IAAC,IAAA,gBAAM,EAAC;QACN,QAAQ,EAAE,IAAI;KACf,CAAC;;sDACiB;AAxBR,iBAAiB;IAJ7B,IAAA,gBAAM,GAAE;IACR,IAAA,eAAK,EAAC,yBAAyB,EAAE,CAAC,iBAAoC,EAAE,EAAE,CAAC,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE;QACtG,MAAM,EAAE,IAAI;KACb,CAAC;GACW,iBAAiB,CAyB7B;AAzBY,8CAAiB","sourcesContent":["import { Domain } from '@things-factory/shell'\nimport { Column, Entity, Index, ManyToOne, PrimaryGeneratedColumn } from 'typeorm'\nimport { Worksheet } from './worksheet'\n\n@Entity()\n@Index('ix_worksheet-movement_0', (worksheetMovement: WorksheetMovement) => [worksheetMovement.domain], {\n unique: true\n})\nexport class WorksheetMovement {\n @PrimaryGeneratedColumn('uuid')\n id: string\n\n @ManyToOne(type => Domain)\n domain: Domain\n\n @Column({\n nullable: true\n })\n date: Date\n\n @ManyToOne(type => Worksheet)\n worksheet: Worksheet\n\n @Column({ nullable: true })\n startTime: Date\n\n @Column({ nullable: true })\n endTime: Date\n\n @Column({\n nullable: true\n })\n description: string\n}\n"]}