Skip to content

Commit 1eacc9b

Browse files
committed
fix(typescript): updated broken links
1 parent c22e1c1 commit 1eacc9b

48 files changed

Lines changed: 109 additions & 227 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/cloud/get-started/api-keys.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ To use your API key with a Temporal SDK, see the instructions in each SDK sectio
413413

414414
[How to connect to Temporal Cloud using an API Key with the Python SDK](/develop/python/temporal-client#connect-to-temporal-cloud)
415415

416-
[How to connect to Temporal Cloud using an API Key with the TypeScript SDK](/develop/typescript/temporal-client#connect-to-temporal-cloud)
416+
[How to connect to Temporal Cloud using an API Key with the TypeScript SDK](/develop/typescript/client/temporal-client#connect-to-temporal-cloud)
417417

418418
[How to connect to Temporal Cloud using an API Key with the .NET SDK](/develop/dotnet/temporal-client#connect-to-temporal-cloud)
419419

docs/cloud/get-started/certificates.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ To view the current certificate filters, use the
485485
- [Java SDK](/develop/java/temporal-client#connect-to-temporal-cloud)
486486
- [PHP SDK](/develop/php/temporal-client#connect-to-a-dev-cluster)
487487
- [Python SDK](/develop/python/temporal-client#connect-to-temporal-cloud)
488-
- [TypeScript SDK](/develop/typescript/temporal-client#connect-to-temporal-cloud)
488+
- [TypeScript SDK](/develop/typescript/client/temporal-client#connect-to-temporal-cloud)
489489
- [.NET SDK](/develop/dotnet/temporal-client#connect-to-temporal-cloud)
490490

491491
### Configure Temporal CLI {#configure-temporal-cli}

docs/cloud/get-started/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ See our guides for connecting each SDK to your Temporal Cloud Namespace:
5555
- [Connect to Temporal Cloud in Go](/develop/go/temporal-client#connect-to-temporal-cloud)
5656
- [Connect to Temporal Cloud in Java](/develop/java/temporal-client#connect-to-temporal-cloud)
5757
- [Connect to Temporal Cloud in Python](/develop/python/temporal-client#connect-to-temporal-cloud)
58-
- [Connect to Temporal Cloud in TypeScript](/develop/typescript/temporal-client#connect-to-temporal-cloud)
58+
- [Connect to Temporal Cloud in TypeScript](/develop/typescript/client/temporal-client#connect-to-temporal-cloud)
5959
- [Connect to Temporal Cloud in .NET](/develop/dotnet/temporal-client#connect-to-temporal-cloud)
6060
- [Connect to Temporal Cloud in PHP](/develop/php/temporal-client#connect-to-temporal-cloud)
6161
- [Connect to Temporal Cloud in Ruby](/develop/ruby/temporal-client#connect-to-temporal-cloud)
@@ -67,7 +67,7 @@ See our guides for starting a workflow using each SDK:
6767
- [Start a workflow in Go](/develop/go/temporal-client#start-workflow-execution)
6868
- [Start a workflow in Java](/develop/java/temporal-client#start-workflow-execution)
6969
- [Start a workflow in Python](/develop/python/temporal-client#start-workflow-execution)
70-
- [Start a workflow in TypeScript](/develop/typescript/temporal-client#start-workflow-execution)
70+
- [Start a workflow in TypeScript](/develop/typescript/client/temporal-client#start-workflow-execution)
7171
- [Start a workflow in .NET](/develop/dotnet/temporal-client#start-workflow)
7272
- [Start a workflow in PHP](/develop/php/temporal-client#start-workflow-execution)
7373
- [Start a workflow in Ruby](/develop/ruby/temporal-client#start-workflow)

docs/cloud/metrics/prometheus-grafana.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ If you're following through with the examples provided here, ensure that you hav
5656
- [Java](/develop/java/temporal-client#connect-to-temporal-cloud)
5757
- [PHP](/develop/php/temporal-client#connect-to-a-dev-cluster)
5858
- [Python](/develop/python/temporal-client#connect-to-temporal-cloud)
59-
- [TypeScript](/develop/typescript/core-application#connect-to-temporal-cloud)
59+
- [TypeScript](/develop/typescript/client/temporal-client#connect-to-temporal-cloud)
6060
- [.NET](/develop/dotnet/temporal-client#connect-to-temporal-cloud)
6161

6262
- Prometheus and Grafana installed.

docs/develop/typescript/activities/execution.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
id: activity-execution
2+
id: execution
33
title: Activity execution with the TypeScript SDK
44
description: Shows how to perform Activity execution with the TypeScript SDK
5-
sidebar_label: Basic Activity
5+
sidebar_label: Activity Execution
66
slug: /develop/typescript/activities/execution
77
toc_max_heading_level: 3
88
tags:
@@ -47,7 +47,7 @@ results in the set of three [Activity Task](/tasks#activity-task) related Events
4747

4848
The Worker may run many Activity executions at the same time, all using the same Activity function code. Temporal can
4949
also retry an Activity if it fails or times out. For this reason, you should write Activities to be
50-
[idempotent](../../encyclopedia/activities/activity-definition.mdx#idempotency): calling them multiple times with the
50+
[idempotent](/encyclopedia/activities/activity-definition.mdx#idempotency): calling them multiple times with the
5151
same input should have the same effect as calling them once.
5252

5353
:::tip Every Activity call you make is recorded in the Workflow’s execution history, including the parameters you pass

docs/develop/typescript/activities/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ import * as Components from '@site/src/components';
3333

3434
:::
3535

36-
## [Core application](/develop/typescript/core-application)
36+
## [Core application](/develop/typescript)
3737

3838
Use the essential components of a Temporal Application (Workflows, Activities, and Workers) to build and run a Temporal
3939
application.
4040

41-
- [Develop a Basic Workflow](/develop/typescript/core-application#develop-workflows)
42-
- [Develop a Basic Activity](/develop/typescript/core-application#develop-activities)
43-
- [Start an Activity Execution](/develop/typescript/core-application#activity-execution)
44-
- [Run Worker Processes](/develop/typescript/core-application#run-a-dev-worker)
41+
- [Develop a Basic Workflow](/develop/typescript/workflows)
42+
- [Develop a Basic Activity](/develop/typescript/activities)
43+
- [Start an Activity Execution](/develop/typescript/activities/execution)
44+
- [Run Worker Processes](/develop/typescript/workers/run-worker-process#run-a-dev-worker)

docs/develop/typescript/best-practices/debugging.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
id: debugging
33
title: Debugging - TypeScript SDK
44
sidebar_label: Debugging
5-
slug: /develop/typescript/debugging
5+
slug: /develop/typescript/best-practices/debugging
66
description: The Temporal TypeScript SDK Debugging guide provides tools and tips for debugging Workflows and Workers in development and production environments. Troubleshoot common issues using the Web UI, Temporal CLI, and more.
77
toc_max_heading_level: 4
88
keywords:
@@ -27,7 +27,7 @@ You can debug production Workflows using:
2727

2828
- [Web UI](/web-ui)
2929
- [Temporal CLI](/cli)
30-
- [Replay](/develop/typescript/testing-suite#replay)
30+
- [Replay](/develop/typescript/best-practices/testing-suite#replay)
3131
- [Tracing](/develop/typescript/observability#tracing)
3232
- [Logging](/develop/typescript/observability#logging)
3333

@@ -93,7 +93,7 @@ When you pass a `workflowsPath`, our Webpack config expects to find `node_module
9393
9494
Temporal Workflow Bundles need to [export a set of methods that fit the compiled `worker-interface.ts` from `@temporalio/workflow`](https://github.com/temporalio/sdk-typescript/blob/eaa2d205c9bc5ff4a3b17c0b34f2dcf6b1e0264a/packages/worker/src/workflow/bundler.ts#L81) as an entry point.
9595
We do offer a `bundleWorkflowCode` method to assist you with this, though it uses our Webpack settings.
96-
For more information, see the [Register types](/develop/typescript/core-application#register-types) section.
96+
For more information, see the [Register types](/develop/typescript/workers/run-worker-process#register-types) section.
9797
9898
### Webpack errors
9999

docs/develop/typescript/best-practices/index.mdx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,10 @@ import * as Components from '@site/src/components';
3333

3434
:::
3535

36-
## [Core application](/develop/typescript/core-application)
37-
3836
Use the essential components of a Temporal Application (Workflows, Activities, and Workers) to build and run a Temporal
3937
application.
4038

41-
- [Develop a Basic Workflow](/develop/typescript/core-application#develop-workflows)
42-
- [Develop a Basic Activity](/develop/typescript/core-application#develop-activities)
43-
- [Start an Activity Execution](/develop/typescript/core-application#activity-execution)
44-
- [Run Worker Processes](/develop/typescript/core-application#run-a-dev-worker)
39+
- [Develop a Basic Workflow](/develop/typescript/workflows)
40+
- [Develop a Basic Activity](/develop/typescript/activities)
41+
- [Start an Activity Execution](/develop/typescript/activities/execution)
42+
- [Run Worker Processes](/develop/typescript/workers/run-worker-process#run-a-dev-worker)

docs/develop/typescript/client/index.mdx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,10 @@ import * as Components from '@site/src/components';
3333

3434
:::
3535

36-
## [Core application](/develop/typescript/core-application)
37-
3836
Use the essential components of a Temporal Application (Workflows, Activities, and Workers) to build and run a Temporal
3937
application.
4038

41-
- [Develop a Basic Workflow](/develop/typescript/core-application#develop-workflows)
42-
- [Develop a Basic Activity](/develop/typescript/core-application#develop-activities)
43-
- [Start an Activity Execution](/develop/typescript/core-application#activity-execution)
44-
- [Run Worker Processes](/develop/typescript/core-application#run-a-dev-worker)
39+
- [Develop a Basic Workflow](/develop/typescript/workflows)
40+
- [Develop a Basic Activity](/develop/typescript/activities)
41+
- [Start an Activity Execution](/develop/typescript/activities/execution)
42+
- [Run Worker Processes](/develop/typescript/workers/run-worker-process#run-a-dev-worker)

docs/develop/typescript/client/temporal-client.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ language-specific contextual data, and Workflow Function parameters.
645645
In the examples below, all Workflow Executions are started using a Temporal Client. To spawn Workflow Executions from
646646
within another Workflow Execution, use either the Child Workflow or External Workflow APIs.
647647

648-
See the [Customize Workflow Type](/develop/typescript/core-application#workflow-type) section to see how to customize
648+
See the [Customize Workflow Type](/develop/typescript/workflows/basic-workflow#workflow-type) section to see how to customize
649649
the name of the Workflow Type.
650650

651651
A request to spawn a Workflow Execution causes the Temporal Service to create the first Event

0 commit comments

Comments
 (0)