Skip to content

Commit

Permalink
chore(entity-client): update client with new spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Iulian Crisan committed Nov 7, 2024
1 parent c75c1df commit e6bda1e
Show file tree
Hide file tree
Showing 3 changed files with 564 additions and 173 deletions.
100 changes: 73 additions & 27 deletions clients/entity-client/src/openapi-runtime.json
Original file line number Diff line number Diff line change
Expand Up @@ -917,6 +917,56 @@
"responses": {}
}
},
"/v1/entity/taxonomies/{taxonomySlug}/classifications": {
"post": {
"operationId": "updateClassificationsForTaxonomy",
"parameters": [
{
"$ref": "#/components/parameters/TaxonomySlugPathParam"
}
],
"requestBody": {
"content": {
"application/json": {}
}
},
"responses": {}
}
},
"/v2/entity/taxonomies/classifications/{classificationSlug}": {
"get": {
"operationId": "getTaxonomyClassification",
"parameters": [
{
"$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
}
],
"responses": {}
},
"put": {
"operationId": "updateTaxonomyClassification",
"parameters": [
{
"$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
}
],
"requestBody": {
"content": {
"application/json": {}
}
},
"responses": {}
},
"delete": {
"operationId": "deleteTaxonomyClassification",
"parameters": [
{
"$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
}
],
"responses": {}
}
},
"/v1/entity/taxonomies/{taxonomySlug}:autocomplete": {
"get": {
"operationId": "taxonomyAutocomplete",
Expand Down Expand Up @@ -956,22 +1006,6 @@
"responses": {}
}
},
"/v1/entity/taxonomies/{taxonomySlug}/classifications": {
"post": {
"operationId": "updateClassificationsForTaxonomy",
"parameters": [
{
"$ref": "#/components/parameters/TaxonomySlugPathParam"
}
],
"requestBody": {
"content": {
"application/json": {}
}
},
"responses": {}
}
},
"/v1/entity/schemas/{slug}/taxonomy/{taxonomySlug}": {
"get": {
"operationId": "listTaxonomyClassificationsForSchema",
Expand All @@ -994,21 +1028,25 @@
"responses": {}
}
},
"/v2/entity/taxonomies/classifications/{classificationSlug}": {
"/v1/entity/taxonomies/jobs": {
"get": {
"operationId": "getTaxonomyClassification",
"operationId": "getJobs",
"parameters": [
{
"$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
"in": "query",
"name": "status"
}
],
"responses": {}
},
"put": {
"operationId": "updateTaxonomyClassification",
}
},
"/v1/entity/taxonomies/classifications:move": {
"post": {
"operationId": "bulkMoveClassifications",
"parameters": [
{
"$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
"in": "query",
"name": "target_taxonomy"
}
],
"requestBody": {
Expand All @@ -1017,14 +1055,22 @@
}
},
"responses": {}
},
"delete": {
"operationId": "deleteTaxonomyClassification",
}
},
"/v1/entity/taxonomies/classifications:delete": {
"post": {
"operationId": "bulkDeleteClassifications",
"parameters": [
{
"$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
"in": "query",
"name": "permanent"
}
],
"requestBody": {
"content": {
"application/json": {}
}
},
"responses": {}
}
},
Expand Down
Loading

0 comments on commit e6bda1e

Please sign in to comment.