proflores-db-model 0.2.8 → 0.2.9

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.
Files changed (24) hide show
  1. package/dist/models/technical-sheet/catalogs/climate-ideal.d.ts +0 -2
  2. package/dist/models/technical-sheet/catalogs/fertilization-info.d.ts +0 -3
  3. package/dist/models/technical-sheet/catalogs/growth-class.d.ts +0 -1
  4. package/dist/models/technical-sheet/catalogs/growth-type.d.ts +0 -2
  5. package/dist/models/technical-sheet/catalogs/humidity-info.d.ts +0 -1
  6. package/dist/models/technical-sheet/catalogs/light-info.d.ts +0 -1
  7. package/dist/models/technical-sheet/catalogs/pest-info.d.ts +0 -3
  8. package/dist/models/technical-sheet/catalogs/plant-size.d.ts +0 -1
  9. package/dist/models/technical-sheet/catalogs/propagation-method.d.ts +0 -1
  10. package/dist/models/technical-sheet/catalogs/substrate-info.d.ts +0 -1
  11. package/dist/models/technical-sheet/index.d.ts +1 -0
  12. package/dist/models/technical-sheet/index.js +1 -0
  13. package/package.json +1 -1
  14. package/src/models/technical-sheet/catalogs/climate-ideal.ts +0 -3
  15. package/src/models/technical-sheet/catalogs/fertilization-info.ts +0 -3
  16. package/src/models/technical-sheet/catalogs/growth-class.ts +0 -1
  17. package/src/models/technical-sheet/catalogs/growth-type.ts +0 -2
  18. package/src/models/technical-sheet/catalogs/humidity-info.ts +0 -1
  19. package/src/models/technical-sheet/catalogs/light-info.ts +0 -1
  20. package/src/models/technical-sheet/catalogs/pest-info.ts +0 -3
  21. package/src/models/technical-sheet/catalogs/plant-size.ts +0 -1
  22. package/src/models/technical-sheet/catalogs/propagation-method.ts +0 -1
  23. package/src/models/technical-sheet/catalogs/substrate-info.ts +0 -1
  24. package/src/models/technical-sheet/index.ts +1 -0
@@ -7,5 +7,3 @@ export declare const CLIMATE: {
7
7
  FRÍO_MONTANO: string;
8
8
  UNIVERSAL: string;
9
9
  };
10
- export type ClimateType = keyof typeof CLIMATE;
11
- export type TemperatureRangeC = [min: number, max: number];
@@ -10,7 +10,6 @@ export declare const FERTILIZER_TYPE: {
10
10
  ABONO_COMPLETO: string;
11
11
  NINGUNO: string;
12
12
  };
