@chat-de-hp/site 0.1.0 → 0.2.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/README.md CHANGED
@@ -46,5 +46,5 @@ runtime locally.
46
46
  - A **provider** is the approved implementation of a capability.
47
47
  - The generated **runtime manifest** records the exact deployed composition.
48
48
 
49
- Version 0.1.0 supports the `forms` primitive. Arbitrary plugins and providers
49
+ Version 0.2.0 supports the `forms` primitive. Arbitrary plugins and providers
50
50
  are intentionally not part of the author-facing interface.
@@ -2,10 +2,6 @@ import { z } from "zod";
2
2
  export declare const SITE_RUNTIME_NAME: "@chat-de-hp/site";
3
3
  export declare const SITE_RUNTIME_VERSION: string;
4
4
  export declare const SITE_RUNTIME_PROTOCOL_VERSION: 1;
5
- export declare const SITE_RUNTIME_PRIMITIVES: readonly [{
6
- readonly id: "forms";
7
- readonly schemaVersion: 1;
8
- }];
9
5
  export declare const siteRuntimeBindingSchema: z.ZodObject<{
10
6
  name: z.ZodString;
11
7
  type: z.ZodEnum<{
@@ -1 +1 @@
1
- {"version":3,"file":"control-plane.d.ts","sourceRoot":"","sources":["../src/control-plane.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,iBAAiB,EAAG,kBAA2B,CAAC;AAC7D,eAAO,MAAM,oBAAoB,QAAsB,CAAC;AACxD,eAAO,MAAM,6BAA6B,EAAG,CAAU,CAAC;AACxD,eAAO,MAAM,uBAAuB;;;EAE1B,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;iBAYrB,CAAC;AAEjB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA6BtB,CAAC;AAEjB,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,OAAO,GAAG,mBAAmB,CAE5E"}
1
+ {"version":3,"file":"control-plane.d.ts","sourceRoot":"","sources":["../src/control-plane.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,iBAAiB,EAAG,kBAA2B,CAAC;AAC7D,eAAO,MAAM,oBAAoB,QAAsB,CAAC;AACxD,eAAO,MAAM,6BAA6B,EAAG,CAAU,CAAC;AAExD,eAAO,MAAM,wBAAwB;;;;;;;;;;iBAYrB,CAAC;AAEjB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA6BtB,CAAC;AAEjB,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,OAAO,GAAG,mBAAmB,CAE5E"}
@@ -3,9 +3,6 @@ import packageJson from "../package.json" with { type: "json" };
3
3
  export const SITE_RUNTIME_NAME = "@chat-de-hp/site";
4
4
  export const SITE_RUNTIME_VERSION = packageJson.version;
5
5
  export const SITE_RUNTIME_PROTOCOL_VERSION = 1;
6
- export const SITE_RUNTIME_PRIMITIVES = [
7
- { id: "forms", schemaVersion: 1 },
8
- ];
9
6
  export const siteRuntimeBindingSchema = z
10
7
  .object({
11
8
  name: z.string().min(1),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chat-de-hp/site",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "private": false,
5
5
  "description": "Managed Astro site runtime and primitive composition for Chat de HP",
6
6
  "license": "MIT",
@@ -84,6 +84,12 @@
84
84
  },
85
85
  "packageManager": "bun@1.3.0",
86
86
  "chatDeHp": {
87
+ "packageOwnedDependencies": [
88
+ "@astrojs/cloudflare",
89
+ "@astrojs/react",
90
+ "@emdash-cms/cloudflare",
91
+ "@emdash-cms/plugin-forms"
92
+ ],
87
93
  "siteDependencies": {
88
94
  "astro": "^7.0.4",
89
95
  "emdash": "0.29.0",