New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

celitech-sdk-typescript

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

celitech-sdk-typescript

CELITECH - eSIM API for Trav

latest
Source
npmnpm
Version
1.1.58
Version published
Maintainers
1
Created
Source

CELITECH - eSIM API for Travel Companies

Website | API Reference

Typescript/Javascript library for interacting with the Celitech API

CI NPM version

API Reference

For a complete API reference with code examples for each endpoint in different languages - Make sure to visit https://docs.celitech.net

Installation

npm install celitech-sdk-typescript
# or
yarn add celitech-sdk-typescript

Setup

The package needs to be configured with your account's clientId and clientSecret, which are available in the Celitech Dashboard.

import { Celitech } from "celitech-sdk-typescript";

const celitech = new Celitech({
  clientId: "CLIENT_ID",
  clientSecret: "CLIENT_SECRET",
  environment: "PRODUCTION",
});
OptionRequiredDefaultDescription
clientIdtrueThe Client ID to be used for OAUTH 2.0 - available on your Celitech dashboard
clientSecrettrueThe Client Secret to be used for OAUTH 2.0 - available on your Celitech dashboard

Basic example

celitech.destinations
  .list()
  .then((response) => {
    console.log(response);
  })
  .catch((error) => {
    console.log(error);
  });

Or using ES modules and async/await:

const response = await celitech.destinations.list();

console.log(response);

FAQs

Package last updated on 29 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts