@typecaast/core 0.3.0 → 0.4.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/dist/index.d.cts CHANGED
@@ -49,6 +49,10 @@ interface ComposerProps {
49
49
  composer: ComposerState;
50
50
  /** The participant using the composer (usually self). */
51
51
  author?: Participant;
52
+ /** Skin-specific options (validated by the skin's `optionsSchema`), mirroring
53
+ * `FrameProps.options` — e.g. the Cursor skin reads `options.model` to label
54
+ * the model chip in the reply box. */
55
+ options?: Record<string, unknown>;
52
56
  }
53
57
  interface AvatarProps {
54
58
  theme: ResolvedTheme;
package/dist/index.d.ts CHANGED
@@ -49,6 +49,10 @@ interface ComposerProps {
49
49
  composer: ComposerState;
50
50
  /** The participant using the composer (usually self). */
51
51
  author?: Participant;
52
+ /** Skin-specific options (validated by the skin's `optionsSchema`), mirroring
53
+ * `FrameProps.options` — e.g. the Cursor skin reads `options.model` to label
54
+ * the model chip in the reply box. */
55
+ options?: Record<string, unknown>;
52
56
  }
53
57
  interface AvatarProps {
54
58
  theme: ResolvedTheme;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typecaast/core",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Framework-agnostic Typecaast engine + the SimState/Player/skin-prop contracts.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {