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

@alphabite/econt-types

Package Overview
Dependencies
Maintainers
3
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alphabite/econt-types

TypeScript types for the Econt shipping API

latest
Source
npmnpm
Version
1.1.2
Version published
Maintainers
3
Created
Source

@alphabite/econt-types

TypeScript type definitions for the Econt shipping API.

Installation

npm install @alphabite/econt-types

Usage

This package contains all TypeScript type definitions for the Econt shipping API. It can be used standalone or is automatically included when you install @alphabite/econt-sdk.

import { Office, ShippingLabel, EcontConfig, City, Country } from "@alphabite/econt-types";

// Use the types in your application
const config: EcontConfig = {
  username: "your-username",
  password: "your-password",
  environment: "demo",
};

Available Types

This package exports types for:

  • Common: EcontConfig, City, Country, Address, etc.
  • Offices: Office, GetOfficesRequest, GetOfficesResponse
  • Shipments: ShippingLabel, CreateLabelRequest, CreateLabelResponse
  • Tracking: ShipmentStatus, GetShipmentStatusesRequest
  • Address: ValidateAddressRequest, AddressServiceTimesRequest
  • Profile: GetClientProfilesResponse, CreateCDAgreementRequest
  • Nomenclatures: Street, Quarter, nomenclature types
  • Errors: EcontApiError
  • Payment Reports: PaymentReportRequest, PaymentReportResponse
  • Three Way Logistics: ThreeWayLogisticsRequest, ThreeWayLogisticsResponse

Why Separate Package?

This types package is published separately to allow:

  • Type-only dependencies: Use types in your project without including the full SDK
  • Smaller bundle size: Only install types if you're implementing your own client
  • Version flexibility: Lock types independently from SDK implementation
  • Shared types: Use the same types across multiple projects
  • @alphabite/econt-sdk - Full SDK that includes these types

License

MIT

Repository

GitHub

Keywords

econt

FAQs

Package last updated on 13 Nov 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