Skip to content

Commit 2f869e9

Browse files
committed
bumped dependencies
1 parent 9888165 commit 2f869e9

6 files changed

Lines changed: 763 additions & 1309 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@l0uisgrange

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ dist
44
node_modules
55
**/.DS_Store
66
docs/build/*
7+
.zed

.oxlintrc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "./node_modules/oxlint/configuration_schema.json",
3+
"ignorePatterns": ["test"]
4+
}

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ console.log(vessel.name);
3030

3131
The `Espadon` constructor supports the following options.
3232

33-
| Option | Description | Default |
34-
| :--------- | :------------------------------- | :----------------------------------- |
35-
| `key` | Your API secret key | _None_ (required) |
33+
| Option | Description | Default |
34+
| :--------- | :------------------------------- | :-------------------------------- |
35+
| `key` | Your API secret key | _None_ (required) |
3636
| `baseUrl` | The base endpoint URL | `https://api.datalastic.com/api/` |
37-
| `version` | The API version | `v0` |
38-
| `validate` | Validates JSON and coerces data | `true` |
39-
| `debug` | Logs the URL before the request | `false` |
40-
| `timeout` | Requests timeout in milliseconds | `null` |
37+
| `version` | The API version | `v0` |
38+
| `validate` | Validates JSON and coerces data | `true` |
39+
| `debug` | Logs the URL before the request | `false` |
40+
| `timeout` | Requests timeout in milliseconds | `null` |
4141

4242
## Endpoints
4343

@@ -54,10 +54,10 @@ let data = await esp.vessel('b8625b67-7142-cfd1-7b85-595cebfe4191');
5454
let data = await esp.vesselPro({ imo: 9525338 });
5555
// Bulk with up to 100 vessels in a single call
5656
let data = await esp.vesselBulk([
57-
{ imo: 9525338 },
58-
{ imo: 9249403 },
59-
{ mmsi: 235362000 },
60-
// ...
57+
{ imo: 9525338 },
58+
{ imo: 9249403 },
59+
{ mmsi: 235362000 },
60+
// ...
6161
]);
6262
```
6363

0 commit comments

Comments
 (0)