@aneuhold/core-ts-lib 1.1.3 → 1.1.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/lib/index.d.ts CHANGED
@@ -3,8 +3,9 @@ import sleep from './helperFunctions/sleep';
3
3
  import DependencyService from './services/DependencyService';
4
4
  import DOFunctionService, { DOFunction } from './services/DOFunctionService/DOFunctionService';
5
5
  import { DOAuthCheckPasswordInput, DOAuthCheckPasswordOutput, DOAuthCheckPasswordRawOutput } from './services/DOFunctionService/functionsInfo/authCheckPassword';
6
+ import FileSystemService from './services/FileSystemService/FileSystemService';
6
7
  import StringService from './services/StringService';
7
8
  import Logger from './utils/Logger';
8
- export { datesAreOnSameDay, DependencyService, DOFunctionService, Logger, sleep, StringService };
9
+ export { datesAreOnSameDay, DependencyService, DOFunctionService, FileSystemService, Logger, sleep, StringService };
9
10
  export type { DOAuthCheckPasswordInput, DOAuthCheckPasswordOutput, DOAuthCheckPasswordRawOutput, DOFunction };
10
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,MAAM,iCAAiC,CAAC;AAChE,OAAO,KAAK,MAAM,yBAAyB,CAAC;AAC5C,OAAO,iBAAiB,MAAM,8BAA8B,CAAC;AAC7D,OAAO,iBAAiB,EAAE,EACxB,UAAU,EACX,MAAM,gDAAgD,CAAC;AACxD,OAAO,EACL,wBAAwB,EACxB,yBAAyB,EACzB,4BAA4B,EAC7B,MAAM,8DAA8D,CAAC;AACtE,OAAO,aAAa,MAAM,0BAA0B,CAAC;AACrD,OAAO,MAAM,MAAM,gBAAgB,CAAC;AAGpC,OAAO,EACL,iBAAiB,EACjB,iBAAiB,EACjB,iBAAiB,EACjB,MAAM,EACN,KAAK,EACL,aAAa,EACd,CAAC;AAGF,YAAY,EACV,wBAAwB,EACxB,yBAAyB,EACzB,4BAA4B,EAC5B,UAAU,EACX,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,MAAM,iCAAiC,CAAC;AAChE,OAAO,KAAK,MAAM,yBAAyB,CAAC;AAC5C,OAAO,iBAAiB,MAAM,8BAA8B,CAAC;AAC7D,OAAO,iBAAiB,EAAE,EACxB,UAAU,EACX,MAAM,gDAAgD,CAAC;AACxD,OAAO,EACL,wBAAwB,EACxB,yBAAyB,EACzB,4BAA4B,EAC7B,MAAM,8DAA8D,CAAC;AACtE,OAAO,iBAAiB,MAAM,gDAAgD,CAAC;AAC/E,OAAO,aAAa,MAAM,0BAA0B,CAAC;AACrD,OAAO,MAAM,MAAM,gBAAgB,CAAC;AAGpC,OAAO,EACL,iBAAiB,EACjB,iBAAiB,EACjB,iBAAiB,EACjB,iBAAiB,EACjB,MAAM,EACN,KAAK,EACL,aAAa,EACd,CAAC;AAGF,YAAY,EACV,wBAAwB,EACxB,yBAAyB,EACzB,4BAA4B,EAC5B,UAAU,EACX,CAAC"}
package/lib/index.js CHANGED
@@ -3,7 +3,7 @@ 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.StringService = exports.sleep = exports.Logger = exports.DOFunctionService = exports.DependencyService = exports.datesAreOnSameDay = void 0;
6
+ exports.StringService = exports.sleep = exports.Logger = exports.FileSystemService = exports.DOFunctionService = exports.DependencyService = exports.datesAreOnSameDay = void 0;
7
7
  const dateFunctions_1 = __importDefault(require("./helperFunctions/dateFunctions"));
8
8
  exports.datesAreOnSameDay = dateFunctions_1.default;
9
9
  const sleep_1 = __importDefault(require("./helperFunctions/sleep"));
@@ -12,6 +12,8 @@ const DependencyService_1 = __importDefault(require("./services/DependencyServic
12
12
  exports.DependencyService = DependencyService_1.default;
13
13
  const DOFunctionService_1 = __importDefault(require("./services/DOFunctionService/DOFunctionService"));
14
14
  exports.DOFunctionService = DOFunctionService_1.default;
15
+ const FileSystemService_1 = __importDefault(require("./services/FileSystemService/FileSystemService"));
16
+ exports.FileSystemService = FileSystemService_1.default;
15
17
  const StringService_1 = __importDefault(require("./services/StringService"));
16
18
  exports.StringService = StringService_1.default;
17
19
  const Logger_1 = __importDefault(require("./utils/Logger"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aneuhold/core-ts-lib",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "A core library for all of my TypeScript projects",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",