diff --git a/README.md b/README.md index 0e32969..8b7b1cc 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The script takes the following environment variables | LINK_UP_PASSWORD | LibreLink Up Login Password | mypassword | X | | LINK_UP_CONNECTION | LibreLink Up Patient-ID. Can be received from the console output if multiple connections are available. | 123456abc-abcd-efgh-7891def | | | LINK_UP_TIME_INTERVAL | The time interval of requesting values from libre link up | 5 | | -| LINK_UP_REGION | Your region. Used to determine the correct LibreLinkUp service (Possible values: AE, AP, AU, CA, DE, EU, EU2, FR, JP, US, LA) | EU | | +| LINK_UP_REGION | Your region. Used to determine the correct LibreLinkUp service (Possible values: AE, AP, AU, CA, DE, EU, EU2, FR, JP, US, LA, RU) | EU | | | NIGHTSCOUT_URL | Hostname of the Nightscout instance (without https://) | nightscout.yourdomain.com | X | | NIGHTSCOUT_API_TOKEN | SHA1 Hash of Nightscout access token | 162f14de46149447c3338a8286223de407e3b2fa | X | | NIGHTSCOUT_DISABLE_HTTPS | Disables the HTTPS requirement for Nightscout URLs | true | | diff --git a/app.json b/app.json index 32309da..d73ff03 100644 --- a/app.json +++ b/app.json @@ -33,7 +33,7 @@ "required": true }, "LINK_UP_REGION": { - "description": "Your region. Used to determine the correct LibreLinkUp service (Possible values: AE, AP, AU, CA, DE, EU, EU2, FR, JP, US, LA)", + "description": "Your region. Used to determine the correct LibreLinkUp service (Possible values: AE, AP, AU, CA, DE, EU, EU2, FR, JP, US, LA, RU)", "value": "EU", "required": false }, diff --git a/package-lock.json b/package-lock.json index da976bb..8411c47 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nightscout-librelink-up", - "version": "2.7.2", + "version": "2.7.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "nightscout-librelink-up", - "version": "2.7.2", + "version": "2.7.3", "license": "MIT", "dependencies": { "axios": "~1.7.7", diff --git a/package.json b/package.json index 6c48af2..cc1f2a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nightscout-librelink-up", - "version": "2.7.2", + "version": "2.7.3", "description": "Script written in TypeScript that uploads CGM readings from LibreLink Up to Nightscout", "main": "dist/index.js", "scripts": { diff --git a/src/constants/llu-api-endpoints.ts b/src/constants/llu-api-endpoints.ts index bc32083..9a31029 100644 --- a/src/constants/llu-api-endpoints.ts +++ b/src/constants/llu-api-endpoints.ts @@ -14,4 +14,5 @@ export const LLU_API_ENDPOINTS: LluApiEndpoints = { JP: "api-jp.libreview.io", US: "api-us.libreview.io", LA: "api-la.libreview.io", + RU: "api.libreview.ru", } as const;