13
- export type FertilizerType = keyof typeof FERTILIZER_TYPE;
14
13
  export declare const FERTILIZER_FREQ: {
15
14
  SEMANAL: string;
16
15
  CADA_15_DÍAS: string;
@@ -21,7 +20,6 @@ export declare const FERTILIZER_FREQ: {
21
20
  OCASIONAL: string;
22
21
  NINGUNA: string;
23
22
  };
24
- export type FertilizerFrequency = keyof typeof FERTILIZER_FREQ;
25
23
  export declare const FERTILIZER_METHOD: {
26
24
  EN_EL_RIEGO: string;
27
25
  DIRECTO_EN_SUSTRATO: string;
@@ -31,4 +29,3 @@ export declare const FERTILIZER_METHOD: {
31
29
  HIDROPONÍA: string;
32
30
  NO_APLICA: string;
33
31
  };
34
- export type FertilizerMethod = keyof typeof FERTILIZER_METHOD;
@@ -7,4 +7,3 @@ export declare const GROWTH_CLASS: {
7
7
  TREPADORA_RÁPIDA: string;
8
8
  ESTOLONIFERA_EXPANSIVA: string;
9
9
  };
10
- export type GrowthClass = keyof typeof GROWTH_CLASS;
@@ -7,7 +7,6 @@ export declare const GROWTH_AREA: {
7
7
  ACUÁTICA: string;
8
8
  TERRARIO: string;
9
9
  };
10
- export type PlantGrowthArea = keyof typeof GROWTH_AREA;
11
10
  export declare const GROWTH_HABIT: {
12
11
  ERGIDA: string;
13
12
  TREPADORA: string;
@@ -29,4 +28,3 @@ export declare const GROWTH_HABIT: {
29
28
  MUSGO: string;
30
29
  MINI_HELECHO: string;
31
30
  };
32
- export type PlantGrowthHabit = keyof typeof GROWTH_HABIT;
@@ -6,4 +6,3 @@ export declare const HUMIDITY: {
6
6
  HUMEDO_CONSTANTE: string;
7
7
  ACUATICO: string;
8
8
  };
9
- export type HumidityRequirement = keyof typeof HUMIDITY;
@@ -6,4 +6,3 @@ export declare const LIGHT: {
6
6
  SOL_PARCIAL: string;
7
7
  SOL_PLENO: string;
8
8
  };
9
- export type LightRequirement = keyof typeof LIGHT;
@@ -6,7 +6,6 @@ export declare const PLANT_PART: {
6
6
  FRUTOS: string;
7
7
  TODA_LA_PLANTA: string;
8
8
  };
9
- export type PlantPart = keyof typeof PLANT_PART;
10
9
  export declare const CONTROL_METHOD: {
11
10
  JABÓN_POTÁSICO: string;
12
11
  ACEITE_DE_NEEM: string;
@@ -19,7 +18,6 @@ export declare const CONTROL_METHOD: {
19
18
  CONTROL_BIOLÓGICO: string;
20
19
  OTRO: string;
21
20
  };
22
- export type ControlMethod = keyof typeof CONTROL_METHOD;
23
21
  export declare const PEST_TYPE: {
24
22
  INSECTO: string;
25
23
  HONGO: string;
@@ -29,4 +27,3 @@ export declare const PEST_TYPE: {
29
27
  NEMATODO: string;
30
28
  OTRO: string;
31
29
  };
32
- export type PestType = keyof typeof PEST_TYPE;
@@ -8,4 +8,3 @@ export declare const GROWTH_HABIT_GEOM: {
8
8
  ARBUSTIVA: string;
9
9
  ARBOREA: string;
10
10
  };
11
- export type GrowthHabit = keyof typeof GROWTH_HABIT_GEOM;
@@ -11,4 +11,3 @@ export declare const PROPAGATION: {
11
11
  HIJUELOS: string;
12
12
  NO_APLICA: string;
13
13
  };
14
- export type PropagationMethod = keyof typeof PROPAGATION;
@@ -14,4 +14,3 @@ export declare const SUBSTRATE: {
14
14
  TURBA: string;
15
15
  COMPOST_HOJARASCA: string;
16
16
  };
17
- export type SubstrateType = keyof typeof SUBSTRATE;
@@ -11,3 +11,4 @@ export * from './SubstrateInfo';
11
11
  export * from './ClimateIdeal';
12
12
  export * from './FertilizationInfo';
13
13
  export * from './PropagationMethodInfo';
14
+ export * from './catalogs';
@@ -27,3 +27,4 @@ __exportStar(require("./SubstrateInfo"), exports);
27
27
  __exportStar(require("./ClimateIdeal"), exports);
28
28
  __exportStar(require("./FertilizationInfo"), exports);
29
29
  __exportStar(require("./PropagationMethodInfo"), exports);
30
+ __exportStar(require("./catalogs"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proflores-db-model",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Data model for managing expenses and transactions for Proflores nursery business",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,6 +11,3 @@ export const CLIMATE = makeCatalog({
11
11
  UNIVERSAL: 'Amplio rango 5–35 °C.',
12
12
  });
13
13
 
14
- export type ClimateType = keyof typeof CLIMATE;
15
-
16
- export type TemperatureRangeC = [min: number, max: number];
@@ -13,7 +13,6 @@ export const FERTILIZER_TYPE = makeCatalog({
13
13
  NINGUNO: 'No se fertiliza regularmente.',
14
14
  });
15
15
 
16
- export type FertilizerType = keyof typeof FERTILIZER_TYPE;
17
16
 
18
17
  export const FERTILIZER_FREQ = makeCatalog({
19
18
  SEMANAL: 'Cada semana.',
@@ -26,7 +25,6 @@ export const FERTILIZER_FREQ = makeCatalog({
26
25
  NINGUNA: 'Nunca.',
27
26
  });
28
27
 
29
- export type FertilizerFrequency = keyof typeof FERTILIZER_FREQ;
30
28
 
31
29
  export const FERTILIZER_METHOD = makeCatalog({
32
30
  EN_EL_RIEGO: 'Disuelto en riego.',
@@ -38,4 +36,3 @@ export const FERTILIZER_METHOD = makeCatalog({
38
36
  NO_APLICA: 'No corresponde.',
39
37
  });
40
38
 
41
- export type FertilizerMethod = keyof typeof FERTILIZER_METHOD;
@@ -11,4 +11,3 @@ export const GROWTH_CLASS = makeCatalog({
11
11
  ESTOLONIFERA_EXPANSIVA: 'Expansión horizontal veloz.',
12
12
  });
13
13
 
14
- export type GrowthClass = keyof typeof GROWTH_CLASS;
@@ -11,7 +11,6 @@ export const GROWTH_AREA = makeCatalog({
11
11
  ACUÁTICA: 'Raíces en agua o sustrato inundado.',
12
12
  TERRARIO: 'Recinto cerrado, humedad muy alta.',
13
13
  });
14
- export type PlantGrowthArea = keyof typeof GROWTH_AREA;
15
14
 
16
15
  export const GROWTH_HABIT = makeCatalog({
17
16
  ERGIDA: 'Porte vertical.',
@@ -34,4 +33,3 @@ export const GROWTH_HABIT = makeCatalog({
34
33
  MUSGO: 'Briofita sin raíces.',
35
34
  MINI_HELECHO: 'Helecho pequeño.',
36
35
  });
37
- export type PlantGrowthHabit = keyof typeof GROWTH_HABIT;
@@ -9,4 +9,3 @@ export const HUMIDITY = makeCatalog({
9
9
  ACUATICO: 'Raíces permanentemente sumergidas.',
10
10
  });
11
11
 
12
- export type HumidityRequirement = keyof typeof HUMIDITY;
@@ -10,4 +10,3 @@ export const LIGHT = makeCatalog({
10
10
  SOL_PLENO: 'Sol >6 h; >30 klux.',
11
11
  });
12
12
 
13
- export type LightRequirement = keyof typeof LIGHT;
@@ -8,7 +8,6 @@ export const PLANT_PART = makeCatalog({
8
8
  FRUTOS: 'Frutos.',
9
9
  TODA_LA_PLANTA: 'Daño sistémico.',
10
10
  });
11
- export type PlantPart = keyof typeof PLANT_PART;
12
11
 
13
12
  export const CONTROL_METHOD = makeCatalog({
14
13
  JABÓN_POTÁSICO: 'Insecticida suave.',
@@ -22,7 +21,6 @@ export const CONTROL_METHOD = makeCatalog({
22
21
  CONTROL_BIOLÓGICO: 'Depredadores benéficos.',
23
22
  OTRO: 'Otro método.',
24
23
  });
25
- export type ControlMethod = keyof typeof CONTROL_METHOD;
26
24
 
27
25
  export const PEST_TYPE = makeCatalog({
28
26
  INSECTO: 'Insectos.',
@@ -33,4 +31,3 @@ export const PEST_TYPE = makeCatalog({
33
31
  NEMATODO: 'Nematodos.',
34
32
  OTRO: 'Otro.',
35
33
  });
36
- export type PestType = keyof typeof PEST_TYPE;
@@ -12,4 +12,3 @@ export const GROWTH_HABIT_GEOM = makeCatalog({
12
12
  ARBOREA: 'Tronco leñoso único.',
13
13
  });
14
14
 
15
- export type GrowthHabit = keyof typeof GROWTH_HABIT_GEOM;
@@ -15,4 +15,3 @@ export const PROPAGATION = makeCatalog({
15
15
  NO_APLICA: 'No aplicable.',
16
16
  });
17
17
 
18
- export type PropagationMethod = keyof typeof PROPAGATION;
@@ -18,4 +18,3 @@ export const SUBSTRATE = makeCatalog({
18
18
  COMPOST_HOJARASCA: 'Orgánico descompuesto.',
19
19
  });
20
20
 
21
- export type SubstrateType = keyof typeof SUBSTRATE;
@@ -13,3 +13,4 @@ export * from './FertilizationInfo';
13
13
  export * from './PropagationMethodInfo';
14
14
 
15
15
 
16
+ export * from './catalogs';