@puzzlin/models 4.4.0 → 4.4.1

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,5 +1,6 @@
1
1
  export declare class CorrelationInput {
2
2
  coefficient: number;
3
- pValue: number | null;
3
+ pValue: number;
4
+ sampleSize: number;
4
5
  }
5
6
  //# sourceMappingURL=correlation.input.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"correlation.input.d.ts","sourceRoot":"","sources":["../../../src/shared/correlations/correlation.input.ts"],"names":[],"mappings":"AAGA,qBACa,gBAAgB;IAE3B,WAAW,EAAE,MAAM,CAAC;IAKpB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB"}
1
+ {"version":3,"file":"correlation.input.d.ts","sourceRoot":"","sources":["../../../src/shared/correlations/correlation.input.ts"],"names":[],"mappings":"AAGA,qBACa,gBAAgB;IAE3B,WAAW,EAAE,MAAM,CAAC;IAGpB,MAAM,EAAE,MAAM,CAAC;IAGf,UAAU,EAAE,MAAM,CAAC;CACpB"}
@@ -20,11 +20,13 @@ __decorate([
20
20
  __metadata("design:type", Number)
21
21
  ], CorrelationInput.prototype, "coefficient", void 0);
22
22
  __decorate([
23
- (0, graphql_1.Field)(() => graphql_scalars_1.PositiveFloatResolver, {
24
- nullable: true,
25
- }),
26
- __metadata("design:type", Object)
23
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveFloatResolver),
24
+ __metadata("design:type", Number)
27
25
  ], CorrelationInput.prototype, "pValue", void 0);
26
+ __decorate([
27
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver),
28
+ __metadata("design:type", Number)
29
+ ], CorrelationInput.prototype, "sampleSize", void 0);
28
30
  exports.CorrelationInput = CorrelationInput = __decorate([
29
31
  (0, graphql_1.InputType)()
30
32
  ], CorrelationInput);
@@ -1 +1 @@
1
- {"version":3,"file":"correlation.input.js","sourceRoot":"","sources":["../../../src/shared/correlations/correlation.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA0D;AAC1D,qDAAwD;AAGjD,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CAQ5B,CAAA;AARY,4CAAgB;AAE3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAK,CAAC;;qDACC;AAKpB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uCAAqB,EAAE;QAClC,QAAQ,EAAE,IAAI;KACf,CAAC;;gDACoB;2BAPX,gBAAgB;IAD5B,IAAA,mBAAS,GAAE;GACC,gBAAgB,CAQ5B","sourcesContent":["import { Field, Float, InputType } from '@nestjs/graphql';\r\nimport { PositiveFloatResolver } from 'graphql-scalars';\r\n\r\n@InputType()\r\nexport class CorrelationInput {\r\n @Field(() => Float)\r\n coefficient: number;\r\n\r\n @Field(() => PositiveFloatResolver, {\r\n nullable: true,\r\n })\r\n pValue: number | null;\r\n}\r\n"]}
1
+ {"version":3,"file":"correlation.input.js","sourceRoot":"","sources":["../../../src/shared/correlations/correlation.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA0D;AAC1D,qDAA6E;AAGtE,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CAS5B,CAAA;AATY,4CAAgB;AAE3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAK,CAAC;;qDACC;AAGpB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uCAAqB,CAAC;;gDACpB;AAGf;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,CAAC;;oDACd;2BARR,gBAAgB;IAD5B,IAAA,mBAAS,GAAE;GACC,gBAAgB,CAS5B","sourcesContent":["import { Field, Float, InputType } from '@nestjs/graphql';\r\nimport { PositiveFloatResolver, PositiveIntResolver } from 'graphql-scalars';\r\n\r\n@InputType()\r\nexport class CorrelationInput {\r\n @Field(() => Float)\r\n coefficient: number;\r\n\r\n @Field(() => PositiveFloatResolver)\r\n pValue: number;\r\n\r\n @Field(() => PositiveIntResolver)\r\n sampleSize: number;\r\n}\r\n"]}
@@ -1,5 +1,6 @@
1
1
  export declare class Correlation {
2
2
  coefficient: number;
3
- pValue: number | null;
3
+ pValue: number;
4
+ sampleSize: number;
4
5
  }
5
6
  //# sourceMappingURL=correlation.object.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"correlation.object.d.ts","sourceRoot":"","sources":["../../../src/shared/correlations/correlation.object.ts"],"names":[],"mappings":"AAGA,qBACa,WAAW;IAEtB,WAAW,EAAE,MAAM,CAAC;IAKpB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB"}
1
+ {"version":3,"file":"correlation.object.d.ts","sourceRoot":"","sources":["../../../src/shared/correlations/correlation.object.ts"],"names":[],"mappings":"AAGA,qBACa,WAAW;IAEtB,WAAW,EAAE,MAAM,CAAC;IAGpB,MAAM,EAAE,MAAM,CAAC;IAGf,UAAU,EAAE,MAAM,CAAC;CACpB"}
@@ -20,11 +20,13 @@ __decorate([
20
20
  __metadata("design:type", Number)
21
21
  ], Correlation.prototype, "coefficient", void 0);
22
22
  __decorate([
23
- (0, graphql_1.Field)(() => graphql_scalars_1.PositiveFloatResolver, {
24
- nullable: true,
25
- }),
26
- __metadata("design:type", Object)
23
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveFloatResolver),
24
+ __metadata("design:type", Number)
27
25
  ], Correlation.prototype, "pValue", void 0);
26
+ __decorate([
27
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver),
28
+ __metadata("design:type", Number)
29
+ ], Correlation.prototype, "sampleSize", void 0);
28
30
  exports.Correlation = Correlation = __decorate([
29
31
  (0, graphql_1.ObjectType)()
30
32
  ], Correlation);
