(
input: CreateSessionInput,
options: { initialBoundary?: ExecutionBoundary } = {},
)
| 946 | // -------------------------------------------------------------------------- |
| 947 | |
| 948 | async createSession( |
| 949 | input: CreateSessionInput, |
| 950 | options: { initialBoundary?: ExecutionBoundary } = {}, |
| 951 | ): Promise<SessionSummary> { |
| 952 | const header = await this.deps.store.create(input, options.initialBoundary); |
| 953 | return headerToSummary(header); |
| 954 | } |
| 955 | |
| 956 | /** |
| 957 | * Sessions plus the turn each one is running right now. The persisted status |