Skip to content

Commit 408943b

Browse files
committed
Update package.json version to 1.1.0
1 parent a5629da commit 408943b

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

.vscode/launch.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Run NPM Test",
11+
"runtimeExecutable": "npm",
12+
"runtimeArgs": ["run", "test"],
13+
"skipFiles": ["<node_internals>/**"]
14+
}
15+
]
16+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "indiepitcher",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"main": "./dist/index.js",
55
"module": "./dist/index.mjs",
66
"types": "./dist/index.d.ts",

src/errors.ts

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export class IndiePitcherResponseError extends Error {
2+
statusCode: number;
3+
4+
constructor(message: string, statusCode: number) {
5+
super(message);
6+
this.name = 'IndiePitcherError';
7+
this.statusCode = statusCode;
8+
}
9+
}

src/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import type {
88
SendEmailToContact,
99
SendEmailToMailingList,
1010
} from './dtos';
11+
import { IndiePitcherResponseError } from './errors';
1112
import type {
1213
DataResponse,
1314
EmptyResponse,
@@ -32,8 +33,8 @@ export class IndiePitcher {
3233
const response = await fetch(`${this.baseUrl}${path}`, options);
3334

3435
if (!response.ok) {
35-
const error = await response.json();
36-
throw new Error(error);
36+
const json = await response.json();
37+
throw new IndiePitcherResponseError(json.reason ?? 'Unknown reason', response.status);
3738
}
3839

3940
const data = await response.json();

src/indiepitcher.test.ts

+10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { IndiePitcher } from '.';
2+
import type { IndiePitcherResponseError } from './errors';
23

34
require('dotenv').config();
45
const apiKey = process.env.API_KEY;
@@ -10,6 +11,15 @@ afterEach(() => {
1011
return new Promise((resolve) => setTimeout(resolve, 1000));
1112
});
1213

14+
test('invalid API key', async () => {
15+
const indiePitcher = new IndiePitcher('xxx');
16+
try {
17+
await indiePitcher.listMailingLists();
18+
} catch (error) {
19+
expect((error as IndiePitcherResponseError).message).toBe('Unauthorized');
20+
}
21+
});
22+
1323
test('list mailing lists', async () => {
1424
const data = await indiePitcher.listMailingLists();
1525
expect(data.data.length).toBe(2);

0 commit comments

Comments
 (0)