@azure-rest/agrifood-farming 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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "client",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "An isomorphic REST client library for the Azure FarmBeats Service.",
|
|
6
|
-
"version": "1.0.0-alpha.
|
|
6
|
+
"version": "1.0.0-alpha.20250617.1",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
9
9
|
"azure",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"CHANGELOG.md"
|
|
30
30
|
],
|
|
31
31
|
"engines": {
|
|
32
|
-
"node": ">=
|
|
32
|
+
"node": ">=20.0.0"
|
|
33
33
|
},
|
|
34
34
|
"//metadata": {
|
|
35
35
|
"constantPaths": [
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
88
88
|
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
89
89
|
"@azure/identity": "^4.0.1",
|
|
90
|
-
"@types/node": "^
|
|
90
|
+
"@types/node": "^20.0.0",
|
|
91
91
|
"@vitest/browser": "^3.0.9",
|
|
92
92
|
"@vitest/coverage-istanbul": "^3.0.9",
|
|
93
93
|
"dotenv": "^16.0.0",
|
|
@@ -1604,7 +1604,7 @@ export interface Device {
|
|
|
1604
1604
|
deviceDataModelId?: string;
|
|
1605
1605
|
hardwareId?: string;
|
|
1606
1606
|
integrationId?: string;
|
|
1607
|
-
location?:
|
|
1607
|
+
location?: Location;
|
|
1608
1608
|
name?: string;
|
|
1609
1609
|
parentDeviceId?: string;
|
|
1610
1610
|
properties?: Record<string, any>;
|
|
@@ -4450,11 +4450,10 @@ export interface LabDetailsOutput {
|
|
|
4450
4450
|
}
|
|
4451
4451
|
|
|
4452
4452
|
// @public
|
|
4453
|
-
interface
|
|
4453
|
+
export interface Location {
|
|
4454
4454
|
latitude: number;
|
|
4455
4455
|
longitude: number;
|
|
4456
4456
|
}
|
|
4457
|
-
export { Location_2 as Location }
|
|
4458
4457
|
|
|
4459
4458
|
// @public
|
|
4460
4459
|
export interface LocationOutput {
|
|
@@ -8549,7 +8548,7 @@ export interface Sensor {
|
|
|
8549
8548
|
deviceId?: string;
|
|
8550
8549
|
hardwareId?: string;
|
|
8551
8550
|
integrationId?: string;
|
|
8552
|
-
location?:
|
|
8551
|
+
location?: Location;
|
|
8553
8552
|
name?: string;
|
|
8554
8553
|
port?: Port;
|
|
8555
8554
|
properties?: Record<string, any>;
|