@puzzlin/models 4.6.0 → 4.7.0
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/apps/brain-imaging/nardi-eeg-reports/objects/index.d.ts +1 -0
- package/dist/apps/brain-imaging/nardi-eeg-reports/objects/index.d.ts.map +1 -1
- package/dist/apps/brain-imaging/nardi-eeg-reports/objects/index.js +1 -0
- package/dist/apps/brain-imaging/nardi-eeg-reports/objects/index.js.map +1 -1
- package/dist/apps/brain-imaging/nardi-eeg-reports/objects/nardi-brain-region.object.d.ts +9 -0
- package/dist/apps/brain-imaging/nardi-eeg-reports/objects/nardi-brain-region.object.d.ts.map +1 -0
- package/dist/apps/brain-imaging/nardi-eeg-reports/objects/nardi-brain-region.object.js +41 -0
- package/dist/apps/brain-imaging/nardi-eeg-reports/objects/nardi-brain-region.object.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/apps/brain-imaging/nardi-eeg-reports/objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/apps/brain-imaging/nardi-eeg-reports/objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,6BAA6B,CAAC"}
|
|
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./nardi-eeg-report.object"), exports);
|
|
18
|
+
__exportStar(require("./nardi-brain-region.object"), exports);
|
|
18
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/apps/brain-imaging/nardi-eeg-reports/objects/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C","sourcesContent":["export * from './nardi-eeg-report.object';\
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/apps/brain-imaging/nardi-eeg-reports/objects/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,8DAA4C","sourcesContent":["export * from './nardi-eeg-report.object';\nexport * from './nardi-brain-region.object';\n"]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BrainRegionEnum } from '@puzzlin/enums';
|
|
2
|
+
export declare class NardiBrainRegion {
|
|
3
|
+
description: string;
|
|
4
|
+
inTheWorkplace: string;
|
|
5
|
+
ref: BrainRegionEnum;
|
|
6
|
+
shortDescription: string;
|
|
7
|
+
title: string;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=nardi-brain-region.object.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nardi-brain-region.object.d.ts","sourceRoot":"","sources":["../../../../../src/apps/brain-imaging/nardi-eeg-reports/objects/nardi-brain-region.object.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAEjD,qBACa,gBAAgB;IAE3B,WAAW,EAAE,MAAM,CAAC;IAGpB,cAAc,EAAE,MAAM,CAAC;IAGvB,GAAG,EAAE,eAAe,CAAC;IAGrB,gBAAgB,EAAE,MAAM,CAAC;IAGzB,KAAK,EAAE,MAAM,CAAC;CACf"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.NardiBrainRegion = void 0;
|
|
13
|
+
const graphql_1 = require("@nestjs/graphql");
|
|
14
|
+
const enums_1 = require("@puzzlin/enums");
|
|
15
|
+
let NardiBrainRegion = class NardiBrainRegion {
|
|
16
|
+
};
|
|
17
|
+
exports.NardiBrainRegion = NardiBrainRegion;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, graphql_1.Field)(() => String),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], NardiBrainRegion.prototype, "description", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, graphql_1.Field)(() => String),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], NardiBrainRegion.prototype, "inTheWorkplace", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, graphql_1.Field)(() => enums_1.BrainRegionEnum),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], NardiBrainRegion.prototype, "ref", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, graphql_1.Field)(() => String),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], NardiBrainRegion.prototype, "shortDescription", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, graphql_1.Field)(() => String),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], NardiBrainRegion.prototype, "title", void 0);
|
|
38
|
+
exports.NardiBrainRegion = NardiBrainRegion = __decorate([
|
|
39
|
+
(0, graphql_1.ObjectType)()
|
|
40
|
+
], NardiBrainRegion);
|
|
41
|
+
//# sourceMappingURL=nardi-brain-region.object.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nardi-brain-region.object.js","sourceRoot":"","sources":["../../../../../src/apps/brain-imaging/nardi-eeg-reports/objects/nardi-brain-region.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAoD;AACpD,0CAAiD;AAG1C,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CAe5B,CAAA;AAfY,4CAAgB;AAE3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;qDACA;AAGpB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;wDACG;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uBAAe,CAAC;;6CACR;AAGrB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;0DACK;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;+CACN;2BAdH,gBAAgB;IAD5B,IAAA,oBAAU,GAAE;GACA,gBAAgB,CAe5B","sourcesContent":["import { Field, ObjectType } from '@nestjs/graphql';\nimport { BrainRegionEnum } from '@puzzlin/enums';\n\n@ObjectType()\nexport class NardiBrainRegion {\n @Field(() => String)\n description: string;\n\n @Field(() => String)\n inTheWorkplace: string;\n\n @Field(() => BrainRegionEnum)\n ref: BrainRegionEnum;\n\n @Field(() => String)\n shortDescription: string;\n\n @Field(() => String)\n title: string;\n}\n"]}
|