@heliofi/common 0.1.82 → 0.1.83

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 (48) hide show
  1. package/dist/src/domain/model/fixed-currency/dtos/fixedCurrency.dto.d.ts +4 -0
  2. package/dist/src/domain/model/fixed-currency/dtos/fixedCurrency.dto.js +27 -0
  3. package/dist/src/domain/model/fixed-currency/dtos/fixedCurrency.dto.js.map +1 -0
  4. package/dist/src/domain/model/fixed-currency/dtos/index.d.ts +1 -0
  5. package/dist/src/domain/model/fixed-currency/dtos/index.js +18 -0
  6. package/dist/src/domain/model/fixed-currency/dtos/index.js.map +1 -0
  7. package/dist/src/domain/model/fixed-currency/entities/FixedCurrency.d.ts +6 -0
  8. package/dist/src/domain/model/fixed-currency/entities/FixedCurrency.js +8 -0
  9. package/dist/src/domain/model/fixed-currency/entities/FixedCurrency.js.map +1 -0
  10. package/dist/src/domain/model/fixed-currency/entities/index.d.ts +1 -0
  11. package/dist/src/domain/model/fixed-currency/entities/index.js +18 -0
  12. package/dist/src/domain/model/fixed-currency/entities/index.js.map +1 -0
  13. package/dist/src/domain/model/fixed-currency/index.d.ts +2 -0
  14. package/dist/src/domain/model/fixed-currency/index.js +19 -0
  15. package/dist/src/domain/model/fixed-currency/index.js.map +1 -0
  16. package/dist/src/domain/model/fixedCurrency/dtos/fixedCurrency.dto.d.ts +4 -0
  17. package/dist/src/domain/model/fixedCurrency/dtos/fixedCurrency.dto.js +29 -0
  18. package/dist/src/domain/model/fixedCurrency/dtos/fixedCurrency.dto.js.map +1 -0
  19. package/dist/src/domain/model/fixedCurrency/dtos/index.d.ts +1 -0
  20. package/dist/src/domain/model/fixedCurrency/dtos/index.js +18 -0
  21. package/dist/src/domain/model/fixedCurrency/dtos/index.js.map +1 -0
  22. package/dist/src/domain/model/fixedCurrency/entities/FixedCurrency.d.ts +6 -0
  23. package/dist/src/domain/model/fixedCurrency/entities/FixedCurrency.js +8 -0
  24. package/dist/src/domain/model/fixedCurrency/entities/FixedCurrency.js.map +1 -0
  25. package/dist/src/domain/model/fixedCurrency/entities/index.d.ts +1 -0
  26. package/dist/src/domain/model/fixedCurrency/entities/index.js +18 -0
  27. package/dist/src/domain/model/fixedCurrency/entities/index.js.map +1 -0
  28. package/dist/src/domain/model/fixedCurrency/index.d.ts +2 -0
  29. package/dist/src/domain/model/fixedCurrency/index.js +19 -0
  30. package/dist/src/domain/model/fixedCurrency/index.js.map +1 -0
  31. package/dist/src/domain/model/index.d.ts +1 -0
  32. package/dist/src/domain/model/index.js +1 -0
  33. package/dist/src/domain/model/index.js.map +1 -1
  34. package/dist/src/domain/model/paylink/dtos/createPaylink.dto.d.ts +2 -0
  35. package/dist/src/domain/model/paylink/dtos/createPaylink.dto.js +7 -0
  36. package/dist/src/domain/model/paylink/dtos/createPaylink.dto.js.map +1 -1
  37. package/dist/src/domain/model/paylink/dtos/updatePaylink.dto.d.ts +2 -0
  38. package/dist/src/domain/model/paylink/dtos/updatePaylink.dto.js +6 -0
  39. package/dist/src/domain/model/paylink/dtos/updatePaylink.dto.js.map +1 -1
  40. package/dist/src/domain/model/payment-request/entities/PaymentRequest.d.ts +2 -0
  41. package/dist/src/domain/model/payment-request/entities/PaymentRequest.js.map +1 -1
  42. package/dist/src/domain/model/payment-request/entities/ShallowEnrichedPaymentRequest.d.ts +2 -0
  43. package/dist/src/domain/model/payment-request/entities/ShallowEnrichedPaymentRequest.js.map +1 -1
  44. package/dist/src/domain/model/submit-transaction/dtos/submitTransaction.dto.d.ts +2 -0
  45. package/dist/src/domain/model/submit-transaction/dtos/submitTransaction.dto.js +6 -0
  46. package/dist/src/domain/model/submit-transaction/dtos/submitTransaction.dto.js.map +1 -1
  47. package/dist/tsconfig.tsbuildinfo +1 -1
  48. package/package.json +2 -2
