Skip to content

Commit 53db391

Browse files
Merge pull request #10 from athulanilthomas/fix/missing-body
fix(request): resolve issue with body not being passed to client
2 parents afdfa2c + 24deb51 commit 53db391

5 files changed

Lines changed: 5251 additions & 5161 deletions

File tree

.changeset/wicked-mice-repeat.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"splitwise-ts": patch
3+
---
4+
5+
Fixes an issue where the request body was not being correctly passed to the Splitwise client. This patch ensures the client receives and processes the body as expected.

packages/splitwise-ts/package.json

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
"description": "A typed, fast, flexible SDK for Splitwise written in TypeScript",
55
"main": "dist/index.mjs",
66
"types": "dist/index.d.ts",
7-
"files": [
8-
"dist"
9-
],
7+
"files": ["dist"],
108
"exports": {
119
".": {
1210
"import": "./dist/index.mjs",
@@ -22,7 +20,7 @@
2220
"build": "rslib build",
2321
"dev": "rslib build --watch",
2422
"check": "biome check --write",
25-
"format": "biome format --write"
23+
"lint": "biome format --write"
2624
},
2725
"devDependencies": {
2826
"@apidevtools/json-schema-ref-parser": "^11.7.2",
@@ -45,11 +43,5 @@
4543
"oauth4webapi": "^3.1.1",
4644
"ofetch": "^1.4.1"
4745
},
48-
"keywords": [
49-
"splitwise",
50-
"typescript",
51-
"sdk",
52-
"api-client",
53-
"splitwise-ts"
54-
]
46+
"keywords": ["splitwise", "typescript", "sdk", "api-client", "splitwise-ts"]
5547
}

0 commit comments

Comments
 (0)