@pulse-compute/pulse 1.0.0-beta.1 → 1.0.0-beta.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.md CHANGED
@@ -6,9 +6,10 @@
6
6
  > **Install directly:** Yes. Install it in every conventional Pulse project.<br>
7
7
  > **Supported entry points:** `@pulse-compute/pulse`, `@pulse-compute/pulse/schema`<br>
8
8
  > **Stability:** Supported conventional application, project-configuration, and schema-authoring contract.<br>
9
- > **Canonical documentation:** [Package guide](https://pulsecompute.io/v1.0.0-beta.1/packages/pulse/)
9
+ > **npm:** [`@pulse-compute/pulse`](https://www.npmjs.com/package/@pulse-compute/pulse)<br>
10
+ > **Canonical documentation:** [Package guide](https://pulsecompute.io/v1.0.0-beta.2/packages/pulse/)
10
11
  >
11
- > This release-status block is generated from the synchronized `Pulse 1.0.0-beta.1` package policy.
12
+ > This release-status block is generated from the synchronized `Pulse 1.0.0-beta.2` package policy.
12
13
  <!-- pulse-package-status:end -->
13
14
 
14
15
  This package owns the project-aware authoring layer above the low-level
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulse-compute/pulse",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
4
  "license": "Apache-2.0",
5
5
  "engines": {
6
6
  "node": "^22.14.0 || ^24.0.0"
@@ -28,8 +28,8 @@
28
28
  "NOTICE"
29
29
  ],
30
30
  "dependencies": {
31
- "@pulse-compute/runtime": "1.0.0-beta.1",
32
- "@pulse-compute/wasm-contracts": "1.0.0-beta.1"
31
+ "@pulse-compute/runtime": "1.0.0-beta.2",
32
+ "@pulse-compute/wasm-contracts": "1.0.0-beta.2"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
@@ -39,7 +39,7 @@
39
39
  "url": "git+https://github.com/pulse-compute/pulse.git",
40
40
  "directory": "packages/pulse"
41
41
  },
42
- "homepage": "https://pulsecompute.io/v1.0.0-beta.1/packages/pulse/",
42
+ "homepage": "https://pulsecompute.io/v1.0.0-beta.2/packages/pulse/",
43
43
  "bugs": {
44
44
  "url": "https://github.com/pulse-compute/pulse/issues"
45
45
  }
package/src/index.d.ts CHANGED
@@ -18,6 +18,11 @@ export type {
18
18
  PulseState,
19
19
  PulseLogger,
20
20
  PulseKvNamespace,
21
+ PulseKvGeneration,
22
+ PulseKvVersionedResult,
23
+ PulseKvReadFailureReason,
24
+ PulseKvConditionalResult,
25
+ PulseKvNotStoredReason,
21
26
  PulseEmitEvent,
22
27
  PulseExecutionContext,
23
28
  PulseContext,
@@ -40,7 +45,7 @@ export type {
40
45
 
41
46
  export type PulseExecutionTarget = 'native' | 'javascript';
42
47
  export type PulseReportingLevel = 'off' | 'error' | 'warn' | 'info' | 'debug';
43
- export type PulseCryptoAlgorithm = 'HS256' | 'ES256';
48
+ export type PulseCryptoAlgorithm = 'HS256' | 'ES256' | 'SHA-256' | 'HMAC-SHA256';
44
49
  export type PulseCryptoRealization =
45
50
  | 'runtime-builtin'
46
51
  | 'guest-source:pulse-hmac-as'