@azure-rest/arm-compute 1.0.0-alpha.20250613.1 → 1.0.0-alpha.20250617.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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@azure-rest/arm-compute",
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
|
-
"version": "1.0.0-alpha.
|
|
5
|
+
"version": "1.0.0-alpha.20250617.1",
|
|
6
6
|
"description": "",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"CHANGELOG.md"
|
|
29
29
|
],
|
|
30
30
|
"engines": {
|
|
31
|
-
"node": ">=
|
|
31
|
+
"node": ">=20.0.0"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api",
|
|
40
40
|
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
41
41
|
"generate:client": "autorest --typescript swagger/README.md && npm run format",
|
|
42
|
-
"lint": "eslint package.json
|
|
43
|
-
"lint:fix": "eslint package.json
|
|
42
|
+
"lint": "eslint package.json src test",
|
|
43
|
+
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
44
44
|
"pack": "npm pack 2>&1",
|
|
45
45
|
"test": "npm run test:node && npm run test:browser",
|
|
46
46
|
"test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
68
68
|
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
69
69
|
"@azure/identity": "^4.0.1",
|
|
70
|
-
"@types/node": "^
|
|
70
|
+
"@types/node": "^20.0.0",
|
|
71
71
|
"@vitest/browser": "^3.0.9",
|
|
72
72
|
"@vitest/coverage-istanbul": "^3.0.9",
|
|
73
73
|
"autorest": "latest",
|
|
@@ -6588,11 +6588,10 @@ export interface HardwareProfileOutput {
|
|
|
6588
6588
|
}
|
|
6589
6589
|
|
|
6590
6590
|
// @public
|
|
6591
|
-
interface
|
|
6591
|
+
export interface Image extends Resource {
|
|
6592
6592
|
extendedLocation?: ExtendedLocation;
|
|
6593
6593
|
properties?: ImageProperties;
|
|
6594
6594
|
}
|
|
6595
|
-
export { Image_2 as Image }
|
|
6596
6595
|
|
|
6597
6596
|
// @public
|
|
6598
6597
|
export interface ImageDataDisk extends ImageDisk {
|
|
@@ -6742,7 +6741,7 @@ export interface ImagesCreateOrUpdate201Response extends HttpResponse {
|
|
|
6742
6741
|
|
|
6743
6742
|
// @public (undocumented)
|
|
6744
6743
|
export interface ImagesCreateOrUpdateBodyParam {
|
|
6745
|
-
body:
|
|
6744
|
+
body: Image;
|
|
6746
6745
|
}
|
|
6747
6746
|
|
|
6748
6747
|
// @public
|