npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sfrmobile-api

v1.0.9

Published

Client de l'API mobile SFR/RED

Downloads

16

Readme

SfrMobile

Support non-officiel de l'API mobile de SFR/RED. Les identifiants utilisés sont les mêmes que pour se connecter sur le site de l'opérateur.

Kind: global class

new SfrMobile(casauthenticationtoken)

| Param | Type | Description | | --- | --- | --- | | casauthenticationtoken | string | Jeton temporaire d'authentification |

Example

const { SfrMobile } = require('sfrmobile-api')

SfrMobile.login(username, password).then(({ token }) => {
   const user = new SfrMobile(token)
   // Votre code
})

sfrMobile.getConso(line) ⇒ Promise.<Consumption>

Consommation générale de la ligne

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | line | string | MSISDN de la ligne à sélectionner |

sfrMobile.getConsoNationale(line) ⇒ Promise.<ConsumptionNationale>

Historique de la consommation sur le territoire national

Kind: instance method of SfrMobile

| Param | Description | | --- | --- | | line | MSISDN de la ligne à sélectionner |

sfrMobile.getFacturationMobile(line, duration) ⇒ Promise.<Facturation>

Historique de facturation d'une ligne mobile

Kind: instance method of SfrMobile

| Param | Type | Default | Description | | --- | --- | --- | --- | | line | string | | MSISDN de la ligne mobile à sélectionner | | duration | number | 6 | Nombre de périodes de facturation (6,12,18,24) |

sfrMobile.downloadFactureMobile(line, numeroFacture, fadet) ⇒ Promise.<Stream>

Télécharger la facture d'une ligne mobile

Kind: instance method of SfrMobile

| Param | Type | Default | Description | | --- | --- | --- | --- | | line | string | | MSISDN de la ligne mobile à sélectionner | | numeroFacture | string | | Identifiant de la facture de la ligne mobile | | fadet | boolean | false | Facture détaillée |

sfrMobile.getFacturationFixe(line, duration) ⇒ Promise.<FacturationFixe>

Historique de facturation d'une ligne fixe

Kind: instance method of SfrMobile

| Param | Type | Default | Description | | --- | --- | --- | --- | | line | string | | NDI de la ligne fixe | | duration | number | 6 | Nombre de périodes de facturation (6,12,18,24) |

sfrMobile.downloadFactureFixe(line, idFact) ⇒ Promise.<Stream>

Télécharger la facture d'une ligne fixe

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | line | string | NDI de la ligne fixe | | idFact | string | Identifiant de la facture de la ligne fixe |

sfrMobile.getInfosClientFixe(line) ⇒ Promise.<InfosClientFixe>

Détails de la ligne fixe

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | line | string | undefined | NDI de la ligne fixe |

sfrMobile.getFicheMonCompte() ⇒ Promise.<FicheMonCompte>

Fiche descriptive du compte de l'utilisateur courant

Kind: instance method of SfrMobile

sfrMobile.getDashboard(line) ⇒ Promise.<Dashboard>

Informations générales de la ligne

Kind: instance method of SfrMobile

| Param | Description | | --- | --- | | line | MSISDN de la ligne à sélectionner |

sfrMobile.getInfosPersonnelles(line) ⇒ Promise.<InfoPersonnelles>

Informations personnelles concernant la ligne

Kind: instance method of SfrMobile

| Param | Description | | --- | --- | | line | MSISDN de la ligne à sélectionner |

sfrMobile.getNotificationsCount() ⇒ Promise.<NotificationsCount>

Nombre de notifications de l'utilisateur

Kind: instance method of SfrMobile

sfrMobile.getNotifications() ⇒ Promise.<{notifications: Array.<Notification>}>

Lister les notifications de l'utilisateur

Kind: instance method of SfrMobile

sfrMobile.getEquipements(line, universe) ⇒ Promise.<Equipement>

Liste des équipements mis à disposition pour une ligne

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | line | string | MSISDN de la ligne à sélectionner | | universe | Universe | string | SFR/RED |

sfrMobile.getOptionDetail(line, universe, environment, option) ⇒ Promise.<OptionDetail>

Détail d'une option souscrite

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | line | string | MSISDN de la ligne à sélectionner | | universe | Universe | string | SFR/RED | | environment | Environment | string | Type de ligne | | option | string | Identifiant de l'option |

