@@ -203,9 +203,6 @@ export class DurableOrchestrationContext {
203
203
* function.
204
204
* @returns A Durable Task that completes when the called activity
205
205
* function completes or fails.
206
- *
207
- * @deprecated this version of `callActivity()` is deprecated. Pass an object
208
- * returned from `df.app.activity()` as the first argument instead.
209
206
*/
210
207
public callActivity ( name : string , input ?: unknown ) : Task ;
211
208
@@ -235,9 +232,6 @@ export class DurableOrchestrationContext {
235
232
* @param retryOptions The retry options for the activity function.
236
233
* @param input The JSON-serializable input to pass to the activity
237
234
* function.
238
- *
239
- * @deprecated this version of `callActivity()` is deprecated. Pass an object
240
- * returned from `df.app.activity()` as the first argument instead.
241
235
*/
242
236
public callActivityWithRetry ( name : string , retryOptions : RetryOptions , input ?: unknown ) : Task ;
243
237
@@ -303,9 +297,6 @@ export class DurableOrchestrationContext {
303
297
* @param instanceId A unique ID to use for the sub-orchestration instance.
304
298
* If `instanceId` is not specified, the extension will generate an id in
305
299
* the format `<calling orchestrator instance ID>:<#>`
306
- *
307
- * @deprecated this version of `callSubOrchestrator()` is deprecated. Pass an object
308
- * returned from `df.app.orchestration()` as the first argument instead.
309
300
*/
310
301
public callSubOrchestrator ( name : string , input ?: unknown , instanceId ?: string ) : Task ;
311
302
@@ -351,9 +342,6 @@ export class DurableOrchestrationContext {
351
342
* @param input The JSON-serializable input to pass to the orchestrator
352
343
* function.
353
344
* @param instanceId A unique ID to use for the sub-orchestration instance.
354
- *
355
- * @deprecated this version of `callSubOrchestratorWithRetry()` is deprecated. Pass an object
356
- * returned from `df.app.orchestration()` as the first argument instead.
357
345
*/
358
346
public callSubOrchestratorWithRetry (
359
347
name : string ,
0 commit comments