@takeshape/schema 11.55.0 → 11.56.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.
@@ -1784,6 +1784,7 @@ export interface AgentToolConfig {
1784
1784
  ref: string;
1785
1785
  selectionSet?: string;
1786
1786
  removePropertyKeyPatterns?: RemovePropertyKeyPatterns;
1787
+ description?: string;
1787
1788
  }
1788
1789
  export interface AgentGenerateOptions {
1789
1790
  history?: History1;
@@ -1732,6 +1732,7 @@ export interface AgentToolConfigV3_48_0 {
1732
1732
  ref: string;
1733
1733
  selectionSet?: string;
1734
1734
  removePropertyKeyPatterns?: RemovePropertyKeyPatternsV3_48_0;
1735
+ description?: string;
1735
1736
  }
1736
1737
  export interface AgentGenerateOptionsV3_48_0 {
1737
1738
  history?: HistoryV3_48_01;
@@ -1732,6 +1732,7 @@ export interface AgentToolConfigV3_49_0 {
1732
1732
  ref: string;
1733
1733
  selectionSet?: string;
1734
1734
  removePropertyKeyPatterns?: RemovePropertyKeyPatternsV3_49_0;
1735
+ description?: string;
1735
1736
  }
1736
1737
  export interface AgentGenerateOptionsV3_49_0 {
1737
1738
  history?: HistoryV3_49_01;
@@ -1784,6 +1784,7 @@ export interface AgentToolConfigV3_50_0 {
1784
1784
  ref: string;
1785
1785
  selectionSet?: string;
1786
1786
  removePropertyKeyPatterns?: RemovePropertyKeyPatternsV3_50_0;
1787
+ description?: string;
1787
1788
  }
1788
1789
  export interface AgentGenerateOptionsV3_50_0 {
1789
1790
  history?: HistoryV3_50_01;
@@ -1784,6 +1784,7 @@ export interface AgentToolConfigV3_51_0 {
1784
1784
  ref: string;
1785
1785
  selectionSet?: string;
1786
1786
  removePropertyKeyPatterns?: RemovePropertyKeyPatternsV3_51_0;
1787
+ description?: string;
1787
1788
  }
1788
1789
  export interface AgentGenerateOptionsV3_51_0 {
1789
1790
  history?: HistoryV3_51_01;
@@ -489,6 +489,9 @@
489
489
  "title": "AgentToolConfig",
490
490
  "type": "object",
491
491
  "properties": {
492
+ "description": {
493
+ "type": "string"
494
+ },
492
495
  "ref": {
493
496
  "type": "string"
494
497
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@takeshape/schema",
3
- "version": "11.55.0",
3
+ "version": "11.56.1",
4
4
  "description": "TakeShape Schema",
5
5
  "homepage": "https://www.takeshape.io",
6
6
  "repository": {
@@ -55,9 +55,9 @@
55
55
  "p-reduce": "^2.1.0",
56
56
  "semver": "^7.3.2",
57
57
  "tiny-invariant": "^1.2.0",
58
- "@takeshape/errors": "11.55.0",
59
- "@takeshape/json-schema": "11.55.0",
60
- "@takeshape/util": "11.55.0"
58
+ "@takeshape/errors": "11.56.1",
59
+ "@takeshape/util": "11.56.1",
60
+ "@takeshape/json-schema": "11.56.1"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@takeshape/json-schema-to-typescript": "^11.0.0",
@@ -72,7 +72,7 @@
72
72
  "glob": "^7.1.6",
73
73
  "meow": "^9.0.0",
74
74
  "shortid": "^2.2.15",
75
- "@takeshape/infra": "11.55.0"
75
+ "@takeshape/infra": "11.56.1"
76
76
  },
77
77
  "engines": {
78
78
  "node": ">=20"
@@ -87,12 +87,11 @@
87
87
  "deploy": "node ./scripts/publish-json-schema.mjs",
88
88
  "deploy:ci": "pnpm run deploy",
89
89
  "json2ts": "node scripts/json-schema-to-typescript.mjs",
90
- "lint": "pnpm lint:biome && pnpm lint:eslint",
90
+ "lint": "trap 'RC=1' ERR; pnpm lint:biome; pnpm lint:eslint; exit $RC",
91
91
  "lint:biome": "biome check",
92
92
  "lint:eslint": "eslint src -c ../../eslint.config.mjs",
93
- "lint:ci": "pnpm lint:ci:biome; pnpm lint:ci:eslint",
94
93
  "lint:ci:biome": "mkdir -p \"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}\" && biome check --diagnostic-level error --reporter=junit > \"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}/biome-results.xml\"",
95
- "lint:ci:eslint": "pnpm lint:eslint --quiet --format json -o \"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}/eslint-results.json\"",
94
+ "lint:ci:eslint": "ESLINT_SUITE_NAME=${npm_package_name} ESLINT_JUNIT_OUTPUT=\"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}/eslint-results.xml\" pnpm lint:eslint --quiet --format ../../node_modules/eslint-junit/index.js",
96
95
  "test": "TZ=UTC vitest run",
97
96
  "test-changed": "pnpm run test --changedSince=master",
98
97
  "test:ci": "TZ=UTC vitest run --reporter=default --reporter=junit --outputFile=\"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}/vitest-results.xml\" --coverage.enabled --coverage.reportsDirectory=\"${GITHUB_WORKSPACE}/coverage/${npm_package_name#*\\/}\"",