aspi 1.2.1 → 1.3.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.
package/dist/index.cjs CHANGED
@@ -449,6 +449,8 @@ var Request = class {
449
449
  } else {
450
450
  this.#localRequestInit.body = JSON.stringify(body);
451
451
  }
452
+ } else {
453
+ this.#localRequestInit.body = JSON.stringify(body);
452
454
  }
453
455
  return this;
454
456
  }
package/dist/index.js CHANGED
@@ -421,6 +421,8 @@ var Request = class {
421
421
  } else {
422
422
  this.#localRequestInit.body = JSON.stringify(body);
423
423
  }
424
+ } else {
425
+ this.#localRequestInit.body = JSON.stringify(body);
424
426
  }
425
427
  return this;
426
428
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aspi",
3
3
  "description": "Rest API client for typescript projects with chain of responsibility design pattern.",
4
- "version": "1.2.1",
4
+ "version": "1.3.0",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
7
7
  "devDependencies": {