UNPKG

smart-track

Version:

A TypeScript SDK for integrating with tracking services using the Beckn protocol. Provides adapters for package tracking with built-in error handling, retry logic, and type safety.

14 lines 450 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AdapterResponse = void 0; class AdapterResponse { constructor(status, message, data, headers = {}, requestId) { this.status = status; this.data = data; this.message = message; this.headers = headers; this.requestId = requestId || ""; } } exports.AdapterResponse = AdapterResponse; //# sourceMappingURL=response.js.map