@azure-rest/agrifood-farming 1.0.0-alpha.20250331.1 → 1.0.0-alpha.20250403.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/CHANGELOG.md +47 -0
- package/package.json +4 -2
- package/review/agrifood-farming.api.md +11021 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Release History
|
|
2
|
+
|
|
3
|
+
## 1.0.0-beta.4 (Unreleased)
|
|
4
|
+
|
|
5
|
+
### Features Added
|
|
6
|
+
|
|
7
|
+
### Breaking Changes
|
|
8
|
+
|
|
9
|
+
### Bugs Fixed
|
|
10
|
+
|
|
11
|
+
### Other Changes
|
|
12
|
+
|
|
13
|
+
## 1.0.0-beta.3 (2025-02-10)
|
|
14
|
+
|
|
15
|
+
### Features Added
|
|
16
|
+
- Refresh @azure-rest/agrifood-farming SDK
|
|
17
|
+
|
|
18
|
+
## 1.0.0-beta.2 (2023-02-24)
|
|
19
|
+
|
|
20
|
+
### Features Added
|
|
21
|
+
|
|
22
|
+
- Adding clients for Sensor Integration which includes crud operations on DeviceDataModels, Devices, SensorDataModels, Sensors, SensorMappings, SensorPartnerIntegration and get Sensor events.
|
|
23
|
+
- Adding new APIs for STAC search and get feature
|
|
24
|
+
- Adding breedingMethods and Measurements as part of Crop Entity
|
|
25
|
+
- Adding geographicIdentifier as part of Season Entity
|
|
26
|
+
- Adding trait, relativeMeasurements and treatments as part of CropVariety Entity
|
|
27
|
+
- Adding type, crs, centroid and bbox(bounding box of the geometry) as part of Boundary Entity
|
|
28
|
+
- Adding Source field in Party, Farm, Field, Seasonal Field, Boundary, Crop, Crop variety, Season and Attachment
|
|
29
|
+
- CreatedBy and ModifiedBy in all entities
|
|
30
|
+
- Measure renamed to measurements in Prescription & Crop
|
|
31
|
+
- Acreage renamed to area in Boundary
|
|
32
|
+
- Get Feature and Search Feature APIs for Sentinel 2 L2A and Sentinel 2 L1C STAC collections
|
|
33
|
+
- Adding Weather Data APIs to fetch IBM weather data
|
|
34
|
+
- Re-generate with latest generator version. This contains splitting models into input and output models and typing improvements [#20059](https://github.com/Azure/azure-sdk-for-js/pull/20059)
|
|
35
|
+
- Export pagination helper function. [#15831](https://github.com/Azure/azure-sdk-for-js/pull/15831)
|
|
36
|
+
|
|
37
|
+
### Breaking Changes
|
|
38
|
+
|
|
39
|
+
- Removing primaryBoundaryId & boundaryIds from Field and Seasonal Field
|
|
40
|
+
- Removing isPrimary flag from Boundary
|
|
41
|
+
- Removing avgYields from Seasonal Field
|
|
42
|
+
- Renaming Farmer to Party
|
|
43
|
+
- Renaming CropVariety to CropProduct
|
|
44
|
+
|
|
45
|
+
## 1.0.0-beta.1 (2021-05-26)
|
|
46
|
+
|
|
47
|
+
- First release of package, see README.md for details.
|
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.20250403.1",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
9
9
|
"azure",
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
"files": [
|
|
25
25
|
"dist/",
|
|
26
26
|
"README.md",
|
|
27
|
-
"LICENSE"
|
|
27
|
+
"LICENSE",
|
|
28
|
+
"review/",
|
|
29
|
+
"CHANGELOG.md"
|
|
28
30
|
],
|
|
29
31
|
"engines": {
|
|
30
32
|
"node": ">=18.0.0"
|