@puzzlin/models 2.3.0 → 3.1.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.
Files changed (38) hide show
  1. package/dist/models/credits/inputs/user-resource.input.d.ts +2 -1
  2. package/dist/models/credits/inputs/user-resource.input.d.ts.map +1 -1
  3. package/dist/models/credits/inputs/user-resource.input.js +5 -0
  4. package/dist/models/credits/inputs/user-resource.input.js.map +1 -1
  5. package/dist/models/credits/objects/index.d.ts +1 -0
  6. package/dist/models/credits/objects/index.d.ts.map +1 -1
  7. package/dist/models/credits/objects/index.js +1 -0
  8. package/dist/models/credits/objects/index.js.map +1 -1
  9. package/dist/models/credits/objects/resource-credit-info.object.d.ts +4 -0
  10. package/dist/models/credits/objects/resource-credit-info.object.d.ts.map +1 -0
  11. package/dist/models/credits/objects/resource-credit-info.object.js +27 -0
  12. package/dist/models/credits/objects/resource-credit-info.object.js.map +1 -0
  13. package/dist/models/orders/objects/index.d.ts +1 -0
  14. package/dist/models/orders/objects/index.d.ts.map +1 -1
  15. package/dist/models/orders/objects/index.js +1 -0
  16. package/dist/models/orders/objects/index.js.map +1 -1
  17. package/dist/models/orders/objects/transaction-amounts.object.d.ts +11 -0
  18. package/dist/models/orders/objects/transaction-amounts.object.d.ts.map +1 -0
  19. package/dist/models/orders/objects/transaction-amounts.object.js +74 -0
  20. package/dist/models/orders/objects/transaction-amounts.object.js.map +1 -0
  21. package/dist/models/orders/objects/transaction.object.d.ts +2 -4
  22. package/dist/models/orders/objects/transaction.object.d.ts.map +1 -1
  23. package/dist/models/orders/objects/transaction.object.js +5 -25
  24. package/dist/models/orders/objects/transaction.object.js.map +1 -1
  25. package/dist/models/storybooks/objects/storybook.object.d.ts +3 -0
  26. package/dist/models/storybooks/objects/storybook.object.d.ts.map +1 -1
  27. package/dist/models/storybooks/objects/storybook.object.js +10 -0
  28. package/dist/models/storybooks/objects/storybook.object.js.map +1 -1
  29. package/dist/models/storybooks/payloads/index.d.ts +1 -0
  30. package/dist/models/storybooks/payloads/index.d.ts.map +1 -1
  31. package/dist/models/storybooks/payloads/index.js +1 -0
  32. package/dist/models/storybooks/payloads/index.js.map +1 -1
  33. package/dist/models/storybooks/payloads/render-storybook-scene-images.payload.d.ts +5 -0
  34. package/dist/models/storybooks/payloads/render-storybook-scene-images.payload.d.ts.map +1 -0
  35. package/dist/models/storybooks/payloads/render-storybook-scene-images.payload.js +25 -0
  36. package/dist/models/storybooks/payloads/render-storybook-scene-images.payload.js.map +1 -0
  37. package/dist/tsconfig.tsbuildinfo +1 -1
  38. package/package.json +1 -1
@@ -1,7 +1,8 @@
1
1
  import { ProductTypeEnum } from '@puzzlin/enums';
2
2
  import { CreateCreditLedgerEntryInput } from './create-credit-ledger-entry.input';
