Skip to content

Commit

Permalink
Release 1.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakprabhakara committed Jul 11, 2024
1 parent 969f4bf commit 8d7ad95
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "retraced",
"version": "1.10.1",
"version": "1.10.2",
"description": "A fully open source audit log service and embeddable UI easily deployed to your own Kubernetes cluster",
"main": "./build/index.js",
"license": "Apache-2.0",
Expand Down
79 changes: 78 additions & 1 deletion swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@
},
"info": {
"title": "retraced",
"version": "1.10.1",
"version": "1.10.2",
"description": "A fully open source audit log service and embeddable UI easily deployed to your own Kubernetes cluster",
"license": {
"name": "Apache-2.0"
Expand Down Expand Up @@ -2042,6 +2042,83 @@
]
}
},
"/admin/v1/project/{projectId}/templates/bulk": {
"post": {
"operationId": "CreateTemplates",
"responses": {
"201": {
"description": "Created",
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/TemplateResponse"
},
"type": "array"
}
}
}
}
},
"description": "Create a templates. An overview of Template usage in Retraced can be found at\n\nhttps://boxyhq.com/docs/retraced/advanced/display-templates",
"tags": [
"Admin API"
],
"security": [],
"parameters": [
{
"description": "Base64 encoded JWT",
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "The project id",
"in": "path",
"name": "projectId",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "The environment id",
"in": "query",
"name": "environment_id",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"description": "The template resource to create",
"required": true,
"content": {
"application/json": {
"schema": {
"properties": {
"templates": {
"items": {
"$ref": "#/components/schemas/TemplateValues"
},
"type": "array"
}
},
"required": [
"templates"
],
"type": "object",
"description": "The template resource to create"
}
}
}
}
}
},
"/admin/v1/project/{projectId}/templates/{templateId}": {
"delete": {
"operationId": "DeleteTemplate",
Expand Down

0 comments on commit 8d7ad95

Please sign in to comment.