@heliofi/common 0.1.179 → 0.1.181

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 (52) hide show
  1. package/dist/src/domain/model/helio-play/dtos/HelioPlayProperties.dto.d.ts +5 -0
  2. package/dist/src/domain/model/helio-play/dtos/HelioPlayProperties.dto.js +29 -0
  3. package/dist/src/domain/model/helio-play/dtos/HelioPlayProperties.dto.js.map +1 -0
  4. package/dist/src/domain/model/helio-play/dtos/index.d.ts +1 -0
  5. package/dist/src/domain/model/helio-play/dtos/index.js +18 -0
  6. package/dist/src/domain/model/helio-play/dtos/index.js.map +1 -0
  7. package/dist/src/domain/model/helio-play/entities/HelioPlayProperties.entity.d.ts +5 -0
  8. package/dist/src/domain/model/helio-play/entities/HelioPlayProperties.entity.js +7 -0
  9. package/dist/src/domain/model/helio-play/entities/HelioPlayProperties.entity.js.map +1 -0
  10. package/dist/src/domain/model/helio-play/entities/index.d.ts +1 -0
  11. package/dist/src/domain/model/helio-play/entities/index.js +18 -0
  12. package/dist/src/domain/model/helio-play/entities/index.js.map +1 -0
  13. package/dist/src/domain/model/helio-play/index.d.ts +2 -0
  14. package/dist/src/domain/model/helio-play/index.js +19 -0
  15. package/dist/src/domain/model/helio-play/index.js.map +1 -0
  16. package/dist/src/domain/model/index.d.ts +2 -0
  17. package/dist/src/domain/model/index.js +2 -0
  18. package/dist/src/domain/model/index.js.map +1 -1
  19. package/dist/src/domain/model/media/dtos/MediaProperties.dto.d.ts +5 -0
  20. package/dist/src/domain/model/media/dtos/MediaProperties.dto.js +27 -0
  21. package/dist/src/domain/model/media/dtos/MediaProperties.dto.js.map +1 -0
  22. package/dist/src/domain/model/media/dtos/index.d.ts +1 -0
  23. package/dist/src/domain/model/media/dtos/index.js +18 -0
  24. package/dist/src/domain/model/media/dtos/index.js.map +1 -0
  25. package/dist/src/domain/model/media/entities/MediaProperties.entity.d.ts +5 -0
  26. package/dist/src/domain/model/media/entities/MediaProperties.entity.js +7 -0
  27. package/dist/src/domain/model/media/entities/MediaProperties.entity.js.map +1 -0
  28. package/dist/src/domain/model/media/entities/MediaType.d.ts +3 -0
  29. package/dist/src/domain/model/media/entities/MediaType.js +8 -0
  30. package/dist/src/domain/model/media/entities/MediaType.js.map +1 -0
  31. package/dist/src/domain/model/media/entities/index.d.ts +2 -0
  32. package/dist/src/domain/model/media/entities/index.js +19 -0
  33. package/dist/src/domain/model/media/entities/index.js.map +1 -0
  34. package/dist/src/domain/model/media/index.d.ts +2 -0
  35. package/dist/src/domain/model/media/index.js +19 -0
  36. package/dist/src/domain/model/media/index.js.map +1 -0
  37. package/dist/src/domain/model/paystream/dtos/createPaystream.dto.d.ts +2 -0
  38. package/dist/src/domain/model/paystream/dtos/createPaystream.dto.js +7 -0
  39. package/dist/src/domain/model/paystream/dtos/createPaystream.dto.js.map +1 -1
  40. package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.d.ts +2 -0
  41. package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.js +7 -0
  42. package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.js.map +1 -1
  43. package/dist/src/domain/model/paystream/entities/BasePaystream.d.ts +2 -0
  44. package/dist/src/domain/model/paystream/entities/BasePaystream.js.map +1 -1
  45. package/dist/src/domain/model/paystream/entities/Paystream.d.ts +2 -0
  46. package/dist/src/domain/model/paystream/entities/Paystream.js.map +1 -1
  47. package/dist/src/domain/model/paystream-tx/entities/BasePaystreamTxWithTransaction.js.map +1 -1
  48. package/dist/src/domain/model/paystream-tx/entities/CheckoutStatus.entity.d.ts +2 -1
  49. package/dist/src/domain/model/paystream-tx/entities/CheckoutStatus.entity.js +2 -1
  50. package/dist/src/domain/model/paystream-tx/entities/CheckoutStatus.entity.js.map +1 -1
  51. package/dist/tsconfig.tsbuildinfo +1 -1
  52. package/package.json +2 -2
