-
Notifications
You must be signed in to change notification settings - Fork 12
Add missing exports #542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing exports #542
Conversation
Signed-off-by: Nik Nasr <[email protected]>
"@restatedev/restate-sdk-core": "^1.5.4", | ||
"@restatedev/restate-sdk": "^1.5.4", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We were missing @restatedev/restate-sdk
as a dependency because we use endpoint
from this package. Since all the types we needed from @restatedev/restate-sdk-core
are available in @restatedev/restate-sdk
, I removed the former.
import * as restate from "@restatedev/restate-sdk"; | ||
import * as core from "@restatedev/restate-sdk-core"; | ||
import { endpoint, serde } from "@restatedev/restate-sdk"; | ||
import type { | ||
TypedState, | ||
UntypedState, | ||
Serde, | ||
RestateEndpoint, | ||
VirtualObjectDefinition, | ||
WorkflowDefinition, | ||
} from "@restatedev/restate-sdk"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Signed-off-by: Nik Nasr <[email protected]>
Signed-off-by: Nik Nasr <[email protected]>
Signed-off-by: Nik Nasr <[email protected]>
Adding the missing exports caught by #541