@puzzlin/models 4.21.1 → 4.22.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.
@@ -0,0 +1,5 @@
1
+ import { BigFiveNorm } from './big-five-norm.object';
2
+ export declare class BigFiveNormSetCandidate {
3
+ norms: BigFiveNorm[];
4
+ }
5
+ //# sourceMappingURL=big-five-norm-set-candidate.object.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"big-five-norm-set-candidate.object.d.ts","sourceRoot":"","sources":["../../../../src/shared/big-five/objects/big-five-norm-set-candidate.object.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAErD,qBACa,uBAAuB;IAGlC,KAAK,EAAE,WAAW,EAAE,CAAC;CACtB"}
@@ -0,0 +1,27 @@
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.BigFiveNormSetCandidate = void 0;
13
+ const graphql_1 = require("@nestjs/graphql");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const big_five_norm_object_1 = require("./big-five-norm.object");
16
+ let BigFiveNormSetCandidate = class BigFiveNormSetCandidate {
17
+ };
18
+ exports.BigFiveNormSetCandidate = BigFiveNormSetCandidate;
19
+ __decorate([
20
+ (0, graphql_1.Field)(() => [big_five_norm_object_1.BigFiveNorm]),
21
+ (0, class_transformer_1.Type)(() => big_five_norm_object_1.BigFiveNorm),
22
+ __metadata("design:type", Array)
23
+ ], BigFiveNormSetCandidate.prototype, "norms", void 0);
24
+ exports.BigFiveNormSetCandidate = BigFiveNormSetCandidate = __decorate([
25
+ (0, graphql_1.ObjectType)()
26
+ ], BigFiveNormSetCandidate);
27
+ //# sourceMappingURL=big-five-norm-set-candidate.object.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"big-five-norm-set-candidate.object.js","sourceRoot":"","sources":["../../../../src/shared/big-five/objects/big-five-norm-set-candidate.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAoD;AACpD,yDAAyC;AACzC,iEAAqD;AAG9C,IAAM,uBAAuB,GAA7B,MAAM,uBAAuB;CAInC,CAAA;AAJY,0DAAuB;AAGlC;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,kCAAW,CAAC,CAAC;IAC1B,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,kCAAW,CAAC;;sDACH;kCAHV,uBAAuB;IADnC,IAAA,oBAAU,GAAE;GACA,uBAAuB,CAInC","sourcesContent":["import { Field, ObjectType } from '@nestjs/graphql';\nimport { Type } from 'class-transformer';\nimport { BigFiveNorm } from './big-five-norm.object';\n\n@ObjectType()\nexport class BigFiveNormSetCandidate {\n @Field(() => [BigFiveNorm])\n @Type(() => BigFiveNorm)\n norms: BigFiveNorm[];\n}\n"]}
@@ -1,4 +1,5 @@
1
1
  export * from './big-five-model.object';
2
+ export * from './big-five-norm-set-candidate.object';
2
3
  export * from './big-five-norm-set.object';
3
4
  export * from './big-five-norm.object';
4
5
  export * from './big-five-trait.object';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/shared/big-five/objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/shared/big-five/objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,sCAAsC,CAAC;AACrD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC"}
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./big-five-model.object"), exports);
18
+ __exportStar(require("./big-five-norm-set-candidate.object"), exports);
18
19
  __exportStar(require("./big-five-norm-set.object"), exports);
19
20
  __exportStar(require("./big-five-norm.object"), exports);
20
21
  __exportStar(require("./big-five-trait.object"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/shared/big-five/objects/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AACxC,6DAA2C;AAC3C,yDAAuC;AACvC,0DAAwC;AACxC,iEAA+C","sourcesContent":["export * from './big-five-model.object';\nexport * from './big-five-norm-set.object';\nexport * from './big-five-norm.object';\nexport * from './big-five-trait.object';\nexport * from './big-five-trait-result.object';\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/shared/big-five/objects/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AACxC,uEAAqD;AACrD,6DAA2C;AAC3C,yDAAuC;AACvC,0DAAwC;AACxC,iEAA+C","sourcesContent":["export * from './big-five-model.object';\nexport * from './big-five-norm-set-candidate.object';\nexport * from './big-five-norm-set.object';\nexport * from './big-five-norm.object';\nexport * from './big-five-trait.object';\nexport * from './big-five-trait-result.object';\n"]}