@bagelink/sdk 0.0.32 → 0.0.37

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +1 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/sdk",
3
3
  "type": "module",
4
- "version": "0.0.32",
4
+ "version": "0.0.37",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
package/src/index.ts CHANGED
@@ -233,6 +233,7 @@ export class Bagel {
233
233
  if (endpoint.match(/undefined|null/)) throw new Error('Invalid endpoint');
234
234
  if (query) {
235
235
  const queryParams = Object.entries(query)
236
+ // eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars
236
237
  .filter(([_, value]) => !!value)
237
238
  .map(([key, value]) => `${key}=${value}`)
238
239
  .join('&');