Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
anttiviljami committed Nov 13, 2024
1 parent 4311635 commit 30c16de
Show file tree
Hide file tree
Showing 10 changed files with 1,019 additions and 142 deletions.
4 changes: 2 additions & 2 deletions clients/entity-client/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 clients/entity-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@epilot/entity-client",
"version": "4.33.0",
"version": "4.34.0",
"description": "JavaScript client library for the epilot Core Entity API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
34 changes: 19 additions & 15 deletions clients/entity-client/src/openapi-runtime.json
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,7 @@
},
{
"in": "query",
"name": "purge",
"default": false
"name": "purge"
}
],
"responses": {}
Expand Down Expand Up @@ -996,6 +995,10 @@
{
"in": "query",
"name": "query"
},
{
"in": "query",
"name": "archived"
}
],
"requestBody": {
Expand Down Expand Up @@ -1028,9 +1031,9 @@
"responses": {}
}
},
"/v1/entity/taxonomies/jobs": {
"/v1/entity/taxonomies/bulk-jobs": {
"get": {
"operationId": "getJobs",
"operationId": "getTaxonomyBulkActionJobs",
"parameters": [
{
"in": "query",
Expand All @@ -1040,15 +1043,22 @@
"responses": {}
}
},
"/v1/entity/taxonomies/classifications:move": {
"post": {
"operationId": "bulkMoveClassifications",
"/v1/entity/taxonomies/bulk-jobs/{job_id}": {
"get": {
"operationId": "getTaxonomyBulkActionJobById",
"parameters": [
{
"in": "query",
"name": "target_taxonomy"
"in": "path",
"name": "job_id",
"required": true
}
],
"responses": {}
}
},
"/v1/entity/taxonomies/classifications:move": {
"post": {
"operationId": "bulkMoveClassifications",
"requestBody": {
"content": {
"application/json": {}
Expand All @@ -1060,12 +1070,6 @@
"/v1/entity/taxonomies/classifications:delete": {
"post": {
"operationId": "bulkDeleteClassifications",
"parameters": [
{
"in": "query",
"name": "permanent"
}
],
"requestBody": {
"content": {
"application/json": {}
Expand Down
421 changes: 358 additions & 63 deletions clients/entity-client/src/openapi.d.ts

Large diffs are not rendered by default.

Loading

0 comments on commit 30c16de

Please sign in to comment.