3
- export declare class UserResourceInput implements Pick<CreateCreditLedgerEntryInput, 'productType' | 'resourceId' | 'userId'> {
3
+ export declare class UserResourceInput implements Pick<CreateCreditLedgerEntryInput, 'productType' | 'quantity' | 'resourceId' | 'userId'> {
4
4
  productType: ProductTypeEnum;
5
+ quantity: number;
5
6
  resourceId: string;
6
7
  userId: string;
7
8
  }
@@ -1 +1 @@
1
- {"version":3,"file":"user-resource.input.d.ts","sourceRoot":"","sources":["../../../../src/models/credits/inputs/user-resource.input.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AAElF,qBACa,iBAAkB,YAAW,IAAI,CAAC,4BAA4B,EAAE,aAAa,GAAG,YAAY,GAAG,QAAQ,CAAC;IAEnH,WAAW,EAAE,eAAe,CAAC;IAG7B,UAAU,EAAE,MAAM,CAAC;IAGnB,MAAM,EAAE,MAAM,CAAC;CAChB"}
1
+ {"version":3,"file":"user-resource.input.d.ts","sourceRoot":"","sources":["../../../../src/models/credits/inputs/user-resource.input.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AAGlF,qBACa,iBACX,YAAW,IAAI,CAAC,4BAA4B,EAAE,aAAa,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,CAAC;IAGnG,WAAW,EAAE,eAAe,CAAC;IAG7B,QAAQ,EAAE,MAAM,CAAC;IAGjB,UAAU,EAAE,MAAM,CAAC;IAGnB,MAAM,EAAE,MAAM,CAAC;CAChB"}
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.UserResourceInput = void 0;
13
13
  const graphql_1 = require("@nestjs/graphql");
14
14
  const enums_1 = require("@puzzlin/enums");
15
+ const graphql_scalars_1 = require("graphql-scalars");
15
16
  let UserResourceInput = class UserResourceInput {
16
17
  };
17
18
  exports.UserResourceInput = UserResourceInput;
@@ -19,6 +20,10 @@ __decorate([
19
20
  (0, graphql_1.Field)(() => enums_1.ProductTypeEnum),
20
21
  __metadata("design:type", String)
21
22
  ], UserResourceInput.prototype, "productType", void 0);
23
+ __decorate([
24
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver),
25
+ __metadata("design:type", Number)
26
+ ], UserResourceInput.prototype, "quantity", void 0);
22
27
  __decorate([
23
28
  (0, graphql_1.Field)(() => graphql_1.ID),
24
29
  __metadata("design:type", String)
@@ -1 +1 @@
1
- {"version":3,"file":"user-resource.input.js","sourceRoot":"","sources":["../../../../src/models/credits/inputs/user-resource.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAiE;AACjE,0CAAiD;AAI1C,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAS7B,CAAA;AATY,8CAAiB;AAE5B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uBAAe,CAAC;;sDACA;AAG7B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,CAAC;;qDACG;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,CAAC;;iDACD;4BARJ,iBAAiB;IAD7B,IAAA,mBAAS,GAAE;GACC,iBAAiB,CAS7B"}
1
+ {"version":3,"file":"user-resource.input.js","sourceRoot":"","sources":["../../../../src/models/credits/inputs/user-resource.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAiE;AACjE,0CAAiD;AAEjD,qDAAsD;AAG/C,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAc7B,CAAA;AAdY,8CAAiB;AAI5B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uBAAe,CAAC;;sDACA;AAG7B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,CAAC;;mDAChB;AAGjB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,CAAC;;qDACG;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,CAAC;;iDACD;4BAbJ,iBAAiB;IAD7B,IAAA,mBAAS,GAAE;GACC,iBAAiB,CAc7B"}
@@ -1,3 +1,4 @@
1
1
  export * from './credit-ledger-entry.object';
2
2
  export * from './product-credit-balance.object';
3
+ export * from './resource-credit-info.object';
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/models/credits/objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/models/credits/objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC"}
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./credit-ledger-entry.object"), exports);
18
18
  __exportStar(require("./product-credit-balance.object"), exports);
19
+ __exportStar(require("./resource-credit-info.object"), exports);
19
20
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/models/credits/objects/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C;AAC7C,kEAAgD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/models/credits/objects/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C;AAC7C,kEAAgD;AAChD,gEAA8C"}
@@ -0,0 +1,4 @@
1
+ export declare class ResourceCreditInfo {
2
+ required: number;
3
+ }
4
+ //# sourceMappingURL=resource-credit-info.object.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resource-credit-info.object.d.ts","sourceRoot":"","sources":["../../../../src/models/credits/objects/resource-credit-info.object.ts"],"names":[],"mappings":"AAGA,qBACa,kBAAkB;IAI7B,QAAQ,EAAE,MAAM,CAAC;CAClB"}
@@ -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.ResourceCreditInfo = void 0;
13
+ const graphql_1 = require("@nestjs/graphql");
14
+ const graphql_scalars_1 = require("graphql-scalars");
15
+ let ResourceCreditInfo = class ResourceCreditInfo {
16
+ };
17
+ exports.ResourceCreditInfo = ResourceCreditInfo;
18
+ __decorate([
19
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
20
+ description: 'Number of credits required to unlock a resource.',
21
+ }),
22
+ __metadata("design:type", Number)
23
+ ], ResourceCreditInfo.prototype, "required", void 0);
24
+ exports.ResourceCreditInfo = ResourceCreditInfo = __decorate([
25
+ (0, graphql_1.ObjectType)()
26
+ ], ResourceCreditInfo);
27
+ //# sourceMappingURL=resource-credit-info.object.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resource-credit-info.object.js","sourceRoot":"","sources":["../../../../src/models/credits/objects/resource-credit-info.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAoD;AACpD,qDAAsD;AAG/C,IAAM,kBAAkB,GAAxB,MAAM,kBAAkB;CAK9B,CAAA;AALY,gDAAkB;AAI7B;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,kDAAkD;KAChE,CAAC;;oDACe;6BAJN,kBAAkB;IAD9B,IAAA,oBAAU,GAAE;GACA,kBAAkB,CAK9B"}
@@ -1,4 +1,5 @@
1
1
  export * from './order-line-item.object';
2
2
  export * from './order.object';
3
+ export * from './transaction-amounts.object';
3
4
  export * from './transaction.object';
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/models/orders/objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/models/orders/objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,8BAA8B,CAAC;AAC7C,cAAc,sBAAsB,CAAC"}
@@ -16,5 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./order-line-item.object"), exports);
18
18
  __exportStar(require("./order.object"), exports);
19
+ __exportStar(require("./transaction-amounts.object"), exports);
19
20
  __exportStar(require("./transaction.object"), exports);
20
21
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/models/orders/objects/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AACzC,iDAA+B;AAC/B,uDAAqC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/models/orders/objects/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AACzC,iDAA+B;AAC/B,+DAA6C;AAC7C,uDAAqC"}
@@ -0,0 +1,11 @@
1
+ export declare class TransactionAmounts {
2
+ discount?: number;
3
+ platformFee?: number;
4
+ providerFee?: number;
5
+ refund?: number;
6
+ shipping?: number;
7
+ subtotal: number;
8
+ tax?: number;
9
+ total?: number;
10
+ }
11
+ //# sourceMappingURL=transaction-amounts.object.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transaction-amounts.object.d.ts","sourceRoot":"","sources":["../../../../src/models/orders/objects/transaction-amounts.object.ts"],"names":[],"mappings":"AAGA,qBACa,kBAAkB;IAK7B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAMlB,WAAW,CAAC,EAAE,MAAM,CAAC;IAMrB,WAAW,CAAC,EAAE,MAAM,CAAC;IAMrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAKhB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAKlB,QAAQ,EAAE,MAAM,CAAC;IAKjB,GAAG,CAAC,EAAE,MAAM,CAAC;IAMb,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB"}
@@ -0,0 +1,74 @@
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.TransactionAmounts = void 0;
13
+ const graphql_1 = require("@nestjs/graphql");
14
+ const graphql_scalars_1 = require("graphql-scalars");
15
+ let TransactionAmounts = class TransactionAmounts {
16
+ };
17
+ exports.TransactionAmounts = TransactionAmounts;
18
+ __decorate([
19
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
20
+ description: 'Total discount applied to subtotal.',
21
+ nullable: true,
22
+ }),
23
+ __metadata("design:type", Number)
24
+ ], TransactionAmounts.prototype, "discount", void 0);
25
+ __decorate([
26
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
27
+ description: 'The total platform fee including payment fee and product fee.',
28
+ nullable: true,
29
+ }),
30
+ __metadata("design:type", Number)
31
+ ], TransactionAmounts.prototype, "platformFee", void 0);
32
+ __decorate([
33
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
34
+ description: 'Total payment provider fee amount for a transaction. Known only after payment succeeds.',
35
+ nullable: true,
36
+ }),
37
+ __metadata("design:type", Number)
38
+ ], TransactionAmounts.prototype, "providerFee", void 0);
39
+ __decorate([
40
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
41
+ description: 'The total amount refunded.',
42
+ nullable: true,
43
+ }),
44
+ __metadata("design:type", Number)
45
+ ], TransactionAmounts.prototype, "refund", void 0);
46
+ __decorate([
47
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
48
+ nullable: true,
49
+ }),
50
+ __metadata("design:type", Number)
51
+ ], TransactionAmounts.prototype, "shipping", void 0);
52
+ __decorate([
53
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
54
+ description: 'The total of all items or services before taxes or discounts.',
55
+ }),
56
+ __metadata("design:type", Number)
57
+ ], TransactionAmounts.prototype, "subtotal", void 0);
58
+ __decorate([
59
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
60
+ nullable: true,
61
+ }),
62
+ __metadata("design:type", Number)
63
+ ], TransactionAmounts.prototype, "tax", void 0);
64
+ __decorate([
65
+ (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
66
+ description: 'The final amount to be paid. Total = subtotal - discount + tax + shipping.',
67
+ nullable: true,
68
+ }),
69
+ __metadata("design:type", Number)
70
+ ], TransactionAmounts.prototype, "total", void 0);
71
+ exports.TransactionAmounts = TransactionAmounts = __decorate([
72
+ (0, graphql_1.ObjectType)()
73
+ ], TransactionAmounts);
74
+ //# sourceMappingURL=transaction-amounts.object.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transaction-amounts.object.js","sourceRoot":"","sources":["../../../../src/models/orders/objects/transaction-amounts.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAoD;AACpD,qDAAsD;AAG/C,IAAM,kBAAkB,GAAxB,MAAM,kBAAkB;CA6C9B,CAAA;AA7CY,gDAAkB;AAK7B;IAJC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,qCAAqC;QAClD,QAAQ,EAAE,IAAI;KACf,CAAC;;oDACgB;AAMlB;IAJC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,+DAA+D;QAC5E,QAAQ,EAAE,IAAI;KACf,CAAC;;uDACmB;AAMrB;IAJC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,yFAAyF;QACtG,QAAQ,EAAE,IAAI;KACf,CAAC;;uDACmB;AAMrB;IAJC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,4BAA4B;QACzC,QAAQ,EAAE,IAAI;KACf,CAAC;;kDACc;AAKhB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,QAAQ,EAAE,IAAI;KACf,CAAC;;oDACgB;AAKlB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,+DAA+D;KAC7E,CAAC;;oDACe;AAKjB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,QAAQ,EAAE,IAAI;KACf,CAAC;;+CACW;AAMb;IAJC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,4EAA4E;QACzF,QAAQ,EAAE,IAAI;KACf,CAAC;;iDACa;6BA5CJ,kBAAkB;IAD9B,IAAA,oBAAU,GAAE;GACA,kBAAkB,CA6C9B"}
@@ -1,17 +1,15 @@
1
1
  import { Node, Timestamp } from '../../../utils';
