-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(login-redirect): automatically react on redirect during login pr…
…ocedure (fixes #7)
- Loading branch information
Showing
5 changed files
with
99 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { LibreLinkUpClient } from './client'; | ||
|
||
(async function() { | ||
const username = 'USERNAME'; | ||
const password = 'PASSWORD'; | ||
const libreClient = LibreLinkUpClient({ | ||
username, | ||
password, | ||
connectionIdentifier: 'IDENTIFIER' | ||
}); | ||
|
||
const data = await libreClient.read(); | ||
console.log(data); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
export interface AE { | ||
lslApi: string; | ||
socketHub: string; | ||
} | ||
|
||
export interface RegionalMap { | ||
us: AE; | ||
eu: AE; | ||
fr: AE; | ||
jp: AE; | ||
de: AE; | ||
ap: AE; | ||
au: AE; | ||
ae: AE; | ||
} | ||
|
||
interface Data { | ||
regionalMap: RegionalMap; | ||
} | ||
|
||
export interface CountryResponse { | ||
status: number; | ||
data: Data; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters