@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.
- package/dist/entities/approval/index.d.ts +2 -0
- package/dist/entities/approval/policy.d.ts +39 -0
- package/dist/entities/approval/policy.test.d.ts +1 -0
- package/dist/entities/approval/types.d.ts +104 -0
- package/dist/entities/work/ladder.d.ts +9 -0
- package/dist/entities/work/types.d.ts +13 -0
- package/dist/index.cjs +15 -15
- package/dist/index.d.ts +1 -0
- package/dist/index.js +504 -471
- package/dist/platform/communication.d.ts +10 -2
- package/package.json +1 -1
|
@@ -28,7 +28,14 @@ export interface Session {
|
|
|
28
28
|
*/
|
|
29
29
|
externalId?: string;
|
|
30
30
|
ui: {
|
|
31
|
-
|
|
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
|
|
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
|
};
|