pmxtjs 0.4.3 → 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -10,4 +10,6 @@ declare const pmxt: {
10
10
  Polymarket: typeof PolymarketExchange;
11
11
  Kalshi: typeof KalshiExchange;
12
12
  };
13
+ export declare const polymarket: typeof PolymarketExchange;
14
+ export declare const kalshi: typeof KalshiExchange;
13
15
  export default pmxt;
package/dist/index.js CHANGED
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.kalshi = exports.polymarket = void 0;
17
18
  __exportStar(require("./BaseExchange"), exports);
18
19
  __exportStar(require("./types"), exports);
19
20
  __exportStar(require("./exchanges/polymarket"), exports);
@@ -26,4 +27,6 @@ const pmxt = {
26
27
  Polymarket: polymarket_1.PolymarketExchange,
27
28
  Kalshi: kalshi_1.KalshiExchange
28
29
  };
30
+ exports.polymarket = polymarket_1.PolymarketExchange;
31
+ exports.kalshi = kalshi_1.KalshiExchange;
29
32
  exports.default = pmxt;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmxtjs",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "pmxt is a unified prediction market data API. The ccxt for prediction markets.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",