Update TS SDK examples to use direct imports and improve error handling docs #3388
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request primarily updates code samples and snippets across the documentation to use direct imports of individual SDK capabilities (such as
CronCapability,HTTPClient,EVMClient, andhandler) from@chainlink/cre-sdk, rather than accessing them via thecre.capabilitiesnamespace. Additionally, it clarifies code comments for determinism, updates some metadata fields, and improves documentation notes for SDK usage.SDK Import and Usage Updates:
CronCapability,HTTPClient,EVMClient, andhandlerdirectly from@chainlink/cre-sdkinstead of usingcre.capabilities. This change affects multiple files in thegetting-startedandguides/workflowsections, making the code more idiomatic and easier to read. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15]Code Example and Comment Improvements:
index-trigger-callback-example.tsto use the directhandlerimport.Documentation and Metadata Enhancements:
<Aside>note in the getting started guide, clarifying that users do not need to callmain()manually, as the SDK handles execution and error reporting.lastModifiedmetadata fields in several documentation files to reflect the latest changes. [1] [2] [3]Other Minor Changes: