@adobe/spacecat-shared-project-engine-client 1.2.0 → 1.3.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.
Files changed (1) hide show
  1. package/package.json +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-project-engine-client",
3
- "version": "1.2.0",
3
+ "version": "1.3.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",
@@ -30,6 +30,8 @@
30
30
  "generate:pydantic": "datamodel-codegen --input build/openapi3.json --input-file-type openapi --output python/serenity_project_engine/ --output-model-type pydantic_v2.BaseModel",
31
31
  "generate": "npm run spec:convert && npm run spec:overlay && npm run generate:ts && npm run generate:pydantic",
32
32
  "mock": "node mock/run.js",
33
+ "docker:build": "docker build -t ghcr.io/adobe/spacecat-shared-project-engine-client-mock:local .",
34
+ "docker:run": "docker run --rm -p 127.0.0.1:8443:8443 ghcr.io/adobe/spacecat-shared-project-engine-client-mock:local",
33
35
  "test:e2e": "MOCK_E2E=1 mocha --no-package --reporter spec --timeout 60000 test/e2e/**/*.e2e.js",
34
36
  "test:types": "tsc -p tsconfig.json"
35
37
  },