@azure/ai-agents 1.0.0-alpha.20250603.1 → 1.0.0-alpha.20250605.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 +7 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/ai-agents",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20250605.1",
|
|
4
4
|
"description": "Azure AI Agents client library.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -95,7 +95,6 @@
|
|
|
95
95
|
"scripts": {
|
|
96
96
|
"build": "npm run clean && dev-tool run build-package && dev-tool run vendored mkdirp ./review && dev-tool run extract-api",
|
|
97
97
|
"build:samples": "echo skipped",
|
|
98
|
-
"build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test",
|
|
99
98
|
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ",
|
|
100
99
|
"clean": "dev-tool run vendored rimraf --glob dist dist-* test-dist temp types *.tgz *.log",
|
|
101
100
|
"copy:yaml": "copy tsp-location.yaml .\\src\\generated\\tsp-location.yaml",
|
|
@@ -103,21 +102,16 @@
|
|
|
103
102
|
"extract-api": "dev-tool run vendored rimraf review && dev-tool run vendored mkdirp ./review && dev-tool run extract-api",
|
|
104
103
|
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ",
|
|
105
104
|
"generate": "dev-tool run vendored rimraf ./src/generated && dev-tool run vendored mkdirp ./src/generated && npm run copy:yaml && npm run tsp:update && dev-tool run vendored rimraf ./src/generated/test && dev-tool run vendored rimraf ./src/generated/tsp-location.yaml",
|
|
106
|
-
"
|
|
107
|
-
"integration-test:browser": "npm run unit-test:browser --no-test-proxy",
|
|
108
|
-
"integration-test:node": "npm run unit-test:node --no-test-proxy",
|
|
105
|
+
"generate-samples": "dev-tool samples publish -f",
|
|
109
106
|
"lint": "eslint package.json api-extractor.json src test",
|
|
110
107
|
"lint:fix": "eslint package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
|
|
111
108
|
"pack": "npm pack 2>&1",
|
|
112
|
-
"test": "npm run
|
|
113
|
-
"test:browser": "
|
|
114
|
-
"test:node": "
|
|
109
|
+
"test": "npm run test:node && npm run test:browser",
|
|
110
|
+
"test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser",
|
|
111
|
+
"test:node": "dev-tool run test:vitest",
|
|
112
|
+
"test:node:esm": "dev-tool run test:vitest --esm --no-test-proxy",
|
|
115
113
|
"tsp:update": "tsp-client update -o ./src/generated",
|
|
116
|
-
"
|
|
117
|
-
"unit-test:browser": "npm run build:test && dev-tool run test:vitest --browser",
|
|
118
|
-
"unit-test:node": "dev-tool run test:vitest",
|
|
119
|
-
"update-snippets": "dev-tool run update-snippets",
|
|
120
|
-
"generate-samples": "dev-tool samples publish -f"
|
|
114
|
+
"update-snippets": "dev-tool run update-snippets"
|
|
121
115
|
},
|
|
122
116
|
"exports": {
|
|
123
117
|
"./package.json": "./package.json",
|