@workos-inc/node 7.4.0 → 7.5.0-beta.node-compatibility

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 (50) hide show
  1. package/README.md +4 -0
  2. package/lib/common/crypto/CryptoProvider.d.ts +32 -0
  3. package/lib/common/crypto/CryptoProvider.js +13 -0
  4. package/lib/common/crypto/NodeCryptoProvider.d.ts +12 -0
  5. package/lib/common/crypto/NodeCryptoProvider.js +73 -0
  6. package/lib/common/crypto/SubtleCryptoProvider.d.ts +15 -0
  7. package/lib/common/crypto/SubtleCryptoProvider.js +75 -0
  8. package/lib/common/crypto/index.d.ts +3 -0
  9. package/lib/common/crypto/index.js +19 -0
  10. package/lib/common/interfaces/event.interface.d.ts +1 -1
  11. package/lib/common/interfaces/http-client.interface.d.ts +20 -0
  12. package/lib/common/interfaces/index.d.ts +1 -0
  13. package/lib/common/interfaces/index.js +1 -0
  14. package/lib/common/interfaces/workos-options.interface.d.ts +1 -0
  15. package/lib/common/net/fetch-client.d.ts +22 -0
  16. package/lib/common/net/fetch-client.js +112 -0
  17. package/lib/common/net/http-client.d.ts +39 -0
  18. package/lib/common/net/http-client.js +76 -0
  19. package/lib/common/net/index.d.ts +5 -0
  20. package/lib/common/net/index.js +31 -0
  21. package/lib/common/net/node-client.d.ts +23 -0
  22. package/lib/common/net/node-client.js +155 -0
  23. package/lib/directory-sync/directory-sync.spec.js +61 -0
  24. package/lib/directory-sync/interfaces/directory-user.interface.d.ts +3 -0
  25. package/lib/directory-sync/serializers/directory-user.serializer.js +2 -0
  26. package/lib/events/events.spec.js +88 -0
  27. package/lib/roles/interfaces/index.d.ts +1 -0
  28. package/lib/roles/interfaces/index.js +17 -0
  29. package/lib/roles/interfaces/role.interface.js +2 -0
  30. package/lib/user-management/fixtures/deactivate-organization-membership.json +12 -0
  31. package/lib/user-management/interfaces/index.d.ts +0 -2
  32. package/lib/user-management/interfaces/index.js +0 -2
  33. package/lib/user-management/interfaces/list-organization-memberships-options.interface.d.ts +3 -0
  34. package/lib/user-management/interfaces/organization-membership.interface.d.ts +4 -3
  35. package/lib/user-management/serializers/list-organization-memberships-options.serializer.js +12 -8
  36. package/lib/user-management/serializers/role.serializer.d.ts +1 -1
  37. package/lib/user-management/user-management.d.ts +2 -0
  38. package/lib/user-management/user-management.js +12 -0
  39. package/lib/user-management/user-management.spec.js +40 -5
  40. package/lib/webhooks/webhooks.d.ts +2 -2
  41. package/lib/webhooks/webhooks.js +11 -37
  42. package/lib/webhooks/webhooks.spec.js +29 -0
  43. package/lib/workos.d.ts +1 -1
  44. package/lib/workos.js +18 -12
  45. package/lib/workos.spec.js +56 -3
  46. package/package.json +2 -3
  47. package/lib/common/utils/fetch-client.d.ts +0 -31
  48. package/lib/common/utils/fetch-client.js +0 -108
  49. /package/lib/{user-management/interfaces/role.interface.js → common/interfaces/http-client.interface.js} +0 -0
  50. /package/lib/{user-management → roles}/interfaces/role.interface.d.ts +0 -0
@@ -12,9 +12,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.Webhooks = void 0;
13
13
  const exceptions_1 = require("../common/exceptions");
14
14
  const serializers_1 = require("../common/serializers");
