mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 20:19:39 +02:00
fix(telegram-calendar-bot): fix dependency version and type error
- Update @nestjs/config from ^10.0.0 to ^3.3.0 (correct version) - Fix formatStatusMessage to accept null username parameter - Add pnpm-lock.yaml for reproducible builds https://claude.ai/code/session_01LwmhvhKpEsvVtY1ZKhYu6f
This commit is contained in:
parent
0f6faa520b
commit
2d47941247
3 changed files with 3809 additions and 2 deletions
|
|
@ -20,7 +20,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@nestjs/common": "^10.4.15",
|
||||
"@nestjs/config": "^10.0.0",
|
||||
"@nestjs/config": "^3.3.0",
|
||||
"@nestjs/core": "^10.4.15",
|
||||
"@nestjs/platform-express": "^10.4.15",
|
||||
"@nestjs/schedule": "^4.1.2",
|
||||
|
|
|
|||
3807
services/telegram-calendar-bot/pnpm-lock.yaml
generated
Normal file
3807
services/telegram-calendar-bot/pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -351,7 +351,7 @@ export function formatHelpMessage(): string {
|
|||
*/
|
||||
export function formatStatusMessage(
|
||||
isLinked: boolean,
|
||||
username?: string,
|
||||
username?: string | null,
|
||||
lastActive?: Date
|
||||
): string {
|
||||
if (!isLinked) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue