pmxtjs 1.5.0 → 1.5.1

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.
@@ -17,15 +17,16 @@
17
17
  * console.log(markets[0].title);
18
18
  * ```
19
19
  */
20
- import { Exchange, Polymarket, Kalshi } from "./pmxt/client.js";
20
+ import { Exchange, Polymarket, Kalshi, Limitless } from "./pmxt/client.js";
21
21
  import { ServerManager } from "./pmxt/server-manager.js";
22
- export { Exchange, Polymarket, Kalshi } from "./pmxt/client.js";
22
+ export { Exchange, Polymarket, Kalshi, Limitless } from "./pmxt/client.js";
23
23
  export { ServerManager } from "./pmxt/server-manager.js";
24
24
  export type * from "./pmxt/models.js";
25
25
  declare const pmxt: {
26
26
  Exchange: typeof Exchange;
27
27
  Polymarket: typeof Polymarket;
28
28
  Kalshi: typeof Kalshi;
29
+ Limitless: typeof Limitless;
29
30
  ServerManager: typeof ServerManager;
30
31
  };
31
32
  export default pmxt;
package/dist/esm/index.js CHANGED
@@ -17,15 +17,16 @@
17
17
  * console.log(markets[0].title);
18
18
  * ```
19
19
  */
20
- import { Exchange, Polymarket, Kalshi } from "./pmxt/client.js";
20
+ import { Exchange, Polymarket, Kalshi, Limitless } from "./pmxt/client.js";
21
21
  import { ServerManager } from "./pmxt/server-manager.js";
22
22
  import * as models from "./pmxt/models.js";
23
- export { Exchange, Polymarket, Kalshi } from "./pmxt/client.js";
23
+ export { Exchange, Polymarket, Kalshi, Limitless } from "./pmxt/client.js";
24
24
  export { ServerManager } from "./pmxt/server-manager.js";
25
25
  const pmxt = {
26
26
  Exchange,
27
27
  Polymarket,
28
28
  Kalshi,
29
+ Limitless,
29
30
  ServerManager,
30
31
  ...models
31
32
  };
@@ -292,3 +292,22 @@ export declare class Polymarket extends Exchange {
292
292
  export declare class Kalshi extends Exchange {
293
293
  constructor(options?: ExchangeOptions);
294
294
  }
295
+ /**
296
+ * Limitless exchange client.
297
+ *
298
+ * @example
299
+ * ```typescript
300
+ * // Public data (no auth)
301
+ * const limitless = new Limitless();
302
+ * const markets = await limitless.searchMarkets("Trump");
303
+ *
304
+ * // Trading (requires auth)
305
+ * const limitless = new Limitless({
306
+ * privateKey: process.env.LIMITLESS_PRIVATE_KEY
307
+ * });
308
+ * const balance = await limitless.fetchBalance();
309
+ * ```
310
+ */
311
+ export declare class Limitless extends Exchange {
312
+ constructor(options?: Omit<ExchangeOptions, "apiKey">);
313
+ }
@@ -826,3 +826,24 @@ export class Kalshi extends Exchange {
826
826
  super("kalshi", options);
827
827
  }
828
828
  }
829
+ /**
830
+ * Limitless exchange client.
831
+ *
832
+ * @example
833
+ * ```typescript
834
+ * // Public data (no auth)
835
+ * const limitless = new Limitless();
836
+ * const markets = await limitless.searchMarkets("Trump");
837
+ *
838
+ * // Trading (requires auth)
839
+ * const limitless = new Limitless({
840
+ * privateKey: process.env.LIMITLESS_PRIVATE_KEY
841
+ * });
842
+ * const balance = await limitless.fetchBalance();
843
+ * ```
844
+ */
845
+ export class Limitless extends Exchange {
846
+ constructor(options = {}) {
847
+ super("limitless", options);
848
+ }
849
+ }
package/dist/index.d.ts CHANGED
@@ -17,15 +17,16 @@
17
17
  * console.log(markets[0].title);
