@deepintel-ltd/farmpro-contracts 1.22.2 → 1.22.3
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/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/routes/farm-enterprises.routes.d.ts +1909 -0
- package/dist/routes/farm-enterprises.routes.d.ts.map +1 -0
- package/dist/routes/farm-enterprises.routes.js +64 -0
- package/dist/routes/finance.routes.d.ts +188 -44
- package/dist/routes/finance.routes.d.ts.map +1 -1
- package/dist/routes/geofences.routes.d.ts +4 -4
- package/dist/routes/index.d.ts +2 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +2 -0
- package/dist/routes/livestock-groups.routes.d.ts +90 -90
- package/dist/routes/livestock-map.routes.d.ts +6 -6
- package/dist/routes/livestock.routes.d.ts +78 -78
- package/dist/schemas/farm-enterprises.schemas.d.ts +435 -0
- package/dist/schemas/farm-enterprises.schemas.d.ts.map +1 -0
- package/dist/schemas/farm-enterprises.schemas.js +39 -0
- package/dist/schemas/finance.schemas.d.ts +231 -55
- package/dist/schemas/finance.schemas.d.ts.map +1 -1
- package/dist/schemas/finance.schemas.js +18 -2
- package/dist/schemas/geofences.schemas.d.ts +8 -8
- package/dist/schemas/livestock-groups.schemas.d.ts +66 -66
- package/dist/schemas/livestock-map.schemas.d.ts +4 -4
- package/dist/schemas/livestock.schemas.d.ts +66 -66
- package/package.json +1 -1
|
@@ -54,8 +54,8 @@ export declare const livestockMapRouter: {
|
|
|
54
54
|
id: string;
|
|
55
55
|
source: "manual" | "gps_collar" | "rfid_reader" | "app";
|
|
56
56
|
timestamp: string;
|
|
57
|
-
batteryLevel?: number | undefined;
|
|
58
57
|
groupId?: string | undefined;
|
|
58
|
+
batteryLevel?: number | undefined;
|
|
59
59
|
livestockId?: string | undefined;
|
|
60
60
|
}, {
|
|
61
61
|
coordinates: {
|
|
@@ -66,8 +66,8 @@ export declare const livestockMapRouter: {
|
|
|
66
66
|
id: string;
|
|
67
67
|
source: "manual" | "gps_collar" | "rfid_reader" | "app";
|
|
68
68
|
timestamp: string;
|
|
69
|
-
batteryLevel?: number | undefined;
|
|
70
69
|
groupId?: string | undefined;
|
|
70
|
+
batteryLevel?: number | undefined;
|
|
71
71
|
livestockId?: string | undefined;
|
|
72
72
|
}>, "many">;
|
|
73
73
|
403: z.ZodObject<{
|
|
@@ -523,13 +523,13 @@ export declare const livestockMapRouter: {
|
|
|
523
523
|
}, "strip", z.ZodTypeAny, {
|
|
524
524
|
dateStart: string;
|
|
525
525
|
dateEnd: string;
|
|
526
|
-
resolution?: number | undefined;
|
|
527
526
|
groupId?: string | undefined;
|
|
527
|
+
resolution?: number | undefined;
|
|
528
528
|
}, {
|
|
529
529
|
dateStart: string;
|
|
530
530
|
dateEnd: string;
|
|
531
|
-
resolution?: number | undefined;
|
|
532
531
|
groupId?: string | undefined;
|
|
532
|
+
resolution?: number | undefined;
|
|
533
533
|
}>;
|
|
534
534
|
summary: "Get grazing heatmap points";
|
|
535
535
|
method: "GET";
|
|
@@ -1027,8 +1027,8 @@ export declare const livestockMapRouter: {
|
|
|
1027
1027
|
id: string;
|
|
1028
1028
|
source: "manual" | "gps_collar" | "rfid_reader" | "app";
|
|
1029
1029
|
timestamp: string;
|
|
1030
|
-
batteryLevel?: number | undefined;
|
|
1031
1030
|
groupId?: string | undefined;
|
|
1031
|
+
batteryLevel?: number | undefined;
|
|
1032
1032
|
livestockId?: string | undefined;
|
|
1033
1033
|
}, {
|
|
1034
1034
|
coordinates: {
|
|
@@ -1039,8 +1039,8 @@ export declare const livestockMapRouter: {
|
|
|
1039
1039
|
id: string;
|
|
1040
1040
|
source: "manual" | "gps_collar" | "rfid_reader" | "app";
|
|
1041
1041
|
timestamp: string;
|
|
1042
|
-
batteryLevel?: number | undefined;
|
|
1043
1042
|
groupId?: string | undefined;
|
|
1043
|
+
batteryLevel?: number | undefined;
|
|
1044
1044
|
livestockId?: string | undefined;
|
|
1045
1045
|
}>;
|
|
1046
1046
|
400: z.ZodObject<{
|