@3dsource/angular-unreal-module 0.0.60 → 0.0.61
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/LICENSE +14 -14
- package/README.md +162 -162
- package/fesm2022/3dsource-angular-unreal-module.mjs +103 -102
- package/fesm2022/3dsource-angular-unreal-module.mjs.map +1 -1
- package/index.d.ts +9 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1574,8 +1574,14 @@ interface RequestStream extends MessageBase {
|
|
|
1574
1574
|
context: StreamRequestContext;
|
|
1575
1575
|
};
|
|
1576
1576
|
}
|
|
1577
|
-
interface
|
|
1578
|
-
id: '
|
|
1577
|
+
interface MetaboxBasicConfiguratorContext {
|
|
1578
|
+
id: 'metaboxBasicConfigurator';
|
|
1579
|
+
data: {
|
|
1580
|
+
configuratorId: string;
|
|
1581
|
+
};
|
|
1582
|
+
}
|
|
1583
|
+
interface MetaboxModularConfiguratorContext {
|
|
1584
|
+
id: 'metaboxModularConfigurator';
|
|
1579
1585
|
data: {
|
|
1580
1586
|
configuratorId: string;
|
|
1581
1587
|
};
|
|
@@ -1605,7 +1611,7 @@ interface CustomApplicationContext {
|
|
|
1605
1611
|
applicationId: string;
|
|
1606
1612
|
};
|
|
1607
1613
|
}
|
|
1608
|
-
type StreamRequestContext =
|
|
1614
|
+
type StreamRequestContext = MetaboxBasicConfiguratorContext | MetaboxModularConfiguratorContext | MetaboxStudioContext | MetaboxProductContext | MetaboxEnvironmentContext | CustomApplicationContext;
|
|
1609
1615
|
interface SignalingMessageMap {
|
|
1610
1616
|
[OrchestrationMessageTypes.streamerList]: StreamerListMessage;
|
|
1611
1617
|
[OrchestrationMessageTypes.ssInfo]: SSInfo;
|