@zlooks.cn/event-server 1.0.2 → 1.0.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,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { fileURLToPath } from 'node:url';
3
3
  import { createRegistryDatabaseDataSource, registerDatabaseCommands } from '@zlooks.cn/database-command';
4
- import { runServiceCommand } from '@zlooks.cn/service-command';
4
+ import { reportServiceCommandFailure, runServiceCommand } from '@zlooks.cn/service-command';
5
5
  import { eventMigrations } from '../migrations/index.js';
6
6
  import { eventEntities } from '../persistence/entities.js';
7
7
  await runServiceCommand({
@@ -13,8 +13,5 @@ await runServiceCommand({
13
13
  }), migrations: eventMigrations,
14
14
  });
15
15
  },
16
- }).catch((error) => {
17
- process.stderr.write(`${error instanceof Error ? error.message : String(error)}\n`);
18
- process.exitCode = 1;
19
- });
16
+ }).catch(reportServiceCommandFailure);
20
17
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/command/index.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,gCAAgC,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AACzG,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAE3D,MAAM,iBAAiB,CAAC;IACtB,WAAW,EAAE,aAAa,CAAC,IAAI,GAAG,CAAC,QAAQ,EAAE,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,mBAAmB,EAAE,KAAK;IAC1F,SAAS,CAAC,OAAO;QACf,wBAAwB,CAAC,OAAO,EAAE;YAChC,gBAAgB,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,gCAAgC,CAAC,OAAO,EAAE;gBACvE,gBAAgB,EAAE,4BAA4B,EAAE,QAAQ,EAAE,CAAC,GAAG,aAAa,CAAC;aAC7E,CAAC,EAAE,UAAU,EAAE,eAAe;SAChC,CAAC,CAAC;IACL,CAAC;CACF,CAAC,CAAC,KAAK,CAAC,CAAC,KAAc,EAAE,EAAE;IAC1B,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IACpF,OAAO,CAAC,QAAQ,GAAG,CAAC,CAAC;AACvB,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/command/index.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,gCAAgC,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AACzG,OAAO,EAAE,2BAA2B,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC5F,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAE3D,MAAM,iBAAiB,CAAC;IACtB,WAAW,EAAE,aAAa,CAAC,IAAI,GAAG,CAAC,QAAQ,EAAE,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,mBAAmB,EAAE,KAAK;IAC1F,SAAS,CAAC,OAAO;QACf,wBAAwB,CAAC,OAAO,EAAE;YAChC,gBAAgB,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,gCAAgC,CAAC,OAAO,EAAE;gBACvE,gBAAgB,EAAE,4BAA4B,EAAE,QAAQ,EAAE,CAAC,GAAG,aAAa,CAAC;aAC7E,CAAC,EAAE,UAAU,EAAE,eAAe;SAChC,CAAC,CAAC;IACL,CAAC;CACF,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC"}
@@ -24,8 +24,8 @@ export declare class EventCenterStore {
24
24
  leaseToken: string;
25
25
  attempts: number;
26
26
  event: Readonly<{
27
- protocol: 'zlooks.event';
28
- protocolVersion: 1;
27
+ protocol: typeof import("@zlooks.cn/event-bus").EVENT_PROTOCOL;
28
+ protocolVersion: typeof import("@zlooks.cn/event-bus").EVENT_PROTOCOL_VERSION;
29
29
  eventId: string;
30
30
  type: string;
31
31
  producer: string;
@@ -1,10 +1,5 @@
1
- import { defineMicroMessage } from '@hile/micro';
2
- import { loadModel } from '@hile/model';
3
1
  import { ackRequestSchema } from '@zlooks.cn/event-client';
4
2
  import ackDeliveryModel from '../../models/ack-delivery.model.js';
5
- export default defineMicroMessage(async ({ data, invocation }) => {
6
- invocation.signal.throwIfAborted();
7
- const request = ackRequestSchema.parse(data);
8
- return loadModel(ackDeliveryModel, request, invocation);
9
- });
3
+ import { defineEventModelMessage } from '../model-message.js';
4
+ export default defineEventModelMessage(ackRequestSchema, ackDeliveryModel);
10
5
  //# sourceMappingURL=ack.msg.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ack.msg.js","sourceRoot":"","sources":["../../../src/messages/deliveries/ack.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,gBAAgB,MAAM,oCAAoC,CAAC;AAElE,eAAe,kBAAkB,CAAU,KAAK,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE;IACxE,UAAU,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC;IACnC,MAAM,OAAO,GAAG,gBAAgB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAC7C,OAAO,SAAS,CAAC,gBAAgB,EAAE,OAAO,EAAE,UAAU,CAAC,CAAC;AAC1D,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"ack.msg.js","sourceRoot":"","sources":["../../../src/messages/deliveries/ack.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,gBAAgB,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,eAAe,uBAAuB,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,CAAC"}
@@ -1,10 +1,5 @@
1
- import { defineMicroMessage } from '@hile/micro';
2
- import { loadModel } from '@hile/model';
3
1
  import { claimRequestSchema } from '@zlooks.cn/event-client';
4
2
  import claimDeliveriesModel from '../../models/claim-deliveries.model.js';
5
- export default defineMicroMessage(async ({ data, invocation }) => {
6
- invocation.signal.throwIfAborted();
7
- const request = claimRequestSchema.parse(data);
8
- return loadModel(claimDeliveriesModel, request, invocation);
9
- });
3
+ import { defineEventModelMessage } from '../model-message.js';
4
+ export default defineEventModelMessage(claimRequestSchema, claimDeliveriesModel);
10
5
  //# sourceMappingURL=claim.msg.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"claim.msg.js","sourceRoot":"","sources":["../../../src/messages/deliveries/claim.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,oBAAoB,MAAM,wCAAwC,CAAC;AAE1E,eAAe,kBAAkB,CAAU,KAAK,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE;IACxE,UAAU,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC;IACnC,MAAM,OAAO,GAAG,kBAAkB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAC/C,OAAO,SAAS,CAAC,oBAAoB,EAAE,OAAO,EAAE,UAAU,CAAC,CAAC;AAC9D,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"claim.msg.js","sourceRoot":"","sources":["../../../src/messages/deliveries/claim.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,oBAAoB,MAAM,wCAAwC,CAAC;AAC1E,OAAO,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,eAAe,uBAAuB,CAAC,kBAAkB,EAAE,oBAAoB,CAAC,CAAC"}
@@ -1,10 +1,5 @@
1
- import { defineMicroMessage } from '@hile/micro';
2
- import { loadModel } from '@hile/model';
3
1
  import { failRequestSchema } from '@zlooks.cn/event-client';
4
2
  import failDeliveryModel from '../../models/fail-delivery.model.js';
5
- export default defineMicroMessage(async ({ data, invocation }) => {
6
- invocation.signal.throwIfAborted();
7
- const request = failRequestSchema.parse(data);
8
- return loadModel(failDeliveryModel, request, invocation);
9
- });
3
+ import { defineEventModelMessage } from '../model-message.js';
4
+ export default defineEventModelMessage(failRequestSchema, failDeliveryModel);
10
5
  //# sourceMappingURL=fail.msg.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"fail.msg.js","sourceRoot":"","sources":["../../../src/messages/deliveries/fail.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,iBAAiB,MAAM,qCAAqC,CAAC;AAEpE,eAAe,kBAAkB,CAAU,KAAK,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE;IACxE,UAAU,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC;IACnC,MAAM,OAAO,GAAG,iBAAiB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAC9C,OAAO,SAAS,CAAC,iBAAiB,EAAE,OAAO,EAAE,UAAU,CAAC,CAAC;AAC3D,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"fail.msg.js","sourceRoot":"","sources":["../../../src/messages/deliveries/fail.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,iBAAiB,MAAM,qCAAqC,CAAC;AACpE,OAAO,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,eAAe,uBAAuB,CAAC,iBAAiB,EAAE,iBAAiB,CAAC,CAAC"}
@@ -1,10 +1,5 @@
1
- import { defineMicroMessage } from '@hile/micro';
2
- import { loadModel } from '@hile/model';
3
1
  import { renewRequestSchema } from '@zlooks.cn/event-client';
4
2
  import renewDeliveryModel from '../../models/renew-delivery.model.js';
5
- export default defineMicroMessage(async ({ data, invocation }) => {
6
- invocation.signal.throwIfAborted();
7
- const request = renewRequestSchema.parse(data);
8
- return loadModel(renewDeliveryModel, request, invocation);
9
- });
3
+ import { defineEventModelMessage } from '../model-message.js';
4
+ export default defineEventModelMessage(renewRequestSchema, renewDeliveryModel);
10
5
  //# sourceMappingURL=renew.msg.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"renew.msg.js","sourceRoot":"","sources":["../../../src/messages/deliveries/renew.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,kBAAkB,MAAM,sCAAsC,CAAC;AAEtE,eAAe,kBAAkB,CAAU,KAAK,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE;IACxE,UAAU,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC;IACnC,MAAM,OAAO,GAAG,kBAAkB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAC/C,OAAO,SAAS,CAAC,kBAAkB,EAAE,OAAO,EAAE,UAAU,CAAC,CAAC;AAC5D,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"renew.msg.js","sourceRoot":"","sources":["../../../src/messages/deliveries/renew.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,kBAAkB,MAAM,sCAAsC,CAAC;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,eAAe,uBAAuB,CAAC,kBAAkB,EAAE,kBAAkB,CAAC,CAAC"}
@@ -1,10 +1,5 @@
1
- import { defineMicroMessage } from '@hile/micro';
2
- import { loadModel } from '@hile/model';
3
1
  import { publishRequestSchema } from '@zlooks.cn/event-client';
4
2
  import publishEventModel from '../../models/publish-event.model.js';
5
- export default defineMicroMessage(async ({ data, invocation }) => {
6
- invocation.signal.throwIfAborted();
7
- const request = publishRequestSchema.parse(data);
8
- return loadModel(publishEventModel, request, invocation);
9
- });
3
+ import { defineEventModelMessage } from '../model-message.js';
4
+ export default defineEventModelMessage(publishRequestSchema, publishEventModel);
10
5
  //# sourceMappingURL=publish.msg.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"publish.msg.js","sourceRoot":"","sources":["../../../src/messages/events/publish.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAC/D,OAAO,iBAAiB,MAAM,qCAAqC,CAAC;AAEpE,eAAe,kBAAkB,CAAU,KAAK,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE;IACxE,UAAU,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC;IACnC,MAAM,OAAO,GAAG,oBAAoB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IACjD,OAAO,SAAS,CAAC,iBAAiB,EAAE,OAAO,EAAE,UAAU,CAAC,CAAC;AAC3D,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"publish.msg.js","sourceRoot":"","sources":["../../../src/messages/events/publish.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAC/D,OAAO,iBAAiB,MAAM,qCAAqC,CAAC;AACpE,OAAO,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,eAAe,uBAAuB,CAAC,oBAAoB,EAAE,iBAAiB,CAAC,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { type ModelDefinition } from '@hile/model';
2
+ interface Parser<T> {
3
+ parse(input: unknown): T;
4
+ }
5
+ export declare function defineEventModelMessage<TInput extends object, TResult>(schema: Parser<TInput>, model: ModelDefinition<TInput, TResult>): import("@hile/message-loader").MessageRegisterProps<unknown, import("@hile/micro").MicroMessageHandlerExtras>;
6
+ export {};
7
+ //# sourceMappingURL=model-message.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"model-message.d.ts","sourceRoot":"","sources":["../../src/messages/model-message.ts"],"names":[],"mappings":"AACA,OAAO,EAAa,KAAK,eAAe,EAAE,MAAM,aAAa,CAAC;AAE9D,UAAU,MAAM,CAAC,CAAC;IAChB,KAAK,CAAC,KAAK,EAAE,OAAO,GAAG,CAAC,CAAC;CAC1B;AAED,wBAAgB,uBAAuB,CAAC,MAAM,SAAS,MAAM,EAAE,OAAO,EACpE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,EACtB,KAAK,EAAE,eAAe,CAAC,MAAM,EAAE,OAAO,CAAC,iHAMxC"}
@@ -0,0 +1,9 @@
1
+ import { defineMicroMessage } from '@hile/micro';
2
+ import { loadModel } from '@hile/model';
3
+ export function defineEventModelMessage(schema, model) {
4
+ return defineMicroMessage(async ({ data, invocation }) => {
5
+ invocation.signal.throwIfAborted();
6
+ return loadModel(model, schema.parse(data), invocation);
7
+ });
8
+ }
9
+ //# sourceMappingURL=model-message.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"model-message.js","sourceRoot":"","sources":["../../src/messages/model-message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,SAAS,EAAwB,MAAM,aAAa,CAAC;AAM9D,MAAM,UAAU,uBAAuB,CACrC,MAAsB,EACtB,KAAuC;IAEvC,OAAO,kBAAkB,CAAU,KAAK,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE;QAChE,UAAU,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC;QACnC,OAAO,SAAS,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,UAAU,CAAC,CAAC;IAC1D,CAAC,CAAC,CAAC;AACL,CAAC"}
@@ -1,10 +1,5 @@
1
- import { defineMicroMessage } from '@hile/micro';
2
- import { loadModel } from '@hile/model';
3
1
  import { ensureSubscriptionRequestSchema } from '@zlooks.cn/event-client';
4
2
  import ensureSubscriptionModel from '../../models/ensure-subscription.model.js';
5
- export default defineMicroMessage(async ({ data, invocation }) => {
6
- invocation.signal.throwIfAborted();
7
- const request = ensureSubscriptionRequestSchema.parse(data);
8
- return loadModel(ensureSubscriptionModel, request, invocation);
9
- });
3
+ import { defineEventModelMessage } from '../model-message.js';
4
+ export default defineEventModelMessage(ensureSubscriptionRequestSchema, ensureSubscriptionModel);
10
5
  //# sourceMappingURL=ensure.msg.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ensure.msg.js","sourceRoot":"","sources":["../../../src/messages/subscriptions/ensure.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,+BAA+B,EAAE,MAAM,yBAAyB,CAAC;AAC1E,OAAO,uBAAuB,MAAM,2CAA2C,CAAC;AAEhF,eAAe,kBAAkB,CAAU,KAAK,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE;IACxE,UAAU,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC;IACnC,MAAM,OAAO,GAAG,+BAA+B,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAC5D,OAAO,SAAS,CAAC,uBAAuB,EAAE,OAAO,EAAE,UAAU,CAAC,CAAC;AACjE,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"ensure.msg.js","sourceRoot":"","sources":["../../../src/messages/subscriptions/ensure.msg.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,+BAA+B,EAAE,MAAM,yBAAyB,CAAC;AAC1E,OAAO,uBAAuB,MAAM,2CAA2C,CAAC;AAChF,OAAO,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,eAAe,uBAAuB,CAAC,+BAA+B,EAAE,uBAAuB,CAAC,CAAC"}
@@ -10,8 +10,8 @@ declare const _default: import("@hile/model").ModelDefinition<Readonly<{
10
10
  leaseToken: string;
11
11
  attempts: number;
12
12
  event: Readonly<{
13
- protocol: 'zlooks.event';
14
- protocolVersion: 1;
13
+ protocol: typeof import("@zlooks.cn/event-bus").EVENT_PROTOCOL;
14
+ protocolVersion: typeof import("@zlooks.cn/event-bus").EVENT_PROTOCOL_VERSION;
15
15
  eventId: string;
16
16
  type: string;
17
17
  producer: string;
@@ -1,7 +1,7 @@
1
1
  declare const _default: import("@hile/model").ModelDefinition<{
2
2
  event: Readonly<{
3
- protocol: 'zlooks.event';
4
- protocolVersion: 1;
3
+ protocol: typeof import("@zlooks.cn/event-bus").EVENT_PROTOCOL;
4
+ protocolVersion: typeof import("@zlooks.cn/event-bus").EVENT_PROTOCOL_VERSION;
5
5
  eventId: string;
6
6
  type: string;
7
7
  producer: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zlooks.cn/event-server",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "engines": {
@@ -33,27 +33,27 @@
33
33
  "dependencies": {
34
34
  "@hile/context": "4.0.3",
35
35
  "@hile/core": "4.0.2",
36
- "@hile/message-loader": "4.0.6",
37
- "@hile/micro": "4.0.6",
36
+ "@hile/message-loader": "4.0.7",
37
+ "@hile/micro": "4.0.7",
38
38
  "@hile/model": "4.0.4",
39
39
  "@hile/typeorm": "4.0.2",
40
- "@zlooks.cn/database-command": "1.0.3",
41
- "@zlooks.cn/event-bus": "1.0.2",
42
- "@zlooks.cn/event-client": "1.0.2",
40
+ "@zlooks.cn/database-command": "1.0.4",
41
+ "@zlooks.cn/event-bus": "1.0.3",
42
+ "@zlooks.cn/event-client": "1.0.3",
43
43
  "@zlooks.cn/infrastructure": "1.0.0",
44
44
  "@zlooks.cn/registry-config": "1.0.1",
45
- "@zlooks.cn/service-command": "1.0.1",
45
+ "@zlooks.cn/service-command": "1.0.2",
46
46
  "detect-port": "2.1.0",
47
47
  "pg": "8.23.0",
48
48
  "typeorm": "1.1.0"
49
49
  },
50
50
  "devDependencies": {
51
- "@hile/cli": "4.0.7",
51
+ "@hile/cli": "4.0.8",
52
52
  "@types/node": "26.2.0",
53
53
  "fix-esm-import-path": "1.10.3",
54
54
  "pg-mem": "3.0.14",
55
55
  "typescript": "7.0.2",
56
56
  "vitest": "4.1.11"
57
57
  },
58
- "gitHead": "3c7e3ec494a3702626a2b150991b136b89550e35"
58
+ "gitHead": "93c1087350b97ab47fd9596c1e39da4ade741a49"
59
59
  }