bdpformulas 1.0.15 → 1.0.17

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/build/index.d.ts CHANGED
@@ -2,9 +2,11 @@ import Auxiliar from './strategies/pecuary/anexo.strategy';
2
2
  import Desarrollo from './strategies/pecuary/desarrollo.strategy';
3
3
  import VentasPec from "./strategies/pecuary/ventas.strategy";
4
4
  import Context from "./context";
5
+ import CostosPec from "./strategies/pecuary/costos.strategy";
5
6
  declare const Pecuario: {
6
7
  Auxiliar: typeof Auxiliar;
7
8
  Desarrollo: typeof Desarrollo;
8
9
  VentasPec: typeof VentasPec;
10
+ CostosPec: typeof CostosPec;
9
11
  };
10
12
  export { Context, Pecuario };
package/build/index.js CHANGED
@@ -9,9 +9,11 @@ const desarrollo_strategy_1 = __importDefault(require("./strategies/pecuary/desa
9
9
  const ventas_strategy_1 = __importDefault(require("./strategies/pecuary/ventas.strategy"));
10
10
  const context_1 = __importDefault(require("./context"));
11
11
  exports.Context = context_1.default;
12
+ const costos_strategy_1 = __importDefault(require("./strategies/pecuary/costos.strategy"));
12
13
  const Pecuario = {
13
14
  Auxiliar: anexo_strategy_1.default,
14
15
  Desarrollo: desarrollo_strategy_1.default,
15
- VentasPec: ventas_strategy_1.default
16
+ VentasPec: ventas_strategy_1.default,
17
+ CostosPec: costos_strategy_1.default
16
18
  };
17
19
  exports.Pecuario = Pecuario;