@deepintel-ltd/farmpro-contracts 1.22.2 → 1.22.4
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 +398 -90
- package/dist/routes/livestock-groups.routes.d.ts.map +1 -1
- package/dist/routes/livestock-map.routes.d.ts +6 -6
- package/dist/routes/livestock.routes.d.ts +78 -78
- package/dist/routes/staff.routes.d.ts +84 -0
- package/dist/routes/staff.routes.d.ts.map +1 -1
- 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 +368 -66
- package/dist/schemas/livestock-groups.schemas.d.ts.map +1 -1
- package/dist/schemas/livestock-groups.schemas.js +22 -0
- package/dist/schemas/livestock-map.schemas.d.ts +4 -4
- package/dist/schemas/livestock.schemas.d.ts +66 -66
- package/dist/schemas/staff.schemas.d.ts +76 -0
- package/dist/schemas/staff.schemas.d.ts.map +1 -1
- package/dist/schemas/staff.schemas.js +6 -0
- package/package.json +1 -1
|
@@ -25,7 +25,7 @@ export declare const livestockGroupsRouter: {
|
|
|
25
25
|
'page[size]'?: number | undefined;
|
|
26
26
|
'filter[status]'?: "ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED" | undefined;
|
|
27
27
|
search?: string | undefined;
|
|
28
|
-
'filter[category]'?: "
|
|
28
|
+
'filter[category]'?: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT" | undefined;
|
|
29
29
|
'filter[groupType]'?: "BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM" | undefined;
|
|
30
30
|
'filter[trackingMode]'?: "INDIVIDUAL" | "BATCH" | "HYBRID" | undefined;
|
|
31
31
|
}, {
|
|
@@ -34,7 +34,7 @@ export declare const livestockGroupsRouter: {
|
|
|
34
34
|
'page[size]'?: number | undefined;
|
|
35
35
|
'filter[status]'?: "ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED" | undefined;
|
|
36
36
|
search?: string | undefined;
|
|
37
|
-
'filter[category]'?: "
|
|
37
|
+
'filter[category]'?: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT" | undefined;
|
|
38
38
|
'filter[groupType]'?: "BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM" | undefined;
|
|
39
39
|
'filter[trackingMode]'?: "INDIVIDUAL" | "BATCH" | "HYBRID" | undefined;
|
|
40
40
|
}>;
|
|
@@ -69,6 +69,10 @@ export declare const livestockGroupsRouter: {
|
|
|
69
69
|
mortalityRate: z.ZodNullable<z.ZodNumber>;
|
|
70
70
|
averageDailyGain: z.ZodNullable<z.ZodNumber>;
|
|
71
71
|
eggProductionRate: z.ZodNullable<z.ZodNumber>;
|
|
72
|
+
houseCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
73
|
+
stockType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
74
|
+
placementDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
75
|
+
breedStandard: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
72
76
|
pondSize: z.ZodNullable<z.ZodNumber>;
|
|
73
77
|
stockingDensity: z.ZodNullable<z.ZodNumber>;
|
|
74
78
|
status: z.ZodEnum<["ACTIVE", "SOLD", "DEPLETED", "TRANSFERRED", "ARCHIVED"]>;
|
|
@@ -88,7 +92,7 @@ export declare const livestockGroupsRouter: {
|
|
|
88
92
|
location: string | null;
|
|
89
93
|
currency: string;
|
|
90
94
|
notes: string | null;
|
|
91
|
-
category: "
|
|
95
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
92
96
|
purchasePrice: number | null;
|
|
93
97
|
currentValue: number | null;
|
|
94
98
|
breed: string | null;
|
|
@@ -106,6 +110,10 @@ export declare const livestockGroupsRouter: {
|
|
|
106
110
|
eggProductionRate: number | null;
|
|
107
111
|
pondSize: number | null;
|
|
108
112
|
stockingDensity: number | null;
|
|
113
|
+
houseCode?: string | null | undefined;
|
|
114
|
+
stockType?: string | null | undefined;
|
|
115
|
+
placementDate?: string | null | undefined;
|
|
116
|
+
breedStandard?: string | null | undefined;
|
|
109
117
|
memberCount?: number | undefined;
|
|
110
118
|
batchRecordCount?: number | undefined;
|
|
111
119
|
}, {
|
|
@@ -117,7 +125,7 @@ export declare const livestockGroupsRouter: {
|
|
|
117
125
|
farmId: string;
|
|
118
126
|
location: string | null;
|
|
119
127
|
notes: string | null;
|
|
120
|
-
category: "
|
|
128
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
121
129
|
purchasePrice: number | null;
|
|
122
130
|
currentValue: number | null;
|
|
123
131
|
breed: string | null;
|
|
@@ -136,6 +144,10 @@ export declare const livestockGroupsRouter: {
|
|
|
136
144
|
pondSize: number | null;
|
|
137
145
|
stockingDensity: number | null;
|
|
138
146
|
currency?: string | undefined;
|
|
147
|
+
houseCode?: string | null | undefined;
|
|
148
|
+
stockType?: string | null | undefined;
|
|
149
|
+
placementDate?: string | null | undefined;
|
|
150
|
+
breedStandard?: string | null | undefined;
|
|
139
151
|
memberCount?: number | undefined;
|
|
140
152
|
batchRecordCount?: number | undefined;
|
|
141
153
|
}>;
|
|
@@ -155,7 +167,7 @@ export declare const livestockGroupsRouter: {
|
|
|
155
167
|
location: string | null;
|
|
156
168
|
currency: string;
|
|
157
169
|
notes: string | null;
|
|
158
|
-
category: "
|
|
170
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
159
171
|
purchasePrice: number | null;
|
|
160
172
|
currentValue: number | null;
|
|
161
173
|
breed: string | null;
|
|
@@ -173,6 +185,10 @@ export declare const livestockGroupsRouter: {
|
|
|
173
185
|
eggProductionRate: number | null;
|
|
174
186
|
pondSize: number | null;
|
|
175
187
|
stockingDensity: number | null;
|
|
188
|
+
houseCode?: string | null | undefined;
|
|
189
|
+
stockType?: string | null | undefined;
|
|
190
|
+
placementDate?: string | null | undefined;
|
|
191
|
+
breedStandard?: string | null | undefined;
|
|
176
192
|
memberCount?: number | undefined;
|
|
177
193
|
batchRecordCount?: number | undefined;
|
|
178
194
|
};
|
|
@@ -191,7 +207,7 @@ export declare const livestockGroupsRouter: {
|
|
|
191
207
|
farmId: string;
|
|
192
208
|
location: string | null;
|
|
193
209
|
notes: string | null;
|
|
194
|
-
category: "
|
|
210
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
195
211
|
purchasePrice: number | null;
|
|
196
212
|
currentValue: number | null;
|
|
197
213
|
breed: string | null;
|
|
@@ -210,6 +226,10 @@ export declare const livestockGroupsRouter: {
|
|
|
210
226
|
pondSize: number | null;
|
|
211
227
|
stockingDensity: number | null;
|
|
212
228
|
currency?: string | undefined;
|
|
229
|
+
houseCode?: string | null | undefined;
|
|
230
|
+
stockType?: string | null | undefined;
|
|
231
|
+
placementDate?: string | null | undefined;
|
|
232
|
+
breedStandard?: string | null | undefined;
|
|
213
233
|
memberCount?: number | undefined;
|
|
214
234
|
batchRecordCount?: number | undefined;
|
|
215
235
|
};
|
|
@@ -255,7 +275,7 @@ export declare const livestockGroupsRouter: {
|
|
|
255
275
|
location: string | null;
|
|
256
276
|
currency: string;
|
|
257
277
|
notes: string | null;
|
|
258
|
-
category: "
|
|
278
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
259
279
|
purchasePrice: number | null;
|
|
260
280
|
currentValue: number | null;
|
|
261
281
|
breed: string | null;
|
|
@@ -273,6 +293,10 @@ export declare const livestockGroupsRouter: {
|
|
|
273
293
|
eggProductionRate: number | null;
|
|
274
294
|
pondSize: number | null;
|
|
275
295
|
stockingDensity: number | null;
|
|
296
|
+
houseCode?: string | null | undefined;
|
|
297
|
+
stockType?: string | null | undefined;
|
|
298
|
+
placementDate?: string | null | undefined;
|
|
299
|
+
breedStandard?: string | null | undefined;
|
|
276
300
|
memberCount?: number | undefined;
|
|
277
301
|
batchRecordCount?: number | undefined;
|
|
278
302
|
};
|
|
@@ -303,7 +327,7 @@ export declare const livestockGroupsRouter: {
|
|
|
303
327
|
farmId: string;
|
|
304
328
|
location: string | null;
|
|
305
329
|
notes: string | null;
|
|
306
|
-
category: "
|
|
330
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
307
331
|
purchasePrice: number | null;
|
|
308
332
|
currentValue: number | null;
|
|
309
333
|
breed: string | null;
|
|
@@ -322,6 +346,10 @@ export declare const livestockGroupsRouter: {
|
|
|
322
346
|
pondSize: number | null;
|
|
323
347
|
stockingDensity: number | null;
|
|
324
348
|
currency?: string | undefined;
|
|
349
|
+
houseCode?: string | null | undefined;
|
|
350
|
+
stockType?: string | null | undefined;
|
|
351
|
+
placementDate?: string | null | undefined;
|
|
352
|
+
breedStandard?: string | null | undefined;
|
|
325
353
|
memberCount?: number | undefined;
|
|
326
354
|
batchRecordCount?: number | undefined;
|
|
327
355
|
};
|
|
@@ -552,7 +580,7 @@ export declare const livestockGroupsRouter: {
|
|
|
552
580
|
currency: string;
|
|
553
581
|
totalValue: number;
|
|
554
582
|
byStatus: Partial<Record<"ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED", number>>;
|
|
555
|
-
byCategory: Partial<Record<"
|
|
583
|
+
byCategory: Partial<Record<"POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT", number>>;
|
|
556
584
|
totalGroups: number;
|
|
557
585
|
totalAnimals: number;
|
|
558
586
|
byGroupType: Partial<Record<"BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM", number>>;
|
|
@@ -564,7 +592,7 @@ export declare const livestockGroupsRouter: {
|
|
|
564
592
|
currency: string;
|
|
565
593
|
totalValue: number;
|
|
566
594
|
byStatus: Partial<Record<"ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED", number>>;
|
|
567
|
-
byCategory: Partial<Record<"
|
|
595
|
+
byCategory: Partial<Record<"POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT", number>>;
|
|
568
596
|
totalGroups: number;
|
|
569
597
|
totalAnimals: number;
|
|
570
598
|
byGroupType: Partial<Record<"BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM", number>>;
|
|
@@ -579,7 +607,7 @@ export declare const livestockGroupsRouter: {
|
|
|
579
607
|
currency: string;
|
|
580
608
|
totalValue: number;
|
|
581
609
|
byStatus: Partial<Record<"ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED", number>>;
|
|
582
|
-
byCategory: Partial<Record<"
|
|
610
|
+
byCategory: Partial<Record<"POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT", number>>;
|
|
583
611
|
totalGroups: number;
|
|
584
612
|
totalAnimals: number;
|
|
585
613
|
byGroupType: Partial<Record<"BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM", number>>;
|
|
@@ -594,7 +622,7 @@ export declare const livestockGroupsRouter: {
|
|
|
594
622
|
currency: string;
|
|
595
623
|
totalValue: number;
|
|
596
624
|
byStatus: Partial<Record<"ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED", number>>;
|
|
597
|
-
byCategory: Partial<Record<"
|
|
625
|
+
byCategory: Partial<Record<"POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT", number>>;
|
|
598
626
|
totalGroups: number;
|
|
599
627
|
totalAnimals: number;
|
|
600
628
|
byGroupType: Partial<Record<"BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM", number>>;
|
|
@@ -822,6 +850,10 @@ export declare const livestockGroupsRouter: {
|
|
|
822
850
|
mortalityRate: z.ZodOptional<z.ZodNumber>;
|
|
823
851
|
averageDailyGain: z.ZodOptional<z.ZodNumber>;
|
|
824
852
|
eggProductionRate: z.ZodOptional<z.ZodNumber>;
|
|
853
|
+
houseCode: z.ZodOptional<z.ZodString>;
|
|
854
|
+
stockType: z.ZodOptional<z.ZodEnum<["DOC", "POL"]>>;
|
|
855
|
+
placementDate: z.ZodOptional<z.ZodString>;
|
|
856
|
+
breedStandard: z.ZodOptional<z.ZodString>;
|
|
825
857
|
pondSize: z.ZodOptional<z.ZodNumber>;
|
|
826
858
|
stockingDensity: z.ZodOptional<z.ZodNumber>;
|
|
827
859
|
status: z.ZodDefault<z.ZodEnum<["ACTIVE", "SOLD", "DEPLETED", "TRANSFERRED", "ARCHIVED"]>>;
|
|
@@ -830,7 +862,7 @@ export declare const livestockGroupsRouter: {
|
|
|
830
862
|
status: "ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED";
|
|
831
863
|
name: string;
|
|
832
864
|
currency: string;
|
|
833
|
-
category: "
|
|
865
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
834
866
|
groupType: "BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM";
|
|
835
867
|
trackingMode: "INDIVIDUAL" | "BATCH" | "HYBRID";
|
|
836
868
|
description?: string | undefined;
|
|
@@ -849,11 +881,15 @@ export declare const livestockGroupsRouter: {
|
|
|
849
881
|
mortalityRate?: number | undefined;
|
|
850
882
|
averageDailyGain?: number | undefined;
|
|
851
883
|
eggProductionRate?: number | undefined;
|
|
884
|
+
houseCode?: string | undefined;
|
|
885
|
+
stockType?: "DOC" | "POL" | undefined;
|
|
886
|
+
placementDate?: string | undefined;
|
|
887
|
+
breedStandard?: string | undefined;
|
|
852
888
|
pondSize?: number | undefined;
|
|
853
889
|
stockingDensity?: number | undefined;
|
|
854
890
|
}, {
|
|
855
891
|
name: string;
|
|
856
|
-
category: "
|
|
892
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
857
893
|
groupType: "BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM";
|
|
858
894
|
status?: "ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED" | undefined;
|
|
859
895
|
description?: string | undefined;
|
|
@@ -874,6 +910,10 @@ export declare const livestockGroupsRouter: {
|
|
|
874
910
|
mortalityRate?: number | undefined;
|
|
875
911
|
averageDailyGain?: number | undefined;
|
|
876
912
|
eggProductionRate?: number | undefined;
|
|
913
|
+
houseCode?: string | undefined;
|
|
914
|
+
stockType?: "DOC" | "POL" | undefined;
|
|
915
|
+
placementDate?: string | undefined;
|
|
916
|
+
breedStandard?: string | undefined;
|
|
877
917
|
pondSize?: number | undefined;
|
|
878
918
|
stockingDensity?: number | undefined;
|
|
879
919
|
}>;
|
|
@@ -883,7 +923,7 @@ export declare const livestockGroupsRouter: {
|
|
|
883
923
|
status: "ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED";
|
|
884
924
|
name: string;
|
|
885
925
|
currency: string;
|
|
886
|
-
category: "
|
|
926
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
887
927
|
groupType: "BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM";
|
|
888
928
|
trackingMode: "INDIVIDUAL" | "BATCH" | "HYBRID";
|
|
889
929
|
description?: string | undefined;
|
|
@@ -902,6 +942,10 @@ export declare const livestockGroupsRouter: {
|
|
|
902
942
|
mortalityRate?: number | undefined;
|
|
903
943
|
averageDailyGain?: number | undefined;
|
|
904
944
|
eggProductionRate?: number | undefined;
|
|
945
|
+
houseCode?: string | undefined;
|
|
946
|
+
stockType?: "DOC" | "POL" | undefined;
|
|
947
|
+
placementDate?: string | undefined;
|
|
948
|
+
breedStandard?: string | undefined;
|
|
905
949
|
pondSize?: number | undefined;
|
|
906
950
|
stockingDensity?: number | undefined;
|
|
907
951
|
};
|
|
@@ -909,7 +953,7 @@ export declare const livestockGroupsRouter: {
|
|
|
909
953
|
type: "livestock-groups";
|
|
910
954
|
attributes: {
|
|
911
955
|
name: string;
|
|
912
|
-
category: "
|
|
956
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
913
957
|
groupType: "BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM";
|
|
914
958
|
status?: "ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED" | undefined;
|
|
915
959
|
description?: string | undefined;
|
|
@@ -930,6 +974,10 @@ export declare const livestockGroupsRouter: {
|
|
|
930
974
|
mortalityRate?: number | undefined;
|
|
931
975
|
averageDailyGain?: number | undefined;
|
|
932
976
|
eggProductionRate?: number | undefined;
|
|
977
|
+
houseCode?: string | undefined;
|
|
978
|
+
stockType?: "DOC" | "POL" | undefined;
|
|
979
|
+
placementDate?: string | undefined;
|
|
980
|
+
breedStandard?: string | undefined;
|
|
933
981
|
pondSize?: number | undefined;
|
|
934
982
|
stockingDensity?: number | undefined;
|
|
935
983
|
};
|
|
@@ -941,7 +989,7 @@ export declare const livestockGroupsRouter: {
|
|
|
941
989
|
status: "ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED";
|
|
942
990
|
name: string;
|
|
943
991
|
currency: string;
|
|
944
|
-
category: "
|
|
992
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
945
993
|
groupType: "BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM";
|
|
946
994
|
trackingMode: "INDIVIDUAL" | "BATCH" | "HYBRID";
|
|
947
995
|
description?: string | undefined;
|
|
@@ -960,6 +1008,10 @@ export declare const livestockGroupsRouter: {
|
|
|
960
1008
|
mortalityRate?: number | undefined;
|
|
961
1009
|
averageDailyGain?: number | undefined;
|
|
962
1010
|
eggProductionRate?: number | undefined;
|
|
1011
|
+
houseCode?: string | undefined;
|
|
1012
|
+
stockType?: "DOC" | "POL" | undefined;
|
|
1013
|
+
placementDate?: string | undefined;
|
|
1014
|
+
breedStandard?: string | undefined;
|
|
963
1015
|
pondSize?: number | undefined;
|
|
964
1016
|
stockingDensity?: number | undefined;
|
|
965
1017
|
};
|
|
@@ -969,7 +1021,7 @@ export declare const livestockGroupsRouter: {
|
|
|
969
1021
|
type: "livestock-groups";
|
|
970
1022
|
attributes: {
|
|
971
1023
|
name: string;
|
|
972
|
-
category: "
|
|
1024
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
973
1025
|
groupType: "BREEDING_HERD" | "FINISHING_HERD" | "LAYER_FLOCK" | "BROILER_BATCH" | "POND" | "CAGE" | "PEN" | "PASTURE" | "CUSTOM";
|
|
974
1026
|
status?: "ACTIVE" | "SOLD" | "TRANSFERRED" | "DEPLETED" | "ARCHIVED" | undefined;
|
|
975
1027
|
description?: string | undefined;
|
|
@@ -990,6 +1042,10 @@ export declare const livestockGroupsRouter: {
|
|
|
990
1042
|
mortalityRate?: number | undefined;
|
|
991
1043
|
averageDailyGain?: number | undefined;
|
|
992
1044
|
eggProductionRate?: number | undefined;
|
|
1045
|
+
houseCode?: string | undefined;
|
|
1046
|
+
stockType?: "DOC" | "POL" | undefined;
|
|
1047
|
+
placementDate?: string | undefined;
|
|
1048
|
+
breedStandard?: string | undefined;
|
|
993
1049
|
pondSize?: number | undefined;
|
|
994
1050
|
stockingDensity?: number | undefined;
|
|
995
1051
|
};
|
|
@@ -1023,6 +1079,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1023
1079
|
mortalityRate: z.ZodNullable<z.ZodNumber>;
|
|
1024
1080
|
averageDailyGain: z.ZodNullable<z.ZodNumber>;
|
|
1025
1081
|
eggProductionRate: z.ZodNullable<z.ZodNumber>;
|
|
1082
|
+
houseCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1083
|
+
stockType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1084
|
+
placementDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1085
|
+
breedStandard: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1026
1086
|
pondSize: z.ZodNullable<z.ZodNumber>;
|
|
1027
1087
|
stockingDensity: z.ZodNullable<z.ZodNumber>;
|
|
1028
1088
|
status: z.ZodEnum<["ACTIVE", "SOLD", "DEPLETED", "TRANSFERRED", "ARCHIVED"]>;
|
|
@@ -1042,7 +1102,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1042
1102
|
location: string | null;
|
|
1043
1103
|
currency: string;
|
|
1044
1104
|
notes: string | null;
|
|
1045
|
-
category: "
|
|
1105
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1046
1106
|
purchasePrice: number | null;
|
|
1047
1107
|
currentValue: number | null;
|
|
1048
1108
|
breed: string | null;
|
|
@@ -1060,6 +1120,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1060
1120
|
eggProductionRate: number | null;
|
|
1061
1121
|
pondSize: number | null;
|
|
1062
1122
|
stockingDensity: number | null;
|
|
1123
|
+
houseCode?: string | null | undefined;
|
|
1124
|
+
stockType?: string | null | undefined;
|
|
1125
|
+
placementDate?: string | null | undefined;
|
|
1126
|
+
breedStandard?: string | null | undefined;
|
|
1063
1127
|
memberCount?: number | undefined;
|
|
1064
1128
|
batchRecordCount?: number | undefined;
|
|
1065
1129
|
}, {
|
|
@@ -1071,7 +1135,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1071
1135
|
farmId: string;
|
|
1072
1136
|
location: string | null;
|
|
1073
1137
|
notes: string | null;
|
|
1074
|
-
category: "
|
|
1138
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1075
1139
|
purchasePrice: number | null;
|
|
1076
1140
|
currentValue: number | null;
|
|
1077
1141
|
breed: string | null;
|
|
@@ -1090,6 +1154,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1090
1154
|
pondSize: number | null;
|
|
1091
1155
|
stockingDensity: number | null;
|
|
1092
1156
|
currency?: string | undefined;
|
|
1157
|
+
houseCode?: string | null | undefined;
|
|
1158
|
+
stockType?: string | null | undefined;
|
|
1159
|
+
placementDate?: string | null | undefined;
|
|
1160
|
+
breedStandard?: string | null | undefined;
|
|
1093
1161
|
memberCount?: number | undefined;
|
|
1094
1162
|
batchRecordCount?: number | undefined;
|
|
1095
1163
|
}>;
|
|
@@ -1109,7 +1177,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1109
1177
|
location: string | null;
|
|
1110
1178
|
currency: string;
|
|
1111
1179
|
notes: string | null;
|
|
1112
|
-
category: "
|
|
1180
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1113
1181
|
purchasePrice: number | null;
|
|
1114
1182
|
currentValue: number | null;
|
|
1115
1183
|
breed: string | null;
|
|
@@ -1127,6 +1195,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1127
1195
|
eggProductionRate: number | null;
|
|
1128
1196
|
pondSize: number | null;
|
|
1129
1197
|
stockingDensity: number | null;
|
|
1198
|
+
houseCode?: string | null | undefined;
|
|
1199
|
+
stockType?: string | null | undefined;
|
|
1200
|
+
placementDate?: string | null | undefined;
|
|
1201
|
+
breedStandard?: string | null | undefined;
|
|
1130
1202
|
memberCount?: number | undefined;
|
|
1131
1203
|
batchRecordCount?: number | undefined;
|
|
1132
1204
|
};
|
|
@@ -1145,7 +1217,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1145
1217
|
farmId: string;
|
|
1146
1218
|
location: string | null;
|
|
1147
1219
|
notes: string | null;
|
|
1148
|
-
category: "
|
|
1220
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1149
1221
|
purchasePrice: number | null;
|
|
1150
1222
|
currentValue: number | null;
|
|
1151
1223
|
breed: string | null;
|
|
@@ -1164,6 +1236,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1164
1236
|
pondSize: number | null;
|
|
1165
1237
|
stockingDensity: number | null;
|
|
1166
1238
|
currency?: string | undefined;
|
|
1239
|
+
houseCode?: string | null | undefined;
|
|
1240
|
+
stockType?: string | null | undefined;
|
|
1241
|
+
placementDate?: string | null | undefined;
|
|
1242
|
+
breedStandard?: string | null | undefined;
|
|
1167
1243
|
memberCount?: number | undefined;
|
|
1168
1244
|
batchRecordCount?: number | undefined;
|
|
1169
1245
|
};
|
|
@@ -1209,7 +1285,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1209
1285
|
location: string | null;
|
|
1210
1286
|
currency: string;
|
|
1211
1287
|
notes: string | null;
|
|
1212
|
-
category: "
|
|
1288
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1213
1289
|
purchasePrice: number | null;
|
|
1214
1290
|
currentValue: number | null;
|
|
1215
1291
|
breed: string | null;
|
|
@@ -1227,6 +1303,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1227
1303
|
eggProductionRate: number | null;
|
|
1228
1304
|
pondSize: number | null;
|
|
1229
1305
|
stockingDensity: number | null;
|
|
1306
|
+
houseCode?: string | null | undefined;
|
|
1307
|
+
stockType?: string | null | undefined;
|
|
1308
|
+
placementDate?: string | null | undefined;
|
|
1309
|
+
breedStandard?: string | null | undefined;
|
|
1230
1310
|
memberCount?: number | undefined;
|
|
1231
1311
|
batchRecordCount?: number | undefined;
|
|
1232
1312
|
};
|
|
@@ -1257,7 +1337,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1257
1337
|
farmId: string;
|
|
1258
1338
|
location: string | null;
|
|
1259
1339
|
notes: string | null;
|
|
1260
|
-
category: "
|
|
1340
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1261
1341
|
purchasePrice: number | null;
|
|
1262
1342
|
currentValue: number | null;
|
|
1263
1343
|
breed: string | null;
|
|
@@ -1276,6 +1356,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1276
1356
|
pondSize: number | null;
|
|
1277
1357
|
stockingDensity: number | null;
|
|
1278
1358
|
currency?: string | undefined;
|
|
1359
|
+
houseCode?: string | null | undefined;
|
|
1360
|
+
stockType?: string | null | undefined;
|
|
1361
|
+
placementDate?: string | null | undefined;
|
|
1362
|
+
breedStandard?: string | null | undefined;
|
|
1279
1363
|
memberCount?: number | undefined;
|
|
1280
1364
|
batchRecordCount?: number | undefined;
|
|
1281
1365
|
};
|
|
@@ -1788,6 +1872,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1788
1872
|
mortalityRate: z.ZodNullable<z.ZodNumber>;
|
|
1789
1873
|
averageDailyGain: z.ZodNullable<z.ZodNumber>;
|
|
1790
1874
|
eggProductionRate: z.ZodNullable<z.ZodNumber>;
|
|
1875
|
+
houseCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1876
|
+
stockType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1877
|
+
placementDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1878
|
+
breedStandard: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1791
1879
|
pondSize: z.ZodNullable<z.ZodNumber>;
|
|
1792
1880
|
stockingDensity: z.ZodNullable<z.ZodNumber>;
|
|
1793
1881
|
status: z.ZodEnum<["ACTIVE", "SOLD", "DEPLETED", "TRANSFERRED", "ARCHIVED"]>;
|
|
@@ -1807,7 +1895,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1807
1895
|
location: string | null;
|
|
1808
1896
|
currency: string;
|
|
1809
1897
|
notes: string | null;
|
|
1810
|
-
category: "
|
|
1898
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1811
1899
|
purchasePrice: number | null;
|
|
1812
1900
|
currentValue: number | null;
|
|
1813
1901
|
breed: string | null;
|
|
@@ -1825,6 +1913,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1825
1913
|
eggProductionRate: number | null;
|
|
1826
1914
|
pondSize: number | null;
|
|
1827
1915
|
stockingDensity: number | null;
|
|
1916
|
+
houseCode?: string | null | undefined;
|
|
1917
|
+
stockType?: string | null | undefined;
|
|
1918
|
+
placementDate?: string | null | undefined;
|
|
1919
|
+
breedStandard?: string | null | undefined;
|
|
1828
1920
|
memberCount?: number | undefined;
|
|
1829
1921
|
batchRecordCount?: number | undefined;
|
|
1830
1922
|
}, {
|
|
@@ -1836,7 +1928,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1836
1928
|
farmId: string;
|
|
1837
1929
|
location: string | null;
|
|
1838
1930
|
notes: string | null;
|
|
1839
|
-
category: "
|
|
1931
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1840
1932
|
purchasePrice: number | null;
|
|
1841
1933
|
currentValue: number | null;
|
|
1842
1934
|
breed: string | null;
|
|
@@ -1855,6 +1947,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1855
1947
|
pondSize: number | null;
|
|
1856
1948
|
stockingDensity: number | null;
|
|
1857
1949
|
currency?: string | undefined;
|
|
1950
|
+
houseCode?: string | null | undefined;
|
|
1951
|
+
stockType?: string | null | undefined;
|
|
1952
|
+
placementDate?: string | null | undefined;
|
|
1953
|
+
breedStandard?: string | null | undefined;
|
|
1858
1954
|
memberCount?: number | undefined;
|
|
1859
1955
|
batchRecordCount?: number | undefined;
|
|
1860
1956
|
}>;
|
|
@@ -1874,7 +1970,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1874
1970
|
location: string | null;
|
|
1875
1971
|
currency: string;
|
|
1876
1972
|
notes: string | null;
|
|
1877
|
-
category: "
|
|
1973
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1878
1974
|
purchasePrice: number | null;
|
|
1879
1975
|
currentValue: number | null;
|
|
1880
1976
|
breed: string | null;
|
|
@@ -1892,6 +1988,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1892
1988
|
eggProductionRate: number | null;
|
|
1893
1989
|
pondSize: number | null;
|
|
1894
1990
|
stockingDensity: number | null;
|
|
1991
|
+
houseCode?: string | null | undefined;
|
|
1992
|
+
stockType?: string | null | undefined;
|
|
1993
|
+
placementDate?: string | null | undefined;
|
|
1994
|
+
breedStandard?: string | null | undefined;
|
|
1895
1995
|
memberCount?: number | undefined;
|
|
1896
1996
|
batchRecordCount?: number | undefined;
|
|
1897
1997
|
};
|
|
@@ -1910,7 +2010,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1910
2010
|
farmId: string;
|
|
1911
2011
|
location: string | null;
|
|
1912
2012
|
notes: string | null;
|
|
1913
|
-
category: "
|
|
2013
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1914
2014
|
purchasePrice: number | null;
|
|
1915
2015
|
currentValue: number | null;
|
|
1916
2016
|
breed: string | null;
|
|
@@ -1929,6 +2029,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1929
2029
|
pondSize: number | null;
|
|
1930
2030
|
stockingDensity: number | null;
|
|
1931
2031
|
currency?: string | undefined;
|
|
2032
|
+
houseCode?: string | null | undefined;
|
|
2033
|
+
stockType?: string | null | undefined;
|
|
2034
|
+
placementDate?: string | null | undefined;
|
|
2035
|
+
breedStandard?: string | null | undefined;
|
|
1932
2036
|
memberCount?: number | undefined;
|
|
1933
2037
|
batchRecordCount?: number | undefined;
|
|
1934
2038
|
};
|
|
@@ -1974,7 +2078,7 @@ export declare const livestockGroupsRouter: {
|
|
|
1974
2078
|
location: string | null;
|
|
1975
2079
|
currency: string;
|
|
1976
2080
|
notes: string | null;
|
|
1977
|
-
category: "
|
|
2081
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
1978
2082
|
purchasePrice: number | null;
|
|
1979
2083
|
currentValue: number | null;
|
|
1980
2084
|
breed: string | null;
|
|
@@ -1992,6 +2096,10 @@ export declare const livestockGroupsRouter: {
|
|
|
1992
2096
|
eggProductionRate: number | null;
|
|
1993
2097
|
pondSize: number | null;
|
|
1994
2098
|
stockingDensity: number | null;
|
|
2099
|
+
houseCode?: string | null | undefined;
|
|
2100
|
+
stockType?: string | null | undefined;
|
|
2101
|
+
placementDate?: string | null | undefined;
|
|
2102
|
+
breedStandard?: string | null | undefined;
|
|
1995
2103
|
memberCount?: number | undefined;
|
|
1996
2104
|
batchRecordCount?: number | undefined;
|
|
1997
2105
|
};
|
|
@@ -2022,7 +2130,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2022
2130
|
farmId: string;
|
|
2023
2131
|
location: string | null;
|
|
2024
2132
|
notes: string | null;
|
|
2025
|
-
category: "
|
|
2133
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
2026
2134
|
purchasePrice: number | null;
|
|
2027
2135
|
currentValue: number | null;
|
|
2028
2136
|
breed: string | null;
|
|
@@ -2041,6 +2149,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2041
2149
|
pondSize: number | null;
|
|
2042
2150
|
stockingDensity: number | null;
|
|
2043
2151
|
currency?: string | undefined;
|
|
2152
|
+
houseCode?: string | null | undefined;
|
|
2153
|
+
stockType?: string | null | undefined;
|
|
2154
|
+
placementDate?: string | null | undefined;
|
|
2155
|
+
breedStandard?: string | null | undefined;
|
|
2044
2156
|
memberCount?: number | undefined;
|
|
2045
2157
|
batchRecordCount?: number | undefined;
|
|
2046
2158
|
};
|
|
@@ -2280,6 +2392,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2280
2392
|
mortalityRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2281
2393
|
averageDailyGain: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2282
2394
|
eggProductionRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2395
|
+
houseCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2396
|
+
stockType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["DOC", "POL"]>>>;
|
|
2397
|
+
placementDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2398
|
+
breedStandard: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2283
2399
|
pondSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2284
2400
|
stockingDensity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2285
2401
|
status: z.ZodOptional<z.ZodEnum<["ACTIVE", "SOLD", "DEPLETED", "TRANSFERRED", "ARCHIVED"]>>;
|
|
@@ -2291,7 +2407,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2291
2407
|
location?: string | null | undefined;
|
|
2292
2408
|
currency?: string | undefined;
|
|
2293
2409
|
notes?: string | null | undefined;
|
|
2294
|
-
category?: "
|
|
2410
|
+
category?: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT" | undefined;
|
|
2295
2411
|
purchasePrice?: number | null | undefined;
|
|
2296
2412
|
currentValue?: number | null | undefined;
|
|
2297
2413
|
breed?: string | null | undefined;
|
|
@@ -2307,6 +2423,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2307
2423
|
mortalityRate?: number | null | undefined;
|
|
2308
2424
|
averageDailyGain?: number | null | undefined;
|
|
2309
2425
|
eggProductionRate?: number | null | undefined;
|
|
2426
|
+
houseCode?: string | null | undefined;
|
|
2427
|
+
stockType?: "DOC" | "POL" | null | undefined;
|
|
2428
|
+
placementDate?: string | null | undefined;
|
|
2429
|
+
breedStandard?: string | null | undefined;
|
|
2310
2430
|
pondSize?: number | null | undefined;
|
|
2311
2431
|
stockingDensity?: number | null | undefined;
|
|
2312
2432
|
}, {
|
|
@@ -2316,7 +2436,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2316
2436
|
location?: string | null | undefined;
|
|
2317
2437
|
currency?: string | undefined;
|
|
2318
2438
|
notes?: string | null | undefined;
|
|
2319
|
-
category?: "
|
|
2439
|
+
category?: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT" | undefined;
|
|
2320
2440
|
purchasePrice?: number | null | undefined;
|
|
2321
2441
|
currentValue?: number | null | undefined;
|
|
2322
2442
|
breed?: string | null | undefined;
|
|
@@ -2332,6 +2452,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2332
2452
|
mortalityRate?: number | null | undefined;
|
|
2333
2453
|
averageDailyGain?: number | null | undefined;
|
|
2334
2454
|
eggProductionRate?: number | null | undefined;
|
|
2455
|
+
houseCode?: string | null | undefined;
|
|
2456
|
+
stockType?: "DOC" | "POL" | null | undefined;
|
|
2457
|
+
placementDate?: string | null | undefined;
|
|
2458
|
+
breedStandard?: string | null | undefined;
|
|
2335
2459
|
pondSize?: number | null | undefined;
|
|
2336
2460
|
stockingDensity?: number | null | undefined;
|
|
2337
2461
|
}>;
|
|
@@ -2345,7 +2469,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2345
2469
|
location?: string | null | undefined;
|
|
2346
2470
|
currency?: string | undefined;
|
|
2347
2471
|
notes?: string | null | undefined;
|
|
2348
|
-
category?: "
|
|
2472
|
+
category?: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT" | undefined;
|
|
2349
2473
|
purchasePrice?: number | null | undefined;
|
|
2350
2474
|
currentValue?: number | null | undefined;
|
|
2351
2475
|
breed?: string | null | undefined;
|
|
@@ -2361,6 +2485,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2361
2485
|
mortalityRate?: number | null | undefined;
|
|
2362
2486
|
averageDailyGain?: number | null | undefined;
|
|
2363
2487
|
eggProductionRate?: number | null | undefined;
|
|
2488
|
+
houseCode?: string | null | undefined;
|
|
2489
|
+
stockType?: "DOC" | "POL" | null | undefined;
|
|
2490
|
+
placementDate?: string | null | undefined;
|
|
2491
|
+
breedStandard?: string | null | undefined;
|
|
2364
2492
|
pondSize?: number | null | undefined;
|
|
2365
2493
|
stockingDensity?: number | null | undefined;
|
|
2366
2494
|
};
|
|
@@ -2374,7 +2502,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2374
2502
|
location?: string | null | undefined;
|
|
2375
2503
|
currency?: string | undefined;
|
|
2376
2504
|
notes?: string | null | undefined;
|
|
2377
|
-
category?: "
|
|
2505
|
+
category?: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT" | undefined;
|
|
2378
2506
|
purchasePrice?: number | null | undefined;
|
|
2379
2507
|
currentValue?: number | null | undefined;
|
|
2380
2508
|
breed?: string | null | undefined;
|
|
@@ -2390,6 +2518,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2390
2518
|
mortalityRate?: number | null | undefined;
|
|
2391
2519
|
averageDailyGain?: number | null | undefined;
|
|
2392
2520
|
eggProductionRate?: number | null | undefined;
|
|
2521
|
+
houseCode?: string | null | undefined;
|
|
2522
|
+
stockType?: "DOC" | "POL" | null | undefined;
|
|
2523
|
+
placementDate?: string | null | undefined;
|
|
2524
|
+
breedStandard?: string | null | undefined;
|
|
2393
2525
|
pondSize?: number | null | undefined;
|
|
2394
2526
|
stockingDensity?: number | null | undefined;
|
|
2395
2527
|
};
|
|
@@ -2405,7 +2537,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2405
2537
|
location?: string | null | undefined;
|
|
2406
2538
|
currency?: string | undefined;
|
|
2407
2539
|
notes?: string | null | undefined;
|
|
2408
|
-
category?: "
|
|
2540
|
+
category?: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT" | undefined;
|
|
2409
2541
|
purchasePrice?: number | null | undefined;
|
|
2410
2542
|
currentValue?: number | null | undefined;
|
|
2411
2543
|
breed?: string | null | undefined;
|
|
@@ -2421,6 +2553,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2421
2553
|
mortalityRate?: number | null | undefined;
|
|
2422
2554
|
averageDailyGain?: number | null | undefined;
|
|
2423
2555
|
eggProductionRate?: number | null | undefined;
|
|
2556
|
+
houseCode?: string | null | undefined;
|
|
2557
|
+
stockType?: "DOC" | "POL" | null | undefined;
|
|
2558
|
+
placementDate?: string | null | undefined;
|
|
2559
|
+
breedStandard?: string | null | undefined;
|
|
2424
2560
|
pondSize?: number | null | undefined;
|
|
2425
2561
|
stockingDensity?: number | null | undefined;
|
|
2426
2562
|
};
|
|
@@ -2436,7 +2572,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2436
2572
|
location?: string | null | undefined;
|
|
2437
2573
|
currency?: string | undefined;
|
|
2438
2574
|
notes?: string | null | undefined;
|
|
2439
|
-
category?: "
|
|
2575
|
+
category?: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT" | undefined;
|
|
2440
2576
|
purchasePrice?: number | null | undefined;
|
|
2441
2577
|
currentValue?: number | null | undefined;
|
|
2442
2578
|
breed?: string | null | undefined;
|
|
@@ -2452,6 +2588,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2452
2588
|
mortalityRate?: number | null | undefined;
|
|
2453
2589
|
averageDailyGain?: number | null | undefined;
|
|
2454
2590
|
eggProductionRate?: number | null | undefined;
|
|
2591
|
+
houseCode?: string | null | undefined;
|
|
2592
|
+
stockType?: "DOC" | "POL" | null | undefined;
|
|
2593
|
+
placementDate?: string | null | undefined;
|
|
2594
|
+
breedStandard?: string | null | undefined;
|
|
2455
2595
|
pondSize?: number | null | undefined;
|
|
2456
2596
|
stockingDensity?: number | null | undefined;
|
|
2457
2597
|
};
|
|
@@ -2485,6 +2625,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2485
2625
|
mortalityRate: z.ZodNullable<z.ZodNumber>;
|
|
2486
2626
|
averageDailyGain: z.ZodNullable<z.ZodNumber>;
|
|
2487
2627
|
eggProductionRate: z.ZodNullable<z.ZodNumber>;
|
|
2628
|
+
houseCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2629
|
+
stockType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2630
|
+
placementDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2631
|
+
breedStandard: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2488
2632
|
pondSize: z.ZodNullable<z.ZodNumber>;
|
|
2489
2633
|
stockingDensity: z.ZodNullable<z.ZodNumber>;
|
|
2490
2634
|
status: z.ZodEnum<["ACTIVE", "SOLD", "DEPLETED", "TRANSFERRED", "ARCHIVED"]>;
|
|
@@ -2504,7 +2648,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2504
2648
|
location: string | null;
|
|
2505
2649
|
currency: string;
|
|
2506
2650
|
notes: string | null;
|
|
2507
|
-
category: "
|
|
2651
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
2508
2652
|
purchasePrice: number | null;
|
|
2509
2653
|
currentValue: number | null;
|
|
2510
2654
|
breed: string | null;
|
|
@@ -2522,6 +2666,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2522
2666
|
eggProductionRate: number | null;
|
|
2523
2667
|
pondSize: number | null;
|
|
2524
2668
|
stockingDensity: number | null;
|
|
2669
|
+
houseCode?: string | null | undefined;
|
|
2670
|
+
stockType?: string | null | undefined;
|
|
2671
|
+
placementDate?: string | null | undefined;
|
|
2672
|
+
breedStandard?: string | null | undefined;
|
|
2525
2673
|
memberCount?: number | undefined;
|
|
2526
2674
|
batchRecordCount?: number | undefined;
|
|
2527
2675
|
}, {
|
|
@@ -2533,7 +2681,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2533
2681
|
farmId: string;
|
|
2534
2682
|
location: string | null;
|
|
2535
2683
|
notes: string | null;
|
|
2536
|
-
category: "
|
|
2684
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
2537
2685
|
purchasePrice: number | null;
|
|
2538
2686
|
currentValue: number | null;
|
|
2539
2687
|
breed: string | null;
|
|
@@ -2552,6 +2700,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2552
2700
|
pondSize: number | null;
|
|
2553
2701
|
stockingDensity: number | null;
|
|
2554
2702
|
currency?: string | undefined;
|
|
2703
|
+
houseCode?: string | null | undefined;
|
|
2704
|
+
stockType?: string | null | undefined;
|
|
2705
|
+
placementDate?: string | null | undefined;
|
|
2706
|
+
breedStandard?: string | null | undefined;
|
|
2555
2707
|
memberCount?: number | undefined;
|
|
2556
2708
|
batchRecordCount?: number | undefined;
|
|
2557
2709
|
}>;
|
|
@@ -2571,7 +2723,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2571
2723
|
location: string | null;
|
|
2572
2724
|
currency: string;
|
|
2573
2725
|
notes: string | null;
|
|
2574
|
-
category: "
|
|
2726
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
2575
2727
|
purchasePrice: number | null;
|
|
2576
2728
|
currentValue: number | null;
|
|
2577
2729
|
breed: string | null;
|
|
@@ -2589,6 +2741,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2589
2741
|
eggProductionRate: number | null;
|
|
2590
2742
|
pondSize: number | null;
|
|
2591
2743
|
stockingDensity: number | null;
|
|
2744
|
+
houseCode?: string | null | undefined;
|
|
2745
|
+
stockType?: string | null | undefined;
|
|
2746
|
+
placementDate?: string | null | undefined;
|
|
2747
|
+
breedStandard?: string | null | undefined;
|
|
2592
2748
|
memberCount?: number | undefined;
|
|
2593
2749
|
batchRecordCount?: number | undefined;
|
|
2594
2750
|
};
|
|
@@ -2607,7 +2763,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2607
2763
|
farmId: string;
|
|
2608
2764
|
location: string | null;
|
|
2609
2765
|
notes: string | null;
|
|
2610
|
-
category: "
|
|
2766
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
2611
2767
|
purchasePrice: number | null;
|
|
2612
2768
|
currentValue: number | null;
|
|
2613
2769
|
breed: string | null;
|
|
@@ -2626,6 +2782,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2626
2782
|
pondSize: number | null;
|
|
2627
2783
|
stockingDensity: number | null;
|
|
2628
2784
|
currency?: string | undefined;
|
|
2785
|
+
houseCode?: string | null | undefined;
|
|
2786
|
+
stockType?: string | null | undefined;
|
|
2787
|
+
placementDate?: string | null | undefined;
|
|
2788
|
+
breedStandard?: string | null | undefined;
|
|
2629
2789
|
memberCount?: number | undefined;
|
|
2630
2790
|
batchRecordCount?: number | undefined;
|
|
2631
2791
|
};
|
|
@@ -2671,7 +2831,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2671
2831
|
location: string | null;
|
|
2672
2832
|
currency: string;
|
|
2673
2833
|
notes: string | null;
|
|
2674
|
-
category: "
|
|
2834
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
2675
2835
|
purchasePrice: number | null;
|
|
2676
2836
|
currentValue: number | null;
|
|
2677
2837
|
breed: string | null;
|
|
@@ -2689,6 +2849,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2689
2849
|
eggProductionRate: number | null;
|
|
2690
2850
|
pondSize: number | null;
|
|
2691
2851
|
stockingDensity: number | null;
|
|
2852
|
+
houseCode?: string | null | undefined;
|
|
2853
|
+
stockType?: string | null | undefined;
|
|
2854
|
+
placementDate?: string | null | undefined;
|
|
2855
|
+
breedStandard?: string | null | undefined;
|
|
2692
2856
|
memberCount?: number | undefined;
|
|
2693
2857
|
batchRecordCount?: number | undefined;
|
|
2694
2858
|
};
|
|
@@ -2719,7 +2883,7 @@ export declare const livestockGroupsRouter: {
|
|
|
2719
2883
|
farmId: string;
|
|
2720
2884
|
location: string | null;
|
|
2721
2885
|
notes: string | null;
|
|
2722
|
-
category: "
|
|
2886
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
2723
2887
|
purchasePrice: number | null;
|
|
2724
2888
|
currentValue: number | null;
|
|
2725
2889
|
breed: string | null;
|
|
@@ -2738,6 +2902,10 @@ export declare const livestockGroupsRouter: {
|
|
|
2738
2902
|
pondSize: number | null;
|
|
2739
2903
|
stockingDensity: number | null;
|
|
2740
2904
|
currency?: string | undefined;
|
|
2905
|
+
houseCode?: string | null | undefined;
|
|
2906
|
+
stockType?: string | null | undefined;
|
|
2907
|
+
placementDate?: string | null | undefined;
|
|
2908
|
+
breedStandard?: string | null | undefined;
|
|
2741
2909
|
memberCount?: number | undefined;
|
|
2742
2910
|
batchRecordCount?: number | undefined;
|
|
2743
2911
|
};
|
|
@@ -3610,7 +3778,8 @@ export declare const livestockGroupsRouter: {
|
|
|
3610
3778
|
location: string | null;
|
|
3611
3779
|
currency: string;
|
|
3612
3780
|
notes: string | null;
|
|
3613
|
-
category: "
|
|
3781
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
3782
|
+
groupId: string | null;
|
|
3614
3783
|
purchasePrice: number | null;
|
|
3615
3784
|
currentValue: number | null;
|
|
3616
3785
|
weight: number | null;
|
|
@@ -3627,7 +3796,6 @@ export declare const livestockGroupsRouter: {
|
|
|
3627
3796
|
damId: string | null;
|
|
3628
3797
|
statusDate: string;
|
|
3629
3798
|
statusNote: string | null;
|
|
3630
|
-
groupId: string | null;
|
|
3631
3799
|
sireName?: string | null | undefined;
|
|
3632
3800
|
damName?: string | null | undefined;
|
|
3633
3801
|
healthRecords?: {
|
|
@@ -3678,7 +3846,8 @@ export declare const livestockGroupsRouter: {
|
|
|
3678
3846
|
farmId: string;
|
|
3679
3847
|
location: string | null;
|
|
3680
3848
|
notes: string | null;
|
|
3681
|
-
category: "
|
|
3849
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
3850
|
+
groupId: string | null;
|
|
3682
3851
|
purchasePrice: number | null;
|
|
3683
3852
|
currentValue: number | null;
|
|
3684
3853
|
weight: number | null;
|
|
@@ -3694,7 +3863,6 @@ export declare const livestockGroupsRouter: {
|
|
|
3694
3863
|
damId: string | null;
|
|
3695
3864
|
statusDate: string;
|
|
3696
3865
|
statusNote: string | null;
|
|
3697
|
-
groupId: string | null;
|
|
3698
3866
|
currency?: string | undefined;
|
|
3699
3867
|
weightUnit?: string | undefined;
|
|
3700
3868
|
sireName?: string | null | undefined;
|
|
@@ -3755,7 +3923,8 @@ export declare const livestockGroupsRouter: {
|
|
|
3755
3923
|
location: string | null;
|
|
3756
3924
|
currency: string;
|
|
3757
3925
|
notes: string | null;
|
|
3758
|
-
category: "
|
|
3926
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
3927
|
+
groupId: string | null;
|
|
3759
3928
|
purchasePrice: number | null;
|
|
3760
3929
|
currentValue: number | null;
|
|
3761
3930
|
weight: number | null;
|
|
@@ -3772,7 +3941,6 @@ export declare const livestockGroupsRouter: {
|
|
|
3772
3941
|
damId: string | null;
|
|
3773
3942
|
statusDate: string;
|
|
3774
3943
|
statusNote: string | null;
|
|
3775
|
-
groupId: string | null;
|
|
3776
3944
|
sireName?: string | null | undefined;
|
|
3777
3945
|
damName?: string | null | undefined;
|
|
3778
3946
|
healthRecords?: {
|
|
@@ -3830,7 +3998,8 @@ export declare const livestockGroupsRouter: {
|
|
|
3830
3998
|
farmId: string;
|
|
3831
3999
|
location: string | null;
|
|
3832
4000
|
notes: string | null;
|
|
3833
|
-
category: "
|
|
4001
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
4002
|
+
groupId: string | null;
|
|
3834
4003
|
purchasePrice: number | null;
|
|
3835
4004
|
currentValue: number | null;
|
|
3836
4005
|
weight: number | null;
|
|
@@ -3846,7 +4015,6 @@ export declare const livestockGroupsRouter: {
|
|
|
3846
4015
|
damId: string | null;
|
|
3847
4016
|
statusDate: string;
|
|
3848
4017
|
statusNote: string | null;
|
|
3849
|
-
groupId: string | null;
|
|
3850
4018
|
currency?: string | undefined;
|
|
3851
4019
|
weightUnit?: string | undefined;
|
|
3852
4020
|
sireName?: string | null | undefined;
|
|
@@ -3933,7 +4101,8 @@ export declare const livestockGroupsRouter: {
|
|
|
3933
4101
|
location: string | null;
|
|
3934
4102
|
currency: string;
|
|
3935
4103
|
notes: string | null;
|
|
3936
|
-
category: "
|
|
4104
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
4105
|
+
groupId: string | null;
|
|
3937
4106
|
purchasePrice: number | null;
|
|
3938
4107
|
currentValue: number | null;
|
|
3939
4108
|
weight: number | null;
|
|
@@ -3950,7 +4119,6 @@ export declare const livestockGroupsRouter: {
|
|
|
3950
4119
|
damId: string | null;
|
|
3951
4120
|
statusDate: string;
|
|
3952
4121
|
statusNote: string | null;
|
|
3953
|
-
groupId: string | null;
|
|
3954
4122
|
sireName?: string | null | undefined;
|
|
3955
4123
|
damName?: string | null | undefined;
|
|
3956
4124
|
healthRecords?: {
|
|
@@ -4020,7 +4188,8 @@ export declare const livestockGroupsRouter: {
|
|
|
4020
4188
|
farmId: string;
|
|
4021
4189
|
location: string | null;
|
|
4022
4190
|
notes: string | null;
|
|
4023
|
-
category: "
|
|
4191
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
4192
|
+
groupId: string | null;
|
|
4024
4193
|
purchasePrice: number | null;
|
|
4025
4194
|
currentValue: number | null;
|
|
4026
4195
|
weight: number | null;
|
|
@@ -4036,7 +4205,6 @@ export declare const livestockGroupsRouter: {
|
|
|
4036
4205
|
damId: string | null;
|
|
4037
4206
|
statusDate: string;
|
|
4038
4207
|
statusNote: string | null;
|
|
4039
|
-
groupId: string | null;
|
|
4040
4208
|
currency?: string | undefined;
|
|
4041
4209
|
weightUnit?: string | undefined;
|
|
4042
4210
|
sireName?: string | null | undefined;
|
|
@@ -5250,9 +5418,14 @@ export declare const livestockGroupsRouter: {
|
|
|
5250
5418
|
sampleCount: z.ZodNullable<z.ZodNumber>;
|
|
5251
5419
|
eggCount: z.ZodNullable<z.ZodNumber>;
|
|
5252
5420
|
brokenEggs: z.ZodNullable<z.ZodNumber>;
|
|
5421
|
+
crackedEggs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5422
|
+
wastedEggs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5423
|
+
mortalityReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5253
5424
|
feedType: z.ZodNullable<z.ZodString>;
|
|
5254
5425
|
feedQuantity: z.ZodNullable<z.ZodNumber>;
|
|
5255
5426
|
feedUnit: z.ZodNullable<z.ZodString>;
|
|
5427
|
+
waterQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5428
|
+
waterUnit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5256
5429
|
medication: z.ZodNullable<z.ZodString>;
|
|
5257
5430
|
vaccineName: z.ZodNullable<z.ZodString>;
|
|
5258
5431
|
dosage: z.ZodNullable<z.ZodString>;
|
|
@@ -5272,6 +5445,7 @@ export declare const livestockGroupsRouter: {
|
|
|
5272
5445
|
description: string | null;
|
|
5273
5446
|
currency: string;
|
|
5274
5447
|
notes: string | null;
|
|
5448
|
+
groupId: string;
|
|
5275
5449
|
sampleCount: number | null;
|
|
5276
5450
|
cost: number | null;
|
|
5277
5451
|
recordDate: string;
|
|
@@ -5281,7 +5455,6 @@ export declare const livestockGroupsRouter: {
|
|
|
5281
5455
|
administeredBy: string | null;
|
|
5282
5456
|
vaccineName: string | null;
|
|
5283
5457
|
transactionValue: number | null;
|
|
5284
|
-
groupId: string;
|
|
5285
5458
|
countChange: number | null;
|
|
5286
5459
|
affectedCount: number | null;
|
|
5287
5460
|
sampleWeight: number | null;
|
|
@@ -5290,12 +5463,18 @@ export declare const livestockGroupsRouter: {
|
|
|
5290
5463
|
feedType: string | null;
|
|
5291
5464
|
feedQuantity: number | null;
|
|
5292
5465
|
feedUnit: string | null;
|
|
5466
|
+
crackedEggs?: number | null | undefined;
|
|
5467
|
+
wastedEggs?: number | null | undefined;
|
|
5468
|
+
mortalityReason?: string | null | undefined;
|
|
5469
|
+
waterQuantity?: number | null | undefined;
|
|
5470
|
+
waterUnit?: string | null | undefined;
|
|
5293
5471
|
}, {
|
|
5294
5472
|
id: string;
|
|
5295
5473
|
createdAt: string;
|
|
5296
5474
|
updatedAt: string;
|
|
5297
5475
|
description: string | null;
|
|
5298
5476
|
notes: string | null;
|
|
5477
|
+
groupId: string;
|
|
5299
5478
|
sampleCount: number | null;
|
|
5300
5479
|
cost: number | null;
|
|
5301
5480
|
recordDate: string;
|
|
@@ -5305,7 +5484,6 @@ export declare const livestockGroupsRouter: {
|
|
|
5305
5484
|
administeredBy: string | null;
|
|
5306
5485
|
vaccineName: string | null;
|
|
5307
5486
|
transactionValue: number | null;
|
|
5308
|
-
groupId: string;
|
|
5309
5487
|
countChange: number | null;
|
|
5310
5488
|
affectedCount: number | null;
|
|
5311
5489
|
sampleWeight: number | null;
|
|
@@ -5315,6 +5493,11 @@ export declare const livestockGroupsRouter: {
|
|
|
5315
5493
|
feedQuantity: number | null;
|
|
5316
5494
|
feedUnit: string | null;
|
|
5317
5495
|
currency?: string | undefined;
|
|
5496
|
+
crackedEggs?: number | null | undefined;
|
|
5497
|
+
wastedEggs?: number | null | undefined;
|
|
5498
|
+
mortalityReason?: string | null | undefined;
|
|
5499
|
+
waterQuantity?: number | null | undefined;
|
|
5500
|
+
waterUnit?: string | null | undefined;
|
|
5318
5501
|
}>;
|
|
5319
5502
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5320
5503
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -5329,6 +5512,7 @@ export declare const livestockGroupsRouter: {
|
|
|
5329
5512
|
description: string | null;
|
|
5330
5513
|
currency: string;
|
|
5331
5514
|
notes: string | null;
|
|
5515
|
+
groupId: string;
|
|
5332
5516
|
sampleCount: number | null;
|
|
5333
5517
|
cost: number | null;
|
|
5334
5518
|
recordDate: string;
|
|
@@ -5338,7 +5522,6 @@ export declare const livestockGroupsRouter: {
|
|
|
5338
5522
|
administeredBy: string | null;
|
|
5339
5523
|
vaccineName: string | null;
|
|
5340
5524
|
transactionValue: number | null;
|
|
5341
|
-
groupId: string;
|
|
5342
5525
|
countChange: number | null;
|
|
5343
5526
|
affectedCount: number | null;
|
|
5344
5527
|
sampleWeight: number | null;
|
|
@@ -5347,6 +5530,11 @@ export declare const livestockGroupsRouter: {
|
|
|
5347
5530
|
feedType: string | null;
|
|
5348
5531
|
feedQuantity: number | null;
|
|
5349
5532
|
feedUnit: string | null;
|
|
5533
|
+
crackedEggs?: number | null | undefined;
|
|
5534
|
+
wastedEggs?: number | null | undefined;
|
|
5535
|
+
mortalityReason?: string | null | undefined;
|
|
5536
|
+
waterQuantity?: number | null | undefined;
|
|
5537
|
+
waterUnit?: string | null | undefined;
|
|
5350
5538
|
};
|
|
5351
5539
|
relationships?: Record<string, unknown> | undefined;
|
|
5352
5540
|
links?: Record<string, string> | undefined;
|
|
@@ -5360,6 +5548,7 @@ export declare const livestockGroupsRouter: {
|
|
|
5360
5548
|
updatedAt: string;
|
|
5361
5549
|
description: string | null;
|
|
5362
5550
|
notes: string | null;
|
|
5551
|
+
groupId: string;
|
|
5363
5552
|
sampleCount: number | null;
|
|
5364
5553
|
cost: number | null;
|
|
5365
5554
|
recordDate: string;
|
|
@@ -5369,7 +5558,6 @@ export declare const livestockGroupsRouter: {
|
|
|
5369
5558
|
administeredBy: string | null;
|
|
5370
5559
|
vaccineName: string | null;
|
|
5371
5560
|
transactionValue: number | null;
|
|
5372
|
-
groupId: string;
|
|
5373
5561
|
countChange: number | null;
|
|
5374
5562
|
affectedCount: number | null;
|
|
5375
5563
|
sampleWeight: number | null;
|
|
@@ -5379,6 +5567,11 @@ export declare const livestockGroupsRouter: {
|
|
|
5379
5567
|
feedQuantity: number | null;
|
|
5380
5568
|
feedUnit: string | null;
|
|
5381
5569
|
currency?: string | undefined;
|
|
5570
|
+
crackedEggs?: number | null | undefined;
|
|
5571
|
+
wastedEggs?: number | null | undefined;
|
|
5572
|
+
mortalityReason?: string | null | undefined;
|
|
5573
|
+
waterQuantity?: number | null | undefined;
|
|
5574
|
+
waterUnit?: string | null | undefined;
|
|
5382
5575
|
};
|
|
5383
5576
|
relationships?: Record<string, unknown> | undefined;
|
|
5384
5577
|
links?: Record<string, string> | undefined;
|
|
@@ -5419,6 +5612,7 @@ export declare const livestockGroupsRouter: {
|
|
|
5419
5612
|
description: string | null;
|
|
5420
5613
|
currency: string;
|
|
5421
5614
|
notes: string | null;
|
|
5615
|
+
groupId: string;
|
|
5422
5616
|
sampleCount: number | null;
|
|
5423
5617
|
cost: number | null;
|
|
5424
5618
|
recordDate: string;
|
|
@@ -5428,7 +5622,6 @@ export declare const livestockGroupsRouter: {
|
|
|
5428
5622
|
administeredBy: string | null;
|
|
5429
5623
|
vaccineName: string | null;
|
|
5430
5624
|
transactionValue: number | null;
|
|
5431
|
-
groupId: string;
|
|
5432
5625
|
countChange: number | null;
|
|
5433
5626
|
affectedCount: number | null;
|
|
5434
5627
|
sampleWeight: number | null;
|
|
@@ -5437,6 +5630,11 @@ export declare const livestockGroupsRouter: {
|
|
|
5437
5630
|
feedType: string | null;
|
|
5438
5631
|
feedQuantity: number | null;
|
|
5439
5632
|
feedUnit: string | null;
|
|
5633
|
+
crackedEggs?: number | null | undefined;
|
|
5634
|
+
wastedEggs?: number | null | undefined;
|
|
5635
|
+
mortalityReason?: string | null | undefined;
|
|
5636
|
+
waterQuantity?: number | null | undefined;
|
|
5637
|
+
waterUnit?: string | null | undefined;
|
|
5440
5638
|
};
|
|
5441
5639
|
relationships?: Record<string, unknown> | undefined;
|
|
5442
5640
|
links?: Record<string, string> | undefined;
|
|
@@ -5462,6 +5660,7 @@ export declare const livestockGroupsRouter: {
|
|
|
5462
5660
|
updatedAt: string;
|
|
5463
5661
|
description: string | null;
|
|
5464
5662
|
notes: string | null;
|
|
5663
|
+
groupId: string;
|
|
5465
5664
|
sampleCount: number | null;
|
|
5466
5665
|
cost: number | null;
|
|
5467
5666
|
recordDate: string;
|
|
@@ -5471,7 +5670,6 @@ export declare const livestockGroupsRouter: {
|
|
|
5471
5670
|
administeredBy: string | null;
|
|
5472
5671
|
vaccineName: string | null;
|
|
5473
5672
|
transactionValue: number | null;
|
|
5474
|
-
groupId: string;
|
|
5475
5673
|
countChange: number | null;
|
|
5476
5674
|
affectedCount: number | null;
|
|
5477
5675
|
sampleWeight: number | null;
|
|
@@ -5481,6 +5679,11 @@ export declare const livestockGroupsRouter: {
|
|
|
5481
5679
|
feedQuantity: number | null;
|
|
5482
5680
|
feedUnit: string | null;
|
|
5483
5681
|
currency?: string | undefined;
|
|
5682
|
+
crackedEggs?: number | null | undefined;
|
|
5683
|
+
wastedEggs?: number | null | undefined;
|
|
5684
|
+
mortalityReason?: string | null | undefined;
|
|
5685
|
+
waterQuantity?: number | null | undefined;
|
|
5686
|
+
waterUnit?: string | null | undefined;
|
|
5484
5687
|
};
|
|
5485
5688
|
relationships?: Record<string, unknown> | undefined;
|
|
5486
5689
|
links?: Record<string, string> | undefined;
|
|
@@ -5705,9 +5908,14 @@ export declare const livestockGroupsRouter: {
|
|
|
5705
5908
|
sampleCount: z.ZodOptional<z.ZodNumber>;
|
|
5706
5909
|
eggCount: z.ZodOptional<z.ZodNumber>;
|
|
5707
5910
|
brokenEggs: z.ZodOptional<z.ZodNumber>;
|
|
5911
|
+
crackedEggs: z.ZodOptional<z.ZodNumber>;
|
|
5912
|
+
wastedEggs: z.ZodOptional<z.ZodNumber>;
|
|
5913
|
+
mortalityReason: z.ZodOptional<z.ZodEnum<["natural", "cull"]>>;
|
|
5708
5914
|
feedType: z.ZodOptional<z.ZodString>;
|
|
5709
5915
|
feedQuantity: z.ZodOptional<z.ZodNumber>;
|
|
5710
5916
|
feedUnit: z.ZodDefault<z.ZodString>;
|
|
5917
|
+
waterQuantity: z.ZodOptional<z.ZodNumber>;
|
|
5918
|
+
waterUnit: z.ZodOptional<z.ZodString>;
|
|
5711
5919
|
medication: z.ZodOptional<z.ZodString>;
|
|
5712
5920
|
vaccineName: z.ZodOptional<z.ZodString>;
|
|
5713
5921
|
dosage: z.ZodOptional<z.ZodString>;
|
|
@@ -5736,8 +5944,13 @@ export declare const livestockGroupsRouter: {
|
|
|
5736
5944
|
sampleWeight?: number | undefined;
|
|
5737
5945
|
eggCount?: number | undefined;
|
|
5738
5946
|
brokenEggs?: number | undefined;
|
|
5947
|
+
crackedEggs?: number | undefined;
|
|
5948
|
+
wastedEggs?: number | undefined;
|
|
5949
|
+
mortalityReason?: "natural" | "cull" | undefined;
|
|
5739
5950
|
feedType?: string | undefined;
|
|
5740
5951
|
feedQuantity?: number | undefined;
|
|
5952
|
+
waterQuantity?: number | undefined;
|
|
5953
|
+
waterUnit?: string | undefined;
|
|
5741
5954
|
}, {
|
|
5742
5955
|
recordDate: string;
|
|
5743
5956
|
recordType: "OTHER" | "STOCKING" | "MORTALITY" | "CULLING" | "VACCINATION" | "TREATMENT" | "FEEDING" | "WEIGHT_SAMPLE" | "EGG_COLLECTION" | "HARVEST" | "WATER_QUALITY";
|
|
@@ -5756,9 +5969,14 @@ export declare const livestockGroupsRouter: {
|
|
|
5756
5969
|
sampleWeight?: number | undefined;
|
|
5757
5970
|
eggCount?: number | undefined;
|
|
5758
5971
|
brokenEggs?: number | undefined;
|
|
5972
|
+
crackedEggs?: number | undefined;
|
|
5973
|
+
wastedEggs?: number | undefined;
|
|
5974
|
+
mortalityReason?: "natural" | "cull" | undefined;
|
|
5759
5975
|
feedType?: string | undefined;
|
|
5760
5976
|
feedQuantity?: number | undefined;
|
|
5761
5977
|
feedUnit?: string | undefined;
|
|
5978
|
+
waterQuantity?: number | undefined;
|
|
5979
|
+
waterUnit?: string | undefined;
|
|
5762
5980
|
}>;
|
|
5763
5981
|
}, "strip", z.ZodTypeAny, {
|
|
5764
5982
|
type: "batch-records";
|
|
@@ -5781,8 +5999,13 @@ export declare const livestockGroupsRouter: {
|
|
|
5781
5999
|
sampleWeight?: number | undefined;
|
|
5782
6000
|
eggCount?: number | undefined;
|
|
5783
6001
|
brokenEggs?: number | undefined;
|
|
6002
|
+
crackedEggs?: number | undefined;
|
|
6003
|
+
wastedEggs?: number | undefined;
|
|
6004
|
+
mortalityReason?: "natural" | "cull" | undefined;
|
|
5784
6005
|
feedType?: string | undefined;
|
|
5785
6006
|
feedQuantity?: number | undefined;
|
|
6007
|
+
waterQuantity?: number | undefined;
|
|
6008
|
+
waterUnit?: string | undefined;
|
|
5786
6009
|
};
|
|
5787
6010
|
}, {
|
|
5788
6011
|
type: "batch-records";
|
|
@@ -5804,9 +6027,14 @@ export declare const livestockGroupsRouter: {
|
|
|
5804
6027
|
sampleWeight?: number | undefined;
|
|
5805
6028
|
eggCount?: number | undefined;
|
|
5806
6029
|
brokenEggs?: number | undefined;
|
|
6030
|
+
crackedEggs?: number | undefined;
|
|
6031
|
+
wastedEggs?: number | undefined;
|
|
6032
|
+
mortalityReason?: "natural" | "cull" | undefined;
|
|
5807
6033
|
feedType?: string | undefined;
|
|
5808
6034
|
feedQuantity?: number | undefined;
|
|
5809
6035
|
feedUnit?: string | undefined;
|
|
6036
|
+
waterQuantity?: number | undefined;
|
|
6037
|
+
waterUnit?: string | undefined;
|
|
5810
6038
|
};
|
|
5811
6039
|
}>;
|
|
5812
6040
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5831,8 +6059,13 @@ export declare const livestockGroupsRouter: {
|
|
|
5831
6059
|
sampleWeight?: number | undefined;
|
|
5832
6060
|
eggCount?: number | undefined;
|
|
5833
6061
|
brokenEggs?: number | undefined;
|
|
6062
|
+
crackedEggs?: number | undefined;
|
|
6063
|
+
wastedEggs?: number | undefined;
|
|
6064
|
+
mortalityReason?: "natural" | "cull" | undefined;
|
|
5834
6065
|
feedType?: string | undefined;
|
|
5835
6066
|
feedQuantity?: number | undefined;
|
|
6067
|
+
waterQuantity?: number | undefined;
|
|
6068
|
+
waterUnit?: string | undefined;
|
|
5836
6069
|
};
|
|
5837
6070
|
};
|
|
5838
6071
|
}, {
|
|
@@ -5856,9 +6089,14 @@ export declare const livestockGroupsRouter: {
|
|
|
5856
6089
|
sampleWeight?: number | undefined;
|
|
5857
6090
|
eggCount?: number | undefined;
|
|
5858
6091
|
brokenEggs?: number | undefined;
|
|
6092
|
+
crackedEggs?: number | undefined;
|
|
6093
|
+
wastedEggs?: number | undefined;
|
|
6094
|
+
mortalityReason?: "natural" | "cull" | undefined;
|
|
5859
6095
|
feedType?: string | undefined;
|
|
5860
6096
|
feedQuantity?: number | undefined;
|
|
5861
6097
|
feedUnit?: string | undefined;
|
|
6098
|
+
waterQuantity?: number | undefined;
|
|
6099
|
+
waterUnit?: string | undefined;
|
|
5862
6100
|
};
|
|
5863
6101
|
};
|
|
5864
6102
|
}>;
|
|
@@ -5879,9 +6117,14 @@ export declare const livestockGroupsRouter: {
|
|
|
5879
6117
|
sampleCount: z.ZodNullable<z.ZodNumber>;
|
|
5880
6118
|
eggCount: z.ZodNullable<z.ZodNumber>;
|
|
5881
6119
|
brokenEggs: z.ZodNullable<z.ZodNumber>;
|
|
6120
|
+
crackedEggs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6121
|
+
wastedEggs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6122
|
+
mortalityReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5882
6123
|
feedType: z.ZodNullable<z.ZodString>;
|
|
5883
6124
|
feedQuantity: z.ZodNullable<z.ZodNumber>;
|
|
5884
6125
|
feedUnit: z.ZodNullable<z.ZodString>;
|
|
6126
|
+
waterQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6127
|
+
waterUnit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5885
6128
|
medication: z.ZodNullable<z.ZodString>;
|
|
5886
6129
|
vaccineName: z.ZodNullable<z.ZodString>;
|
|
5887
6130
|
dosage: z.ZodNullable<z.ZodString>;
|
|
@@ -5901,6 +6144,7 @@ export declare const livestockGroupsRouter: {
|
|
|
5901
6144
|
description: string | null;
|
|
5902
6145
|
currency: string;
|
|
5903
6146
|
notes: string | null;
|
|
6147
|
+
groupId: string;
|
|
5904
6148
|
sampleCount: number | null;
|
|
5905
6149
|
cost: number | null;
|
|
5906
6150
|
recordDate: string;
|
|
@@ -5910,7 +6154,6 @@ export declare const livestockGroupsRouter: {
|
|
|
5910
6154
|
administeredBy: string | null;
|
|
5911
6155
|
vaccineName: string | null;
|
|
5912
6156
|
transactionValue: number | null;
|
|
5913
|
-
groupId: string;
|
|
5914
6157
|
countChange: number | null;
|
|
5915
6158
|
affectedCount: number | null;
|
|
5916
6159
|
sampleWeight: number | null;
|
|
@@ -5919,12 +6162,18 @@ export declare const livestockGroupsRouter: {
|
|
|
5919
6162
|
feedType: string | null;
|
|
5920
6163
|
feedQuantity: number | null;
|
|
5921
6164
|
feedUnit: string | null;
|
|
6165
|
+
crackedEggs?: number | null | undefined;
|
|
6166
|
+
wastedEggs?: number | null | undefined;
|
|
6167
|
+
mortalityReason?: string | null | undefined;
|
|
6168
|
+
waterQuantity?: number | null | undefined;
|
|
6169
|
+
waterUnit?: string | null | undefined;
|
|
5922
6170
|
}, {
|
|
5923
6171
|
id: string;
|
|
5924
6172
|
createdAt: string;
|
|
5925
6173
|
updatedAt: string;
|
|
5926
6174
|
description: string | null;
|
|
5927
6175
|
notes: string | null;
|
|
6176
|
+
groupId: string;
|
|
5928
6177
|
sampleCount: number | null;
|
|
5929
6178
|
cost: number | null;
|
|
5930
6179
|
recordDate: string;
|
|
@@ -5934,7 +6183,6 @@ export declare const livestockGroupsRouter: {
|
|
|
5934
6183
|
administeredBy: string | null;
|
|
5935
6184
|
vaccineName: string | null;
|
|
5936
6185
|
transactionValue: number | null;
|
|
5937
|
-
groupId: string;
|
|
5938
6186
|
countChange: number | null;
|
|
5939
6187
|
affectedCount: number | null;
|
|
5940
6188
|
sampleWeight: number | null;
|
|
@@ -5944,6 +6192,11 @@ export declare const livestockGroupsRouter: {
|
|
|
5944
6192
|
feedQuantity: number | null;
|
|
5945
6193
|
feedUnit: string | null;
|
|
5946
6194
|
currency?: string | undefined;
|
|
6195
|
+
crackedEggs?: number | null | undefined;
|
|
6196
|
+
wastedEggs?: number | null | undefined;
|
|
6197
|
+
mortalityReason?: string | null | undefined;
|
|
6198
|
+
waterQuantity?: number | null | undefined;
|
|
6199
|
+
waterUnit?: string | null | undefined;
|
|
5947
6200
|
}>;
|
|
5948
6201
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5949
6202
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -5958,6 +6211,7 @@ export declare const livestockGroupsRouter: {
|
|
|
5958
6211
|
description: string | null;
|
|
5959
6212
|
currency: string;
|
|
5960
6213
|
notes: string | null;
|
|
6214
|
+
groupId: string;
|
|
5961
6215
|
sampleCount: number | null;
|
|
5962
6216
|
cost: number | null;
|
|
5963
6217
|
recordDate: string;
|
|
@@ -5967,7 +6221,6 @@ export declare const livestockGroupsRouter: {
|
|
|
5967
6221
|
administeredBy: string | null;
|
|
5968
6222
|
vaccineName: string | null;
|
|
5969
6223
|
transactionValue: number | null;
|
|
5970
|
-
groupId: string;
|
|
5971
6224
|
countChange: number | null;
|
|
5972
6225
|
affectedCount: number | null;
|
|
5973
6226
|
sampleWeight: number | null;
|
|
@@ -5976,6 +6229,11 @@ export declare const livestockGroupsRouter: {
|
|
|
5976
6229
|
feedType: string | null;
|
|
5977
6230
|
feedQuantity: number | null;
|
|
5978
6231
|
feedUnit: string | null;
|
|
6232
|
+
crackedEggs?: number | null | undefined;
|
|
6233
|
+
wastedEggs?: number | null | undefined;
|
|
6234
|
+
mortalityReason?: string | null | undefined;
|
|
6235
|
+
waterQuantity?: number | null | undefined;
|
|
6236
|
+
waterUnit?: string | null | undefined;
|
|
5979
6237
|
};
|
|
5980
6238
|
relationships?: Record<string, unknown> | undefined;
|
|
5981
6239
|
links?: Record<string, string> | undefined;
|
|
@@ -5989,6 +6247,7 @@ export declare const livestockGroupsRouter: {
|
|
|
5989
6247
|
updatedAt: string;
|
|
5990
6248
|
description: string | null;
|
|
5991
6249
|
notes: string | null;
|
|
6250
|
+
groupId: string;
|
|
5992
6251
|
sampleCount: number | null;
|
|
5993
6252
|
cost: number | null;
|
|
5994
6253
|
recordDate: string;
|
|
@@ -5998,7 +6257,6 @@ export declare const livestockGroupsRouter: {
|
|
|
5998
6257
|
administeredBy: string | null;
|
|
5999
6258
|
vaccineName: string | null;
|
|
6000
6259
|
transactionValue: number | null;
|
|
6001
|
-
groupId: string;
|
|
6002
6260
|
countChange: number | null;
|
|
6003
6261
|
affectedCount: number | null;
|
|
6004
6262
|
sampleWeight: number | null;
|
|
@@ -6008,6 +6266,11 @@ export declare const livestockGroupsRouter: {
|
|
|
6008
6266
|
feedQuantity: number | null;
|
|
6009
6267
|
feedUnit: string | null;
|
|
6010
6268
|
currency?: string | undefined;
|
|
6269
|
+
crackedEggs?: number | null | undefined;
|
|
6270
|
+
wastedEggs?: number | null | undefined;
|
|
6271
|
+
mortalityReason?: string | null | undefined;
|
|
6272
|
+
waterQuantity?: number | null | undefined;
|
|
6273
|
+
waterUnit?: string | null | undefined;
|
|
6011
6274
|
};
|
|
6012
6275
|
relationships?: Record<string, unknown> | undefined;
|
|
6013
6276
|
links?: Record<string, string> | undefined;
|
|
@@ -6048,6 +6311,7 @@ export declare const livestockGroupsRouter: {
|
|
|
6048
6311
|
description: string | null;
|
|
6049
6312
|
currency: string;
|
|
6050
6313
|
notes: string | null;
|
|
6314
|
+
groupId: string;
|
|
6051
6315
|
sampleCount: number | null;
|
|
6052
6316
|
cost: number | null;
|
|
6053
6317
|
recordDate: string;
|
|
@@ -6057,7 +6321,6 @@ export declare const livestockGroupsRouter: {
|
|
|
6057
6321
|
administeredBy: string | null;
|
|
6058
6322
|
vaccineName: string | null;
|
|
6059
6323
|
transactionValue: number | null;
|
|
6060
|
-
groupId: string;
|
|
6061
6324
|
countChange: number | null;
|
|
6062
6325
|
affectedCount: number | null;
|
|
6063
6326
|
sampleWeight: number | null;
|
|
@@ -6066,6 +6329,11 @@ export declare const livestockGroupsRouter: {
|
|
|
6066
6329
|
feedType: string | null;
|
|
6067
6330
|
feedQuantity: number | null;
|
|
6068
6331
|
feedUnit: string | null;
|
|
6332
|
+
crackedEggs?: number | null | undefined;
|
|
6333
|
+
wastedEggs?: number | null | undefined;
|
|
6334
|
+
mortalityReason?: string | null | undefined;
|
|
6335
|
+
waterQuantity?: number | null | undefined;
|
|
6336
|
+
waterUnit?: string | null | undefined;
|
|
6069
6337
|
};
|
|
6070
6338
|
relationships?: Record<string, unknown> | undefined;
|
|
6071
6339
|
links?: Record<string, string> | undefined;
|
|
@@ -6091,6 +6359,7 @@ export declare const livestockGroupsRouter: {
|
|
|
6091
6359
|
updatedAt: string;
|
|
6092
6360
|
description: string | null;
|
|
6093
6361
|
notes: string | null;
|
|
6362
|
+
groupId: string;
|
|
6094
6363
|
sampleCount: number | null;
|
|
6095
6364
|
cost: number | null;
|
|
6096
6365
|
recordDate: string;
|
|
@@ -6100,7 +6369,6 @@ export declare const livestockGroupsRouter: {
|
|
|
6100
6369
|
administeredBy: string | null;
|
|
6101
6370
|
vaccineName: string | null;
|
|
6102
6371
|
transactionValue: number | null;
|
|
6103
|
-
groupId: string;
|
|
6104
6372
|
countChange: number | null;
|
|
6105
6373
|
affectedCount: number | null;
|
|
6106
6374
|
sampleWeight: number | null;
|
|
@@ -6110,6 +6378,11 @@ export declare const livestockGroupsRouter: {
|
|
|
6110
6378
|
feedQuantity: number | null;
|
|
6111
6379
|
feedUnit: string | null;
|
|
6112
6380
|
currency?: string | undefined;
|
|
6381
|
+
crackedEggs?: number | null | undefined;
|
|
6382
|
+
wastedEggs?: number | null | undefined;
|
|
6383
|
+
mortalityReason?: string | null | undefined;
|
|
6384
|
+
waterQuantity?: number | null | undefined;
|
|
6385
|
+
waterUnit?: string | null | undefined;
|
|
6113
6386
|
};
|
|
6114
6387
|
relationships?: Record<string, unknown> | undefined;
|
|
6115
6388
|
links?: Record<string, string> | undefined;
|
|
@@ -6522,9 +6795,14 @@ export declare const livestockGroupsRouter: {
|
|
|
6522
6795
|
sampleCount: z.ZodNullable<z.ZodNumber>;
|
|
6523
6796
|
eggCount: z.ZodNullable<z.ZodNumber>;
|
|
6524
6797
|
brokenEggs: z.ZodNullable<z.ZodNumber>;
|
|
6798
|
+
crackedEggs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6799
|
+
wastedEggs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6800
|
+
mortalityReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6525
6801
|
feedType: z.ZodNullable<z.ZodString>;
|
|
6526
6802
|
feedQuantity: z.ZodNullable<z.ZodNumber>;
|
|
6527
6803
|
feedUnit: z.ZodNullable<z.ZodString>;
|
|
6804
|
+
waterQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6805
|
+
waterUnit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6528
6806
|
medication: z.ZodNullable<z.ZodString>;
|
|
6529
6807
|
vaccineName: z.ZodNullable<z.ZodString>;
|
|
6530
6808
|
dosage: z.ZodNullable<z.ZodString>;
|
|
@@ -6544,6 +6822,7 @@ export declare const livestockGroupsRouter: {
|
|
|
6544
6822
|
description: string | null;
|
|
6545
6823
|
currency: string;
|
|
6546
6824
|
notes: string | null;
|
|
6825
|
+
groupId: string;
|
|
6547
6826
|
sampleCount: number | null;
|
|
6548
6827
|
cost: number | null;
|
|
6549
6828
|
recordDate: string;
|
|
@@ -6553,7 +6832,6 @@ export declare const livestockGroupsRouter: {
|
|
|
6553
6832
|
administeredBy: string | null;
|
|
6554
6833
|
vaccineName: string | null;
|
|
6555
6834
|
transactionValue: number | null;
|
|
6556
|
-
groupId: string;
|
|
6557
6835
|
countChange: number | null;
|
|
6558
6836
|
affectedCount: number | null;
|
|
6559
6837
|
sampleWeight: number | null;
|
|
@@ -6562,12 +6840,18 @@ export declare const livestockGroupsRouter: {
|
|
|
6562
6840
|
feedType: string | null;
|
|
6563
6841
|
feedQuantity: number | null;
|
|
6564
6842
|
feedUnit: string | null;
|
|
6843
|
+
crackedEggs?: number | null | undefined;
|
|
6844
|
+
wastedEggs?: number | null | undefined;
|
|
6845
|
+
mortalityReason?: string | null | undefined;
|
|
6846
|
+
waterQuantity?: number | null | undefined;
|
|
6847
|
+
waterUnit?: string | null | undefined;
|
|
6565
6848
|
}, {
|
|
6566
6849
|
id: string;
|
|
6567
6850
|
createdAt: string;
|
|
6568
6851
|
updatedAt: string;
|
|
6569
6852
|
description: string | null;
|
|
6570
6853
|
notes: string | null;
|
|
6854
|
+
groupId: string;
|
|
6571
6855
|
sampleCount: number | null;
|
|
6572
6856
|
cost: number | null;
|
|
6573
6857
|
recordDate: string;
|
|
@@ -6577,7 +6861,6 @@ export declare const livestockGroupsRouter: {
|
|
|
6577
6861
|
administeredBy: string | null;
|
|
6578
6862
|
vaccineName: string | null;
|
|
6579
6863
|
transactionValue: number | null;
|
|
6580
|
-
groupId: string;
|
|
6581
6864
|
countChange: number | null;
|
|
6582
6865
|
affectedCount: number | null;
|
|
6583
6866
|
sampleWeight: number | null;
|
|
@@ -6587,6 +6870,11 @@ export declare const livestockGroupsRouter: {
|
|
|
6587
6870
|
feedQuantity: number | null;
|
|
6588
6871
|
feedUnit: string | null;
|
|
6589
6872
|
currency?: string | undefined;
|
|
6873
|
+
crackedEggs?: number | null | undefined;
|
|
6874
|
+
wastedEggs?: number | null | undefined;
|
|
6875
|
+
mortalityReason?: string | null | undefined;
|
|
6876
|
+
waterQuantity?: number | null | undefined;
|
|
6877
|
+
waterUnit?: string | null | undefined;
|
|
6590
6878
|
}>;
|
|
6591
6879
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6592
6880
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -6601,6 +6889,7 @@ export declare const livestockGroupsRouter: {
|
|
|
6601
6889
|
description: string | null;
|
|
6602
6890
|
currency: string;
|
|
6603
6891
|
notes: string | null;
|
|
6892
|
+
groupId: string;
|
|
6604
6893
|
sampleCount: number | null;
|
|
6605
6894
|
cost: number | null;
|
|
6606
6895
|
recordDate: string;
|
|
@@ -6610,7 +6899,6 @@ export declare const livestockGroupsRouter: {
|
|
|
6610
6899
|
administeredBy: string | null;
|
|
6611
6900
|
vaccineName: string | null;
|
|
6612
6901
|
transactionValue: number | null;
|
|
6613
|
-
groupId: string;
|
|
6614
6902
|
countChange: number | null;
|
|
6615
6903
|
affectedCount: number | null;
|
|
6616
6904
|
sampleWeight: number | null;
|
|
@@ -6619,6 +6907,11 @@ export declare const livestockGroupsRouter: {
|
|
|
6619
6907
|
feedType: string | null;
|
|
6620
6908
|
feedQuantity: number | null;
|
|
6621
6909
|
feedUnit: string | null;
|
|
6910
|
+
crackedEggs?: number | null | undefined;
|
|
6911
|
+
wastedEggs?: number | null | undefined;
|
|
6912
|
+
mortalityReason?: string | null | undefined;
|
|
6913
|
+
waterQuantity?: number | null | undefined;
|
|
6914
|
+
waterUnit?: string | null | undefined;
|
|
6622
6915
|
};
|
|
6623
6916
|
relationships?: Record<string, unknown> | undefined;
|
|
6624
6917
|
links?: Record<string, string> | undefined;
|
|
@@ -6632,6 +6925,7 @@ export declare const livestockGroupsRouter: {
|
|
|
6632
6925
|
updatedAt: string;
|
|
6633
6926
|
description: string | null;
|
|
6634
6927
|
notes: string | null;
|
|
6928
|
+
groupId: string;
|
|
6635
6929
|
sampleCount: number | null;
|
|
6636
6930
|
cost: number | null;
|
|
6637
6931
|
recordDate: string;
|
|
@@ -6641,7 +6935,6 @@ export declare const livestockGroupsRouter: {
|
|
|
6641
6935
|
administeredBy: string | null;
|
|
6642
6936
|
vaccineName: string | null;
|
|
6643
6937
|
transactionValue: number | null;
|
|
6644
|
-
groupId: string;
|
|
6645
6938
|
countChange: number | null;
|
|
6646
6939
|
affectedCount: number | null;
|
|
6647
6940
|
sampleWeight: number | null;
|
|
@@ -6651,6 +6944,11 @@ export declare const livestockGroupsRouter: {
|
|
|
6651
6944
|
feedQuantity: number | null;
|
|
6652
6945
|
feedUnit: string | null;
|
|
6653
6946
|
currency?: string | undefined;
|
|
6947
|
+
crackedEggs?: number | null | undefined;
|
|
6948
|
+
wastedEggs?: number | null | undefined;
|
|
6949
|
+
mortalityReason?: string | null | undefined;
|
|
6950
|
+
waterQuantity?: number | null | undefined;
|
|
6951
|
+
waterUnit?: string | null | undefined;
|
|
6654
6952
|
};
|
|
6655
6953
|
relationships?: Record<string, unknown> | undefined;
|
|
6656
6954
|
links?: Record<string, string> | undefined;
|
|
@@ -6691,6 +6989,7 @@ export declare const livestockGroupsRouter: {
|
|
|
6691
6989
|
description: string | null;
|
|
6692
6990
|
currency: string;
|
|
6693
6991
|
notes: string | null;
|
|
6992
|
+
groupId: string;
|
|
6694
6993
|
sampleCount: number | null;
|
|
6695
6994
|
cost: number | null;
|
|
6696
6995
|
recordDate: string;
|
|
@@ -6700,7 +6999,6 @@ export declare const livestockGroupsRouter: {
|
|
|
6700
6999
|
administeredBy: string | null;
|
|
6701
7000
|
vaccineName: string | null;
|
|
6702
7001
|
transactionValue: number | null;
|
|
6703
|
-
groupId: string;
|
|
6704
7002
|
countChange: number | null;
|
|
6705
7003
|
affectedCount: number | null;
|
|
6706
7004
|
sampleWeight: number | null;
|
|
@@ -6709,6 +7007,11 @@ export declare const livestockGroupsRouter: {
|
|
|
6709
7007
|
feedType: string | null;
|
|
6710
7008
|
feedQuantity: number | null;
|
|
6711
7009
|
feedUnit: string | null;
|
|
7010
|
+
crackedEggs?: number | null | undefined;
|
|
7011
|
+
wastedEggs?: number | null | undefined;
|
|
7012
|
+
mortalityReason?: string | null | undefined;
|
|
7013
|
+
waterQuantity?: number | null | undefined;
|
|
7014
|
+
waterUnit?: string | null | undefined;
|
|
6712
7015
|
};
|
|
6713
7016
|
relationships?: Record<string, unknown> | undefined;
|
|
6714
7017
|
links?: Record<string, string> | undefined;
|
|
@@ -6734,6 +7037,7 @@ export declare const livestockGroupsRouter: {
|
|
|
6734
7037
|
updatedAt: string;
|
|
6735
7038
|
description: string | null;
|
|
6736
7039
|
notes: string | null;
|
|
7040
|
+
groupId: string;
|
|
6737
7041
|
sampleCount: number | null;
|
|
6738
7042
|
cost: number | null;
|
|
6739
7043
|
recordDate: string;
|
|
@@ -6743,7 +7047,6 @@ export declare const livestockGroupsRouter: {
|
|
|
6743
7047
|
administeredBy: string | null;
|
|
6744
7048
|
vaccineName: string | null;
|
|
6745
7049
|
transactionValue: number | null;
|
|
6746
|
-
groupId: string;
|
|
6747
7050
|
countChange: number | null;
|
|
6748
7051
|
affectedCount: number | null;
|
|
6749
7052
|
sampleWeight: number | null;
|
|
@@ -6753,6 +7056,11 @@ export declare const livestockGroupsRouter: {
|
|
|
6753
7056
|
feedQuantity: number | null;
|
|
6754
7057
|
feedUnit: string | null;
|
|
6755
7058
|
currency?: string | undefined;
|
|
7059
|
+
crackedEggs?: number | null | undefined;
|
|
7060
|
+
wastedEggs?: number | null | undefined;
|
|
7061
|
+
mortalityReason?: string | null | undefined;
|
|
7062
|
+
waterQuantity?: number | null | undefined;
|
|
7063
|
+
waterUnit?: string | null | undefined;
|
|
6756
7064
|
};
|
|
6757
7065
|
relationships?: Record<string, unknown> | undefined;
|
|
6758
7066
|
links?: Record<string, string> | undefined;
|
|
@@ -7216,7 +7524,7 @@ export declare const livestockGroupsRouter: {
|
|
|
7216
7524
|
}>, "many">>;
|
|
7217
7525
|
}, "strip", z.ZodTypeAny, {
|
|
7218
7526
|
currency: string;
|
|
7219
|
-
category: "
|
|
7527
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
7220
7528
|
sex: "MALE" | "FEMALE" | "UNKNOWN";
|
|
7221
7529
|
acquisitionType: "born" | "purchased" | "transferred" | "gifted";
|
|
7222
7530
|
entries?: {
|
|
@@ -7228,13 +7536,13 @@ export declare const livestockGroupsRouter: {
|
|
|
7228
7536
|
}[] | undefined;
|
|
7229
7537
|
location?: string | undefined;
|
|
7230
7538
|
count?: number | undefined;
|
|
7539
|
+
groupId?: string | undefined;
|
|
7231
7540
|
purchasePrice?: number | undefined;
|
|
7232
7541
|
breed?: string | undefined;
|
|
7233
7542
|
acquisitionDate?: string | undefined;
|
|
7234
|
-
groupId?: string | undefined;
|
|
7235
7543
|
tagPrefix?: string | undefined;
|
|
7236
7544
|
}, {
|
|
7237
|
-
category: "
|
|
7545
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
7238
7546
|
entries?: {
|
|
7239
7547
|
tagId: string;
|
|
7240
7548
|
name?: string | undefined;
|
|
@@ -7245,19 +7553,19 @@ export declare const livestockGroupsRouter: {
|
|
|
7245
7553
|
location?: string | undefined;
|
|
7246
7554
|
currency?: string | undefined;
|
|
7247
7555
|
count?: number | undefined;
|
|
7556
|
+
groupId?: string | undefined;
|
|
7248
7557
|
purchasePrice?: number | undefined;
|
|
7249
7558
|
breed?: string | undefined;
|
|
7250
7559
|
sex?: "MALE" | "FEMALE" | "UNKNOWN" | undefined;
|
|
7251
7560
|
acquisitionDate?: string | undefined;
|
|
7252
7561
|
acquisitionType?: "born" | "purchased" | "transferred" | "gifted" | undefined;
|
|
7253
|
-
groupId?: string | undefined;
|
|
7254
7562
|
tagPrefix?: string | undefined;
|
|
7255
7563
|
}>;
|
|
7256
7564
|
}, "strip", z.ZodTypeAny, {
|
|
7257
7565
|
type: "livestock-bulk";
|
|
7258
7566
|
attributes: {
|
|
7259
7567
|
currency: string;
|
|
7260
|
-
category: "
|
|
7568
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
7261
7569
|
sex: "MALE" | "FEMALE" | "UNKNOWN";
|
|
7262
7570
|
acquisitionType: "born" | "purchased" | "transferred" | "gifted";
|
|
7263
7571
|
entries?: {
|
|
@@ -7269,16 +7577,16 @@ export declare const livestockGroupsRouter: {
|
|
|
7269
7577
|
}[] | undefined;
|
|
7270
7578
|
location?: string | undefined;
|
|
7271
7579
|
count?: number | undefined;
|
|
7580
|
+
groupId?: string | undefined;
|
|
7272
7581
|
purchasePrice?: number | undefined;
|
|
7273
7582
|
breed?: string | undefined;
|
|
7274
7583
|
acquisitionDate?: string | undefined;
|
|
7275
|
-
groupId?: string | undefined;
|
|
7276
7584
|
tagPrefix?: string | undefined;
|
|
7277
7585
|
};
|
|
7278
7586
|
}, {
|
|
7279
7587
|
type: "livestock-bulk";
|
|
7280
7588
|
attributes: {
|
|
7281
|
-
category: "
|
|
7589
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
7282
7590
|
entries?: {
|
|
7283
7591
|
tagId: string;
|
|
7284
7592
|
name?: string | undefined;
|
|
@@ -7289,12 +7597,12 @@ export declare const livestockGroupsRouter: {
|
|
|
7289
7597
|
location?: string | undefined;
|
|
7290
7598
|
currency?: string | undefined;
|
|
7291
7599
|
count?: number | undefined;
|
|
7600
|
+
groupId?: string | undefined;
|
|
7292
7601
|
purchasePrice?: number | undefined;
|
|
7293
7602
|
breed?: string | undefined;
|
|
7294
7603
|
sex?: "MALE" | "FEMALE" | "UNKNOWN" | undefined;
|
|
7295
7604
|
acquisitionDate?: string | undefined;
|
|
7296
7605
|
acquisitionType?: "born" | "purchased" | "transferred" | "gifted" | undefined;
|
|
7297
|
-
groupId?: string | undefined;
|
|
7298
7606
|
tagPrefix?: string | undefined;
|
|
7299
7607
|
};
|
|
7300
7608
|
}>;
|
|
@@ -7303,7 +7611,7 @@ export declare const livestockGroupsRouter: {
|
|
|
7303
7611
|
type: "livestock-bulk";
|
|
7304
7612
|
attributes: {
|
|
7305
7613
|
currency: string;
|
|
7306
|
-
category: "
|
|
7614
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
7307
7615
|
sex: "MALE" | "FEMALE" | "UNKNOWN";
|
|
7308
7616
|
acquisitionType: "born" | "purchased" | "transferred" | "gifted";
|
|
7309
7617
|
entries?: {
|
|
@@ -7315,10 +7623,10 @@ export declare const livestockGroupsRouter: {
|
|
|
7315
7623
|
}[] | undefined;
|
|
7316
7624
|
location?: string | undefined;
|
|
7317
7625
|
count?: number | undefined;
|
|
7626
|
+
groupId?: string | undefined;
|
|
7318
7627
|
purchasePrice?: number | undefined;
|
|
7319
7628
|
breed?: string | undefined;
|
|
7320
7629
|
acquisitionDate?: string | undefined;
|
|
7321
|
-
groupId?: string | undefined;
|
|
7322
7630
|
tagPrefix?: string | undefined;
|
|
7323
7631
|
};
|
|
7324
7632
|
};
|
|
@@ -7326,7 +7634,7 @@ export declare const livestockGroupsRouter: {
|
|
|
7326
7634
|
data: {
|
|
7327
7635
|
type: "livestock-bulk";
|
|
7328
7636
|
attributes: {
|
|
7329
|
-
category: "
|
|
7637
|
+
category: "POULTRY" | "CATTLE" | "GOAT" | "OTHER" | "SHEEP" | "PIG" | "FISH" | "RABBIT";
|
|
7330
7638
|
entries?: {
|
|
7331
7639
|
tagId: string;
|
|
7332
7640
|
name?: string | undefined;
|
|
@@ -7337,12 +7645,12 @@ export declare const livestockGroupsRouter: {
|
|
|
7337
7645
|
location?: string | undefined;
|
|
7338
7646
|
currency?: string | undefined;
|
|
7339
7647
|
count?: number | undefined;
|
|
7648
|
+
groupId?: string | undefined;
|
|
7340
7649
|
purchasePrice?: number | undefined;
|
|
7341
7650
|
breed?: string | undefined;
|
|
7342
7651
|
sex?: "MALE" | "FEMALE" | "UNKNOWN" | undefined;
|
|
7343
7652
|
acquisitionDate?: string | undefined;
|
|
7344
7653
|
acquisitionType?: "born" | "purchased" | "transferred" | "gifted" | undefined;
|
|
7345
|
-
groupId?: string | undefined;
|
|
7346
7654
|
tagPrefix?: string | undefined;
|
|
7347
7655
|
};
|
|
7348
7656
|
};
|
|
@@ -7809,6 +8117,7 @@ export declare const livestockGroupsRouter: {
|
|
|
7809
8117
|
recordDate: string;
|
|
7810
8118
|
recordType: "other" | "vaccination" | "treatment" | "checkup" | "deworming" | "surgery";
|
|
7811
8119
|
notes?: string | undefined;
|
|
8120
|
+
groupId?: string | undefined;
|
|
7812
8121
|
cost?: number | undefined;
|
|
7813
8122
|
medication?: string | undefined;
|
|
7814
8123
|
dosage?: string | undefined;
|
|
@@ -7816,7 +8125,6 @@ export declare const livestockGroupsRouter: {
|
|
|
7816
8125
|
vaccineName?: string | undefined;
|
|
7817
8126
|
batchNumber?: string | undefined;
|
|
7818
8127
|
nextDueDate?: string | undefined;
|
|
7819
|
-
groupId?: string | undefined;
|
|
7820
8128
|
livestockIds?: string[] | undefined;
|
|
7821
8129
|
}, {
|
|
7822
8130
|
description: string;
|
|
@@ -7824,6 +8132,7 @@ export declare const livestockGroupsRouter: {
|
|
|
7824
8132
|
recordType: "other" | "vaccination" | "treatment" | "checkup" | "deworming" | "surgery";
|
|
7825
8133
|
currency?: string | undefined;
|
|
7826
8134
|
notes?: string | undefined;
|
|
8135
|
+
groupId?: string | undefined;
|
|
7827
8136
|
cost?: number | undefined;
|
|
7828
8137
|
medication?: string | undefined;
|
|
7829
8138
|
dosage?: string | undefined;
|
|
@@ -7831,7 +8140,6 @@ export declare const livestockGroupsRouter: {
|
|
|
7831
8140
|
vaccineName?: string | undefined;
|
|
7832
8141
|
batchNumber?: string | undefined;
|
|
7833
8142
|
nextDueDate?: string | undefined;
|
|
7834
|
-
groupId?: string | undefined;
|
|
7835
8143
|
livestockIds?: string[] | undefined;
|
|
7836
8144
|
}>;
|
|
7837
8145
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7842,6 +8150,7 @@ export declare const livestockGroupsRouter: {
|
|
|
7842
8150
|
recordDate: string;
|
|
7843
8151
|
recordType: "other" | "vaccination" | "treatment" | "checkup" | "deworming" | "surgery";
|
|
7844
8152
|
notes?: string | undefined;
|
|
8153
|
+
groupId?: string | undefined;
|
|
7845
8154
|
cost?: number | undefined;
|
|
7846
8155
|
medication?: string | undefined;
|
|
7847
8156
|
dosage?: string | undefined;
|
|
@@ -7849,7 +8158,6 @@ export declare const livestockGroupsRouter: {
|
|
|
7849
8158
|
vaccineName?: string | undefined;
|
|
7850
8159
|
batchNumber?: string | undefined;
|
|
7851
8160
|
nextDueDate?: string | undefined;
|
|
7852
|
-
groupId?: string | undefined;
|
|
7853
8161
|
livestockIds?: string[] | undefined;
|
|
7854
8162
|
};
|
|
7855
8163
|
}, {
|
|
@@ -7860,6 +8168,7 @@ export declare const livestockGroupsRouter: {
|
|
|
7860
8168
|
recordType: "other" | "vaccination" | "treatment" | "checkup" | "deworming" | "surgery";
|
|
7861
8169
|
currency?: string | undefined;
|
|
7862
8170
|
notes?: string | undefined;
|
|
8171
|
+
groupId?: string | undefined;
|
|
7863
8172
|
cost?: number | undefined;
|
|
7864
8173
|
medication?: string | undefined;
|
|
7865
8174
|
dosage?: string | undefined;
|
|
@@ -7867,7 +8176,6 @@ export declare const livestockGroupsRouter: {
|
|
|
7867
8176
|
vaccineName?: string | undefined;
|
|
7868
8177
|
batchNumber?: string | undefined;
|
|
7869
8178
|
nextDueDate?: string | undefined;
|
|
7870
|
-
groupId?: string | undefined;
|
|
7871
8179
|
livestockIds?: string[] | undefined;
|
|
7872
8180
|
};
|
|
7873
8181
|
}>;
|
|
@@ -7880,6 +8188,7 @@ export declare const livestockGroupsRouter: {
|
|
|
7880
8188
|
recordDate: string;
|
|
7881
8189
|
recordType: "other" | "vaccination" | "treatment" | "checkup" | "deworming" | "surgery";
|
|
7882
8190
|
notes?: string | undefined;
|
|
8191
|
+
groupId?: string | undefined;
|
|
7883
8192
|
cost?: number | undefined;
|
|
7884
8193
|
medication?: string | undefined;
|
|
7885
8194
|
dosage?: string | undefined;
|
|
@@ -7887,7 +8196,6 @@ export declare const livestockGroupsRouter: {
|
|
|
7887
8196
|
vaccineName?: string | undefined;
|
|
7888
8197
|
batchNumber?: string | undefined;
|
|
7889
8198
|
nextDueDate?: string | undefined;
|
|
7890
|
-
groupId?: string | undefined;
|
|
7891
8199
|
livestockIds?: string[] | undefined;
|
|
7892
8200
|
};
|
|
7893
8201
|
};
|
|
@@ -7900,6 +8208,7 @@ export declare const livestockGroupsRouter: {
|
|
|
7900
8208
|
recordType: "other" | "vaccination" | "treatment" | "checkup" | "deworming" | "surgery";
|
|
7901
8209
|
currency?: string | undefined;
|
|
7902
8210
|
notes?: string | undefined;
|
|
8211
|
+
groupId?: string | undefined;
|
|
7903
8212
|
cost?: number | undefined;
|
|
7904
8213
|
medication?: string | undefined;
|
|
7905
8214
|
dosage?: string | undefined;
|
|
@@ -7907,7 +8216,6 @@ export declare const livestockGroupsRouter: {
|
|
|
7907
8216
|
vaccineName?: string | undefined;
|
|
7908
8217
|
batchNumber?: string | undefined;
|
|
7909
8218
|
nextDueDate?: string | undefined;
|
|
7910
|
-
groupId?: string | undefined;
|
|
7911
8219
|
livestockIds?: string[] | undefined;
|
|
7912
8220
|
};
|
|
7913
8221
|
};
|