merge main

This commit is contained in:
Scott Wilson
2025-09-15 15:06:42 -07:00
605 changed files with 11025 additions and 4114 deletions

View File

@@ -0,0 +1,4 @@
---
title: "Create"
openapi: "POST /api/v1/workspace/{workspaceId}/environments"
---

View File

@@ -0,0 +1,4 @@
---
title: "Delete"
openapi: "DELETE /api/v1/workspace/{workspaceId}/environments/{id}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v1/workspace/{workspaceId}/environments/{id}"
---

View File

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

View File

@@ -0,0 +1,4 @@
---
title: "Delete"
openapi: "DELETE /api/v1/folders/{folderIdOrName}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get by ID"
openapi: "GET /api/v1/folders/{id}"
---

View File

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

View File

@@ -0,0 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v1/folders/{folderId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Create Project Membership"
openapi: "POST /api/v2/workspace/{projectId}/groups/{groupIdOrName}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Delete Project Membership"
openapi: "DELETE /api/v2/workspace/{projectId}/groups/{groupId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get Project Membership"
openapi: "GET /api/v2/workspace/{projectId}/groups/{groupId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "List Project Memberships"
openapi: "GET /api/v2/workspace/{projectId}/groups"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update Project Membership"
openapi: "PATCH /api/v2/workspace/{projectId}/groups/{groupId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Create Identity Membership"
openapi: "POST /api/v2/workspace/{projectId}/identity-memberships/{identityId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Delete Identity Membership"
openapi: "DELETE /api/v2/workspace/{projectId}/identity-memberships/{identityId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get Identity by ID"
openapi: "GET /api/v2/workspace/{projectId}/identity-memberships/{identityId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "List Identity Memberships"
openapi: "GET /api/v2/workspace/{projectId}/identity-memberships"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update Identity Membership"
openapi: "PATCH /api/v2/workspace/{projectId}/identity-memberships/{identityId}"
---

View File

@@ -0,0 +1,10 @@
---
title: "Create"
openapi: "POST /api/v2/workspace/{projectId}/roles"
---
<Note>
You can read more about the permissions field in the [permissions
documentation](/internals/permissions).
</Note>

View File

@@ -0,0 +1,4 @@
---
title: "Delete"
openapi: "DELETE /api/v2/workspace/{projectId}/roles/{roleId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get By Slug"
openapi: "GET /api/v2/workspace/{projectId}/roles/slug/{roleSlug}"
---

View File

@@ -0,0 +1,4 @@
---
title: "List"
openapi: "GET /api/v2/workspace/{projectId}/roles"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v2/workspace/{projectId}/roles/{roleId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Delete User Membership"
openapi: "DELETE /api/v1/workspace/{workspaceId}/memberships/{membershipId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get By Username"
openapi: "POST /api/v1/workspace/{workspaceId}/memberships/details"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get User Memberships"
openapi: "GET /api/v1/workspace/{workspaceId}/memberships"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update User Membership"
openapi: "PATCH /api/v1/workspace/{workspaceId}/memberships/{membershipId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Get Project"
openapi: "GET /api/v1/workspace/{workspaceId}"
---
---

View File

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

View File

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

View File

@@ -0,0 +1,4 @@
---
title: "Delete"
openapi: "DELETE /api/v1/secret-imports/{secretImportId}"
---

View File

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

View File

@@ -0,0 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v1/secret-imports/{secretImportId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Create"
openapi: "POST /api/v1/workspace/{projectId}/tags"
---

View File

@@ -0,0 +1,4 @@
---
title: "Delete"
openapi: "DELETE /api/v1/workspace/{projectId}/tags/{tagId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get By ID"
openapi: "GET /api/v1/workspace/{projectId}/tags/{tagId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get By Slug"
openapi: "GET /api/v1/workspace/{projectId}/tags/slug/{tagSlug}"
---

View File

@@ -0,0 +1,4 @@
---
title: "List"
openapi: "GET /api/v1/workspace/{projectId}/tags"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v1/workspace/{projectId}/tags/{tagId}"
---

View File

@@ -0,0 +1,5 @@
---
title: "Bulk Create"
openapi: "POST /api/v3/secrets/batch/raw"
---

View File

@@ -0,0 +1,5 @@
---
title: "Create"
openapi: "POST /api/v3/secrets/raw/{secretName}"
---

View File

@@ -0,0 +1,5 @@
---
title: "Bulk Delete"
openapi: "DELETE /api/v3/secrets/batch/raw"
---

View File

@@ -0,0 +1,5 @@
---
title: "Delete"
openapi: "DELETE /api/v3/secrets/raw/{secretName}"
---

View File

@@ -0,0 +1,4 @@
---
title: "List"
openapi: "GET /api/v3/secrets/raw"
---

View File

@@ -0,0 +1,5 @@
---
title: "Retrieve"
openapi: "GET /api/v3/secrets/raw/{secretName}"
---

View File

@@ -0,0 +1,5 @@
---
title: "Bulk Update"
openapi: "PATCH /api/v3/secrets/batch/raw"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v3/secrets/raw/{secretName}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Create"
openapi: "POST /api/v1/workspace/{workspaceId}/environments"
openapi: "POST /api/v1/projects/{projectId}/environments"
---

View File

@@ -1,4 +1,4 @@
---
title: "Delete"
openapi: "DELETE /api/v1/workspace/{workspaceId}/environments/{id}"
openapi: "DELETE /api/v1/projects/{projectId}/environments/{id}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v1/workspace/{workspaceId}/environments/{id}"
openapi: "PATCH /api/v1/projects/{projectId}/environments/{id}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Create"
openapi: "POST /api/v1/folders"
openapi: "POST /api/v2/folders"
---

View File

@@ -1,4 +1,4 @@
---
title: "Delete"
openapi: "DELETE /api/v1/folders/{folderIdOrName}"
openapi: "DELETE /api/v2/folders/{folderIdOrName}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Get by ID"
openapi: "GET /api/v1/folders/{id}"
openapi: "GET /api/v2/folders/{id}"
---

View File

@@ -1,4 +1,4 @@
---
title: "List"
openapi: "GET /api/v1/folders"
openapi: "GET /api/v2/folders"
---

View File

@@ -1,4 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v1/folders/{folderId}"
openapi: "PATCH /api/v2/folders/{folderId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Create Project Membership"
openapi: "POST /api/v2/workspace/{projectId}/groups/{groupIdOrName}"
openapi: "POST /api/v1/projects/{projectId}/groups/{groupIdOrName}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Delete Project Membership"
openapi: "DELETE /api/v2/workspace/{projectId}/groups/{groupId}"
openapi: "DELETE /api/v1/projects/{projectId}/groups/{groupId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Get Project Membership"
openapi: "GET /api/v2/workspace/{projectId}/groups/{groupId}"
openapi: "GET /api/v1/projects/{projectId}/groups/{groupId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "List Project Memberships"
openapi: "GET /api/v2/workspace/{projectId}/groups"
openapi: "GET /api/v1/projects/{projectId}/groups"
---

View File

@@ -1,4 +1,4 @@
---
title: "Update Project Membership"
openapi: "PATCH /api/v2/workspace/{projectId}/groups/{groupId}"
openapi: "PATCH /api/v1/projects/{projectId}/groups/{groupId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Create Identity Membership"
openapi: "POST /api/v2/workspace/{projectId}/identity-memberships/{identityId}"
openapi: "POST /api/v1/projects/{projectId}/identity-memberships/{identityId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Delete Identity Membership"
openapi: "DELETE /api/v2/workspace/{projectId}/identity-memberships/{identityId}"
openapi: "DELETE /api/v1/projects/{projectId}/identity-memberships/{identityId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Get Identity by ID"
openapi: "GET /api/v2/workspace/{projectId}/identity-memberships/{identityId}"
openapi: "GET /api/v1/projects/{projectId}/identity-memberships/{identityId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "List Identity Memberships"
openapi: "GET /api/v2/workspace/{projectId}/identity-memberships"
openapi: "GET /api/v1/projects/{projectId}/identity-memberships"
---

View File

@@ -1,4 +1,4 @@
---
title: "Update Identity Membership"
openapi: "PATCH /api/v2/workspace/{projectId}/identity-memberships/{identityId}"
openapi: "PATCH /api/v1/projects/{projectId}/identity-memberships/{identityId}"
---

View File

@@ -1,10 +1,9 @@
---
title: "Create"
openapi: "POST /api/v2/workspace/{projectId}/roles"
openapi: "POST /api/v1/projects/{projectId}/roles"
---
<Note>
You can read more about the permissions field in the [permissions
documentation](/internals/permissions).
</Note>

View File

@@ -1,4 +1,4 @@
---
title: "Delete"
openapi: "DELETE /api/v2/workspace/{projectId}/roles/{roleId}"
openapi: "DELETE /api/v1/projects/{projectId}/roles/{roleId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Get By Slug"
openapi: "GET /api/v2/workspace/{projectId}/roles/slug/{roleSlug}"
openapi: "GET /api/v1/projects/{projectId}/roles/slug/{roleSlug}"
---

View File

@@ -1,4 +1,4 @@
---
title: "List"
openapi: "GET /api/v2/workspace/{projectId}/roles"
openapi: "GET /api/v1/projects/{projectId}/roles"
---

View File

@@ -1,4 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v2/workspace/{projectId}/roles/{roleId}"
openapi: "PATCH /api/v1/projects/{projectId}/roles/{roleId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Delete User Membership"
openapi: "DELETE /api/v1/workspace/{workspaceId}/memberships/{membershipId}"
openapi: "DELETE /api/v1/projects/{projectId}/memberships/{membershipId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Get By Username"
openapi: "POST /api/v1/workspace/{workspaceId}/memberships/details"
openapi: "POST /api/v1/projects/{projectId}/memberships/details"
---

View File

@@ -0,0 +1,4 @@
---
title: "Invite Member"
openapi: "POST /api/v1/projects/{projectId}/memberships"
---

View File

@@ -1,4 +1,4 @@
---
title: "Get User Memberships"
openapi: "GET /api/v1/workspace/{workspaceId}/memberships"
openapi: "GET /api/v1/projects/{projectId}/memberships"
---

View File

@@ -0,0 +1,4 @@
---
title: "Remove Member"
openapi: "DELETE /api/v1/projects/{projectId}/memberships"
---

View File

@@ -1,4 +1,4 @@
---
title: "Update User Membership"
openapi: "PATCH /api/v1/workspace/{workspaceId}/memberships/{membershipId}"
openapi: "PATCH /api/v1/projects/{projectId}/memberships/{membershipId}"
---

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}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Create"
openapi: "POST /api/v1/secret-imports"
openapi: "POST /api/v2/secret-imports"
---

View File

@@ -1,4 +1,4 @@
---
title: "Delete"
openapi: "DELETE /api/v1/secret-imports/{secretImportId}"
openapi: "DELETE /api/v2/secret-imports/{secretImportId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "List"
openapi: "GET /api/v1/secret-imports"
openapi: "GET /api/v2/secret-imports"
---

View File

@@ -1,4 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v1/secret-imports/{secretImportId}"
openapi: "PATCH /api/v2/secret-imports/{secretImportId}"
---

Some files were not shown because too many files have changed in this diff Show More