archstone 1.2.0 → 1.2.1

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,267 +1,3 @@
1
- /**
2
- * Represents a unique identifier for a domain entity.
3
- *
4
- * Wraps a UUID v7 string, which is time-sortable and ideal for database
5
- * indexing. A new identifier is generated automatically if no value is provided.
6
- *
7
- * @example
8
- * ```ts
9
- * // auto-generated
10
- * const id = new UniqueEntityId()
11
- *
12
- * // from existing value (e.g. reconstructing from database)
13
- * const id = new UniqueEntityId("0195d810-5b3e-7000-8e3e-1a2b3c4d5e6f")
14
- * ```
15
- */
16
- declare class UniqueEntityId {
17
- private readonly value;
18
- constructor(value?: string);
19
- /**
20
- * Returns the identifier as a primitive string.
21
- * Useful for serialization and database persistence.
22
- */
23
- toValue(): string;
24
- /**
25
- * Returns the string representation of the identifier.
26
- */
27
- toString(): string;
28
- /**
29
- * Compares this identifier with another by value equality.
30
- *
31
- * @param id - The identifier to compare against
32
- * @returns `true` if both identifiers have the same value
33
- */
34
- equals(id: UniqueEntityId): boolean;
35
- }
36
- /**
37
- * Base contract for all domain events.
38
- *
39
- * A domain event represents something meaningful that happened in the domain.
40
- * Events are raised by aggregate roots and dispatched after successful persistence,
41
- * enabling decoupled side effects such as notifications, projections, and integrations.
42
- *
43
- * @example
44
- * ```ts
45
- * class UserCreatedEvent implements DomainEvent {
46
- * occurredAt = new Date()
47
- *
48
- * constructor(private readonly user: User) {}
49
- *
50
- * getAggregateId(): UniqueEntityId {
51
- * return this.user.id
52
- * }
53
- * }
54
- * ```
55
- */
56
- interface DomainEvent {
57
- /**
58
- * Returns the identifier of the aggregate root that raised this event.
59
- */
60
- getAggregateId(): UniqueEntityId;
61
- /**
62
- * The date and time when the event occurred.
63
- */
64
- occurredAt: Date;
65
- }
66
- /**
67
- * Callback function invoked when a domain event is dispatched.
68
- */
69
- type DomainEventCallback = (event: DomainEvent) => void;
70
- /**
71
- * Central registry and dispatcher for domain events.
72
- *
73
- * Aggregates register themselves for dispatch after raising events.
74
- * The infrastructure layer is responsible for calling {@link dispatchEventsForAggregate}
75
- * after successfully persisting an aggregate, ensuring events are only
76
- * dispatched after a successful transaction.
77
- *
78
- * @example
79
- * ```ts
80
- * // register a handler
81
- * DomainEvents.register(
82
- * (event) => sendWelcomeEmail(event as UserCreatedEvent),
83
- * UserCreatedEvent.name,
84
- * )
85
- *
86
- * // dispatch after persistence
87
- * await userRepository.create(user)
88
- * DomainEvents.dispatchEventsForAggregate(user.id)
89
- * ```
90
- */
91
- declare class DomainEventsImplementation {
92
- private readonly handlersMap;
93
- private readonly markedAggregates;
94
- /**
95
- * Marks an aggregate root to have its events dispatched.
96
- * Called automatically by {@link AggregateRoot.addDomainEvent}.
97
- *
98
- * @param aggregate - The aggregate to mark for dispatch
99
- */
100
- markAggregateForDispatch(aggregate: AggregateRoot<unknown>): void;
101
- /**
102
- * Dispatches all pending events for the aggregate with the given id,
103
- * clears its events, and removes it from the dispatch list.
104
- *
105
- * Should be called by the infrastructure layer after persisting the aggregate.
106
- *
107
- * @param id - The identifier of the aggregate to dispatch events for
108
- */
109
- dispatchEventsForAggregate(id: UniqueEntityId): void;
110
- /**
111
- * Registers an event handler for a given event class name.
112
- *
113
- * @param callback - The function to invoke when the event is dispatched
114
- * @param eventClassName - The name of the event class to listen for
115
- */
116
- register(callback: DomainEventCallback, eventClassName: string): void;
117
- /**
118
- * Removes all registered event handlers.
119
- * Useful for test isolation.
120
- */
121
- clearHandlers(): void;
122
- /**
123
- * Removes all aggregates from the dispatch list.
124
- * Useful for test isolation.
125
- */
126
- clearMarkedAggregates(): void;
127
- private dispatchAggregateEvents;
128
- private removeAggregateFromMarkedDispatchList;
129
- private findMarkedAggregateByID;
130
- private dispatch;
131
- }
132
- /**
133
- * Singleton instance of the domain events registry.
134
- * Use this to register handlers and dispatch events across the application.
135
- */
136
- declare const DomainEvents: DomainEventsImplementation;
137
- /**
138
- * Base contract for all event handlers.
139
- *
140
- * An event handler is responsible for subscribing to domain events
141
- * and executing side effects in response — such as sending emails,
142
- * updating read models, or triggering external integrations.
143
- *
144
- * All handlers must implement {@link setupSubscriptions} to register
145
- * their callbacks in the {@link DomainEvents} registry.
146
- *
147
- * @example
148
- * ```ts
149
- * class OnUserCreated implements EventHandler {
150
- * constructor(private readonly mailer: Mailer) {}
151
- *
152
- * setupSubscriptions(): void {
153
- * DomainEvents.register(
154
- * (event) => this.sendWelcomeEmail(event as UserCreatedEvent),
155
- * UserCreatedEvent.name,
156
- * )
157
- * }
158
- *
159
- * private async sendWelcomeEmail(event: UserCreatedEvent): Promise<void> {
160
- * await this.mailer.send(event.user.email)
161
- * }
162
- * }
163
- * ```
164
- */
165
- interface EventHandler {
166
- /**
167
- * Registers all event subscriptions for this handler.
168
- * Should be called once during application bootstrap.
169
- */
170
- setupSubscriptions(): void;
171
- }
172
- /**
173
- * Base class for all domain entities.
174
- *
175
- * An entity is an object defined by its identity rather than its attributes.
176
- * Two entities are considered equal if they share the same `id`, regardless
177
- * of their other properties.
178
- *
179
- * All entities must implement a static `create` factory method to encapsulate
180
- * construction logic and keep the constructor protected.
181
- *
182
- * @template Props - The shape of the entity's properties
183
- *
184
- * @example
185
- * ```ts
186
- * interface UserProps {
187
- * id: UniqueEntityId
188
- * name: string
189
- * email: string
190
- * createdAt: Date
191
- * }
192
- *
193
- * class User extends Entity<UserProps> {
194
- * get name() { return this.props.name }
195
- * get email() { return this.props.email }
196
- *
197
- * static create(props: Optional<UserProps, "id" | "createdAt">): User {
198
- * return new User(
199
- * { ...props, createdAt: props.createdAt ?? new Date() },
200
- * props.id ?? new UniqueEntityId(),
201
- * )
202
- * }
203
- * }
204
- * ```
205
- */
206
- declare abstract class Entity<Props> {
207
- private readonly _id;
208
- protected props: Props;
209
- get id(): UniqueEntityId;
210
- protected constructor(props: Props, id?: UniqueEntityId);
211
- /**
212
- * Compares this entity with another by identity.
213
- *
214
- * @param entity - The entity to compare against
215
- * @returns `true` if both entities share the same `id`
216
- */
217
- equals(entity: Entity<unknown>): boolean;
218
- }
219
- /**
220
- * Base class for all aggregate roots in the domain.
221
- *
222
- * An aggregate root is the entry point to an aggregate — a cluster of domain
223
- * objects that are treated as a single unit. It is responsible for enforcing
224
- * invariants and coordinating domain events within its boundary.
225
- *
226
- * Domain events are collected internally and dispatched after the aggregate
227
- * is persisted, ensuring side effects only occur after a successful transaction.
228
- *
229
- * @template Props - The shape of the aggregate's properties
230
- *
231
- * @example
232
- * ```ts
233
- * class User extends AggregateRoot<UserProps> {
234
- * static create(props: Optional<UserProps, "id" | "createdAt">): User {
235
- * const user = new User(
236
- * { ...props, createdAt: props.createdAt ?? new Date() },
237
- * props.id ?? new UniqueEntityId(),
238
- * )
239
- *
240
- * user.addDomainEvent(new UserCreatedEvent(user))
241
- *
242
- * return user
243
- * }
244
- * }
245
- * ```
246
- */
247
- declare abstract class AggregateRoot<Props> extends Entity<Props> {
248
- private readonly _domainEvents;
249
- /**
250
- * Returns all domain events that have been raised by this aggregate
251
- * and are pending dispatch.
252
- */
253
- get domainEvents(): DomainEvent[];
254
- /**
255
- * Registers a domain event to be dispatched after the aggregate is persisted.
256
- * Automatically marks this aggregate for dispatch in the {@link DomainEvents} registry.
257
- *
258
- * @param domainEvent - The domain event to register
259
- */
260
- protected addDomainEvent(domainEvent: DomainEvent): void;
261
- /**
262
- * Clears all pending domain events from this aggregate.
263
- * Should be called by the infrastructure layer after events are dispatched.
264
- */
265
- clearEvents(): void;
266
- }
1
+ import { AggregateRoot, DomainEvent, DomainEvents, Entity, EventHandler } from "../../shared/chunk-axgwjkjg.js";
2
+ import "../../shared/chunk-t21213sm.js";
267
3
  export { EventHandler, Entity, DomainEvents, DomainEvent, AggregateRoot };
@@ -1,2 +1,2 @@
1
1
  // @bun
2
- import{e as a,f as b,g as c}from"../../shared/chunk-mmsp4fty.js";import"../../shared/chunk-27pwj1j1.js";export{b as Entity,a as DomainEvents,c as AggregateRoot};
2
+ import{a,b,c}from"../../shared/chunk-jw0ckhsy.js";import"../../shared/chunk-r63mxet1.js";export{b as Entity,a as DomainEvents,c as AggregateRoot};