@prodigio-io/sdk 3.0.0 → 3.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.
Files changed (2) hide show
  1. package/README.md +1 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -46,12 +46,6 @@ Creates a new client. Get your API key from your Prodigio dashboard under **Sett
46
46
 
47
47
  ```typescript
48
48
  const prodigio = new Prodigio('pk_live_...');
49
-
50
- // Or with config object
51
- const prodigio = new Prodigio({
52
- apiKey: 'pk_live_...',
53
- baseUrl: 'https://hire.prodigio.io', // optional
54
- });
55
49
  ```
56
50
 
57
51
  ### `prodigio.jobs.list(params?)`
@@ -89,7 +83,7 @@ const attachment = await prodigio.upload.achievement(file);
89
83
 
90
84
  ### `prodigio.applications.submit(params)`
91
85
 
92
- Submits a candidate application. AI scoring runs automatically on the backend.
86
+ Submits a candidate application.
93
87
 
94
88
  ```typescript
95
89
  const result = await prodigio.applications.submit({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prodigio-io/sdk",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Official JavaScript SDK for the Prodigio hiring API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",