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.
Files changed (2) hide show
  1. package/dist/index.js +1 -0
  2. 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),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tines",
3
- "version": "0.0.137",
3
+ "version": "0.0.138",
4
4
  "description": "CLI for Tines, an orchestration layer for AI agents",
5
5
  "repository": {
6
6
  "type": "git",