@heliofi/common 0.1.177 → 0.1.178

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 (42) hide show
  1. package/dist/src/domain/model/helio-play/dtos/HelioPlayPropertiesDto.d.ts +5 -0
  2. package/dist/src/domain/model/helio-play/dtos/HelioPlayPropertiesDto.js +7 -0
  3. package/dist/src/domain/model/helio-play/dtos/HelioPlayPropertiesDto.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.d.ts +5 -0
  8. package/dist/src/domain/model/helio-play/entities/HelioPlayProperties.js +7 -0
  9. package/dist/src/domain/model/helio-play/entities/HelioPlayProperties.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/entities/MediaProperties.d.ts +5 -0
  20. package/dist/src/domain/model/media/entities/MediaProperties.js +7 -0
  21. package/dist/src/domain/model/media/entities/MediaProperties.js.map +1 -0
  22. package/dist/src/domain/model/media/entities/MediaType.d.ts +5 -0
  23. package/dist/src/domain/model/media/entities/MediaType.js +10 -0
  24. package/dist/src/domain/model/media/entities/MediaType.js.map +1 -0
  25. package/dist/src/domain/model/media/entities/index.d.ts +2 -0
  26. package/dist/src/domain/model/media/entities/index.js +19 -0
  27. package/dist/src/domain/model/media/entities/index.js.map +1 -0
  28. package/dist/src/domain/model/media/index.d.ts +1 -0
  29. package/dist/src/domain/model/media/index.js +18 -0
  30. package/dist/src/domain/model/media/index.js.map +1 -0
  31. package/dist/src/domain/model/paystream/dtos/createPaystream.dto.d.ts +2 -0
  32. package/dist/src/domain/model/paystream/dtos/createPaystream.dto.js +6 -0
  33. package/dist/src/domain/model/paystream/dtos/createPaystream.dto.js.map +1 -1
  34. package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.d.ts +2 -0
  35. package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.js +6 -0
  36. package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.js.map +1 -1
  37. package/dist/src/domain/model/paystream/entities/BasePaystream.d.ts +2 -0
  38. package/dist/src/domain/model/paystream/entities/BasePaystream.js.map +1 -1
  39. package/dist/src/domain/model/paystream/entities/Paystream.d.ts +2 -0
  40. package/dist/src/domain/model/paystream/entities/Paystream.js.map +1 -1
  41. package/dist/tsconfig.tsbuildinfo +1 -1
  42. package/package.json +2 -2
@@ -0,0 +1,5 @@
1
+ import { MediaProperties } from '../../media';
2
+ export declare class HelioPlayPropertiesDto {
3
+ duration?: number;
4
+ media: MediaProperties;
5
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HelioPlayPropertiesDto = void 0;
4
+ class HelioPlayPropertiesDto {
5
+ }
6
+ exports.HelioPlayPropertiesDto = HelioPlayPropertiesDto;
7
+ //# sourceMappingURL=HelioPlayPropertiesDto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HelioPlayPropertiesDto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/helio-play/dtos/HelioPlayPropertiesDto.ts"],"names":[],"mappings":";;;AAEA,MAAa,sBAAsB;CAGlC;AAHD,wDAGC"}
@@ -0,0 +1 @@
1
+ export * from './HelioPlayPropertiesDto';
@@ -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("./HelioPlayPropertiesDto"), 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,2DAAyC"}
@@ -0,0 +1,5 @@
1
+ import { MediaProperties } from '../../media';
2
+ export declare class HelioPlayProperties {
3
+ duration?: 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.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HelioPlayProperties.js","sourceRoot":"","sources":["../../../../../../src/domain/model/helio-play/entities/HelioPlayProperties.ts"],"names":[],"mappings":";;;AAEA,MAAa,mBAAmB;CAG/B;AAHD,kDAGC"}
@@ -0,0 +1 @@
1
+ export * from './HelioPlayProperties';
@@ -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"), 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,wDAAsC"}
@@ -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,3 +60,5 @@ 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';
@@ -76,4 +76,6 @@ __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
  //# 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"}
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"}
@@ -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.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MediaProperties.js","sourceRoot":"","sources":["../../../../../../src/domain/model/media/entities/MediaProperties.ts"],"names":[],"mappings":";;;AAEA,MAAa,eAAe;CAG3B;AAHD,0CAGC"}
@@ -0,0 +1,5 @@
1
+ export declare enum MediaType {
2
+ VIDEO = "VIDEO",
3
+ AUDIO = "AUDIO",
4
+ PDF = "PDF"
5
+ }
@@ -0,0 +1,10 @@
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["AUDIO"] = "AUDIO";
8
+ MediaType["PDF"] = "PDF";
9
+ })(MediaType = exports.MediaType || (exports.MediaType = {}));
10
+ //# 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,SAIX;AAJD,WAAY,SAAS;IACnB,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,wBAAW,CAAA;AACb,CAAC,EAJW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAIpB"}
@@ -0,0 +1,2 @@
1
+ export * from './MediaProperties';
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"), 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,oDAAkC;AAClC,8CAA4B"}
@@ -0,0 +1 @@
1
+ export * from './entities';
@@ -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("./entities"), exports);
18
+ //# 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"}
@@ -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,14 @@ 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
+ __metadata("design:type", helio_play_1.HelioPlayPropertiesDto)
25
+ ], CreatePaystreamDto.prototype, "helioPlayProperties", void 0);
20
26
  __decorate([
21
27
  (0, class_validator_1.IsOptional)(),
22
28
  (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;CAiB9D;AAhBC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAsB,CAAC;8BACb,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;AAhBlB,gDAiBC"}
@@ -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,14 @@ 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
+ __metadata("design:type", helio_play_1.HelioPlayPropertiesDto)
25
+ ], UpdatePaystreamDto.prototype, "helioPlayProperties", void 0);
20
26
  __decorate([
21
27
  (0, class_transformer_1.Type)(() => stream_features_1.StreamFeaturesDto),
22
28
  (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;CAiB9D;AAhBC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAsB,CAAC;8BACb,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;AAhBnB,gDAiBC"}
@@ -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"}