atomservices 1.0.0-alpha.0 → 1.0.0-alpha.3

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.
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.UUIDIdentifier = void 0;
4
- const crypto_1 = require("crypto");
4
+ const UUID = require("uuid");
5
5
  exports.UUIDIdentifier = {
6
- AggregateID: () => (0, crypto_1.randomUUID)(),
7
- EventID: () => (0, crypto_1.randomUUID)(),
6
+ AggregateID: () => UUID.v4(),
7
+ EventID: () => UUID.v4(),
8
8
  };
9
9
  //# sourceMappingURL=UUIDIdentifier.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"UUIDIdentifier.js","sourceRoot":"","sources":["../../src/Identifiers/UUIDIdentifier.ts"],"names":[],"mappings":";;;AACA,mCAAoC;AAEvB,QAAA,cAAc,GAAgC;IACzD,WAAW,EAAE,GAAG,EAAE,CAAC,IAAA,mBAAU,GAAE;IAC/B,OAAO,EAAE,GAAG,EAAE,CAAC,IAAA,mBAAU,GAAE;CAC5B,CAAC"}
1
+ {"version":3,"file":"UUIDIdentifier.js","sourceRoot":"","sources":["../../src/Identifiers/UUIDIdentifier.ts"],"names":[],"mappings":";;;AACA,6BAA6B;AAEhB,QAAA,cAAc,GAAgC;IACzD,WAAW,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE;IAC5B,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE;CACzB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atomservices",
3
- "version": "1.0.0-alpha.0",
3
+ "version": "1.0.0-alpha.3",
4
4
  "description": "Providing Library Implementing Events Architecture",
5
5
  "main": "./lib/index.js",
6
6
  "typings": "./typings/index.d.ts",
@@ -28,14 +28,13 @@
28
28
  "author": "Architecode Corporation",
29
29
  "license": "MIT",
30
30
  "repository": "git+https://github.com/atomservicesjs/atom-repos",
31
- "engines": {
32
- "node": ">=15.6.0"
33
- },
34
31
  "dependencies": {
35
- "atomservicescore": "1.0.0-alpha.0"
32
+ "atomservicescore": "1.0.0-alpha.3",
33
+ "uuid": "8.3.2"
36
34
  },
37
35
  "devDependencies": {
38
- "archdevts": "21.12.1"
36
+ "@types/uuid": "8.3.4",
37
+ "archdevts": "22.4.1"
39
38
  },
40
- "gitHead": "8644ecd6bcee1afd272082b614b9afed8de4c043"
39
+ "gitHead": "5e904611b782cf1768034d896dcd5d0551db9b30"
41
40
  }