@opencxh/domain 1.257.0 → 1.262.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.
@@ -28,7 +28,14 @@ export interface Session {
28
28
  */
29
29
  externalId?: string;
30
30
  ui: {
31
- canvas: FederatedResourceRef;
31
+ /**
32
+ * What this transport draws in the call surface — a video plane, a meeting
33
+ * grid. Optional: an audio-only call has no picture, and the shell renders
34
+ * the call timeline (events, captions, assistant cards) either way. A
35
+ * provider that declares one gets it *above* that timeline, never instead
36
+ * of it.
37
+ */
38
+ canvas?: FederatedResourceRef;
32
39
  actionTray?: FederatedResourceRef;
33
40
  };
34
41
  }
@@ -151,7 +158,8 @@ export type TransportConfig = {
151
158
  kind: "session";
152
159
  accountSelector: AccountSelector;
153
160
  ui: {
154
- canvas: `${string}:${string}`;
161
+ /** See `Session.ui.canvas` — optional, a transport need not draw a picture. */
162
+ canvas?: `${string}:${string}`;
155
163
  actionTray?: `${string}:${string}`;
156
164
  };
157
165
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencxh/domain",
3
- "version": "1.257.0",
3
+ "version": "1.262.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",