18
18
  * ```
19
19
  */
20
- import { Exchange, Polymarket, Kalshi } from "./pmxt/client.js";
20
+ import { Exchange, Polymarket, Kalshi, Limitless } from "./pmxt/client.js";
21
21
  import { ServerManager } from "./pmxt/server-manager.js";
22
- export { Exchange, Polymarket, Kalshi } from "./pmxt/client.js";
22
+ export { Exchange, Polymarket, Kalshi, Limitless } from "./pmxt/client.js";
23
23
  export { ServerManager } from "./pmxt/server-manager.js";
24
24
  export type * from "./pmxt/models.js";
25
25
  declare const pmxt: {
26
26
  Exchange: typeof Exchange;
27
27
  Polymarket: typeof Polymarket;
28
28
  Kalshi: typeof Kalshi;
29
+ Limitless: typeof Limitless;
29
30
  ServerManager: typeof ServerManager;
30
31
  };
31
32
  export default pmxt;
package/dist/index.js CHANGED
@@ -52,7 +52,7 @@ var __importStar = (this && this.__importStar) || (function () {
52
52
  };
53
53
  })();
54
54
  Object.defineProperty(exports, "__esModule", { value: true });
55
- exports.ServerManager = exports.Kalshi = exports.Polymarket = exports.Exchange = void 0;
55
+ exports.ServerManager = exports.Limitless = exports.Kalshi = exports.Polymarket = exports.Exchange = void 0;
56
56
  const client_js_1 = require("./pmxt/client.js");
57
57
  const server_manager_js_1 = require("./pmxt/server-manager.js");
58
58
  const models = __importStar(require("./pmxt/models.js"));
@@ -60,12 +60,14 @@ var client_js_2 = require("./pmxt/client.js");
60
60
  Object.defineProperty(exports, "Exchange", { enumerable: true, get: function () { return client_js_2.Exchange; } });
61
61
  Object.defineProperty(exports, "Polymarket", { enumerable: true, get: function () { return client_js_2.Polymarket; } });
62
62
  Object.defineProperty(exports, "Kalshi", { enumerable: true, get: function () { return client_js_2.Kalshi; } });
63
+ Object.defineProperty(exports, "Limitless", { enumerable: true, get: function () { return client_js_2.Limitless; } });
63
64
  var server_manager_js_2 = require("./pmxt/server-manager.js");
64
65
  Object.defineProperty(exports, "ServerManager", { enumerable: true, get: function () { return server_manager_js_2.ServerManager; } });
65
66
  const pmxt = {
66
67
  Exchange: client_js_1.Exchange,
67
68
  Polymarket: client_js_1.Polymarket,
68
69
  Kalshi: client_js_1.Kalshi,
70
+ Limitless: client_js_1.Limitless,
69
71
  ServerManager: server_manager_js_1.ServerManager,
70
72
  ...models
71
73
  };
@@ -292,3 +292,22 @@ export declare class Polymarket extends Exchange {
292
292
  export declare class Kalshi extends Exchange {
293
293
  constructor(options?: ExchangeOptions);
294
294
  }
295
+ /**
296
+ * Limitless exchange client.
297
+ *
298
+ * @example
299
+ * ```typescript
300
+ * // Public data (no auth)
301
+ * const limitless = new Limitless();
302
+ * const markets = await limitless.searchMarkets("Trump");
303
+ *
304
+ * // Trading (requires auth)
305
+ * const limitless = new Limitless({
306
+ * privateKey: process.env.LIMITLESS_PRIVATE_KEY
307
+ * });
308
+ * const balance = await limitless.fetchBalance();
309
+ * ```
310
+ */
311
+ export declare class Limitless extends Exchange {
312
+ constructor(options?: Omit<ExchangeOptions, "apiKey">);
313
+ }
@@ -6,7 +6,7 @@
6
6
  * OpenAPI client, matching the Python API exactly.
7
7
  */
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.Kalshi = exports.Polymarket = exports.Exchange = void 0;
9
+ exports.Limitless = exports.Kalshi = exports.Polymarket = exports.Exchange = void 0;
10
10
  const index_js_1 = require("../generated/src/index.js");
11
11
  const server_manager_js_1 = require("./server-manager.js");
12
12
  // Converter functions
@@ -832,3 +832,25 @@ class Kalshi extends Exchange {
832
832
  }
833
833
  }
834
834
  exports.Kalshi = Kalshi;
835
+ /**
836
+ * Limitless exchange client.
837
+ *
838
+ * @example
839
+ * ```typescript
840
+ * // Public data (no auth)
841
+ * const limitless = new Limitless();
842
+ * const markets = await limitless.searchMarkets("Trump");
843
+ *
844
+ * // Trading (requires auth)
845
+ * const limitless = new Limitless({
846
+ * privateKey: process.env.LIMITLESS_PRIVATE_KEY
847
+ * });
848
+ * const balance = await limitless.fetchBalance();
849
+ * ```
850
+ */
851
+ class Limitless extends Exchange {
852
+ constructor(options = {}) {
853
+ super("limitless", options);
854
+ }
855
+ }
856
+ exports.Limitless = Limitless;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmxtjs",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "OpenAPI client for pmxtjs",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
package/index.ts CHANGED
@@ -19,11 +19,11 @@
19
19
  */
20
20
 
21
21
 
22
- import { Exchange, Polymarket, Kalshi } from "./pmxt/client.js";
22
+ import { Exchange, Polymarket, Kalshi, Limitless } from "./pmxt/client.js";
23
23
  import { ServerManager } from "./pmxt/server-manager.js";
24
24
  import * as models from "./pmxt/models.js";
25
25
 
26
- export { Exchange, Polymarket, Kalshi } from "./pmxt/client.js";
26
+ export { Exchange, Polymarket, Kalshi, Limitless } from "./pmxt/client.js";
27
27
  export { ServerManager } from "./pmxt/server-manager.js";
28
28
  export type * from "./pmxt/models.js";
29
29
 
@@ -32,6 +32,7 @@ const pmxt = {
32
32
  Exchange,
33
33
  Polymarket,
34
34
  Kalshi,
35
+ Limitless,
35
36
  ServerManager,
36
37
  ...models
37
38
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmxtjs",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Unified prediction market data API - The ccxt for prediction markets",
5
5
  "author": "PMXT Contributors",
6
6
  "repository": {
@@ -42,7 +42,7 @@
42
42
  "unified"
43
43
  ],
44
44
  "dependencies": {
45
- "pmxt-core": "1.5.0"
45
+ "pmxt-core": "1.5.1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/jest": "^30.0.0",
package/pmxt/client.ts CHANGED
@@ -976,3 +976,25 @@ export class Kalshi extends Exchange {
976
976
  super("kalshi", options);
977
977
  }
978
978
  }
979
+
980
+ /**
981
+ * Limitless exchange client.
982
+ *
983
+ * @example
984
+ * ```typescript
985
+ * // Public data (no auth)
986
+ * const limitless = new Limitless();
987
+ * const markets = await limitless.searchMarkets("Trump");
988
+ *
989
+ * // Trading (requires auth)
990
+ * const limitless = new Limitless({
991
+ * privateKey: process.env.LIMITLESS_PRIVATE_KEY
992
+ * });
993
+ * const balance = await limitless.fetchBalance();
994
+ * ```
995
+ */
996
+ export class Limitless extends Exchange {
997
+ constructor(options: Omit<ExchangeOptions, "apiKey"> = {}) {
998
+ super("limitless", options);
999
+ }
1000
+ }