@workos-inc/node 7.60.0 → 7.61.0
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.
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { RequestException } from '../interfaces/request-exception.interface';
|
|
2
|
+
export declare class ParseError extends Error implements RequestException {
|
|
3
|
+
readonly name = "ParseError";
|
|
4
|
+
readonly status = 500;
|
|
5
|
+
readonly rawBody: string;
|
|
6
|
+
readonly requestID: string;
|
|
7
|
+
constructor(message: string, rawBody: string, requestID: string);
|
|
8
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ParseError = void 0;
|
|
4
|
+
class ParseError extends Error {
|
|
5
|
+
constructor(message, rawBody, requestID) {
|
|
6
|
+
super(message);
|
|
7
|
+
this.name = 'ParseError';
|
|
8
|
+
this.status = 500;
|
|
9
|
+
this.rawBody = rawBody;
|
|
10
|
+
this.requestID = requestID;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
exports.ParseError = ParseError;
|
package/lib/workos.d.ts
CHANGED
package/lib/workos.js
CHANGED
|
@@ -31,7 +31,8 @@ const widgets_1 = require("./widgets/widgets");
|
|
|
31
31
|
const actions_1 = require("./actions/actions");
|
|
32
32
|
const vault_1 = require("./vault/vault");
|
|
33
33
|
const conflict_exception_1 = require("./common/exceptions/conflict.exception");
|
|
34
|
-
const
|
|
34
|
+
const parse_error_1 = require("./common/exceptions/parse-error");
|
|
35
|
+
const VERSION = '7.61.0';
|
|
35
36
|
const DEFAULT_HOSTNAME = 'api.workos.com';
|
|
36
37
|
const HEADER_AUTHORIZATION = 'Authorization';
|
|
37
38
|
const HEADER_IDEMPOTENCY_KEY = 'Idempotency-Key';
|
|
@@ -115,17 +116,24 @@ class WorkOS {
|
|
|
115
116
|
if (options.warrantToken) {
|
|
116
117
|
requestHeaders[HEADER_WARRANT_TOKEN] = options.warrantToken;
|
|
117
118
|
}
|
|
119
|
+
let res;
|
|
118
120
|
try {
|
|
119
|
-
|
|
121
|
+
res = yield this.client.post(path, entity, {
|
|
120
122
|
params: options.query,
|
|
121
123
|
headers: requestHeaders,
|
|
122
124
|
});
|
|
123
|
-
return { data: yield res.toJSON() };
|
|
124
125
|
}
|
|
125
126
|
catch (error) {
|
|
126
127
|
this.handleHttpError({ path, error });
|
|
127
128
|
throw error;
|
|
128
129
|
}
|
|
130
|
+
try {
|
|
131
|
+
return { data: yield res.toJSON() };
|
|
132
|
+
}
|
|
133
|
+
catch (error) {
|
|
134
|
+
yield this.handleParseError(error, res);
|
|
135
|
+
throw error;
|
|
136
|
+
}
|
|
129
137
|
});
|
|
130
138
|
}
|
|
131
139
|
get(path, options = {}) {
|
|
@@ -137,17 +145,24 @@ class WorkOS {
|
|
|
137
145
|
if (options.warrantToken) {
|
|
138
146
|
requestHeaders[HEADER_WARRANT_TOKEN] = options.warrantToken;
|
|
139
147
|
}
|
|
148
|
+
let res;
|
|
140
149
|
try {
|
|
141
|
-
|
|
150
|
+
res = yield this.client.get(path, {
|
|
142
151
|
params: options.query,
|
|
143
152
|
headers: requestHeaders,
|
|
144
153
|
});
|
|
145
|
-
return { data: yield res.toJSON() };
|
|
146
154
|
}
|
|
147
155
|
catch (error) {
|
|
148
156
|
this.handleHttpError({ path, error });
|
|
149
157
|
throw error;
|
|
150
158
|
}
|
|
159
|
+
try {
|
|
160
|
+
return { data: yield res.toJSON() };
|
|
161
|
+
}
|
|
162
|
+
catch (error) {
|
|
163
|
+
yield this.handleParseError(error, res);
|
|
164
|
+
throw error;
|
|
165
|
+
}
|
|
151
166
|
});
|
|
152
167
|
}
|
|
153
168
|
put(path, entity, options = {}) {
|
|
@@ -156,17 +171,24 @@ class WorkOS {
|
|
|
156
171
|
if (options.idempotencyKey) {
|
|
157
172
|
requestHeaders[HEADER_IDEMPOTENCY_KEY] = options.idempotencyKey;
|
|
158
173
|
}
|
|
174
|
+
let res;
|
|
159
175
|
try {
|
|
160
|
-
|
|
176
|
+
res = yield this.client.put(path, entity, {
|
|
161
177
|
params: options.query,
|
|
162
178
|
headers: requestHeaders,
|
|
163
179
|
});
|
|
164
|
-
return { data: yield res.toJSON() };
|
|
165
180
|
}
|
|
166
181
|
catch (error) {
|
|
167
182
|
this.handleHttpError({ path, error });
|
|
168
183
|
throw error;
|
|
169
184
|
}
|
|
185
|
+
try {
|
|
186
|
+
return { data: yield res.toJSON() };
|
|
187
|
+
}
|
|
188
|
+
catch (error) {
|
|
189
|
+
yield this.handleParseError(error, res);
|
|
190
|
+
throw error;
|
|
191
|
+
}
|
|
170
192
|
});
|
|
171
193
|
}
|
|
172
194
|
delete(path, query) {
|
|
@@ -186,6 +208,17 @@ class WorkOS {
|
|
|
186
208
|
// tslint:disable-next-line:no-console
|
|
187
209
|
console.warn(`WorkOS: ${warning}`);
|
|
188
210
|
}
|
|
211
|
+
handleParseError(error, res) {
|
|
212
|
+
var _a;
|
|
213
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
214
|
+
if (error instanceof SyntaxError) {
|
|
215
|
+
const rawResponse = res.getRawResponse();
|
|
216
|
+
const requestID = (_a = rawResponse.headers.get('X-Request-ID')) !== null && _a !== void 0 ? _a : '';
|
|
217
|
+
const rawBody = yield rawResponse.text();
|
|
218
|
+
throw new parse_error_1.ParseError(error.message, rawBody, requestID);
|
|
219
|
+
}
|
|
220
|
+
});
|
|
221
|
+
}
|
|
189
222
|
handleHttpError({ path, error }) {
|
|
190
223
|
var _a;
|
|
191
224
|
if (!(error instanceof http_client_1.HttpClientError)) {
|
package/lib/workos.spec.js
CHANGED
|
@@ -16,6 +16,7 @@ const jest_fetch_mock_1 = __importDefault(require("jest-fetch-mock"));
|
|
|
16
16
|
const test_utils_1 = require("./common/utils/test-utils");
|
|
17
17
|
const promises_1 = __importDefault(require("fs/promises"));
|
|
18
18
|
const exceptions_1 = require("./common/exceptions");
|
|
19
|
+
const parse_error_1 = require("./common/exceptions/parse-error");
|
|
19
20
|
const index_1 = require("./index");
|
|
20
21
|
const index_worker_1 = require("./index.worker");
|
|
21
22
|
const rate_limit_exceeded_exception_1 = require("./common/exceptions/rate-limit-exceeded.exception");
|
|
@@ -218,6 +219,70 @@ describe('WorkOS', () => {
|
|
|
218
219
|
expect((0, test_utils_1.fetchBody)({ raw: true })).toBe('');
|
|
219
220
|
}));
|
|
220
221
|
});
|
|
222
|
+
describe('when the api responds with invalid JSON', () => {
|
|
223
|
+
it('throws a ParseError', () => __awaiter(void 0, void 0, void 0, function* () {
|
|
224
|
+
const mockResponse = {
|
|
225
|
+
ok: true,
|
|
226
|
+
status: 200,
|
|
227
|
+
headers: new Headers({
|
|
228
|
+
'X-Request-ID': 'a-request-id',
|
|
229
|
+
'content-type': 'application/json',
|
|
230
|
+
}),
|
|
231
|
+
text: () => Promise.resolve('invalid json{'),
|
|
232
|
+
json: () => Promise.reject(new SyntaxError('Invalid JSON')),
|
|
233
|
+
};
|
|
234
|
+
jest_fetch_mock_1.default.mockResolvedValueOnce(mockResponse);
|
|
235
|
+
const workos = new index_1.WorkOS('sk_test_Sz3IQjepeSWaI4cMS4ms4sMuU');
|
|
236
|
+
const error = yield workos.post('/path', {}).catch((e) => e);
|
|
237
|
+
expect(error).toBeInstanceOf(parse_error_1.ParseError);
|
|
238
|
+
expect(error.rawBody).toBe('invalid json{');
|
|
239
|
+
expect(error.requestID).toBe('a-request-id');
|
|
240
|
+
}));
|
|
241
|
+
});
|
|
242
|
+
});
|
|
243
|
+
describe('get', () => {
|
|
244
|
+
describe('when the api responds with invalid JSON', () => {
|
|
245
|
+
it('throws a ParseError', () => __awaiter(void 0, void 0, void 0, function* () {
|
|
246
|
+
const mockResponse = {
|
|
247
|
+
ok: true,
|
|
248
|
+
status: 200,
|
|
249
|
+
headers: new Headers({
|
|
250
|
+
'X-Request-ID': 'a-request-id',
|
|
251
|
+
'content-type': 'application/json',
|
|
252
|
+
}),
|
|
253
|
+
text: () => Promise.resolve('malformed json}'),
|
|
254
|
+
json: () => Promise.reject(new SyntaxError('Invalid JSON')),
|
|
255
|
+
};
|
|
256
|
+
jest_fetch_mock_1.default.mockResolvedValueOnce(mockResponse);
|
|
257
|
+
const workos = new index_1.WorkOS('sk_test_Sz3IQjepeSWaI4cMS4ms4sMuU');
|
|
258
|
+
const error = yield workos.get('/path').catch((e) => e);
|
|
259
|
+
expect(error).toBeInstanceOf(parse_error_1.ParseError);
|
|
260
|
+
expect(error.rawBody).toBe('malformed json}');
|
|
261
|
+
expect(error.requestID).toBe('a-request-id');
|
|
262
|
+
}));
|
|
263
|
+
});
|
|
264
|
+
});
|
|
265
|
+
describe('put', () => {
|
|
266
|
+
describe('when the api responds with invalid JSON', () => {
|
|
267
|
+
it('throws a ParseError', () => __awaiter(void 0, void 0, void 0, function* () {
|
|
268
|
+
const mockResponse = {
|
|
269
|
+
ok: true,
|
|
270
|
+
status: 200,
|
|
271
|
+
headers: new Headers({
|
|
272
|
+
'X-Request-ID': 'a-request-id',
|
|
273
|
+
'content-type': 'application/json',
|
|
274
|
+
}),
|
|
275
|
+
text: () => Promise.resolve('broken json['),
|
|
276
|
+
json: () => Promise.reject(new SyntaxError('Invalid JSON')),
|
|
277
|
+
};
|
|
278
|
+
jest_fetch_mock_1.default.mockResolvedValueOnce(mockResponse);
|
|
279
|
+
const workos = new index_1.WorkOS('sk_test_Sz3IQjepeSWaI4cMS4ms4sMuU');
|
|
280
|
+
const error = yield workos.put('/path', {}).catch((e) => e);
|
|
281
|
+
expect(error).toBeInstanceOf(parse_error_1.ParseError);
|
|
282
|
+
expect(error.rawBody).toBe('broken json[');
|
|
283
|
+
expect(error.requestID).toBe('a-request-id');
|
|
284
|
+
}));
|
|
285
|
+
});
|
|
221
286
|
});
|
|
222
287
|
describe('when in an environment that does not support fetch', () => {
|
|
223
288
|
const fetchFn = globalThis.fetch;
|
package/package.json
CHANGED