Merge remote-tracking branch 'origin/main' into ENG-3639

This commit is contained in:
Carlos Monastyrski
2025-09-19 20:50:51 -03:00
parent 1c5dd0c35f
commit b2b33b4f8b
806 changed files with 20335 additions and 7209 deletions

View File

@@ -0,0 +1,4 @@
---
title: "Create Project"
openapi: "POST /api/v1/projects"
---

View File

@@ -0,0 +1,8 @@
---
title: "Delete Project"
openapi: "DELETE /api/v1/projects/{projectId}"
---
<Warning>
This operation is irreversible. All data associated with the project will be deleted. Please use with caution.
</Warning>

View File

@@ -0,0 +1,4 @@
---
title: "Get Project By Slug"
openapi: "GET /api/v1/projects/slug/{slug}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get Project"
openapi: "GET /api/v1/projects/{projectId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "List Projects"
openapi: "GET /api/v1/projects"
---

View File

@@ -0,0 +1,4 @@
---
title: "Roll Back to Snapshot"
openapi: "POST /api/v1/secret-snapshot/{secretSnapshotId}/rollback"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get Snapshots"
openapi: "GET /api/v1/projects/{projectId}/secret-snapshots"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update Project"
openapi: "PATCH /api/v1/projects/{projectId}"
---