@velony/contracts 3.0.0 → 3.0.2

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,4 +1,3 @@
1
- declare const INTEGRATION_EVENT_BRAND: unique symbol;
2
1
  /**
3
2
  * Registry that maps integration event types to their payload types.
4
3
  * Extend this interface to register new integration event types.
@@ -16,7 +15,6 @@ export interface IntegrationEventRegistry {
16
15
  * @template TType - The type identifier for the event (must be registered in IntegrationEventRegistry)
17
16
  */
18
17
  export type IntegrationEvent<TType extends keyof IntegrationEventRegistry> = {
19
- readonly [INTEGRATION_EVENT_BRAND]: void;
20
18
  /**
21
19
  * Unique identifier for this event instance.
22
20
  * @readonly
@@ -64,4 +62,3 @@ export type IntegrationEvent<TType extends keyof IntegrationEventRegistry> = {
64
62
  * Useful for type-safe collections and handlers that work with multiple integration event types.
65
63
  */
66
64
  export type AnyIntegrationEvent = IntegrationEvent<keyof IntegrationEventRegistry>;
67
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@velony/contracts",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "TypeScript contracts library providing integration event interfaces for event-driven architecture",
5
5
  "keywords": [
6
6
  "contracts",