15
+ const crypto_1 = require("../common/crypto");
15
16
  class Webhooks {
16
- constructor() {
17
- this.encoder = new TextEncoder();
17
+ constructor(subtleCrypto) {
18
+ if (typeof crypto !== 'undefined' && typeof crypto.subtle !== 'undefined') {
19
+ this.cryptoProvider = new crypto_1.SubtleCryptoProvider(subtleCrypto);
20
+ }
21
+ else {
22
+ this.cryptoProvider = new crypto_1.NodeCryptoProvider();
23
+ }
18
24
  }
19
25
  constructEvent({ payload, sigHeader, secret, tolerance = 180000, }) {
20
26
  return __awaiter(this, void 0, void 0, function* () {
@@ -34,7 +40,8 @@ class Webhooks {
34
40
  throw new exceptions_1.SignatureVerificationException('Timestamp outside the tolerance zone');
35
41
  }
36
42
  const expectedSig = yield this.computeSignature(timestamp, payload, secret);
37
- if ((yield this.secureCompare(expectedSig, signatureHash)) === false) {
43
+ if ((yield this.cryptoProvider.secureCompare(expectedSig, signatureHash)) ===
44
+ false) {
38
45
  throw new exceptions_1.SignatureVerificationException('Signature hash does not match the expected signature hash for payload');
39
46
  }
40
47
  return true;
@@ -54,41 +61,8 @@ class Webhooks {
54
61
  return __awaiter(this, void 0, void 0, function* () {
55
62
  payload = JSON.stringify(payload);
56
63
  const signedPayload = `${timestamp}.${payload}`;
57
- const key = yield crypto.subtle.importKey('raw', this.encoder.encode(secret), { name: 'HMAC', hash: 'SHA-256' }, false, ['sign']);
58
- const signatureBuffer = yield crypto.subtle.sign('HMAC', key, this.encoder.encode(signedPayload));
59
- // crypto.subtle returns the signature in base64 format. This must be
60
- // encoded in hex to match the CryptoProvider contract. We map each byte in
61
- // the buffer to its corresponding hex octet and then combine into a string.
62
- const signatureBytes = new Uint8Array(signatureBuffer);
63
- const signatureHexCodes = new Array(signatureBytes.length);
64
- for (let i = 0; i < signatureBytes.length; i++) {
65
- signatureHexCodes[i] = byteHexMapping[signatureBytes[i]];
66
- }
67
- return signatureHexCodes.join('');
68
- });
69
- }
70
- secureCompare(stringA, stringB) {
71
- return __awaiter(this, void 0, void 0, function* () {
72
- const bufferA = this.encoder.encode(stringA);
73
- const bufferB = this.encoder.encode(stringB);
74
- if (bufferA.length !== bufferB.length) {
75
- return false;
76
- }
77
- const algorithm = { name: 'HMAC', hash: 'SHA-256' };
78
- const key = (yield crypto.subtle.generateKey(algorithm, false, [
79
- 'sign',
80
- 'verify',
81
- ]));
82
- const hmac = yield crypto.subtle.sign(algorithm, key, bufferA);
83
- const equal = yield crypto.subtle.verify(algorithm, key, hmac, bufferB);
84
- return equal;
64
+ return yield this.cryptoProvider.computeHMACSignatureAsync(signedPayload, secret);
85
65
  });
86
66
  }
87
67
  }
88
68
  exports.Webhooks = Webhooks;
89
- // Cached mapping of byte to hex representation. We do this once to avoid re-
90
- // computing every time we need to convert the result of a signature to hex.
91
- const byteHexMapping = new Array(256);
92
- for (let i = 0; i < byteHexMapping.length; i++) {
93
- byteHexMapping[i] = i.toString(16).padStart(2, '0');
94
- }
@@ -17,6 +17,7 @@ const workos_1 = require("../workos");
17
17
  const webhook_json_1 = __importDefault(require("./fixtures/webhook.json"));
18
18
  const workos = new workos_1.WorkOS('sk_test_Sz3IQjepeSWaI4cMS4ms4sMuU');
19
19
  const exceptions_1 = require("../common/exceptions");
20
+ const crypto_2 = require("../common/crypto");
20
21
  describe('Webhooks', () => {
21
22
  let payload;
22
23
  let secret;
@@ -187,4 +188,32 @@ describe('Webhooks', () => {
187
188
  expect(signature).toEqual(signatureHash);
188
189
  }));
189
190
  });
191
+ describe('when in an environment that supports SubtleCrypto', () => {
192
+ it('automatically uses the subtle crypto library', () => {
193
+ // tslint:disable-next-line
194
+ expect(workos.webhooks['cryptoProvider']).toBeInstanceOf(crypto_2.SubtleCryptoProvider);
195
+ });
196
+ });
197
+ describe('CryptoProvider', () => {
198
+ describe('when computing HMAC signature', () => {
199
+ it('returns the same for the Node crypto and Web Crypto versions', () => __awaiter(void 0, void 0, void 0, function* () {
200
+ const nodeCryptoProvider = new crypto_2.NodeCryptoProvider();
201
+ const subtleCryptoProvider = new crypto_2.SubtleCryptoProvider();
202
+ const stringifiedPayload = JSON.stringify(payload);
203
+ const payloadHMAC = `${timestamp}.${stringifiedPayload}`;
204
+ const nodeCompare = yield nodeCryptoProvider.computeHMACSignatureAsync(payloadHMAC, secret);
205
+ const subtleCompare = yield subtleCryptoProvider.computeHMACSignatureAsync(payloadHMAC, secret);
206
+ expect(nodeCompare).toEqual(subtleCompare);
207
+ }));
208
+ });
209
+ describe('when securely comparing', () => {
210
+ it('returns the same for the Node crypto and Web Crypto versions', () => __awaiter(void 0, void 0, void 0, function* () {
211
+ const nodeCryptoProvider = new crypto_2.NodeCryptoProvider();
212
+ const subtleCryptoProvider = new crypto_2.SubtleCryptoProvider();
213
+ const signature = yield workos.webhooks.computeSignature(timestamp, payload, secret);
214
+ expect(nodeCryptoProvider.secureCompare(signature, signatureHash)).toEqual(subtleCryptoProvider.secureCompare(signature, signatureHash));
215
+ expect(nodeCryptoProvider.secureCompare(signature, 'foo')).toEqual(subtleCryptoProvider.secureCompare(signature, 'foo'));
216
+ }));
217
+ });
218
+ });
190
219
  });
package/lib/workos.d.ts CHANGED
@@ -39,5 +39,5 @@ export declare class WorkOS {
39
39
  }>;
40
40
  delete(path: string, query?: any): Promise<void>;
41
41
  emitWarning(warning: string): void;
42
- private handleFetchError;
42
+ private handleHttpError;
43
43
  }
package/lib/workos.js CHANGED
@@ -23,8 +23,8 @@ const mfa_1 = require("./mfa/mfa");
23
23
  const audit_logs_1 = require("./audit-logs/audit-logs");
24
24
  const user_management_1 = require("./user-management/user-management");
25
25
  const bad_request_exception_1 = require("./common/exceptions/bad-request.exception");
26
- const fetch_client_1 = require("./common/utils/fetch-client");
27
- const VERSION = '7.4.0';
26
+ const net_1 = require("./common/net");
27
+ const VERSION = '7.5.0';
28
28
  const DEFAULT_HOSTNAME = 'api.workos.com';
29
29
  class WorkOS {
30
30
  constructor(key, options = {}) {
@@ -64,7 +64,7 @@ class WorkOS {
64
64
  const { name, version } = options.appInfo;
65
65
  userAgent += ` ${name}: ${version}`;
66
66
  }
67
- this.client = new fetch_client_1.FetchClient(this.baseURL, Object.assign(Object.assign({}, options.config), { headers: Object.assign(Object.assign({}, (_a = options.config) === null || _a === void 0 ? void 0 : _a.headers), { Authorization: `Bearer ${this.key}`, 'User-Agent': userAgent }) }));
67
+ this.client = (0, net_1.createHttpClient)(this.baseURL, Object.assign(Object.assign({}, options.config), { headers: Object.assign(Object.assign({}, (_a = options.config) === null || _a === void 0 ? void 0 : _a.headers), { Authorization: `Bearer ${this.key}`, 'User-Agent': userAgent }) }), options.fetchFn);
68
68
  }
69
69
  get version() {
70
70
  return VERSION;
@@ -76,13 +76,14 @@ class WorkOS {
76
76
  requestHeaders['Idempotency-Key'] = options.idempotencyKey;
77
77
  }
78
78
  try {
79
- return yield this.client.post(path, entity, {
79
+ const res = yield this.client.post(path, entity, {
80
80
  params: options.query,
81
81
  headers: requestHeaders,
82
82
  });
83
+ return { data: yield res.toJSON() };
83
84
  }
84
85
  catch (error) {
85
- this.handleFetchError({ path, error });
86
+ this.handleHttpError({ path, error });
86
87
  throw error;
87
88
  }
88
89
  });
@@ -91,15 +92,16 @@ class WorkOS {
91
92
  return __awaiter(this, void 0, void 0, function* () {
92
93
  try {
93
94
  const { accessToken } = options;
94
- return yield this.client.get(path, {
95
+ const res = yield this.client.get(path, {
95
96
  params: options.query,
96
97
  headers: accessToken
97
98
  ? { Authorization: `Bearer ${accessToken}` }
98
99
  : undefined,
99
100
  });
101
+ return { data: yield res.toJSON() };
100
102
  }
101
103
  catch (error) {
102
- this.handleFetchError({ path, error });
104
+ this.handleHttpError({ path, error });
103
105
  throw error;
104
106
  }
105
107
  });
@@ -111,13 +113,14 @@ class WorkOS {
111
113
  requestHeaders['Idempotency-Key'] = options.idempotencyKey;
112
114
  }
113
115
  try {
114
- return yield this.client.put(path, entity, {
116
+ const res = yield this.client.put(path, entity, {
115
117
  params: options.query,
116
118
  headers: requestHeaders,
117
119
  });
120
+ return { data: yield res.toJSON() };
118
121
  }
119
122
  catch (error) {
120
- this.handleFetchError({ path, error });
123
+ this.handleHttpError({ path, error });
121
124
  throw error;
122
125
  }
123
126
  });
@@ -130,7 +133,7 @@ class WorkOS {
130
133
  });
131
134
  }
132
135
  catch (error) {
133
- this.handleFetchError({ path, error });
136
+ this.handleHttpError({ path, error });
134
137
  throw error;
135
138
  }
136
139
  });
@@ -143,12 +146,15 @@ class WorkOS {
143
146
  }
144
147
  return process.emitWarning(warning, 'WorkOS');
145
148
  }
146
- handleFetchError({ path, error }) {
149
+ handleHttpError({ path, error }) {
147
150
  var _a;
151
+ if (!(error instanceof net_1.HttpClientError)) {
152
+ throw new Error(`Unexpected error: ${error}`);
153
+ }
148
154
  const { response } = error;
149
155
  if (response) {
150
156
  const { status, data, headers } = response;
151
- const requestID = (_a = headers.get('X-Request-ID')) !== null && _a !== void 0 ? _a : '';
157
+ const requestID = (_a = headers['X-Request-ID']) !== null && _a !== void 0 ? _a : '';
152
158
  const { code, error_description: errorDescription, error, errors, message, } = data;
153
159
  switch (status) {
154
160
  case 401: {
@@ -18,6 +18,7 @@ const promises_1 = __importDefault(require("fs/promises"));
18
18
  const exceptions_1 = require("./common/exceptions");
19
19
  const workos_1 = require("./workos");
20
20
  const rate_limit_exceeded_exception_1 = require("./common/exceptions/rate-limit-exceeded.exception");
21
+ const net_1 = require("./common/net");
21
22
  describe('WorkOS', () => {
22
23
  beforeEach(() => jest_fetch_mock_1.default.resetMocks());
23
24
  describe('constructor', () => {
@@ -95,10 +96,40 @@ describe('WorkOS', () => {
95
96
  });
96
97
  yield workos.post('/somewhere', {});
97
98
  expect((0, test_utils_1.fetchHeaders)()).toMatchObject({
98
- 'User-Agent': `workos-node/${packageJson.version} fooApp: 1.0.0`,
99
+ 'User-Agent': `workos-node/${packageJson.version}/fetch fooApp: 1.0.0`,
99
100
  });
100
101
  }));
101
102
  });
103
+ describe('when no `appInfo` option is provided', () => {
104
+ it('adds the HTTP client name to the user-agent', () => __awaiter(void 0, void 0, void 0, function* () {
105
+ (0, test_utils_1.fetchOnce)('{}');
106
+ const packageJson = JSON.parse(yield promises_1.default.readFile('package.json', 'utf8'));
107
+ const workos = new workos_1.WorkOS('sk_test');
108
+ yield workos.post('/somewhere', {});
109
+ expect((0, test_utils_1.fetchHeaders)()).toMatchObject({
110
+ 'User-Agent': `workos-node/${packageJson.version}/fetch`,
111
+ });
112
+ }));
113
+ });
114
+ describe('when no `appInfo` option is provided', () => {
115
+ it('adds the HTTP client name to the user-agent', () => __awaiter(void 0, void 0, void 0, function* () {
116
+ (0, test_utils_1.fetchOnce)('{}');
117
+ const packageJson = JSON.parse(yield promises_1.default.readFile('package.json', 'utf8'));
118
+ const workos = new workos_1.WorkOS('sk_test');
119
+ yield workos.post('/somewhere', {});
120
+ expect((0, test_utils_1.fetchHeaders)()).toMatchObject({
121
+ 'User-Agent': `workos-node/${packageJson.version}/fetch`,
122
+ });
123
+ }));
124
+ });
125
+ describe('when using an environment that supports fetch', () => {
126
+ it('automatically uses the fetch HTTP client', () => {
127
+ const workos = new workos_1.WorkOS('sk_test');
128
+ // Bracket notation gets past private visibility
129
+ // tslint:disable-next-line
130
+ expect(workos['client']).toBeInstanceOf(net_1.FetchHttpClient);
131
+ });
132
+ });
102
133
  });
103
134
  describe('version', () => {
104
135
  it('matches the version in `package.json`', () => __awaiter(void 0, void 0, void 0, function* () {
@@ -177,12 +208,34 @@ describe('WorkOS', () => {
177
208
  }));
178
209
  });
179
210
  describe('when the entity is null', () => {
180
- it('sends a null body', () => __awaiter(void 0, void 0, void 0, function* () {
211
+ it('sends an empty string body', () => __awaiter(void 0, void 0, void 0, function* () {
181
212
  (0, test_utils_1.fetchOnce)();
182
213
  const workos = new workos_1.WorkOS('sk_test_Sz3IQjepeSWaI4cMS4ms4sMuU');
183
214
  yield workos.post('/somewhere', null);
184
- expect((0, test_utils_1.fetchBody)({ raw: true })).toBeNull();
215
+ expect((0, test_utils_1.fetchBody)({ raw: true })).toBe('');
185
216
  }));
186
217
  });
187
218
  });
219
+ describe('when in an environment that does not support fetch', () => {
220
+ const fetchFn = globalThis.fetch;
221
+ beforeEach(() => {
222
+ // @ts-ignore
223
+ delete globalThis.fetch;
224
+ });
225
+ afterEach(() => {
226
+ globalThis.fetch = fetchFn;
227
+ });
228
+ it('automatically uses the node HTTP client', () => {
229
+ const workos = new workos_1.WorkOS('sk_test_key');
230
+ // tslint:disable-next-line
231
+ expect(workos['client']).toBeInstanceOf(net_1.NodeHttpClient);
232
+ });
233
+ it('uses a fetch function if provided', () => {
234
+ const workos = new workos_1.WorkOS('sk_test_key', {
235
+ fetchFn,
236
+ });
237
+ // tslint:disable-next-line
238
+ expect(workos['client']).toBeInstanceOf(net_1.FetchHttpClient);
239
+ });
240
+ });
188
241
  });
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "7.4.0",
2
+ "version": "7.5.0-beta.node-compatibility",
3
3
  "name": "@workos-inc/node",
4
4
  "author": "WorkOS",
5
5
  "description": "A Node wrapper for the WorkOS API",
@@ -13,9 +13,8 @@
13
13
  "yarn": "1.22.19"
14
14
  },
15
15
  "engines": {
16
- "node": ">=19"
16
+ "node": ">=16"
17
17
  },
18
- "engineStrict": true,
19
18
  "main": "lib/index.js",
20
19
  "typings": "lib/index.d.ts",
21
20
  "files": [
@@ -1,31 +0,0 @@
1
- export declare class FetchClient {
2
- readonly baseURL: string;
3
- readonly options?: RequestInit | undefined;
4
- constructor(baseURL: string, options?: RequestInit | undefined);
5
- get(path: string, options: {
6
- params?: Record<string, any>;
7
- headers?: HeadersInit;
8
- }): Promise<{
9
- data: any;
10
- }>;
11
- post<Entity = any>(path: string, entity: Entity, options: {
12
- params?: Record<string, any>;
13
- headers?: HeadersInit;
14
- }): Promise<{
15
- data: any;
16
- }>;
17
- put<Entity = any>(path: string, entity: Entity, options: {
18
- params?: Record<string, any>;
19
- headers?: HeadersInit;
20
- }): Promise<{
21
- data: any;
22
- }>;
23
- delete(path: string, options: {
24
- params?: Record<string, any>;
25
- headers?: HeadersInit;
26
- }): Promise<{
27
- data: any;
28
- }>;
29
- private getResourceURL;
30
- private fetch;
31
- }
@@ -1,108 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.FetchClient = void 0;
13
- const fetch_error_1 = require("./fetch-error");
14
- class FetchClient {
15
- constructor(baseURL, options) {
16
- this.baseURL = baseURL;
17
- this.options = options;
18
- }
19
- get(path, options) {
20
- return __awaiter(this, void 0, void 0, function* () {
21
- const resourceURL = this.getResourceURL(path, options.params);
22
- return yield this.fetch(resourceURL, {
23
- headers: options.headers,
24
- });
25
- });
26
- }
27
- post(path, entity, options) {
28
- return __awaiter(this, void 0, void 0, function* () {
29
- const resourceURL = this.getResourceURL(path, options.params);
30
- return yield this.fetch(resourceURL, {
31
- method: 'POST',
32
- headers: Object.assign(Object.assign({}, getContentTypeHeader(entity)), options.headers),
33
- body: getBody(entity),
34
- });
35
- });
36
- }
37
- put(path, entity, options) {
38
- return __awaiter(this, void 0, void 0, function* () {
39
- const resourceURL = this.getResourceURL(path, options.params);
40
- return yield this.fetch(resourceURL, {
41
- method: 'PUT',
42
- headers: Object.assign(Object.assign({}, getContentTypeHeader(entity)), options.headers),
43
- body: getBody(entity),
44
- });
45
- });
46
- }
47
- delete(path, options) {
48
- return __awaiter(this, void 0, void 0, function* () {
49
- const resourceURL = this.getResourceURL(path, options.params);
50
- return yield this.fetch(resourceURL, {
51
- method: 'DELETE',
52
- headers: options.headers,
53
- });
54
- });
55
- }
56
- getResourceURL(path, params) {
57
- const queryString = getQueryString(params);
58
- const url = new URL([path, queryString].filter(Boolean).join('?'), this.baseURL);
59
- return url.toString();
60
- }
61
- fetch(url, options) {
62
- var _a;
63
- return __awaiter(this, void 0, void 0, function* () {
64
- const response = yield fetch(url, Object.assign(Object.assign(Object.assign({}, this.options), options), { headers: Object.assign(Object.assign({ Accept: 'application/json, text/plain, */*', 'Content-Type': 'application/json' }, (_a = this.options) === null || _a === void 0 ? void 0 : _a.headers), options === null || options === void 0 ? void 0 : options.headers) }));
65
- if (!response.ok) {
66
- throw new fetch_error_1.FetchError({
67
- message: response.statusText,
68
- response: {
69
- status: response.status,
70
- headers: response.headers,
71
- data: yield response.json(),
72
- },
73
- });
74
- }
75
- const contentType = response.headers.get('content-type');
76
- const isJsonResponse = contentType === null || contentType === void 0 ? void 0 : contentType.includes('application/json');
77
- if (isJsonResponse) {
78
- return { data: yield response.json() };
79
- }
80
- return { data: null };
81
- });
82
- }
83
- }
84
- exports.FetchClient = FetchClient;
85
- function getQueryString(queryObj) {
86
- if (!queryObj)
87
- return undefined;
88
- const sanitizedQueryObj = {};
89
- Object.entries(queryObj).forEach(([param, value]) => {
90
- if (value !== '' && value !== undefined)
91
- sanitizedQueryObj[param] = value;
92
- });
93
- return new URLSearchParams(sanitizedQueryObj).toString();
94
- }
95
- function getContentTypeHeader(entity) {
96
- if (entity instanceof URLSearchParams) {
97
- return {
98
- 'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8',
99
- };
100
- }
101
- return undefined;
102
- }
103
- function getBody(entity) {
104
- if (entity === null || entity instanceof URLSearchParams) {
105
- return entity;
106
- }
107
- return JSON.stringify(entity);
108
- }