@adobe/spacecat-shared-project-engine-client 1.7.0 → 1.7.1

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.7.0",
3
+ "version": "1.7.1",
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",
@@ -2299,6 +2299,7 @@ export interface components {
2299
2299
  items?: components["schemas"]["model.StringIDName"][];
2300
2300
  page?: number;
2301
2301
  total?: number;
2302
+ existing_count?: number;
2302
2303
  };
2303
2304
  "model.TreeNodeListRequest": {
2304
2305
  names: string[];
@@ -2311,7 +2312,7 @@ export interface components {
2311
2312
  };
2312
2313
  "model.TreeNodeRequest": {
2313
2314
  name: string;
2314
- parent_id?: string;
2315
+ parent_id?: string | null;
2315
2316
  };
2316
2317
  "model.TreeNodeResponse": {
2317
2318
  children_count?: number;
@@ -7328,13 +7329,13 @@ export interface operations {
7328
7329
  };
7329
7330
  requestBody: components["requestBodies"]["model.KeywordRequest"];
7330
7331
  responses: {
7331
- /** @description OK */
7332
- 200: {
7332
+ /** @description Created */
7333
+ 201: {
7333
7334
  headers: {
7334
7335
  [name: string]: unknown;
7335
7336
  };
7336
7337
  content: {
7337
- "application/json": components["schemas"]["model.StringIDName"];
7338
+ "application/json": components["schemas"]["model.StringIDNameListResponse"];
7338
7339
  };
7339
7340
  };
7340
7341
  /** @description Unauthorized */