2
2
  import { AppCurrencyEnum, PaymentProviderEnum } from '@puzzlin/enums';
3
3
  import { Order } from './order.object';
4
+ import { TransactionAmounts } from './transaction-amounts.object';
4
5
  declare const Transaction_base: import("@nestjs/common").Type<Node & Timestamp>;
5
6
  export declare class Transaction extends Transaction_base {
6
- amount: number;
7
+ amounts: TransactionAmounts;
7
8
  currency: AppCurrencyEnum;
8
- discountAmount?: number;
9
9
  onBehalfOfSellerId?: string;
10
10
  order?: Order;
11
11
  orderId: string;
12
- platformFeeAmount: number;
13
12
  provider: PaymentProviderEnum;
14
- providerFeeAmount?: number;
15
13
  stripeCheckoutSessionId?: string;
16
14
  }
17
15
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"transaction.object.d.ts","sourceRoot":"","sources":["../../../../src/models/orders/objects/transaction.object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAE1C,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;AAEtE,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;;AAEvC,qBAGa,WAAY,SAAQ,gBAAiC;IAIhE,MAAM,EAAE,MAAM,CAAC;IAGf,QAAQ,EAAE,eAAe,CAAC;IAM1B,cAAc,CAAC,EAAE,MAAM,CAAC;IAKxB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAG5B,KAAK,CAAC,EAAE,KAAK,CAAC;IAGd,OAAO,EAAE,MAAM,CAAC;IAKhB,iBAAiB,EAAE,MAAM,CAAC;IAG1B,QAAQ,EAAE,mBAAmB,CAAC;IAM9B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAM3B,uBAAuB,CAAC,EAAE,MAAM,CAAC;CAClC"}
1
+ {"version":3,"file":"transaction.object.d.ts","sourceRoot":"","sources":["../../../../src/models/orders/objects/transaction.object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAE1C,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;AAEtE,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACvC,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;;AAElE,qBAGa,WAAY,SAAQ,gBAAiC;IAIhE,OAAO,EAAE,kBAAkB,CAAC;IAG5B,QAAQ,EAAE,eAAe,CAAC;IAK1B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAG5B,KAAK,CAAC,EAAE,KAAK,CAAC;IAGd,OAAO,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,mBAAmB,CAAC;IAM9B,uBAAuB,CAAC,EAAE,MAAM,CAAC;CAClC"}
@@ -13,28 +13,21 @@ exports.Transaction = void 0;
13
13
  const utils_1 = require("../../../utils");
14
14
  const graphql_1 = require("@nestjs/graphql");
15
15
  const enums_1 = require("@puzzlin/enums");
16
- const graphql_scalars_1 = require("graphql-scalars");
17
16
  const order_object_1 = require("./order.object");
17
+ const transaction_amounts_object_1 = require("./transaction-amounts.object");
18
18
  let Transaction = class Transaction extends (0, graphql_1.IntersectionType)(utils_1.Node, utils_1.Timestamp) {
19
19
  };
20
20
  exports.Transaction = Transaction;
21
21
  __decorate([
22
- (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
23
- description: 'Total amount for a transaction.',
22
+ (0, graphql_1.Field)(() => transaction_amounts_object_1.TransactionAmounts, {
23
+ description: 'Amounts of a transaction.',
24
24
  }),
25
- __metadata("design:type", Number)
26
- ], Transaction.prototype, "amount", void 0);
25
+ __metadata("design:type", transaction_amounts_object_1.TransactionAmounts)
26
+ ], Transaction.prototype, "amounts", void 0);
27
27
  __decorate([
28
28
  (0, graphql_1.Field)(() => enums_1.AppCurrencyEnum),
29
29
  __metadata("design:type", String)
30
30
  ], Transaction.prototype, "currency", void 0);