sfrMobile.getOptionsCatalog(line) ⇒ Promise.<OptionsCatalog>

Catalogue des catégories d'options disponibles pour une ligne

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | line | string | MSISDN de la ligne à sélectionner |

sfrMobile.getOptionsCatalogDetail(line) ⇒ Promise.<OptionsCatalogDetail>

Catalogue détaillé des catégories d'options disponibles pour une ligne

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | line | string | MSISDN de la ligne à sélectionner |

sfrMobile.getOptions(line, category) ⇒ Promise.<OptionsList>

Lister les options disponibles dans une catégorie

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | line | string | MSISDN de la ligne à sélectionner | | category | string | Catégorie d'option |

sfrMobile.getEquipementDetail(line, optionCode, universe) ⇒ Promise.<EquipementDetail>

Obtenir la description complète de l'équipement

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | line | string | MSISDN de la ligne à sélectionner | | optionCode | string | Identifiant de l'option d'équipement | | universe | Universe | string | SFR/RED |

sfrMobile.getParc(line, universe, environment) ⇒ Promise.<Parc>

Détails de l'offre d'une ligne

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | line | string | MSISDN de la ligne à sélectionner | | universe | Universe | string | SFR/RED | | environment | Environment | string | Type de ligne |

sfrMobile.getPaiementTiersAchatsAbonnements(line) ⇒ Promise.<AchatsAbonnements>

Liste des achats et abonnements (hors forfait) sur la ligne

Kind: instance method of SfrMobile

| Param | Description | | --- | --- | | line | MSISDN de la ligne à sélectionner |

sfrMobile.getPaiementTiersOptionsAchat(line) ⇒ Promise.<OptionsAchat>

Droits d'achat sur la ligne (Stores, jeux, ...)

Kind: instance method of SfrMobile

| Param | Description | | --- | --- | | line | MSISDN de la ligne à sélectionner |

sfrMobile.postPaiementTiersOptionsAchat(selectedLine, otp, data)

Mettre à jour les droits d'achat sur la ligne

Kind: instance method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | selectedLine | string | MSISDN de la ligne à sélectionner | | otp | string | Code à usage unique obtenu avec getOTPSMS() | | data | OptionsAchat | Droits d'achats à permuter |

sfrMobile.getOTPSMS(line) ⇒ Promise.<OTPSMSResponse>

Obtenir un code à usage unique pour effectuer une opération

Kind: instance method of SfrMobile

| Param | Description | | --- | --- | | line | MSISDN de la ligne à sélectionner |

sfrMobile.getOffreAMES(line) ⇒ Promise.<OffreAmes>

Informations sur les remises Multi-Pack

Kind: instance method of SfrMobile

| Param | Description | | --- | --- | | line | MSISDN de la ligne à sélectionner |

SfrMobile.login(username, password, duration, universe) ⇒ Promise.<LoginResponse>

Obtenir un jeton d'authentification auprès du CAS de SFR

Kind: static method of SfrMobile

| Param | Type | Default | Description | | --- | --- | --- | --- | | username | string | | Identifiant du compte | | password | string | | Mot de passe du compte | | duration | number | 86400 | Durée de validité du jeton demandé en secondes | | universe | Universe | | SFR/RED |

SfrMobile.verifyUsername(username, universe) ⇒ Promise.<VerifyUsernameResponse>

Tester la validité d'un nom d'utilisateur

Kind: static method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | username | string | Nom d'utilisateur à tester | | universe | Universe | SFR/RED |

SfrMobile.getTerminalInfoIMEI(imei) ⇒ Promise.<InfosTerminalIMEI>

Description du terminal associé à un IMEI

Kind: static method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | imei | string | Identifiant du terminal mobile |

SfrMobile.getTerminalInfo(id, type) ⇒ Promise.<InfosTerminal>

Description du terminal associé à un identifiant

Kind: static method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | id | string | Identifiant | | type | 'BACARAT' | 'TAC' | Type d'identifiant |

SfrMobile.getTerminauxInfo(ids, type) ⇒ Promise.<Array.<InfosTerminal>>

Description des terminaux associés à leur identifiant

Kind: static method of SfrMobile

| Param | Type | Description | | --- | --- | --- | | ids | Array.<string> | Identifiants | | type | 'BACARAT' | 'TAC' | Type d'identifiant |