pounce-agent-data 1.0.0 → 1.0.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.
package/README.md CHANGED
@@ -5,13 +5,13 @@ TypeScript SDK for the [Pounce Agent Data API](https://pounce.ch/developers) - C
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install @pounce/agent-data
8
+ npm install pounce-agent-data
9
9
  ```
10
10
 
11
11
  ## Quick Start
12
12
 
13
13
  ```typescript
14
- import { PounceClient } from '@pounce/agent-data';
14
+ import { PounceClient } from 'pounce-agent-data';
15
15
 
16
16
  const client = new PounceClient({ apiKey: 'pounce_live_xxx' });
17
17
 
package/dist/index.js CHANGED
@@ -90,7 +90,7 @@ var PounceAgentDataClient = class {
90
90
  */
91
91
  async recentSignals(options = {}) {
92
92
  const { hours = 24, limit = 100, minScore = 50, category, country, tlds } = options;
93
- return this.getJson("/api/v1/agent-data/recent", {
93
+ return this.getJson("/api/v1/agent-data/signals/recent", {
94
94
  hours,
95
95
  limit,
96
96
  min_score: minScore,
package/dist/index.mjs CHANGED
@@ -65,7 +65,7 @@ var PounceAgentDataClient = class {
65
65
  */
66
66
  async recentSignals(options = {}) {
67
67
  const { hours = 24, limit = 100, minScore = 50, category, country, tlds } = options;
68
- return this.getJson("/api/v1/agent-data/recent", {
68
+ return this.getJson("/api/v1/agent-data/signals/recent", {
69
69
  hours,
70
70
  limit,
71
71
  min_score: minScore,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pounce-agent-data",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "TypeScript SDK for the Pounce Agent Data API - B2B company signals for AI agents",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",