c2-mongoose 2.1.108 → 2.1.109

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 CHANGED
@@ -1,4 +1,7 @@
1
+ import C2Flow from "./flow/C2Flow";
1
2
  import CrudFlow from "./flow/CrudFlow";
2
3
  import SearchFlow from "./flow/SearchFlow";
4
+ import { ILogger } from "./model/Logger";
5
+ import { Options } from "./types/Options";
3
6
  import { Pagination, SearchResponse } from "./types/SearchResponse";
4
- export { CrudFlow, SearchFlow, SearchResponse, Pagination };
7
+ export { CrudFlow, C2Flow, Options, ILogger, SearchFlow, SearchResponse, Pagination };
package/dist/index.js CHANGED
@@ -3,7 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.SearchFlow = exports.CrudFlow = void 0;
6
+ exports.SearchFlow = exports.C2Flow = exports.CrudFlow = void 0;
7
+ var C2Flow_1 = __importDefault(require("./flow/C2Flow"));
8
+ exports.C2Flow = C2Flow_1.default;
7
9
  var CrudFlow_1 = __importDefault(require("./flow/CrudFlow"));
8
10
  exports.CrudFlow = CrudFlow_1.default;
9
11
  var SearchFlow_1 = __importDefault(require("./flow/SearchFlow"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-mongoose",
3
- "version": "2.1.108",
3
+ "version": "2.1.109",
4
4
  "description": "Lib to make any search in database mongoose and use as basic crud",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -1,5 +1,8 @@
1
+ import C2Flow from "./flow/C2Flow"
1
2
  import CrudFlow from "./flow/CrudFlow"
2
3
  import SearchFlow from "./flow/SearchFlow"
4
+ import { ILogger } from "./model/Logger"
5
+ import { Options } from "./types/Options"
3
6
  import { Pagination, SearchResponse } from "./types/SearchResponse"
4
7
 
5
- export { CrudFlow, SearchFlow, SearchResponse, Pagination }
8
+ export { CrudFlow, C2Flow, Options, ILogger, SearchFlow, SearchResponse, Pagination }