31
- __decorate([
32
- (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
33
- description: 'Total discount amount for a transaction.',
34
- nullable: true,
35
- }),
36
- __metadata("design:type", Number)
37
- ], Transaction.prototype, "discountAmount", void 0);
38
31
  __decorate([
39
32
  (0, graphql_1.Field)(() => graphql_1.ID, {
40
33
  nullable: true,
@@ -49,23 +42,10 @@ __decorate([
49
42
  (0, graphql_1.Field)(() => graphql_1.ID),
50
43
  __metadata("design:type", String)
51
44
  ], Transaction.prototype, "orderId", void 0);
52
- __decorate([
53
- (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
54
- description: 'Total platform fee amount for a transaction.',
55
- }),
56
- __metadata("design:type", Number)
57
- ], Transaction.prototype, "platformFeeAmount", void 0);
58
45
  __decorate([
59
46
  (0, graphql_1.Field)(() => enums_1.PaymentProviderEnum),
60
47
  __metadata("design:type", String)
61
48
  ], Transaction.prototype, "provider", void 0);
62
- __decorate([
63
- (0, graphql_1.Field)(() => graphql_scalars_1.PositiveIntResolver, {
64
- description: 'Total payment provider fee amount for a transaction. Known only after payment succeeds.',
65
- nullable: true,
66
- }),
67
- __metadata("design:type", Number)
68
- ], Transaction.prototype, "providerFeeAmount", void 0);
69
49
  __decorate([
70
50
  (0, graphql_1.Field)(() => String, {
71
51
  description: 'Stripe checkout session ID.',
@@ -1 +1 @@
1
- {"version":3,"file":"transaction.object.js","sourceRoot":"","sources":["../../../../src/models/orders/objects/transaction.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,mCAA0C;AAC1C,6CAA0E;AAC1E,0CAAsE;AACtE,qDAAsD;AACtD,iDAAuC;AAKhC,IAAM,WAAW,GAAjB,MAAM,WAAY,SAAQ,IAAA,0BAAgB,EAAC,YAAI,EAAE,iBAAS,CAAC;CA6CjE,CAAA;AA7CY,kCAAW;AAItB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,iCAAiC;KAC/C,CAAC;;2CACa;AAGf;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uBAAe,CAAC;;6CACH;AAM1B;IAJC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,0CAA0C;QACvD,QAAQ,EAAE,IAAI;KACf,CAAC;;mDACsB;AAKxB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,EAAE;QACf,QAAQ,EAAE,IAAI;KACf,CAAC;;uDAC0B;AAG5B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oBAAK,CAAC;8BACX,oBAAK;0CAAC;AAGd;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,CAAC;;4CACA;AAKhB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,8CAA8C;KAC5D,CAAC;;sDACwB;AAG1B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,2BAAmB,CAAC;;6CACH;AAM9B;IAJC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,qCAAmB,EAAE;QAChC,WAAW,EAAE,yFAAyF;QACtG,QAAQ,EAAE,IAAI;KACf,CAAC;;sDACyB;AAM3B;IAJC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE;QACnB,WAAW,EAAE,6BAA6B;QAC1C,QAAQ,EAAE,IAAI;KACf,CAAC;;4DAC+B;sBA5CtB,WAAW;IAHvB,IAAA,oBAAU,EAAC;QACV,UAAU,EAAE,YAAI;KACjB,CAAC;GACW,WAAW,CA6CvB"}
1
+ {"version":3,"file":"transaction.object.js","sourceRoot":"","sources":["../../../../src/models/orders/objects/transaction.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,mCAA0C;AAC1C,6CAA0E;AAC1E,0CAAsE;AAEtE,iDAAuC;AACvC,6EAAkE;AAK3D,IAAM,WAAW,GAAjB,MAAM,WAAY,SAAQ,IAAA,0BAAgB,EAAC,YAAI,EAAE,iBAAS,CAAC;CA4BjE,CAAA;AA5BY,kCAAW;AAItB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,+CAAkB,EAAE;QAC/B,WAAW,EAAE,2BAA2B;KACzC,CAAC;8BACO,+CAAkB;4CAAC;AAG5B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uBAAe,CAAC;;6CACH;AAK1B;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,EAAE;QACf,QAAQ,EAAE,IAAI;KACf,CAAC;;uDAC0B;AAG5B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oBAAK,CAAC;8BACX,oBAAK;0CAAC;AAGd;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,CAAC;;4CACA;AAGhB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,2BAAmB,CAAC;;6CACH;AAM9B;IAJC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE;QACnB,WAAW,EAAE,6BAA6B;QAC1C,QAAQ,EAAE,IAAI;KACf,CAAC;;4DAC+B;sBA3BtB,WAAW;IAHvB,IAAA,oBAAU,EAAC;QACV,UAAU,EAAE,YAAI;KACjB,CAAC;GACW,WAAW,CA4BvB"}
@@ -1,10 +1,13 @@
1
+ import { ResourceCreditInfo } from '../../../models/credits';
1
2
  import { Experience } from '../../../models/experiences';
2
3
  import { StorybookCharacter } from './storybook-character.object';
3
4
  import { StorybookInput } from './storybook-input.object';
4
5
  import { StorybookRendering } from './storybook-rendering.object';
5
6
  import { StorybookScene } from './storybook-scene.object';
6
7
  export declare class Storybook extends Experience {
8
+ creditInfo: ResourceCreditInfo;
7
9
  input: StorybookInput;
10
+ isUnlocked: boolean;
8
11
  rendering: StorybookRendering;
9
12
  characters: StorybookCharacter[];
10
13
  scenes: StorybookScene[];
@@ -1 +1 @@
1
- {"version":3,"file":"storybook.object.d.ts","sourceRoot":"","sources":["../../../../src/models/storybooks/objects/storybook.object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAGlD,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D,qBAGa,SAAU,SAAQ,UAAU;IAGvC,KAAK,EAAE,cAAc,CAAC;IAItB,SAAS,EAAE,kBAAkB,CAAC;IAI9B,UAAU,EAAE,kBAAkB,EAAE,CAAC;IAIjC,MAAM,EAAE,cAAc,EAAE,CAAC;CAC1B"}
1
+ {"version":3,"file":"storybook.object.d.ts","sourceRoot":"","sources":["../../../../src/models/storybooks/objects/storybook.object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAGlD,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D,qBAGa,SAAU,SAAQ,UAAU;IAGvC,UAAU,EAAE,kBAAkB,CAAC;IAI/B,KAAK,EAAE,cAAc,CAAC;IAGtB,UAAU,EAAE,OAAO,CAAC;IAIpB,SAAS,EAAE,kBAAkB,CAAC;IAI9B,UAAU,EAAE,kBAAkB,EAAE,CAAC;IAIjC,MAAM,EAAE,cAAc,EAAE,CAAC;CAC1B"}
@@ -10,6 +10,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.Storybook = void 0;
13
+ const credits_1 = require("../../../models/credits");
13
14
  const experiences_1 = require("../../../models/experiences");
14
15
  const graphql_1 = require("@nestjs/graphql");
15
16
  const class_transformer_1 = require("class-transformer");
@@ -20,11 +21,20 @@ const storybook_scene_object_1 = require("./storybook-scene.object");
20
21
  let Storybook = class Storybook extends experiences_1.Experience {
21
22
  };
22
23
  exports.Storybook = Storybook;
24
+ __decorate([
25
+ (0, graphql_1.Field)(() => credits_1.ResourceCreditInfo),
26
+ (0, class_transformer_1.Type)(() => credits_1.ResourceCreditInfo),
27
+ __metadata("design:type", credits_1.ResourceCreditInfo)
28
+ ], Storybook.prototype, "creditInfo", void 0);
23
29
  __decorate([
24
30
  (0, graphql_1.Field)(() => storybook_input_object_1.StorybookInput),
25
31
  (0, class_transformer_1.Type)(() => storybook_input_object_1.StorybookInput),
26
32
  __metadata("design:type", storybook_input_object_1.StorybookInput)
27
33
  ], Storybook.prototype, "input", void 0);
34
+ __decorate([
35
+ (0, graphql_1.Field)(() => Boolean),
36
+ __metadata("design:type", Boolean)
37
+ ], Storybook.prototype, "isUnlocked", void 0);
28
38
  __decorate([
29
39
  (0, graphql_1.Field)(() => storybook_rendering_object_1.StorybookRendering),
30
40
  (0, class_transformer_1.Type)(() => storybook_rendering_object_1.StorybookRendering),
@@ -1 +1 @@
1
- {"version":3,"file":"storybook.object.js","sourceRoot":"","sources":["../../../../src/models/storybooks/objects/storybook.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,sDAAkD;AAClD,6CAAoD;AACpD,yDAAyC;AACzC,6EAAkE;AAClE,qEAA0D;AAC1D,6EAAkE;AAClE,qEAA0D;AAKnD,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,wBAAU;CAgBxC,CAAA;AAhBY,8BAAS;AAGpB;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uCAAc,CAAC;IAC3B,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,uCAAc,CAAC;8BACpB,uCAAc;wCAAC;AAItB;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,+CAAkB,CAAC;IAC/B,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+CAAkB,CAAC;8BACpB,+CAAkB;4CAAC;AAI9B;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,+CAAkB,CAAC,CAAC;IACjC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+CAAkB,CAAC;;6CACE;AAIjC;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,uCAAc,CAAC,CAAC;IAC7B,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,uCAAc,CAAC;;yCACF;oBAfd,SAAS;IAHrB,IAAA,oBAAU,EAAC;QACV,UAAU,EAAE,wBAAU;KACvB,CAAC;GACW,SAAS,CAgBrB"}
1
+ {"version":3,"file":"storybook.object.js","sourceRoot":"","sources":["../../../../src/models/storybooks/objects/storybook.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,8CAAsD;AACtD,sDAAkD;AAClD,6CAAoD;AACpD,yDAAyC;AACzC,6EAAkE;AAClE,qEAA0D;AAC1D,6EAAkE;AAClE,qEAA0D;AAKnD,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,wBAAU;CAuBxC,CAAA;AAvBY,8BAAS;AAGpB;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,4BAAkB,CAAC;IAC/B,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,4BAAkB,CAAC;8BACnB,4BAAkB;6CAAC;AAI/B;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,uCAAc,CAAC;IAC3B,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,uCAAc,CAAC;8BACpB,uCAAc;wCAAC;AAGtB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,CAAC;;6CACD;AAIpB;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,+CAAkB,CAAC;IAC/B,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+CAAkB,CAAC;8BACpB,+CAAkB;4CAAC;AAI9B;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,+CAAkB,CAAC,CAAC;IACjC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+CAAkB,CAAC;;6CACE;AAIjC;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,uCAAc,CAAC,CAAC;IAC7B,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,uCAAc,CAAC;;yCACF;oBAtBd,SAAS;IAHrB,IAAA,oBAAU,EAAC;QACV,UAAU,EAAE,wBAAU;KACvB,CAAC;GACW,SAAS,CAuBrB"}
@@ -1,4 +1,5 @@
1
1
  export * from './create-storybook.payload';
2
2
  export * from './delete-storybook.payload';
3
+ export * from './render-storybook-scene-images.payload';
3
4
  export * from './update-storybook-scene.payload';
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/models/storybooks/payloads/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kCAAkC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/models/storybooks/payloads/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yCAAyC,CAAC;AACxD,cAAc,kCAAkC,CAAC"}
@@ -16,5 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./create-storybook.payload"), exports);
18
18
  __exportStar(require("./delete-storybook.payload"), exports);
19
+ __exportStar(require("./render-storybook-scene-images.payload"), exports);
19
20
  __exportStar(require("./update-storybook-scene.payload"), exports);
20
21
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/models/storybooks/payloads/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C;AAC3C,6DAA2C;AAC3C,mEAAiD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/models/storybooks/payloads/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C;AAC3C,6DAA2C;AAC3C,0EAAwD;AACxD,mEAAiD"}
@@ -0,0 +1,5 @@
1
+ import { Storybook } from '../objects';
2
+ export declare class RenderStorybookSceneImagesPayload {
3
+ storybook: Storybook;
4
+ }
5
+ //# sourceMappingURL=render-storybook-scene-images.payload.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"render-storybook-scene-images.payload.d.ts","sourceRoot":"","sources":["../../../../src/models/storybooks/payloads/render-storybook-scene-images.payload.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEvC,qBACa,iCAAiC;IAE5C,SAAS,EAAE,SAAS,CAAC;CACtB"}
@@ -0,0 +1,25 @@
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.RenderStorybookSceneImagesPayload = void 0;
13
+ const graphql_1 = require("@nestjs/graphql");
14
+ const objects_1 = require("../objects");
15
+ let RenderStorybookSceneImagesPayload = class RenderStorybookSceneImagesPayload {
16
+ };
17
+ exports.RenderStorybookSceneImagesPayload = RenderStorybookSceneImagesPayload;
18
+ __decorate([
19
+ (0, graphql_1.Field)(() => objects_1.Storybook),
20
+ __metadata("design:type", objects_1.Storybook)
21
+ ], RenderStorybookSceneImagesPayload.prototype, "storybook", void 0);
22
+ exports.RenderStorybookSceneImagesPayload = RenderStorybookSceneImagesPayload = __decorate([
23
+ (0, graphql_1.ObjectType)()
24
+ ], RenderStorybookSceneImagesPayload);
25
+ //# sourceMappingURL=render-storybook-scene-images.payload.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"render-storybook-scene-images.payload.js","sourceRoot":"","sources":["../../../../src/models/storybooks/payloads/render-storybook-scene-images.payload.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAoD;AACpD,wCAAuC;AAGhC,IAAM,iCAAiC,GAAvC,MAAM,iCAAiC;CAG7C,CAAA;AAHY,8EAAiC;AAE5C;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,mBAAS,CAAC;8BACZ,mBAAS;oEAAC;4CAFV,iCAAiC;IAD7C,IAAA,oBAAU,GAAE;GACA,iCAAiC,CAG7C"}