Files
multy-stub/server/routers/procurement/mocks/auth.json
2025-10-14 11:08:29 +03:00

47 lines
1.9 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"mockAuthResponse": {
"user": {
"id": "user-123",
"email": "test@company.com",
"firstName": "Иван",
"lastName": "Петров",
"position": "Генеральный директор"
},
"company": {
"id": "company-123",
"name": "ООО \"Тестовая Компания\"",
"inn": "7707083893",
"ogrn": "1027700132195",
"fullName": "Общество с ограниченной ответственностью \"Тестовая Компания\"",
"shortName": "ООО \"Тест\"",
"legalForm": "ООО",
"industry": "Производство",
"companySize": "50-100",
"website": "https://test-company.ru",
"verified": true,
"rating": 4.5
},
"tokens": {
"accessToken": "mock-access-token-{{timestamp}}",
"refreshToken": "mock-refresh-token-{{timestamp}}"
}
},
"errorMessages": {
"validationFailed": "Заполните все обязательные поля",
"emailRequired": "Email обязателен",
"passwordRequired": "Пароль обязателен",
"termsRequired": "Необходимо принять условия использования",
"invalidCredentials": "Неверный email или пароль",
"refreshTokenRequired": "Refresh token обязателен",
"innValidation": "ИНН должен содержать 10 или 12 цифр"
},
"successMessages": {
"logoutSuccess": "Успешный выход",
"emailVerified": "Email успешно подтвержден",
"passwordResetSent": "Письмо для восстановления пароля отправлено",
"passwordResetSuccess": "Пароль успешно изменен",
"logoUploaded": "Логотип успешно загружен",
"addedToFavorites": "Добавлено в избранное"
}
}