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 1
1
# Release Notes
2
2
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
+
3
7
## [ 2.0.1 (2024-09-28)] ( https://github.com/axe-api/axe-api/compare/2.0.1...2.0.0 )
4
8
5
9
- Fixed bundling issues
Original file line number Diff line number Diff line change @@ -56,6 +56,15 @@ const response = await api.resource("users").insert({
56
56
});
57
57
```
58
58
59
+ ## Post
60
+
61
+ ``` js
62
+ const response = await api .resource (" users" ).post ({
63
+ name: " Karl" ,
64
+ surname: " Popper" ,
65
+ });
66
+ ```
67
+
59
68
## Update
60
69
61
70
``` js
@@ -74,6 +83,15 @@ const response = await api.resource("users").patch({
74
83
});
75
84
```
76
85
86
+ ## Put
87
+
88
+ ``` js
89
+ const response = await api .resource (" users" ).put ({
90
+ name: " Karl" ,
91
+ surname: " Popper" ,
92
+ });
93
+ ```
94
+
77
95
## Delete
78
96
79
97
``` js
You can’t perform that action at this time.
0 commit comments