@azure/ai-projects 1.0.1-alpha.20251010.1 → 1.0.1-alpha.20251014.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": "@azure/ai-projects",
|
|
3
|
-
"version": "1.0.1-alpha.
|
|
3
|
+
"version": "1.0.1-alpha.20251014.1",
|
|
4
4
|
"description": "Azure AI Projects client library.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.0.0"
|
|
@@ -58,8 +58,9 @@
|
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@azure/
|
|
61
|
+
"@azure-rest/core-client": "^2.1.0",
|
|
62
62
|
"@azure/abort-controller": "^2.1.2",
|
|
63
|
+
"@azure/ai-agents": "1.1.0",
|
|
63
64
|
"@azure/core-auth": "^1.6.0",
|
|
64
65
|
"@azure/core-lro": "^3.0.0",
|
|
65
66
|
"@azure/core-paging": "^1.5.0",
|
|
@@ -69,31 +70,35 @@
|
|
|
69
70
|
"@azure/core-util": "^1.9.0",
|
|
70
71
|
"@azure/logger": "^1.1.4",
|
|
71
72
|
"@azure/storage-blob": "^12.26.0",
|
|
72
|
-
"@azure-rest/core-client": "^2.1.0",
|
|
73
73
|
"openai": "^5.9.0",
|
|
74
74
|
"tslib": "^2.6.2"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
+
"@azure-rest/ai-inference": "^1.0.0-beta.6",
|
|
77
78
|
"@azure/identity": "4.11.1",
|
|
78
79
|
"@azure/monitor-opentelemetry": ">=1.14.0-alpha <1.14.0-alphb",
|
|
79
80
|
"@azure/opentelemetry-instrumentation-azure-sdk": "1.0.0-beta.7",
|
|
80
|
-
"@azure-rest/ai-inference": "^1.0.0-beta.6",
|
|
81
81
|
"@opentelemetry/api": "^1.9.0",
|
|
82
82
|
"@opentelemetry/instrumentation": "^0.57.0",
|
|
83
83
|
"@opentelemetry/sdk-trace-node": "^2.0.0",
|
|
84
84
|
"@types/node": "^20.19.0",
|
|
85
85
|
"@vitest/browser": "^3.2.3",
|
|
86
86
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
87
|
+
"cross-env": "^7.0.3",
|
|
87
88
|
"dotenv": "^16.0.0",
|
|
88
89
|
"eslint": "^9.33.0",
|
|
90
|
+
"mkdirp": "^3.0.1",
|
|
89
91
|
"playwright": "^1.50.1",
|
|
92
|
+
"prettier": "^3.6.2",
|
|
93
|
+
"rimraf": "^6.0.1",
|
|
94
|
+
"tshy": "^3.0.0",
|
|
90
95
|
"typescript": "~5.9.3",
|
|
91
96
|
"vitest": "^3.2.3",
|
|
97
|
+
"@azure-tools/test-credential": "^2.1.2",
|
|
92
98
|
"@azure/dev-tool": "^1.0.0",
|
|
99
|
+
"@azure-tools/test-recorder": "^4.1.1",
|
|
93
100
|
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
94
|
-
"@azure-tools/test-
|
|
95
|
-
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
96
|
-
"@azure-tools/test-recorder": "^4.1.1"
|
|
101
|
+
"@azure-tools/test-utils-vitest": "^2.0.1"
|
|
97
102
|
},
|
|
98
103
|
"exports": {
|
|
99
104
|
"./package.json": "./package.json",
|
|
@@ -135,13 +140,13 @@
|
|
|
135
140
|
"scripts": {
|
|
136
141
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
137
142
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
138
|
-
"check-format": "
|
|
139
|
-
"clean": "
|
|
143
|
+
"check-format": "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}\" ",
|
|
144
|
+
"clean": "rimraf --glob dist dist-* test-dist temp types *.tgz *.log",
|
|
140
145
|
"copy:yaml": "copy tsp-location.yaml .\\src\\generated\\tsp-location.yaml",
|
|
141
146
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
142
|
-
"extract-api": "
|
|
143
|
-
"format": "
|
|
144
|
-
"generate": "
|
|
147
|
+
"extract-api": "rimraf review && dev-tool run extract-api",
|
|
148
|
+
"format": "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}\" ",
|
|
149
|
+
"generate": "rimraf ./src/generated && mkdirp ./src/generated && npm run copy:yaml && npm run tsp:update && rimraf ./src/generated/test && rimraf ./src/generated/tsp-location.yaml",
|
|
145
150
|
"generate-samples": "dev-tool samples publish -f",
|
|
146
151
|
"lint": "eslint package.json src test",
|
|
147
152
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|