File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ export type {
99 InAppStepResolver ,
1010 PushStepResolver ,
1111 SmsStepResolver ,
12+ StepResolverContext ,
1213} from './resources/step-resolver/step' ;
1314export { step } from './resources/step-resolver/step' ;
1415export { providerSchemas } from './schemas' ;
1516export { ClientOptions , SeverityLevelEnum , Workflow } from './types' ;
17+ export type { ContextResolved } from './types/context.types' ;
18+ export type { Subscriber } from './types/subscriber.types' ;
19+ export type { ExecuteInput } from './types/workflow.types' ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import type {
1212import type { Subscriber } from '../../types/subscriber.types' ;
1313import type { Awaitable } from '../../types/util.types' ;
1414
15- type StepResolverContext < TPayload extends Record < string , unknown > = Record < string , unknown > > = {
15+ export type StepResolverContext < TPayload extends Record < string , unknown > = Record < string , unknown > > = {
1616 payload : TPayload ;
1717 subscriber : Subscriber ;
1818 context : ContextResolved ;
Original file line number Diff line number Diff line change @@ -5,8 +5,11 @@ export type {
55 InAppStepResolver ,
66 PushStepResolver ,
77 SmsStepResolver ,
8+ StepResolverContext ,
89} from './resources/step-resolver/step' ;
910export { step } from './resources/step-resolver/step' ;
1011export { providerSchemas } from './schemas/providers' ;
1112export { channelStepSchemas } from './schemas/steps/channels' ;
13+ export type { ContextResolved } from './types/context.types' ;
1214export type { WithPassthrough } from './types/provider.types' ;
15+ export type { Subscriber } from './types/subscriber.types' ;
You can’t perform that action at this time.
0 commit comments