@connectedxm/admin 2.4.3 → 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 +6 -0
- package/dist/index.d.ts +6 -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;
|
|
@@ -4091,6 +4093,7 @@ interface EventSessionQuestionCreateInputs {
|
|
|
4091
4093
|
choices?: string[] | null;
|
|
4092
4094
|
price?: number | string | null;
|
|
4093
4095
|
supply?: number | string | null;
|
|
4096
|
+
matchType?: keyof typeof MatchQuestionType;
|
|
4094
4097
|
}
|
|
4095
4098
|
interface EventSessionQuestionSearchInputs {
|
|
4096
4099
|
value: string;
|
|
@@ -4126,6 +4129,7 @@ interface EventSessionQuestionUpdateInputs {
|
|
|
4126
4129
|
featured?: boolean;
|
|
4127
4130
|
price?: number | string | null;
|
|
4128
4131
|
supply?: number | string | null;
|
|
4132
|
+
matchType?: keyof typeof MatchQuestionType;
|
|
4129
4133
|
}
|
|
4130
4134
|
interface EventSessionSectionCreateInputs {
|
|
4131
4135
|
name: string;
|
|
@@ -4589,6 +4593,7 @@ interface StreamInputCreateInputs {
|
|
|
4589
4593
|
eventId?: string | null;
|
|
4590
4594
|
sessionId?: string | null;
|
|
4591
4595
|
details?: object | null;
|
|
4596
|
+
imageId?: string | null;
|
|
4592
4597
|
}
|
|
4593
4598
|
interface StreamInputUpdateInputs {
|
|
4594
4599
|
name?: string;
|
|
@@ -4597,6 +4602,7 @@ interface StreamInputUpdateInputs {
|
|
|
4597
4602
|
sessionId?: string | null;
|
|
4598
4603
|
details?: object | null;
|
|
4599
4604
|
connected?: boolean;
|
|
4605
|
+
imageId?: string | null;
|
|
4600
4606
|
}
|
|
4601
4607
|
interface StreamInputOutputCreateInputs {
|
|
4602
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;
|
|
@@ -4091,6 +4093,7 @@ interface EventSessionQuestionCreateInputs {
|
|
|
4091
4093
|
choices?: string[] | null;
|
|
4092
4094
|
price?: number | string | null;
|
|
4093
4095
|
supply?: number | string | null;
|
|
4096
|
+
matchType?: keyof typeof MatchQuestionType;
|
|
4094
4097
|
}
|
|
4095
4098
|
interface EventSessionQuestionSearchInputs {
|
|
4096
4099
|
value: string;
|
|
@@ -4126,6 +4129,7 @@ interface EventSessionQuestionUpdateInputs {
|
|
|
4126
4129
|
featured?: boolean;
|
|
4127
4130
|
price?: number | string | null;
|
|
4128
4131
|
supply?: number | string | null;
|
|
4132
|
+
matchType?: keyof typeof MatchQuestionType;
|
|
4129
4133
|
}
|
|
4130
4134
|
interface EventSessionSectionCreateInputs {
|
|
4131
4135
|
name: string;
|
|
@@ -4589,6 +4593,7 @@ interface StreamInputCreateInputs {
|
|
|
4589
4593
|
eventId?: string | null;
|
|
4590
4594
|
sessionId?: string | null;
|
|
4591
4595
|
details?: object | null;
|
|
4596
|
+
imageId?: string | null;
|
|
4592
4597
|
}
|
|
4593
4598
|
interface StreamInputUpdateInputs {
|
|
4594
4599
|
name?: string;
|
|
@@ -4597,6 +4602,7 @@ interface StreamInputUpdateInputs {
|
|
|
4597
4602
|
sessionId?: string | null;
|
|
4598
4603
|
details?: object | null;
|
|
4599
4604
|
connected?: boolean;
|
|
4605
|
+
imageId?: string | null;
|
|
4600
4606
|
}
|
|
4601
4607
|
interface StreamInputOutputCreateInputs {
|
|
4602
4608
|
enabled: boolean;
|