@@ -0,0 +1,4 @@
1
+ export declare class FixedCurrencyDto {
2
+ currency?: string;
3
+ price?: number;
4
+ }
@@ -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.FixedCurrencyDto = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ class FixedCurrencyDto {
15
+ }
16
+ __decorate([
17
+ (0, class_validator_1.IsString)(),
18
+ (0, class_validator_1.IsOptional)(),
19
+ __metadata("design:type", String)
20
+ ], FixedCurrencyDto.prototype, "currency", void 0);
21
+ __decorate([
22
+ (0, class_validator_1.IsNumber)(),
23
+ (0, class_validator_1.IsOptional)(),
24
+ __metadata("design:type", Number)
25
+ ], FixedCurrencyDto.prototype, "price", void 0);
26
+ exports.FixedCurrencyDto = FixedCurrencyDto;
27
+ //# sourceMappingURL=fixedCurrency.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fixedCurrency.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/fixed-currency/dtos/fixedCurrency.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAiE;AAEjE,MAAa,gBAAgB;CAQ5B;AAPC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACK;AAElB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+CACE;AAPjB,4CAQC"}
@@ -0,0 +1 @@
1
+ export * from './fixedCurrency.dto';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./fixedCurrency.dto"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/fixed-currency/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC"}
@@ -0,0 +1,6 @@
1
+ import { Currency } from '../../currency';
2
+ import { Entity } from '../../entity';
3
+ export declare class FixedCurrency extends Entity {
4
+ currency: Currency;
5
+ price: number;
6
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FixedCurrency = void 0;
4
+ const entity_1 = require("../../entity");
5
+ class FixedCurrency extends entity_1.Entity {
6
+ }
7
+ exports.FixedCurrency = FixedCurrency;
8
+ //# sourceMappingURL=FixedCurrency.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FixedCurrency.js","sourceRoot":"","sources":["../../../../../../src/domain/model/fixed-currency/entities/FixedCurrency.ts"],"names":[],"mappings":";;;AACA,yCAAsC;AAEtC,MAAa,aAAc,SAAQ,eAAM;CAIxC;AAJD,sCAIC"}
@@ -0,0 +1 @@
1
+ export * from './FixedCurrency';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./FixedCurrency"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/fixed-currency/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC"}
@@ -0,0 +1,2 @@
1
+ export * from './dtos';
2
+ export * from './entities';
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./dtos"), exports);
18
+ __exportStar(require("./entities"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/fixed-currency/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,6CAA2B"}
@@ -0,0 +1,4 @@
1
+ export declare class LinkFeaturesDto {
2
+ currency?: boolean;
3
+ price?: number;
4
+ }
@@ -0,0 +1,29 @@
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.LinkFeaturesDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const class_validator_1 = require("class-validator");
15
+ const currency_1 = require("../../currency");
16
+ class LinkFeaturesDto {
17
+ }
18
+ __decorate([
19
+ (0, class_transformer_1.Type)(() => currency_1.Currency),
20
+ (0, class_validator_1.IsOptional)(),
21
+ __metadata("design:type", Boolean)
22
+ ], LinkFeaturesDto.prototype, "currency", void 0);
23
+ __decorate([
24
+ (0, class_validator_1.IsNumber)(),
25
+ (0, class_validator_1.IsOptional)(),
26
+ __metadata("design:type", Number)
27
+ ], LinkFeaturesDto.prototype, "price", void 0);
28
+ exports.LinkFeaturesDto = LinkFeaturesDto;
29
+ //# sourceMappingURL=fixedCurrency.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fixedCurrency.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/fixedCurrency/dtos/fixedCurrency.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAyC;AACzC,qDAAuD;AACvD,6CAA0C;AAE1C,MAAa,eAAe;CAQ3B;AAPC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mBAAQ,CAAC;IACpB,IAAA,4BAAU,GAAE;;iDACM;AAEnB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8CACE;AAPjB,0CAQC"}
@@ -0,0 +1 @@
1
+ export * from './fixedCurrency.dto';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./fixedCurrency.dto"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/fixedCurrency/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC"}
@@ -0,0 +1,6 @@
1
+ import { Currency } from '../../currency';
2
+ import { Entity } from '../../entity';
3
+ export declare class FixedCurrency extends Entity {
4
+ currency: Currency;
5
+ price: number;
6
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FixedCurrency = void 0;
4
+ const entity_1 = require("../../entity");
5
+ class FixedCurrency extends entity_1.Entity {
6
+ }
7
+ exports.FixedCurrency = FixedCurrency;
8
+ //# sourceMappingURL=FixedCurrency.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FixedCurrency.js","sourceRoot":"","sources":["../../../../../../src/domain/model/fixedCurrency/entities/FixedCurrency.ts"],"names":[],"mappings":";;;AACA,yCAAsC;AAEtC,MAAa,aAAc,SAAQ,eAAM;CAIxC;AAJD,sCAIC"}
@@ -0,0 +1 @@
1
+ export * from './FixedCurrency';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./FixedCurrency"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/fixedCurrency/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC"}
@@ -0,0 +1,2 @@
1
+ export * from './dtos';
2
+ export * from './entities';
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./dtos"), exports);
18
+ __exportStar(require("./entities"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/fixedCurrency/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,6CAA2B"}
@@ -37,3 +37,4 @@ export * from './split-wallets';
37
37
  export * from './split-account';
38
38
  export * from './webhook';
39
39
  export * from './token-quoting';
40
+ export * from './fixed-currency';
@@ -53,4 +53,5 @@ __exportStar(require("./split-wallets"), exports);
53
53
  __exportStar(require("./split-account"), exports);
54
54
  __exportStar(require("./webhook"), exports);
55
55
  __exportStar(require("./token-quoting"), exports);
56
+ __exportStar(require("./fixed-currency"), exports);
56
57
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/model/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,yCAAuB;AACvB,yCAAuB;AACvB,2CAAyB;AACzB,2CAAyB;AACzB,qDAAmC;AACnC,qDAAmC;AACnC,mDAAiC;AACjC,6CAA2B;AAC3B,4CAA0B;AAC1B,2CAAyB;AACzB,+CAA6B;AAC7B,+CAA6B;AAC7B,4CAA0B;AAC1B,4CAA0B;AAC1B,kDAAgC;AAChC,oDAAkC;AAClC,6DAA2C;AAC3C,+CAA6B;AAC7B,0CAAwB;AACxB,yCAAuB;AACvB,wDAAsC;AACtC,4CAA0B;AAC1B,oDAAkC;AAClC,8CAA4B;AAC5B,iDAA+B;AAC/B,2CAAyB;AACzB,iDAA+B;AAC/B,oDAAkC;AAClC,+CAA6B;AAC7B,2CAAyB;AACzB,+CAA6B;AAC7B,uDAAqC;AACrC,mDAAiC;AACjC,4CAA0B;AAC1B,kDAAgC;AAChC,kDAAgC;AAChC,4CAA0B;AAC1B,kDAAgC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/model/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,yCAAuB;AACvB,yCAAuB;AACvB,2CAAyB;AACzB,2CAAyB;AACzB,qDAAmC;AACnC,qDAAmC;AACnC,mDAAiC;AACjC,6CAA2B;AAC3B,4CAA0B;AAC1B,2CAAyB;AACzB,+CAA6B;AAC7B,+CAA6B;AAC7B,4CAA0B;AAC1B,4CAA0B;AAC1B,kDAAgC;AAChC,oDAAkC;AAClC,6DAA2C;AAC3C,+CAA6B;AAC7B,0CAAwB;AACxB,yCAAuB;AACvB,wDAAsC;AACtC,4CAA0B;AAC1B,oDAAkC;AAClC,8CAA4B;AAC5B,iDAA+B;AAC/B,2CAAyB;AACzB,iDAA+B;AAC/B,oDAAkC;AAClC,+CAA6B;AAC7B,2CAAyB;AACzB,+CAA6B;AAC7B,uDAAqC;AACrC,mDAAiC;AACjC,4CAA0B;AAC1B,kDAAgC;AAChC,kDAAgC;AAChC,4CAA0B;AAC1B,kDAAgC;AAChC,mDAAiC"}
@@ -2,6 +2,7 @@ import { ContentDto } from '../../content';
2
2
  import { LinkFeaturesDto } from '../../link-features';
3
3
  import { ProductDto } from '../../product';
4
4
  import { SplitWalletDto } from '../../split-wallets';
5
+ import { FixedCurrencyDto } from '../../fixed-currency';
5
6
  export declare type CreatePaylinkDtoDeserialized = Omit<CreatePaylinkDto, 'normalizedPrice'> & {
6
7
  normalizedPrice: bigint;
7
8
  };
@@ -24,6 +25,7 @@ export declare class CreatePaylinkDto {
24
25
  product?: ProductDto | null;
25
26
  nftCollectionAddress?: string;
26
27
  splitWallets?: SplitWalletDto[];
28
+ fixedCurrency?: FixedCurrencyDto;
27
29
  minQuantity?: number;
28
30
  maxQuantity?: number;
29
31
  }
@@ -16,6 +16,7 @@ const content_1 = require("../../content");
16
16
  const link_features_1 = require("../../link-features");
17
17
  const product_1 = require("../../product");
18
18
  const split_wallets_1 = require("../../split-wallets");
19
+ const fixed_currency_1 = require("../../fixed-currency");
19
20
  class CreatePaylinkDto {
20
21
  constructor() {
21
22
  this.notifySenderByEmail = false;
@@ -117,6 +118,12 @@ __decorate([
117
118
  __metadata("design:type", Array)
118
119
  ], CreatePaylinkDto.prototype, "splitWallets", void 0);
119
120
  __decorate([
121
+ (0, class_transformer_1.Type)(() => fixed_currency_1.FixedCurrencyDto),
122
+ (0, class_validator_1.IsOptional)(),
123
+ __metadata("design:type", fixed_currency_1.FixedCurrencyDto)
124
+ ], CreatePaylinkDto.prototype, "fixedCurrency", void 0);
125
+ __decorate([
126
+ (0, class_validator_1.IsOptional)(),
120
127
  (0, class_validator_1.IsNumber)(),
121
128
  (0, class_validator_1.IsOptional)(),
122
129
  __metadata("design:type", Number)
@@ -1 +1 @@
1
- {"version":3,"file":"createPaylink.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/dtos/createPaylink.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AACzB,yDAAoD;AACpD,2CAA2C;AAC3C,uDAAsD;AACtD,2CAA2C;AAC3C,uDAAqD;AAOrD,MAAa,gBAAgB;IAA7B;QAuBE,wBAAmB,GAAa,KAAK,CAAC;QAItC,0BAAqB,GAAa,KAAK,CAAC;QAIxC,mBAAc,GAAa,KAAK,CAAC;IAoDnC,CAAC;CAAA;AAlFC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACG;AAEhB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8CACA;AAEb;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+CACE;AAEf;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;yDACf;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;6DACyB;AAEtC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DAC2B;AAExC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;wDACoB;AAEjC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACK;AAElB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;kDACM;AAEnB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iDACK;AAElB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gDACE;AAEf;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,gCAAc,GAAE;8BACP,oBAAU;iDAAC;AAErB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+BAAe,CAAC;IAC3B,IAAA,gCAAc,GAAE;8BACN,+BAAe;kDAAC;AAE3B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yDACY;AAEzB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,gCAAc,GAAE;8BACP,oBAAU;iDAAQ;AAE5B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACiB;AAE9B;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAc,CAAC;IAC1B,IAAA,4BAAU,GAAE;;sDACmB;AAEhC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAlFvB,4CAmFC"}
1
+ {"version":3,"file":"createPaylink.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/dtos/createPaylink.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AACzB,yDAAoD;AACpD,2CAA2C;AAC3C,uDAAsD;AACtD,2CAA2C;AAC3C,uDAAqD;AACrD,yDAAwD;AAOxD,MAAa,gBAAgB;IAA7B;QAuBE,wBAAmB,GAAa,KAAK,CAAC;QAItC,0BAAqB,GAAa,KAAK,CAAC;QAIxC,mBAAc,GAAa,KAAK,CAAC;IAyDnC,CAAC;CAAA;AAvFC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACG;AAEhB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8CACA;AAEb;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+CACE;AAEf;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;yDACf;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;6DACyB;AAEtC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DAC2B;AAExC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;wDACoB;AAEjC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACK;AAElB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;kDACM;AAEnB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iDACK;AAElB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gDACE;AAEf;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,gCAAc,GAAE;8BACP,oBAAU;iDAAC;AAErB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+BAAe,CAAC;IAC3B,IAAA,gCAAc,GAAE;8BACN,+BAAe;kDAAC;AAE3B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yDACY;AAEzB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,gCAAc,GAAE;8BACP,oBAAU;iDAAQ;AAE5B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACiB;AAE9B;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAc,CAAC;IAC1B,IAAA,4BAAU,GAAE;;sDACmB;AAEhC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;IAC5B,IAAA,4BAAU,GAAE;8BACG,iCAAgB;uDAAC;AAEjC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAvFvB,4CAwFC"}
@@ -2,6 +2,7 @@ import { ContentDto } from '../../content';
2
2
  import { LinkFeaturesDto } from '../../link-features';
3
3
  import { ProductDto } from '../../product';
4
4
  import { SplitWalletDto } from '../../split-wallets';
5
+ import { FixedCurrencyDto } from '../../fixed-currency';
5
6
  export declare class UpdatePaylinkDto {
6
7
  company?: string;
7
8
  name?: string;
@@ -21,6 +22,7 @@ export declare class UpdatePaylinkDto {
21
22
  product?: ProductDto | null;
22
23
  nftCollectionAddress?: string;
23
24
  splitWallets?: SplitWalletDto[];
25
+ fixedCurrency?: FixedCurrencyDto;
24
26
  minQuantity?: number;
25
27
  maxQuantity?: number;
26
28
  }
@@ -16,6 +16,7 @@ const content_1 = require("../../content");
16
16
  const link_features_1 = require("../../link-features");
17
17
  const product_1 = require("../../product");
18
18
  const split_wallets_1 = require("../../split-wallets");
19
+ const fixed_currency_1 = require("../../fixed-currency");
19
20
  class UpdatePaylinkDto {
20
21
  }
21
22
  __decorate([
@@ -111,6 +112,11 @@ __decorate([
111
112
  (0, class_validator_1.IsOptional)(),
112
113
  __metadata("design:type", Array)
113
114
  ], UpdatePaylinkDto.prototype, "splitWallets", void 0);
115
+ __decorate([
116
+ (0, class_transformer_1.Type)(() => fixed_currency_1.FixedCurrencyDto),
117
+ (0, class_validator_1.IsOptional)(),
118
+ __metadata("design:type", fixed_currency_1.FixedCurrencyDto)
119
+ ], UpdatePaylinkDto.prototype, "fixedCurrency", void 0);
114
120
  __decorate([
115
121
  (0, class_validator_1.IsNumber)(),
116
122
  (0, class_validator_1.IsOptional)(),
@@ -1 +1 @@
1
- {"version":3,"file":"updatePaylink.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/dtos/updatePaylink.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAMyB;AACzB,yDAAoD;AACpD,2CAA2C;AAC3C,uDAAsD;AACtD,2CAA2C;AAC3C,uDAAqD;AAErD,MAAa,gBAAgB;CAmF5B;AAlFC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACI;AAEjB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8CACG;AAEd;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+CACE;AAEf;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;yDACf;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;6DACiB;AAE9B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DACmB;AAEhC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;wDACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACK;AAElB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;kDACM;AAEnB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gDACG;AAEhB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iDACK;AAElB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,gCAAc,GAAE;8BACP,oBAAU;iDAAC;AAErB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+BAAe,CAAC;IAC3B,IAAA,gCAAc,GAAE;8BACN,+BAAe;kDAAC;AAE3B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yDACY;AAEzB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,oBAAU;iDAAQ;AAE5B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACiB;AAE9B;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAc,CAAC;IAC1B,IAAA,4BAAU,GAAE;;sDACmB;AAEhC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAlFvB,4CAmFC"}
1
+ {"version":3,"file":"updatePaylink.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/dtos/updatePaylink.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAMyB;AACzB,yDAAoD;AACpD,2CAA2C;AAC3C,uDAAsD;AACtD,2CAA2C;AAC3C,uDAAqD;AACrD,yDAAwD;AAExD,MAAa,gBAAgB;CAuF5B;AAtFC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACI;AAEjB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8CACG;AAEd;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+CACE;AAEf;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;yDACf;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;6DACiB;AAE9B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DACmB;AAEhC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;wDACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACK;AAElB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;kDACM;AAEnB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gDACG;AAEhB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iDACK;AAElB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,gCAAc,GAAE;8BACP,oBAAU;iDAAC;AAErB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+BAAe,CAAC;IAC3B,IAAA,gCAAc,GAAE;8BACN,+BAAe;kDAAC;AAE3B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yDACY;AAEzB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,oBAAU;iDAAQ;AAE5B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACiB;AAE9B;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAc,CAAC;IAC1B,IAAA,4BAAU,GAAE;;sDACmB;AAEhC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;IAC5B,IAAA,4BAAU,GAAE;8BACG,iCAAgB;uDAAC;AAEjC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAtFvB,4CAuFC"}
@@ -5,6 +5,7 @@ import { BasePaymentRequest } from './BasePaymentRequest';
5
5
  import { Product } from '../../product';
6
6
  import { BaseCompany } from '../../company';
7
7
  import { SplitWallet } from '../../split-wallets';
8
+ import { FixedCurrency } from '../../fixed-currency';
8
9
  export declare class PaymentRequest extends BasePaymentRequest {
9
10
  creator: User;
10
11
  company: BaseCompany;
@@ -12,4 +13,5 @@ export declare class PaymentRequest extends BasePaymentRequest {
12
13
  wallet: Wallet;
13
14
  product: Product;
14
15
  splitWallets?: SplitWallet[];
16
+ fixedCurrency?: FixedCurrency;
15
17
  }
@@ -1 +1 @@
1
- {"version":3,"file":"PaymentRequest.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/entities/PaymentRequest.ts"],"names":[],"mappings":";;;AAGA,6DAA0D;AAK1D,MAAa,cAAe,SAAQ,uCAAkB;CAYrD;AAZD,wCAYC"}
1
+ {"version":3,"file":"PaymentRequest.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/entities/PaymentRequest.ts"],"names":[],"mappings":";;;AAGA,6DAA0D;AAM1D,MAAa,cAAe,SAAQ,uCAAkB;CAcrD;AAdD,wCAcC"}
@@ -5,6 +5,7 @@ import type { BaseWallet } from '../../wallet';
5
5
  import { Product } from '../../product';
6
6
  import { BaseCompany } from '../../company';
7
7
  import { SplitWallet } from '../../split-wallets';
8
+ import { FixedCurrency } from '../../fixed-currency';
8
9
  export declare class ShallowEnrichedPaymentRequest extends BasePaymentRequest {
9
10
  creator: BaseUser;
10
11
  company: BaseCompany;
@@ -12,6 +13,7 @@ export declare class ShallowEnrichedPaymentRequest extends BasePaymentRequest {
12
13
  wallet: BaseWallet;
13
14
  product: Product;
14
15
  splitWallets?: SplitWallet[];
16
+ fixedCurrency?: FixedCurrency;
15
17
  slug: string;
16
18
  volume: number;
17
19
  sales: number;
@@ -1 +1 @@
1
- {"version":3,"file":"ShallowEnrichedPaymentRequest.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/entities/ShallowEnrichedPaymentRequest.ts"],"names":[],"mappings":";;;AAAA,6DAA0D;AAQ1D,MAAa,6BAA8B,SAAQ,uCAAkB;CAkBpE;AAlBD,sEAkBC"}
1
+ {"version":3,"file":"ShallowEnrichedPaymentRequest.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/entities/ShallowEnrichedPaymentRequest.ts"],"names":[],"mappings":";;;AAAA,6DAA0D;AAS1D,MAAa,6BAA8B,SAAQ,uCAAkB;CAoBpE;AApBD,sEAoBC"}
@@ -1,6 +1,7 @@
1
1
  import { CustomerDetailsDto } from '../../customer-details';
2
2
  import { ProductDetailsDto } from '../../product-details';
3
3
  import { SplitWalletDto } from '../../split-wallets';
4
+ import { FixedCurrencyDto } from '../../fixed-currency';
4
5
  export declare class SubmitTransactionDto {
5
6
  signedTransaction: string;
6
7
  paymentRequestId: string;
@@ -14,4 +15,5 @@ export declare class SubmitTransactionDto {
14
15
  productDetails?: ProductDetailsDto;
15
16
  splitRevenue?: boolean;
16
17
  splitWallets?: SplitWalletDto[];
18
+ fixedCurrency?: FixedCurrencyDto;
17
19
  }
@@ -15,6 +15,7 @@ const class_transformer_1 = require("class-transformer");
15
15
  const customer_details_1 = require("../../customer-details");
16
16
  const product_details_1 = require("../../product-details");
17
17
  const split_wallets_1 = require("../../split-wallets");
18
+ const fixed_currency_1 = require("../../fixed-currency");
18
19
  class SubmitTransactionDto {
19
20
  }
20
21
  __decorate([
@@ -82,5 +83,10 @@ __decorate([
82
83
  (0, class_validator_1.IsOptional)(),
83
84
  __metadata("design:type", Array)
84
85
  ], SubmitTransactionDto.prototype, "splitWallets", void 0);
86
+ __decorate([
87
+ (0, class_transformer_1.Type)(() => fixed_currency_1.FixedCurrencyDto),
88
+ (0, class_validator_1.IsOptional)(),
89
+ __metadata("design:type", fixed_currency_1.FixedCurrencyDto)
90
+ ], SubmitTransactionDto.prototype, "fixedCurrency", void 0);
85
91
  exports.SubmitTransactionDto = SubmitTransactionDto;
86
92
  //# sourceMappingURL=submitTransaction.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"submitTransaction.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/submit-transaction/dtos/submitTransaction.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAQyB;AACzB,yDAAoD;AACpD,6DAA4D;AAC5D,2DAA0D;AAC1D,uDAAqD;AAErD,MAAa,oBAAoB;CAqDhC;AApDC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+DACa;AAE1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;oDACE;AAEf;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uDACK;AAElB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;oDACzB;AAEf;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,4BAAU,GAAE;;kDACC;AAEd;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,qCAAkB,CAAC;IAC9B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;8BACK,qCAAkB;6DAAC;AAErC;IAAC,IAAA,kCAAgB,GAAE;IAClB,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;8BACI,mCAAiB;4DAAC;AAEnC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;0DACU;AAEvB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAc,CAAC;IAC1B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;;0DACmB;AApDlC,oDAqDC"}
1
+ {"version":3,"file":"submitTransaction.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/submit-transaction/dtos/submitTransaction.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAQyB;AACzB,yDAAoD;AACpD,6DAA4D;AAC5D,2DAA0D;AAC1D,uDAAqD;AACrD,yDAAwD;AAExD,MAAa,oBAAoB;CAyDhC;AAxDC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+DACa;AAE1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;oDACE;AAEf;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uDACK;AAElB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;oDACzB;AAEf;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,4BAAU,GAAE;;kDACC;AAEd;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,qCAAkB,CAAC;IAC9B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;8BACK,qCAAkB;6DAAC;AAErC;IAAC,IAAA,kCAAgB,GAAE;IAClB,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;8BACI,mCAAiB;4DAAC;AAEnC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;0DACU;AAEvB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAc,CAAC;IAC1B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;;0DACmB;AAEhC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;IAC5B,IAAA,4BAAU,GAAE;8BACG,iCAAgB;2DAAC;AAxDnC,oDAyDC"}