@@ -1 +1 @@
1
- {"version":3,"file":"correlation.object.js","sourceRoot":"","sources":["../../../src/shared/correlations/correlation.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA2D;AAC3D,qDAAwD;AAGjD,IAAM,WAAW,GAAjB,MAAM,WAAW;CAQvB,CAAA;AARY,kCAAW;AAEtB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAK,CAAC;;gDACC;AAKpB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uCAAqB,EAAE;QAClC,QAAQ,EAAE,IAAI;KACf,CAAC;;2CACoB;sBAPX,WAAW;IADvB,IAAA,oBAAU,GAAE;GACA,WAAW,CAQvB","sourcesContent":["import { Field, Float, ObjectType } from '@nestjs/graphql';\r\nimport { PositiveFloatResolver } from 'graphql-scalars';\r\n\r\n@ObjectType()\r\nexport class Correlation {\r\n @Field(() => Float)\r\n coefficient: number;\r\n\r\n @Field(() => PositiveFloatResolver, {\r\n nullable: true,\r\n })\r\n pValue: number | null;\r\n}\r\n"]}
1
+ {"version":3,"file":"correlation.object.js","sourceRoot":"","sources":["../../../src/shared/correlations/correlation.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA2D;AAC3D,qDAA6E;AAGtE,IAAM,WAAW,GAAjB,MAAM,WAAW;CASvB,CAAA;AATY,kCAAW;AAEtB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAK,CAAC;;gDACC;AAGpB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uCAAqB,CAAC;;2CACpB;AAGf;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,CAAC;;+CACd;sBARR,WAAW;IADvB,IAAA,oBAAU,GAAE;GACA,WAAW,CASvB","sourcesContent":["import { Field, Float, ObjectType } from '@nestjs/graphql';\r\nimport { PositiveFloatResolver, PositiveIntResolver } from 'graphql-scalars';\r\n\r\n@ObjectType()\r\nexport class Correlation {\r\n @Field(() => Float)\r\n coefficient: number;\r\n\r\n @Field(() => PositiveFloatResolver)\r\n pValue: number;\r\n\r\n @Field(() => PositiveIntResolver)\r\n sampleSize: number;\r\n}\r\n"]}