@anatix/runtime 1.0.11 → 1.0.12

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,6 +1,8 @@
1
1
  export * from './types';
2
2
  export * from './repositories';
3
3
  export * from './services';
4
+ export { InboxSchema, type InboxEntity } from './schemas/inbox.schema';
5
+ export { OutboxSchema, type OutboxEntity } from './schemas/outbox.schema';
4
6
  export * from './helpers';
5
7
  export * from './envelope.config';
6
8
  export * from './tx-manager';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/envelope/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/envelope/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,KAAK,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACvE,OAAO,EAAE,YAAY,EAAE,KAAK,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC1E,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC"}
@@ -14,9 +14,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.OutboxSchema = exports.InboxSchema = void 0;
17
18
  __exportStar(require("./types"), exports);
18
19
  __exportStar(require("./repositories"), exports);
19
20
  __exportStar(require("./services"), exports);
21
+ var inbox_schema_1 = require("./schemas/inbox.schema");
22
+ Object.defineProperty(exports, "InboxSchema", { enumerable: true, get: function () { return inbox_schema_1.InboxSchema; } });
23
+ var outbox_schema_1 = require("./schemas/outbox.schema");
24
+ Object.defineProperty(exports, "OutboxSchema", { enumerable: true, get: function () { return outbox_schema_1.OutboxSchema; } });
20
25
  __exportStar(require("./helpers"), exports);
21
26
  __exportStar(require("./envelope.config"), exports);
22
27
  __exportStar(require("./tx-manager"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/envelope/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB;AACxB,iDAA+B;AAC/B,6CAA2B;AAC3B,4CAA0B;AAC1B,oDAAkC;AAClC,+CAA6B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/envelope/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,0CAAwB;AACxB,iDAA+B;AAC/B,6CAA2B;AAC3B,uDAAuE;AAA9D,2GAAA,WAAW,OAAA;AACpB,yDAA0E;AAAjE,6GAAA,YAAY,OAAA;AACrB,4CAA0B;AAC1B,oDAAkC;AAClC,+CAA6B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anatix/runtime",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Runtime infrastructure for Anatix-generated microservices",
5
5
  "author": "Anatix Team",
6
6
  "license": "MIT",