@adobe/spacecat-shared-project-engine-client 1.5.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-project-engine-client",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "Shared modules of the Spacecat Services - Semrush Project Engine client and generated types",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -1684,8 +1684,8 @@ export interface components {
1684
1684
  children_count?: number;
1685
1685
  id: string;
1686
1686
  name?: string;
1687
- parent_id?: string;
1688
- path?: components["schemas"]["model.AIOTagLeaf"][];
1687
+ parent_id?: string | null;
1688
+ path?: components["schemas"]["model.AIOTagLeaf"][] | null;
1689
1689
  prompts_count?: number;
1690
1690
  };
1691
1691
  "model.AIOTagLeaf": {
@@ -8119,8 +8119,8 @@ export interface operations {
8119
8119
  };
8120
8120
  requestBody: components["requestBodies"]["model.TreeNodeRequest"];
8121
8121
  responses: {
8122
- /** @description Created */
8123
- 201: {
8122
+ /** @description OK */
8123
+ 200: {
8124
8124
  headers: {
8125
8125
  [name: string]: unknown;
8126
8126
  };
@@ -8146,6 +8146,15 @@ export interface operations {
8146
8146
  "application/json": components["schemas"]["http_server.BasicResponse"];
8147
8147
  };
8148
8148
  };
8149
+ /** @description Not Found */
8150
+ 404: {
8151
+ headers: {
8152
+ [name: string]: unknown;
8153
+ };
8154
+ content: {
8155
+ "application/json": components["schemas"]["http_server.BasicResponse"];
8156
+ };
8157
+ };
8149
8158
  /** @description Internal Server Error */
8150
8159
  500: {
8151
8160
  headers: {