@azure-rest/iot-device-update 1.1.2-alpha.20251010.1 → 1.1.2-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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "client",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "Device Update for IoT Hub is an Azure service that enables customers to publish update for their IoT devices to the cloud, and then deploy that update to their devices (approve updates to groups of devices managed and provisioned in IoT Hub). It leverages the proven security and reliability of the Windows Update platform, optimized for IoT devices. It works globally and knows when and how to update devices, enabling customers to focus on their business goals and let Device Update for IoT Hub handle the updates.",
|
|
6
|
-
"version": "1.1.2-alpha.
|
|
6
|
+
"version": "1.1.2-alpha.20251014.1",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
9
9
|
"azure",
|
|
@@ -68,17 +68,21 @@
|
|
|
68
68
|
"@types/node": "^20.19.0",
|
|
69
69
|
"@vitest/browser": "^3.2.3",
|
|
70
70
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
71
|
+
"cross-env": "^7.0.3",
|
|
71
72
|
"dotenv": "^16.0.0",
|
|
72
73
|
"eslint": "^9.33.0",
|
|
73
74
|
"playwright": "^1.50.1",
|
|
75
|
+
"prettier": "^3.6.2",
|
|
76
|
+
"rimraf": "^6.0.1",
|
|
77
|
+
"tshy": "^3.0.0",
|
|
74
78
|
"typescript": "~5.9.3",
|
|
75
79
|
"vitest": "^3.2.3",
|
|
76
80
|
"@azure-tools/test-credential": "^2.1.2",
|
|
77
|
-
"@azure-tools/test-
|
|
78
|
-
"@azure/dev-tool": "^1.0.0",
|
|
81
|
+
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
79
82
|
"@azure/core-util": "^1.13.1",
|
|
80
|
-
"@azure/
|
|
81
|
-
"@azure-tools/test-
|
|
83
|
+
"@azure/dev-tool": "^1.0.0",
|
|
84
|
+
"@azure-tools/test-recorder": "^4.1.1",
|
|
85
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
82
86
|
},
|
|
83
87
|
"type": "module",
|
|
84
88
|
"tshy": {
|
|
@@ -122,11 +126,11 @@
|
|
|
122
126
|
"scripts": {
|
|
123
127
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
124
128
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
125
|
-
"check-format": "
|
|
126
|
-
"clean": "
|
|
129
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
130
|
+
"clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log",
|
|
127
131
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
128
|
-
"extract-api": "
|
|
129
|
-
"format": "
|
|
132
|
+
"extract-api": "rimraf review && dev-tool run extract-api",
|
|
133
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
130
134
|
"generate:client": "autorest --typescript swagger/README.md && npm run format",
|
|
131
135
|
"lint": "eslint package.json src test",
|
|
132
136
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|