@connectedxm/admin 2.8.25 → 2.9.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 +5 -4
- package/dist/index.d.ts +5 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2213,18 +2213,17 @@ interface BaseStreamInput {
|
|
|
2213
2213
|
cloudflareId: string | null;
|
|
2214
2214
|
connected: boolean;
|
|
2215
2215
|
public: boolean;
|
|
2216
|
+
sessionId: string | null;
|
|
2216
2217
|
eventId: string | null;
|
|
2217
|
-
|
|
2218
|
-
name: string;
|
|
2219
|
-
} | null;
|
|
2218
|
+
groupId: string | null;
|
|
2220
2219
|
imageId: string | null;
|
|
2221
2220
|
image: BaseImage | null;
|
|
2222
2221
|
}
|
|
2223
2222
|
interface StreamInput extends BaseStreamInput {
|
|
2224
2223
|
sortOrder: number;
|
|
2225
2224
|
event: BaseEvent | null;
|
|
2226
|
-
sessionId: string | null;
|
|
2227
2225
|
session: BaseEventSession | null;
|
|
2226
|
+
group: BaseGroup | null;
|
|
2228
2227
|
details?: StreamInputDetails;
|
|
2229
2228
|
threads: BaseThread[];
|
|
2230
2229
|
createdAt: string;
|
|
@@ -4755,6 +4754,7 @@ interface StreamInputCreateInputs {
|
|
|
4755
4754
|
sortOrder?: number | string | null;
|
|
4756
4755
|
eventId?: string | null;
|
|
4757
4756
|
sessionId?: string | null;
|
|
4757
|
+
groupId?: string | null;
|
|
4758
4758
|
details?: object | null;
|
|
4759
4759
|
imageId?: string | null;
|
|
4760
4760
|
public?: boolean;
|
|
@@ -4764,6 +4764,7 @@ interface StreamInputUpdateInputs {
|
|
|
4764
4764
|
sortOrder?: number | string | null;
|
|
4765
4765
|
eventId?: string | null;
|
|
4766
4766
|
sessionId?: string | null;
|
|
4767
|
+
groupId?: string | null;
|
|
4767
4768
|
details?: object | null;
|
|
4768
4769
|
connected?: boolean;
|
|
4769
4770
|
imageId?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -2213,18 +2213,17 @@ interface BaseStreamInput {
|
|
|
2213
2213
|
cloudflareId: string | null;
|
|
2214
2214
|
connected: boolean;
|
|
2215
2215
|
public: boolean;
|
|
2216
|
+
sessionId: string | null;
|
|
2216
2217
|
eventId: string | null;
|
|
2217
|
-
|
|
2218
|
-
name: string;
|
|
2219
|
-
} | null;
|
|
2218
|
+
groupId: string | null;
|
|
2220
2219
|
imageId: string | null;
|
|
2221
2220
|
image: BaseImage | null;
|
|
2222
2221
|
}
|
|
2223
2222
|
interface StreamInput extends BaseStreamInput {
|
|
2224
2223
|
sortOrder: number;
|
|
2225
2224
|
event: BaseEvent | null;
|
|
2226
|
-
sessionId: string | null;
|
|
2227
2225
|
session: BaseEventSession | null;
|
|
2226
|
+
group: BaseGroup | null;
|
|
2228
2227
|
details?: StreamInputDetails;
|
|
2229
2228
|
threads: BaseThread[];
|
|
2230
2229
|
createdAt: string;
|
|
@@ -4755,6 +4754,7 @@ interface StreamInputCreateInputs {
|
|
|
4755
4754
|
sortOrder?: number | string | null;
|
|
4756
4755
|
eventId?: string | null;
|
|
4757
4756
|
sessionId?: string | null;
|
|
4757
|
+
groupId?: string | null;
|
|
4758
4758
|
details?: object | null;
|
|
4759
4759
|
imageId?: string | null;
|
|
4760
4760
|
public?: boolean;
|
|
@@ -4764,6 +4764,7 @@ interface StreamInputUpdateInputs {
|
|
|
4764
4764
|
sortOrder?: number | string | null;
|
|
4765
4765
|
eventId?: string | null;
|
|
4766
4766
|
sessionId?: string | null;
|
|
4767
|
+
groupId?: string | null;
|
|
4767
4768
|
details?: object | null;
|
|
4768
4769
|
connected?: boolean;
|
|
4769
4770
|
imageId?: string | null;
|