tines 0.0.137 → 0.0.138
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.js +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3828,6 +3828,7 @@ function createApiClient(options) {
|
|
|
3828
3828
|
// Projects
|
|
3829
3829
|
listProjects: (params = {}) => get(`/api/v1/projects${query(params)}`),
|
|
3830
3830
|
createProject: (body) => request("POST", "/api/v1/projects", body),
|
|
3831
|
+
listStarters: () => get("/api/v1/projects/starters"),
|
|
3831
3832
|
getProject: (id) => get(`/api/v1/projects/${id}`),
|
|
3832
3833
|
updateProject: (id, body) => request("PATCH", `/api/v1/projects/${id}`, body),
|
|
3833
3834
|
deleteProject: (id, body) => request("DELETE", `/api/v1/projects/${id}`, body),
|