UNPKG

tiny1z

Version:

The Tiny1z API Client is a convenient and lightweight npm package that allows developers to seamlessly integrate the Tiny1z URL Shortener API into their applications. Simplify URL shortening, retrieval, and management with just a few lines of code.

370 lines 13.3 kB
"use strict"; function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } } function _async_to_generator(fn) { return function() { var self = this, args = arguments; return new Promise(function(resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; } function _class_call_check(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for(var i = 0; i < props.length; i++){ var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _create_class(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } function _define_property(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _object_spread(target) { for(var i = 1; i < arguments.length; i++){ var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === "function") { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function(key) { _define_property(target, key, source[key]); }); } return target; } function _ts_generator(thisArg, body) { var f, y, t, g, _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }; return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; function verb(n) { return function(v) { return step([ n, v ]); }; } function step(op) { if (f) throw new TypeError("Generator is already executing."); while(_)try { if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; if (y = 0, t) op = [ op[0] & 2, t.value ]; switch(op[0]){ case 0: case 1: t = op; break; case 4: _.label++; return { value: op[1], done: false }; case 5: _.label++; y = op[1]; op = [ 0 ]; continue; case 7: op = _.ops.pop(); _.trys.pop(); continue; default: if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) { _.label = op[1]; break; } if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } if (t[2]) _.ops.pop(); _.trys.pop(); continue; } op = body.call(thisArg, _); } catch (e) { op = [ 6, e ]; y = 0; } finally{ f = t = 0; } if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; } } var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = function(target, all) { for(var name in all)__defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = function(to, from, except, desc) { if (from && typeof from === "object" || typeof from === "function") { var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined; try { var _loop = function() { var key = _step.value; if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: function() { return from[key]; }, enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); }; for(var _iterator = __getOwnPropNames(from)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true)_loop(); } catch (err) { _didIteratorError = true; _iteratorError = err; } finally{ try { if (!_iteratorNormalCompletion && _iterator.return != null) { _iterator.return(); } } finally{ if (_didIteratorError) { throw _iteratorError; } } } } return to; }; var __toCommonJS = function(mod) { return __copyProps(__defProp({}, "__esModule", { value: true }), mod); }; // index.ts var tiny1z_exports = {}; __export(tiny1z_exports, { default: function() { return Tiny1zClient; } }); module.exports = __toCommonJS(tiny1z_exports); var Tiny1zClient = /*#__PURE__*/ function() { function Tiny1zClient(options) { _class_call_check(this, Tiny1zClient); if (typeof options === "string") { this.apiKey = options; this.baseUrl = "https://tiny1z.com"; } else { this.apiKey = options.apiKey; this.baseUrl = options.baseUrl || "https://tiny1z.com"; } } _create_class(Tiny1zClient, [ { key: "request", value: function request(endpoint, method, body) { var _this = this; return _async_to_generator(function() { var res, error; return _ts_generator(this, function(_state) { switch(_state.label){ case 0: _state.trys.push([ 0, 3, , 4 ]); return [ 4, fetch("".concat(_this.baseUrl).concat(endpoint), _object_spread({ method: method, headers: { "Content-Type": "application/json", Authorization: _this.apiKey } }, body ? { body: JSON.stringify(body) } : {})) ]; case 1: res = _state.sent(); return [ 4, res.json() ]; case 2: return [ 2, _state.sent() ]; case 3: error = _state.sent(); console.error("Tiny1z API error:", error); return [ 2, { error: true, msg: error || "Failed to fetch data." } ]; case 4: return [ 2 ]; } }); })(); } }, { key: "createSingleUrl", value: /** Shorten a single URL */ function createSingleUrl(data) { var _this = this; return _async_to_generator(function() { return _ts_generator(this, function(_state) { return [ 2, _this.request("/api/v1/create", "POST", data) ]; }); })(); } }, { key: "createBulkUrl", value: /** Shorten multiple URLs in bulk */ function createBulkUrl(data) { var _this = this; return _async_to_generator(function() { return _ts_generator(this, function(_state) { return [ 2, _this.request("/api/v1/create/bulk", "POST", data) ]; }); })(); } }, { key: "getUserUrls", value: /** Retrieve URLs created by a specific user reference */ function getUserUrls(reference) { var _this = this; return _async_to_generator(function() { return _ts_generator(this, function(_state) { return [ 2, _this.request("/api/v1/user?reference=".concat(encodeURIComponent(reference)), "GET") ]; }); })(); } }, { key: "singleUrlInfo", value: /** Get detailed information about a specific short URL */ function singleUrlInfo(slug) { var _this = this; return _async_to_generator(function() { return _ts_generator(this, function(_state) { return [ 2, _this.request("/api/v1/user?slug=".concat(encodeURIComponent(slug)), "GET") ]; }); })(); } }, { key: "getAllUrls", value: /** Fetch all URLs created by the authenticated user */ function getAllUrls() { var offset = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, limit = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 10, sort = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : "desc"; var _this = this; return _async_to_generator(function() { return _ts_generator(this, function(_state) { return [ 2, _this.request("/api/v1/user/all?offset=".concat(offset, "&limit=").concat(limit, "&sort=").concat(sort), "GET") ]; }); })(); } } ]); return Tiny1zClient; }(); //# sourceMappingURL=index.js.map