fanavaran parsian done

This commit is contained in:
2026-06-17 16:57:21 +03:30
parent b008eda11b
commit 1ef17ce337
5 changed files with 838 additions and 97 deletions

View File

@@ -84,4 +84,26 @@ export class EnvironmentVariables {
@IsOptional()
HASH_PEPPER?: string;
// --------------------------------------------------------- //
@IsOptional()
@IsString({ message: "CLAIM_V2_TOTAL_PAYMENT_CAP_ENABLED must be string" })
CLAIM_V2_TOTAL_PAYMENT_CAP_ENABLED?: string;
// --------------------------------------------------------- //
@IsOptional()
@IsNumber(
{
allowNaN: false,
allowInfinity: false,
},
{
message: "CLAIM_V2_TOTAL_PAYMENT_CAP_TOMAN must be a valid number",
},
)
@IsPositive({
message: "CLAIM_V2_TOTAL_PAYMENT_CAP_TOMAN must be a positive number",
})
CLAIM_V2_TOTAL_PAYMENT_CAP_TOMAN?: number;
// --------------------------------------------------------- //
}