@temporalio/activity 1.14.1 → 1.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts CHANGED
@@ -72,7 +72,7 @@ import { AsyncLocalStorage } from 'node:async_hooks';
72
72
  import { Logger, Duration, MetricMeter, Priority, ActivityCancellationDetails, RetryPolicy } from '@temporalio/common';
73
73
  import { ActivityCancellationDetailsHolder } from '@temporalio/common/lib/activity-cancellation-details';
74
74
  import { Client } from '@temporalio/client';
75
- export { ActivityFunction, ActivityInterface, // eslint-disable-line deprecation/deprecation
75
+ export { ActivityFunction, ActivityInterface, // eslint-disable-line @typescript-eslint/no-deprecated
76
76
  ApplicationFailure, CancelledFailure, UntypedActivities, } from '@temporalio/common';
77
77
  /**
78
78
  * Throw this error from an Activity in order to make the Worker forget about this Activity.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temporalio/activity",
3
- "version": "1.14.1",
3
+ "version": "1.15.0",
4
4
  "description": "Temporal.io SDK Activity sub-package",
5
5
  "main": "lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -13,12 +13,12 @@
13
13
  "author": "Temporal Technologies Inc. <sdk@temporal.io>",
14
14
  "license": "MIT",
15
15
  "dependencies": {
16
- "@temporalio/client": "1.14.1",
17
- "@temporalio/common": "1.14.1",
18
- "abort-controller": "^3.0.0"
16
+ "abort-controller": "^3.0.0",
17
+ "@temporalio/client": "1.15.0",
18
+ "@temporalio/common": "1.15.0"
19
19
  },
20
20
  "engines": {
21
- "node": ">= 18.0.0"
21
+ "node": ">= 20.0.0"
22
22
  },
23
23
  "bugs": {
24
24
  "url": "https://github.com/temporalio/sdk-typescript/issues"
@@ -35,6 +35,5 @@
35
35
  "files": [
36
36
  "src",
37
37
  "lib"
38
- ],
39
- "gitHead": "42bf6087946b7bbda61c7856bc0723c1616f9973"
40
- }
38
+ ]
39
+ }
package/src/index.ts CHANGED
@@ -88,7 +88,7 @@ import { Client } from '@temporalio/client';
88
88
 
89
89
  export {
90
90
  ActivityFunction,
91
- ActivityInterface, // eslint-disable-line deprecation/deprecation
91
+ ActivityInterface, // eslint-disable-line @typescript-eslint/no-deprecated
92
92
  ApplicationFailure,
93
93
  CancelledFailure,
94
94
  UntypedActivities,