update product full

This commit is contained in:
2026-03-26 12:25:46 +03:00
parent f2b5f7006b
commit 4f5b557085
31733 changed files with 2762883 additions and 5 deletions

40
dist/config/configuration.d.ts vendored Normal file
View File

@@ -0,0 +1,40 @@
declare const _default: () => {
app: {
port: number;
nodeEnv: string;
};
database: {
url: string | undefined;
ssl: boolean;
};
redis: {
url: string | undefined;
};
jwt: {
secret: string | undefined;
accessTtl: string;
refreshTtl: string;
};
sms: {
apiKey: string | undefined;
wsdlUrl: string | undefined;
username: string | undefined;
password: string | undefined;
fromNumber: string | undefined;
};
otp: {
ttlSeconds: number;
};
minio: {
endpoint: string | undefined;
port: number;
useSsl: boolean;
accessKey: string | undefined;
secretKey: string | undefined;
bucket: string | undefined;
publicBucket: string | undefined;
privateBucket: string;
publicUrl: string | undefined;
};
};
export default _default;