added cookie option partitioned, as well as cors origin to be array, option to enable credentials (#214)

* added cookie option `partitioned`, as well as cors `origin` to be array, option to enable `credentials`

* fix server test

* fix data api (updated jsonv-ts)
This commit is contained in:
dswbx
2025-07-22 11:46:11 +02:00
committed by GitHub
parent b4f024bef8
commit 847c264b35
10 changed files with 29 additions and 13 deletions
+1 -1
View File
@@ -202,7 +202,7 @@ describe("DataApi", () => {
{
// create many
const res = await api.createMany("posts", payload);
expect(res.data.length).toEqual(4);
expect(res.data?.length).toEqual(4);
expect(res.ok).toBeTrue();
}