mirror of
https://github.com/daydreamer-json/ak-endfield-api-archive.git
synced 2026-03-21 23:02:20 +01:00
- Add protocol data for multiple locales and versions - Implement protocol archiving in archive command - Update Api types and default settings for protocol support
29 lines
504 B
TypeScript
29 lines
504 B
TypeScript
import appConfig from '../../config.js';
|
|
|
|
export default {
|
|
ky: {
|
|
headers: {
|
|
'User-Agent': appConfig.network.userAgent.minimum,
|
|
},
|
|
timeout: appConfig.network.timeout,
|
|
retry: { limit: appConfig.network.retryCount },
|
|
},
|
|
launcherWebLang: [
|
|
'de-de',
|
|
'en-us',
|
|
'es-mx',
|
|
'fr-fr',
|
|
'id-id',
|
|
'it-it',
|
|
'ja-jp',
|
|
'ko-kr',
|
|
'pt-br',
|
|
'ru-ru',
|
|
'th-th',
|
|
'vi-vn',
|
|
'zh-cn',
|
|
'zh-tw',
|
|
] as const,
|
|
launcherWebLangCN: ['zh-cn'] as const,
|
|
};
|