Skip to content

Commit 254bc4e

Browse files
authored
fix: Missing export of isEventQlQueryTrue (#270)
* Export isEventQlQueryTrue * Fix import and export to be in alphabetical order
1 parent aeb6910 commit 254bc4e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ import { Container } from './Container.js';
33
import type { Event } from './Event.js';
44
import type { EventCandidate } from './EventCandidate.js';
55
import type { EventType } from './EventType.js';
6+
import { isEventQlQueryTrue } from './isEventQlQueryTrue.js';
67
import { isSubjectOnEventId } from './isSubjectOnEventId.js';
78
import { isSubjectPristine } from './isSubjectPristine.js';
89
import type { ObserveEventsOptions } from './ObserveEventsOptions.js';
910
import type { Precondition } from './Precondition.js';
1011
import type { ReadEventsOptions } from './ReadEventsOptions.js';
1112

12-
export { Client, Container, isSubjectOnEventId, isSubjectPristine };
13+
export { Client, Container, isEventQlQueryTrue, isSubjectOnEventId, isSubjectPristine };
1314
export type {
1415
Event,
1516
EventCandidate,

0 commit comments

Comments
 (0)