@deepseek-ai/dsh-timeout 0.0.1-rc.1 → 0.0.1-rc.2
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/README.i18n.yaml +1 -1
- package/README.md +1 -1
- package/package.json +3 -3
package/README.i18n.yaml
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
# side as of the last confirmed-consistent state. Both languages carry equal authority;
|
|
3
3
|
# after editing either side, bring the other along and re-record with:
|
|
4
4
|
# pnpm run verify-translation-pairing --write packages/util/timeout/README.md
|
|
5
|
-
README.md:
|
|
5
|
+
README.md: 54908a7e5df0e6c5d337a0b9f82d447cfc55b49d
|
|
6
6
|
README.zh.md: 638dc1af60761f9c964e356edc070d20af0f4819
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ It owns **no termination**. The signal it hands out only *notifies*; actually st
|
|
|
8
8
|
|
|
9
9
|
It is a **library, not a service or plugin**: no `ctx`, registers nothing, holds no state, emits no events. A "timeout service" would have to understand how to stop every capability's work — exactly the knowledge a microkernel keeps out of shared layers.
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## API
|
|
12
12
|
|
|
13
13
|
```ts
|
|
14
14
|
import { clampTimeout, deadline, idleWatchdog, MAX_TIMER_DELAY_MS, timeoutOf, TimeoutReason } from '@deepseek-ai/dsh-timeout'
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-timeout",
|
|
3
3
|
"description": "Zero-dependency timeout/deadline primitive: clampTimeout, deadline, timeoutOf, TimeoutReason (timing + classification only, no termination)",
|
|
4
|
-
"version": "0.0.1-rc.
|
|
4
|
+
"version": "0.0.1-rc.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "restricted"
|
|
7
7
|
},
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
],
|
|
33
33
|
"license": "BSD-3-Clause",
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.
|
|
35
|
+
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.2",
|
|
36
36
|
"@deepseek-ai/cordis": "^4.0.1-rc.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@deepseek-ai/cordis": "^4.0.1-rc.1",
|
|
40
|
-
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.
|
|
40
|
+
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.2"
|
|
41
41
|
}
|
|
42
42
|
}
|