@connectedxm/admin 2.4.4 → 2.4.5
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2167,6 +2167,8 @@ interface BaseStreamInput {
|
|
|
2167
2167
|
event: {
|
|
2168
2168
|
name: string;
|
|
2169
2169
|
} | null;
|
|
2170
|
+
imageId: string | null;
|
|
2171
|
+
image: BaseImage | null;
|
|
2170
2172
|
}
|
|
2171
2173
|
interface StreamInput extends BaseStreamInput {
|
|
2172
2174
|
sortOrder: number;
|
|
@@ -4591,6 +4593,7 @@ interface StreamInputCreateInputs {
|
|
|
4591
4593
|
eventId?: string | null;
|
|
4592
4594
|
sessionId?: string | null;
|
|
4593
4595
|
details?: object | null;
|
|
4596
|
+
imageId?: string | null;
|
|
4594
4597
|
}
|
|
4595
4598
|
interface StreamInputUpdateInputs {
|
|
4596
4599
|
name?: string;
|
|
@@ -4599,6 +4602,7 @@ interface StreamInputUpdateInputs {
|
|
|
4599
4602
|
sessionId?: string | null;
|
|
4600
4603
|
details?: object | null;
|
|
4601
4604
|
connected?: boolean;
|
|
4605
|
+
imageId?: string | null;
|
|
4602
4606
|
}
|
|
4603
4607
|
interface StreamInputOutputCreateInputs {
|
|
4604
4608
|
enabled: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -2167,6 +2167,8 @@ interface BaseStreamInput {
|
|
|
2167
2167
|
event: {
|
|
2168
2168
|
name: string;
|
|
2169
2169
|
} | null;
|
|
2170
|
+
imageId: string | null;
|
|
2171
|
+
image: BaseImage | null;
|
|
2170
2172
|
}
|
|
2171
2173
|
interface StreamInput extends BaseStreamInput {
|
|
2172
2174
|
sortOrder: number;
|
|
@@ -4591,6 +4593,7 @@ interface StreamInputCreateInputs {
|
|
|
4591
4593
|
eventId?: string | null;
|
|
4592
4594
|
sessionId?: string | null;
|
|
4593
4595
|
details?: object | null;
|
|
4596
|
+
imageId?: string | null;
|
|
4594
4597
|
}
|
|
4595
4598
|
interface StreamInputUpdateInputs {
|
|
4596
4599
|
name?: string;
|
|
@@ -4599,6 +4602,7 @@ interface StreamInputUpdateInputs {
|
|
|
4599
4602
|
sessionId?: string | null;
|
|
4600
4603
|
details?: object | null;
|
|
4601
4604
|
connected?: boolean;
|
|
4605
|
+
imageId?: string | null;
|
|
4602
4606
|
}
|
|
4603
4607
|
interface StreamInputOutputCreateInputs {
|
|
4604
4608
|
enabled: boolean;
|