sdk-typescript
sdk-typescript copied to clipboard
Temporal TypeScript SDK
## Context Our APIs contain multiple places where a user defined function expect arguments, and where various TypeScript features are used to ensure type coherency and correctness. Though all of...
It should mention that the activities are cancelled after `shutdownGraceTime`. https://github.com/temporalio/sdk-typescript/blob/28d4de33a2697c949b863d1c541063384c4fcc7c/packages/worker/src/worker.ts#L733
### Describe the solution you'd like - Add `upsertMemo` command to Workflow API. ### Additional context - Underlying support already exists in Core SDK.
### Describe the solution you'd like A Workflow Update carries an `updateId` field used to dedup updates. However, server side dedup is per-workflow-execution. Workflow implementers may have legitimate reasons to...
## What changed - In the workflow bundler, ignored modules get replaced by an empty object from Webpack's `externals` hook, in addition to `aliases`. ## Why - If workflow code...
### Is your feature request related to a problem? Please describe. Need opt-in catch-alls for workflows, activities, signals, queries, and updates. ### Describe the solution you'd like Should be able...
### Describe the bug Our bridge-to-rust layer extensively use a pattern where native Rust code is called with a callback function, which gets called asynchronously on completion of some Rust-side...
### Is your feature request related to a problem? Please describe. Currently the SDK has two separate connection classes: 1. `NativeConnection` which is a JS representation of the Rust client...
### Describe the solution you'd like Users should be able to manually page one at a time if they choose. Some users are using this list to power a UI,...
I am sure you are already familiar with Vite https://vitejs.dev/ Webpack is great, but it is pretty slow and waiting 10 seconds for bundle to complete can become a nuisance....