@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.
- package/README.md +1 -7
- 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.
|
|
86
|
+
Submits a candidate application.
|
|
93
87
|
|
|
94
88
|
```typescript
|
|
95
89
|
const result = await prodigio.applications.submit({
|