egame-shared-lib 1.0.1 → 1.0.2
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/constants/message-patterns.d.ts +35 -0
- package/dist/constants/message-patterns.js +35 -0
- package/dist/constants/message-patterns.js.map +1 -1
- package/dist/dto/index.d.ts +1 -0
- package/dist/dto/index.js +1 -0
- package/dist/dto/index.js.map +1 -1
- package/dist/dto/user-profile.dto.d.ts +109 -0
- package/dist/dto/user-profile.dto.js +408 -0
- package/dist/dto/user-profile.dto.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
|
@@ -24,6 +24,41 @@ export declare const USER_PATTERNS: {
|
|
|
24
24
|
DELETE_USER: string;
|
|
25
25
|
AUTHENTICATE_USER: string;
|
|
26
26
|
VERIFY_USER: string;
|
|
27
|
+
CREATE_PROFILE: string;
|
|
28
|
+
GET_PROFILE: string;
|
|
29
|
+
GET_PROFILE_BY_USERID: string;
|
|
30
|
+
UPDATE_PROFILE: string;
|
|
31
|
+
UPDATE_AVATAR: string;
|
|
32
|
+
SUBMIT_KYC: string;
|
|
33
|
+
VERIFY_KYC: string;
|
|
34
|
+
REJECT_KYC: string;
|
|
35
|
+
GET_KYC_STATUS: string;
|
|
36
|
+
UPDATE_BANK_ACCOUNT: string;
|
|
37
|
+
VERIFY_BANK_ACCOUNT: string;
|
|
38
|
+
UPDATE_WALLET: string;
|
|
39
|
+
LOCK_BALANCE: string;
|
|
40
|
+
UNLOCK_BALANCE: string;
|
|
41
|
+
GET_WALLET_BALANCE: string;
|
|
42
|
+
UPDATE_BETTING_STATS: string;
|
|
43
|
+
GET_PROFILE_STATS: string;
|
|
44
|
+
INCREMENT_BET: string;
|
|
45
|
+
RECORD_WIN: string;
|
|
46
|
+
RECORD_LOSS: string;
|
|
47
|
+
APPLY_REFERRAL: string;
|
|
48
|
+
GET_REFERRAL_CODE: string;
|
|
49
|
+
GET_REFERRAL_STATS: string;
|
|
50
|
+
UPDATE_NOTIFICATIONS: string;
|
|
51
|
+
UPDATE_DEPOSIT_LIMITS: string;
|
|
52
|
+
SELF_EXCLUSION: string;
|
|
53
|
+
GET_LEADERBOARD: string;
|
|
54
|
+
GET_USER_RANK: string;
|
|
55
|
+
UNLOCK_ACHIEVEMENT: string;
|
|
56
|
+
GET_ACHIEVEMENTS: string;
|
|
57
|
+
ADD_FAVORITE_GAME: string;
|
|
58
|
+
UPDATE_FAVORITE_GAME: string;
|
|
59
|
+
REMOVE_FAVORITE_GAME: string;
|
|
60
|
+
GET_FAVORITE_GAMES: string;
|
|
61
|
+
VERIFY_GAMER_ID: string;
|
|
27
62
|
};
|
|
28
63
|
export declare const GAME_PATTERNS: {
|
|
29
64
|
CREATE_GAME: string;
|
|
@@ -27,6 +27,41 @@ exports.USER_PATTERNS = {
|
|
|
27
27
|
DELETE_USER: 'user.delete',
|
|
28
28
|
AUTHENTICATE_USER: 'user.authenticate',
|
|
29
29
|
VERIFY_USER: 'user.verify',
|
|
30
|
+
CREATE_PROFILE: 'user.profile.create',
|
|
31
|
+
GET_PROFILE: 'user.profile.get',
|
|
32
|
+
GET_PROFILE_BY_USERID: 'user.profile.getByUserId',
|
|
33
|
+
UPDATE_PROFILE: 'user.profile.update',
|
|
34
|
+
UPDATE_AVATAR: 'user.profile.avatar',
|
|
35
|
+
SUBMIT_KYC: 'user.kyc.submit',
|
|
36
|
+
VERIFY_KYC: 'user.kyc.verify',
|
|
37
|
+
REJECT_KYC: 'user.kyc.reject',
|
|
38
|
+
GET_KYC_STATUS: 'user.kyc.status',
|
|
39
|
+
UPDATE_BANK_ACCOUNT: 'user.bank.update',
|
|
40
|
+
VERIFY_BANK_ACCOUNT: 'user.bank.verify',
|
|
41
|
+
UPDATE_WALLET: 'user.wallet.update',
|
|
42
|
+
LOCK_BALANCE: 'user.wallet.lock',
|
|
43
|
+
UNLOCK_BALANCE: 'user.wallet.unlock',
|
|
44
|
+
GET_WALLET_BALANCE: 'user.wallet.balance',
|
|
45
|
+
UPDATE_BETTING_STATS: 'user.stats.update',
|
|
46
|
+
GET_PROFILE_STATS: 'user.stats.get',
|
|
47
|
+
INCREMENT_BET: 'user.stats.bet.increment',
|
|
48
|
+
RECORD_WIN: 'user.stats.win.record',
|
|
49
|
+
RECORD_LOSS: 'user.stats.loss.record',
|
|
50
|
+
APPLY_REFERRAL: 'user.referral.apply',
|
|
51
|
+
GET_REFERRAL_CODE: 'user.referral.code',
|
|
52
|
+
GET_REFERRAL_STATS: 'user.referral.stats',
|
|
53
|
+
UPDATE_NOTIFICATIONS: 'user.preferences.notifications',
|
|
54
|
+
UPDATE_DEPOSIT_LIMITS: 'user.preferences.depositLimits',
|
|
55
|
+
SELF_EXCLUSION: 'user.preferences.selfExclusion',
|
|
56
|
+
GET_LEADERBOARD: 'user.leaderboard.get',
|
|
57
|
+
GET_USER_RANK: 'user.rank.get',
|
|
58
|
+
UNLOCK_ACHIEVEMENT: 'user.achievement.unlock',
|
|
59
|
+
GET_ACHIEVEMENTS: 'user.achievements.get',
|
|
60
|
+
ADD_FAVORITE_GAME: 'user.favorite.game.add',
|
|
61
|
+
UPDATE_FAVORITE_GAME: 'user.favorite.game.update',
|
|
62
|
+
REMOVE_FAVORITE_GAME: 'user.favorite.game.remove',
|
|
63
|
+
GET_FAVORITE_GAMES: 'user.favorite.games.get',
|
|
64
|
+
VERIFY_GAMER_ID: 'user.gamer.id.verify',
|
|
30
65
|
};
|
|
31
66
|
exports.GAME_PATTERNS = {
|
|
32
67
|
CREATE_GAME: 'game.create',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message-patterns.js","sourceRoot":"","sources":["../../src/constants/message-patterns.ts"],"names":[],"mappings":";;;AACa,QAAA,YAAY,GAAG,cAAc,CAAC;AAC9B,QAAA,YAAY,GAAG,cAAc,CAAC;AAC9B,QAAA,eAAe,GAAG,iBAAiB,CAAC;AACpC,QAAA,YAAY,GAAG,cAAc,CAAC;AAG9B,QAAA,aAAa,GAAG;IAC3B,WAAW,EAAE,kBAAkB;IAC/B,UAAU,EAAE,iBAAiB;IAC7B,YAAY,EAAE,mBAAmB;IACjC,WAAW,EAAE,kBAAkB;IAC/B,UAAU,EAAE,iBAAiB;IAC7B,UAAU,EAAE,iBAAiB;IAC7B,aAAa,EAAE,oBAAoB;IACnC,YAAY,EAAE,mBAAmB;IACjC,MAAM,EAAE,aAAa;IACrB,eAAe,EAAE,sBAAsB;IACvC,eAAe,EAAE,sBAAsB;IACvC,kBAAkB,EAAE,yBAAyB;IAC7C,cAAc,EAAE,qBAAqB;CACtC,CAAC;AAGW,QAAA,aAAa,GAAG;IAC3B,WAAW,EAAE,aAAa;IAC1B,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,aAAa;IAC1B,WAAW,EAAE,aAAa;IAC1B,iBAAiB,EAAE,mBAAmB;IACtC,WAAW,EAAE,aAAa;
|
|
1
|
+
{"version":3,"file":"message-patterns.js","sourceRoot":"","sources":["../../src/constants/message-patterns.ts"],"names":[],"mappings":";;;AACa,QAAA,YAAY,GAAG,cAAc,CAAC;AAC9B,QAAA,YAAY,GAAG,cAAc,CAAC;AAC9B,QAAA,eAAe,GAAG,iBAAiB,CAAC;AACpC,QAAA,YAAY,GAAG,cAAc,CAAC;AAG9B,QAAA,aAAa,GAAG;IAC3B,WAAW,EAAE,kBAAkB;IAC/B,UAAU,EAAE,iBAAiB;IAC7B,YAAY,EAAE,mBAAmB;IACjC,WAAW,EAAE,kBAAkB;IAC/B,UAAU,EAAE,iBAAiB;IAC7B,UAAU,EAAE,iBAAiB;IAC7B,aAAa,EAAE,oBAAoB;IACnC,YAAY,EAAE,mBAAmB;IACjC,MAAM,EAAE,aAAa;IACrB,eAAe,EAAE,sBAAsB;IACvC,eAAe,EAAE,sBAAsB;IACvC,kBAAkB,EAAE,yBAAyB;IAC7C,cAAc,EAAE,qBAAqB;CACtC,CAAC;AAGW,QAAA,aAAa,GAAG;IAC3B,WAAW,EAAE,aAAa;IAC1B,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,aAAa;IAC1B,WAAW,EAAE,aAAa;IAC1B,iBAAiB,EAAE,mBAAmB;IACtC,WAAW,EAAE,aAAa;IAG1B,cAAc,EAAE,qBAAqB;IACrC,WAAW,EAAE,kBAAkB;IAC/B,qBAAqB,EAAE,0BAA0B;IACjD,cAAc,EAAE,qBAAqB;IACrC,aAAa,EAAE,qBAAqB;IAGpC,UAAU,EAAE,iBAAiB;IAC7B,UAAU,EAAE,iBAAiB;IAC7B,UAAU,EAAE,iBAAiB;IAC7B,cAAc,EAAE,iBAAiB;IAGjC,mBAAmB,EAAE,kBAAkB;IACvC,mBAAmB,EAAE,kBAAkB;IAGvC,aAAa,EAAE,oBAAoB;IACnC,YAAY,EAAE,kBAAkB;IAChC,cAAc,EAAE,oBAAoB;IACpC,kBAAkB,EAAE,qBAAqB;IAGzC,oBAAoB,EAAE,mBAAmB;IACzC,iBAAiB,EAAE,gBAAgB;IACnC,aAAa,EAAE,0BAA0B;IACzC,UAAU,EAAE,uBAAuB;IACnC,WAAW,EAAE,wBAAwB;IAGrC,cAAc,EAAE,qBAAqB;IACrC,iBAAiB,EAAE,oBAAoB;IACvC,kBAAkB,EAAE,qBAAqB;IAGzC,oBAAoB,EAAE,gCAAgC;IACtD,qBAAqB,EAAE,gCAAgC;IACvD,cAAc,EAAE,gCAAgC;IAGhD,eAAe,EAAE,sBAAsB;IACvC,aAAa,EAAE,eAAe;IAG9B,kBAAkB,EAAE,yBAAyB;IAC7C,gBAAgB,EAAE,uBAAuB;IAGzC,iBAAiB,EAAE,wBAAwB;IAC3C,oBAAoB,EAAE,2BAA2B;IACjD,oBAAoB,EAAE,2BAA2B;IACjD,kBAAkB,EAAE,yBAAyB;IAC7C,eAAe,EAAE,sBAAsB;CACxC,CAAC;AAGW,QAAA,aAAa,GAAG;IAC3B,WAAW,EAAE,aAAa;IAC1B,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,aAAa;IAC1B,WAAW,EAAE,aAAa;IAC1B,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;IACpB,gBAAgB,EAAE,cAAc;CACjC,CAAC;AAGW,QAAA,gBAAgB,GAAG;IAC9B,aAAa,EAAE,uBAAuB;IACtC,UAAU,EAAE,oBAAoB;IAChC,SAAS,EAAE,oBAAoB;IAC/B,cAAc,EAAE,yBAAyB;IACzC,eAAe,EAAE,iBAAiB;IAClC,uBAAuB,EAAE,sBAAsB;CAChD,CAAC;AAGW,QAAA,MAAM,GAAG;IACpB,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,aAAa,EAAE,eAAe;IAC9B,UAAU,EAAE,YAAY;CACzB,CAAC"}
|
package/dist/dto/index.d.ts
CHANGED
package/dist/dto/index.js
CHANGED
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./user.dto"), exports);
|
|
18
|
+
__exportStar(require("./user-profile.dto"), exports);
|
|
18
19
|
__exportStar(require("./game.dto"), exports);
|
|
19
20
|
__exportStar(require("./payment.dto"), exports);
|
|
20
21
|
__exportStar(require("./auth.dto"), exports);
|
package/dist/dto/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,6CAA2B;AAC3B,gDAA8B;AAC9B,6CAA2B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,qDAAmC;AACnC,6CAA2B;AAC3B,gDAA8B;AAC9B,6CAA2B"}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
export declare enum KYCStatus {
|
|
2
|
+
PENDING = "PENDING",
|
|
3
|
+
SUBMITTED = "SUBMITTED",
|
|
4
|
+
VERIFIED = "VERIFIED",
|
|
5
|
+
REJECTED = "REJECTED"
|
|
6
|
+
}
|
|
7
|
+
export declare class CreateUserProfileDto {
|
|
8
|
+
userId: string;
|
|
9
|
+
email: string;
|
|
10
|
+
nickName: string;
|
|
11
|
+
firstName?: string;
|
|
12
|
+
lastName?: string;
|
|
13
|
+
mobileNumber?: number;
|
|
14
|
+
}
|
|
15
|
+
export declare class UpdateUserProfileDto {
|
|
16
|
+
firstName?: string;
|
|
17
|
+
lastName?: string;
|
|
18
|
+
mobileNumber?: number;
|
|
19
|
+
avatar?: string;
|
|
20
|
+
dob?: string;
|
|
21
|
+
gender?: string;
|
|
22
|
+
country?: string;
|
|
23
|
+
state?: string;
|
|
24
|
+
city?: string;
|
|
25
|
+
pincode?: string;
|
|
26
|
+
address?: string;
|
|
27
|
+
upiId?: string;
|
|
28
|
+
preferredLanguage?: string;
|
|
29
|
+
preferredCurrency?: string;
|
|
30
|
+
favoriteGames?: Array<{
|
|
31
|
+
gameId: string;
|
|
32
|
+
gameName: string;
|
|
33
|
+
gamerId: string;
|
|
34
|
+
gamerUsername: string;
|
|
35
|
+
}>;
|
|
36
|
+
}
|
|
37
|
+
export declare class AddFavoriteGameDto {
|
|
38
|
+
gameId: string;
|
|
39
|
+
gameName: string;
|
|
40
|
+
gamerId: string;
|
|
41
|
+
gamerUsername: string;
|
|
42
|
+
}
|
|
43
|
+
export declare class UpdateFavoriteGameDto {
|
|
44
|
+
gameId: string;
|
|
45
|
+
gamerId?: string;
|
|
46
|
+
gamerUsername?: string;
|
|
47
|
+
}
|
|
48
|
+
export declare class RemoveFavoriteGameDto {
|
|
49
|
+
gameId: string;
|
|
50
|
+
}
|
|
51
|
+
export declare class VerifyGamerIdDto {
|
|
52
|
+
userId: string;
|
|
53
|
+
gameId: string;
|
|
54
|
+
isVerified: boolean;
|
|
55
|
+
}
|
|
56
|
+
export declare class UpdateNotificationPreferencesDto {
|
|
57
|
+
email?: boolean;
|
|
58
|
+
sms?: boolean;
|
|
59
|
+
push?: boolean;
|
|
60
|
+
promotions?: boolean;
|
|
61
|
+
gameUpdates?: boolean;
|
|
62
|
+
}
|
|
63
|
+
export declare class SubmitKYCDto {
|
|
64
|
+
aadhaarNumber: string;
|
|
65
|
+
aadhaarFront: string;
|
|
66
|
+
aadhaarBack: string;
|
|
67
|
+
panNumber: string;
|
|
68
|
+
panCard: string;
|
|
69
|
+
selfie: string;
|
|
70
|
+
}
|
|
71
|
+
export declare class UpdateBankAccountDto {
|
|
72
|
+
accountHolderName: string;
|
|
73
|
+
accountNumber: string;
|
|
74
|
+
ifscCode: string;
|
|
75
|
+
bankName: string;
|
|
76
|
+
branch?: string;
|
|
77
|
+
}
|
|
78
|
+
export declare class SetDepositLimitsDto {
|
|
79
|
+
dailyDepositLimit?: number;
|
|
80
|
+
weeklyDepositLimit?: number;
|
|
81
|
+
monthlyDepositLimit?: number;
|
|
82
|
+
}
|
|
83
|
+
export declare class SelfExclusionDto {
|
|
84
|
+
exclusionUntil: string;
|
|
85
|
+
reason?: string;
|
|
86
|
+
}
|
|
87
|
+
export declare class UpdateWalletDto {
|
|
88
|
+
amount: number;
|
|
89
|
+
operation: 'ADD' | 'DEDUCT' | 'LOCK' | 'UNLOCK';
|
|
90
|
+
reason?: string;
|
|
91
|
+
}
|
|
92
|
+
export declare class UpdateBettingStatsDto {
|
|
93
|
+
totalBets?: number;
|
|
94
|
+
totalWins?: number;
|
|
95
|
+
totalLosses?: number;
|
|
96
|
+
totalAmountWagered?: number;
|
|
97
|
+
totalAmountWon?: number;
|
|
98
|
+
currentStreak?: number;
|
|
99
|
+
}
|
|
100
|
+
export declare class GetProfileStatsDto {
|
|
101
|
+
userId: string;
|
|
102
|
+
}
|
|
103
|
+
export declare class ApplyReferralDto {
|
|
104
|
+
referralCode: string;
|
|
105
|
+
}
|
|
106
|
+
export declare class GetLeaderboardDto {
|
|
107
|
+
limit?: number;
|
|
108
|
+
sortBy?: 'rank' | 'winRate' | 'totalWins' | 'level';
|
|
109
|
+
}
|
|
@@ -0,0 +1,408 @@
|
|
|
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.GetLeaderboardDto = exports.ApplyReferralDto = exports.GetProfileStatsDto = exports.UpdateBettingStatsDto = exports.UpdateWalletDto = exports.SelfExclusionDto = exports.SetDepositLimitsDto = exports.UpdateBankAccountDto = exports.SubmitKYCDto = exports.UpdateNotificationPreferencesDto = exports.VerifyGamerIdDto = exports.RemoveFavoriteGameDto = exports.UpdateFavoriteGameDto = exports.AddFavoriteGameDto = exports.UpdateUserProfileDto = exports.CreateUserProfileDto = exports.KYCStatus = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
var KYCStatus;
|
|
16
|
+
(function (KYCStatus) {
|
|
17
|
+
KYCStatus["PENDING"] = "PENDING";
|
|
18
|
+
KYCStatus["SUBMITTED"] = "SUBMITTED";
|
|
19
|
+
KYCStatus["VERIFIED"] = "VERIFIED";
|
|
20
|
+
KYCStatus["REJECTED"] = "REJECTED";
|
|
21
|
+
})(KYCStatus || (exports.KYCStatus = KYCStatus = {}));
|
|
22
|
+
class CreateUserProfileDto {
|
|
23
|
+
}
|
|
24
|
+
exports.CreateUserProfileDto = CreateUserProfileDto;
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_validator_1.IsString)(),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], CreateUserProfileDto.prototype, "userId", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_validator_1.IsEmail)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], CreateUserProfileDto.prototype, "email", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_validator_1.IsString)(),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], CreateUserProfileDto.prototype, "nickName", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_validator_1.IsString)(),
|
|
39
|
+
(0, class_validator_1.IsOptional)(),
|
|
40
|
+
__metadata("design:type", String)
|
|
41
|
+
], CreateUserProfileDto.prototype, "firstName", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, class_validator_1.IsString)(),
|
|
44
|
+
(0, class_validator_1.IsOptional)(),
|
|
45
|
+
__metadata("design:type", String)
|
|
46
|
+
], CreateUserProfileDto.prototype, "lastName", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_validator_1.IsNumber)(),
|
|
49
|
+
(0, class_validator_1.IsOptional)(),
|
|
50
|
+
__metadata("design:type", Number)
|
|
51
|
+
], CreateUserProfileDto.prototype, "mobileNumber", void 0);
|
|
52
|
+
class UpdateUserProfileDto {
|
|
53
|
+
}
|
|
54
|
+
exports.UpdateUserProfileDto = UpdateUserProfileDto;
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, class_validator_1.IsString)(),
|
|
57
|
+
(0, class_validator_1.IsOptional)(),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], UpdateUserProfileDto.prototype, "firstName", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, class_validator_1.IsString)(),
|
|
62
|
+
(0, class_validator_1.IsOptional)(),
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], UpdateUserProfileDto.prototype, "lastName", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, class_validator_1.IsNumber)(),
|
|
67
|
+
(0, class_validator_1.IsOptional)(),
|
|
68
|
+
__metadata("design:type", Number)
|
|
69
|
+
], UpdateUserProfileDto.prototype, "mobileNumber", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, class_validator_1.IsString)(),
|
|
72
|
+
(0, class_validator_1.IsOptional)(),
|
|
73
|
+
__metadata("design:type", String)
|
|
74
|
+
], UpdateUserProfileDto.prototype, "avatar", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, class_validator_1.IsDateString)(),
|
|
77
|
+
(0, class_validator_1.IsOptional)(),
|
|
78
|
+
__metadata("design:type", String)
|
|
79
|
+
], UpdateUserProfileDto.prototype, "dob", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, class_validator_1.IsString)(),
|
|
82
|
+
(0, class_validator_1.IsOptional)(),
|
|
83
|
+
(0, class_validator_1.IsEnum)(['MALE', 'FEMALE', 'OTHER']),
|
|
84
|
+
__metadata("design:type", String)
|
|
85
|
+
], UpdateUserProfileDto.prototype, "gender", void 0);
|
|
86
|
+
__decorate([
|
|
87
|
+
(0, class_validator_1.IsString)(),
|
|
88
|
+
(0, class_validator_1.IsOptional)(),
|
|
89
|
+
__metadata("design:type", String)
|
|
90
|
+
], UpdateUserProfileDto.prototype, "country", void 0);
|
|
91
|
+
__decorate([
|
|
92
|
+
(0, class_validator_1.IsString)(),
|
|
93
|
+
(0, class_validator_1.IsOptional)(),
|
|
94
|
+
__metadata("design:type", String)
|
|
95
|
+
], UpdateUserProfileDto.prototype, "state", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
(0, class_validator_1.IsString)(),
|
|
98
|
+
(0, class_validator_1.IsOptional)(),
|
|
99
|
+
__metadata("design:type", String)
|
|
100
|
+
], UpdateUserProfileDto.prototype, "city", void 0);
|
|
101
|
+
__decorate([
|
|
102
|
+
(0, class_validator_1.IsString)(),
|
|
103
|
+
(0, class_validator_1.IsOptional)(),
|
|
104
|
+
__metadata("design:type", String)
|
|
105
|
+
], UpdateUserProfileDto.prototype, "pincode", void 0);
|
|
106
|
+
__decorate([
|
|
107
|
+
(0, class_validator_1.IsString)(),
|
|
108
|
+
(0, class_validator_1.IsOptional)(),
|
|
109
|
+
__metadata("design:type", String)
|
|
110
|
+
], UpdateUserProfileDto.prototype, "address", void 0);
|
|
111
|
+
__decorate([
|
|
112
|
+
(0, class_validator_1.IsString)(),
|
|
113
|
+
(0, class_validator_1.IsOptional)(),
|
|
114
|
+
(0, class_validator_1.Length)(6, 6),
|
|
115
|
+
__metadata("design:type", String)
|
|
116
|
+
], UpdateUserProfileDto.prototype, "upiId", void 0);
|
|
117
|
+
__decorate([
|
|
118
|
+
(0, class_validator_1.IsString)(),
|
|
119
|
+
(0, class_validator_1.IsOptional)(),
|
|
120
|
+
__metadata("design:type", String)
|
|
121
|
+
], UpdateUserProfileDto.prototype, "preferredLanguage", void 0);
|
|
122
|
+
__decorate([
|
|
123
|
+
(0, class_validator_1.IsString)(),
|
|
124
|
+
(0, class_validator_1.IsOptional)(),
|
|
125
|
+
__metadata("design:type", String)
|
|
126
|
+
], UpdateUserProfileDto.prototype, "preferredCurrency", void 0);
|
|
127
|
+
__decorate([
|
|
128
|
+
(0, class_validator_1.IsArray)(),
|
|
129
|
+
(0, class_validator_1.IsOptional)(),
|
|
130
|
+
__metadata("design:type", Array)
|
|
131
|
+
], UpdateUserProfileDto.prototype, "favoriteGames", void 0);
|
|
132
|
+
class AddFavoriteGameDto {
|
|
133
|
+
}
|
|
134
|
+
exports.AddFavoriteGameDto = AddFavoriteGameDto;
|
|
135
|
+
__decorate([
|
|
136
|
+
(0, swagger_1.ApiProperty)({ description: 'Unique game identifier (e.g., PUBG_MOBILE, FREE_FIRE)', example: 'PUBG_MOBILE' }),
|
|
137
|
+
(0, class_validator_1.IsString)(),
|
|
138
|
+
__metadata("design:type", String)
|
|
139
|
+
], AddFavoriteGameDto.prototype, "gameId", void 0);
|
|
140
|
+
__decorate([
|
|
141
|
+
(0, swagger_1.ApiProperty)({ description: 'Display name of the game', example: 'PUBG Mobile' }),
|
|
142
|
+
(0, class_validator_1.IsString)(),
|
|
143
|
+
__metadata("design:type", String)
|
|
144
|
+
], AddFavoriteGameDto.prototype, "gameName", void 0);
|
|
145
|
+
__decorate([
|
|
146
|
+
(0, swagger_1.ApiProperty)({ description: 'Your in-game player ID', example: '5234567890' }),
|
|
147
|
+
(0, class_validator_1.IsString)(),
|
|
148
|
+
__metadata("design:type", String)
|
|
149
|
+
], AddFavoriteGameDto.prototype, "gamerId", void 0);
|
|
150
|
+
__decorate([
|
|
151
|
+
(0, swagger_1.ApiProperty)({ description: 'Your in-game username', example: 'ProGamer123' }),
|
|
152
|
+
(0, class_validator_1.IsString)(),
|
|
153
|
+
__metadata("design:type", String)
|
|
154
|
+
], AddFavoriteGameDto.prototype, "gamerUsername", void 0);
|
|
155
|
+
class UpdateFavoriteGameDto {
|
|
156
|
+
}
|
|
157
|
+
exports.UpdateFavoriteGameDto = UpdateFavoriteGameDto;
|
|
158
|
+
__decorate([
|
|
159
|
+
(0, swagger_1.ApiProperty)({ description: 'Game ID to update', example: 'PUBG_MOBILE' }),
|
|
160
|
+
(0, class_validator_1.IsString)(),
|
|
161
|
+
__metadata("design:type", String)
|
|
162
|
+
], UpdateFavoriteGameDto.prototype, "gameId", void 0);
|
|
163
|
+
__decorate([
|
|
164
|
+
(0, swagger_1.ApiPropertyOptional)({ description: 'New gamer ID', example: '5555555555' }),
|
|
165
|
+
(0, class_validator_1.IsString)(),
|
|
166
|
+
(0, class_validator_1.IsOptional)(),
|
|
167
|
+
__metadata("design:type", String)
|
|
168
|
+
], UpdateFavoriteGameDto.prototype, "gamerId", void 0);
|
|
169
|
+
__decorate([
|
|
170
|
+
(0, swagger_1.ApiPropertyOptional)({ description: 'New gamer username', example: 'NewUsername' }),
|
|
171
|
+
(0, class_validator_1.IsString)(),
|
|
172
|
+
(0, class_validator_1.IsOptional)(),
|
|
173
|
+
__metadata("design:type", String)
|
|
174
|
+
], UpdateFavoriteGameDto.prototype, "gamerUsername", void 0);
|
|
175
|
+
class RemoveFavoriteGameDto {
|
|
176
|
+
}
|
|
177
|
+
exports.RemoveFavoriteGameDto = RemoveFavoriteGameDto;
|
|
178
|
+
__decorate([
|
|
179
|
+
(0, class_validator_1.IsString)(),
|
|
180
|
+
__metadata("design:type", String)
|
|
181
|
+
], RemoveFavoriteGameDto.prototype, "gameId", void 0);
|
|
182
|
+
class VerifyGamerIdDto {
|
|
183
|
+
}
|
|
184
|
+
exports.VerifyGamerIdDto = VerifyGamerIdDto;
|
|
185
|
+
__decorate([
|
|
186
|
+
(0, swagger_1.ApiProperty)({ description: 'User ID whose gamer ID needs verification', example: 'user-123' }),
|
|
187
|
+
(0, class_validator_1.IsString)(),
|
|
188
|
+
__metadata("design:type", String)
|
|
189
|
+
], VerifyGamerIdDto.prototype, "userId", void 0);
|
|
190
|
+
__decorate([
|
|
191
|
+
(0, swagger_1.ApiProperty)({ description: 'Game ID to verify', example: 'PUBG_MOBILE' }),
|
|
192
|
+
(0, class_validator_1.IsString)(),
|
|
193
|
+
__metadata("design:type", String)
|
|
194
|
+
], VerifyGamerIdDto.prototype, "gameId", void 0);
|
|
195
|
+
__decorate([
|
|
196
|
+
(0, swagger_1.ApiProperty)({ description: 'Verification status - true to verify, false to reject', example: true }),
|
|
197
|
+
(0, class_validator_1.IsBoolean)(),
|
|
198
|
+
__metadata("design:type", Boolean)
|
|
199
|
+
], VerifyGamerIdDto.prototype, "isVerified", void 0);
|
|
200
|
+
class UpdateNotificationPreferencesDto {
|
|
201
|
+
}
|
|
202
|
+
exports.UpdateNotificationPreferencesDto = UpdateNotificationPreferencesDto;
|
|
203
|
+
__decorate([
|
|
204
|
+
(0, class_validator_1.IsBoolean)(),
|
|
205
|
+
(0, class_validator_1.IsOptional)(),
|
|
206
|
+
__metadata("design:type", Boolean)
|
|
207
|
+
], UpdateNotificationPreferencesDto.prototype, "email", void 0);
|
|
208
|
+
__decorate([
|
|
209
|
+
(0, class_validator_1.IsBoolean)(),
|
|
210
|
+
(0, class_validator_1.IsOptional)(),
|
|
211
|
+
__metadata("design:type", Boolean)
|
|
212
|
+
], UpdateNotificationPreferencesDto.prototype, "sms", void 0);
|
|
213
|
+
__decorate([
|
|
214
|
+
(0, class_validator_1.IsBoolean)(),
|
|
215
|
+
(0, class_validator_1.IsOptional)(),
|
|
216
|
+
__metadata("design:type", Boolean)
|
|
217
|
+
], UpdateNotificationPreferencesDto.prototype, "push", void 0);
|
|
218
|
+
__decorate([
|
|
219
|
+
(0, class_validator_1.IsBoolean)(),
|
|
220
|
+
(0, class_validator_1.IsOptional)(),
|
|
221
|
+
__metadata("design:type", Boolean)
|
|
222
|
+
], UpdateNotificationPreferencesDto.prototype, "promotions", void 0);
|
|
223
|
+
__decorate([
|
|
224
|
+
(0, class_validator_1.IsBoolean)(),
|
|
225
|
+
(0, class_validator_1.IsOptional)(),
|
|
226
|
+
__metadata("design:type", Boolean)
|
|
227
|
+
], UpdateNotificationPreferencesDto.prototype, "gameUpdates", void 0);
|
|
228
|
+
class SubmitKYCDto {
|
|
229
|
+
}
|
|
230
|
+
exports.SubmitKYCDto = SubmitKYCDto;
|
|
231
|
+
__decorate([
|
|
232
|
+
(0, swagger_1.ApiProperty)({ description: 'Aadhaar card number (12 digits)', example: '123456789012', minLength: 12, maxLength: 12 }),
|
|
233
|
+
(0, class_validator_1.IsString)(),
|
|
234
|
+
(0, class_validator_1.Length)(12, 12),
|
|
235
|
+
__metadata("design:type", String)
|
|
236
|
+
], SubmitKYCDto.prototype, "aadhaarNumber", void 0);
|
|
237
|
+
__decorate([
|
|
238
|
+
(0, swagger_1.ApiProperty)({ description: 'Aadhaar front image URL (S3 or Base64)', example: 'https://s3.amazonaws.com/bucket/aadhaar-front.jpg' }),
|
|
239
|
+
(0, class_validator_1.IsString)(),
|
|
240
|
+
__metadata("design:type", String)
|
|
241
|
+
], SubmitKYCDto.prototype, "aadhaarFront", void 0);
|
|
242
|
+
__decorate([
|
|
243
|
+
(0, swagger_1.ApiProperty)({ description: 'Aadhaar back image URL (S3 or Base64)', example: 'https://s3.amazonaws.com/bucket/aadhaar-back.jpg' }),
|
|
244
|
+
(0, class_validator_1.IsString)(),
|
|
245
|
+
__metadata("design:type", String)
|
|
246
|
+
], SubmitKYCDto.prototype, "aadhaarBack", void 0);
|
|
247
|
+
__decorate([
|
|
248
|
+
(0, swagger_1.ApiProperty)({ description: 'PAN card number (10 characters)', example: 'ABCDE1234F', minLength: 10, maxLength: 10 }),
|
|
249
|
+
(0, class_validator_1.IsString)(),
|
|
250
|
+
(0, class_validator_1.Length)(10, 10),
|
|
251
|
+
__metadata("design:type", String)
|
|
252
|
+
], SubmitKYCDto.prototype, "panNumber", void 0);
|
|
253
|
+
__decorate([
|
|
254
|
+
(0, swagger_1.ApiProperty)({ description: 'PAN card image URL (S3 or Base64)', example: 'https://s3.amazonaws.com/bucket/pan-card.jpg' }),
|
|
255
|
+
(0, class_validator_1.IsString)(),
|
|
256
|
+
__metadata("design:type", String)
|
|
257
|
+
], SubmitKYCDto.prototype, "panCard", void 0);
|
|
258
|
+
__decorate([
|
|
259
|
+
(0, swagger_1.ApiProperty)({ description: 'Selfie image URL for identity verification (S3 or Base64)', example: 'https://s3.amazonaws.com/bucket/selfie.jpg' }),
|
|
260
|
+
(0, class_validator_1.IsString)(),
|
|
261
|
+
__metadata("design:type", String)
|
|
262
|
+
], SubmitKYCDto.prototype, "selfie", void 0);
|
|
263
|
+
class UpdateBankAccountDto {
|
|
264
|
+
}
|
|
265
|
+
exports.UpdateBankAccountDto = UpdateBankAccountDto;
|
|
266
|
+
__decorate([
|
|
267
|
+
(0, class_validator_1.IsString)(),
|
|
268
|
+
__metadata("design:type", String)
|
|
269
|
+
], UpdateBankAccountDto.prototype, "accountHolderName", void 0);
|
|
270
|
+
__decorate([
|
|
271
|
+
(0, class_validator_1.IsString)(),
|
|
272
|
+
(0, class_validator_1.Length)(9, 18),
|
|
273
|
+
__metadata("design:type", String)
|
|
274
|
+
], UpdateBankAccountDto.prototype, "accountNumber", void 0);
|
|
275
|
+
__decorate([
|
|
276
|
+
(0, class_validator_1.IsString)(),
|
|
277
|
+
(0, class_validator_1.Length)(11, 11),
|
|
278
|
+
__metadata("design:type", String)
|
|
279
|
+
], UpdateBankAccountDto.prototype, "ifscCode", void 0);
|
|
280
|
+
__decorate([
|
|
281
|
+
(0, class_validator_1.IsString)(),
|
|
282
|
+
__metadata("design:type", String)
|
|
283
|
+
], UpdateBankAccountDto.prototype, "bankName", void 0);
|
|
284
|
+
__decorate([
|
|
285
|
+
(0, class_validator_1.IsString)(),
|
|
286
|
+
(0, class_validator_1.IsOptional)(),
|
|
287
|
+
__metadata("design:type", String)
|
|
288
|
+
], UpdateBankAccountDto.prototype, "branch", void 0);
|
|
289
|
+
class SetDepositLimitsDto {
|
|
290
|
+
}
|
|
291
|
+
exports.SetDepositLimitsDto = SetDepositLimitsDto;
|
|
292
|
+
__decorate([
|
|
293
|
+
(0, class_validator_1.IsNumber)(),
|
|
294
|
+
(0, class_validator_1.IsOptional)(),
|
|
295
|
+
(0, class_validator_1.Min)(0),
|
|
296
|
+
__metadata("design:type", Number)
|
|
297
|
+
], SetDepositLimitsDto.prototype, "dailyDepositLimit", void 0);
|
|
298
|
+
__decorate([
|
|
299
|
+
(0, class_validator_1.IsNumber)(),
|
|
300
|
+
(0, class_validator_1.IsOptional)(),
|
|
301
|
+
(0, class_validator_1.Min)(0),
|
|
302
|
+
__metadata("design:type", Number)
|
|
303
|
+
], SetDepositLimitsDto.prototype, "weeklyDepositLimit", void 0);
|
|
304
|
+
__decorate([
|
|
305
|
+
(0, class_validator_1.IsNumber)(),
|
|
306
|
+
(0, class_validator_1.IsOptional)(),
|
|
307
|
+
(0, class_validator_1.Min)(0),
|
|
308
|
+
__metadata("design:type", Number)
|
|
309
|
+
], SetDepositLimitsDto.prototype, "monthlyDepositLimit", void 0);
|
|
310
|
+
class SelfExclusionDto {
|
|
311
|
+
}
|
|
312
|
+
exports.SelfExclusionDto = SelfExclusionDto;
|
|
313
|
+
__decorate([
|
|
314
|
+
(0, class_validator_1.IsDateString)(),
|
|
315
|
+
__metadata("design:type", String)
|
|
316
|
+
], SelfExclusionDto.prototype, "exclusionUntil", void 0);
|
|
317
|
+
__decorate([
|
|
318
|
+
(0, class_validator_1.IsString)(),
|
|
319
|
+
(0, class_validator_1.IsOptional)(),
|
|
320
|
+
__metadata("design:type", String)
|
|
321
|
+
], SelfExclusionDto.prototype, "reason", void 0);
|
|
322
|
+
class UpdateWalletDto {
|
|
323
|
+
}
|
|
324
|
+
exports.UpdateWalletDto = UpdateWalletDto;
|
|
325
|
+
__decorate([
|
|
326
|
+
(0, swagger_1.ApiProperty)({ description: 'Amount to add, deduct, lock, or unlock', example: 1000, minimum: 0 }),
|
|
327
|
+
(0, class_validator_1.IsNumber)(),
|
|
328
|
+
(0, class_validator_1.Min)(0),
|
|
329
|
+
__metadata("design:type", Number)
|
|
330
|
+
], UpdateWalletDto.prototype, "amount", void 0);
|
|
331
|
+
__decorate([
|
|
332
|
+
(0, swagger_1.ApiProperty)({ description: 'Wallet operation type', enum: ['ADD', 'DEDUCT', 'LOCK', 'UNLOCK'], example: 'ADD' }),
|
|
333
|
+
(0, class_validator_1.IsString)(),
|
|
334
|
+
(0, class_validator_1.IsEnum)(['ADD', 'DEDUCT', 'LOCK', 'UNLOCK']),
|
|
335
|
+
__metadata("design:type", String)
|
|
336
|
+
], UpdateWalletDto.prototype, "operation", void 0);
|
|
337
|
+
__decorate([
|
|
338
|
+
(0, swagger_1.ApiPropertyOptional)({ description: 'Optional reason for wallet operation', example: 'Game win payout' }),
|
|
339
|
+
(0, class_validator_1.IsString)(),
|
|
340
|
+
(0, class_validator_1.IsOptional)(),
|
|
341
|
+
__metadata("design:type", String)
|
|
342
|
+
], UpdateWalletDto.prototype, "reason", void 0);
|
|
343
|
+
class UpdateBettingStatsDto {
|
|
344
|
+
}
|
|
345
|
+
exports.UpdateBettingStatsDto = UpdateBettingStatsDto;
|
|
346
|
+
__decorate([
|
|
347
|
+
(0, class_validator_1.IsNumber)(),
|
|
348
|
+
(0, class_validator_1.IsOptional)(),
|
|
349
|
+
__metadata("design:type", Number)
|
|
350
|
+
], UpdateBettingStatsDto.prototype, "totalBets", void 0);
|
|
351
|
+
__decorate([
|
|
352
|
+
(0, class_validator_1.IsNumber)(),
|
|
353
|
+
(0, class_validator_1.IsOptional)(),
|
|
354
|
+
__metadata("design:type", Number)
|
|
355
|
+
], UpdateBettingStatsDto.prototype, "totalWins", void 0);
|
|
356
|
+
__decorate([
|
|
357
|
+
(0, class_validator_1.IsNumber)(),
|
|
358
|
+
(0, class_validator_1.IsOptional)(),
|
|
359
|
+
__metadata("design:type", Number)
|
|
360
|
+
], UpdateBettingStatsDto.prototype, "totalLosses", void 0);
|
|
361
|
+
__decorate([
|
|
362
|
+
(0, class_validator_1.IsNumber)(),
|
|
363
|
+
(0, class_validator_1.IsOptional)(),
|
|
364
|
+
__metadata("design:type", Number)
|
|
365
|
+
], UpdateBettingStatsDto.prototype, "totalAmountWagered", void 0);
|
|
366
|
+
__decorate([
|
|
367
|
+
(0, class_validator_1.IsNumber)(),
|
|
368
|
+
(0, class_validator_1.IsOptional)(),
|
|
369
|
+
__metadata("design:type", Number)
|
|
370
|
+
], UpdateBettingStatsDto.prototype, "totalAmountWon", void 0);
|
|
371
|
+
__decorate([
|
|
372
|
+
(0, class_validator_1.IsNumber)(),
|
|
373
|
+
(0, class_validator_1.IsOptional)(),
|
|
374
|
+
__metadata("design:type", Number)
|
|
375
|
+
], UpdateBettingStatsDto.prototype, "currentStreak", void 0);
|
|
376
|
+
class GetProfileStatsDto {
|
|
377
|
+
}
|
|
378
|
+
exports.GetProfileStatsDto = GetProfileStatsDto;
|
|
379
|
+
__decorate([
|
|
380
|
+
(0, class_validator_1.IsString)(),
|
|
381
|
+
__metadata("design:type", String)
|
|
382
|
+
], GetProfileStatsDto.prototype, "userId", void 0);
|
|
383
|
+
class ApplyReferralDto {
|
|
384
|
+
}
|
|
385
|
+
exports.ApplyReferralDto = ApplyReferralDto;
|
|
386
|
+
__decorate([
|
|
387
|
+
(0, swagger_1.ApiProperty)({ description: 'Referral code from another user. Earn ₹50 bonus!', example: 'PRO8A3F', minLength: 6, maxLength: 10 }),
|
|
388
|
+
(0, class_validator_1.IsString)(),
|
|
389
|
+
(0, class_validator_1.Length)(6, 10),
|
|
390
|
+
__metadata("design:type", String)
|
|
391
|
+
], ApplyReferralDto.prototype, "referralCode", void 0);
|
|
392
|
+
class GetLeaderboardDto {
|
|
393
|
+
}
|
|
394
|
+
exports.GetLeaderboardDto = GetLeaderboardDto;
|
|
395
|
+
__decorate([
|
|
396
|
+
(0, class_validator_1.IsNumber)(),
|
|
397
|
+
(0, class_validator_1.IsOptional)(),
|
|
398
|
+
(0, class_validator_1.Min)(1),
|
|
399
|
+
(0, class_validator_1.Max)(100),
|
|
400
|
+
__metadata("design:type", Number)
|
|
401
|
+
], GetLeaderboardDto.prototype, "limit", void 0);
|
|
402
|
+
__decorate([
|
|
403
|
+
(0, class_validator_1.IsString)(),
|
|
404
|
+
(0, class_validator_1.IsOptional)(),
|
|
405
|
+
(0, class_validator_1.IsEnum)(['rank', 'winRate', 'totalWins', 'level']),
|
|
406
|
+
__metadata("design:type", String)
|
|
407
|
+
], GetLeaderboardDto.prototype, "sortBy", void 0);
|
|
408
|
+
//# sourceMappingURL=user-profile.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"user-profile.dto.js","sourceRoot":"","sources":["../../src/dto/user-profile.dto.ts"],"names":[],"mappings":"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"}
|