@puzzlin/models 3.16.0 → 3.18.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/tarot/inputs/create-tarot-card-interpretation.input.d.ts +7 -0
- package/dist/apps/tarot/inputs/create-tarot-card-interpretation.input.d.ts.map +1 -0
- package/dist/apps/tarot/inputs/create-tarot-card-interpretation.input.js +37 -0
- package/dist/apps/tarot/inputs/create-tarot-card-interpretation.input.js.map +1 -0
- package/dist/apps/tarot/inputs/index.d.ts +1 -0
- package/dist/apps/tarot/inputs/index.d.ts.map +1 -1
- package/dist/apps/tarot/inputs/index.js +1 -0
- package/dist/apps/tarot/inputs/index.js.map +1 -1
- package/dist/apps/tarot/objects/index.d.ts +2 -0
- package/dist/apps/tarot/objects/index.d.ts.map +1 -1
- package/dist/apps/tarot/objects/index.js +2 -0
- package/dist/apps/tarot/objects/index.js.map +1 -1
- package/dist/apps/tarot/objects/tarot-card-draw.object.d.ts +4 -0
- package/dist/apps/tarot/objects/tarot-card-draw.object.d.ts.map +1 -1
- package/dist/apps/tarot/objects/tarot-card-draw.object.js +12 -0
- package/dist/apps/tarot/objects/tarot-card-draw.object.js.map +1 -1
- package/dist/apps/tarot/objects/tarot-card-interpretation.object.d.ts +9 -0
- package/dist/apps/tarot/objects/tarot-card-interpretation.object.d.ts.map +1 -0
- package/dist/apps/tarot/objects/tarot-card-interpretation.object.js +36 -0
- package/dist/apps/tarot/objects/tarot-card-interpretation.object.js.map +1 -0
- package/dist/apps/tarot/objects/tarot-card.object.d.ts +11 -0
- package/dist/apps/tarot/objects/tarot-card.object.d.ts.map +1 -0
- package/dist/apps/tarot/objects/tarot-card.object.js +54 -0
- package/dist/apps/tarot/objects/tarot-card.object.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-tarot-card-interpretation.input.d.ts","sourceRoot":"","sources":["../../../../src/apps/tarot/inputs/create-tarot-card-interpretation.input.ts"],"names":[],"mappings":"AAGA,qBACa,kCAAkC;IAE7C,UAAU,EAAE,MAAM,CAAC;IAGnB,SAAS,EAAE,MAAM,EAAE,CAAC;IAGpB,SAAS,EAAE,MAAM,CAAC;IAGlB,UAAU,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1,37 @@
|
|
|
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.CreateTarotCardInterpretationInput = void 0;
|
|
13
|
+
const graphql_1 = require("@nestjs/graphql");
|
|
14
|
+
const graphql_scalars_1 = require("graphql-scalars");
|
|
15
|
+
let CreateTarotCardInterpretationInput = class CreateTarotCardInterpretationInput {
|
|
16
|
+
};
|
|
17
|
+
exports.CreateTarotCardInterpretationInput = CreateTarotCardInterpretationInput;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, graphql_1.Field)(() => graphql_1.ID),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], CreateTarotCardInterpretationInput.prototype, "cardDrawId", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, graphql_1.Field)(() => [graphql_scalars_1.NonEmptyStringResolver]),
|
|
24
|
+
__metadata("design:type", Array)
|
|
25
|
+
], CreateTarotCardInterpretationInput.prototype, "inContext", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, graphql_1.Field)(() => graphql_scalars_1.NonEmptyStringResolver),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], CreateTarotCardInterpretationInput.prototype, "inGeneral", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, graphql_1.Field)(() => graphql_scalars_1.NonEmptyStringResolver),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], CreateTarotCardInterpretationInput.prototype, "reflection", void 0);
|
|
34
|
+
exports.CreateTarotCardInterpretationInput = CreateTarotCardInterpretationInput = __decorate([
|
|
35
|
+
(0, graphql_1.InputType)()
|
|
36
|
+
], CreateTarotCardInterpretationInput);
|
|
37
|
+
//# sourceMappingURL=create-tarot-card-interpretation.input.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-tarot-card-interpretation.input.js","sourceRoot":"","sources":["../../../../src/apps/tarot/inputs/create-tarot-card-interpretation.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAuD;AACvD,qDAAyD;AAGlD,IAAM,kCAAkC,GAAxC,MAAM,kCAAkC;CAY9C,CAAA;AAZY,gFAAkC;AAE7C;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,CAAC;;sEACG;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,wCAAsB,CAAC,CAAC;;qEAClB;AAGpB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,wCAAsB,CAAC;;qEAClB;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,wCAAsB,CAAC;;sEACjB;6CAXR,kCAAkC;IAD9C,IAAA,mBAAS,GAAE;GACC,kCAAkC,CAY9C"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './create-tarot-card-draw.input';
|
|
2
|
+
export * from './create-tarot-card-interpretation.input';
|
|
2
3
|
export * from './create-tarot-reading.input';
|
|
3
4
|
export * from './create-tarot-spread-position-layout.input';
|
|
4
5
|
export * from './create-tarot-spread-position.input';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/apps/tarot/inputs/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6CAA6C,CAAC;AAC5D,cAAc,sCAAsC,CAAC;AACrD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/apps/tarot/inputs/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,0CAA0C,CAAC;AACzD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6CAA6C,CAAC;AAC5D,cAAc,sCAAsC,CAAC;AACrD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,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("./create-tarot-card-draw.input"), exports);
|
|
18
|
+
__exportStar(require("./create-tarot-card-interpretation.input"), exports);
|
|
18
19
|
__exportStar(require("./create-tarot-reading.input"), exports);
|
|
19
20
|
__exportStar(require("./create-tarot-spread-position-layout.input"), exports);
|
|
20
21
|
__exportStar(require("./create-tarot-spread-position.input"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/apps/tarot/inputs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iEAA+C;AAC/C,+DAA6C;AAC7C,8EAA4D;AAC5D,uEAAqD;AACrD,8DAA4C;AAC5C,+DAA6C;AAC7C,+DAA6C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/apps/tarot/inputs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iEAA+C;AAC/C,2EAAyD;AACzD,+DAA6C;AAC7C,8EAA4D;AAC5D,uEAAqD;AACrD,8DAA4C;AAC5C,+DAA6C;AAC7C,+DAA6C"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from './tarot-card-draw.object';
|
|
2
|
+
export * from './tarot-card-interpretation.object';
|
|
3
|
+
export * from './tarot-card.object';
|
|
2
4
|
export * from './tarot-reading.object';
|
|
3
5
|
export * from './tarot-spread-position-layout.object';
|
|
4
6
|
export * from './tarot-spread-position.object';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,uCAAuC,CAAC;AACtD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uBAAuB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,oCAAoC,CAAC;AACnD,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,uCAAuC,CAAC;AACtD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uBAAuB,CAAC"}
|
|
@@ -15,6 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./tarot-card-draw.object"), exports);
|
|
18
|
+
__exportStar(require("./tarot-card-interpretation.object"), exports);
|
|
19
|
+
__exportStar(require("./tarot-card.object"), exports);
|
|
18
20
|
__exportStar(require("./tarot-reading.object"), exports);
|
|
19
21
|
__exportStar(require("./tarot-spread-position-layout.object"), exports);
|
|
20
22
|
__exportStar(require("./tarot-spread-position.object"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AACzC,yDAAuC;AACvC,wEAAsD;AACtD,iEAA+C;AAC/C,wDAAsC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AACzC,qEAAmD;AACnD,sDAAoC;AACpC,yDAAuC;AACvC,wEAAsD;AACtD,iEAA+C;AAC/C,wDAAsC"}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { Node, Timestamp } from '../../../shared';
|
|
2
2
|
import { TarotCardOrientationEnum } from '@puzzlin/enums';
|
|
3
|
+
import { TarotCardInterpretation } from './tarot-card-interpretation.object';
|
|
4
|
+
import { TarotCard } from './tarot-card.object';
|
|
3
5
|
declare const TarotCardDraw_base: import("@nestjs/common").Type<Node & Timestamp>;
|
|
4
6
|
export declare class TarotCardDraw extends TarotCardDraw_base {
|
|
7
|
+
card?: TarotCard;
|
|
5
8
|
cardRef: string;
|
|
9
|
+
interpretation?: TarotCardInterpretation;
|
|
6
10
|
orientation: TarotCardOrientationEnum;
|
|
7
11
|
positionId: string;
|
|
8
12
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tarot-card-draw.object.d.ts","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/tarot-card-draw.object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAE3C,OAAO,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;;
|
|
1
|
+
{"version":3,"file":"tarot-card-draw.object.d.ts","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/tarot-card-draw.object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAE3C,OAAO,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;AAE1D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAC;AAC7E,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;;AAEhD,qBAGa,aAAc,SAAQ,kBAAiC;IAElE,IAAI,CAAC,EAAE,SAAS,CAAC;IAKjB,OAAO,EAAE,MAAM,CAAC;IAKhB,cAAc,CAAC,EAAE,uBAAuB,CAAC;IAGzC,WAAW,EAAE,wBAAwB,CAAC;IAGtC,UAAU,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -14,15 +14,27 @@ const shared_1 = require("../../../shared");
|
|
|
14
14
|
const graphql_1 = require("@nestjs/graphql");
|
|
15
15
|
const enums_1 = require("@puzzlin/enums");
|
|
16
16
|
const graphql_scalars_1 = require("graphql-scalars");
|
|
17
|
+
const tarot_card_interpretation_object_1 = require("./tarot-card-interpretation.object");
|
|
18
|
+
const tarot_card_object_1 = require("./tarot-card.object");
|
|
17
19
|
let TarotCardDraw = class TarotCardDraw extends (0, graphql_1.IntersectionType)(shared_1.Node, shared_1.Timestamp) {
|
|
18
20
|
};
|
|
19
21
|
exports.TarotCardDraw = TarotCardDraw;
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, graphql_1.Field)(() => tarot_card_object_1.TarotCard),
|
|
24
|
+
__metadata("design:type", tarot_card_object_1.TarotCard)
|
|
25
|
+
], TarotCardDraw.prototype, "card", void 0);
|
|
20
26
|
__decorate([
|
|
21
27
|
(0, graphql_1.Field)(() => graphql_scalars_1.NonEmptyStringResolver, {
|
|
22
28
|
description: 'Deterministic key for persistence, e.g. "rws:major:07", "rws:cups:03", "rws:wands:13" (queen)',
|
|
23
29
|
}),
|
|
24
30
|
__metadata("design:type", String)
|
|
25
31
|
], TarotCardDraw.prototype, "cardRef", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, graphql_1.Field)(() => tarot_card_interpretation_object_1.TarotCardInterpretation, {
|
|
34
|
+
nullable: true,
|
|
35
|
+
}),
|
|
36
|
+
__metadata("design:type", tarot_card_interpretation_object_1.TarotCardInterpretation)
|
|
37
|
+
], TarotCardDraw.prototype, "interpretation", void 0);
|
|
26
38
|
__decorate([
|
|
27
39
|
(0, graphql_1.Field)(() => enums_1.TarotCardOrientationEnum),
|
|
28
40
|
__metadata("design:type", String)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tarot-card-draw.object.js","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/tarot-card-draw.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAA2C;AAC3C,6CAA0E;AAC1E,0CAA0D;AAC1D,qDAAyD;
|
|
1
|
+
{"version":3,"file":"tarot-card-draw.object.js","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/tarot-card-draw.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAA2C;AAC3C,6CAA0E;AAC1E,0CAA0D;AAC1D,qDAAyD;AACzD,yFAA6E;AAC7E,2DAAgD;AAKzC,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,IAAA,0BAAgB,EAAC,aAAI,EAAE,kBAAS,CAAC;CAmBnE,CAAA;AAnBY,sCAAa;AAExB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,6BAAS,CAAC;8BAChB,6BAAS;2CAAC;AAKjB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,wCAAsB,EAAE;QACnC,WAAW,EAAE,+FAA+F;KAC7G,CAAC;;8CACc;AAKhB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,0DAAuB,EAAE;QACpC,QAAQ,EAAE,IAAI;KACf,CAAC;8BACe,0DAAuB;qDAAC;AAGzC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,gCAAwB,CAAC;;kDACA;AAGtC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,CAAC;;iDACG;wBAlBR,aAAa;IAHzB,IAAA,oBAAU,EAAC;QACV,UAAU,EAAE,aAAI;KACjB,CAAC;GACW,aAAa,CAmBzB"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Node, Timestamp } from '../../../shared';
|
|
2
|
+
declare const TarotCardInterpretation_base: import("@nestjs/common").Type<Node & Timestamp>;
|
|
3
|
+
export declare class TarotCardInterpretation extends TarotCardInterpretation_base {
|
|
4
|
+
inContext: string[];
|
|
5
|
+
inGeneral: string;
|
|
6
|
+
reflection: string;
|
|
7
|
+
}
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=tarot-card-interpretation.object.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tarot-card-interpretation.object.d.ts","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/tarot-card-interpretation.object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;;AAI3C,qBAGa,uBAAwB,SAAQ,4BAAiC;IAE5E,SAAS,EAAE,MAAM,EAAE,CAAC;IAGpB,SAAS,EAAE,MAAM,CAAC;IAGlB,UAAU,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1,36 @@
|
|
|
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.TarotCardInterpretation = void 0;
|
|
13
|
+
const shared_1 = require("../../../shared");
|
|
14
|
+
const graphql_1 = require("@nestjs/graphql");
|
|
15
|
+
const graphql_scalars_1 = require("graphql-scalars");
|
|
16
|
+
let TarotCardInterpretation = class TarotCardInterpretation extends (0, graphql_1.IntersectionType)(shared_1.Node, shared_1.Timestamp) {
|
|
17
|
+
};
|
|
18
|
+
exports.TarotCardInterpretation = TarotCardInterpretation;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, graphql_1.Field)(() => [graphql_scalars_1.NonEmptyStringResolver]),
|
|
21
|
+
__metadata("design:type", Array)
|
|
22
|
+
], TarotCardInterpretation.prototype, "inContext", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, graphql_1.Field)(() => graphql_scalars_1.NonEmptyStringResolver),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], TarotCardInterpretation.prototype, "inGeneral", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, graphql_1.Field)(() => graphql_scalars_1.NonEmptyStringResolver),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], TarotCardInterpretation.prototype, "reflection", void 0);
|
|
31
|
+
exports.TarotCardInterpretation = TarotCardInterpretation = __decorate([
|
|
32
|
+
(0, graphql_1.ObjectType)({
|
|
33
|
+
implements: shared_1.Node,
|
|
34
|
+
})
|
|
35
|
+
], TarotCardInterpretation);
|
|
36
|
+
//# sourceMappingURL=tarot-card-interpretation.object.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tarot-card-interpretation.object.js","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/tarot-card-interpretation.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAA2C;AAC3C,6CAAsE;AACtE,qDAAyD;AAKlD,IAAM,uBAAuB,GAA7B,MAAM,uBAAwB,SAAQ,IAAA,0BAAgB,EAAC,aAAI,EAAE,kBAAS,CAAC;CAS7E,CAAA;AATY,0DAAuB;AAElC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,wCAAsB,CAAC,CAAC;;0DAClB;AAGpB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,wCAAsB,CAAC;;0DAClB;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,wCAAsB,CAAC;;2DACjB;kCARR,uBAAuB;IAHnC,IAAA,oBAAU,EAAC;QACV,UAAU,EAAE,aAAI;KACjB,CAAC;GACW,uBAAuB,CASnC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { TarotArcanaEnum, TarotDeckEnum, TarotMinorSuitEnum } from '@puzzlin/enums';
|
|
2
|
+
export declare class TarotCard {
|
|
3
|
+
arcana: TarotArcanaEnum;
|
|
4
|
+
deck: TarotDeckEnum;
|
|
5
|
+
imageUrl: URL;
|
|
6
|
+
number: string;
|
|
7
|
+
ref: string;
|
|
8
|
+
suit?: TarotMinorSuitEnum;
|
|
9
|
+
title: string;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=tarot-card.object.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tarot-card.object.d.ts","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/tarot-card.object.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAGpF,qBACa,SAAS;IAEpB,MAAM,EAAE,eAAe,CAAC;IAGxB,IAAI,EAAE,aAAa,CAAC;IAGpB,QAAQ,EAAE,GAAG,CAAC;IAGd,MAAM,EAAE,MAAM,CAAC;IAKf,GAAG,EAAE,MAAM,CAAC;IAKZ,IAAI,CAAC,EAAE,kBAAkB,CAAC;IAG1B,KAAK,EAAE,MAAM,CAAC;CACf"}
|
|
@@ -0,0 +1,54 @@
|
|
|
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.TarotCard = void 0;
|
|
13
|
+
const graphql_1 = require("@nestjs/graphql");
|
|
14
|
+
const enums_1 = require("@puzzlin/enums");
|
|
15
|
+
const graphql_scalars_1 = require("graphql-scalars");
|
|
16
|
+
let TarotCard = class TarotCard {
|
|
17
|
+
};
|
|
18
|
+
exports.TarotCard = TarotCard;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, graphql_1.Field)(() => enums_1.TarotArcanaEnum),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], TarotCard.prototype, "arcana", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, graphql_1.Field)(() => enums_1.TarotDeckEnum),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], TarotCard.prototype, "deck", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, graphql_1.Field)(() => graphql_scalars_1.URLResolver),
|
|
29
|
+
__metadata("design:type", URL)
|
|
30
|
+
], TarotCard.prototype, "imageUrl", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, graphql_1.Field)(() => graphql_scalars_1.NonEmptyStringResolver),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], TarotCard.prototype, "number", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, graphql_1.Field)(() => graphql_scalars_1.NonEmptyStringResolver, {
|
|
37
|
+
description: 'Deterministic key for persistence, e.g. "rws:major:07", "rws:cups:03", "rws:wands:13" (queen)',
|
|
38
|
+
}),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], TarotCard.prototype, "ref", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, graphql_1.Field)(() => enums_1.TarotMinorSuitEnum, {
|
|
43
|
+
nullable: true,
|
|
44
|
+
}),
|
|
45
|
+
__metadata("design:type", String)
|
|
46
|
+
], TarotCard.prototype, "suit", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, graphql_1.Field)(() => graphql_scalars_1.NonEmptyStringResolver),
|
|
49
|
+
__metadata("design:type", String)
|
|
50
|
+
], TarotCard.prototype, "title", void 0);
|
|
51
|
+
exports.TarotCard = TarotCard = __decorate([
|
|
52
|
+
(0, graphql_1.ObjectType)()
|
|
53
|
+
], TarotCard);
|
|
54
|
+
//# sourceMappingURL=tarot-card.object.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tarot-card.object.js","sourceRoot":"","sources":["../../../../src/apps/tarot/objects/tarot-card.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAoD;AACpD,0CAAoF;AACpF,qDAAsE;AAG/D,IAAM,SAAS,GAAf,MAAM,SAAS;CAyBrB,CAAA;AAzBY,8BAAS;AAEpB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uBAAe,CAAC;;yCACL;AAGxB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qBAAa,CAAC;;uCACP;AAGpB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,6BAAW,CAAC;8BACf,GAAG;2CAAC;AAGd;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,wCAAsB,CAAC;;yCACrB;AAKf;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,wCAAsB,EAAE;QACnC,WAAW,EAAE,+FAA+F;KAC7G,CAAC;;sCACU;AAKZ;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,0BAAkB,EAAE;QAC/B,QAAQ,EAAE,IAAI;KACf,CAAC;;uCACwB;AAG1B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,wCAAsB,CAAC;;wCACtB;oBAxBH,SAAS;IADrB,IAAA,oBAAU,GAAE;GACA,SAAS,CAyBrB"}
|