puntersedge 1.0.1 → 1.0.2
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/README.md +1 -1
- package/dist/cjs/client.js +1 -1
- package/dist/esm/client.d.ts +1 -1
- package/dist/esm/client.js +1 -1
- package/package.json +3 -3
- package/src/client.ts +1 -1
package/README.md
CHANGED
|
@@ -308,7 +308,7 @@ parameter name that the server silently ignores while returning a cheerful 200.
|
|
|
308
308
|
- **Python** — [`puntersedge`](https://pypi.org/project/puntersedge/) on PyPI, same design.
|
|
309
309
|
- **MCP server** — [`puntersedge-mcp`](https://pypi.org/project/puntersedge-mcp/), for Claude,
|
|
310
310
|
Cursor and other agent hosts. See [/developers/mcp-server](https://puntersedge.online/developers/mcp-server).
|
|
311
|
-
- **Examples** — [puntersedge-examples](https://github.com/
|
|
311
|
+
- **Examples** — [puntersedge-examples](https://github.com/Propertyscout001/puntersedge-examples):
|
|
312
312
|
runnable scripts, starters, n8n workflows and a Google Sheets connector.
|
|
313
313
|
- **Postman** — import <https://api.puntersedge.online/postman.json>.
|
|
314
314
|
|
package/dist/cjs/client.js
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
22
|
exports.PuntersEdge = exports.DEFAULT_BASE_URL = exports.VERSION = void 0;
|
|
23
23
|
const http_js_1 = require("./http.js");
|
|
24
|
-
exports.VERSION = "1.0.
|
|
24
|
+
exports.VERSION = "1.0.2";
|
|
25
25
|
/** Default base URL. The API is also reachable at `https://puntersedge.online/api`. */
|
|
26
26
|
exports.DEFAULT_BASE_URL = "https://api.puntersedge.online";
|
|
27
27
|
/**
|
package/dist/esm/client.d.ts
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
import { type Query, type RequestOptions, type Result } from "./http.js";
|
|
21
21
|
import type { Credits } from "./credits.js";
|
|
22
22
|
import type { AcceptancesOut, ArchiveCoverageOut, BackfillStatusOut, BackfillSubmitOut, BestOddsEventOut, BestPricesOut, ClosingLinesOut, ConnectorHealthOut, GreyhoundFormOut, GreyhoundStatsOut, HorseFormOut, LinesArbOut, MoverOut, NextRaceOut, PremiershipOut, PriceHistoryOut, PricePathsOut, RaceEventOut, RaceResultOut, RacingBestOddsOut, RacingChangesOut, ResultsCoverageOut, SportOddsEventOut, SportOut, SportsArbOut, TrackConditionsOut, UsageOut, VenueOut, WebhookDeliveryResponse, WebhookResponse } from "./types.generated.js";
|
|
23
|
-
export declare const VERSION = "1.0.
|
|
23
|
+
export declare const VERSION = "1.0.2";
|
|
24
24
|
/** Default base URL. The API is also reachable at `https://puntersedge.online/api`. */
|
|
25
25
|
export declare const DEFAULT_BASE_URL = "https://api.puntersedge.online";
|
|
26
26
|
/** Per-call transport controls, accepted by every method. */
|
package/dist/esm/client.js
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* are camelCase on the wire too (`oddsFormat`, `maxAgeMinutes`); those pass through untouched.
|
|
19
19
|
*/
|
|
20
20
|
import { request } from "./http.js";
|
|
21
|
-
export const VERSION = "1.0.
|
|
21
|
+
export const VERSION = "1.0.2";
|
|
22
22
|
/** Default base URL. The API is also reachable at `https://puntersedge.online/api`. */
|
|
23
23
|
export const DEFAULT_BASE_URL = "https://api.puntersedge.online";
|
|
24
24
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "puntersedge",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Official TypeScript/JavaScript client for the PuntersEdge Odds API — Australian and New Zealand racing odds (thoroughbred, greyhound, harness) and Australian sports odds from 14 bookmakers, with results, form, market movement and signed webhooks.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"odds",
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
],
|
|
20
20
|
"homepage": "https://puntersedge.online/api",
|
|
21
21
|
"bugs": {
|
|
22
|
-
"url": "https://github.com/
|
|
22
|
+
"url": "https://github.com/Propertyscout001/puntersedge-node/issues",
|
|
23
23
|
"email": "hello@puntersedge.online"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/
|
|
27
|
+
"url": "git+https://github.com/Propertyscout001/puntersedge-node.git"
|
|
28
28
|
},
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"author": "PuntersEdge <hello@puntersedge.online>",
|
package/src/client.ts
CHANGED
|
@@ -30,7 +30,7 @@ import type {
|
|
|
30
30
|
VenueOut, WebhookDeliveryResponse, WebhookResponse,
|
|
31
31
|
} from "./types.generated.js";
|
|
32
32
|
|
|
33
|
-
export const VERSION = "1.0.
|
|
33
|
+
export const VERSION = "1.0.2";
|
|
34
34
|
|
|
35
35
|
/** Default base URL. The API is also reachable at `https://puntersedge.online/api`. */
|
|
36
36
|
export const DEFAULT_BASE_URL = "https://api.puntersedge.online";
|