File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 11# Release Notes
22
3+ ## [ 2.1.0 (2024-09-28)] ( https://github.com/axe-api/axe-api/compare/2.1.0...2.0.1 )
4+
5+ - Added missing requests to the Resource object
6+
37## [ 2.0.1 (2024-09-28)] ( https://github.com/axe-api/axe-api/compare/2.0.1...2.0.0 )
48
59- Fixed bundling issues
Original file line number Diff line number Diff line change @@ -56,6 +56,15 @@ const response = await api.resource("users").insert({
5656});
5757```
5858
59+ ## Post
60+
61+ ``` js
62+ const response = await api .resource (" users" ).post ({
63+ name: " Karl" ,
64+ surname: " Popper" ,
65+ });
66+ ```
67+
5968## Update
6069
6170``` js
@@ -74,6 +83,15 @@ const response = await api.resource("users").patch({
7483});
7584```
7685
86+ ## Put
87+
88+ ``` js
89+ const response = await api .resource (" users" ).put ({
90+ name: " Karl" ,
91+ surname: " Popper" ,
92+ });
93+ ```
94+
7795## Delete
7896
7997``` js
You can’t perform that action at this time.
0 commit comments