@fedpulse/sdk 1.0.2 → 1.0.3
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 +0 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -155,26 +155,6 @@ await client.intelligence.marketAnalysis('541512');
|
|
|
155
155
|
await client.intelligence.complianceCheck({ uei: 'ABCDEF123456' });
|
|
156
156
|
```
|
|
157
157
|
|
|
158
|
-
### `client.assistance`
|
|
159
|
-
|
|
160
|
-
Federal grants and assistance listings.
|
|
161
|
-
|
|
162
|
-
```ts
|
|
163
|
-
await client.assistance.list({ keyword: 'broadband', agency: 'USDA' });
|
|
164
|
-
await client.assistance.get('10.001'); // CFDA program number format "XX.XXX"
|
|
165
|
-
await client.assistance.stats();
|
|
166
|
-
for await (const page of client.assistance.paginate()) { … }
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
### `client.analytics`
|
|
170
|
-
|
|
171
|
-
```ts
|
|
172
|
-
await client.analytics.summary({ range: '30d' });
|
|
173
|
-
await client.analytics.chart({ range: '30d' });
|
|
174
|
-
await client.analytics.endpoints({ range: '7d' });
|
|
175
|
-
await client.analytics.logs({ limit: 20 });
|
|
176
|
-
```
|
|
177
|
-
|
|
178
158
|
### `client.webhooks`
|
|
179
159
|
|
|
180
160
|
```ts
|
package/package.json
CHANGED