@@ -0,0 +1,5 @@
1
+ import { MediaPropertiesDto } from '../../media';
2
+ export declare class HelioPlayPropertiesDto {
3
+ durationSec?: number;
4
+ media: MediaPropertiesDto;
5
+ }
@@ -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.HelioPlayPropertiesDto = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const media_1 = require("../../media");
15
+ const class_transformer_1 = require("class-transformer");
16
+ class HelioPlayPropertiesDto {
17
+ }
18
+ __decorate([
19
+ (0, class_validator_1.IsOptional)(),
20
+ (0, class_validator_1.IsNumber)(),
21
+ __metadata("design:type", Number)
22
+ ], HelioPlayPropertiesDto.prototype, "durationSec", void 0);
23
+ __decorate([
24
+ (0, class_transformer_1.Type)(() => media_1.MediaPropertiesDto),
25
+ (0, class_validator_1.ValidateNested)(),
26
+ __metadata("design:type", media_1.MediaPropertiesDto)
27
+ ], HelioPlayPropertiesDto.prototype, "media", void 0);
28
+ exports.HelioPlayPropertiesDto = HelioPlayPropertiesDto;
29
+ //# sourceMappingURL=HelioPlayProperties.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HelioPlayProperties.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/helio-play/dtos/HelioPlayProperties.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuE;AACvE,uCAAiD;AACjD,yDAAyC;AAEzC,MAAa,sBAAsB;CAQlC;AAPC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;2DACU;AAErB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,0BAAkB,CAAC;IAC9B,IAAA,gCAAc,GAAE;8BACV,0BAAkB;qDAAC;AAP5B,wDAQC"}
@@ -0,0 +1 @@
1
+ export * from './HelioPlayProperties.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("./HelioPlayProperties.dto"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/helio-play/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C"}
@@ -0,0 +1,5 @@
1
+ import { MediaProperties } from '../../media';
2
+ export declare class HelioPlayProperties {
3
+ durationSec?: number;
4
+ media: MediaProperties;
5
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HelioPlayProperties = void 0;
4
+ class HelioPlayProperties {
5
+ }
6
+ exports.HelioPlayProperties = HelioPlayProperties;
7
+ //# sourceMappingURL=HelioPlayProperties.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HelioPlayProperties.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/helio-play/entities/HelioPlayProperties.entity.ts"],"names":[],"mappings":";;;AAEA,MAAa,mBAAmB;CAI/B;AAJD,kDAIC"}
@@ -0,0 +1 @@
1
+ export * from './HelioPlayProperties.entity';
@@ -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("./HelioPlayProperties.entity"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/helio-play/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C"}
@@ -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/helio-play/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,6CAA2B"}
@@ -60,4 +60,6 @@ export * from './prepare-payment-request';
60
60
  export * from './access-code-auth-properties';
61
61
  export * from './evm-transaction-monitoring';
62
62
  export * from './settle-transaction';
63
+ export * from './media';
64
+ export * from './helio-play';
63
65
  export * from './funding';
@@ -76,5 +76,7 @@ __exportStar(require("./prepare-payment-request"), exports);
76
76
  __exportStar(require("./access-code-auth-properties"), exports);
77
77
  __exportStar(require("./evm-transaction-monitoring"), exports);
78
78
  __exportStar(require("./settle-transaction"), exports);
79
+ __exportStar(require("./media"), exports);
80
+ __exportStar(require("./helio-play"), exports);
79
81
  __exportStar(require("./funding"), exports);
80
82
  //# 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,0DAAwC;AACxC,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,mDAAiC;AACjC,mDAAiC;AACjC,4CAA0B;AAC1B,wDAAsC;AACtC,kDAAgC;AAChC,mDAAiC;AACjC,4CAA0B;AAC1B,gDAA8B;AAC9B,mDAAiC;AACjC,+CAA6B;AAC7B,+CAA6B;AAC7B,0CAAwB;AACxB,mDAAiC;AACjC,kDAAgC;AAChC,wCAAsB;AACtB,oDAAkC;AAClC,gDAA8B;AAC9B,qDAAmC;AACnC,6CAA2B;AAC3B,4DAA0C;AAC1C,gEAA8C;AAC9C,+DAA6C;AAC7C,uDAAqC;AACrC,4CAA0B"}
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,0DAAwC;AACxC,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,mDAAiC;AACjC,mDAAiC;AACjC,4CAA0B;AAC1B,wDAAsC;AACtC,kDAAgC;AAChC,mDAAiC;AACjC,4CAA0B;AAC1B,gDAA8B;AAC9B,mDAAiC;AACjC,+CAA6B;AAC7B,+CAA6B;AAC7B,0CAAwB;AACxB,mDAAiC;AACjC,kDAAgC;AAChC,wCAAsB;AACtB,oDAAkC;AAClC,gDAA8B;AAC9B,qDAAmC;AACnC,6CAA2B;AAC3B,4DAA0C;AAC1C,gEAA8C;AAC9C,+DAA6C;AAC7C,uDAAqC;AACrC,0CAAwB;AACxB,+CAA6B;AAC7B,4CAA0B"}
@@ -0,0 +1,5 @@
1
+ import { MediaType } from '../entities';
2
+ export declare class MediaPropertiesDto {
3
+ type: MediaType;
4
+ hosted: boolean;
5
+ }
@@ -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.MediaPropertiesDto = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const entities_1 = require("../entities");
15
+ class MediaPropertiesDto {
16
+ }
17
+ __decorate([
18
+ (0, class_validator_1.IsEnum)(entities_1.MediaType),
19
+ (0, class_validator_1.IsNotEmpty)(),
20
+ __metadata("design:type", String)
21
+ ], MediaPropertiesDto.prototype, "type", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsBoolean)(),
24
+ __metadata("design:type", Boolean)
25
+ ], MediaPropertiesDto.prototype, "hosted", void 0);
26
+ exports.MediaPropertiesDto = MediaPropertiesDto;
27
+ //# sourceMappingURL=MediaProperties.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MediaProperties.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/media/dtos/MediaProperties.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAgE;AAChE,0CAAwC;AAExC,MAAa,kBAAkB;CAO9B;AANC;IAAC,IAAA,wBAAM,EAAC,oBAAS,CAAC;IACjB,IAAA,4BAAU,GAAE;;gDACG;AAEhB;IAAC,IAAA,2BAAS,GAAE;;kDACI;AANlB,gDAOC"}
@@ -0,0 +1 @@
1
+ export * from './MediaProperties.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("./MediaProperties.dto"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/media/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC"}
@@ -0,0 +1,5 @@
1
+ import { MediaType } from '.';
2
+ export declare class MediaProperties {
3
+ type: MediaType;
4
+ hosted: boolean;
5
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MediaProperties = void 0;
4
+ class MediaProperties {
5
+ }
6
+ exports.MediaProperties = MediaProperties;
7
+ //# sourceMappingURL=MediaProperties.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MediaProperties.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/media/entities/MediaProperties.entity.ts"],"names":[],"mappings":";;;AAEA,MAAa,eAAe;CAI3B;AAJD,0CAIC"}
@@ -0,0 +1,3 @@
1
+ export declare enum MediaType {
2
+ VIDEO = "VIDEO"
3
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MediaType = void 0;
4
+ var MediaType;
5
+ (function (MediaType) {
6
+ MediaType["VIDEO"] = "VIDEO";
7
+ })(MediaType = exports.MediaType || (exports.MediaType = {}));
8
+ //# sourceMappingURL=MediaType.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MediaType.js","sourceRoot":"","sources":["../../../../../../src/domain/model/media/entities/MediaType.ts"],"names":[],"mappings":";;;AAAA,IAAY,SAEX;AAFD,WAAY,SAAS;IACnB,4BAAe,CAAA;AACjB,CAAC,EAFW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAEpB"}
@@ -0,0 +1,2 @@
1
+ export * from './MediaProperties.entity';
2
+ export * from './MediaType';
@@ -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("./MediaProperties.entity"), exports);
18
+ __exportStar(require("./MediaType"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/media/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AACzC,8CAA4B"}
@@ -0,0 +1,2 @@
1
+ export * from './entities';
2
+ export * from './dtos';
@@ -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("./entities"), exports);
18
+ __exportStar(require("./dtos"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/media/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,yCAAuB"}
@@ -1,7 +1,9 @@
1
1
  import { StreamFeaturesDto } from '../../stream-features';
2
2
  import { IntervalType } from '../entities';
3
3
  import { CreatePaymentRequestDto } from '../../payment-request';
4
+ import { HelioPlayPropertiesDto } from '../../helio-play';
4
5
  export declare class CreatePaystreamDto extends CreatePaymentRequestDto {
6
+ helioPlayProperties?: HelioPlayPropertiesDto;
5
7
  features?: StreamFeaturesDto;
6
8
  interval: IntervalType;
7
9
  maxTime: number;
@@ -15,8 +15,15 @@ const class_transformer_1 = require("class-transformer");
15
15
  const stream_features_1 = require("../../stream-features");
16
16
  const entities_1 = require("../entities");
17
17
  const payment_request_1 = require("../../payment-request");
18
+ const helio_play_1 = require("../../helio-play");
18
19
  class CreatePaystreamDto extends payment_request_1.CreatePaymentRequestDto {
19
20
  }
21
+ __decorate([
22
+ (0, class_validator_1.IsOptional)(),
23
+ (0, class_transformer_1.Type)(() => helio_play_1.HelioPlayPropertiesDto),
24
+ (0, class_validator_1.ValidateNested)(),
25
+ __metadata("design:type", helio_play_1.HelioPlayPropertiesDto)
26
+ ], CreatePaystreamDto.prototype, "helioPlayProperties", void 0);
20
27
  __decorate([
21
28
  (0, class_validator_1.IsOptional)(),
22
29
  (0, class_transformer_1.Type)(() => stream_features_1.StreamFeaturesDto),
@@ -1 +1 @@
1
- {"version":3,"file":"createPaystream.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream/dtos/createPaystream.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAMyB;AACzB,yDAAyC;AACzC,2DAA0D;AAC1D,0CAA2C;AAC3C,2DAAgE;AAEhE,MAAa,kBAAmB,SAAQ,yCAAuB;CAa9D;AAZC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,gCAAc,GAAE;8BACN,mCAAiB;oDAAC;AAE7B;IAAC,IAAA,wBAAM,EAAC,uBAAY,CAAC;IACpB,IAAA,4BAAU,GAAE;;oDACU;AAEvB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACG;AAZlB,gDAaC"}
1
+ {"version":3,"file":"createPaystream.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream/dtos/createPaystream.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAMyB;AACzB,yDAAyC;AACzC,2DAA0D;AAC1D,0CAA2C;AAC3C,2DAAgE;AAChE,iDAA0D;AAE1D,MAAa,kBAAmB,SAAQ,yCAAuB;CAkB9D;AAjBC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAsB,CAAC;IAClC,IAAA,gCAAc,GAAE;8BACK,mCAAsB;+DAAC;AAE7C;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,gCAAc,GAAE;8BACN,mCAAiB;oDAAC;AAE7B;IAAC,IAAA,wBAAM,EAAC,uBAAY,CAAC;IACpB,IAAA,4BAAU,GAAE;;oDACU;AAEvB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACG;AAjBlB,gDAkBC"}
@@ -1,7 +1,9 @@
1
1
  import { StreamFeaturesDto } from '../../stream-features';
2
2
  import { IntervalType } from '../entities';
3
3
  import { UpdatePaymentRequestDto } from '../../payment-request';
4
+ import { HelioPlayPropertiesDto } from '../../helio-play';
4
5
  export declare class UpdatePaystreamDto extends UpdatePaymentRequestDto {
6
+ helioPlayProperties?: HelioPlayPropertiesDto;
5
7
  features?: StreamFeaturesDto;
6
8
  interval?: IntervalType;
7
9
  maxTime?: number;
@@ -15,8 +15,15 @@ const class_transformer_1 = require("class-transformer");
15
15
  const stream_features_1 = require("../../stream-features");
16
16
  const entities_1 = require("../entities");
17
17
  const payment_request_1 = require("../../payment-request");
18
+ const helio_play_1 = require("../../helio-play");
18
19
  class UpdatePaystreamDto extends payment_request_1.UpdatePaymentRequestDto {
19
20
  }
21
+ __decorate([
22
+ (0, class_validator_1.IsOptional)(),
23
+ (0, class_transformer_1.Type)(() => helio_play_1.HelioPlayPropertiesDto),
24
+ (0, class_validator_1.ValidateNested)(),
25
+ __metadata("design:type", helio_play_1.HelioPlayPropertiesDto)
26
+ ], UpdatePaystreamDto.prototype, "helioPlayProperties", void 0);
20
27
  __decorate([
21
28
  (0, class_transformer_1.Type)(() => stream_features_1.StreamFeaturesDto),
22
29
  (0, class_validator_1.IsOptional)(),
@@ -1 +1 @@
1
- {"version":3,"file":"updatePaystream.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream/dtos/updatePaystream.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+E;AAC/E,yDAAyC;AACzC,2DAA0D;AAC1D,0CAA2C;AAC3C,2DAAgE;AAEhE,MAAa,kBAAmB,SAAQ,yCAAuB;CAa9D;AAZC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACN,mCAAiB;oDAAC;AAE7B;IAAC,IAAA,wBAAM,EAAC,uBAAY,CAAC;IACpB,IAAA,4BAAU,GAAE;;oDACW;AAExB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACI;AAZnB,gDAaC"}
1
+ {"version":3,"file":"updatePaystream.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream/dtos/updatePaystream.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+E;AAC/E,yDAAyC;AACzC,2DAA0D;AAC1D,0CAA2C;AAC3C,2DAAgE;AAChE,iDAA0D;AAE1D,MAAa,kBAAmB,SAAQ,yCAAuB;CAkB9D;AAjBC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAsB,CAAC;IAClC,IAAA,gCAAc,GAAE;8BACK,mCAAsB;+DAAC;AAE7C;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACN,mCAAiB;oDAAC;AAE7B;IAAC,IAAA,wBAAM,EAAC,uBAAY,CAAC;IACpB,IAAA,4BAAU,GAAE;;oDACW;AAExB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACI;AAjBnB,gDAkBC"}
@@ -1,8 +1,10 @@
1
1
  import type { StreamFeatures } from '../../stream-features';
2
2
  import { BasePaymentRequest } from '../../payment-request';
3
3
  import { IntervalType } from './IntervalType';
4
+ import { HelioPlayProperties } from '../../helio-play';
4
5
  export declare class BasePaystream extends BasePaymentRequest {
5
6
  maxTime: number;
6
7
  interval: IntervalType;
7
8
  features: StreamFeatures;
9
+ helioPlayProperties?: HelioPlayProperties;
8
10
  }
@@ -1 +1 @@
1
- {"version":3,"file":"BasePaystream.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream/entities/BasePaystream.ts"],"names":[],"mappings":";;;AACA,2DAA2D;AAG3D,MAAa,aAAc,SAAQ,oCAAkB;CAMpD;AAND,sCAMC"}
1
+ {"version":3,"file":"BasePaystream.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream/entities/BasePaystream.ts"],"names":[],"mappings":";;;AACA,2DAA2D;AAI3D,MAAa,aAAc,SAAQ,oCAAkB;CAQpD;AARD,sCAQC"}
@@ -1,3 +1,4 @@
1
+ import { HelioPlayProperties } from '../../helio-play';
1
2
  import { PaymentRequest } from '../../payment-request';
2
3
  import { StreamFeatures } from '../../stream-features';
3
4
  import { IntervalType } from './IntervalType';
@@ -5,4 +6,5 @@ export declare class Paystream extends PaymentRequest {
5
6
  maxTime: number;
6
7
  interval: IntervalType;
7
8
  features: StreamFeatures;
9
+ helioPlayProperties?: HelioPlayProperties;
8
10
  }
@@ -1 +1 @@
1
- {"version":3,"file":"Paystream.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream/entities/Paystream.ts"],"names":[],"mappings":";;;AAAA,2DAAuD;AAIvD,MAAa,SAAU,SAAQ,gCAAc;CAM5C;AAND,8BAMC"}
1
+ {"version":3,"file":"Paystream.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream/entities/Paystream.ts"],"names":[],"mappings":";;;AACA,2DAAuD;AAIvD,MAAa,SAAU,SAAQ,gCAAc;CAQ5C;AARD,8BAQC"}
@@ -1 +1 @@
1
- {"version":3,"file":"BasePaystreamTxWithTransaction.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream-tx/entities/BasePaystreamTxWithTransaction.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,8BAA+B,SAAQ,eAAM;CAGzD;AAHD,wEAGC"}
1
+ {"version":3,"file":"BasePaystreamTxWithTransaction.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream-tx/entities/BasePaystreamTxWithTransaction.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,8BAA+B,SAAQ,eAAM;CAIzD;AAJD,wEAIC"}
@@ -1,4 +1,5 @@
1
- export declare class CheckoutStatus {
1
+ import { Entity } from '../../entity';
2
+ export declare class CheckoutStatus extends Entity {
2
3
  transactionSignature: string;
3
4
  startedAt: bigint;
4
5
  endedAt: bigint;
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.CheckoutStatus = void 0;
4
- class CheckoutStatus {
4
+ const entity_1 = require("../../entity");
5
+ class CheckoutStatus extends entity_1.Entity {
5
6
  }
6
7
  exports.CheckoutStatus = CheckoutStatus;
7
8
  //# sourceMappingURL=CheckoutStatus.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"CheckoutStatus.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream-tx/entities/CheckoutStatus.entity.ts"],"names":[],"mappings":";;;AAAA,MAAa,cAAc;CAoB1B;AApBD,wCAoBC"}
1
+ {"version":3,"file":"CheckoutStatus.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream-tx/entities/CheckoutStatus.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAEtC,MAAa,cAAe,SAAQ,eAAM;CAoBzC;AApBD,wCAoBC"}