@astrale-os/sdk 0.5.0-beta.73 → 0.5.0-beta.74

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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.5.0-beta.74](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.73...sdk-v0.5.0-beta.74) (2026-08-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * **schema:** remove Property visibility from the V1 facade ([#324](https://github.com/astrale-os/sdk/issues/324)) ([0857b74](https://github.com/astrale-os/sdk/commit/0857b7493fad244999ba374ba73578f73889696e))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **adapter-cloudflare:** route Kernel callbacks through public Worker routes ([#323](https://github.com/astrale-os/sdk/issues/323)) ([a1cea33](https://github.com/astrale-os/sdk/commit/a1cea334d20b749f78d872ad3d6416dbe1e47f4e))
14
+
15
+
16
+ ### Documentation
17
+
18
+ * capture Admin beta delivery journey ([#321](https://github.com/astrale-os/sdk/issues/321)) ([e5cb249](https://github.com/astrale-os/sdk/commit/e5cb24948ddd3a37dda7da1e1897dcfb342cc210))
19
+
3
20
  ## [0.5.0-beta.73](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.72...sdk-v0.5.0-beta.73) (2026-08-28)
4
21
 
5
22
 
@@ -1,9 +1,8 @@
1
- import type { DefinedSchema, NodeClassInput, PropertyOptions, ResolvedDomainOfInput, SchemaInput as DomainSchemaInput } from '@astrale-os/kernel-dsl/v1/builder';
1
+ import type { DefinedSchema, NodeClassInput, ResolvedDomainOfInput, SchemaInput as DomainSchemaInput } from '@astrale-os/kernel-dsl/v1/builder';
2
2
  import { nodeClass as languageNodeClass } from '@astrale-os/kernel-dsl/v1';
3
3
  import type { StateMachine } from '../../../application/state/machine.js';
4
4
  import type { StateClass, StateClassesOfInput, StateDependenciesOfInput, StatePropertiesOfConfig, StateProperty, StateSchema } from './model.js';
5
5
  interface StatePropertyOptions {
6
- readonly visibility?: PropertyOptions['visibility'];
7
6
  readonly description?: string;
8
7
  }
9
8
  type RequiredStatePropertyOptions<Options extends StatePropertyOptions> = Readonly<Options & {
@@ -8,8 +8,8 @@ export function stateProperty(machine, options) {
8
8
  (typeof options !== 'object' ||
9
9
  options === null ||
10
10
  Array.isArray(options) ||
11
- Reflect.ownKeys(options).some((key) => key !== 'visibility' && key !== 'description'))) {
12
- throw new TypeError('stateProperty options are visibility and description only.');
11
+ Reflect.ownKeys(options).some((key) => key !== 'description'))) {
12
+ throw new TypeError('stateProperty options are description only.');
13
13
  }
14
14
  const value = property(machine.stateSchema, {
15
15
  ...options,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrale-os/sdk",
3
- "version": "0.5.0-beta.73",
3
+ "version": "0.5.0-beta.74",
4
4
  "description": "Schema-first SDK for defining, composing, and deploying Astrale domains",
5
5
  "keywords": [
6
6
  "astrale",
@@ -217,11 +217,11 @@
217
217
  "registry": "https://registry.npmjs.org/"
218
218
  },
219
219
  "dependencies": {
220
- "@astrale-os/kernel-client": "0.6.0-beta.26",
221
- "@astrale-os/kernel-core": "0.9.0-beta.19",
222
- "@astrale-os/kernel-dsl": "0.2.0-beta.15",
223
- "@astrale-os/kernel-protocol": "0.5.0-beta.20",
224
- "@astrale-os/kernel-server": "0.5.0-beta.22",
220
+ "@astrale-os/kernel-client": "0.6.0-beta.29",
221
+ "@astrale-os/kernel-core": "0.9.0-beta.22",
222
+ "@astrale-os/kernel-dsl": "0.2.0-beta.17",
223
+ "@astrale-os/kernel-protocol": "0.5.0-beta.23",
224
+ "@astrale-os/kernel-server": "0.5.0-beta.25",
225
225
  "@typescript/native-preview": "7.0.0-dev.20260707.2",
226
226
  "hono": "^4.13.2",
227
227
  "jose": "^6.2.9",