@heliofi/common 0.1.602 → 0.1.604
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/constants/template.d.ts +2 -1
- package/dist/src/domain/constants/template.js +1 -0
- package/dist/src/domain/constants/template.js.map +1 -1
- package/dist/src/domain/model/blink/dtos/createBlink.dto.d.ts +7 -0
- package/dist/src/domain/model/blink/dtos/createBlink.dto.js +29 -0
- package/dist/src/domain/model/blink/dtos/createBlink.dto.js.map +1 -1
- package/dist/src/domain/model/blink/dtos/createBlinkFeatures.dto.d.ts +11 -0
- package/dist/src/domain/model/blink/dtos/createBlinkFeatures.dto.js +62 -0
- package/dist/src/domain/model/blink/dtos/createBlinkFeatures.dto.js.map +1 -0
- package/dist/src/domain/model/blink/entities/BaseBlink.entity.d.ts +17 -0
- package/dist/src/domain/model/blink/entities/BaseBlink.entity.js +22 -0
- package/dist/src/domain/model/blink/entities/BaseBlink.entity.js.map +1 -0
- package/dist/src/domain/model/blink/entities/Blink.entity.d.ts +14 -0
- package/dist/src/domain/model/blink/entities/Blink.entity.js +8 -0
- package/dist/src/domain/model/blink/entities/Blink.entity.js.map +1 -0
- package/dist/src/domain/model/blink/entities/BlinkFeatures.entity.d.ts +12 -0
- package/dist/src/domain/model/blink/entities/BlinkFeatures.entity.js +8 -0
- package/dist/src/domain/model/blink/entities/BlinkFeatures.entity.js.map +1 -0
- package/dist/src/domain/model/blink/entities/index.d.ts +3 -1
- package/dist/src/domain/model/blink/entities/index.js +3 -1
- package/dist/src/domain/model/blink/entities/index.js.map +1 -1
- package/dist/src/domain/model/paylink/dtos/createPaylinkWithApi.dto.d.ts +1 -0
- package/dist/src/domain/model/paylink/dtos/createPaylinkWithApi.dto.js +6 -0
- package/dist/src/domain/model/paylink/dtos/createPaylinkWithApi.dto.js.map +1 -1
- package/dist/src/domain/model/transaction-meta/constants/TransactionType.d.ts +2 -1
- package/dist/src/domain/model/transaction-meta/constants/TransactionType.js +1 -0
- package/dist/src/domain/model/transaction-meta/constants/TransactionType.js.map +1 -1
- package/dist/src/domain/model/userGroups/entities/UserGroupPermissions.d.ts +6 -1
- package/dist/src/domain/model/userGroups/entities/UserGroupPermissions.js +5 -0
- package/dist/src/domain/model/userGroups/entities/UserGroupPermissions.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template.js","sourceRoot":"","sources":["../../../../src/domain/constants/template.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"template.js","sourceRoot":"","sources":["../../../../src/domain/constants/template.ts"],"names":[],"mappings":";;;AAAA,IAAY,QAkBX;AAlBD,WAAY,QAAQ;IAClB,+BAAmB,CAAA;IACnB,yCAA6B,CAAA;IAC7B,iCAAqB,CAAA;IACrB,qCAAyB,CAAA;IACzB,2BAAe,CAAA;IACf,qDAAyC,CAAA;IACzC,+BAAmB,CAAA;IACnB,iCAAqB,CAAA;IACrB,yCAA6B,CAAA;IAC7B,yCAA6B,CAAA;IAC7B,2BAAe,CAAA;IACf,yCAA6B,CAAA;IAC7B,2BAAe,CAAA;IACf,6BAAiB,CAAA;IACjB,6BAAiB,CAAA;IACjB,+BAAmB,CAAA;IACnB,2BAAe,CAAA;AACjB,CAAC,EAlBW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAkBnB"}
|
|
@@ -1,9 +1,16 @@
|
|
|
1
|
+
import { CreateBlinkFeaturesDto } from './createBlinkFeatures.dto';
|
|
2
|
+
import { RecipientDto } from '../../recipient';
|
|
3
|
+
import { ContentDto } from '../../content';
|
|
1
4
|
export declare class CreateBlinkDto {
|
|
5
|
+
features: CreateBlinkFeaturesDto;
|
|
2
6
|
name: string;
|
|
3
7
|
description: string;
|
|
4
8
|
bannerImage: string;
|
|
5
9
|
price: string;
|
|
6
10
|
buttonText: string;
|
|
11
|
+
disabledButtonText?: string;
|
|
7
12
|
creatorPK: string;
|
|
13
|
+
recipients: RecipientDto[];
|
|
14
|
+
content?: ContentDto;
|
|
8
15
|
limit?: number;
|
|
9
16
|
}
|
|
@@ -11,8 +11,18 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.CreateBlinkDto = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
const createBlinkFeatures_dto_1 = require("./createBlinkFeatures.dto");
|
|
16
|
+
const recipient_1 = require("../../recipient");
|
|
17
|
+
const content_1 = require("../../content");
|
|
14
18
|
class CreateBlinkDto {
|
|
15
19
|
}
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
22
|
+
(0, class_transformer_1.Type)(() => createBlinkFeatures_dto_1.CreateBlinkFeaturesDto),
|
|
23
|
+
(0, class_validator_1.ValidateNested)(),
|
|
24
|
+
__metadata("design:type", createBlinkFeatures_dto_1.CreateBlinkFeaturesDto)
|
|
25
|
+
], CreateBlinkDto.prototype, "features", void 0);
|
|
16
26
|
__decorate([
|
|
17
27
|
(0, class_validator_1.IsString)(),
|
|
18
28
|
(0, class_validator_1.IsNotEmpty)(),
|
|
@@ -38,11 +48,30 @@ __decorate([
|
|
|
38
48
|
(0, class_validator_1.IsNotEmpty)(),
|
|
39
49
|
__metadata("design:type", String)
|
|
40
50
|
], CreateBlinkDto.prototype, "buttonText", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_validator_1.IsString)(),
|
|
53
|
+
(0, class_validator_1.IsOptional)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], CreateBlinkDto.prototype, "disabledButtonText", void 0);
|
|
41
56
|
__decorate([
|
|
42
57
|
(0, class_validator_1.IsString)(),
|
|
43
58
|
(0, class_validator_1.IsNotEmpty)(),
|
|
44
59
|
__metadata("design:type", String)
|
|
45
60
|
], CreateBlinkDto.prototype, "creatorPK", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, class_validator_1.IsArray)(),
|
|
63
|
+
(0, class_transformer_1.Type)(() => recipient_1.RecipientDto),
|
|
64
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
65
|
+
(0, class_validator_1.ArrayMinSize)(1),
|
|
66
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
67
|
+
__metadata("design:type", Array)
|
|
68
|
+
], CreateBlinkDto.prototype, "recipients", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, class_transformer_1.Type)(() => content_1.ContentDto),
|
|
71
|
+
(0, class_validator_1.IsOptional)(),
|
|
72
|
+
(0, class_validator_1.ValidateNested)(),
|
|
73
|
+
__metadata("design:type", content_1.ContentDto)
|
|
74
|
+
], CreateBlinkDto.prototype, "content", void 0);
|
|
46
75
|
__decorate([
|
|
47
76
|
(0, class_validator_1.IsNumber)(),
|
|
48
77
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createBlink.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/blink/dtos/createBlink.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"createBlink.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/blink/dtos/createBlink.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAQyB;AACzB,yDAAyC;AACzC,uEAAmE;AACnE,+CAA+C;AAC/C,2CAA2C;AAE3C,MAAa,cAAc;CAiD1B;AAhDC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gDAAsB,CAAC;IAClC,IAAA,gCAAc,GAAE;8BACP,gDAAsB;gDAAC;AAEjC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4CACA;AAEb;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACO;AAEpB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACO;AAEpB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;6CACC;AAEd;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACM;AAEnB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;0DACe;AAE5B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACK;AAElB;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;;kDACJ;AAE3B;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,oBAAU;+CAAC;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;6CACE;AAhDjB,wCAiDC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare class CreateBlinkFeaturesDto {
|
|
2
|
+
requireEmail?: boolean;
|
|
3
|
+
requireDiscordUsername?: boolean;
|
|
4
|
+
requireFullName?: boolean;
|
|
5
|
+
requireTwitterUsername?: boolean;
|
|
6
|
+
requireCountry?: boolean;
|
|
7
|
+
requireDeliveryAddress?: boolean;
|
|
8
|
+
requirePhoneNumber?: boolean;
|
|
9
|
+
requireProductDetails?: boolean;
|
|
10
|
+
requireMaxTransactions?: boolean;
|
|
11
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
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.CreateBlinkFeaturesDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class CreateBlinkFeaturesDto {
|
|
15
|
+
}
|
|
16
|
+
__decorate([
|
|
17
|
+
(0, class_validator_1.IsBoolean)(),
|
|
18
|
+
(0, class_validator_1.IsOptional)(),
|
|
19
|
+
__metadata("design:type", Boolean)
|
|
20
|
+
], CreateBlinkFeaturesDto.prototype, "requireEmail", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsBoolean)(),
|
|
23
|
+
(0, class_validator_1.IsOptional)(),
|
|
24
|
+
__metadata("design:type", Boolean)
|
|
25
|
+
], CreateBlinkFeaturesDto.prototype, "requireDiscordUsername", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, class_validator_1.IsBoolean)(),
|
|
28
|
+
(0, class_validator_1.IsOptional)(),
|
|
29
|
+
__metadata("design:type", Boolean)
|
|
30
|
+
], CreateBlinkFeaturesDto.prototype, "requireFullName", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_validator_1.IsBoolean)(),
|
|
33
|
+
(0, class_validator_1.IsOptional)(),
|
|
34
|
+
__metadata("design:type", Boolean)
|
|
35
|
+
], CreateBlinkFeaturesDto.prototype, "requireTwitterUsername", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, class_validator_1.IsBoolean)(),
|
|
38
|
+
(0, class_validator_1.IsOptional)(),
|
|
39
|
+
__metadata("design:type", Boolean)
|
|
40
|
+
], CreateBlinkFeaturesDto.prototype, "requireCountry", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_validator_1.IsBoolean)(),
|
|
43
|
+
(0, class_validator_1.IsOptional)(),
|
|
44
|
+
__metadata("design:type", Boolean)
|
|
45
|
+
], CreateBlinkFeaturesDto.prototype, "requireDeliveryAddress", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, class_validator_1.IsBoolean)(),
|
|
48
|
+
(0, class_validator_1.IsOptional)(),
|
|
49
|
+
__metadata("design:type", Boolean)
|
|
50
|
+
], CreateBlinkFeaturesDto.prototype, "requirePhoneNumber", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_validator_1.IsBoolean)(),
|
|
53
|
+
(0, class_validator_1.IsOptional)(),
|
|
54
|
+
__metadata("design:type", Boolean)
|
|
55
|
+
], CreateBlinkFeaturesDto.prototype, "requireProductDetails", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, class_validator_1.IsBoolean)(),
|
|
58
|
+
(0, class_validator_1.IsOptional)(),
|
|
59
|
+
__metadata("design:type", Boolean)
|
|
60
|
+
], CreateBlinkFeaturesDto.prototype, "requireMaxTransactions", void 0);
|
|
61
|
+
exports.CreateBlinkFeaturesDto = CreateBlinkFeaturesDto;
|
|
62
|
+
//# sourceMappingURL=createBlinkFeatures.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createBlinkFeatures.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/blink/dtos/createBlinkFeatures.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAwD;AAExD,MAAa,sBAAsB;CAoClC;AAnCC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;4DACU;AAEvB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;sEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DACa;AAE1B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;sEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;8DACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;sEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;kEACgB;AAE7B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;qEACmB;AAEhC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;sEACoB;AAnCnC,wDAoCC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Entity } from '../../entity';
|
|
2
|
+
import { BlinkFeatures } from './BlinkFeatures.entity';
|
|
3
|
+
import { Platform } from '../../../constants';
|
|
4
|
+
export declare class BaseBlink extends Entity {
|
|
5
|
+
price: bigint;
|
|
6
|
+
id: string;
|
|
7
|
+
name: string;
|
|
8
|
+
description: string;
|
|
9
|
+
buttonText: string;
|
|
10
|
+
disabledButtonText: string;
|
|
11
|
+
features: BlinkFeatures;
|
|
12
|
+
maxTransactions?: number;
|
|
13
|
+
platform: Platform;
|
|
14
|
+
disabled: boolean;
|
|
15
|
+
createdAt: string;
|
|
16
|
+
updatedAt: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
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.BaseBlink = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const entity_1 = require("../../entity");
|
|
15
|
+
class BaseBlink extends entity_1.Entity {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_transformer_1.Transform)(({ value }) => BigInt(value)),
|
|
19
|
+
__metadata("design:type", BigInt)
|
|
20
|
+
], BaseBlink.prototype, "price", void 0);
|
|
21
|
+
exports.BaseBlink = BaseBlink;
|
|
22
|
+
//# sourceMappingURL=BaseBlink.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BaseBlink.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/blink/entities/BaseBlink.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA8C;AAC9C,yCAAsC;AAItC,MAAa,SAAU,SAAQ,eAAM;CAyBpC;AAxBC;IAAC,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;wCAC1B;AAFhB,8BAyBC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { User } from '../../user';
|
|
2
|
+
import { BaseCompany } from '../../company';
|
|
3
|
+
import { Currency } from '../../currency';
|
|
4
|
+
import { Product } from '../../product';
|
|
5
|
+
import { Recipient } from '../../recipient';
|
|
6
|
+
import { BaseBlink } from './BaseBlink.entity';
|
|
7
|
+
export declare class Blink extends BaseBlink {
|
|
8
|
+
bannerImageUrl: string;
|
|
9
|
+
creator: User;
|
|
10
|
+
company: BaseCompany;
|
|
11
|
+
currency: Currency;
|
|
12
|
+
product: Product;
|
|
13
|
+
recipients: Recipient[];
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Blink = void 0;
|
|
4
|
+
const BaseBlink_entity_1 = require("./BaseBlink.entity");
|
|
5
|
+
class Blink extends BaseBlink_entity_1.BaseBlink {
|
|
6
|
+
}
|
|
7
|
+
exports.Blink = Blink;
|
|
8
|
+
//# sourceMappingURL=Blink.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Blink.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/blink/entities/Blink.entity.ts"],"names":[],"mappings":";;;AAKA,yDAA+C;AAE/C,MAAa,KAAM,SAAQ,4BAAS;CAYnC;AAZD,sBAYC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Entity } from '../../entity';
|
|
2
|
+
export declare class BlinkFeatures extends Entity {
|
|
3
|
+
requireEmail: boolean;
|
|
4
|
+
requireDiscordUsername: boolean;
|
|
5
|
+
requireFullName: boolean;
|
|
6
|
+
requireTwitterUsername: boolean;
|
|
7
|
+
requireCountry: boolean;
|
|
8
|
+
requireDeliveryAddress: boolean;
|
|
9
|
+
requirePhoneNumber: boolean;
|
|
10
|
+
requireProductDetails: boolean;
|
|
11
|
+
requireMaxTransactions: boolean;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BlinkFeatures = void 0;
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class BlinkFeatures extends entity_1.Entity {
|
|
6
|
+
}
|
|
7
|
+
exports.BlinkFeatures = BlinkFeatures;
|
|
8
|
+
//# sourceMappingURL=BlinkFeatures.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlinkFeatures.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/blink/entities/BlinkFeatures.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAEtC,MAAa,aAAc,SAAQ,eAAM;CAkBxC;AAlBD,sCAkBC"}
|
|
@@ -14,5 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
17
|
+
__exportStar(require("./BaseBlink.entity"), exports);
|
|
18
|
+
__exportStar(require("./Blink.entity"), exports);
|
|
19
|
+
__exportStar(require("./BlinkFeatures.entity"), exports);
|
|
18
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/blink/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/blink/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,iDAA+B;AAC/B,yDAAuC"}
|
|
@@ -76,5 +76,11 @@ __decorate([
|
|
|
76
76
|
(0, class_validator_1.IsOptional)(),
|
|
77
77
|
__metadata("design:type", String)
|
|
78
78
|
], CreatePaylinkWithApiDto.prototype, "redirectUrl", void 0);
|
|
79
|
+
__decorate([
|
|
80
|
+
(0, class_validator_1.IsString)(),
|
|
81
|
+
(0, class_validator_1.IsOptional)(),
|
|
82
|
+
(0, class_validator_1.IsMongoId)(),
|
|
83
|
+
__metadata("design:type", String)
|
|
84
|
+
], CreatePaylinkWithApiDto.prototype, "airdropDetailsId", void 0);
|
|
79
85
|
exports.CreatePaylinkWithApiDto = CreatePaylinkWithApiDto;
|
|
80
86
|
//# sourceMappingURL=createPaylinkWithApi.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createPaylinkWithApi.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/dtos/createPaylinkWithApi.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"createPaylinkWithApi.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/dtos/createPaylinkWithApi.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAQyB;AACzB,yDAAyC;AACzC,2DAAuE;AACvE,uDAA4D;AAC5D,uDAAqD;AACrD,yDAAuD;AACvD,kDAAmD;AACnD,iDAA0D;AAC1D,iDAAuD;AACvD,yDAAwD;AAExD,MAAa,uBAAwB,SAAQ,gDAA8B;CAiD1E;AAhDC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,qCAAqB,CAAC;IACjC,IAAA,gCAAc,GAAE;8BACP,qCAAqB;yDAAC;AAEhC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAc,CAAC;IAC1B,IAAA,4BAAU,GAAE;;6DACmB;AAEhC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gCAAe,CAAC;IAC3B,IAAA,4BAAU,GAAE;;8DACqB;AAElC;IAAC,IAAA,wBAAM,EAAC,yBAAa,CAAC;IACrB,IAAA,4BAAU,GAAE;;8DACiB;AAE9B;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;4DACU;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4DACQ;AAErB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAsB,CAAC;IAClC,IAAA,gCAAc,GAAE;8BACK,mCAAsB;oEAAC;AAE7C;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gCAAmB,CAAC;IAC/B,IAAA,gCAAc,GAAE;8BACE,gCAAmB;iEAAC;AAEvC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;IAC5B,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACD,iCAAgB;8DAAC;AAEjC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4DACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;iEACc;AAhD5B,0DAiDC"}
|
|
@@ -5,5 +5,6 @@ var TransactionType;
|
|
|
5
5
|
(function (TransactionType) {
|
|
6
6
|
TransactionType["REFUND"] = "REFUND";
|
|
7
7
|
TransactionType["PAYLINK"] = "PAYLINK";
|
|
8
|
+
TransactionType["BLINK"] = "BLINK";
|
|
8
9
|
})(TransactionType = exports.TransactionType || (exports.TransactionType = {}));
|
|
9
10
|
//# sourceMappingURL=TransactionType.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TransactionType.js","sourceRoot":"","sources":["../../../../../../src/domain/model/transaction-meta/constants/TransactionType.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"TransactionType.js","sourceRoot":"","sources":["../../../../../../src/domain/model/transaction-meta/constants/TransactionType.ts"],"names":[],"mappings":";;;AAAA,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,oCAAiB,CAAA;IACjB,sCAAmB,CAAA;IACnB,kCAAe,CAAA;AACjB,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B"}
|
|
@@ -59,5 +59,10 @@ export declare enum UserGroupPermission {
|
|
|
59
59
|
AIRDROP_DETAILS_READ_MAIN = "AIRDROP_DETAILS_READ_MAIN",
|
|
60
60
|
AIRDROP_DETAILS_READ_PAYMENT_STATUS = "AIRDROP_DETAILS_READ_PAYMENT_STATUS",
|
|
61
61
|
AIRDROP_DETAILS_CREATE = "AIRDROP_DETAILS_CREATE",
|
|
62
|
-
AIRDROP_DETAILS_UPDATE = "AIRDROP_DETAILS_UPDATE"
|
|
62
|
+
AIRDROP_DETAILS_UPDATE = "AIRDROP_DETAILS_UPDATE",
|
|
63
|
+
BLINK_ADMIN = "BLINK_ADMIN",
|
|
64
|
+
BLINK_WRITE = "BLINK_WRITE",
|
|
65
|
+
BLINK_READ = "BLINK_READ",
|
|
66
|
+
BLINK_CREATE = "BLINK_CREATE",
|
|
67
|
+
BLINK_CREATE_MAIN = "BLINK_CREATE_MAIN"
|
|
63
68
|
}
|
|
@@ -64,5 +64,10 @@ var UserGroupPermission;
|
|
|
64
64
|
UserGroupPermission["AIRDROP_DETAILS_READ_PAYMENT_STATUS"] = "AIRDROP_DETAILS_READ_PAYMENT_STATUS";
|
|
65
65
|
UserGroupPermission["AIRDROP_DETAILS_CREATE"] = "AIRDROP_DETAILS_CREATE";
|
|
66
66
|
UserGroupPermission["AIRDROP_DETAILS_UPDATE"] = "AIRDROP_DETAILS_UPDATE";
|
|
67
|
+
UserGroupPermission["BLINK_ADMIN"] = "BLINK_ADMIN";
|
|
68
|
+
UserGroupPermission["BLINK_WRITE"] = "BLINK_WRITE";
|
|
69
|
+
UserGroupPermission["BLINK_READ"] = "BLINK_READ";
|
|
70
|
+
UserGroupPermission["BLINK_CREATE"] = "BLINK_CREATE";
|
|
71
|
+
UserGroupPermission["BLINK_CREATE_MAIN"] = "BLINK_CREATE_MAIN";
|
|
67
72
|
})(UserGroupPermission = exports.UserGroupPermission || (exports.UserGroupPermission = {}));
|
|
68
73
|
//# sourceMappingURL=UserGroupPermissions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserGroupPermissions.js","sourceRoot":"","sources":["../../../../../../src/domain/model/userGroups/entities/UserGroupPermissions.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"UserGroupPermissions.js","sourceRoot":"","sources":["../../../../../../src/domain/model/userGroups/entities/UserGroupPermissions.ts"],"names":[],"mappings":";;;AAAA,IAAY,mBAmEX;AAnED,WAAY,mBAAmB;IAC7B,sCAAe,CAAA;IACf,sCAAe,CAAA;IACf,oCAAa,CAAA;IACb,sDAA+B,CAAA;IAC/B,sDAA+B,CAAA;IAC/B,oDAA6B,CAAA;IAC7B,wDAAiC,CAAA;IACjC,kEAA2C,CAAA;IAC3C,wDAAiC,CAAA;IACjC,kEAA2C,CAAA;IAC3C,oFAA6D,CAAA;IAC7D,oFAA6D,CAAA;IAC7D,8EAAuD,CAAA;IACvD,0DAAmC,CAAA;IACnC,kEAA2C,CAAA;IAC3C,8DAAuC,CAAA;IACvC,8DAAuC,CAAA;IACvC,0DAAmC,CAAA;IACnC,0DAAmC,CAAA;IACnC,wDAAiC,CAAA;IACjC,4DAAqC,CAAA;IACrC,sEAA+C,CAAA;IAC/C,4DAAqC,CAAA;IACrC,sEAA+C,CAAA;IAC/C,wFAAiE,CAAA;IACjE,wFAAiE,CAAA;IACjE,kFAA2D,CAAA;IAC3D,8DAAuC,CAAA;IACvC,sEAA+C,CAAA;IAC/C,kEAA2C,CAAA;IAC3C,sDAA+B,CAAA;IAC/B,sDAA+B,CAAA;IAC/B,oDAA6B,CAAA;IAC7B,oEAA6C,CAAA;IAC7C,wDAAiC,CAAA;IACjC,sDAA+B,CAAA;IAC/B,sDAA+B,CAAA;IAC/B,wDAAiC,CAAA;IACjC,wDAAiC,CAAA;IACjC,sEAA+C,CAAA;IAC/C,sEAA+C,CAAA;IAC/C,oEAA6C,CAAA;IAC7C,wEAAiD,CAAA;IACjD,wEAAiD,CAAA;IACjD,8DAAuC,CAAA;IACvC,4DAAqC,CAAA;IACrC,oEAA6C,CAAA;IAC7C,kEAA2C,CAAA;IAC3C,oEAA6C,CAAA;IAC7C,oEAA6C,CAAA;IAC7C,oEAA6C,CAAA;IAC7C,kEAA2C,CAAA;IAC3C,sEAA+C,CAAA;IAC/C,sEAA+C,CAAA;IAC/C,sEAA+C,CAAA;IAC/C,sEAA+C,CAAA;IAC/C,oEAA6C,CAAA;IAC7C,8EAAuD,CAAA;IACvD,kGAA2E,CAAA;IAC3E,wEAAiD,CAAA;IACjD,wEAAiD,CAAA;IACjD,kDAA2B,CAAA;IAC3B,kDAA2B,CAAA;IAC3B,gDAAyB,CAAA;IACzB,oDAA6B,CAAA;IAC7B,8DAAuC,CAAA;AACzC,CAAC,EAnEW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAmE9B"}
|