@heliofi/common 0.1.398 → 0.1.399
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/domain/model/auth/entities/AuthUser.d.ts +1 -0
- package/dist/src/domain/model/countdown-details/dtos/countdownDetails.dto.d.ts +3 -0
- package/dist/src/domain/model/countdown-details/dtos/countdownDetails.dto.js +24 -0
- package/dist/src/domain/model/countdown-details/dtos/countdownDetails.dto.js.map +1 -0
- package/dist/src/domain/model/countdown-details/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/countdown-details/dtos/index.js +18 -0
- package/dist/src/domain/model/countdown-details/dtos/index.js.map +1 -0
- package/dist/src/domain/model/countdown-details/entities/CountdownDetails.entity.d.ts +3 -0
- package/dist/src/domain/model/countdown-details/entities/CountdownDetails.entity.js +7 -0
- package/dist/src/domain/model/countdown-details/entities/CountdownDetails.entity.js.map +1 -0
- package/dist/src/domain/model/countdown-details/entities/index.d.ts +1 -0
- package/dist/src/domain/model/countdown-details/entities/index.js +18 -0
- package/dist/src/domain/model/countdown-details/entities/index.js.map +1 -0
- package/dist/src/domain/model/countdown-details/index.d.ts +2 -0
- package/dist/src/domain/model/countdown-details/index.js +19 -0
- package/dist/src/domain/model/countdown-details/index.js.map +1 -0
- package/dist/src/domain/model/event-details/dtos/eventDetails.dto.d.ts +4 -0
- package/dist/src/domain/model/event-details/dtos/eventDetails.dto.js +29 -0
- package/dist/src/domain/model/event-details/dtos/eventDetails.dto.js.map +1 -0
- package/dist/src/domain/model/event-details/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/event-details/dtos/index.js +18 -0
- package/dist/src/domain/model/event-details/dtos/index.js.map +1 -0
- package/dist/src/domain/model/event-details/entities/EventDetails.entity.d.ts +4 -0
- package/dist/src/domain/model/event-details/entities/EventDetails.entity.js +7 -0
- package/dist/src/domain/model/event-details/entities/EventDetails.entity.js.map +1 -0
- package/dist/src/domain/model/event-details/entities/index.d.ts +1 -0
- package/dist/src/domain/model/event-details/entities/index.js +18 -0
- package/dist/src/domain/model/event-details/entities/index.js.map +1 -0
- package/dist/src/domain/model/event-details/index.d.ts +2 -0
- package/dist/src/domain/model/event-details/index.js +19 -0
- package/dist/src/domain/model/event-details/index.js.map +1 -0
- package/dist/src/domain/model/index.d.ts +2 -1
- package/dist/src/domain/model/index.js +2 -1
- package/dist/src/domain/model/index.js.map +1 -1
- package/dist/src/domain/model/link-features/dtos/linkFeatures.dto.d.ts +14 -0
- package/dist/src/domain/model/link-features/dtos/linkFeatures.dto.js +143 -0
- package/dist/src/domain/model/link-features/dtos/linkFeatures.dto.js.map +1 -0
- package/dist/src/domain/model/payment-request/dtos/createPaymentRequest.dto.d.ts +3 -1
- package/dist/src/domain/model/payment-request/dtos/createPaymentRequest.dto.js +10 -3
- package/dist/src/domain/model/payment-request/dtos/createPaymentRequest.dto.js.map +1 -1
- package/dist/src/domain/model/payment-request/dtos/createPaymentRequestWithApi.dto.d.ts +1 -1
- package/dist/src/domain/model/payment-request/dtos/createPaymentRequestWithApi.dto.js +3 -3
- package/dist/src/domain/model/payment-request/dtos/createPaymentRequestWithApi.dto.js.map +1 -1
- package/dist/src/domain/model/payment-request/dtos/updatePaymentRequest.dto.d.ts +1 -1
- package/dist/src/domain/model/payment-request/dtos/updatePaymentRequest.dto.js +3 -3
- package/dist/src/domain/model/payment-request/dtos/updatePaymentRequest.dto.js.map +1 -1
- package/dist/src/domain/model/payment-request/entities/BasePaymentRequest.d.ts +3 -1
- package/dist/src/domain/model/payment-request/entities/BasePaymentRequest.js.map +1 -1
- package/dist/src/domain/model/payment-request-features/dtos/basePaymentRequestFeatures.dto.d.ts +1 -0
- package/dist/src/domain/model/payment-request-features/dtos/basePaymentRequestFeatures.dto.js +5 -0
- package/dist/src/domain/model/payment-request-features/dtos/basePaymentRequestFeatures.dto.js.map +1 -1
- package/dist/src/domain/model/payment-request-features/dtos/paymentRequestFeatures.dto.d.ts +22 -0
- package/dist/src/domain/model/payment-request-features/dtos/paymentRequestFeatures.dto.js +117 -0
- package/dist/src/domain/model/payment-request-features/dtos/paymentRequestFeatures.dto.js.map +1 -0
- package/dist/src/domain/model/payment-request-features/entities/PaymentRequestFeatures.d.ts +1 -0
- package/dist/src/domain/model/payment-request-features/entities/PaymentRequestFeatures.js.map +1 -1
- package/dist/src/domain/model/stream-features/dtos/streamFeaturesDto.d.ts +4 -0
- package/dist/src/domain/model/stream-features/dtos/streamFeaturesDto.js +43 -0
- package/dist/src/domain/model/stream-features/dtos/streamFeaturesDto.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,24 @@
|
|
|
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.CountdownDetailsDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class CountdownDetailsDto {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_transformer_1.Type)(() => Date),
|
|
19
|
+
(0, class_validator_1.IsDate)(),
|
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
21
|
+
__metadata("design:type", Date)
|
|
22
|
+
], CountdownDetailsDto.prototype, "startDatetime", void 0);
|
|
23
|
+
exports.CountdownDetailsDto = CountdownDetailsDto;
|
|
24
|
+
//# sourceMappingURL=countdownDetails.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"countdownDetails.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/countdown-details/dtos/countdownDetails.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAyC;AACzC,qDAAqD;AAErD,MAAa,mBAAmB;CAK/B;AAJC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,IAAI,CAAC;IAChB,IAAA,wBAAM,GAAE;IACR,IAAA,4BAAU,GAAE;8BACE,IAAI;0DAAC;AAJtB,kDAKC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './countdownDetails.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("./countdownDetails.dto"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/countdown-details/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CountdownDetails.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/countdown-details/entities/CountdownDetails.entity.ts"],"names":[],"mappings":";;;AAAA,MAAa,gBAAgB;CAE5B;AAFD,4CAEC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CountdownDetails.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("./CountdownDetails.entity"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/countdown-details/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C"}
|
|
@@ -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/countdown-details/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,6CAA2B"}
|
|
@@ -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.EventDetailsDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
class EventDetailsDto {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_transformer_1.Type)(() => Date),
|
|
19
|
+
(0, class_validator_1.IsDate)(),
|
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
21
|
+
__metadata("design:type", Date)
|
|
22
|
+
], EventDetailsDto.prototype, "datetime", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_validator_1.IsString)(),
|
|
25
|
+
(0, class_validator_1.IsOptional)(),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], EventDetailsDto.prototype, "location", void 0);
|
|
28
|
+
exports.EventDetailsDto = EventDetailsDto;
|
|
29
|
+
//# sourceMappingURL=eventDetails.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eventDetails.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/event-details/dtos/eventDetails.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2E;AAC3E,yDAAyC;AAEzC,MAAa,eAAe;CAS3B;AARC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,IAAI,CAAC;IAChB,IAAA,wBAAM,GAAE;IACR,IAAA,4BAAU,GAAE;8BACH,IAAI;iDAAC;AAEf;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACK;AARpB,0CASC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './eventDetails.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("./eventDetails.dto"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/event-details/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventDetails.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/event-details/entities/EventDetails.entity.ts"],"names":[],"mappings":";;;AAAA,MAAa,YAAY;CAIxB;AAJD,oCAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './EventDetails.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("./EventDetails.entity"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/event-details/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC"}
|
|
@@ -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/event-details/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,6CAA2B"}
|
|
@@ -103,5 +103,6 @@ __exportStar(require("./affiliates"), exports);
|
|
|
103
103
|
__exportStar(require("./claim-details"), exports);
|
|
104
104
|
__exportStar(require("./claim"), exports);
|
|
105
105
|
__exportStar(require("./fee-payer"), exports);
|
|
106
|
-
__exportStar(require("./
|
|
106
|
+
__exportStar(require("./event-details"), exports);
|
|
107
|
+
__exportStar(require("./countdown-details"), exports);
|
|
107
108
|
//# 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,yDAAuC;AACvC,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;AAC1B,mDAAiC;AACjC,mDAAiC;AACjC,2CAAyB;AACzB,kDAAgC;AAChC,2DAAyC;AACzC,6CAA2B;AAC3B,mDAAiC;AACjC,+CAA6B;AAC7B,uDAAqC;AACrC,iDAA+B;AAC/B,8CAA4B;AAC5B,8CAA4B;AAC5B,qDAAmC;AACnC,qDAAmC;AACnC,qEAAmD;AACnD,oEAAkD;AAClD,oDAAkC;AAClC,yDAAuC;AACvC,iDAA+B;AAC/B,4CAA0B;AAC1B,+CAA6B;AAC7B,kDAAgC;AAChC,0CAAwB;AACxB,8CAA4B;AAC5B,
|
|
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,yDAAuC;AACvC,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;AAC1B,mDAAiC;AACjC,mDAAiC;AACjC,2CAAyB;AACzB,kDAAgC;AAChC,2DAAyC;AACzC,6CAA2B;AAC3B,mDAAiC;AACjC,+CAA6B;AAC7B,uDAAqC;AACrC,iDAA+B;AAC/B,8CAA4B;AAC5B,8CAA4B;AAC5B,qDAAmC;AACnC,qDAAmC;AACnC,qEAAmD;AACnD,oEAAkD;AAClD,oDAAkC;AAClC,yDAAuC;AACvC,iDAA+B;AAC/B,4CAA0B;AAC1B,+CAA6B;AAC7B,kDAAgC;AAChC,0CAAwB;AACxB,8CAA4B;AAC5B,kDAAgC;AAChC,sDAAoC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BasePaymentRequestFeaturesDto } from '../../payment-request-features';
|
|
2
|
+
export declare class LinkFeaturesDto extends BasePaymentRequestFeaturesDto {
|
|
3
|
+
splitRevenue?: boolean;
|
|
4
|
+
splitEqually?: boolean;
|
|
5
|
+
canChangeQuantity?: boolean;
|
|
6
|
+
requireQuantityLimits?: boolean;
|
|
7
|
+
canChangePrice?: boolean;
|
|
8
|
+
isHelioPlay?: boolean;
|
|
9
|
+
isEscrowed?: boolean;
|
|
10
|
+
showDiscountCode?: boolean;
|
|
11
|
+
requireDiscordQuantityLimit?: boolean;
|
|
12
|
+
requireAllowlist?: boolean;
|
|
13
|
+
requireAirdrop?: boolean;
|
|
14
|
+
}
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var __decorate =
|
|
3
|
+
(this && this.__decorate) ||
|
|
4
|
+
function (decorators, target, key, desc) {
|
|
5
|
+
var c = arguments.length,
|
|
6
|
+
r =
|
|
7
|
+
c < 3
|
|
8
|
+
? target
|
|
9
|
+
: desc === null
|
|
10
|
+
? (desc = Object.getOwnPropertyDescriptor(target, key))
|
|
11
|
+
: desc,
|
|
12
|
+
d;
|
|
13
|
+
if (typeof Reflect === 'object' && typeof Reflect.decorate === 'function')
|
|
14
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
15
|
+
else
|
|
16
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
17
|
+
if ((d = decorators[i]))
|
|
18
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
19
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
20
|
+
};
|
|
21
|
+
var __metadata =
|
|
22
|
+
(this && this.__metadata) ||
|
|
23
|
+
function (k, v) {
|
|
24
|
+
if (typeof Reflect === 'object' && typeof Reflect.metadata === 'function')
|
|
25
|
+
return Reflect.metadata(k, v);
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
28
|
+
exports.LinkFeaturesDto = void 0;
|
|
29
|
+
const class_validator_1 = require('class-validator');
|
|
30
|
+
const payment_request_features_1 = require('../../payment-request-features');
|
|
31
|
+
class LinkFeaturesDto extends payment_request_features_1.BasePaymentRequestFeaturesDto {}
|
|
32
|
+
__decorate(
|
|
33
|
+
[
|
|
34
|
+
(0, class_validator_1.IsBoolean)(),
|
|
35
|
+
(0, class_validator_1.IsOptional)(),
|
|
36
|
+
__metadata('design:type', Boolean),
|
|
37
|
+
],
|
|
38
|
+
LinkFeaturesDto.prototype,
|
|
39
|
+
'splitRevenue',
|
|
40
|
+
void 0,
|
|
41
|
+
);
|
|
42
|
+
__decorate(
|
|
43
|
+
[
|
|
44
|
+
(0, class_validator_1.IsBoolean)(),
|
|
45
|
+
(0, class_validator_1.IsOptional)(),
|
|
46
|
+
__metadata('design:type', Boolean),
|
|
47
|
+
],
|
|
48
|
+
LinkFeaturesDto.prototype,
|
|
49
|
+
'splitEqually',
|
|
50
|
+
void 0,
|
|
51
|
+
);
|
|
52
|
+
__decorate(
|
|
53
|
+
[
|
|
54
|
+
(0, class_validator_1.IsBoolean)(),
|
|
55
|
+
(0, class_validator_1.IsOptional)(),
|
|
56
|
+
__metadata('design:type', Boolean),
|
|
57
|
+
],
|
|
58
|
+
LinkFeaturesDto.prototype,
|
|
59
|
+
'canChangeQuantity',
|
|
60
|
+
void 0,
|
|
61
|
+
);
|
|
62
|
+
__decorate(
|
|
63
|
+
[
|
|
64
|
+
(0, class_validator_1.IsBoolean)(),
|
|
65
|
+
(0, class_validator_1.IsOptional)(),
|
|
66
|
+
__metadata('design:type', Boolean),
|
|
67
|
+
],
|
|
68
|
+
LinkFeaturesDto.prototype,
|
|
69
|
+
'requireQuantityLimits',
|
|
70
|
+
void 0,
|
|
71
|
+
);
|
|
72
|
+
__decorate(
|
|
73
|
+
[
|
|
74
|
+
(0, class_validator_1.IsBoolean)(),
|
|
75
|
+
(0, class_validator_1.IsOptional)(),
|
|
76
|
+
__metadata('design:type', Boolean),
|
|
77
|
+
],
|
|
78
|
+
LinkFeaturesDto.prototype,
|
|
79
|
+
'canChangePrice',
|
|
80
|
+
void 0,
|
|
81
|
+
);
|
|
82
|
+
__decorate(
|
|
83
|
+
[
|
|
84
|
+
(0, class_validator_1.IsBoolean)(),
|
|
85
|
+
(0, class_validator_1.IsOptional)(),
|
|
86
|
+
__metadata('design:type', Boolean),
|
|
87
|
+
],
|
|
88
|
+
LinkFeaturesDto.prototype,
|
|
89
|
+
'isHelioPlay',
|
|
90
|
+
void 0,
|
|
91
|
+
);
|
|
92
|
+
__decorate(
|
|
93
|
+
[
|
|
94
|
+
(0, class_validator_1.IsOptional)(),
|
|
95
|
+
(0, class_validator_1.IsBoolean)(),
|
|
96
|
+
__metadata('design:type', Boolean),
|
|
97
|
+
],
|
|
98
|
+
LinkFeaturesDto.prototype,
|
|
99
|
+
'isEscrowed',
|
|
100
|
+
void 0,
|
|
101
|
+
);
|
|
102
|
+
__decorate(
|
|
103
|
+
[
|
|
104
|
+
(0, class_validator_1.IsBoolean)(),
|
|
105
|
+
(0, class_validator_1.IsOptional)(),
|
|
106
|
+
__metadata('design:type', Boolean),
|
|
107
|
+
],
|
|
108
|
+
LinkFeaturesDto.prototype,
|
|
109
|
+
'showDiscountCode',
|
|
110
|
+
void 0,
|
|
111
|
+
);
|
|
112
|
+
__decorate(
|
|
113
|
+
[
|
|
114
|
+
(0, class_validator_1.IsBoolean)(),
|
|
115
|
+
(0, class_validator_1.IsOptional)(),
|
|
116
|
+
__metadata('design:type', Boolean),
|
|
117
|
+
],
|
|
118
|
+
LinkFeaturesDto.prototype,
|
|
119
|
+
'requireDiscordQuantityLimit',
|
|
120
|
+
void 0,
|
|
121
|
+
);
|
|
122
|
+
__decorate(
|
|
123
|
+
[
|
|
124
|
+
(0, class_validator_1.IsBoolean)(),
|
|
125
|
+
(0, class_validator_1.IsOptional)(),
|
|
126
|
+
__metadata('design:type', Boolean),
|
|
127
|
+
],
|
|
128
|
+
LinkFeaturesDto.prototype,
|
|
129
|
+
'requireAllowlist',
|
|
130
|
+
void 0,
|
|
131
|
+
);
|
|
132
|
+
__decorate(
|
|
133
|
+
[
|
|
134
|
+
(0, class_validator_1.IsBoolean)(),
|
|
135
|
+
(0, class_validator_1.IsOptional)(),
|
|
136
|
+
__metadata('design:type', Boolean),
|
|
137
|
+
],
|
|
138
|
+
LinkFeaturesDto.prototype,
|
|
139
|
+
'requireAirdrop',
|
|
140
|
+
void 0,
|
|
141
|
+
);
|
|
142
|
+
exports.LinkFeaturesDto = LinkFeaturesDto;
|
|
143
|
+
//# sourceMappingURL=linkFeatures.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"linkFeatures.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/link-features/dtos/linkFeatures.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAwD;AACxD,6EAA2E;AAE3E,MAAa,eAAgB,SAAQ,oDAAyB;CA4C7D;AA3CC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;qDACU;AAEvB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;qDACU;AAEvB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;0DACe;AAE5B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;8DACmB;AAEhC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;uDACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;oDACS;AAEtB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;mDACS;AAErB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yDACc;AAE3B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;oEACyB;AAEtC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yDACc;AAE3B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;uDACY;AA3C3B,0CA4CC"}
|
|
@@ -8,7 +8,8 @@ import { RecipientDto } from '../../recipient';
|
|
|
8
8
|
import { DiscordAuthDetailsDto } from '../../discord-auth-details';
|
|
9
9
|
import { TradingViewIndicatorDto } from '../../trading-view-details';
|
|
10
10
|
import { AffiliateDetailsDto } from '../../affiliates';
|
|
11
|
-
import { EventDetailsDto } from '../../
|
|
11
|
+
import { EventDetailsDto } from '../../event-details';
|
|
12
|
+
import { CountdownDetailsDto } from '../../countdown-details';
|
|
12
13
|
export declare class CreatePaymentRequestDto {
|
|
13
14
|
company: string;
|
|
14
15
|
name: string;
|
|
@@ -38,4 +39,5 @@ export declare class CreatePaymentRequestDto {
|
|
|
38
39
|
price?: string;
|
|
39
40
|
pricingCurrency?: string;
|
|
40
41
|
eventDetails?: EventDetailsDto;
|
|
42
|
+
countdownDetails?: CountdownDetailsDto;
|
|
41
43
|
}
|
|
@@ -23,7 +23,8 @@ const recipient_1 = require("../../recipient");
|
|
|
23
23
|
const discord_auth_details_1 = require("../../discord-auth-details");
|
|
24
24
|
const trading_view_details_1 = require("../../trading-view-details");
|
|
25
25
|
const affiliates_1 = require("../../affiliates");
|
|
26
|
-
const
|
|
26
|
+
const event_details_1 = require("../../event-details");
|
|
27
|
+
const countdown_details_1 = require("../../countdown-details");
|
|
27
28
|
class CreatePaymentRequestDto {
|
|
28
29
|
constructor() {
|
|
29
30
|
this.notifySenderByEmail = false;
|
|
@@ -189,10 +190,16 @@ __decorate([
|
|
|
189
190
|
__metadata("design:type", String)
|
|
190
191
|
], CreatePaymentRequestDto.prototype, "pricingCurrency", void 0);
|
|
191
192
|
__decorate([
|
|
192
|
-
(0, class_transformer_1.Type)(() =>
|
|
193
|
+
(0, class_transformer_1.Type)(() => event_details_1.EventDetailsDto),
|
|
193
194
|
(0, class_validator_1.IsOptional)(),
|
|
194
195
|
(0, class_validator_1.ValidateNested)(),
|
|
195
|
-
__metadata("design:type",
|
|
196
|
+
__metadata("design:type", event_details_1.EventDetailsDto)
|
|
196
197
|
], CreatePaymentRequestDto.prototype, "eventDetails", void 0);
|
|
198
|
+
__decorate([
|
|
199
|
+
(0, class_transformer_1.Type)(() => countdown_details_1.CountdownDetailsDto),
|
|
200
|
+
(0, class_validator_1.IsOptional)(),
|
|
201
|
+
(0, class_validator_1.ValidateNested)(),
|
|
202
|
+
__metadata("design:type", countdown_details_1.CountdownDetailsDto)
|
|
203
|
+
], CreatePaymentRequestDto.prototype, "countdownDetails", void 0);
|
|
197
204
|
exports.CreatePaymentRequestDto = CreatePaymentRequestDto;
|
|
198
205
|
//# sourceMappingURL=createPaymentRequest.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createPaymentRequest.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/dtos/createPaymentRequest.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAYyB;AACzB,yDAAoD;AACpD,2CAA2C;AAC3C,2CAA2C;AAC3C,yDAAwD;AACxD,mFAAgF;AAChF,iDAAoD;AACpD,6CAA4C;AAC5C,oDAAgD;AAChD,+CAA+C;AAC/C,qEAAmE;AACnE,qEAAqE;AACrE,iDAAuD;AACvD,
|
|
1
|
+
{"version":3,"file":"createPaymentRequest.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/dtos/createPaymentRequest.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAYyB;AACzB,yDAAoD;AACpD,2CAA2C;AAC3C,2CAA2C;AAC3C,yDAAwD;AACxD,mFAAgF;AAChF,iDAAoD;AACpD,6CAA4C;AAC5C,oDAAgD;AAChD,+CAA+C;AAC/C,qEAAmE;AACnE,qEAAqE;AACrE,iDAAuD;AACvD,uDAAsD;AACtD,+DAA8D;AAE9D,MAAa,uBAAuB;IAApC;QA2BE,wBAAmB,GAAa,KAAK,CAAC;QAItC,0BAAqB,GAAa,KAAK,CAAC;QAIxC,mBAAc,GAAa,KAAK,CAAC;IAmHnC,CAAC;CAAA;AArJC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;wDACG;AAEhB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACA;AAEb;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4DACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACE;AAEf;IAAC,IAAA,4BAAU,EAAC,CAAC,MAAM,EAAE,EAAE;QACrB,OAAO,CAAC,MAAM,CAAC,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE,cAAc,CAAC;IAC7D,CAAC,CAAC;IACD,IAAA,sBAAS,EAAC,EAAE,EAAE,EAAE,OAAO,EAAE,8BAA8B,EAAE,CAAC;IAC1D,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;gEACf;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;oEACyB;AAEtC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;sEAC2B;AAExC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DACoB;AAEjC;IAAC,IAAA,yBAAO,GAAE;IACT,IAAA,0BAAQ,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACxB,IAAA,4BAAU,GAAE;;+DACa;AAK1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yDACK;AAKlB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,6BAAgB,CAAC;;2DACK;AAE9B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yDACM;AAEnB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;wDACK;AAKlB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uDACG;AAEhB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,gCAAc,GAAE;8BACP,oBAAU;wDAAC;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gEACY;AAEzB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,gCAAc,GAAE;8BACP,oBAAU;wDAAQ;AAE5B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qEACiB;AAE9B;IAAC,IAAA,yBAAO,GAAE;IACT,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,4CAAqB,CAAC;IACjC,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;;mEAC4B;AAE7C;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,qBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,qBAAU;wDAAC;AAErB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,yDAA2B,CAAC;IACvC,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACU,yDAA2B;yEAAC;AAEvD;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;IAC5B,IAAA,4BAAU,GAAE;8BACG,iCAAgB;8DAAC;AAEjC;IAAC,IAAA,yBAAO,GAAE;IACT,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,wBAAY,CAAC;IACxB,IAAA,4BAAU,GAAE;IACZ,IAAA,8BAAY,EAAC,CAAC,CAAC;IACf,IAAA,gCAAc,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;2DACH;AAE5B;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8CAAuB,CAAC;IACnC,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;;sEACiC;AAElD;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gCAAmB,CAAC;IAC/B,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACE,gCAAmB;iEAAC;AAEvC;IAAC,IAAA,4BAAU,EAAC,CAAC,MAAM,EAAE,EAAE;QACrB,OAAO,CAAC,MAAM,CAAC,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE,cAAc,CAAC;IAC7D,CAAC,CAAC;IACD,IAAA,sBAAS,EAAC,EAAE,EAAE,EAAE,OAAO,EAAE,8BAA8B,EAAE,CAAC;IAC1D,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;sDACzB;AAGf;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;gEACa;AAEzB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+BAAe,CAAC;IAC3B,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACF,+BAAe;6DAAC;AAE/B;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,uCAAmB,CAAC;IAC/B,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACE,uCAAmB;iEAAC;AArJzC,0DAsJC"}
|
|
@@ -8,7 +8,7 @@ import { FixedCurrencyDto } from '../../fixed-currency';
|
|
|
8
8
|
import { RecipientDto } from '../../recipient';
|
|
9
9
|
import { TradingViewIndicatorDto } from '../../trading-view-details';
|
|
10
10
|
import { AffiliateDetailsDto } from '../../affiliates';
|
|
11
|
-
import { EventDetailsDto } from '../../
|
|
11
|
+
import { EventDetailsDto } from '../../event-details';
|
|
12
12
|
export declare class CreatePaymentRequestWithApiDto implements Omit<CreatePaymentRequestDto, 'company'> {
|
|
13
13
|
name: string;
|
|
14
14
|
description?: string;
|
|
@@ -22,7 +22,7 @@ const fixed_currency_1 = require("../../fixed-currency");
|
|
|
22
22
|
const recipient_1 = require("../../recipient");
|
|
23
23
|
const trading_view_details_1 = require("../../trading-view-details");
|
|
24
24
|
const affiliates_1 = require("../../affiliates");
|
|
25
|
-
const
|
|
25
|
+
const event_details_1 = require("../../event-details");
|
|
26
26
|
class CreatePaymentRequestWithApiDto {
|
|
27
27
|
constructor() {
|
|
28
28
|
this.notifySenderByEmail = false;
|
|
@@ -162,10 +162,10 @@ __decorate([
|
|
|
162
162
|
__metadata("design:type", String)
|
|
163
163
|
], CreatePaymentRequestWithApiDto.prototype, "pricingCurrency", void 0);
|
|
164
164
|
__decorate([
|
|
165
|
-
(0, class_transformer_1.Type)(() =>
|
|
165
|
+
(0, class_transformer_1.Type)(() => event_details_1.EventDetailsDto),
|
|
166
166
|
(0, class_validator_1.IsOptional)(),
|
|
167
167
|
(0, class_validator_1.ValidateNested)(),
|
|
168
|
-
__metadata("design:type",
|
|
168
|
+
__metadata("design:type", event_details_1.EventDetailsDto)
|
|
169
169
|
], CreatePaymentRequestWithApiDto.prototype, "eventDetails", void 0);
|
|
170
170
|
exports.CreatePaymentRequestWithApiDto = CreatePaymentRequestWithApiDto;
|
|
171
171
|
//# sourceMappingURL=createPaymentRequestWithApi.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createPaymentRequestWithApi.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/dtos/createPaymentRequestWithApi.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAWyB;AACzB,yDAAoD;AAEpD,oDAAgD;AAChD,2CAA2C;AAC3C,2CAA2C;AAC3C,qEAAmE;AACnE,6CAA4C;AAC5C,mFAAgF;AAChF,yDAAwD;AACxD,+CAA+C;AAC/C,qEAAqE;AACrE,iDAAuD;AACvD,
|
|
1
|
+
{"version":3,"file":"createPaymentRequestWithApi.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/dtos/createPaymentRequestWithApi.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -7,7 +7,7 @@ import { NftDropDto } from '../../nft-drop';
|
|
|
7
7
|
import { RecipientDto } from '../../recipient';
|
|
8
8
|
import { DiscordAuthDetailsDto } from '../../discord-auth-details';
|
|
9
9
|
import { TradingViewIndicatorDto } from '../../trading-view-details';
|
|
10
|
-
import { EventDetailsDto } from '../../
|
|
10
|
+
import { EventDetailsDto } from '../../event-details';
|
|
11
11
|
export declare class UpdatePaymentRequestDto {
|
|
12
12
|
name?: string;
|
|
13
13
|
description?: string;
|
|
@@ -22,7 +22,7 @@ const decorators_1 = require("../../../decorators");
|
|
|
22
22
|
const recipient_1 = require("../../recipient");
|
|
23
23
|
const discord_auth_details_1 = require("../../discord-auth-details");
|
|
24
24
|
const trading_view_details_1 = require("../../trading-view-details");
|
|
25
|
-
const
|
|
25
|
+
const event_details_1 = require("../../event-details");
|
|
26
26
|
class UpdatePaymentRequestDto {
|
|
27
27
|
}
|
|
28
28
|
__decorate([
|
|
@@ -160,10 +160,10 @@ __decorate([
|
|
|
160
160
|
__metadata("design:type", String)
|
|
161
161
|
], UpdatePaymentRequestDto.prototype, "price", void 0);
|
|
162
162
|
__decorate([
|
|
163
|
-
(0, class_transformer_1.Type)(() =>
|
|
163
|
+
(0, class_transformer_1.Type)(() => event_details_1.EventDetailsDto),
|
|
164
164
|
(0, class_validator_1.IsOptional)(),
|
|
165
165
|
(0, class_validator_1.ValidateNested)(),
|
|
166
|
-
__metadata("design:type",
|
|
166
|
+
__metadata("design:type", event_details_1.EventDetailsDto)
|
|
167
167
|
], UpdatePaymentRequestDto.prototype, "eventDetails", void 0);
|
|
168
168
|
exports.UpdatePaymentRequestDto = UpdatePaymentRequestDto;
|
|
169
169
|
//# sourceMappingURL=updatePaymentRequest.dto.js.map
|