@la-main-verte/shared-types 1.0.67 → 1.0.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@la-main-verte/shared-types",
3
- "version": "1.0.67",
3
+ "version": "1.0.68",
4
4
  "description": "Shared TypeScript interfaces for frontend of la-main-verte app",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -17,4 +17,30 @@ export interface FertilizerI {
17
17
  imageLocation: string
18
18
  imageURL: string
19
19
  quantitySuggested: string
20
+ /**
21
+ * Blend composition when this fertilizer is a combination of two products.
22
+ * Empty object {} for single fertilizers.
23
+ * When populated, contains the IDs and ratios (as percentages) of the primary and secondary fertilizers.
24
+ * The NPK values should be calculated by fetching each fertilizer and applying the weighted average.
25
+ *
26
+ * @example
27
+ * // For a blend:
28
+ * {
29
+ * "primary_fertilizer_id": 1, // Acti-Sol (70%)
30
+ * "primary_fertilizer_ratio": 70,
31
+ * "secondary_fertilizer_id": 12, // Bionik (30%)
32
+ * "secondary_fertilizer_ratio": 30
33
+ * }
34
+ *
35
+ * // For a single fertilizer:
36
+ * {}
37
+ */
38
+ combination_details: BlendCompositionI | Record<string, never>
39
+ }
40
+
41
+ interface BlendCompositionI {
42
+ primary_fertilizer_id: number
43
+ primary_fertilizer_ratio: number
44
+ secondary_fertilizer_id: number
45
+ secondary_fertilizer_ratio: number
20
46
  }
@@ -1,5 +1,5 @@
1
- import { PlantSelectionI } from './plantSelection'
2
- import { FertilizerI } from './fertilizer'
1
+ import type { FertilizerI } from './fertilizer'
2
+ import type { PlantSelectionI } from './plantSelection'
3
3
 
4
4
  /**
5
5
  * Available garden map categories across the platform
package/src/member.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { NoteI } from './note'
2
- import { SelectionI } from './selection'
1
+ import type { NoteI } from './note'
2
+ import type { SelectionI } from './selection'
3
3
 
4
4
  export interface MemberI {
5
5
  id: number